Commit | Line | Data |
---|---|---|
a4b74fcc | 1 | // SPDX-License-Identifier: GPL-2.0 |
475d0fe7 JS |
2 | /* |
3 | * Copyright (c) 2016 Avago Technologies. All rights reserved. | |
475d0fe7 JS |
4 | */ |
5 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | |
6 | #include <linux/module.h> | |
7 | #include <linux/parser.h> | |
8 | #include <uapi/scsi/fc/fc_fs.h> | |
9 | ||
10 | #include "../host/nvme.h" | |
11 | #include "../target/nvmet.h" | |
12 | #include <linux/nvme-fc-driver.h> | |
13 | #include <linux/nvme-fc.h> | |
14 | ||
15 | ||
16 | enum { | |
17 | NVMF_OPT_ERR = 0, | |
18 | NVMF_OPT_WWNN = 1 << 0, | |
19 | NVMF_OPT_WWPN = 1 << 1, | |
20 | NVMF_OPT_ROLES = 1 << 2, | |
21 | NVMF_OPT_FCADDR = 1 << 3, | |
22 | NVMF_OPT_LPWWNN = 1 << 4, | |
23 | NVMF_OPT_LPWWPN = 1 << 5, | |
24 | }; | |
25 | ||
26 | struct fcloop_ctrl_options { | |
27 | int mask; | |
28 | u64 wwnn; | |
29 | u64 wwpn; | |
30 | u32 roles; | |
31 | u32 fcaddr; | |
32 | u64 lpwwnn; | |
33 | u64 lpwwpn; | |
34 | }; | |
35 | ||
36 | static const match_table_t opt_tokens = { | |
37 | { NVMF_OPT_WWNN, "wwnn=%s" }, | |
38 | { NVMF_OPT_WWPN, "wwpn=%s" }, | |
39 | { NVMF_OPT_ROLES, "roles=%d" }, | |
40 | { NVMF_OPT_FCADDR, "fcaddr=%x" }, | |
41 | { NVMF_OPT_LPWWNN, "lpwwnn=%s" }, | |
42 | { NVMF_OPT_LPWWPN, "lpwwpn=%s" }, | |
43 | { NVMF_OPT_ERR, NULL } | |
44 | }; | |
45 | ||
ca8f4bee DZ |
46 | static int fcloop_verify_addr(substring_t *s) |
47 | { | |
48 | size_t blen = s->to - s->from + 1; | |
49 | ||
50 | if (strnlen(s->from, blen) != NVME_FC_TRADDR_HEXNAMELEN + 2 || | |
51 | strncmp(s->from, "0x", 2)) | |
52 | return -EINVAL; | |
53 | ||
54 | return 0; | |
55 | } | |
56 | ||
475d0fe7 JS |
57 | static int |
58 | fcloop_parse_options(struct fcloop_ctrl_options *opts, | |
59 | const char *buf) | |
60 | { | |
61 | substring_t args[MAX_OPT_ARGS]; | |
62 | char *options, *o, *p; | |
63 | int token, ret = 0; | |
64 | u64 token64; | |
65 | ||
66 | options = o = kstrdup(buf, GFP_KERNEL); | |
67 | if (!options) | |
68 | return -ENOMEM; | |
69 | ||
70 | while ((p = strsep(&o, ",\n")) != NULL) { | |
71 | if (!*p) | |
72 | continue; | |
73 | ||
74 | token = match_token(p, opt_tokens, args); | |
75 | opts->mask |= token; | |
76 | switch (token) { | |
77 | case NVMF_OPT_WWNN: | |
ca8f4bee DZ |
78 | if (fcloop_verify_addr(args) || |
79 | match_u64(args, &token64)) { | |
475d0fe7 JS |
80 | ret = -EINVAL; |
81 | goto out_free_options; | |
82 | } | |
83 | opts->wwnn = token64; | |
84 | break; | |
85 | case NVMF_OPT_WWPN: | |
ca8f4bee DZ |
86 | if (fcloop_verify_addr(args) || |
87 | match_u64(args, &token64)) { | |
475d0fe7 JS |
88 | ret = -EINVAL; |
89 | goto out_free_options; | |
90 | } | |
91 | opts->wwpn = token64; | |
92 | break; | |
93 | case NVMF_OPT_ROLES: | |
94 | if (match_int(args, &token)) { | |
95 | ret = -EINVAL; | |
96 | goto out_free_options; | |
97 | } | |
98 | opts->roles = token; | |
99 | break; | |
100 | case NVMF_OPT_FCADDR: | |
101 | if (match_hex(args, &token)) { | |
102 | ret = -EINVAL; | |
103 | goto out_free_options; | |
104 | } | |
105 | opts->fcaddr = token; | |
106 | break; | |
107 | case NVMF_OPT_LPWWNN: | |
ca8f4bee DZ |
108 | if (fcloop_verify_addr(args) || |
109 | match_u64(args, &token64)) { | |
475d0fe7 JS |
110 | ret = -EINVAL; |
111 | goto out_free_options; | |
112 | } | |
113 | opts->lpwwnn = token64; | |
114 | break; | |
115 | case NVMF_OPT_LPWWPN: | |
ca8f4bee DZ |
116 | if (fcloop_verify_addr(args) || |
117 | match_u64(args, &token64)) { | |
475d0fe7 JS |
118 | ret = -EINVAL; |
119 | goto out_free_options; | |
120 | } | |
121 | opts->lpwwpn = token64; | |
122 | break; | |
123 | default: | |
124 | pr_warn("unknown parameter or missing value '%s'\n", p); | |
125 | ret = -EINVAL; | |
126 | goto out_free_options; | |
127 | } | |
128 | } | |
129 | ||
130 | out_free_options: | |
131 | kfree(options); | |
132 | return ret; | |
133 | } | |
134 | ||
135 | ||
136 | static int | |
137 | fcloop_parse_nm_options(struct device *dev, u64 *nname, u64 *pname, | |
138 | const char *buf) | |
139 | { | |
140 | substring_t args[MAX_OPT_ARGS]; | |
141 | char *options, *o, *p; | |
142 | int token, ret = 0; | |
143 | u64 token64; | |
144 | ||
145 | *nname = -1; | |
146 | *pname = -1; | |
147 | ||
148 | options = o = kstrdup(buf, GFP_KERNEL); | |
149 | if (!options) | |
150 | return -ENOMEM; | |
151 | ||
152 | while ((p = strsep(&o, ",\n")) != NULL) { | |
153 | if (!*p) | |
154 | continue; | |
155 | ||
156 | token = match_token(p, opt_tokens, args); | |
157 | switch (token) { | |
158 | case NVMF_OPT_WWNN: | |
ca8f4bee DZ |
159 | if (fcloop_verify_addr(args) || |
160 | match_u64(args, &token64)) { | |
475d0fe7 JS |
161 | ret = -EINVAL; |
162 | goto out_free_options; | |
163 | } | |
164 | *nname = token64; | |
165 | break; | |
166 | case NVMF_OPT_WWPN: | |
ca8f4bee DZ |
167 | if (fcloop_verify_addr(args) || |
168 | match_u64(args, &token64)) { | |
475d0fe7 JS |
169 | ret = -EINVAL; |
170 | goto out_free_options; | |
171 | } | |
172 | *pname = token64; | |
173 | break; | |
174 | default: | |
175 | pr_warn("unknown parameter or missing value '%s'\n", p); | |
176 | ret = -EINVAL; | |
177 | goto out_free_options; | |
178 | } | |
179 | } | |
180 | ||
181 | out_free_options: | |
182 | kfree(options); | |
183 | ||
184 | if (!ret) { | |
185 | if (*nname == -1) | |
186 | return -EINVAL; | |
187 | if (*pname == -1) | |
188 | return -EINVAL; | |
189 | } | |
190 | ||
191 | return ret; | |
192 | } | |
193 | ||
194 | ||
195 | #define LPORT_OPTS (NVMF_OPT_WWNN | NVMF_OPT_WWPN) | |
196 | ||
197 | #define RPORT_OPTS (NVMF_OPT_WWNN | NVMF_OPT_WWPN | \ | |
198 | NVMF_OPT_LPWWNN | NVMF_OPT_LPWWPN) | |
199 | ||
200 | #define TGTPORT_OPTS (NVMF_OPT_WWNN | NVMF_OPT_WWPN) | |
201 | ||
475d0fe7 JS |
202 | |
203 | static DEFINE_SPINLOCK(fcloop_lock); | |
204 | static LIST_HEAD(fcloop_lports); | |
205 | static LIST_HEAD(fcloop_nports); | |
206 | ||
207 | struct fcloop_lport { | |
208 | struct nvme_fc_local_port *localport; | |
209 | struct list_head lport_list; | |
72511b1d | 210 | refcount_t ref; |
475d0fe7 JS |
211 | }; |
212 | ||
6fda2028 JS |
213 | struct fcloop_lport_priv { |
214 | struct fcloop_lport *lport; | |
215 | }; | |
216 | ||
2b559a3e DW |
217 | /* The port is already being removed, avoid double free */ |
218 | #define PORT_DELETED 0 | |
219 | ||
475d0fe7 | 220 | struct fcloop_rport { |
38803fcf JS |
221 | struct nvme_fc_remote_port *remoteport; |
222 | struct nvmet_fc_target_port *targetport; | |
223 | struct fcloop_nport *nport; | |
224 | struct fcloop_lport *lport; | |
225 | spinlock_t lock; | |
226 | struct list_head ls_list; | |
227 | struct work_struct ls_work; | |
2b559a3e | 228 | unsigned long flags; |
475d0fe7 JS |
229 | }; |
230 | ||
231 | struct fcloop_tport { | |
437c0b82 JS |
232 | struct nvmet_fc_target_port *targetport; |
233 | struct nvme_fc_remote_port *remoteport; | |
234 | struct fcloop_nport *nport; | |
235 | struct fcloop_lport *lport; | |
236 | spinlock_t lock; | |
237 | struct list_head ls_list; | |
238 | struct work_struct ls_work; | |
2b559a3e | 239 | unsigned long flags; |
475d0fe7 JS |
240 | }; |
241 | ||
242 | struct fcloop_nport { | |
243 | struct fcloop_rport *rport; | |
244 | struct fcloop_tport *tport; | |
245 | struct fcloop_lport *lport; | |
246 | struct list_head nport_list; | |
f22c458f | 247 | refcount_t ref; |
475d0fe7 JS |
248 | u64 node_name; |
249 | u64 port_name; | |
250 | u32 port_role; | |
251 | u32 port_id; | |
252 | }; | |
253 | ||
254 | struct fcloop_lsreq { | |
475d0fe7 | 255 | struct nvmefc_ls_req *lsreq; |
72e6329f | 256 | struct nvmefc_ls_rsp ls_rsp; |
ea397658 | 257 | int lsdir; /* H2T or T2H */ |
475d0fe7 | 258 | int status; |
38803fcf | 259 | struct list_head ls_list; /* fcloop_rport->ls_list */ |
475d0fe7 JS |
260 | }; |
261 | ||
4cf7c363 JS |
262 | struct fcloop_rscn { |
263 | struct fcloop_tport *tport; | |
264 | struct work_struct work; | |
265 | }; | |
266 | ||
b6f80773 JS |
267 | enum { |
268 | INI_IO_START = 0, | |
269 | INI_IO_ACTIVE = 1, | |
270 | INI_IO_ABORTED = 2, | |
271 | INI_IO_COMPLETED = 3, | |
272 | }; | |
273 | ||
475d0fe7 JS |
274 | struct fcloop_fcpreq { |
275 | struct fcloop_tport *tport; | |
276 | struct nvmefc_fcp_req *fcpreq; | |
a97ec51b | 277 | spinlock_t reqlock; |
475d0fe7 | 278 | u16 status; |
b6f80773 | 279 | u32 inistate; |
a97ec51b JS |
280 | bool active; |
281 | bool aborted; | |
f22c458f | 282 | refcount_t ref; |
24431d60 JS |
283 | struct work_struct fcp_rcv_work; |
284 | struct work_struct abort_rcv_work; | |
285 | struct work_struct tio_done_work; | |
475d0fe7 JS |
286 | struct nvmefc_tgt_fcp_req tgt_fcp_req; |
287 | }; | |
288 | ||
ce79bfc2 JS |
289 | struct fcloop_ini_fcpreq { |
290 | struct nvmefc_fcp_req *fcpreq; | |
291 | struct fcloop_fcpreq *tfcp_req; | |
b6f80773 | 292 | spinlock_t inilock; |
ce79bfc2 | 293 | }; |
475d0fe7 | 294 | |
772042dd DW |
295 | /* SLAB cache for fcloop_lsreq structures */ |
296 | static struct kmem_cache *lsreq_cache; | |
297 | ||
475d0fe7 | 298 | static inline struct fcloop_lsreq * |
72e6329f | 299 | ls_rsp_to_lsreq(struct nvmefc_ls_rsp *lsrsp) |
475d0fe7 | 300 | { |
72e6329f | 301 | return container_of(lsrsp, struct fcloop_lsreq, ls_rsp); |
475d0fe7 JS |
302 | } |
303 | ||
304 | static inline struct fcloop_fcpreq * | |
305 | tgt_fcp_req_to_fcpreq(struct nvmefc_tgt_fcp_req *tgt_fcpreq) | |
306 | { | |
307 | return container_of(tgt_fcpreq, struct fcloop_fcpreq, tgt_fcp_req); | |
308 | } | |
309 | ||
310 | ||
311 | static int | |
312 | fcloop_create_queue(struct nvme_fc_local_port *localport, | |
313 | unsigned int qidx, u16 qsize, | |
314 | void **handle) | |
315 | { | |
316 | *handle = localport; | |
317 | return 0; | |
318 | } | |
319 | ||
320 | static void | |
321 | fcloop_delete_queue(struct nvme_fc_local_port *localport, | |
322 | unsigned int idx, void *handle) | |
323 | { | |
324 | } | |
325 | ||
475d0fe7 | 326 | static void |
38803fcf | 327 | fcloop_rport_lsrqst_work(struct work_struct *work) |
475d0fe7 | 328 | { |
38803fcf JS |
329 | struct fcloop_rport *rport = |
330 | container_of(work, struct fcloop_rport, ls_work); | |
331 | struct fcloop_lsreq *tls_req; | |
332 | ||
333 | spin_lock(&rport->lock); | |
334 | for (;;) { | |
335 | tls_req = list_first_entry_or_null(&rport->ls_list, | |
336 | struct fcloop_lsreq, ls_list); | |
337 | if (!tls_req) | |
338 | break; | |
475d0fe7 | 339 | |
38803fcf JS |
340 | list_del(&tls_req->ls_list); |
341 | spin_unlock(&rport->lock); | |
342 | ||
343 | tls_req->lsreq->done(tls_req->lsreq, tls_req->status); | |
344 | /* | |
345 | * callee may free memory containing tls_req. | |
346 | * do not reference lsreq after this. | |
347 | */ | |
772042dd | 348 | kmem_cache_free(lsreq_cache, tls_req); |
38803fcf JS |
349 | |
350 | spin_lock(&rport->lock); | |
351 | } | |
352 | spin_unlock(&rport->lock); | |
475d0fe7 JS |
353 | } |
354 | ||
355 | static int | |
ea397658 | 356 | fcloop_h2t_ls_req(struct nvme_fc_local_port *localport, |
475d0fe7 JS |
357 | struct nvme_fc_remote_port *remoteport, |
358 | struct nvmefc_ls_req *lsreq) | |
359 | { | |
475d0fe7 | 360 | struct fcloop_rport *rport = remoteport->private; |
772042dd | 361 | struct fcloop_lsreq *tls_req; |
475d0fe7 JS |
362 | int ret = 0; |
363 | ||
772042dd DW |
364 | tls_req = kmem_cache_alloc(lsreq_cache, GFP_KERNEL); |
365 | if (!tls_req) | |
366 | return -ENOMEM; | |
475d0fe7 | 367 | tls_req->lsreq = lsreq; |
38803fcf | 368 | INIT_LIST_HEAD(&tls_req->ls_list); |
475d0fe7 JS |
369 | |
370 | if (!rport->targetport) { | |
371 | tls_req->status = -ECONNREFUSED; | |
38803fcf | 372 | spin_lock(&rport->lock); |
dcfad4ab | 373 | list_add_tail(&tls_req->ls_list, &rport->ls_list); |
38803fcf | 374 | spin_unlock(&rport->lock); |
8832cf92 | 375 | queue_work(nvmet_wq, &rport->ls_work); |
475d0fe7 JS |
376 | return ret; |
377 | } | |
378 | ||
379 | tls_req->status = 0; | |
437c0b82 JS |
380 | ret = nvmet_fc_rcv_ls_req(rport->targetport, rport, |
381 | &tls_req->ls_rsp, | |
382 | lsreq->rqstaddr, lsreq->rqstlen); | |
475d0fe7 JS |
383 | |
384 | return ret; | |
385 | } | |
386 | ||
387 | static int | |
ea397658 | 388 | fcloop_h2t_xmt_ls_rsp(struct nvmet_fc_target_port *targetport, |
72e6329f | 389 | struct nvmefc_ls_rsp *lsrsp) |
475d0fe7 | 390 | { |
72e6329f | 391 | struct fcloop_lsreq *tls_req = ls_rsp_to_lsreq(lsrsp); |
475d0fe7 | 392 | struct nvmefc_ls_req *lsreq = tls_req->lsreq; |
38803fcf JS |
393 | struct fcloop_tport *tport = targetport->private; |
394 | struct nvme_fc_remote_port *remoteport = tport->remoteport; | |
395 | struct fcloop_rport *rport; | |
475d0fe7 | 396 | |
72e6329f JS |
397 | memcpy(lsreq->rspaddr, lsrsp->rspbuf, |
398 | ((lsreq->rsplen < lsrsp->rsplen) ? | |
399 | lsreq->rsplen : lsrsp->rsplen)); | |
38803fcf | 400 | |
72e6329f | 401 | lsrsp->done(lsrsp); |
475d0fe7 | 402 | |
772042dd DW |
403 | if (!remoteport) { |
404 | kmem_cache_free(lsreq_cache, tls_req); | |
405 | return 0; | |
38803fcf | 406 | } |
475d0fe7 | 407 | |
772042dd DW |
408 | rport = remoteport->private; |
409 | spin_lock(&rport->lock); | |
410 | list_add_tail(&tls_req->ls_list, &rport->ls_list); | |
411 | spin_unlock(&rport->lock); | |
412 | queue_work(nvmet_wq, &rport->ls_work); | |
413 | ||
475d0fe7 JS |
414 | return 0; |
415 | } | |
416 | ||
437c0b82 JS |
417 | static void |
418 | fcloop_tport_lsrqst_work(struct work_struct *work) | |
419 | { | |
420 | struct fcloop_tport *tport = | |
421 | container_of(work, struct fcloop_tport, ls_work); | |
422 | struct fcloop_lsreq *tls_req; | |
423 | ||
424 | spin_lock(&tport->lock); | |
425 | for (;;) { | |
426 | tls_req = list_first_entry_or_null(&tport->ls_list, | |
427 | struct fcloop_lsreq, ls_list); | |
428 | if (!tls_req) | |
429 | break; | |
430 | ||
431 | list_del(&tls_req->ls_list); | |
432 | spin_unlock(&tport->lock); | |
433 | ||
434 | tls_req->lsreq->done(tls_req->lsreq, tls_req->status); | |
435 | /* | |
436 | * callee may free memory containing tls_req. | |
437 | * do not reference lsreq after this. | |
438 | */ | |
772042dd | 439 | kmem_cache_free(lsreq_cache, tls_req); |
437c0b82 JS |
440 | |
441 | spin_lock(&tport->lock); | |
442 | } | |
443 | spin_unlock(&tport->lock); | |
444 | } | |
445 | ||
446 | static int | |
447 | fcloop_t2h_ls_req(struct nvmet_fc_target_port *targetport, void *hosthandle, | |
448 | struct nvmefc_ls_req *lsreq) | |
449 | { | |
437c0b82 | 450 | struct fcloop_tport *tport = targetport->private; |
772042dd | 451 | struct fcloop_lsreq *tls_req; |
437c0b82 JS |
452 | int ret = 0; |
453 | ||
454 | /* | |
455 | * hosthandle should be the dst.rport value. | |
456 | * hosthandle ignored as fcloop currently is | |
457 | * 1:1 tgtport vs remoteport | |
458 | */ | |
772042dd DW |
459 | |
460 | tls_req = kmem_cache_alloc(lsreq_cache, GFP_KERNEL); | |
461 | if (!tls_req) | |
462 | return -ENOMEM; | |
437c0b82 JS |
463 | tls_req->lsreq = lsreq; |
464 | INIT_LIST_HEAD(&tls_req->ls_list); | |
465 | ||
466 | if (!tport->remoteport) { | |
467 | tls_req->status = -ECONNREFUSED; | |
468 | spin_lock(&tport->lock); | |
dcfad4ab | 469 | list_add_tail(&tls_req->ls_list, &tport->ls_list); |
437c0b82 | 470 | spin_unlock(&tport->lock); |
8832cf92 | 471 | queue_work(nvmet_wq, &tport->ls_work); |
437c0b82 JS |
472 | return ret; |
473 | } | |
474 | ||
475 | tls_req->status = 0; | |
476 | ret = nvme_fc_rcv_ls_req(tport->remoteport, &tls_req->ls_rsp, | |
477 | lsreq->rqstaddr, lsreq->rqstlen); | |
478 | ||
772042dd DW |
479 | if (ret) |
480 | kmem_cache_free(lsreq_cache, tls_req); | |
481 | ||
437c0b82 JS |
482 | return ret; |
483 | } | |
484 | ||
485 | static int | |
486 | fcloop_t2h_xmt_ls_rsp(struct nvme_fc_local_port *localport, | |
487 | struct nvme_fc_remote_port *remoteport, | |
488 | struct nvmefc_ls_rsp *lsrsp) | |
489 | { | |
490 | struct fcloop_lsreq *tls_req = ls_rsp_to_lsreq(lsrsp); | |
491 | struct nvmefc_ls_req *lsreq = tls_req->lsreq; | |
492 | struct fcloop_rport *rport = remoteport->private; | |
493 | struct nvmet_fc_target_port *targetport = rport->targetport; | |
494 | struct fcloop_tport *tport; | |
495 | ||
772042dd | 496 | if (!targetport) { |
84eedced DW |
497 | /* |
498 | * The target port is gone. The target doesn't expect any | |
499 | * response anymore and the ->done call is not valid | |
500 | * because the resources have been freed by | |
501 | * nvmet_fc_free_pending_reqs. | |
502 | * | |
503 | * We end up here from delete association exchange: | |
504 | * nvmet_fc_xmt_disconnect_assoc sends an async request. | |
505 | */ | |
772042dd DW |
506 | kmem_cache_free(lsreq_cache, tls_req); |
507 | return 0; | |
437c0b82 JS |
508 | } |
509 | ||
84eedced DW |
510 | memcpy(lsreq->rspaddr, lsrsp->rspbuf, |
511 | ((lsreq->rsplen < lsrsp->rsplen) ? | |
512 | lsreq->rsplen : lsrsp->rsplen)); | |
513 | lsrsp->done(lsrsp); | |
514 | ||
772042dd DW |
515 | tport = targetport->private; |
516 | spin_lock(&tport->lock); | |
517 | list_add_tail(&tls_req->ls_list, &tport->ls_list); | |
518 | spin_unlock(&tport->lock); | |
519 | queue_work(nvmet_wq, &tport->ls_work); | |
520 | ||
437c0b82 JS |
521 | return 0; |
522 | } | |
523 | ||
524 | static void | |
525 | fcloop_t2h_host_release(void *hosthandle) | |
526 | { | |
527 | /* host handle ignored for now */ | |
528 | } | |
529 | ||
bbb443e9 HR |
530 | static int |
531 | fcloop_t2h_host_traddr(void *hosthandle, u64 *wwnn, u64 *wwpn) | |
532 | { | |
533 | struct fcloop_rport *rport = hosthandle; | |
534 | ||
535 | *wwnn = rport->lport->localport->node_name; | |
536 | *wwpn = rport->lport->localport->port_name; | |
537 | return 0; | |
538 | } | |
539 | ||
4cf7c363 JS |
540 | /* |
541 | * Simulate reception of RSCN and converting it to a initiator transport | |
542 | * call to rescan a remote port. | |
543 | */ | |
544 | static void | |
545 | fcloop_tgt_rscn_work(struct work_struct *work) | |
546 | { | |
547 | struct fcloop_rscn *tgt_rscn = | |
548 | container_of(work, struct fcloop_rscn, work); | |
549 | struct fcloop_tport *tport = tgt_rscn->tport; | |
550 | ||
551 | if (tport->remoteport) | |
552 | nvme_fc_rescan_remoteport(tport->remoteport); | |
553 | kfree(tgt_rscn); | |
554 | } | |
555 | ||
556 | static void | |
557 | fcloop_tgt_discovery_evt(struct nvmet_fc_target_port *tgtport) | |
558 | { | |
559 | struct fcloop_rscn *tgt_rscn; | |
560 | ||
561 | tgt_rscn = kzalloc(sizeof(*tgt_rscn), GFP_KERNEL); | |
562 | if (!tgt_rscn) | |
563 | return; | |
564 | ||
565 | tgt_rscn->tport = tgtport->private; | |
566 | INIT_WORK(&tgt_rscn->work, fcloop_tgt_rscn_work); | |
567 | ||
8832cf92 | 568 | queue_work(nvmet_wq, &tgt_rscn->work); |
4cf7c363 JS |
569 | } |
570 | ||
a97ec51b | 571 | static void |
f22c458f | 572 | fcloop_tfcp_req_put(struct fcloop_fcpreq *tfcp_req) |
a97ec51b | 573 | { |
f22c458f DW |
574 | if (!refcount_dec_and_test(&tfcp_req->ref)) |
575 | return; | |
a97ec51b | 576 | |
b6f80773 JS |
577 | kfree(tfcp_req); |
578 | } | |
24431d60 | 579 | |
b6f80773 JS |
580 | static int |
581 | fcloop_tfcp_req_get(struct fcloop_fcpreq *tfcp_req) | |
582 | { | |
f22c458f | 583 | return refcount_inc_not_zero(&tfcp_req->ref); |
24431d60 JS |
584 | } |
585 | ||
586 | static void | |
587 | fcloop_call_host_done(struct nvmefc_fcp_req *fcpreq, | |
588 | struct fcloop_fcpreq *tfcp_req, int status) | |
a97ec51b | 589 | { |
24431d60 | 590 | struct fcloop_ini_fcpreq *inireq = NULL; |
a97ec51b | 591 | |
24431d60 JS |
592 | if (fcpreq) { |
593 | inireq = fcpreq->private; | |
b6f80773 | 594 | spin_lock(&inireq->inilock); |
24431d60 | 595 | inireq->tfcp_req = NULL; |
b6f80773 | 596 | spin_unlock(&inireq->inilock); |
24431d60 JS |
597 | |
598 | fcpreq->status = status; | |
599 | fcpreq->done(fcpreq); | |
600 | } | |
b6f80773 JS |
601 | |
602 | /* release original io reference on tgt struct */ | |
88ea8f81 DW |
603 | if (tfcp_req) |
604 | fcloop_tfcp_req_put(tfcp_req); | |
b6f80773 JS |
605 | } |
606 | ||
03d99e5d JS |
607 | static bool drop_fabric_opcode; |
608 | #define DROP_OPCODE_MASK 0x00FF | |
609 | /* fabrics opcode will have a bit set above 1st byte */ | |
610 | static int drop_opcode = -1; | |
611 | static int drop_instance; | |
612 | static int drop_amount; | |
613 | static int drop_current_cnt; | |
614 | ||
615 | /* | |
616 | * Routine to parse io and determine if the io is to be dropped. | |
617 | * Returns: | |
618 | * 0 if io is not obstructed | |
619 | * 1 if io was dropped | |
620 | */ | |
621 | static int check_for_drop(struct fcloop_fcpreq *tfcp_req) | |
622 | { | |
623 | struct nvmefc_fcp_req *fcpreq = tfcp_req->fcpreq; | |
624 | struct nvme_fc_cmd_iu *cmdiu = fcpreq->cmdaddr; | |
625 | struct nvme_command *sqe = &cmdiu->sqe; | |
626 | ||
627 | if (drop_opcode == -1) | |
628 | return 0; | |
629 | ||
630 | pr_info("%s: seq opcd x%02x fctype x%02x: drop F %s op x%02x " | |
631 | "inst %d start %d amt %d\n", | |
632 | __func__, sqe->common.opcode, sqe->fabrics.fctype, | |
633 | drop_fabric_opcode ? "y" : "n", | |
634 | drop_opcode, drop_current_cnt, drop_instance, drop_amount); | |
635 | ||
636 | if ((drop_fabric_opcode && | |
637 | (sqe->common.opcode != nvme_fabrics_command || | |
638 | sqe->fabrics.fctype != drop_opcode)) || | |
639 | (!drop_fabric_opcode && sqe->common.opcode != drop_opcode)) | |
640 | return 0; | |
641 | ||
642 | if (++drop_current_cnt >= drop_instance) { | |
643 | if (drop_current_cnt >= drop_instance + drop_amount) | |
644 | drop_opcode = -1; | |
645 | return 1; | |
646 | } | |
647 | ||
648 | return 0; | |
649 | } | |
650 | ||
b6f80773 JS |
651 | static void |
652 | fcloop_fcp_recv_work(struct work_struct *work) | |
653 | { | |
654 | struct fcloop_fcpreq *tfcp_req = | |
655 | container_of(work, struct fcloop_fcpreq, fcp_rcv_work); | |
47a827cd | 656 | struct nvmefc_fcp_req *fcpreq; |
4f86a6ff | 657 | unsigned long flags; |
b6f80773 JS |
658 | int ret = 0; |
659 | bool aborted = false; | |
660 | ||
4f86a6ff | 661 | spin_lock_irqsave(&tfcp_req->reqlock, flags); |
47a827cd | 662 | fcpreq = tfcp_req->fcpreq; |
b6f80773 JS |
663 | switch (tfcp_req->inistate) { |
664 | case INI_IO_START: | |
665 | tfcp_req->inistate = INI_IO_ACTIVE; | |
666 | break; | |
667 | case INI_IO_ABORTED: | |
668 | aborted = true; | |
669 | break; | |
670 | default: | |
4f86a6ff | 671 | spin_unlock_irqrestore(&tfcp_req->reqlock, flags); |
b6f80773 JS |
672 | WARN_ON(1); |
673 | return; | |
674 | } | |
4f86a6ff | 675 | spin_unlock_irqrestore(&tfcp_req->reqlock, flags); |
b6f80773 | 676 | |
47a827cd DW |
677 | if (unlikely(aborted)) { |
678 | /* the abort handler will call fcloop_call_host_done */ | |
679 | return; | |
680 | } | |
681 | ||
682 | if (unlikely(check_for_drop(tfcp_req))) { | |
683 | pr_info("%s: dropped command ********\n", __func__); | |
684 | return; | |
03d99e5d | 685 | } |
47a827cd DW |
686 | |
687 | ret = nvmet_fc_rcv_fcp_req(tfcp_req->tport->targetport, | |
688 | &tfcp_req->tgt_fcp_req, | |
689 | fcpreq->cmdaddr, fcpreq->cmdlen); | |
b6f80773 JS |
690 | if (ret) |
691 | fcloop_call_host_done(fcpreq, tfcp_req, ret); | |
24431d60 JS |
692 | } |
693 | ||
694 | static void | |
695 | fcloop_fcp_abort_recv_work(struct work_struct *work) | |
696 | { | |
697 | struct fcloop_fcpreq *tfcp_req = | |
698 | container_of(work, struct fcloop_fcpreq, abort_rcv_work); | |
b6f80773 JS |
699 | struct nvmefc_fcp_req *fcpreq; |
700 | bool completed = false; | |
4f86a6ff | 701 | unsigned long flags; |
b6f80773 | 702 | |
4f86a6ff | 703 | spin_lock_irqsave(&tfcp_req->reqlock, flags); |
b6f80773 JS |
704 | switch (tfcp_req->inistate) { |
705 | case INI_IO_ABORTED: | |
47a827cd DW |
706 | fcpreq = tfcp_req->fcpreq; |
707 | tfcp_req->fcpreq = NULL; | |
b6f80773 JS |
708 | break; |
709 | case INI_IO_COMPLETED: | |
710 | completed = true; | |
711 | break; | |
712 | default: | |
4f86a6ff | 713 | spin_unlock_irqrestore(&tfcp_req->reqlock, flags); |
88ea8f81 | 714 | fcloop_tfcp_req_put(tfcp_req); |
b6f80773 JS |
715 | WARN_ON(1); |
716 | return; | |
717 | } | |
4f86a6ff | 718 | spin_unlock_irqrestore(&tfcp_req->reqlock, flags); |
b6f80773 JS |
719 | |
720 | if (unlikely(completed)) { | |
721 | /* remove reference taken in original abort downcall */ | |
722 | fcloop_tfcp_req_put(tfcp_req); | |
723 | return; | |
724 | } | |
24431d60 JS |
725 | |
726 | if (tfcp_req->tport->targetport) | |
727 | nvmet_fc_rcv_fcp_abort(tfcp_req->tport->targetport, | |
728 | &tfcp_req->tgt_fcp_req); | |
729 | ||
24431d60 | 730 | fcloop_call_host_done(fcpreq, tfcp_req, -ECANCELED); |
b6f80773 | 731 | /* call_host_done releases reference for abort downcall */ |
a97ec51b JS |
732 | } |
733 | ||
734 | /* | |
735 | * FCP IO operation done by target completion. | |
736 | * call back up initiator "done" flows. | |
475d0fe7 JS |
737 | */ |
738 | static void | |
739 | fcloop_tgt_fcprqst_done_work(struct work_struct *work) | |
740 | { | |
741 | struct fcloop_fcpreq *tfcp_req = | |
24431d60 | 742 | container_of(work, struct fcloop_fcpreq, tio_done_work); |
a97ec51b | 743 | struct nvmefc_fcp_req *fcpreq; |
4f86a6ff | 744 | unsigned long flags; |
475d0fe7 | 745 | |
4f86a6ff | 746 | spin_lock_irqsave(&tfcp_req->reqlock, flags); |
a97ec51b | 747 | fcpreq = tfcp_req->fcpreq; |
b6f80773 | 748 | tfcp_req->inistate = INI_IO_COMPLETED; |
4f86a6ff | 749 | spin_unlock_irqrestore(&tfcp_req->reqlock, flags); |
a97ec51b | 750 | |
24431d60 | 751 | fcloop_call_host_done(fcpreq, tfcp_req, tfcp_req->status); |
475d0fe7 JS |
752 | } |
753 | ||
754 | ||
755 | static int | |
756 | fcloop_fcp_req(struct nvme_fc_local_port *localport, | |
757 | struct nvme_fc_remote_port *remoteport, | |
758 | void *hw_queue_handle, | |
759 | struct nvmefc_fcp_req *fcpreq) | |
760 | { | |
475d0fe7 | 761 | struct fcloop_rport *rport = remoteport->private; |
ce79bfc2 JS |
762 | struct fcloop_ini_fcpreq *inireq = fcpreq->private; |
763 | struct fcloop_fcpreq *tfcp_req; | |
475d0fe7 | 764 | |
ce79bfc2 JS |
765 | if (!rport->targetport) |
766 | return -ECONNREFUSED; | |
475d0fe7 | 767 | |
e0620bf8 | 768 | tfcp_req = kzalloc(sizeof(*tfcp_req), GFP_ATOMIC); |
ce79bfc2 JS |
769 | if (!tfcp_req) |
770 | return -ENOMEM; | |
475d0fe7 | 771 | |
ce79bfc2 JS |
772 | inireq->fcpreq = fcpreq; |
773 | inireq->tfcp_req = tfcp_req; | |
b6f80773 JS |
774 | spin_lock_init(&inireq->inilock); |
775 | ||
475d0fe7 JS |
776 | tfcp_req->fcpreq = fcpreq; |
777 | tfcp_req->tport = rport->targetport->private; | |
b6f80773 | 778 | tfcp_req->inistate = INI_IO_START; |
a97ec51b | 779 | spin_lock_init(&tfcp_req->reqlock); |
24431d60 JS |
780 | INIT_WORK(&tfcp_req->fcp_rcv_work, fcloop_fcp_recv_work); |
781 | INIT_WORK(&tfcp_req->abort_rcv_work, fcloop_fcp_abort_recv_work); | |
782 | INIT_WORK(&tfcp_req->tio_done_work, fcloop_tgt_fcprqst_done_work); | |
f22c458f | 783 | refcount_set(&tfcp_req->ref, 1); |
475d0fe7 | 784 | |
8832cf92 | 785 | queue_work(nvmet_wq, &tfcp_req->fcp_rcv_work); |
475d0fe7 | 786 | |
24431d60 | 787 | return 0; |
475d0fe7 JS |
788 | } |
789 | ||
790 | static void | |
791 | fcloop_fcp_copy_data(u8 op, struct scatterlist *data_sg, | |
792 | struct scatterlist *io_sg, u32 offset, u32 length) | |
793 | { | |
794 | void *data_p, *io_p; | |
795 | u32 data_len, io_len, tlen; | |
796 | ||
797 | io_p = sg_virt(io_sg); | |
798 | io_len = io_sg->length; | |
799 | ||
800 | for ( ; offset; ) { | |
801 | tlen = min_t(u32, offset, io_len); | |
802 | offset -= tlen; | |
803 | io_len -= tlen; | |
804 | if (!io_len) { | |
805 | io_sg = sg_next(io_sg); | |
806 | io_p = sg_virt(io_sg); | |
807 | io_len = io_sg->length; | |
808 | } else | |
809 | io_p += tlen; | |
810 | } | |
811 | ||
812 | data_p = sg_virt(data_sg); | |
813 | data_len = data_sg->length; | |
814 | ||
815 | for ( ; length; ) { | |
816 | tlen = min_t(u32, io_len, data_len); | |
817 | tlen = min_t(u32, tlen, length); | |
818 | ||
819 | if (op == NVMET_FCOP_WRITEDATA) | |
820 | memcpy(data_p, io_p, tlen); | |
821 | else | |
822 | memcpy(io_p, data_p, tlen); | |
823 | ||
824 | length -= tlen; | |
825 | ||
826 | io_len -= tlen; | |
827 | if ((!io_len) && (length)) { | |
828 | io_sg = sg_next(io_sg); | |
829 | io_p = sg_virt(io_sg); | |
830 | io_len = io_sg->length; | |
831 | } else | |
832 | io_p += tlen; | |
833 | ||
834 | data_len -= tlen; | |
835 | if ((!data_len) && (length)) { | |
836 | data_sg = sg_next(data_sg); | |
837 | data_p = sg_virt(data_sg); | |
838 | data_len = data_sg->length; | |
839 | } else | |
840 | data_p += tlen; | |
841 | } | |
842 | } | |
843 | ||
844 | static int | |
845 | fcloop_fcp_op(struct nvmet_fc_target_port *tgtport, | |
846 | struct nvmefc_tgt_fcp_req *tgt_fcpreq) | |
847 | { | |
848 | struct fcloop_fcpreq *tfcp_req = tgt_fcp_req_to_fcpreq(tgt_fcpreq); | |
a97ec51b | 849 | struct nvmefc_fcp_req *fcpreq; |
475d0fe7 | 850 | u32 rsplen = 0, xfrlen = 0; |
a97ec51b | 851 | int fcp_err = 0, active, aborted; |
475d0fe7 | 852 | u8 op = tgt_fcpreq->op; |
4f86a6ff | 853 | unsigned long flags; |
475d0fe7 | 854 | |
4f86a6ff | 855 | spin_lock_irqsave(&tfcp_req->reqlock, flags); |
a97ec51b JS |
856 | fcpreq = tfcp_req->fcpreq; |
857 | active = tfcp_req->active; | |
858 | aborted = tfcp_req->aborted; | |
859 | tfcp_req->active = true; | |
4f86a6ff | 860 | spin_unlock_irqrestore(&tfcp_req->reqlock, flags); |
a97ec51b JS |
861 | |
862 | if (unlikely(active)) | |
863 | /* illegal - call while i/o active */ | |
864 | return -EALREADY; | |
865 | ||
866 | if (unlikely(aborted)) { | |
867 | /* target transport has aborted i/o prior */ | |
4f86a6ff | 868 | spin_lock_irqsave(&tfcp_req->reqlock, flags); |
a97ec51b | 869 | tfcp_req->active = false; |
4f86a6ff | 870 | spin_unlock_irqrestore(&tfcp_req->reqlock, flags); |
a97ec51b JS |
871 | tgt_fcpreq->transferred_length = 0; |
872 | tgt_fcpreq->fcp_error = -ECANCELED; | |
873 | tgt_fcpreq->done(tgt_fcpreq); | |
874 | return 0; | |
875 | } | |
876 | ||
877 | /* | |
878 | * if fcpreq is NULL, the I/O has been aborted (from | |
879 | * initiator side). For the target side, act as if all is well | |
880 | * but don't actually move data. | |
881 | */ | |
882 | ||
475d0fe7 JS |
883 | switch (op) { |
884 | case NVMET_FCOP_WRITEDATA: | |
885 | xfrlen = tgt_fcpreq->transfer_length; | |
a97ec51b JS |
886 | if (fcpreq) { |
887 | fcloop_fcp_copy_data(op, tgt_fcpreq->sg, | |
888 | fcpreq->first_sgl, tgt_fcpreq->offset, | |
889 | xfrlen); | |
890 | fcpreq->transferred_length += xfrlen; | |
891 | } | |
475d0fe7 JS |
892 | break; |
893 | ||
894 | case NVMET_FCOP_READDATA: | |
895 | case NVMET_FCOP_READDATA_RSP: | |
896 | xfrlen = tgt_fcpreq->transfer_length; | |
a97ec51b JS |
897 | if (fcpreq) { |
898 | fcloop_fcp_copy_data(op, tgt_fcpreq->sg, | |
899 | fcpreq->first_sgl, tgt_fcpreq->offset, | |
900 | xfrlen); | |
901 | fcpreq->transferred_length += xfrlen; | |
902 | } | |
475d0fe7 JS |
903 | if (op == NVMET_FCOP_READDATA) |
904 | break; | |
905 | ||
906 | /* Fall-Thru to RSP handling */ | |
df561f66 | 907 | fallthrough; |
475d0fe7 JS |
908 | |
909 | case NVMET_FCOP_RSP: | |
a97ec51b JS |
910 | if (fcpreq) { |
911 | rsplen = ((fcpreq->rsplen < tgt_fcpreq->rsplen) ? | |
912 | fcpreq->rsplen : tgt_fcpreq->rsplen); | |
913 | memcpy(fcpreq->rspaddr, tgt_fcpreq->rspaddr, rsplen); | |
914 | if (rsplen < tgt_fcpreq->rsplen) | |
915 | fcp_err = -E2BIG; | |
916 | fcpreq->rcv_rsplen = rsplen; | |
917 | fcpreq->status = 0; | |
918 | } | |
475d0fe7 JS |
919 | tfcp_req->status = 0; |
920 | break; | |
921 | ||
475d0fe7 JS |
922 | default: |
923 | fcp_err = -EINVAL; | |
924 | break; | |
925 | } | |
926 | ||
4f86a6ff | 927 | spin_lock_irqsave(&tfcp_req->reqlock, flags); |
a97ec51b | 928 | tfcp_req->active = false; |
4f86a6ff | 929 | spin_unlock_irqrestore(&tfcp_req->reqlock, flags); |
a97ec51b | 930 | |
475d0fe7 JS |
931 | tgt_fcpreq->transferred_length = xfrlen; |
932 | tgt_fcpreq->fcp_error = fcp_err; | |
933 | tgt_fcpreq->done(tgt_fcpreq); | |
934 | ||
475d0fe7 JS |
935 | return 0; |
936 | } | |
937 | ||
a97ec51b JS |
938 | static void |
939 | fcloop_tgt_fcp_abort(struct nvmet_fc_target_port *tgtport, | |
940 | struct nvmefc_tgt_fcp_req *tgt_fcpreq) | |
941 | { | |
942 | struct fcloop_fcpreq *tfcp_req = tgt_fcp_req_to_fcpreq(tgt_fcpreq); | |
4f86a6ff | 943 | unsigned long flags; |
a97ec51b JS |
944 | |
945 | /* | |
946 | * mark aborted only in case there were 2 threads in transport | |
947 | * (one doing io, other doing abort) and only kills ops posted | |
948 | * after the abort request | |
949 | */ | |
4f86a6ff | 950 | spin_lock_irqsave(&tfcp_req->reqlock, flags); |
a97ec51b | 951 | tfcp_req->aborted = true; |
4f86a6ff | 952 | spin_unlock_irqrestore(&tfcp_req->reqlock, flags); |
a97ec51b | 953 | |
fc9608e8 | 954 | tfcp_req->status = NVME_SC_INTERNAL; |
a97ec51b JS |
955 | |
956 | /* | |
957 | * nothing more to do. If io wasn't active, the transport should | |
958 | * immediately call the req_release. If it was active, the op | |
959 | * will complete, and the lldd should call req_release. | |
960 | */ | |
961 | } | |
962 | ||
19b58d94 JS |
963 | static void |
964 | fcloop_fcp_req_release(struct nvmet_fc_target_port *tgtport, | |
965 | struct nvmefc_tgt_fcp_req *tgt_fcpreq) | |
966 | { | |
967 | struct fcloop_fcpreq *tfcp_req = tgt_fcp_req_to_fcpreq(tgt_fcpreq); | |
968 | ||
8832cf92 | 969 | queue_work(nvmet_wq, &tfcp_req->tio_done_work); |
19b58d94 JS |
970 | } |
971 | ||
475d0fe7 | 972 | static void |
ea397658 | 973 | fcloop_h2t_ls_abort(struct nvme_fc_local_port *localport, |
475d0fe7 JS |
974 | struct nvme_fc_remote_port *remoteport, |
975 | struct nvmefc_ls_req *lsreq) | |
976 | { | |
977 | } | |
978 | ||
437c0b82 JS |
979 | static void |
980 | fcloop_t2h_ls_abort(struct nvmet_fc_target_port *targetport, | |
981 | void *hosthandle, struct nvmefc_ls_req *lsreq) | |
982 | { | |
983 | } | |
984 | ||
475d0fe7 JS |
985 | static void |
986 | fcloop_fcp_abort(struct nvme_fc_local_port *localport, | |
987 | struct nvme_fc_remote_port *remoteport, | |
988 | void *hw_queue_handle, | |
989 | struct nvmefc_fcp_req *fcpreq) | |
990 | { | |
a97ec51b | 991 | struct fcloop_ini_fcpreq *inireq = fcpreq->private; |
b6f80773 JS |
992 | struct fcloop_fcpreq *tfcp_req; |
993 | bool abortio = true; | |
4f86a6ff | 994 | unsigned long flags; |
b6f80773 JS |
995 | |
996 | spin_lock(&inireq->inilock); | |
997 | tfcp_req = inireq->tfcp_req; | |
88ea8f81 DW |
998 | if (tfcp_req) { |
999 | if (!fcloop_tfcp_req_get(tfcp_req)) | |
1000 | tfcp_req = NULL; | |
1001 | } | |
b6f80773 | 1002 | spin_unlock(&inireq->inilock); |
a97ec51b | 1003 | |
d7f7c6eb | 1004 | if (!tfcp_req) { |
a97ec51b | 1005 | /* abort has already been called */ |
d7f7c6eb DW |
1006 | goto out_host_done; |
1007 | } | |
a97ec51b | 1008 | |
a97ec51b | 1009 | /* break initiator/target relationship for io */ |
4f86a6ff | 1010 | spin_lock_irqsave(&tfcp_req->reqlock, flags); |
b6f80773 JS |
1011 | switch (tfcp_req->inistate) { |
1012 | case INI_IO_START: | |
1013 | case INI_IO_ACTIVE: | |
1014 | tfcp_req->inistate = INI_IO_ABORTED; | |
1015 | break; | |
1016 | case INI_IO_COMPLETED: | |
1017 | abortio = false; | |
1018 | break; | |
1019 | default: | |
4f86a6ff | 1020 | spin_unlock_irqrestore(&tfcp_req->reqlock, flags); |
b6f80773 | 1021 | WARN_ON(1); |
d7f7c6eb | 1022 | goto out_host_done; |
b6f80773 | 1023 | } |
4f86a6ff | 1024 | spin_unlock_irqrestore(&tfcp_req->reqlock, flags); |
a97ec51b | 1025 | |
b6f80773 JS |
1026 | if (abortio) |
1027 | /* leave the reference while the work item is scheduled */ | |
8832cf92 | 1028 | WARN_ON(!queue_work(nvmet_wq, &tfcp_req->abort_rcv_work)); |
b6f80773 JS |
1029 | else { |
1030 | /* | |
1031 | * as the io has already had the done callback made, | |
1032 | * nothing more to do. So release the reference taken above | |
1033 | */ | |
1034 | fcloop_tfcp_req_put(tfcp_req); | |
1035 | } | |
d7f7c6eb DW |
1036 | |
1037 | return; | |
1038 | ||
1039 | out_host_done: | |
1040 | fcloop_call_host_done(fcpreq, tfcp_req, -ECANCELED); | |
475d0fe7 JS |
1041 | } |
1042 | ||
72511b1d DW |
1043 | static void |
1044 | fcloop_lport_put(struct fcloop_lport *lport) | |
1045 | { | |
1046 | unsigned long flags; | |
1047 | ||
1048 | if (!refcount_dec_and_test(&lport->ref)) | |
1049 | return; | |
1050 | ||
1051 | spin_lock_irqsave(&fcloop_lock, flags); | |
1052 | list_del(&lport->lport_list); | |
1053 | spin_unlock_irqrestore(&fcloop_lock, flags); | |
1054 | ||
1055 | kfree(lport); | |
1056 | } | |
1057 | ||
1058 | static int | |
1059 | fcloop_lport_get(struct fcloop_lport *lport) | |
1060 | { | |
1061 | return refcount_inc_not_zero(&lport->ref); | |
1062 | } | |
1063 | ||
fddc9923 | 1064 | static void |
f22c458f | 1065 | fcloop_nport_put(struct fcloop_nport *nport) |
fddc9923 | 1066 | { |
b999efc8 DW |
1067 | unsigned long flags; |
1068 | ||
f22c458f DW |
1069 | if (!refcount_dec_and_test(&nport->ref)) |
1070 | return; | |
fddc9923 | 1071 | |
b999efc8 DW |
1072 | spin_lock_irqsave(&fcloop_lock, flags); |
1073 | list_del(&nport->nport_list); | |
1074 | spin_unlock_irqrestore(&fcloop_lock, flags); | |
1075 | ||
d54a9d7f DW |
1076 | if (nport->lport) |
1077 | fcloop_lport_put(nport->lport); | |
1078 | ||
fddc9923 JS |
1079 | kfree(nport); |
1080 | } | |
1081 | ||
fddc9923 JS |
1082 | static int |
1083 | fcloop_nport_get(struct fcloop_nport *nport) | |
1084 | { | |
f22c458f | 1085 | return refcount_inc_not_zero(&nport->ref); |
fddc9923 JS |
1086 | } |
1087 | ||
475d0fe7 JS |
1088 | static void |
1089 | fcloop_localport_delete(struct nvme_fc_local_port *localport) | |
1090 | { | |
6fda2028 JS |
1091 | struct fcloop_lport_priv *lport_priv = localport->private; |
1092 | struct fcloop_lport *lport = lport_priv->lport; | |
475d0fe7 | 1093 | |
72511b1d | 1094 | fcloop_lport_put(lport); |
475d0fe7 JS |
1095 | } |
1096 | ||
1097 | static void | |
1098 | fcloop_remoteport_delete(struct nvme_fc_remote_port *remoteport) | |
1099 | { | |
1100 | struct fcloop_rport *rport = remoteport->private; | |
2b559a3e | 1101 | bool put_port = false; |
d6c40d87 | 1102 | unsigned long flags; |
475d0fe7 | 1103 | |
38803fcf | 1104 | flush_work(&rport->ls_work); |
d6c40d87 DW |
1105 | |
1106 | spin_lock_irqsave(&fcloop_lock, flags); | |
2b559a3e DW |
1107 | if (!test_and_set_bit(PORT_DELETED, &rport->flags)) |
1108 | put_port = true; | |
d6c40d87 DW |
1109 | rport->nport->rport = NULL; |
1110 | spin_unlock_irqrestore(&fcloop_lock, flags); | |
1111 | ||
2b559a3e DW |
1112 | if (put_port) |
1113 | fcloop_nport_put(rport->nport); | |
475d0fe7 JS |
1114 | } |
1115 | ||
1116 | static void | |
1117 | fcloop_targetport_delete(struct nvmet_fc_target_port *targetport) | |
1118 | { | |
1119 | struct fcloop_tport *tport = targetport->private; | |
2b559a3e | 1120 | bool put_port = false; |
d6c40d87 | 1121 | unsigned long flags; |
475d0fe7 | 1122 | |
437c0b82 | 1123 | flush_work(&tport->ls_work); |
d6c40d87 DW |
1124 | |
1125 | spin_lock_irqsave(&fcloop_lock, flags); | |
2b559a3e DW |
1126 | if (!test_and_set_bit(PORT_DELETED, &tport->flags)) |
1127 | put_port = true; | |
d6c40d87 DW |
1128 | tport->nport->tport = NULL; |
1129 | spin_unlock_irqrestore(&fcloop_lock, flags); | |
1130 | ||
2b559a3e DW |
1131 | if (put_port) |
1132 | fcloop_nport_put(tport->nport); | |
475d0fe7 JS |
1133 | } |
1134 | ||
1135 | #define FCLOOP_HW_QUEUES 4 | |
1136 | #define FCLOOP_SGL_SEGS 256 | |
1137 | #define FCLOOP_DMABOUND_4G 0xFFFFFFFF | |
1138 | ||
36b8890e | 1139 | static struct nvme_fc_port_template fctemplate = { |
475d0fe7 JS |
1140 | .localport_delete = fcloop_localport_delete, |
1141 | .remoteport_delete = fcloop_remoteport_delete, | |
1142 | .create_queue = fcloop_create_queue, | |
1143 | .delete_queue = fcloop_delete_queue, | |
ea397658 | 1144 | .ls_req = fcloop_h2t_ls_req, |
475d0fe7 | 1145 | .fcp_io = fcloop_fcp_req, |
ea397658 | 1146 | .ls_abort = fcloop_h2t_ls_abort, |
475d0fe7 | 1147 | .fcp_abort = fcloop_fcp_abort, |
437c0b82 | 1148 | .xmt_ls_rsp = fcloop_t2h_xmt_ls_rsp, |
475d0fe7 JS |
1149 | .max_hw_queues = FCLOOP_HW_QUEUES, |
1150 | .max_sgl_segments = FCLOOP_SGL_SEGS, | |
1151 | .max_dif_sgl_segments = FCLOOP_SGL_SEGS, | |
1152 | .dma_boundary = FCLOOP_DMABOUND_4G, | |
1153 | /* sizes of additional private data for data structures */ | |
6fda2028 | 1154 | .local_priv_sz = sizeof(struct fcloop_lport_priv), |
475d0fe7 | 1155 | .remote_priv_sz = sizeof(struct fcloop_rport), |
ce79bfc2 | 1156 | .fcprqst_priv_sz = sizeof(struct fcloop_ini_fcpreq), |
475d0fe7 JS |
1157 | }; |
1158 | ||
36b8890e | 1159 | static struct nvmet_fc_target_template tgttemplate = { |
475d0fe7 | 1160 | .targetport_delete = fcloop_targetport_delete, |
ea397658 | 1161 | .xmt_ls_rsp = fcloop_h2t_xmt_ls_rsp, |
475d0fe7 | 1162 | .fcp_op = fcloop_fcp_op, |
a97ec51b | 1163 | .fcp_abort = fcloop_tgt_fcp_abort, |
19b58d94 | 1164 | .fcp_req_release = fcloop_fcp_req_release, |
4cf7c363 | 1165 | .discovery_event = fcloop_tgt_discovery_evt, |
437c0b82 JS |
1166 | .ls_req = fcloop_t2h_ls_req, |
1167 | .ls_abort = fcloop_t2h_ls_abort, | |
1168 | .host_release = fcloop_t2h_host_release, | |
bbb443e9 | 1169 | .host_traddr = fcloop_t2h_host_traddr, |
475d0fe7 JS |
1170 | .max_hw_queues = FCLOOP_HW_QUEUES, |
1171 | .max_sgl_segments = FCLOOP_SGL_SEGS, | |
1172 | .max_dif_sgl_segments = FCLOOP_SGL_SEGS, | |
1173 | .dma_boundary = FCLOOP_DMABOUND_4G, | |
1174 | /* optional features */ | |
24431d60 | 1175 | .target_features = 0, |
475d0fe7 JS |
1176 | /* sizes of additional private data for data structures */ |
1177 | .target_priv_sz = sizeof(struct fcloop_tport), | |
1178 | }; | |
1179 | ||
1180 | static ssize_t | |
1181 | fcloop_create_local_port(struct device *dev, struct device_attribute *attr, | |
1182 | const char *buf, size_t count) | |
1183 | { | |
1184 | struct nvme_fc_port_info pinfo; | |
1185 | struct fcloop_ctrl_options *opts; | |
1186 | struct nvme_fc_local_port *localport; | |
1187 | struct fcloop_lport *lport; | |
6fda2028 JS |
1188 | struct fcloop_lport_priv *lport_priv; |
1189 | unsigned long flags; | |
1190 | int ret = -ENOMEM; | |
1191 | ||
1192 | lport = kzalloc(sizeof(*lport), GFP_KERNEL); | |
1193 | if (!lport) | |
1194 | return -ENOMEM; | |
475d0fe7 JS |
1195 | |
1196 | opts = kzalloc(sizeof(*opts), GFP_KERNEL); | |
1197 | if (!opts) | |
6fda2028 | 1198 | goto out_free_lport; |
475d0fe7 JS |
1199 | |
1200 | ret = fcloop_parse_options(opts, buf); | |
1201 | if (ret) | |
1202 | goto out_free_opts; | |
1203 | ||
1204 | /* everything there ? */ | |
1205 | if ((opts->mask & LPORT_OPTS) != LPORT_OPTS) { | |
1206 | ret = -EINVAL; | |
1207 | goto out_free_opts; | |
1208 | } | |
1209 | ||
fddc9923 | 1210 | memset(&pinfo, 0, sizeof(pinfo)); |
475d0fe7 JS |
1211 | pinfo.node_name = opts->wwnn; |
1212 | pinfo.port_name = opts->wwpn; | |
1213 | pinfo.port_role = opts->roles; | |
1214 | pinfo.port_id = opts->fcaddr; | |
1215 | ||
1216 | ret = nvme_fc_register_localport(&pinfo, &fctemplate, NULL, &localport); | |
1217 | if (!ret) { | |
475d0fe7 | 1218 | /* success */ |
6fda2028 JS |
1219 | lport_priv = localport->private; |
1220 | lport_priv->lport = lport; | |
1221 | ||
475d0fe7 JS |
1222 | lport->localport = localport; |
1223 | INIT_LIST_HEAD(&lport->lport_list); | |
72511b1d | 1224 | refcount_set(&lport->ref, 1); |
475d0fe7 JS |
1225 | |
1226 | spin_lock_irqsave(&fcloop_lock, flags); | |
1227 | list_add_tail(&lport->lport_list, &fcloop_lports); | |
1228 | spin_unlock_irqrestore(&fcloop_lock, flags); | |
475d0fe7 JS |
1229 | } |
1230 | ||
1231 | out_free_opts: | |
1232 | kfree(opts); | |
6fda2028 JS |
1233 | out_free_lport: |
1234 | /* free only if we're going to fail */ | |
1235 | if (ret) | |
1236 | kfree(lport); | |
1237 | ||
475d0fe7 JS |
1238 | return ret ? ret : count; |
1239 | } | |
1240 | ||
475d0fe7 | 1241 | static int |
3466b7a6 | 1242 | __localport_unreg(struct fcloop_lport *lport) |
475d0fe7 | 1243 | { |
3466b7a6 | 1244 | return nvme_fc_unregister_localport(lport->localport); |
475d0fe7 JS |
1245 | } |
1246 | ||
d6c40d87 DW |
1247 | static struct fcloop_nport * |
1248 | __fcloop_nport_lookup(u64 node_name, u64 port_name) | |
1249 | { | |
1250 | struct fcloop_nport *nport; | |
1251 | ||
1252 | list_for_each_entry(nport, &fcloop_nports, nport_list) { | |
1253 | if (nport->node_name != node_name || | |
1254 | nport->port_name != port_name) | |
1255 | continue; | |
1256 | ||
1257 | if (fcloop_nport_get(nport)) | |
1258 | return nport; | |
1259 | ||
1260 | break; | |
1261 | } | |
1262 | ||
1263 | return NULL; | |
1264 | } | |
1265 | ||
1266 | static struct fcloop_nport * | |
1267 | fcloop_nport_lookup(u64 node_name, u64 port_name) | |
1268 | { | |
1269 | struct fcloop_nport *nport; | |
1270 | unsigned long flags; | |
1271 | ||
1272 | spin_lock_irqsave(&fcloop_lock, flags); | |
1273 | nport = __fcloop_nport_lookup(node_name, port_name); | |
1274 | spin_unlock_irqrestore(&fcloop_lock, flags); | |
1275 | ||
1276 | return nport; | |
1277 | } | |
475d0fe7 | 1278 | |
d54a9d7f DW |
1279 | static struct fcloop_lport * |
1280 | __fcloop_lport_lookup(u64 node_name, u64 port_name) | |
1281 | { | |
1282 | struct fcloop_lport *lport; | |
1283 | ||
1284 | list_for_each_entry(lport, &fcloop_lports, lport_list) { | |
1285 | if (lport->localport->node_name != node_name || | |
1286 | lport->localport->port_name != port_name) | |
1287 | continue; | |
1288 | ||
1289 | if (fcloop_lport_get(lport)) | |
1290 | return lport; | |
1291 | ||
1292 | break; | |
1293 | } | |
1294 | ||
1295 | return NULL; | |
1296 | } | |
1297 | ||
fbaed6a8 DW |
1298 | static struct fcloop_lport * |
1299 | fcloop_lport_lookup(u64 node_name, u64 port_name) | |
1300 | { | |
1301 | struct fcloop_lport *lport; | |
1302 | unsigned long flags; | |
1303 | ||
1304 | spin_lock_irqsave(&fcloop_lock, flags); | |
1305 | lport = __fcloop_lport_lookup(node_name, port_name); | |
1306 | spin_unlock_irqrestore(&fcloop_lock, flags); | |
1307 | ||
1308 | return lport; | |
1309 | } | |
1310 | ||
475d0fe7 JS |
1311 | static ssize_t |
1312 | fcloop_delete_local_port(struct device *dev, struct device_attribute *attr, | |
1313 | const char *buf, size_t count) | |
1314 | { | |
fbaed6a8 | 1315 | struct fcloop_lport *lport; |
475d0fe7 | 1316 | u64 nodename, portname; |
475d0fe7 JS |
1317 | int ret; |
1318 | ||
1319 | ret = fcloop_parse_nm_options(dev, &nodename, &portname, buf); | |
1320 | if (ret) | |
1321 | return ret; | |
1322 | ||
fbaed6a8 | 1323 | lport = fcloop_lport_lookup(nodename, portname); |
475d0fe7 JS |
1324 | if (!lport) |
1325 | return -ENOENT; | |
1326 | ||
3466b7a6 | 1327 | ret = __localport_unreg(lport); |
72511b1d | 1328 | fcloop_lport_put(lport); |
475d0fe7 JS |
1329 | |
1330 | return ret ? ret : count; | |
1331 | } | |
1332 | ||
475d0fe7 JS |
1333 | static struct fcloop_nport * |
1334 | fcloop_alloc_nport(const char *buf, size_t count, bool remoteport) | |
1335 | { | |
d54a9d7f DW |
1336 | struct fcloop_nport *newnport, *nport; |
1337 | struct fcloop_lport *lport; | |
475d0fe7 JS |
1338 | struct fcloop_ctrl_options *opts; |
1339 | unsigned long flags; | |
1340 | u32 opts_mask = (remoteport) ? RPORT_OPTS : TGTPORT_OPTS; | |
1341 | int ret; | |
1342 | ||
1343 | opts = kzalloc(sizeof(*opts), GFP_KERNEL); | |
1344 | if (!opts) | |
1345 | return NULL; | |
1346 | ||
1347 | ret = fcloop_parse_options(opts, buf); | |
1348 | if (ret) | |
1349 | goto out_free_opts; | |
1350 | ||
1351 | /* everything there ? */ | |
d54a9d7f | 1352 | if ((opts->mask & opts_mask) != opts_mask) |
475d0fe7 | 1353 | goto out_free_opts; |
475d0fe7 JS |
1354 | |
1355 | newnport = kzalloc(sizeof(*newnport), GFP_KERNEL); | |
1356 | if (!newnport) | |
1357 | goto out_free_opts; | |
1358 | ||
1359 | INIT_LIST_HEAD(&newnport->nport_list); | |
1360 | newnport->node_name = opts->wwnn; | |
1361 | newnport->port_name = opts->wwpn; | |
1362 | if (opts->mask & NVMF_OPT_ROLES) | |
1363 | newnport->port_role = opts->roles; | |
1364 | if (opts->mask & NVMF_OPT_FCADDR) | |
1365 | newnport->port_id = opts->fcaddr; | |
f22c458f | 1366 | refcount_set(&newnport->ref, 1); |
475d0fe7 JS |
1367 | |
1368 | spin_lock_irqsave(&fcloop_lock, flags); | |
d54a9d7f DW |
1369 | lport = __fcloop_lport_lookup(opts->wwnn, opts->wwpn); |
1370 | if (lport) { | |
1371 | /* invalid configuration */ | |
1372 | fcloop_lport_put(lport); | |
1373 | goto out_free_newnport; | |
475d0fe7 JS |
1374 | } |
1375 | ||
1376 | if (remoteport) { | |
d54a9d7f DW |
1377 | lport = __fcloop_lport_lookup(opts->lpwwnn, opts->lpwwpn); |
1378 | if (!lport) { | |
1379 | /* invalid configuration */ | |
475d0fe7 JS |
1380 | goto out_free_newnport; |
1381 | } | |
1382 | } | |
1383 | ||
d54a9d7f DW |
1384 | nport = __fcloop_nport_lookup(opts->wwnn, opts->wwpn); |
1385 | if (nport) { | |
1386 | if ((remoteport && nport->rport) || | |
1387 | (!remoteport && nport->tport)) { | |
1388 | /* invalid configuration */ | |
1389 | goto out_put_nport; | |
1390 | } | |
1391 | ||
1392 | /* found existing nport, discard the new nport */ | |
1393 | kfree(newnport); | |
1394 | } else { | |
1395 | list_add_tail(&newnport->nport_list, &fcloop_nports); | |
1396 | nport = newnport; | |
1397 | } | |
475d0fe7 | 1398 | |
d54a9d7f DW |
1399 | if (opts->mask & NVMF_OPT_ROLES) |
1400 | nport->port_role = opts->roles; | |
1401 | if (opts->mask & NVMF_OPT_FCADDR) | |
1402 | nport->port_id = opts->fcaddr; | |
1403 | if (lport) { | |
1404 | if (!nport->lport) | |
1405 | nport->lport = lport; | |
1406 | else | |
1407 | fcloop_lport_put(lport); | |
1408 | } | |
475d0fe7 JS |
1409 | spin_unlock_irqrestore(&fcloop_lock, flags); |
1410 | ||
1411 | kfree(opts); | |
d54a9d7f | 1412 | return nport; |
475d0fe7 | 1413 | |
d54a9d7f DW |
1414 | out_put_nport: |
1415 | if (lport) | |
1416 | fcloop_lport_put(lport); | |
1417 | fcloop_nport_put(nport); | |
475d0fe7 | 1418 | out_free_newnport: |
d54a9d7f | 1419 | spin_unlock_irqrestore(&fcloop_lock, flags); |
475d0fe7 JS |
1420 | kfree(newnport); |
1421 | out_free_opts: | |
1422 | kfree(opts); | |
d54a9d7f | 1423 | return NULL; |
475d0fe7 JS |
1424 | } |
1425 | ||
1426 | static ssize_t | |
1427 | fcloop_create_remote_port(struct device *dev, struct device_attribute *attr, | |
1428 | const char *buf, size_t count) | |
1429 | { | |
1430 | struct nvme_fc_remote_port *remoteport; | |
1431 | struct fcloop_nport *nport; | |
1432 | struct fcloop_rport *rport; | |
1433 | struct nvme_fc_port_info pinfo; | |
1434 | int ret; | |
1435 | ||
1436 | nport = fcloop_alloc_nport(buf, count, true); | |
1437 | if (!nport) | |
1438 | return -EIO; | |
1439 | ||
fddc9923 | 1440 | memset(&pinfo, 0, sizeof(pinfo)); |
475d0fe7 JS |
1441 | pinfo.node_name = nport->node_name; |
1442 | pinfo.port_name = nport->port_name; | |
1443 | pinfo.port_role = nport->port_role; | |
1444 | pinfo.port_id = nport->port_id; | |
1445 | ||
1446 | ret = nvme_fc_register_remoteport(nport->lport->localport, | |
1447 | &pinfo, &remoteport); | |
1448 | if (ret || !remoteport) { | |
1449 | fcloop_nport_put(nport); | |
1450 | return ret; | |
1451 | } | |
1452 | ||
1453 | /* success */ | |
1454 | rport = remoteport->private; | |
1455 | rport->remoteport = remoteport; | |
1456 | rport->targetport = (nport->tport) ? nport->tport->targetport : NULL; | |
1457 | if (nport->tport) { | |
1458 | nport->tport->remoteport = remoteport; | |
1459 | nport->tport->lport = nport->lport; | |
1460 | } | |
1461 | rport->nport = nport; | |
1462 | rport->lport = nport->lport; | |
1463 | nport->rport = rport; | |
2b559a3e | 1464 | rport->flags = 0; |
38803fcf JS |
1465 | spin_lock_init(&rport->lock); |
1466 | INIT_WORK(&rport->ls_work, fcloop_rport_lsrqst_work); | |
1467 | INIT_LIST_HEAD(&rport->ls_list); | |
475d0fe7 | 1468 | |
7c3a23b8 | 1469 | return count; |
475d0fe7 JS |
1470 | } |
1471 | ||
1472 | ||
1473 | static struct fcloop_rport * | |
1474 | __unlink_remote_port(struct fcloop_nport *nport) | |
1475 | { | |
1476 | struct fcloop_rport *rport = nport->rport; | |
1477 | ||
d6c40d87 DW |
1478 | lockdep_assert_held(&fcloop_lock); |
1479 | ||
475d0fe7 JS |
1480 | if (rport && nport->tport) |
1481 | nport->tport->remoteport = NULL; | |
1482 | nport->rport = NULL; | |
1483 | ||
1484 | return rport; | |
1485 | } | |
1486 | ||
1487 | static int | |
fddc9923 | 1488 | __remoteport_unreg(struct fcloop_nport *nport, struct fcloop_rport *rport) |
475d0fe7 | 1489 | { |
fddc9923 | 1490 | return nvme_fc_unregister_remoteport(rport->remoteport); |
475d0fe7 JS |
1491 | } |
1492 | ||
1493 | static ssize_t | |
1494 | fcloop_delete_remote_port(struct device *dev, struct device_attribute *attr, | |
1495 | const char *buf, size_t count) | |
1496 | { | |
d6c40d87 DW |
1497 | struct fcloop_nport *nport; |
1498 | struct fcloop_rport *rport; | |
475d0fe7 JS |
1499 | u64 nodename, portname; |
1500 | unsigned long flags; | |
1501 | int ret; | |
1502 | ||
1503 | ret = fcloop_parse_nm_options(dev, &nodename, &portname, buf); | |
1504 | if (ret) | |
1505 | return ret; | |
1506 | ||
d6c40d87 DW |
1507 | nport = fcloop_nport_lookup(nodename, portname); |
1508 | if (!nport) | |
1509 | return -ENOENT; | |
475d0fe7 | 1510 | |
d6c40d87 DW |
1511 | spin_lock_irqsave(&fcloop_lock, flags); |
1512 | rport = __unlink_remote_port(nport); | |
475d0fe7 JS |
1513 | spin_unlock_irqrestore(&fcloop_lock, flags); |
1514 | ||
d6c40d87 DW |
1515 | if (!rport) { |
1516 | ret = -ENOENT; | |
1517 | goto out_nport_put; | |
1518 | } | |
475d0fe7 | 1519 | |
fddc9923 | 1520 | ret = __remoteport_unreg(nport, rport); |
475d0fe7 | 1521 | |
d6c40d87 DW |
1522 | out_nport_put: |
1523 | fcloop_nport_put(nport); | |
1524 | ||
475d0fe7 JS |
1525 | return ret ? ret : count; |
1526 | } | |
1527 | ||
1528 | static ssize_t | |
1529 | fcloop_create_target_port(struct device *dev, struct device_attribute *attr, | |
1530 | const char *buf, size_t count) | |
1531 | { | |
1532 | struct nvmet_fc_target_port *targetport; | |
1533 | struct fcloop_nport *nport; | |
1534 | struct fcloop_tport *tport; | |
1535 | struct nvmet_fc_port_info tinfo; | |
1536 | int ret; | |
1537 | ||
1538 | nport = fcloop_alloc_nport(buf, count, false); | |
1539 | if (!nport) | |
1540 | return -EIO; | |
1541 | ||
1542 | tinfo.node_name = nport->node_name; | |
1543 | tinfo.port_name = nport->port_name; | |
1544 | tinfo.port_id = nport->port_id; | |
1545 | ||
1546 | ret = nvmet_fc_register_targetport(&tinfo, &tgttemplate, NULL, | |
1547 | &targetport); | |
1548 | if (ret) { | |
1549 | fcloop_nport_put(nport); | |
1550 | return ret; | |
1551 | } | |
1552 | ||
1553 | /* success */ | |
1554 | tport = targetport->private; | |
1555 | tport->targetport = targetport; | |
1556 | tport->remoteport = (nport->rport) ? nport->rport->remoteport : NULL; | |
1557 | if (nport->rport) | |
1558 | nport->rport->targetport = targetport; | |
1559 | tport->nport = nport; | |
1560 | tport->lport = nport->lport; | |
1561 | nport->tport = tport; | |
2b559a3e | 1562 | tport->flags = 0; |
437c0b82 JS |
1563 | spin_lock_init(&tport->lock); |
1564 | INIT_WORK(&tport->ls_work, fcloop_tport_lsrqst_work); | |
1565 | INIT_LIST_HEAD(&tport->ls_list); | |
475d0fe7 | 1566 | |
7c3a23b8 | 1567 | return count; |
475d0fe7 JS |
1568 | } |
1569 | ||
1570 | ||
1571 | static struct fcloop_tport * | |
1572 | __unlink_target_port(struct fcloop_nport *nport) | |
1573 | { | |
1574 | struct fcloop_tport *tport = nport->tport; | |
1575 | ||
d6c40d87 DW |
1576 | lockdep_assert_held(&fcloop_lock); |
1577 | ||
475d0fe7 JS |
1578 | if (tport && nport->rport) |
1579 | nport->rport->targetport = NULL; | |
1580 | nport->tport = NULL; | |
1581 | ||
1582 | return tport; | |
1583 | } | |
1584 | ||
1585 | static int | |
fddc9923 | 1586 | __targetport_unreg(struct fcloop_nport *nport, struct fcloop_tport *tport) |
475d0fe7 | 1587 | { |
fddc9923 | 1588 | return nvmet_fc_unregister_targetport(tport->targetport); |
475d0fe7 JS |
1589 | } |
1590 | ||
1591 | static ssize_t | |
1592 | fcloop_delete_target_port(struct device *dev, struct device_attribute *attr, | |
1593 | const char *buf, size_t count) | |
1594 | { | |
d6c40d87 DW |
1595 | struct fcloop_nport *nport; |
1596 | struct fcloop_tport *tport; | |
475d0fe7 JS |
1597 | u64 nodename, portname; |
1598 | unsigned long flags; | |
1599 | int ret; | |
1600 | ||
1601 | ret = fcloop_parse_nm_options(dev, &nodename, &portname, buf); | |
1602 | if (ret) | |
1603 | return ret; | |
1604 | ||
d6c40d87 DW |
1605 | nport = fcloop_nport_lookup(nodename, portname); |
1606 | if (!nport) | |
1607 | return -ENOENT; | |
475d0fe7 | 1608 | |
d6c40d87 DW |
1609 | spin_lock_irqsave(&fcloop_lock, flags); |
1610 | tport = __unlink_target_port(nport); | |
475d0fe7 JS |
1611 | spin_unlock_irqrestore(&fcloop_lock, flags); |
1612 | ||
d6c40d87 DW |
1613 | if (!tport) { |
1614 | ret = -ENOENT; | |
1615 | goto out_nport_put; | |
1616 | } | |
475d0fe7 | 1617 | |
fddc9923 | 1618 | ret = __targetport_unreg(nport, tport); |
475d0fe7 | 1619 | |
d6c40d87 DW |
1620 | out_nport_put: |
1621 | fcloop_nport_put(nport); | |
1622 | ||
475d0fe7 JS |
1623 | return ret ? ret : count; |
1624 | } | |
1625 | ||
03d99e5d JS |
1626 | static ssize_t |
1627 | fcloop_set_cmd_drop(struct device *dev, struct device_attribute *attr, | |
1628 | const char *buf, size_t count) | |
1629 | { | |
2b54996b JS |
1630 | unsigned int opcode; |
1631 | int starting, amount; | |
03d99e5d JS |
1632 | |
1633 | if (sscanf(buf, "%x:%d:%d", &opcode, &starting, &amount) != 3) | |
1634 | return -EBADRQC; | |
1635 | ||
1636 | drop_current_cnt = 0; | |
1637 | drop_fabric_opcode = (opcode & ~DROP_OPCODE_MASK) ? true : false; | |
1638 | drop_opcode = (opcode & DROP_OPCODE_MASK); | |
1639 | drop_instance = starting; | |
1640 | /* the check to drop routine uses instance + count to know when | |
1641 | * to end. Thus, if dropping 1 instance, count should be 0. | |
1642 | * so subtract 1 from the count. | |
1643 | */ | |
1644 | drop_amount = amount - 1; | |
1645 | ||
1646 | pr_info("%s: DROP: Starting at instance %d of%s opcode x%x drop +%d " | |
1647 | "instances\n", | |
1648 | __func__, drop_instance, drop_fabric_opcode ? " fabric" : "", | |
1649 | drop_opcode, drop_amount); | |
1650 | ||
1651 | return count; | |
1652 | } | |
1653 | ||
475d0fe7 JS |
1654 | |
1655 | static DEVICE_ATTR(add_local_port, 0200, NULL, fcloop_create_local_port); | |
1656 | static DEVICE_ATTR(del_local_port, 0200, NULL, fcloop_delete_local_port); | |
1657 | static DEVICE_ATTR(add_remote_port, 0200, NULL, fcloop_create_remote_port); | |
1658 | static DEVICE_ATTR(del_remote_port, 0200, NULL, fcloop_delete_remote_port); | |
1659 | static DEVICE_ATTR(add_target_port, 0200, NULL, fcloop_create_target_port); | |
1660 | static DEVICE_ATTR(del_target_port, 0200, NULL, fcloop_delete_target_port); | |
03d99e5d | 1661 | static DEVICE_ATTR(set_cmd_drop, 0200, NULL, fcloop_set_cmd_drop); |
475d0fe7 JS |
1662 | |
1663 | static struct attribute *fcloop_dev_attrs[] = { | |
1664 | &dev_attr_add_local_port.attr, | |
1665 | &dev_attr_del_local_port.attr, | |
1666 | &dev_attr_add_remote_port.attr, | |
1667 | &dev_attr_del_remote_port.attr, | |
1668 | &dev_attr_add_target_port.attr, | |
1669 | &dev_attr_del_target_port.attr, | |
03d99e5d | 1670 | &dev_attr_set_cmd_drop.attr, |
475d0fe7 JS |
1671 | NULL |
1672 | }; | |
1673 | ||
60b152a5 | 1674 | static const struct attribute_group fclopp_dev_attrs_group = { |
475d0fe7 JS |
1675 | .attrs = fcloop_dev_attrs, |
1676 | }; | |
1677 | ||
1678 | static const struct attribute_group *fcloop_dev_attr_groups[] = { | |
1679 | &fclopp_dev_attrs_group, | |
1680 | NULL, | |
1681 | }; | |
1682 | ||
800bb2b0 RM |
1683 | static const struct class fcloop_class = { |
1684 | .name = "fcloop", | |
1685 | }; | |
475d0fe7 JS |
1686 | static struct device *fcloop_device; |
1687 | ||
475d0fe7 JS |
1688 | static int __init fcloop_init(void) |
1689 | { | |
1690 | int ret; | |
1691 | ||
772042dd DW |
1692 | lsreq_cache = kmem_cache_create("lsreq_cache", |
1693 | sizeof(struct fcloop_lsreq), 0, | |
1694 | 0, NULL); | |
1695 | if (!lsreq_cache) | |
1696 | return -ENOMEM; | |
1697 | ||
800bb2b0 RM |
1698 | ret = class_register(&fcloop_class); |
1699 | if (ret) { | |
475d0fe7 | 1700 | pr_err("couldn't register class fcloop\n"); |
772042dd | 1701 | goto out_destroy_cache; |
475d0fe7 JS |
1702 | } |
1703 | ||
1704 | fcloop_device = device_create_with_groups( | |
800bb2b0 | 1705 | &fcloop_class, NULL, MKDEV(0, 0), NULL, |
475d0fe7 JS |
1706 | fcloop_dev_attr_groups, "ctl"); |
1707 | if (IS_ERR(fcloop_device)) { | |
1708 | pr_err("couldn't create ctl device!\n"); | |
1709 | ret = PTR_ERR(fcloop_device); | |
1710 | goto out_destroy_class; | |
1711 | } | |
1712 | ||
1713 | get_device(fcloop_device); | |
1714 | ||
1715 | return 0; | |
1716 | ||
1717 | out_destroy_class: | |
800bb2b0 | 1718 | class_unregister(&fcloop_class); |
772042dd DW |
1719 | out_destroy_cache: |
1720 | kmem_cache_destroy(lsreq_cache); | |
475d0fe7 JS |
1721 | return ret; |
1722 | } | |
1723 | ||
1724 | static void __exit fcloop_exit(void) | |
1725 | { | |
d6c40d87 DW |
1726 | struct fcloop_lport *lport; |
1727 | struct fcloop_nport *nport; | |
475d0fe7 JS |
1728 | struct fcloop_tport *tport; |
1729 | struct fcloop_rport *rport; | |
1730 | unsigned long flags; | |
1731 | int ret; | |
1732 | ||
1733 | spin_lock_irqsave(&fcloop_lock, flags); | |
1734 | ||
1735 | for (;;) { | |
1736 | nport = list_first_entry_or_null(&fcloop_nports, | |
1737 | typeof(*nport), nport_list); | |
d6c40d87 | 1738 | if (!nport || !fcloop_nport_get(nport)) |
475d0fe7 JS |
1739 | break; |
1740 | ||
1741 | tport = __unlink_target_port(nport); | |
1742 | rport = __unlink_remote_port(nport); | |
1743 | ||
1744 | spin_unlock_irqrestore(&fcloop_lock, flags); | |
1745 | ||
d6c40d87 DW |
1746 | if (tport) { |
1747 | ret = __targetport_unreg(nport, tport); | |
1748 | if (ret) | |
1749 | pr_warn("%s: Failed deleting target port\n", | |
1750 | __func__); | |
1751 | } | |
475d0fe7 | 1752 | |
d6c40d87 DW |
1753 | if (rport) { |
1754 | ret = __remoteport_unreg(nport, rport); | |
1755 | if (ret) | |
1756 | pr_warn("%s: Failed deleting remote port\n", | |
1757 | __func__); | |
1758 | } | |
1759 | ||
1760 | fcloop_nport_put(nport); | |
475d0fe7 JS |
1761 | |
1762 | spin_lock_irqsave(&fcloop_lock, flags); | |
1763 | } | |
1764 | ||
1765 | for (;;) { | |
1766 | lport = list_first_entry_or_null(&fcloop_lports, | |
1767 | typeof(*lport), lport_list); | |
72511b1d | 1768 | if (!lport || !fcloop_lport_get(lport)) |
475d0fe7 JS |
1769 | break; |
1770 | ||
475d0fe7 JS |
1771 | spin_unlock_irqrestore(&fcloop_lock, flags); |
1772 | ||
3466b7a6 | 1773 | ret = __localport_unreg(lport); |
475d0fe7 JS |
1774 | if (ret) |
1775 | pr_warn("%s: Failed deleting local port\n", __func__); | |
1776 | ||
72511b1d DW |
1777 | fcloop_lport_put(lport); |
1778 | ||
475d0fe7 JS |
1779 | spin_lock_irqsave(&fcloop_lock, flags); |
1780 | } | |
1781 | ||
1782 | spin_unlock_irqrestore(&fcloop_lock, flags); | |
1783 | ||
1784 | put_device(fcloop_device); | |
1785 | ||
800bb2b0 RM |
1786 | device_destroy(&fcloop_class, MKDEV(0, 0)); |
1787 | class_unregister(&fcloop_class); | |
772042dd | 1788 | kmem_cache_destroy(lsreq_cache); |
475d0fe7 JS |
1789 | } |
1790 | ||
1791 | module_init(fcloop_init); | |
1792 | module_exit(fcloop_exit); | |
1793 | ||
41951f83 | 1794 | MODULE_DESCRIPTION("NVMe target FC loop transport driver"); |
475d0fe7 | 1795 | MODULE_LICENSE("GPL v2"); |