]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - Documentation/target/tcm_mod_builder.py
Documentation/target: Fix tcm_mod_builder.py build breakage
[mirror_ubuntu-artful-kernel.git] / Documentation / target / tcm_mod_builder.py
CommitLineData
c66ac9db
NB
1#!/usr/bin/python
2# The TCM v4 multi-protocol fabric module generation script for drivers/target/$NEW_MOD
3#
4# Copyright (c) 2010 Rising Tide Systems
5# Copyright (c) 2010 Linux-iSCSI.org
6#
7# Author: nab@kernel.org
8#
9import os, sys
10import subprocess as sub
11import string
12import re
13import optparse
14
15tcm_dir = ""
16
17fabric_ops = []
18fabric_mod_dir = ""
19fabric_mod_port = ""
20fabric_mod_init_port = ""
21
22def tcm_mod_err(msg):
23 print msg
24 sys.exit(1)
25
26def tcm_mod_create_module_subdir(fabric_mod_dir_var):
27
28 if os.path.isdir(fabric_mod_dir_var) == True:
29 return 1
30
31 print "Creating fabric_mod_dir: " + fabric_mod_dir_var
32 ret = os.mkdir(fabric_mod_dir_var)
33 if ret:
34 tcm_mod_err("Unable to mkdir " + fabric_mod_dir_var)
35
36 return
37
38def tcm_mod_build_FC_include(fabric_mod_dir_var, fabric_mod_name):
39 global fabric_mod_port
40 global fabric_mod_init_port
41 buf = ""
42
43 f = fabric_mod_dir_var + "/" + fabric_mod_name + "_base.h"
44 print "Writing file: " + f
45
46 p = open(f, 'w');
47 if not p:
48 tcm_mod_err("Unable to open file: " + f)
49
50 buf = "#define " + fabric_mod_name.upper() + "_VERSION \"v0.1\"\n"
51 buf += "#define " + fabric_mod_name.upper() + "_NAMELEN 32\n"
52 buf += "\n"
53 buf += "struct " + fabric_mod_name + "_nacl {\n"
54 buf += " /* Binary World Wide unique Port Name for FC Initiator Nport */\n"
55 buf += " u64 nport_wwpn;\n"
56 buf += " /* ASCII formatted WWPN for FC Initiator Nport */\n"
57 buf += " char nport_name[" + fabric_mod_name.upper() + "_NAMELEN];\n"
58 buf += " /* Returned by " + fabric_mod_name + "_make_nodeacl() */\n"
59 buf += " struct se_node_acl se_node_acl;\n"
60 buf += "};\n"
61 buf += "\n"
62 buf += "struct " + fabric_mod_name + "_tpg {\n"
63 buf += " /* FC lport target portal group tag for TCM */\n"
64 buf += " u16 lport_tpgt;\n"
65 buf += " /* Pointer back to " + fabric_mod_name + "_lport */\n"
66 buf += " struct " + fabric_mod_name + "_lport *lport;\n"
67 buf += " /* Returned by " + fabric_mod_name + "_make_tpg() */\n"
68 buf += " struct se_portal_group se_tpg;\n"
69 buf += "};\n"
70 buf += "\n"
71 buf += "struct " + fabric_mod_name + "_lport {\n"
72 buf += " /* SCSI protocol the lport is providing */\n"
73 buf += " u8 lport_proto_id;\n"
74 buf += " /* Binary World Wide unique Port Name for FC Target Lport */\n"
75 buf += " u64 lport_wwpn;\n"
76 buf += " /* ASCII formatted WWPN for FC Target Lport */\n"
77 buf += " char lport_name[" + fabric_mod_name.upper() + "_NAMELEN];\n"
78 buf += " /* Returned by " + fabric_mod_name + "_make_lport() */\n"
79 buf += " struct se_wwn lport_wwn;\n"
80 buf += "};\n"
81
82 ret = p.write(buf)
83 if ret:
84 tcm_mod_err("Unable to write f: " + f)
85
86 p.close()
87
88 fabric_mod_port = "lport"
89 fabric_mod_init_port = "nport"
90
91 return
92
93def tcm_mod_build_SAS_include(fabric_mod_dir_var, fabric_mod_name):
94 global fabric_mod_port
95 global fabric_mod_init_port
96 buf = ""
97
98 f = fabric_mod_dir_var + "/" + fabric_mod_name + "_base.h"
99 print "Writing file: " + f
100
101 p = open(f, 'w');
102 if not p:
103 tcm_mod_err("Unable to open file: " + f)
104
105 buf = "#define " + fabric_mod_name.upper() + "_VERSION \"v0.1\"\n"
106 buf += "#define " + fabric_mod_name.upper() + "_NAMELEN 32\n"
107 buf += "\n"
108 buf += "struct " + fabric_mod_name + "_nacl {\n"
109 buf += " /* Binary World Wide unique Port Name for SAS Initiator port */\n"
110 buf += " u64 iport_wwpn;\n"
111 buf += " /* ASCII formatted WWPN for Sas Initiator port */\n"
112 buf += " char iport_name[" + fabric_mod_name.upper() + "_NAMELEN];\n"
113 buf += " /* Returned by " + fabric_mod_name + "_make_nodeacl() */\n"
114 buf += " struct se_node_acl se_node_acl;\n"
115 buf += "};\n\n"
116 buf += "struct " + fabric_mod_name + "_tpg {\n"
117 buf += " /* SAS port target portal group tag for TCM */\n"
118 buf += " u16 tport_tpgt;\n"
119 buf += " /* Pointer back to " + fabric_mod_name + "_tport */\n"
120 buf += " struct " + fabric_mod_name + "_tport *tport;\n"
121 buf += " /* Returned by " + fabric_mod_name + "_make_tpg() */\n"
122 buf += " struct se_portal_group se_tpg;\n"
123 buf += "};\n\n"
124 buf += "struct " + fabric_mod_name + "_tport {\n"
125 buf += " /* SCSI protocol the tport is providing */\n"
126 buf += " u8 tport_proto_id;\n"
127 buf += " /* Binary World Wide unique Port Name for SAS Target port */\n"
128 buf += " u64 tport_wwpn;\n"
129 buf += " /* ASCII formatted WWPN for SAS Target port */\n"
130 buf += " char tport_name[" + fabric_mod_name.upper() + "_NAMELEN];\n"
131 buf += " /* Returned by " + fabric_mod_name + "_make_tport() */\n"
132 buf += " struct se_wwn tport_wwn;\n"
133 buf += "};\n"
134
135 ret = p.write(buf)
136 if ret:
137 tcm_mod_err("Unable to write f: " + f)
138
139 p.close()
140
141 fabric_mod_port = "tport"
142 fabric_mod_init_port = "iport"
143
144 return
145
146def tcm_mod_build_iSCSI_include(fabric_mod_dir_var, fabric_mod_name):
147 global fabric_mod_port
148 global fabric_mod_init_port
149 buf = ""
150
151 f = fabric_mod_dir_var + "/" + fabric_mod_name + "_base.h"
152 print "Writing file: " + f
153
154 p = open(f, 'w');
155 if not p:
156 tcm_mod_err("Unable to open file: " + f)
157
158 buf = "#define " + fabric_mod_name.upper() + "_VERSION \"v0.1\"\n"
159 buf += "#define " + fabric_mod_name.upper() + "_NAMELEN 32\n"
160 buf += "\n"
161 buf += "struct " + fabric_mod_name + "_nacl {\n"
162 buf += " /* ASCII formatted InitiatorName */\n"
163 buf += " char iport_name[" + fabric_mod_name.upper() + "_NAMELEN];\n"
164 buf += " /* Returned by " + fabric_mod_name + "_make_nodeacl() */\n"
165 buf += " struct se_node_acl se_node_acl;\n"
166 buf += "};\n\n"
167 buf += "struct " + fabric_mod_name + "_tpg {\n"
168 buf += " /* iSCSI target portal group tag for TCM */\n"
169 buf += " u16 tport_tpgt;\n"
170 buf += " /* Pointer back to " + fabric_mod_name + "_tport */\n"
171 buf += " struct " + fabric_mod_name + "_tport *tport;\n"
172 buf += " /* Returned by " + fabric_mod_name + "_make_tpg() */\n"
173 buf += " struct se_portal_group se_tpg;\n"
174 buf += "};\n\n"
175 buf += "struct " + fabric_mod_name + "_tport {\n"
176 buf += " /* SCSI protocol the tport is providing */\n"
177 buf += " u8 tport_proto_id;\n"
178 buf += " /* ASCII formatted TargetName for IQN */\n"
179 buf += " char tport_name[" + fabric_mod_name.upper() + "_NAMELEN];\n"
180 buf += " /* Returned by " + fabric_mod_name + "_make_tport() */\n"
181 buf += " struct se_wwn tport_wwn;\n"
182 buf += "};\n"
183
184 ret = p.write(buf)
185 if ret:
186 tcm_mod_err("Unable to write f: " + f)
187
188 p.close()
189
190 fabric_mod_port = "tport"
191 fabric_mod_init_port = "iport"
192
193 return
194
195def tcm_mod_build_base_includes(proto_ident, fabric_mod_dir_val, fabric_mod_name):
196
197 if proto_ident == "FC":
198 tcm_mod_build_FC_include(fabric_mod_dir_val, fabric_mod_name)
199 elif proto_ident == "SAS":
200 tcm_mod_build_SAS_include(fabric_mod_dir_val, fabric_mod_name)
201 elif proto_ident == "iSCSI":
202 tcm_mod_build_iSCSI_include(fabric_mod_dir_val, fabric_mod_name)
203 else:
204 print "Unsupported proto_ident: " + proto_ident
205 sys.exit(1)
206
207 return
208
209def tcm_mod_build_configfs(proto_ident, fabric_mod_dir_var, fabric_mod_name):
210 buf = ""
211
212 f = fabric_mod_dir_var + "/" + fabric_mod_name + "_configfs.c"
213 print "Writing file: " + f
214
215 p = open(f, 'w');
216 if not p:
217 tcm_mod_err("Unable to open file: " + f)
218
219 buf = "#include <linux/module.h>\n"
220 buf += "#include <linux/moduleparam.h>\n"
221 buf += "#include <linux/version.h>\n"
222 buf += "#include <generated/utsrelease.h>\n"
223 buf += "#include <linux/utsname.h>\n"
224 buf += "#include <linux/init.h>\n"
225 buf += "#include <linux/slab.h>\n"
226 buf += "#include <linux/kthread.h>\n"
227 buf += "#include <linux/types.h>\n"
228 buf += "#include <linux/string.h>\n"
229 buf += "#include <linux/configfs.h>\n"
230 buf += "#include <linux/ctype.h>\n"
231 buf += "#include <asm/unaligned.h>\n\n"
232 buf += "#include <target/target_core_base.h>\n"
c4795fb2 233 buf += "#include <target/target_core_fabric.h>\n"
c66ac9db 234 buf += "#include <target/target_core_fabric_configfs.h>\n"
c66ac9db 235 buf += "#include <target/target_core_configfs.h>\n"
c66ac9db 236 buf += "#include <target/configfs_macros.h>\n\n"
10635c8b
NB
237 buf += "#include \"" + fabric_mod_name + "_base.h\"\n"
238 buf += "#include \"" + fabric_mod_name + "_fabric.h\"\n\n"
c66ac9db
NB
239
240 buf += "/* Local pointer to allocated TCM configfs fabric module */\n"
241 buf += "struct target_fabric_configfs *" + fabric_mod_name + "_fabric_configfs;\n\n"
242
243 buf += "static struct se_node_acl *" + fabric_mod_name + "_make_nodeacl(\n"
244 buf += " struct se_portal_group *se_tpg,\n"
245 buf += " struct config_group *group,\n"
246 buf += " const char *name)\n"
247 buf += "{\n"
248 buf += " struct se_node_acl *se_nacl, *se_nacl_new;\n"
249 buf += " struct " + fabric_mod_name + "_nacl *nacl;\n"
250
251 if proto_ident == "FC" or proto_ident == "SAS":
252 buf += " u64 wwpn = 0;\n"
253
254 buf += " u32 nexus_depth;\n\n"
255 buf += " /* " + fabric_mod_name + "_parse_wwn(name, &wwpn, 1) < 0)\n"
256 buf += " return ERR_PTR(-EINVAL); */\n"
257 buf += " se_nacl_new = " + fabric_mod_name + "_alloc_fabric_acl(se_tpg);\n"
258 buf += " if (!(se_nacl_new))\n"
259 buf += " return ERR_PTR(-ENOMEM);\n"
260 buf += "//#warning FIXME: Hardcoded nexus depth in " + fabric_mod_name + "_make_nodeacl()\n"
261 buf += " nexus_depth = 1;\n"
262 buf += " /*\n"
263 buf += " * se_nacl_new may be released by core_tpg_add_initiator_node_acl()\n"
264 buf += " * when converting a NodeACL from demo mode -> explict\n"
265 buf += " */\n"
266 buf += " se_nacl = core_tpg_add_initiator_node_acl(se_tpg, se_nacl_new,\n"
267 buf += " name, nexus_depth);\n"
268 buf += " if (IS_ERR(se_nacl)) {\n"
269 buf += " " + fabric_mod_name + "_release_fabric_acl(se_tpg, se_nacl_new);\n"
270 buf += " return se_nacl;\n"
271 buf += " }\n"
272 buf += " /*\n"
273 buf += " * Locate our struct " + fabric_mod_name + "_nacl and set the FC Nport WWPN\n"
274 buf += " */\n"
275 buf += " nacl = container_of(se_nacl, struct " + fabric_mod_name + "_nacl, se_node_acl);\n"
276
277 if proto_ident == "FC" or proto_ident == "SAS":
278 buf += " nacl->" + fabric_mod_init_port + "_wwpn = wwpn;\n"
279
280 buf += " /* " + fabric_mod_name + "_format_wwn(&nacl->" + fabric_mod_init_port + "_name[0], " + fabric_mod_name.upper() + "_NAMELEN, wwpn); */\n\n"
281 buf += " return se_nacl;\n"
282 buf += "}\n\n"
283 buf += "static void " + fabric_mod_name + "_drop_nodeacl(struct se_node_acl *se_acl)\n"
284 buf += "{\n"
285 buf += " struct " + fabric_mod_name + "_nacl *nacl = container_of(se_acl,\n"
286 buf += " struct " + fabric_mod_name + "_nacl, se_node_acl);\n"
f45934e0 287 buf += " core_tpg_del_initiator_node_acl(se_acl->se_tpg, se_acl, 1);\n"
c66ac9db
NB
288 buf += " kfree(nacl);\n"
289 buf += "}\n\n"
290
291 buf += "static struct se_portal_group *" + fabric_mod_name + "_make_tpg(\n"
292 buf += " struct se_wwn *wwn,\n"
293 buf += " struct config_group *group,\n"
294 buf += " const char *name)\n"
295 buf += "{\n"
296 buf += " struct " + fabric_mod_name + "_" + fabric_mod_port + "*" + fabric_mod_port + " = container_of(wwn,\n"
297 buf += " struct " + fabric_mod_name + "_" + fabric_mod_port + ", " + fabric_mod_port + "_wwn);\n\n"
298 buf += " struct " + fabric_mod_name + "_tpg *tpg;\n"
299 buf += " unsigned long tpgt;\n"
300 buf += " int ret;\n\n"
301 buf += " if (strstr(name, \"tpgt_\") != name)\n"
302 buf += " return ERR_PTR(-EINVAL);\n"
303 buf += " if (strict_strtoul(name + 5, 10, &tpgt) || tpgt > UINT_MAX)\n"
304 buf += " return ERR_PTR(-EINVAL);\n\n"
305 buf += " tpg = kzalloc(sizeof(struct " + fabric_mod_name + "_tpg), GFP_KERNEL);\n"
306 buf += " if (!(tpg)) {\n"
307 buf += " printk(KERN_ERR \"Unable to allocate struct " + fabric_mod_name + "_tpg\");\n"
308 buf += " return ERR_PTR(-ENOMEM);\n"
309 buf += " }\n"
310 buf += " tpg->" + fabric_mod_port + " = " + fabric_mod_port + ";\n"
311 buf += " tpg->" + fabric_mod_port + "_tpgt = tpgt;\n\n"
312 buf += " ret = core_tpg_register(&" + fabric_mod_name + "_fabric_configfs->tf_ops, wwn,\n"
313 buf += " &tpg->se_tpg, (void *)tpg,\n"
314 buf += " TRANSPORT_TPG_TYPE_NORMAL);\n"
315 buf += " if (ret < 0) {\n"
316 buf += " kfree(tpg);\n"
317 buf += " return NULL;\n"
318 buf += " }\n"
319 buf += " return &tpg->se_tpg;\n"
320 buf += "}\n\n"
321 buf += "static void " + fabric_mod_name + "_drop_tpg(struct se_portal_group *se_tpg)\n"
322 buf += "{\n"
323 buf += " struct " + fabric_mod_name + "_tpg *tpg = container_of(se_tpg,\n"
324 buf += " struct " + fabric_mod_name + "_tpg, se_tpg);\n\n"
325 buf += " core_tpg_deregister(se_tpg);\n"
326 buf += " kfree(tpg);\n"
327 buf += "}\n\n"
328
329 buf += "static struct se_wwn *" + fabric_mod_name + "_make_" + fabric_mod_port + "(\n"
330 buf += " struct target_fabric_configfs *tf,\n"
331 buf += " struct config_group *group,\n"
332 buf += " const char *name)\n"
333 buf += "{\n"
334 buf += " struct " + fabric_mod_name + "_" + fabric_mod_port + " *" + fabric_mod_port + ";\n"
335
336 if proto_ident == "FC" or proto_ident == "SAS":
337 buf += " u64 wwpn = 0;\n\n"
338
339 buf += " /* if (" + fabric_mod_name + "_parse_wwn(name, &wwpn, 1) < 0)\n"
340 buf += " return ERR_PTR(-EINVAL); */\n\n"
341 buf += " " + fabric_mod_port + " = kzalloc(sizeof(struct " + fabric_mod_name + "_" + fabric_mod_port + "), GFP_KERNEL);\n"
342 buf += " if (!(" + fabric_mod_port + ")) {\n"
343 buf += " printk(KERN_ERR \"Unable to allocate struct " + fabric_mod_name + "_" + fabric_mod_port + "\");\n"
344 buf += " return ERR_PTR(-ENOMEM);\n"
345 buf += " }\n"
346
347 if proto_ident == "FC" or proto_ident == "SAS":
348 buf += " " + fabric_mod_port + "->" + fabric_mod_port + "_wwpn = wwpn;\n"
349
350 buf += " /* " + fabric_mod_name + "_format_wwn(&" + fabric_mod_port + "->" + fabric_mod_port + "_name[0], " + fabric_mod_name.upper() + "__NAMELEN, wwpn); */\n\n"
351 buf += " return &" + fabric_mod_port + "->" + fabric_mod_port + "_wwn;\n"
352 buf += "}\n\n"
353 buf += "static void " + fabric_mod_name + "_drop_" + fabric_mod_port + "(struct se_wwn *wwn)\n"
354 buf += "{\n"
355 buf += " struct " + fabric_mod_name + "_" + fabric_mod_port + " *" + fabric_mod_port + " = container_of(wwn,\n"
356 buf += " struct " + fabric_mod_name + "_" + fabric_mod_port + ", " + fabric_mod_port + "_wwn);\n"
357 buf += " kfree(" + fabric_mod_port + ");\n"
358 buf += "}\n\n"
359 buf += "static ssize_t " + fabric_mod_name + "_wwn_show_attr_version(\n"
360 buf += " struct target_fabric_configfs *tf,\n"
361 buf += " char *page)\n"
362 buf += "{\n"
363 buf += " return sprintf(page, \"" + fabric_mod_name.upper() + " fabric module %s on %s/%s\"\n"
364 buf += " \"on \"UTS_RELEASE\"\\n\", " + fabric_mod_name.upper() + "_VERSION, utsname()->sysname,\n"
365 buf += " utsname()->machine);\n"
366 buf += "}\n\n"
367 buf += "TF_WWN_ATTR_RO(" + fabric_mod_name + ", version);\n\n"
368 buf += "static struct configfs_attribute *" + fabric_mod_name + "_wwn_attrs[] = {\n"
369 buf += " &" + fabric_mod_name + "_wwn_version.attr,\n"
370 buf += " NULL,\n"
371 buf += "};\n\n"
372
373 buf += "static struct target_core_fabric_ops " + fabric_mod_name + "_ops = {\n"
374 buf += " .get_fabric_name = " + fabric_mod_name + "_get_fabric_name,\n"
375 buf += " .get_fabric_proto_ident = " + fabric_mod_name + "_get_fabric_proto_ident,\n"
376 buf += " .tpg_get_wwn = " + fabric_mod_name + "_get_fabric_wwn,\n"
377 buf += " .tpg_get_tag = " + fabric_mod_name + "_get_tag,\n"
378 buf += " .tpg_get_default_depth = " + fabric_mod_name + "_get_default_depth,\n"
379 buf += " .tpg_get_pr_transport_id = " + fabric_mod_name + "_get_pr_transport_id,\n"
380 buf += " .tpg_get_pr_transport_id_len = " + fabric_mod_name + "_get_pr_transport_id_len,\n"
381 buf += " .tpg_parse_pr_out_transport_id = " + fabric_mod_name + "_parse_pr_out_transport_id,\n"
382 buf += " .tpg_check_demo_mode = " + fabric_mod_name + "_check_false,\n"
383 buf += " .tpg_check_demo_mode_cache = " + fabric_mod_name + "_check_true,\n"
384 buf += " .tpg_check_demo_mode_write_protect = " + fabric_mod_name + "_check_true,\n"
385 buf += " .tpg_check_prod_mode_write_protect = " + fabric_mod_name + "_check_false,\n"
386 buf += " .tpg_alloc_fabric_acl = " + fabric_mod_name + "_alloc_fabric_acl,\n"
387 buf += " .tpg_release_fabric_acl = " + fabric_mod_name + "_release_fabric_acl,\n"
388 buf += " .tpg_get_inst_index = " + fabric_mod_name + "_tpg_get_inst_index,\n"
77271de6 389 buf += " .release_cmd = " + fabric_mod_name + "_release_cmd,\n"
c66ac9db
NB
390 buf += " .shutdown_session = " + fabric_mod_name + "_shutdown_session,\n"
391 buf += " .close_session = " + fabric_mod_name + "_close_session,\n"
392 buf += " .stop_session = " + fabric_mod_name + "_stop_session,\n"
393 buf += " .fall_back_to_erl0 = " + fabric_mod_name + "_reset_nexus,\n"
394 buf += " .sess_logged_in = " + fabric_mod_name + "_sess_logged_in,\n"
395 buf += " .sess_get_index = " + fabric_mod_name + "_sess_get_index,\n"
396 buf += " .sess_get_initiator_sid = NULL,\n"
397 buf += " .write_pending = " + fabric_mod_name + "_write_pending,\n"
398 buf += " .write_pending_status = " + fabric_mod_name + "_write_pending_status,\n"
399 buf += " .set_default_node_attributes = " + fabric_mod_name + "_set_default_node_attrs,\n"
400 buf += " .get_task_tag = " + fabric_mod_name + "_get_task_tag,\n"
401 buf += " .get_cmd_state = " + fabric_mod_name + "_get_cmd_state,\n"
c66ac9db
NB
402 buf += " .queue_data_in = " + fabric_mod_name + "_queue_data_in,\n"
403 buf += " .queue_status = " + fabric_mod_name + "_queue_status,\n"
404 buf += " .queue_tm_rsp = " + fabric_mod_name + "_queue_tm_rsp,\n"
405 buf += " .get_fabric_sense_len = " + fabric_mod_name + "_get_fabric_sense_len,\n"
406 buf += " .set_fabric_sense_len = " + fabric_mod_name + "_set_fabric_sense_len,\n"
407 buf += " .is_state_remove = " + fabric_mod_name + "_is_state_remove,\n"
c66ac9db
NB
408 buf += " /*\n"
409 buf += " * Setup function pointers for generic logic in target_core_fabric_configfs.c\n"
410 buf += " */\n"
411 buf += " .fabric_make_wwn = " + fabric_mod_name + "_make_" + fabric_mod_port + ",\n"
412 buf += " .fabric_drop_wwn = " + fabric_mod_name + "_drop_" + fabric_mod_port + ",\n"
413 buf += " .fabric_make_tpg = " + fabric_mod_name + "_make_tpg,\n"
414 buf += " .fabric_drop_tpg = " + fabric_mod_name + "_drop_tpg,\n"
415 buf += " .fabric_post_link = NULL,\n"
416 buf += " .fabric_pre_unlink = NULL,\n"
417 buf += " .fabric_make_np = NULL,\n"
418 buf += " .fabric_drop_np = NULL,\n"
419 buf += " .fabric_make_nodeacl = " + fabric_mod_name + "_make_nodeacl,\n"
420 buf += " .fabric_drop_nodeacl = " + fabric_mod_name + "_drop_nodeacl,\n"
421 buf += "};\n\n"
422
423 buf += "static int " + fabric_mod_name + "_register_configfs(void)\n"
424 buf += "{\n"
425 buf += " struct target_fabric_configfs *fabric;\n"
426 buf += " int ret;\n\n"
427 buf += " printk(KERN_INFO \"" + fabric_mod_name.upper() + " fabric module %s on %s/%s\"\n"
428 buf += " \" on \"UTS_RELEASE\"\\n\"," + fabric_mod_name.upper() + "_VERSION, utsname()->sysname,\n"
429 buf += " utsname()->machine);\n"
430 buf += " /*\n"
431 buf += " * Register the top level struct config_item_type with TCM core\n"
432 buf += " */\n"
433 buf += " fabric = target_fabric_configfs_init(THIS_MODULE, \"" + fabric_mod_name[4:] + "\");\n"
434 buf += " if (!(fabric)) {\n"
435 buf += " printk(KERN_ERR \"target_fabric_configfs_init() failed\\n\");\n"
436 buf += " return -ENOMEM;\n"
437 buf += " }\n"
438 buf += " /*\n"
439 buf += " * Setup fabric->tf_ops from our local " + fabric_mod_name + "_ops\n"
440 buf += " */\n"
441 buf += " fabric->tf_ops = " + fabric_mod_name + "_ops;\n"
442 buf += " /*\n"
443 buf += " * Setup default attribute lists for various fabric->tf_cit_tmpl\n"
444 buf += " */\n"
445 buf += " TF_CIT_TMPL(fabric)->tfc_wwn_cit.ct_attrs = " + fabric_mod_name + "_wwn_attrs;\n"
446 buf += " TF_CIT_TMPL(fabric)->tfc_tpg_base_cit.ct_attrs = NULL;\n"
447 buf += " TF_CIT_TMPL(fabric)->tfc_tpg_attrib_cit.ct_attrs = NULL;\n"
448 buf += " TF_CIT_TMPL(fabric)->tfc_tpg_param_cit.ct_attrs = NULL;\n"
449 buf += " TF_CIT_TMPL(fabric)->tfc_tpg_np_base_cit.ct_attrs = NULL;\n"
450 buf += " TF_CIT_TMPL(fabric)->tfc_tpg_nacl_base_cit.ct_attrs = NULL;\n"
451 buf += " TF_CIT_TMPL(fabric)->tfc_tpg_nacl_attrib_cit.ct_attrs = NULL;\n"
452 buf += " TF_CIT_TMPL(fabric)->tfc_tpg_nacl_auth_cit.ct_attrs = NULL;\n"
453 buf += " TF_CIT_TMPL(fabric)->tfc_tpg_nacl_param_cit.ct_attrs = NULL;\n"
454 buf += " /*\n"
455 buf += " * Register the fabric for use within TCM\n"
456 buf += " */\n"
457 buf += " ret = target_fabric_configfs_register(fabric);\n"
458 buf += " if (ret < 0) {\n"
459 buf += " printk(KERN_ERR \"target_fabric_configfs_register() failed\"\n"
460 buf += " \" for " + fabric_mod_name.upper() + "\\n\");\n"
461 buf += " return ret;\n"
462 buf += " }\n"
463 buf += " /*\n"
464 buf += " * Setup our local pointer to *fabric\n"
465 buf += " */\n"
466 buf += " " + fabric_mod_name + "_fabric_configfs = fabric;\n"
467 buf += " printk(KERN_INFO \"" + fabric_mod_name.upper() + "[0] - Set fabric -> " + fabric_mod_name + "_fabric_configfs\\n\");\n"
468 buf += " return 0;\n"
469 buf += "};\n\n"
470 buf += "static void " + fabric_mod_name + "_deregister_configfs(void)\n"
471 buf += "{\n"
472 buf += " if (!(" + fabric_mod_name + "_fabric_configfs))\n"
473 buf += " return;\n\n"
474 buf += " target_fabric_configfs_deregister(" + fabric_mod_name + "_fabric_configfs);\n"
475 buf += " " + fabric_mod_name + "_fabric_configfs = NULL;\n"
476 buf += " printk(KERN_INFO \"" + fabric_mod_name.upper() + "[0] - Cleared " + fabric_mod_name + "_fabric_configfs\\n\");\n"
477 buf += "};\n\n"
478
479 buf += "static int __init " + fabric_mod_name + "_init(void)\n"
480 buf += "{\n"
481 buf += " int ret;\n\n"
482 buf += " ret = " + fabric_mod_name + "_register_configfs();\n"
483 buf += " if (ret < 0)\n"
484 buf += " return ret;\n\n"
485 buf += " return 0;\n"
486 buf += "};\n\n"
487 buf += "static void " + fabric_mod_name + "_exit(void)\n"
488 buf += "{\n"
489 buf += " " + fabric_mod_name + "_deregister_configfs();\n"
490 buf += "};\n\n"
491
492 buf += "#ifdef MODULE\n"
493 buf += "MODULE_DESCRIPTION(\"" + fabric_mod_name.upper() + " series fabric driver\");\n"
494 buf += "MODULE_LICENSE(\"GPL\");\n"
495 buf += "module_init(" + fabric_mod_name + "_init);\n"
496 buf += "module_exit(" + fabric_mod_name + "_exit);\n"
497 buf += "#endif\n"
498
499 ret = p.write(buf)
500 if ret:
501 tcm_mod_err("Unable to write f: " + f)
502
503 p.close()
504
505 return
506
507def tcm_mod_scan_fabric_ops(tcm_dir):
508
c4795fb2 509 fabric_ops_api = tcm_dir + "include/target/target_core_fabric.h"
c66ac9db
NB
510
511 print "Using tcm_mod_scan_fabric_ops: " + fabric_ops_api
512 process_fo = 0;
513
514 p = open(fabric_ops_api, 'r')
515
516 line = p.readline()
517 while line:
518 if process_fo == 0 and re.search('struct target_core_fabric_ops {', line):
519 line = p.readline()
520 continue
521
522 if process_fo == 0:
523 process_fo = 1;
524 line = p.readline()
525 # Search for function pointer
526 if not re.search('\(\*', line):
527 continue
528
529 fabric_ops.append(line.rstrip())
530 continue
531
532 line = p.readline()
533 # Search for function pointer
534 if not re.search('\(\*', line):
535 continue
536
537 fabric_ops.append(line.rstrip())
538
539 p.close()
540 return
541
542def tcm_mod_dump_fabric_ops(proto_ident, fabric_mod_dir_var, fabric_mod_name):
543 buf = ""
544 bufi = ""
545
546 f = fabric_mod_dir_var + "/" + fabric_mod_name + "_fabric.c"
547 print "Writing file: " + f
548
549 p = open(f, 'w')
550 if not p:
551 tcm_mod_err("Unable to open file: " + f)
552
553 fi = fabric_mod_dir_var + "/" + fabric_mod_name + "_fabric.h"
554 print "Writing file: " + fi
555
556 pi = open(fi, 'w')
557 if not pi:
558 tcm_mod_err("Unable to open file: " + fi)
559
560 buf = "#include <linux/slab.h>\n"
561 buf += "#include <linux/kthread.h>\n"
562 buf += "#include <linux/types.h>\n"
563 buf += "#include <linux/list.h>\n"
564 buf += "#include <linux/types.h>\n"
565 buf += "#include <linux/string.h>\n"
566 buf += "#include <linux/ctype.h>\n"
567 buf += "#include <asm/unaligned.h>\n"
568 buf += "#include <scsi/scsi.h>\n"
569 buf += "#include <scsi/scsi_host.h>\n"
570 buf += "#include <scsi/scsi_device.h>\n"
571 buf += "#include <scsi/scsi_cmnd.h>\n"
572 buf += "#include <scsi/libfc.h>\n\n"
573 buf += "#include <target/target_core_base.h>\n"
c4795fb2 574 buf += "#include <target/target_core_fabric.h>\n"
10635c8b
NB
575 buf += "#include <target/target_core_configfs.h>\n\n"
576 buf += "#include \"" + fabric_mod_name + "_base.h\"\n"
577 buf += "#include \"" + fabric_mod_name + "_fabric.h\"\n\n"
c66ac9db
NB
578
579 buf += "int " + fabric_mod_name + "_check_true(struct se_portal_group *se_tpg)\n"
580 buf += "{\n"
581 buf += " return 1;\n"
582 buf += "}\n\n"
583 bufi += "int " + fabric_mod_name + "_check_true(struct se_portal_group *);\n"
584
585 buf += "int " + fabric_mod_name + "_check_false(struct se_portal_group *se_tpg)\n"
586 buf += "{\n"
587 buf += " return 0;\n"
588 buf += "}\n\n"
589 bufi += "int " + fabric_mod_name + "_check_false(struct se_portal_group *);\n"
590
591 total_fabric_ops = len(fabric_ops)
592 i = 0
593
594 while i < total_fabric_ops:
595 fo = fabric_ops[i]
596 i += 1
597# print "fabric_ops: " + fo
598
599 if re.search('get_fabric_name', fo):
600 buf += "char *" + fabric_mod_name + "_get_fabric_name(void)\n"
601 buf += "{\n"
602 buf += " return \"" + fabric_mod_name[4:] + "\";\n"
603 buf += "}\n\n"
604 bufi += "char *" + fabric_mod_name + "_get_fabric_name(void);\n"
605 continue
606
607 if re.search('get_fabric_proto_ident', fo):
608 buf += "u8 " + fabric_mod_name + "_get_fabric_proto_ident(struct se_portal_group *se_tpg)\n"
609 buf += "{\n"
610 buf += " struct " + fabric_mod_name + "_tpg *tpg = container_of(se_tpg,\n"
611 buf += " struct " + fabric_mod_name + "_tpg, se_tpg);\n"
612 buf += " struct " + fabric_mod_name + "_" + fabric_mod_port + " *" + fabric_mod_port + " = tpg->" + fabric_mod_port + ";\n"
613 buf += " u8 proto_id;\n\n"
614 buf += " switch (" + fabric_mod_port + "->" + fabric_mod_port + "_proto_id) {\n"
615 if proto_ident == "FC":
616 buf += " case SCSI_PROTOCOL_FCP:\n"
617 buf += " default:\n"
618 buf += " proto_id = fc_get_fabric_proto_ident(se_tpg);\n"
619 buf += " break;\n"
620 elif proto_ident == "SAS":
621 buf += " case SCSI_PROTOCOL_SAS:\n"
622 buf += " default:\n"
623 buf += " proto_id = sas_get_fabric_proto_ident(se_tpg);\n"
624 buf += " break;\n"
625 elif proto_ident == "iSCSI":
626 buf += " case SCSI_PROTOCOL_ISCSI:\n"
627 buf += " default:\n"
628 buf += " proto_id = iscsi_get_fabric_proto_ident(se_tpg);\n"
629 buf += " break;\n"
630
631 buf += " }\n\n"
632 buf += " return proto_id;\n"
633 buf += "}\n\n"
634 bufi += "u8 " + fabric_mod_name + "_get_fabric_proto_ident(struct se_portal_group *);\n"
635
636 if re.search('get_wwn', fo):
637 buf += "char *" + fabric_mod_name + "_get_fabric_wwn(struct se_portal_group *se_tpg)\n"
638 buf += "{\n"
639 buf += " struct " + fabric_mod_name + "_tpg *tpg = container_of(se_tpg,\n"
640 buf += " struct " + fabric_mod_name + "_tpg, se_tpg);\n"
641 buf += " struct " + fabric_mod_name + "_" + fabric_mod_port + " *" + fabric_mod_port + " = tpg->" + fabric_mod_port + ";\n\n"
642 buf += " return &" + fabric_mod_port + "->" + fabric_mod_port + "_name[0];\n"
643 buf += "}\n\n"
644 bufi += "char *" + fabric_mod_name + "_get_fabric_wwn(struct se_portal_group *);\n"
645
646 if re.search('get_tag', fo):
647 buf += "u16 " + fabric_mod_name + "_get_tag(struct se_portal_group *se_tpg)\n"
648 buf += "{\n"
649 buf += " struct " + fabric_mod_name + "_tpg *tpg = container_of(se_tpg,\n"
650 buf += " struct " + fabric_mod_name + "_tpg, se_tpg);\n"
651 buf += " return tpg->" + fabric_mod_port + "_tpgt;\n"
652 buf += "}\n\n"
653 bufi += "u16 " + fabric_mod_name + "_get_tag(struct se_portal_group *);\n"
654
655 if re.search('get_default_depth', fo):
656 buf += "u32 " + fabric_mod_name + "_get_default_depth(struct se_portal_group *se_tpg)\n"
657 buf += "{\n"
658 buf += " return 1;\n"
659 buf += "}\n\n"
660 bufi += "u32 " + fabric_mod_name + "_get_default_depth(struct se_portal_group *);\n"
661
662 if re.search('get_pr_transport_id\)\(', fo):
663 buf += "u32 " + fabric_mod_name + "_get_pr_transport_id(\n"
664 buf += " struct se_portal_group *se_tpg,\n"
665 buf += " struct se_node_acl *se_nacl,\n"
666 buf += " struct t10_pr_registration *pr_reg,\n"
667 buf += " int *format_code,\n"
668 buf += " unsigned char *buf)\n"
669 buf += "{\n"
670 buf += " struct " + fabric_mod_name + "_tpg *tpg = container_of(se_tpg,\n"
671 buf += " struct " + fabric_mod_name + "_tpg, se_tpg);\n"
672 buf += " struct " + fabric_mod_name + "_" + fabric_mod_port + " *" + fabric_mod_port + " = tpg->" + fabric_mod_port + ";\n"
673 buf += " int ret = 0;\n\n"
674 buf += " switch (" + fabric_mod_port + "->" + fabric_mod_port + "_proto_id) {\n"
675 if proto_ident == "FC":
676 buf += " case SCSI_PROTOCOL_FCP:\n"
677 buf += " default:\n"
678 buf += " ret = fc_get_pr_transport_id(se_tpg, se_nacl, pr_reg,\n"
679 buf += " format_code, buf);\n"
680 buf += " break;\n"
681 elif proto_ident == "SAS":
682 buf += " case SCSI_PROTOCOL_SAS:\n"
683 buf += " default:\n"
684 buf += " ret = sas_get_pr_transport_id(se_tpg, se_nacl, pr_reg,\n"
685 buf += " format_code, buf);\n"
686 buf += " break;\n"
687 elif proto_ident == "iSCSI":
688 buf += " case SCSI_PROTOCOL_ISCSI:\n"
689 buf += " default:\n"
690 buf += " ret = iscsi_get_pr_transport_id(se_tpg, se_nacl, pr_reg,\n"
691 buf += " format_code, buf);\n"
692 buf += " break;\n"
693
694 buf += " }\n\n"
695 buf += " return ret;\n"
696 buf += "}\n\n"
697 bufi += "u32 " + fabric_mod_name + "_get_pr_transport_id(struct se_portal_group *,\n"
698 bufi += " struct se_node_acl *, struct t10_pr_registration *,\n"
699 bufi += " int *, unsigned char *);\n"
700
701 if re.search('get_pr_transport_id_len\)\(', fo):
702 buf += "u32 " + fabric_mod_name + "_get_pr_transport_id_len(\n"
703 buf += " struct se_portal_group *se_tpg,\n"
704 buf += " struct se_node_acl *se_nacl,\n"
705 buf += " struct t10_pr_registration *pr_reg,\n"
706 buf += " int *format_code)\n"
707 buf += "{\n"
708 buf += " struct " + fabric_mod_name + "_tpg *tpg = container_of(se_tpg,\n"
709 buf += " struct " + fabric_mod_name + "_tpg, se_tpg);\n"
710 buf += " struct " + fabric_mod_name + "_" + fabric_mod_port + " *" + fabric_mod_port + " = tpg->" + fabric_mod_port + ";\n"
711 buf += " int ret = 0;\n\n"
712 buf += " switch (" + fabric_mod_port + "->" + fabric_mod_port + "_proto_id) {\n"
713 if proto_ident == "FC":
714 buf += " case SCSI_PROTOCOL_FCP:\n"
715 buf += " default:\n"
716 buf += " ret = fc_get_pr_transport_id_len(se_tpg, se_nacl, pr_reg,\n"
717 buf += " format_code);\n"
718 buf += " break;\n"
719 elif proto_ident == "SAS":
720 buf += " case SCSI_PROTOCOL_SAS:\n"
721 buf += " default:\n"
722 buf += " ret = sas_get_pr_transport_id_len(se_tpg, se_nacl, pr_reg,\n"
723 buf += " format_code);\n"
724 buf += " break;\n"
725 elif proto_ident == "iSCSI":
726 buf += " case SCSI_PROTOCOL_ISCSI:\n"
727 buf += " default:\n"
728 buf += " ret = iscsi_get_pr_transport_id_len(se_tpg, se_nacl, pr_reg,\n"
729 buf += " format_code);\n"
730 buf += " break;\n"
731
732
733 buf += " }\n\n"
734 buf += " return ret;\n"
735 buf += "}\n\n"
736 bufi += "u32 " + fabric_mod_name + "_get_pr_transport_id_len(struct se_portal_group *,\n"
737 bufi += " struct se_node_acl *, struct t10_pr_registration *,\n"
738 bufi += " int *);\n"
739
740 if re.search('parse_pr_out_transport_id\)\(', fo):
741 buf += "char *" + fabric_mod_name + "_parse_pr_out_transport_id(\n"
742 buf += " struct se_portal_group *se_tpg,\n"
743 buf += " const char *buf,\n"
744 buf += " u32 *out_tid_len,\n"
745 buf += " char **port_nexus_ptr)\n"
746 buf += "{\n"
747 buf += " struct " + fabric_mod_name + "_tpg *tpg = container_of(se_tpg,\n"
748 buf += " struct " + fabric_mod_name + "_tpg, se_tpg);\n"
749 buf += " struct " + fabric_mod_name + "_" + fabric_mod_port + " *" + fabric_mod_port + " = tpg->" + fabric_mod_port + ";\n"
750 buf += " char *tid = NULL;\n\n"
751 buf += " switch (" + fabric_mod_port + "->" + fabric_mod_port + "_proto_id) {\n"
752 if proto_ident == "FC":
753 buf += " case SCSI_PROTOCOL_FCP:\n"
754 buf += " default:\n"
755 buf += " tid = fc_parse_pr_out_transport_id(se_tpg, buf, out_tid_len,\n"
756 buf += " port_nexus_ptr);\n"
757 elif proto_ident == "SAS":
758 buf += " case SCSI_PROTOCOL_SAS:\n"
759 buf += " default:\n"
760 buf += " tid = sas_parse_pr_out_transport_id(se_tpg, buf, out_tid_len,\n"
761 buf += " port_nexus_ptr);\n"
762 elif proto_ident == "iSCSI":
763 buf += " case SCSI_PROTOCOL_ISCSI:\n"
764 buf += " default:\n"
765 buf += " tid = iscsi_parse_pr_out_transport_id(se_tpg, buf, out_tid_len,\n"
766 buf += " port_nexus_ptr);\n"
767
768 buf += " }\n\n"
769 buf += " return tid;\n"
770 buf += "}\n\n"
771 bufi += "char *" + fabric_mod_name + "_parse_pr_out_transport_id(struct se_portal_group *,\n"
772 bufi += " const char *, u32 *, char **);\n"
773
774 if re.search('alloc_fabric_acl\)\(', fo):
775 buf += "struct se_node_acl *" + fabric_mod_name + "_alloc_fabric_acl(struct se_portal_group *se_tpg)\n"
776 buf += "{\n"
777 buf += " struct " + fabric_mod_name + "_nacl *nacl;\n\n"
778 buf += " nacl = kzalloc(sizeof(struct " + fabric_mod_name + "_nacl), GFP_KERNEL);\n"
779 buf += " if (!(nacl)) {\n"
780 buf += " printk(KERN_ERR \"Unable to alocate struct " + fabric_mod_name + "_nacl\\n\");\n"
781 buf += " return NULL;\n"
782 buf += " }\n\n"
783 buf += " return &nacl->se_node_acl;\n"
784 buf += "}\n\n"
785 bufi += "struct se_node_acl *" + fabric_mod_name + "_alloc_fabric_acl(struct se_portal_group *);\n"
786
787 if re.search('release_fabric_acl\)\(', fo):
788 buf += "void " + fabric_mod_name + "_release_fabric_acl(\n"
789 buf += " struct se_portal_group *se_tpg,\n"
790 buf += " struct se_node_acl *se_nacl)\n"
791 buf += "{\n"
792 buf += " struct " + fabric_mod_name + "_nacl *nacl = container_of(se_nacl,\n"
793 buf += " struct " + fabric_mod_name + "_nacl, se_node_acl);\n"
794 buf += " kfree(nacl);\n"
795 buf += "}\n\n"
796 bufi += "void " + fabric_mod_name + "_release_fabric_acl(struct se_portal_group *,\n"
797 bufi += " struct se_node_acl *);\n"
798
799 if re.search('tpg_get_inst_index\)\(', fo):
800 buf += "u32 " + fabric_mod_name + "_tpg_get_inst_index(struct se_portal_group *se_tpg)\n"
801 buf += "{\n"
802 buf += " return 1;\n"
803 buf += "}\n\n"
804 bufi += "u32 " + fabric_mod_name + "_tpg_get_inst_index(struct se_portal_group *);\n"
805
77271de6 806 if re.search('\*release_cmd\)\(', fo):
c66ac9db
NB
807 buf += "void " + fabric_mod_name + "_release_cmd(struct se_cmd *se_cmd)\n"
808 buf += "{\n"
809 buf += " return;\n"
810 buf += "}\n\n"
811 bufi += "void " + fabric_mod_name + "_release_cmd(struct se_cmd *);\n"
812
813 if re.search('shutdown_session\)\(', fo):
814 buf += "int " + fabric_mod_name + "_shutdown_session(struct se_session *se_sess)\n"
815 buf += "{\n"
816 buf += " return 0;\n"
817 buf += "}\n\n"
818 bufi += "int " + fabric_mod_name + "_shutdown_session(struct se_session *);\n"
819
820 if re.search('close_session\)\(', fo):
821 buf += "void " + fabric_mod_name + "_close_session(struct se_session *se_sess)\n"
822 buf += "{\n"
823 buf += " return;\n"
824 buf += "}\n\n"
825 bufi += "void " + fabric_mod_name + "_close_session(struct se_session *);\n"
826
827 if re.search('stop_session\)\(', fo):
828 buf += "void " + fabric_mod_name + "_stop_session(struct se_session *se_sess, int sess_sleep , int conn_sleep)\n"
829 buf += "{\n"
830 buf += " return;\n"
831 buf += "}\n\n"
832 bufi += "void " + fabric_mod_name + "_stop_session(struct se_session *, int, int);\n"
833
834 if re.search('fall_back_to_erl0\)\(', fo):
835 buf += "void " + fabric_mod_name + "_reset_nexus(struct se_session *se_sess)\n"
836 buf += "{\n"
837 buf += " return;\n"
838 buf += "}\n\n"
839 bufi += "void " + fabric_mod_name + "_reset_nexus(struct se_session *);\n"
840
841 if re.search('sess_logged_in\)\(', fo):
842 buf += "int " + fabric_mod_name + "_sess_logged_in(struct se_session *se_sess)\n"
843 buf += "{\n"
844 buf += " return 0;\n"
845 buf += "}\n\n"
846 bufi += "int " + fabric_mod_name + "_sess_logged_in(struct se_session *);\n"
847
848 if re.search('sess_get_index\)\(', fo):
849 buf += "u32 " + fabric_mod_name + "_sess_get_index(struct se_session *se_sess)\n"
850 buf += "{\n"
851 buf += " return 0;\n"
852 buf += "}\n\n"
853 bufi += "u32 " + fabric_mod_name + "_sess_get_index(struct se_session *);\n"
854
855 if re.search('write_pending\)\(', fo):
856 buf += "int " + fabric_mod_name + "_write_pending(struct se_cmd *se_cmd)\n"
857 buf += "{\n"
858 buf += " return 0;\n"
859 buf += "}\n\n"
860 bufi += "int " + fabric_mod_name + "_write_pending(struct se_cmd *);\n"
861
862 if re.search('write_pending_status\)\(', fo):
863 buf += "int " + fabric_mod_name + "_write_pending_status(struct se_cmd *se_cmd)\n"
864 buf += "{\n"
865 buf += " return 0;\n"
866 buf += "}\n\n"
867 bufi += "int " + fabric_mod_name + "_write_pending_status(struct se_cmd *);\n"
868
869 if re.search('set_default_node_attributes\)\(', fo):
870 buf += "void " + fabric_mod_name + "_set_default_node_attrs(struct se_node_acl *nacl)\n"
871 buf += "{\n"
872 buf += " return;\n"
873 buf += "}\n\n"
874 bufi += "void " + fabric_mod_name + "_set_default_node_attrs(struct se_node_acl *);\n"
875
876 if re.search('get_task_tag\)\(', fo):
877 buf += "u32 " + fabric_mod_name + "_get_task_tag(struct se_cmd *se_cmd)\n"
878 buf += "{\n"
879 buf += " return 0;\n"
880 buf += "}\n\n"
881 bufi += "u32 " + fabric_mod_name + "_get_task_tag(struct se_cmd *);\n"
882
883 if re.search('get_cmd_state\)\(', fo):
884 buf += "int " + fabric_mod_name + "_get_cmd_state(struct se_cmd *se_cmd)\n"
885 buf += "{\n"
886 buf += " return 0;\n"
887 buf += "}\n\n"
888 bufi += "int " + fabric_mod_name + "_get_cmd_state(struct se_cmd *);\n"
889
c66ac9db
NB
890 if re.search('queue_data_in\)\(', fo):
891 buf += "int " + fabric_mod_name + "_queue_data_in(struct se_cmd *se_cmd)\n"
892 buf += "{\n"
893 buf += " return 0;\n"
894 buf += "}\n\n"
895 bufi += "int " + fabric_mod_name + "_queue_data_in(struct se_cmd *);\n"
896
897 if re.search('queue_status\)\(', fo):
898 buf += "int " + fabric_mod_name + "_queue_status(struct se_cmd *se_cmd)\n"
899 buf += "{\n"
900 buf += " return 0;\n"
901 buf += "}\n\n"
902 bufi += "int " + fabric_mod_name + "_queue_status(struct se_cmd *);\n"
903
904 if re.search('queue_tm_rsp\)\(', fo):
905 buf += "int " + fabric_mod_name + "_queue_tm_rsp(struct se_cmd *se_cmd)\n"
906 buf += "{\n"
907 buf += " return 0;\n"
908 buf += "}\n\n"
909 bufi += "int " + fabric_mod_name + "_queue_tm_rsp(struct se_cmd *);\n"
910
911 if re.search('get_fabric_sense_len\)\(', fo):
912 buf += "u16 " + fabric_mod_name + "_get_fabric_sense_len(void)\n"
913 buf += "{\n"
914 buf += " return 0;\n"
915 buf += "}\n\n"
916 bufi += "u16 " + fabric_mod_name + "_get_fabric_sense_len(void);\n"
917
918 if re.search('set_fabric_sense_len\)\(', fo):
919 buf += "u16 " + fabric_mod_name + "_set_fabric_sense_len(struct se_cmd *se_cmd, u32 sense_length)\n"
920 buf += "{\n"
921 buf += " return 0;\n"
922 buf += "}\n\n"
923 bufi += "u16 " + fabric_mod_name + "_set_fabric_sense_len(struct se_cmd *, u32);\n"
924
925 if re.search('is_state_remove\)\(', fo):
926 buf += "int " + fabric_mod_name + "_is_state_remove(struct se_cmd *se_cmd)\n"
927 buf += "{\n"
928 buf += " return 0;\n"
929 buf += "}\n\n"
930 bufi += "int " + fabric_mod_name + "_is_state_remove(struct se_cmd *);\n"
931
c66ac9db
NB
932
933 ret = p.write(buf)
934 if ret:
935 tcm_mod_err("Unable to write f: " + f)
936
937 p.close()
938
939 ret = pi.write(bufi)
940 if ret:
941 tcm_mod_err("Unable to write fi: " + fi)
942
943 pi.close()
944 return
945
946def tcm_mod_build_kbuild(fabric_mod_dir_var, fabric_mod_name):
947
948 buf = ""
10635c8b 949 f = fabric_mod_dir_var + "/Makefile"
c66ac9db
NB
950 print "Writing file: " + f
951
952 p = open(f, 'w')
953 if not p:
954 tcm_mod_err("Unable to open file: " + f)
955
c66ac9db
NB
956 buf += fabric_mod_name + "-objs := " + fabric_mod_name + "_fabric.o \\\n"
957 buf += " " + fabric_mod_name + "_configfs.o\n"
958 buf += "obj-$(CONFIG_" + fabric_mod_name.upper() + ") += " + fabric_mod_name + ".o\n"
959
960 ret = p.write(buf)
961 if ret:
962 tcm_mod_err("Unable to write f: " + f)
963
964 p.close()
965 return
966
967def tcm_mod_build_kconfig(fabric_mod_dir_var, fabric_mod_name):
968
969 buf = ""
970 f = fabric_mod_dir_var + "/Kconfig"
971 print "Writing file: " + f
972
973 p = open(f, 'w')
974 if not p:
975 tcm_mod_err("Unable to open file: " + f)
976
977 buf = "config " + fabric_mod_name.upper() + "\n"
978 buf += " tristate \"" + fabric_mod_name.upper() + " fabric module\"\n"
979 buf += " depends on TARGET_CORE && CONFIGFS_FS\n"
980 buf += " default n\n"
981 buf += " ---help---\n"
982 buf += " Say Y here to enable the " + fabric_mod_name.upper() + " fabric module\n"
983
984 ret = p.write(buf)
985 if ret:
986 tcm_mod_err("Unable to write f: " + f)
987
988 p.close()
989 return
990
991def tcm_mod_add_kbuild(tcm_dir, fabric_mod_name):
992 buf = "obj-$(CONFIG_" + fabric_mod_name.upper() + ") += " + fabric_mod_name.lower() + "/\n"
10635c8b 993 kbuild = tcm_dir + "/drivers/target/Makefile"
c66ac9db
NB
994
995 f = open(kbuild, 'a')
996 f.write(buf)
997 f.close()
998 return
999
1000def tcm_mod_add_kconfig(tcm_dir, fabric_mod_name):
1001 buf = "source \"drivers/target/" + fabric_mod_name.lower() + "/Kconfig\"\n"
1002 kconfig = tcm_dir + "/drivers/target/Kconfig"
1003
1004 f = open(kconfig, 'a')
1005 f.write(buf)
1006 f.close()
1007 return
1008
1009def main(modname, proto_ident):
1010# proto_ident = "FC"
1011# proto_ident = "SAS"
1012# proto_ident = "iSCSI"
1013
1014 tcm_dir = os.getcwd();
1015 tcm_dir += "/../../"
1016 print "tcm_dir: " + tcm_dir
1017 fabric_mod_name = modname
1018 fabric_mod_dir = tcm_dir + "drivers/target/" + fabric_mod_name
1019 print "Set fabric_mod_name: " + fabric_mod_name
1020 print "Set fabric_mod_dir: " + fabric_mod_dir
1021 print "Using proto_ident: " + proto_ident
1022
1023 if proto_ident != "FC" and proto_ident != "SAS" and proto_ident != "iSCSI":
1024 print "Unsupported proto_ident: " + proto_ident
1025 sys.exit(1)
1026
1027 ret = tcm_mod_create_module_subdir(fabric_mod_dir)
1028 if ret:
1029 print "tcm_mod_create_module_subdir() failed because module already exists!"
1030 sys.exit(1)
1031
1032 tcm_mod_build_base_includes(proto_ident, fabric_mod_dir, fabric_mod_name)
1033 tcm_mod_scan_fabric_ops(tcm_dir)
1034 tcm_mod_dump_fabric_ops(proto_ident, fabric_mod_dir, fabric_mod_name)
1035 tcm_mod_build_configfs(proto_ident, fabric_mod_dir, fabric_mod_name)
1036 tcm_mod_build_kbuild(fabric_mod_dir, fabric_mod_name)
1037 tcm_mod_build_kconfig(fabric_mod_dir, fabric_mod_name)
1038
10635c8b 1039 input = raw_input("Would you like to add " + fabric_mod_name + "to drivers/target/Makefile..? [yes,no]: ")
c66ac9db
NB
1040 if input == "yes" or input == "y":
1041 tcm_mod_add_kbuild(tcm_dir, fabric_mod_name)
1042
1043 input = raw_input("Would you like to add " + fabric_mod_name + "to drivers/target/Kconfig..? [yes,no]: ")
1044 if input == "yes" or input == "y":
1045 tcm_mod_add_kconfig(tcm_dir, fabric_mod_name)
1046
1047 return
1048
1049parser = optparse.OptionParser()
1050parser.add_option('-m', '--modulename', help='Module name', dest='modname',
1051 action='store', nargs=1, type='string')
1052parser.add_option('-p', '--protoident', help='Protocol Ident', dest='protoident',
1053 action='store', nargs=1, type='string')
1054
1055(opts, args) = parser.parse_args()
1056
1057mandatories = ['modname', 'protoident']
1058for m in mandatories:
1059 if not opts.__dict__[m]:
1060 print "mandatory option is missing\n"
1061 parser.print_help()
1062 exit(-1)
1063
1064if __name__ == "__main__":
1065
1066 main(str(opts.modname), opts.protoident)