|
@@ -0,0 +1,115 @@
|
|
1
|
+/*
|
|
2
|
+ * Copyright (C) 2017 Michael Brown <mbrown@fensystems.co.uk>.
|
|
3
|
+ *
|
|
4
|
+ * This program is free software; you can redistribute it and/or
|
|
5
|
+ * modify it under the terms of the GNU General Public License as
|
|
6
|
+ * published by the Free Software Foundation; either version 2 of the
|
|
7
|
+ * License, or any later version.
|
|
8
|
+ *
|
|
9
|
+ * This program is distributed in the hope that it will be useful, but
|
|
10
|
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
11
|
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
12
|
+ * General Public License for more details.
|
|
13
|
+ *
|
|
14
|
+ * You should have received a copy of the GNU General Public License
|
|
15
|
+ * along with this program; if not, write to the Free Software
|
|
16
|
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
17
|
+ * 02110-1301, USA.
|
|
18
|
+ *
|
|
19
|
+ * You can also choose to distribute this program under the terms of
|
|
20
|
+ * the Unmodified Binary Distribution Licence (as given in the file
|
|
21
|
+ * COPYING.UBDL), provided that you have satisfied its requirements.
|
|
22
|
+ */
|
|
23
|
+
|
|
24
|
+FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
|
|
25
|
+
|
|
26
|
+/** @file
|
|
27
|
+ *
|
|
28
|
+ * Dummy SAN device
|
|
29
|
+ *
|
|
30
|
+ */
|
|
31
|
+
|
|
32
|
+#include <errno.h>
|
|
33
|
+#include <ipxe/sanboot.h>
|
|
34
|
+
|
|
35
|
+/**
|
|
36
|
+ * Hook dummy SAN device
|
|
37
|
+ *
|
|
38
|
+ * @v uri URI
|
|
39
|
+ * @v drive Drive number
|
|
40
|
+ * @ret drive Drive number, or negative error
|
|
41
|
+ */
|
|
42
|
+static int dummy_san_hook ( struct uri *uri, unsigned int drive ) {
|
|
43
|
+ struct san_device *sandev;
|
|
44
|
+ int rc;
|
|
45
|
+
|
|
46
|
+ /* Allocate SAN device */
|
|
47
|
+ sandev = alloc_sandev ( uri, 0 );
|
|
48
|
+ if ( ! sandev ) {
|
|
49
|
+ rc = -ENOMEM;
|
|
50
|
+ goto err_alloc;
|
|
51
|
+ }
|
|
52
|
+ sandev->drive = drive;
|
|
53
|
+
|
|
54
|
+ /* Register SAN device */
|
|
55
|
+ if ( ( rc = register_sandev ( sandev ) ) != 0 ) {
|
|
56
|
+ DBGC ( sandev, "SAN %#02x could not register: %s\n",
|
|
57
|
+ sandev->drive, strerror ( rc ) );
|
|
58
|
+ goto err_register;
|
|
59
|
+ }
|
|
60
|
+
|
|
61
|
+ return drive;
|
|
62
|
+
|
|
63
|
+ unregister_sandev ( sandev );
|
|
64
|
+ err_register:
|
|
65
|
+ sandev_put ( sandev );
|
|
66
|
+ err_alloc:
|
|
67
|
+ return rc;
|
|
68
|
+}
|
|
69
|
+
|
|
70
|
+/**
|
|
71
|
+ * Unhook dummy SAN device
|
|
72
|
+ *
|
|
73
|
+ * @v drive Drive number
|
|
74
|
+ */
|
|
75
|
+static void dummy_san_unhook ( unsigned int drive ) {
|
|
76
|
+ struct san_device *sandev;
|
|
77
|
+
|
|
78
|
+ /* Find drive */
|
|
79
|
+ sandev = sandev_find ( drive );
|
|
80
|
+ if ( ! sandev ) {
|
|
81
|
+ DBG ( "SAN %#02x does not exist\n", drive );
|
|
82
|
+ return;
|
|
83
|
+ }
|
|
84
|
+
|
|
85
|
+ /* Unregister SAN device */
|
|
86
|
+ unregister_sandev ( sandev );
|
|
87
|
+
|
|
88
|
+ /* Drop reference to drive */
|
|
89
|
+ sandev_put ( sandev );
|
|
90
|
+}
|
|
91
|
+
|
|
92
|
+/**
|
|
93
|
+ * Boot from dummy SAN device
|
|
94
|
+ *
|
|
95
|
+ * @v drive Drive number
|
|
96
|
+ */
|
|
97
|
+static int dummy_san_boot ( unsigned int drive __unused ) {
|
|
98
|
+
|
|
99
|
+ return -EOPNOTSUPP;
|
|
100
|
+}
|
|
101
|
+
|
|
102
|
+/**
|
|
103
|
+ * Describe dummy SAN device
|
|
104
|
+ *
|
|
105
|
+ * @v drive Drive number
|
|
106
|
+ */
|
|
107
|
+static int dummy_san_describe ( unsigned int drive __unused ) {
|
|
108
|
+
|
|
109
|
+ return 0;
|
|
110
|
+}
|
|
111
|
+
|
|
112
|
+PROVIDE_SANBOOT ( dummy, san_hook, dummy_san_hook );
|
|
113
|
+PROVIDE_SANBOOT ( dummy, san_unhook, dummy_san_unhook );
|
|
114
|
+PROVIDE_SANBOOT ( dummy, san_boot, dummy_san_boot );
|
|
115
|
+PROVIDE_SANBOOT ( dummy, san_describe, dummy_san_describe );
|