vhost-scsi: Take configfs group dependency during VHOST_SCSI_SET_ENDPOINT
[firefly-linux-kernel-4.4.55.git] / drivers / vhost / scsi.c
1 /*******************************************************************************
2  * Vhost kernel TCM fabric driver for virtio SCSI initiators
3  *
4  * (C) Copyright 2010-2012 RisingTide Systems LLC.
5  * (C) Copyright 2010-2012 IBM Corp.
6  *
7  * Licensed to the Linux Foundation under the General Public License (GPL) version 2.
8  *
9  * Authors: Nicholas A. Bellinger <nab@risingtidesystems.com>
10  *          Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  ****************************************************************************/
23
24 #include <linux/module.h>
25 #include <linux/moduleparam.h>
26 #include <generated/utsrelease.h>
27 #include <linux/utsname.h>
28 #include <linux/init.h>
29 #include <linux/slab.h>
30 #include <linux/kthread.h>
31 #include <linux/types.h>
32 #include <linux/string.h>
33 #include <linux/configfs.h>
34 #include <linux/ctype.h>
35 #include <linux/compat.h>
36 #include <linux/eventfd.h>
37 #include <linux/fs.h>
38 #include <linux/miscdevice.h>
39 #include <asm/unaligned.h>
40 #include <scsi/scsi.h>
41 #include <scsi/scsi_tcq.h>
42 #include <target/target_core_base.h>
43 #include <target/target_core_fabric.h>
44 #include <target/target_core_fabric_configfs.h>
45 #include <target/target_core_configfs.h>
46 #include <target/configfs_macros.h>
47 #include <linux/vhost.h>
48 #include <linux/virtio_scsi.h>
49 #include <linux/llist.h>
50 #include <linux/bitmap.h>
51
52 #include "vhost.c"
53 #include "vhost.h"
54
55 #define TCM_VHOST_VERSION  "v0.1"
56 #define TCM_VHOST_NAMELEN 256
57 #define TCM_VHOST_MAX_CDB_SIZE 32
58
59 struct vhost_scsi_inflight {
60         /* Wait for the flush operation to finish */
61         struct completion comp;
62         /* Refcount for the inflight reqs */
63         struct kref kref;
64 };
65
66 struct tcm_vhost_cmd {
67         /* Descriptor from vhost_get_vq_desc() for virt_queue segment */
68         int tvc_vq_desc;
69         /* virtio-scsi initiator task attribute */
70         int tvc_task_attr;
71         /* virtio-scsi initiator data direction */
72         enum dma_data_direction tvc_data_direction;
73         /* Expected data transfer length from virtio-scsi header */
74         u32 tvc_exp_data_len;
75         /* The Tag from include/linux/virtio_scsi.h:struct virtio_scsi_cmd_req */
76         u64 tvc_tag;
77         /* The number of scatterlists associated with this cmd */
78         u32 tvc_sgl_count;
79         /* Saved unpacked SCSI LUN for tcm_vhost_submission_work() */
80         u32 tvc_lun;
81         /* Pointer to the SGL formatted memory from virtio-scsi */
82         struct scatterlist *tvc_sgl;
83         /* Pointer to response */
84         struct virtio_scsi_cmd_resp __user *tvc_resp;
85         /* Pointer to vhost_scsi for our device */
86         struct vhost_scsi *tvc_vhost;
87         /* Pointer to vhost_virtqueue for the cmd */
88         struct vhost_virtqueue *tvc_vq;
89         /* Pointer to vhost nexus memory */
90         struct tcm_vhost_nexus *tvc_nexus;
91         /* The TCM I/O descriptor that is accessed via container_of() */
92         struct se_cmd tvc_se_cmd;
93         /* work item used for cmwq dispatch to tcm_vhost_submission_work() */
94         struct work_struct work;
95         /* Copy of the incoming SCSI command descriptor block (CDB) */
96         unsigned char tvc_cdb[TCM_VHOST_MAX_CDB_SIZE];
97         /* Sense buffer that will be mapped into outgoing status */
98         unsigned char tvc_sense_buf[TRANSPORT_SENSE_BUFFER];
99         /* Completed commands list, serviced from vhost worker thread */
100         struct llist_node tvc_completion_list;
101         /* Used to track inflight cmd */
102         struct vhost_scsi_inflight *inflight;
103 };
104
105 struct tcm_vhost_nexus {
106         /* Pointer to TCM session for I_T Nexus */
107         struct se_session *tvn_se_sess;
108 };
109
110 struct tcm_vhost_nacl {
111         /* Binary World Wide unique Port Name for Vhost Initiator port */
112         u64 iport_wwpn;
113         /* ASCII formatted WWPN for Sas Initiator port */
114         char iport_name[TCM_VHOST_NAMELEN];
115         /* Returned by tcm_vhost_make_nodeacl() */
116         struct se_node_acl se_node_acl;
117 };
118
119 struct vhost_scsi;
120 struct tcm_vhost_tpg {
121         /* Vhost port target portal group tag for TCM */
122         u16 tport_tpgt;
123         /* Used to track number of TPG Port/Lun Links wrt to explict I_T Nexus shutdown */
124         int tv_tpg_port_count;
125         /* Used for vhost_scsi device reference to tpg_nexus, protected by tv_tpg_mutex */
126         int tv_tpg_vhost_count;
127         /* list for tcm_vhost_list */
128         struct list_head tv_tpg_list;
129         /* Used to protect access for tpg_nexus */
130         struct mutex tv_tpg_mutex;
131         /* Pointer to the TCM VHost I_T Nexus for this TPG endpoint */
132         struct tcm_vhost_nexus *tpg_nexus;
133         /* Pointer back to tcm_vhost_tport */
134         struct tcm_vhost_tport *tport;
135         /* Returned by tcm_vhost_make_tpg() */
136         struct se_portal_group se_tpg;
137         /* Pointer back to vhost_scsi, protected by tv_tpg_mutex */
138         struct vhost_scsi *vhost_scsi;
139 };
140
141 struct tcm_vhost_tport {
142         /* SCSI protocol the tport is providing */
143         u8 tport_proto_id;
144         /* Binary World Wide unique Port Name for Vhost Target port */
145         u64 tport_wwpn;
146         /* ASCII formatted WWPN for Vhost Target port */
147         char tport_name[TCM_VHOST_NAMELEN];
148         /* Returned by tcm_vhost_make_tport() */
149         struct se_wwn tport_wwn;
150 };
151
152 struct tcm_vhost_evt {
153         /* event to be sent to guest */
154         struct virtio_scsi_event event;
155         /* event list, serviced from vhost worker thread */
156         struct llist_node list;
157 };
158
159 enum {
160         VHOST_SCSI_VQ_CTL = 0,
161         VHOST_SCSI_VQ_EVT = 1,
162         VHOST_SCSI_VQ_IO = 2,
163 };
164
165 enum {
166         VHOST_SCSI_FEATURES = VHOST_FEATURES | (1ULL << VIRTIO_SCSI_F_HOTPLUG)
167 };
168
169 #define VHOST_SCSI_MAX_TARGET   256
170 #define VHOST_SCSI_MAX_VQ       128
171 #define VHOST_SCSI_MAX_EVENT    128
172
173 struct vhost_scsi_virtqueue {
174         struct vhost_virtqueue vq;
175         /*
176          * Reference counting for inflight reqs, used for flush operation. At
177          * each time, one reference tracks new commands submitted, while we
178          * wait for another one to reach 0.
179          */
180         struct vhost_scsi_inflight inflights[2];
181         /*
182          * Indicate current inflight in use, protected by vq->mutex.
183          * Writers must also take dev mutex and flush under it.
184          */
185         int inflight_idx;
186 };
187
188 struct vhost_scsi {
189         /* Protected by vhost_scsi->dev.mutex */
190         struct tcm_vhost_tpg **vs_tpg;
191         char vs_vhost_wwpn[TRANSPORT_IQN_LEN];
192
193         struct vhost_dev dev;
194         struct vhost_scsi_virtqueue vqs[VHOST_SCSI_MAX_VQ];
195
196         struct vhost_work vs_completion_work; /* cmd completion work item */
197         struct llist_head vs_completion_list; /* cmd completion queue */
198
199         struct vhost_work vs_event_work; /* evt injection work item */
200         struct llist_head vs_event_list; /* evt injection queue */
201
202         bool vs_events_missed; /* any missed events, protected by vq->mutex */
203         int vs_events_nr; /* num of pending events, protected by vq->mutex */
204 };
205
206 /* Local pointer to allocated TCM configfs fabric module */
207 static struct target_fabric_configfs *tcm_vhost_fabric_configfs;
208
209 static struct workqueue_struct *tcm_vhost_workqueue;
210
211 /* Global spinlock to protect tcm_vhost TPG list for vhost IOCTL access */
212 static DEFINE_MUTEX(tcm_vhost_mutex);
213 static LIST_HEAD(tcm_vhost_list);
214
215 static int iov_num_pages(struct iovec *iov)
216 {
217         return (PAGE_ALIGN((unsigned long)iov->iov_base + iov->iov_len) -
218                ((unsigned long)iov->iov_base & PAGE_MASK)) >> PAGE_SHIFT;
219 }
220
221 void tcm_vhost_done_inflight(struct kref *kref)
222 {
223         struct vhost_scsi_inflight *inflight;
224
225         inflight = container_of(kref, struct vhost_scsi_inflight, kref);
226         complete(&inflight->comp);
227 }
228
229 static void tcm_vhost_init_inflight(struct vhost_scsi *vs,
230                                     struct vhost_scsi_inflight *old_inflight[])
231 {
232         struct vhost_scsi_inflight *new_inflight;
233         struct vhost_virtqueue *vq;
234         int idx, i;
235
236         for (i = 0; i < VHOST_SCSI_MAX_VQ; i++) {
237                 vq = &vs->vqs[i].vq;
238
239                 mutex_lock(&vq->mutex);
240
241                 /* store old infight */
242                 idx = vs->vqs[i].inflight_idx;
243                 if (old_inflight)
244                         old_inflight[i] = &vs->vqs[i].inflights[idx];
245
246                 /* setup new infight */
247                 vs->vqs[i].inflight_idx = idx ^ 1;
248                 new_inflight = &vs->vqs[i].inflights[idx ^ 1];
249                 kref_init(&new_inflight->kref);
250                 init_completion(&new_inflight->comp);
251
252                 mutex_unlock(&vq->mutex);
253         }
254 }
255
256 static struct vhost_scsi_inflight *
257 tcm_vhost_get_inflight(struct vhost_virtqueue *vq)
258 {
259         struct vhost_scsi_inflight *inflight;
260         struct vhost_scsi_virtqueue *svq;
261
262         svq = container_of(vq, struct vhost_scsi_virtqueue, vq);
263         inflight = &svq->inflights[svq->inflight_idx];
264         kref_get(&inflight->kref);
265
266         return inflight;
267 }
268
269 static void tcm_vhost_put_inflight(struct vhost_scsi_inflight *inflight)
270 {
271         kref_put(&inflight->kref, tcm_vhost_done_inflight);
272 }
273
274 static int tcm_vhost_check_true(struct se_portal_group *se_tpg)
275 {
276         return 1;
277 }
278
279 static int tcm_vhost_check_false(struct se_portal_group *se_tpg)
280 {
281         return 0;
282 }
283
284 static char *tcm_vhost_get_fabric_name(void)
285 {
286         return "vhost";
287 }
288
289 static u8 tcm_vhost_get_fabric_proto_ident(struct se_portal_group *se_tpg)
290 {
291         struct tcm_vhost_tpg *tpg = container_of(se_tpg,
292                                 struct tcm_vhost_tpg, se_tpg);
293         struct tcm_vhost_tport *tport = tpg->tport;
294
295         switch (tport->tport_proto_id) {
296         case SCSI_PROTOCOL_SAS:
297                 return sas_get_fabric_proto_ident(se_tpg);
298         case SCSI_PROTOCOL_FCP:
299                 return fc_get_fabric_proto_ident(se_tpg);
300         case SCSI_PROTOCOL_ISCSI:
301                 return iscsi_get_fabric_proto_ident(se_tpg);
302         default:
303                 pr_err("Unknown tport_proto_id: 0x%02x, using"
304                         " SAS emulation\n", tport->tport_proto_id);
305                 break;
306         }
307
308         return sas_get_fabric_proto_ident(se_tpg);
309 }
310
311 static char *tcm_vhost_get_fabric_wwn(struct se_portal_group *se_tpg)
312 {
313         struct tcm_vhost_tpg *tpg = container_of(se_tpg,
314                                 struct tcm_vhost_tpg, se_tpg);
315         struct tcm_vhost_tport *tport = tpg->tport;
316
317         return &tport->tport_name[0];
318 }
319
320 static u16 tcm_vhost_get_tag(struct se_portal_group *se_tpg)
321 {
322         struct tcm_vhost_tpg *tpg = container_of(se_tpg,
323                                 struct tcm_vhost_tpg, se_tpg);
324         return tpg->tport_tpgt;
325 }
326
327 static u32 tcm_vhost_get_default_depth(struct se_portal_group *se_tpg)
328 {
329         return 1;
330 }
331
332 static u32 tcm_vhost_get_pr_transport_id(struct se_portal_group *se_tpg,
333         struct se_node_acl *se_nacl,
334         struct t10_pr_registration *pr_reg,
335         int *format_code,
336         unsigned char *buf)
337 {
338         struct tcm_vhost_tpg *tpg = container_of(se_tpg,
339                                 struct tcm_vhost_tpg, se_tpg);
340         struct tcm_vhost_tport *tport = tpg->tport;
341
342         switch (tport->tport_proto_id) {
343         case SCSI_PROTOCOL_SAS:
344                 return sas_get_pr_transport_id(se_tpg, se_nacl, pr_reg,
345                                         format_code, buf);
346         case SCSI_PROTOCOL_FCP:
347                 return fc_get_pr_transport_id(se_tpg, se_nacl, pr_reg,
348                                         format_code, buf);
349         case SCSI_PROTOCOL_ISCSI:
350                 return iscsi_get_pr_transport_id(se_tpg, se_nacl, pr_reg,
351                                         format_code, buf);
352         default:
353                 pr_err("Unknown tport_proto_id: 0x%02x, using"
354                         " SAS emulation\n", tport->tport_proto_id);
355                 break;
356         }
357
358         return sas_get_pr_transport_id(se_tpg, se_nacl, pr_reg,
359                         format_code, buf);
360 }
361
362 static u32 tcm_vhost_get_pr_transport_id_len(struct se_portal_group *se_tpg,
363         struct se_node_acl *se_nacl,
364         struct t10_pr_registration *pr_reg,
365         int *format_code)
366 {
367         struct tcm_vhost_tpg *tpg = container_of(se_tpg,
368                                 struct tcm_vhost_tpg, se_tpg);
369         struct tcm_vhost_tport *tport = tpg->tport;
370
371         switch (tport->tport_proto_id) {
372         case SCSI_PROTOCOL_SAS:
373                 return sas_get_pr_transport_id_len(se_tpg, se_nacl, pr_reg,
374                                         format_code);
375         case SCSI_PROTOCOL_FCP:
376                 return fc_get_pr_transport_id_len(se_tpg, se_nacl, pr_reg,
377                                         format_code);
378         case SCSI_PROTOCOL_ISCSI:
379                 return iscsi_get_pr_transport_id_len(se_tpg, se_nacl, pr_reg,
380                                         format_code);
381         default:
382                 pr_err("Unknown tport_proto_id: 0x%02x, using"
383                         " SAS emulation\n", tport->tport_proto_id);
384                 break;
385         }
386
387         return sas_get_pr_transport_id_len(se_tpg, se_nacl, pr_reg,
388                         format_code);
389 }
390
391 static char *tcm_vhost_parse_pr_out_transport_id(struct se_portal_group *se_tpg,
392         const char *buf,
393         u32 *out_tid_len,
394         char **port_nexus_ptr)
395 {
396         struct tcm_vhost_tpg *tpg = container_of(se_tpg,
397                                 struct tcm_vhost_tpg, se_tpg);
398         struct tcm_vhost_tport *tport = tpg->tport;
399
400         switch (tport->tport_proto_id) {
401         case SCSI_PROTOCOL_SAS:
402                 return sas_parse_pr_out_transport_id(se_tpg, buf, out_tid_len,
403                                         port_nexus_ptr);
404         case SCSI_PROTOCOL_FCP:
405                 return fc_parse_pr_out_transport_id(se_tpg, buf, out_tid_len,
406                                         port_nexus_ptr);
407         case SCSI_PROTOCOL_ISCSI:
408                 return iscsi_parse_pr_out_transport_id(se_tpg, buf, out_tid_len,
409                                         port_nexus_ptr);
410         default:
411                 pr_err("Unknown tport_proto_id: 0x%02x, using"
412                         " SAS emulation\n", tport->tport_proto_id);
413                 break;
414         }
415
416         return sas_parse_pr_out_transport_id(se_tpg, buf, out_tid_len,
417                         port_nexus_ptr);
418 }
419
420 static struct se_node_acl *tcm_vhost_alloc_fabric_acl(
421         struct se_portal_group *se_tpg)
422 {
423         struct tcm_vhost_nacl *nacl;
424
425         nacl = kzalloc(sizeof(struct tcm_vhost_nacl), GFP_KERNEL);
426         if (!nacl) {
427                 pr_err("Unable to allocate struct tcm_vhost_nacl\n");
428                 return NULL;
429         }
430
431         return &nacl->se_node_acl;
432 }
433
434 static void tcm_vhost_release_fabric_acl(struct se_portal_group *se_tpg,
435         struct se_node_acl *se_nacl)
436 {
437         struct tcm_vhost_nacl *nacl = container_of(se_nacl,
438                         struct tcm_vhost_nacl, se_node_acl);
439         kfree(nacl);
440 }
441
442 static u32 tcm_vhost_tpg_get_inst_index(struct se_portal_group *se_tpg)
443 {
444         return 1;
445 }
446
447 static void tcm_vhost_release_cmd(struct se_cmd *se_cmd)
448 {
449         return;
450 }
451
452 static int tcm_vhost_shutdown_session(struct se_session *se_sess)
453 {
454         return 0;
455 }
456
457 static void tcm_vhost_close_session(struct se_session *se_sess)
458 {
459         return;
460 }
461
462 static u32 tcm_vhost_sess_get_index(struct se_session *se_sess)
463 {
464         return 0;
465 }
466
467 static int tcm_vhost_write_pending(struct se_cmd *se_cmd)
468 {
469         /* Go ahead and process the write immediately */
470         target_execute_cmd(se_cmd);
471         return 0;
472 }
473
474 static int tcm_vhost_write_pending_status(struct se_cmd *se_cmd)
475 {
476         return 0;
477 }
478
479 static void tcm_vhost_set_default_node_attrs(struct se_node_acl *nacl)
480 {
481         return;
482 }
483
484 static u32 tcm_vhost_get_task_tag(struct se_cmd *se_cmd)
485 {
486         return 0;
487 }
488
489 static int tcm_vhost_get_cmd_state(struct se_cmd *se_cmd)
490 {
491         return 0;
492 }
493
494 static void vhost_scsi_complete_cmd(struct tcm_vhost_cmd *tv_cmd)
495 {
496         struct vhost_scsi *vs = tv_cmd->tvc_vhost;
497
498         llist_add(&tv_cmd->tvc_completion_list, &vs->vs_completion_list);
499
500         vhost_work_queue(&vs->dev, &vs->vs_completion_work);
501 }
502
503 static int tcm_vhost_queue_data_in(struct se_cmd *se_cmd)
504 {
505         struct tcm_vhost_cmd *tv_cmd = container_of(se_cmd,
506                                 struct tcm_vhost_cmd, tvc_se_cmd);
507         vhost_scsi_complete_cmd(tv_cmd);
508         return 0;
509 }
510
511 static int tcm_vhost_queue_status(struct se_cmd *se_cmd)
512 {
513         struct tcm_vhost_cmd *tv_cmd = container_of(se_cmd,
514                                 struct tcm_vhost_cmd, tvc_se_cmd);
515         vhost_scsi_complete_cmd(tv_cmd);
516         return 0;
517 }
518
519 static int tcm_vhost_queue_tm_rsp(struct se_cmd *se_cmd)
520 {
521         return 0;
522 }
523
524 static void tcm_vhost_free_evt(struct vhost_scsi *vs, struct tcm_vhost_evt *evt)
525 {
526         vs->vs_events_nr--;
527         kfree(evt);
528 }
529
530 static struct tcm_vhost_evt *tcm_vhost_allocate_evt(struct vhost_scsi *vs,
531         u32 event, u32 reason)
532 {
533         struct vhost_virtqueue *vq = &vs->vqs[VHOST_SCSI_VQ_EVT].vq;
534         struct tcm_vhost_evt *evt;
535
536         if (vs->vs_events_nr > VHOST_SCSI_MAX_EVENT) {
537                 vs->vs_events_missed = true;
538                 return NULL;
539         }
540
541         evt = kzalloc(sizeof(*evt), GFP_KERNEL);
542         if (!evt) {
543                 vq_err(vq, "Failed to allocate tcm_vhost_evt\n");
544                 vs->vs_events_missed = true;
545                 return NULL;
546         }
547
548         evt->event.event = event;
549         evt->event.reason = reason;
550         vs->vs_events_nr++;
551
552         return evt;
553 }
554
555 static void vhost_scsi_free_cmd(struct tcm_vhost_cmd *tv_cmd)
556 {
557         struct se_cmd *se_cmd = &tv_cmd->tvc_se_cmd;
558
559         /* TODO locking against target/backend threads? */
560         transport_generic_free_cmd(se_cmd, 1);
561
562         if (tv_cmd->tvc_sgl_count) {
563                 u32 i;
564                 for (i = 0; i < tv_cmd->tvc_sgl_count; i++)
565                         put_page(sg_page(&tv_cmd->tvc_sgl[i]));
566
567                 kfree(tv_cmd->tvc_sgl);
568         }
569
570         tcm_vhost_put_inflight(tv_cmd->inflight);
571
572         kfree(tv_cmd);
573 }
574
575 static void tcm_vhost_do_evt_work(struct vhost_scsi *vs,
576         struct tcm_vhost_evt *evt)
577 {
578         struct vhost_virtqueue *vq = &vs->vqs[VHOST_SCSI_VQ_EVT].vq;
579         struct virtio_scsi_event *event = &evt->event;
580         struct virtio_scsi_event __user *eventp;
581         unsigned out, in;
582         int head, ret;
583
584         if (!vq->private_data) {
585                 vs->vs_events_missed = true;
586                 return;
587         }
588
589 again:
590         vhost_disable_notify(&vs->dev, vq);
591         head = vhost_get_vq_desc(&vs->dev, vq, vq->iov,
592                         ARRAY_SIZE(vq->iov), &out, &in,
593                         NULL, NULL);
594         if (head < 0) {
595                 vs->vs_events_missed = true;
596                 return;
597         }
598         if (head == vq->num) {
599                 if (vhost_enable_notify(&vs->dev, vq))
600                         goto again;
601                 vs->vs_events_missed = true;
602                 return;
603         }
604
605         if ((vq->iov[out].iov_len != sizeof(struct virtio_scsi_event))) {
606                 vq_err(vq, "Expecting virtio_scsi_event, got %zu bytes\n",
607                                 vq->iov[out].iov_len);
608                 vs->vs_events_missed = true;
609                 return;
610         }
611
612         if (vs->vs_events_missed) {
613                 event->event |= VIRTIO_SCSI_T_EVENTS_MISSED;
614                 vs->vs_events_missed = false;
615         }
616
617         eventp = vq->iov[out].iov_base;
618         ret = __copy_to_user(eventp, event, sizeof(*event));
619         if (!ret)
620                 vhost_add_used_and_signal(&vs->dev, vq, head, 0);
621         else
622                 vq_err(vq, "Faulted on tcm_vhost_send_event\n");
623 }
624
625 static void tcm_vhost_evt_work(struct vhost_work *work)
626 {
627         struct vhost_scsi *vs = container_of(work, struct vhost_scsi,
628                                         vs_event_work);
629         struct vhost_virtqueue *vq = &vs->vqs[VHOST_SCSI_VQ_EVT].vq;
630         struct tcm_vhost_evt *evt;
631         struct llist_node *llnode;
632
633         mutex_lock(&vq->mutex);
634         llnode = llist_del_all(&vs->vs_event_list);
635         while (llnode) {
636                 evt = llist_entry(llnode, struct tcm_vhost_evt, list);
637                 llnode = llist_next(llnode);
638                 tcm_vhost_do_evt_work(vs, evt);
639                 tcm_vhost_free_evt(vs, evt);
640         }
641         mutex_unlock(&vq->mutex);
642 }
643
644 /* Fill in status and signal that we are done processing this command
645  *
646  * This is scheduled in the vhost work queue so we are called with the owner
647  * process mm and can access the vring.
648  */
649 static void vhost_scsi_complete_cmd_work(struct vhost_work *work)
650 {
651         struct vhost_scsi *vs = container_of(work, struct vhost_scsi,
652                                         vs_completion_work);
653         DECLARE_BITMAP(signal, VHOST_SCSI_MAX_VQ);
654         struct virtio_scsi_cmd_resp v_rsp;
655         struct tcm_vhost_cmd *tv_cmd;
656         struct llist_node *llnode;
657         struct se_cmd *se_cmd;
658         int ret, vq;
659
660         bitmap_zero(signal, VHOST_SCSI_MAX_VQ);
661         llnode = llist_del_all(&vs->vs_completion_list);
662         while (llnode) {
663                 tv_cmd = llist_entry(llnode, struct tcm_vhost_cmd,
664                                      tvc_completion_list);
665                 llnode = llist_next(llnode);
666                 se_cmd = &tv_cmd->tvc_se_cmd;
667
668                 pr_debug("%s tv_cmd %p resid %u status %#02x\n", __func__,
669                         tv_cmd, se_cmd->residual_count, se_cmd->scsi_status);
670
671                 memset(&v_rsp, 0, sizeof(v_rsp));
672                 v_rsp.resid = se_cmd->residual_count;
673                 /* TODO is status_qualifier field needed? */
674                 v_rsp.status = se_cmd->scsi_status;
675                 v_rsp.sense_len = se_cmd->scsi_sense_length;
676                 memcpy(v_rsp.sense, tv_cmd->tvc_sense_buf,
677                        v_rsp.sense_len);
678                 ret = copy_to_user(tv_cmd->tvc_resp, &v_rsp, sizeof(v_rsp));
679                 if (likely(ret == 0)) {
680                         struct vhost_scsi_virtqueue *q;
681                         vhost_add_used(tv_cmd->tvc_vq, tv_cmd->tvc_vq_desc, 0);
682                         q = container_of(tv_cmd->tvc_vq, struct vhost_scsi_virtqueue, vq);
683                         vq = q - vs->vqs;
684                         __set_bit(vq, signal);
685                 } else
686                         pr_err("Faulted on virtio_scsi_cmd_resp\n");
687
688                 vhost_scsi_free_cmd(tv_cmd);
689         }
690
691         vq = -1;
692         while ((vq = find_next_bit(signal, VHOST_SCSI_MAX_VQ, vq + 1))
693                 < VHOST_SCSI_MAX_VQ)
694                 vhost_signal(&vs->dev, &vs->vqs[vq].vq);
695 }
696
697 static struct tcm_vhost_cmd *vhost_scsi_allocate_cmd(
698         struct vhost_virtqueue *vq,
699         struct tcm_vhost_tpg *tv_tpg,
700         struct virtio_scsi_cmd_req *v_req,
701         u32 exp_data_len,
702         int data_direction)
703 {
704         struct tcm_vhost_cmd *tv_cmd;
705         struct tcm_vhost_nexus *tv_nexus;
706
707         tv_nexus = tv_tpg->tpg_nexus;
708         if (!tv_nexus) {
709                 pr_err("Unable to locate active struct tcm_vhost_nexus\n");
710                 return ERR_PTR(-EIO);
711         }
712
713         tv_cmd = kzalloc(sizeof(struct tcm_vhost_cmd), GFP_ATOMIC);
714         if (!tv_cmd) {
715                 pr_err("Unable to allocate struct tcm_vhost_cmd\n");
716                 return ERR_PTR(-ENOMEM);
717         }
718         tv_cmd->tvc_tag = v_req->tag;
719         tv_cmd->tvc_task_attr = v_req->task_attr;
720         tv_cmd->tvc_exp_data_len = exp_data_len;
721         tv_cmd->tvc_data_direction = data_direction;
722         tv_cmd->tvc_nexus = tv_nexus;
723         tv_cmd->inflight = tcm_vhost_get_inflight(vq);
724
725         return tv_cmd;
726 }
727
728 /*
729  * Map a user memory range into a scatterlist
730  *
731  * Returns the number of scatterlist entries used or -errno on error.
732  */
733 static int vhost_scsi_map_to_sgl(struct scatterlist *sgl,
734         unsigned int sgl_count, struct iovec *iov, int write)
735 {
736         unsigned int npages = 0, pages_nr, offset, nbytes;
737         struct scatterlist *sg = sgl;
738         void __user *ptr = iov->iov_base;
739         size_t len = iov->iov_len;
740         struct page **pages;
741         int ret, i;
742
743         pages_nr = iov_num_pages(iov);
744         if (pages_nr > sgl_count)
745                 return -ENOBUFS;
746
747         pages = kmalloc(pages_nr * sizeof(struct page *), GFP_KERNEL);
748         if (!pages)
749                 return -ENOMEM;
750
751         ret = get_user_pages_fast((unsigned long)ptr, pages_nr, write, pages);
752         /* No pages were pinned */
753         if (ret < 0)
754                 goto out;
755         /* Less pages pinned than wanted */
756         if (ret != pages_nr) {
757                 for (i = 0; i < ret; i++)
758                         put_page(pages[i]);
759                 ret = -EFAULT;
760                 goto out;
761         }
762
763         while (len > 0) {
764                 offset = (uintptr_t)ptr & ~PAGE_MASK;
765                 nbytes = min_t(unsigned int, PAGE_SIZE - offset, len);
766                 sg_set_page(sg, pages[npages], nbytes, offset);
767                 ptr += nbytes;
768                 len -= nbytes;
769                 sg++;
770                 npages++;
771         }
772
773 out:
774         kfree(pages);
775         return ret;
776 }
777
778 static int vhost_scsi_map_iov_to_sgl(struct tcm_vhost_cmd *tv_cmd,
779         struct iovec *iov, unsigned int niov, int write)
780 {
781         int ret;
782         unsigned int i;
783         u32 sgl_count;
784         struct scatterlist *sg;
785
786         /*
787          * Find out how long sglist needs to be
788          */
789         sgl_count = 0;
790         for (i = 0; i < niov; i++)
791                 sgl_count += iov_num_pages(&iov[i]);
792
793         /* TODO overflow checking */
794
795         sg = kmalloc(sizeof(tv_cmd->tvc_sgl[0]) * sgl_count, GFP_ATOMIC);
796         if (!sg)
797                 return -ENOMEM;
798         pr_debug("%s sg %p sgl_count %u is_err %d\n", __func__,
799                sg, sgl_count, !sg);
800         sg_init_table(sg, sgl_count);
801
802         tv_cmd->tvc_sgl = sg;
803         tv_cmd->tvc_sgl_count = sgl_count;
804
805         pr_debug("Mapping %u iovecs for %u pages\n", niov, sgl_count);
806         for (i = 0; i < niov; i++) {
807                 ret = vhost_scsi_map_to_sgl(sg, sgl_count, &iov[i], write);
808                 if (ret < 0) {
809                         for (i = 0; i < tv_cmd->tvc_sgl_count; i++)
810                                 put_page(sg_page(&tv_cmd->tvc_sgl[i]));
811                         kfree(tv_cmd->tvc_sgl);
812                         tv_cmd->tvc_sgl = NULL;
813                         tv_cmd->tvc_sgl_count = 0;
814                         return ret;
815                 }
816
817                 sg += ret;
818                 sgl_count -= ret;
819         }
820         return 0;
821 }
822
823 static void tcm_vhost_submission_work(struct work_struct *work)
824 {
825         struct tcm_vhost_cmd *tv_cmd =
826                 container_of(work, struct tcm_vhost_cmd, work);
827         struct tcm_vhost_nexus *tv_nexus;
828         struct se_cmd *se_cmd = &tv_cmd->tvc_se_cmd;
829         struct scatterlist *sg_ptr, *sg_bidi_ptr = NULL;
830         int rc, sg_no_bidi = 0;
831
832         if (tv_cmd->tvc_sgl_count) {
833                 sg_ptr = tv_cmd->tvc_sgl;
834 /* FIXME: Fix BIDI operation in tcm_vhost_submission_work() */
835 #if 0
836                 if (se_cmd->se_cmd_flags & SCF_BIDI) {
837                         sg_bidi_ptr = NULL;
838                         sg_no_bidi = 0;
839                 }
840 #endif
841         } else {
842                 sg_ptr = NULL;
843         }
844         tv_nexus = tv_cmd->tvc_nexus;
845
846         rc = target_submit_cmd_map_sgls(se_cmd, tv_nexus->tvn_se_sess,
847                         tv_cmd->tvc_cdb, &tv_cmd->tvc_sense_buf[0],
848                         tv_cmd->tvc_lun, tv_cmd->tvc_exp_data_len,
849                         tv_cmd->tvc_task_attr, tv_cmd->tvc_data_direction,
850                         0, sg_ptr, tv_cmd->tvc_sgl_count,
851                         sg_bidi_ptr, sg_no_bidi);
852         if (rc < 0) {
853                 transport_send_check_condition_and_sense(se_cmd,
854                                 TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE, 0);
855                 transport_generic_free_cmd(se_cmd, 0);
856         }
857 }
858
859 static void vhost_scsi_send_bad_target(struct vhost_scsi *vs,
860         struct vhost_virtqueue *vq, int head, unsigned out)
861 {
862         struct virtio_scsi_cmd_resp __user *resp;
863         struct virtio_scsi_cmd_resp rsp;
864         int ret;
865
866         memset(&rsp, 0, sizeof(rsp));
867         rsp.response = VIRTIO_SCSI_S_BAD_TARGET;
868         resp = vq->iov[out].iov_base;
869         ret = __copy_to_user(resp, &rsp, sizeof(rsp));
870         if (!ret)
871                 vhost_add_used_and_signal(&vs->dev, vq, head, 0);
872         else
873                 pr_err("Faulted on virtio_scsi_cmd_resp\n");
874 }
875
876 static void vhost_scsi_handle_vq(struct vhost_scsi *vs,
877         struct vhost_virtqueue *vq)
878 {
879         struct tcm_vhost_tpg **vs_tpg;
880         struct virtio_scsi_cmd_req v_req;
881         struct tcm_vhost_tpg *tv_tpg;
882         struct tcm_vhost_cmd *tv_cmd;
883         u32 exp_data_len, data_first, data_num, data_direction;
884         unsigned out, in, i;
885         int head, ret;
886         u8 target;
887
888         /*
889          * We can handle the vq only after the endpoint is setup by calling the
890          * VHOST_SCSI_SET_ENDPOINT ioctl.
891          *
892          * TODO: Check that we are running from vhost_worker which acts
893          * as read-side critical section for vhost kind of RCU.
894          * See the comments in struct vhost_virtqueue in drivers/vhost/vhost.h
895          */
896         vs_tpg = rcu_dereference_check(vq->private_data, 1);
897         if (!vs_tpg)
898                 return;
899
900         mutex_lock(&vq->mutex);
901         vhost_disable_notify(&vs->dev, vq);
902
903         for (;;) {
904                 head = vhost_get_vq_desc(&vs->dev, vq, vq->iov,
905                                         ARRAY_SIZE(vq->iov), &out, &in,
906                                         NULL, NULL);
907                 pr_debug("vhost_get_vq_desc: head: %d, out: %u in: %u\n",
908                                         head, out, in);
909                 /* On error, stop handling until the next kick. */
910                 if (unlikely(head < 0))
911                         break;
912                 /* Nothing new?  Wait for eventfd to tell us they refilled. */
913                 if (head == vq->num) {
914                         if (unlikely(vhost_enable_notify(&vs->dev, vq))) {
915                                 vhost_disable_notify(&vs->dev, vq);
916                                 continue;
917                         }
918                         break;
919                 }
920
921 /* FIXME: BIDI operation */
922                 if (out == 1 && in == 1) {
923                         data_direction = DMA_NONE;
924                         data_first = 0;
925                         data_num = 0;
926                 } else if (out == 1 && in > 1) {
927                         data_direction = DMA_FROM_DEVICE;
928                         data_first = out + 1;
929                         data_num = in - 1;
930                 } else if (out > 1 && in == 1) {
931                         data_direction = DMA_TO_DEVICE;
932                         data_first = 1;
933                         data_num = out - 1;
934                 } else {
935                         vq_err(vq, "Invalid buffer layout out: %u in: %u\n",
936                                         out, in);
937                         break;
938                 }
939
940                 /*
941                  * Check for a sane resp buffer so we can report errors to
942                  * the guest.
943                  */
944                 if (unlikely(vq->iov[out].iov_len !=
945                                         sizeof(struct virtio_scsi_cmd_resp))) {
946                         vq_err(vq, "Expecting virtio_scsi_cmd_resp, got %zu"
947                                 " bytes\n", vq->iov[out].iov_len);
948                         break;
949                 }
950
951                 if (unlikely(vq->iov[0].iov_len != sizeof(v_req))) {
952                         vq_err(vq, "Expecting virtio_scsi_cmd_req, got %zu"
953                                 " bytes\n", vq->iov[0].iov_len);
954                         break;
955                 }
956                 pr_debug("Calling __copy_from_user: vq->iov[0].iov_base: %p,"
957                         " len: %zu\n", vq->iov[0].iov_base, sizeof(v_req));
958                 ret = __copy_from_user(&v_req, vq->iov[0].iov_base,
959                                 sizeof(v_req));
960                 if (unlikely(ret)) {
961                         vq_err(vq, "Faulted on virtio_scsi_cmd_req\n");
962                         break;
963                 }
964
965                 /* Extract the tpgt */
966                 target = v_req.lun[1];
967                 tv_tpg = ACCESS_ONCE(vs_tpg[target]);
968
969                 /* Target does not exist, fail the request */
970                 if (unlikely(!tv_tpg)) {
971                         vhost_scsi_send_bad_target(vs, vq, head, out);
972                         continue;
973                 }
974
975                 exp_data_len = 0;
976                 for (i = 0; i < data_num; i++)
977                         exp_data_len += vq->iov[data_first + i].iov_len;
978
979                 tv_cmd = vhost_scsi_allocate_cmd(vq, tv_tpg, &v_req,
980                                         exp_data_len, data_direction);
981                 if (IS_ERR(tv_cmd)) {
982                         vq_err(vq, "vhost_scsi_allocate_cmd failed %ld\n",
983                                         PTR_ERR(tv_cmd));
984                         goto err_cmd;
985                 }
986                 pr_debug("Allocated tv_cmd: %p exp_data_len: %d, data_direction"
987                         ": %d\n", tv_cmd, exp_data_len, data_direction);
988
989                 tv_cmd->tvc_vhost = vs;
990                 tv_cmd->tvc_vq = vq;
991                 tv_cmd->tvc_resp = vq->iov[out].iov_base;
992
993                 /*
994                  * Copy in the recieved CDB descriptor into tv_cmd->tvc_cdb
995                  * that will be used by tcm_vhost_new_cmd_map() and down into
996                  * target_setup_cmd_from_cdb()
997                  */
998                 memcpy(tv_cmd->tvc_cdb, v_req.cdb, TCM_VHOST_MAX_CDB_SIZE);
999                 /*
1000                  * Check that the recieved CDB size does not exceeded our
1001                  * hardcoded max for tcm_vhost
1002                  */
1003                 /* TODO what if cdb was too small for varlen cdb header? */
1004                 if (unlikely(scsi_command_size(tv_cmd->tvc_cdb) >
1005                                         TCM_VHOST_MAX_CDB_SIZE)) {
1006                         vq_err(vq, "Received SCSI CDB with command_size: %d that"
1007                                 " exceeds SCSI_MAX_VARLEN_CDB_SIZE: %d\n",
1008                                 scsi_command_size(tv_cmd->tvc_cdb),
1009                                 TCM_VHOST_MAX_CDB_SIZE);
1010                         goto err_free;
1011                 }
1012                 tv_cmd->tvc_lun = ((v_req.lun[2] << 8) | v_req.lun[3]) & 0x3FFF;
1013
1014                 pr_debug("vhost_scsi got command opcode: %#02x, lun: %d\n",
1015                         tv_cmd->tvc_cdb[0], tv_cmd->tvc_lun);
1016
1017                 if (data_direction != DMA_NONE) {
1018                         ret = vhost_scsi_map_iov_to_sgl(tv_cmd,
1019                                         &vq->iov[data_first], data_num,
1020                                         data_direction == DMA_FROM_DEVICE);
1021                         if (unlikely(ret)) {
1022                                 vq_err(vq, "Failed to map iov to sgl\n");
1023                                 goto err_free;
1024                         }
1025                 }
1026
1027                 /*
1028                  * Save the descriptor from vhost_get_vq_desc() to be used to
1029                  * complete the virtio-scsi request in TCM callback context via
1030                  * tcm_vhost_queue_data_in() and tcm_vhost_queue_status()
1031                  */
1032                 tv_cmd->tvc_vq_desc = head;
1033                 /*
1034                  * Dispatch tv_cmd descriptor for cmwq execution in process
1035                  * context provided by tcm_vhost_workqueue.  This also ensures
1036                  * tv_cmd is executed on the same kworker CPU as this vhost
1037                  * thread to gain positive L2 cache locality effects..
1038                  */
1039                 INIT_WORK(&tv_cmd->work, tcm_vhost_submission_work);
1040                 queue_work(tcm_vhost_workqueue, &tv_cmd->work);
1041         }
1042
1043         mutex_unlock(&vq->mutex);
1044         return;
1045
1046 err_free:
1047         vhost_scsi_free_cmd(tv_cmd);
1048 err_cmd:
1049         vhost_scsi_send_bad_target(vs, vq, head, out);
1050         mutex_unlock(&vq->mutex);
1051 }
1052
1053 static void vhost_scsi_ctl_handle_kick(struct vhost_work *work)
1054 {
1055         pr_debug("%s: The handling func for control queue.\n", __func__);
1056 }
1057
1058 static void tcm_vhost_send_evt(struct vhost_scsi *vs, struct tcm_vhost_tpg *tpg,
1059         struct se_lun *lun, u32 event, u32 reason)
1060 {
1061         struct tcm_vhost_evt *evt;
1062
1063         evt = tcm_vhost_allocate_evt(vs, event, reason);
1064         if (!evt)
1065                 return;
1066
1067         if (tpg && lun) {
1068                 /* TODO: share lun setup code with virtio-scsi.ko */
1069                 /*
1070                  * Note: evt->event is zeroed when we allocate it and
1071                  * lun[4-7] need to be zero according to virtio-scsi spec.
1072                  */
1073                 evt->event.lun[0] = 0x01;
1074                 evt->event.lun[1] = tpg->tport_tpgt & 0xFF;
1075                 if (lun->unpacked_lun >= 256)
1076                         evt->event.lun[2] = lun->unpacked_lun >> 8 | 0x40 ;
1077                 evt->event.lun[3] = lun->unpacked_lun & 0xFF;
1078         }
1079
1080         llist_add(&evt->list, &vs->vs_event_list);
1081         vhost_work_queue(&vs->dev, &vs->vs_event_work);
1082 }
1083
1084 static void vhost_scsi_evt_handle_kick(struct vhost_work *work)
1085 {
1086         struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
1087                                                 poll.work);
1088         struct vhost_scsi *vs = container_of(vq->dev, struct vhost_scsi, dev);
1089
1090         mutex_lock(&vq->mutex);
1091         if (!vq->private_data)
1092                 goto out;
1093
1094         if (vs->vs_events_missed)
1095                 tcm_vhost_send_evt(vs, NULL, NULL, VIRTIO_SCSI_T_NO_EVENT, 0);
1096 out:
1097         mutex_unlock(&vq->mutex);
1098 }
1099
1100 static void vhost_scsi_handle_kick(struct vhost_work *work)
1101 {
1102         struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
1103                                                 poll.work);
1104         struct vhost_scsi *vs = container_of(vq->dev, struct vhost_scsi, dev);
1105
1106         vhost_scsi_handle_vq(vs, vq);
1107 }
1108
1109 static void vhost_scsi_flush_vq(struct vhost_scsi *vs, int index)
1110 {
1111         vhost_poll_flush(&vs->vqs[index].vq.poll);
1112 }
1113
1114 /* Callers must hold dev mutex */
1115 static void vhost_scsi_flush(struct vhost_scsi *vs)
1116 {
1117         struct vhost_scsi_inflight *old_inflight[VHOST_SCSI_MAX_VQ];
1118         int i;
1119
1120         /* Init new inflight and remember the old inflight */
1121         tcm_vhost_init_inflight(vs, old_inflight);
1122
1123         /*
1124          * The inflight->kref was initialized to 1. We decrement it here to
1125          * indicate the start of the flush operation so that it will reach 0
1126          * when all the reqs are finished.
1127          */
1128         for (i = 0; i < VHOST_SCSI_MAX_VQ; i++)
1129                 kref_put(&old_inflight[i]->kref, tcm_vhost_done_inflight);
1130
1131         /* Flush both the vhost poll and vhost work */
1132         for (i = 0; i < VHOST_SCSI_MAX_VQ; i++)
1133                 vhost_scsi_flush_vq(vs, i);
1134         vhost_work_flush(&vs->dev, &vs->vs_completion_work);
1135         vhost_work_flush(&vs->dev, &vs->vs_event_work);
1136
1137         /* Wait for all reqs issued before the flush to be finished */
1138         for (i = 0; i < VHOST_SCSI_MAX_VQ; i++)
1139                 wait_for_completion(&old_inflight[i]->comp);
1140 }
1141
1142 /*
1143  * Called from vhost_scsi_ioctl() context to walk the list of available
1144  * tcm_vhost_tpg with an active struct tcm_vhost_nexus
1145  *
1146  *  The lock nesting rule is:
1147  *    tcm_vhost_mutex -> vs->dev.mutex -> tpg->tv_tpg_mutex -> vq->mutex
1148  */
1149 static int vhost_scsi_set_endpoint(
1150         struct vhost_scsi *vs,
1151         struct vhost_scsi_target *t)
1152 {
1153         struct se_portal_group *se_tpg;
1154         struct tcm_vhost_tport *tv_tport;
1155         struct tcm_vhost_tpg *tv_tpg;
1156         struct tcm_vhost_tpg **vs_tpg;
1157         struct vhost_virtqueue *vq;
1158         int index, ret, i, len;
1159         bool match = false;
1160
1161         mutex_lock(&tcm_vhost_mutex);
1162         mutex_lock(&vs->dev.mutex);
1163
1164         /* Verify that ring has been setup correctly. */
1165         for (index = 0; index < vs->dev.nvqs; ++index) {
1166                 /* Verify that ring has been setup correctly. */
1167                 if (!vhost_vq_access_ok(&vs->vqs[index].vq)) {
1168                         ret = -EFAULT;
1169                         goto out;
1170                 }
1171         }
1172
1173         len = sizeof(vs_tpg[0]) * VHOST_SCSI_MAX_TARGET;
1174         vs_tpg = kzalloc(len, GFP_KERNEL);
1175         if (!vs_tpg) {
1176                 ret = -ENOMEM;
1177                 goto out;
1178         }
1179         if (vs->vs_tpg)
1180                 memcpy(vs_tpg, vs->vs_tpg, len);
1181
1182         list_for_each_entry(tv_tpg, &tcm_vhost_list, tv_tpg_list) {
1183                 mutex_lock(&tv_tpg->tv_tpg_mutex);
1184                 if (!tv_tpg->tpg_nexus) {
1185                         mutex_unlock(&tv_tpg->tv_tpg_mutex);
1186                         continue;
1187                 }
1188                 if (tv_tpg->tv_tpg_vhost_count != 0) {
1189                         mutex_unlock(&tv_tpg->tv_tpg_mutex);
1190                         continue;
1191                 }
1192                 tv_tport = tv_tpg->tport;
1193
1194                 if (!strcmp(tv_tport->tport_name, t->vhost_wwpn)) {
1195                         if (vs->vs_tpg && vs->vs_tpg[tv_tpg->tport_tpgt]) {
1196                                 kfree(vs_tpg);
1197                                 mutex_unlock(&tv_tpg->tv_tpg_mutex);
1198                                 ret = -EEXIST;
1199                                 goto out;
1200                         }
1201                         /*
1202                          * In order to ensure individual vhost-scsi configfs
1203                          * groups cannot be removed while in use by vhost ioctl,
1204                          * go ahead and take an explicit se_tpg->tpg_group.cg_item
1205                          * dependency now.
1206                          */
1207                         se_tpg = &tv_tpg->se_tpg;
1208                         ret = configfs_depend_item(se_tpg->se_tpg_tfo->tf_subsys,
1209                                                    &se_tpg->tpg_group.cg_item);
1210                         if (ret) {
1211                                 pr_warn("configfs_depend_item() failed: %d\n", ret);
1212                                 kfree(vs_tpg);
1213                                 mutex_unlock(&tv_tpg->tv_tpg_mutex);
1214                                 goto out;
1215                         }
1216                         tv_tpg->tv_tpg_vhost_count++;
1217                         tv_tpg->vhost_scsi = vs;
1218                         vs_tpg[tv_tpg->tport_tpgt] = tv_tpg;
1219                         smp_mb__after_atomic_inc();
1220                         match = true;
1221                 }
1222                 mutex_unlock(&tv_tpg->tv_tpg_mutex);
1223         }
1224
1225         if (match) {
1226                 memcpy(vs->vs_vhost_wwpn, t->vhost_wwpn,
1227                        sizeof(vs->vs_vhost_wwpn));
1228                 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++) {
1229                         vq = &vs->vqs[i].vq;
1230                         /* Flushing the vhost_work acts as synchronize_rcu */
1231                         mutex_lock(&vq->mutex);
1232                         rcu_assign_pointer(vq->private_data, vs_tpg);
1233                         vhost_init_used(vq);
1234                         mutex_unlock(&vq->mutex);
1235                 }
1236                 ret = 0;
1237         } else {
1238                 ret = -EEXIST;
1239         }
1240
1241         /*
1242          * Act as synchronize_rcu to make sure access to
1243          * old vs->vs_tpg is finished.
1244          */
1245         vhost_scsi_flush(vs);
1246         kfree(vs->vs_tpg);
1247         vs->vs_tpg = vs_tpg;
1248
1249 out:
1250         mutex_unlock(&vs->dev.mutex);
1251         mutex_unlock(&tcm_vhost_mutex);
1252         return ret;
1253 }
1254
1255 static int vhost_scsi_clear_endpoint(
1256         struct vhost_scsi *vs,
1257         struct vhost_scsi_target *t)
1258 {
1259         struct se_portal_group *se_tpg;
1260         struct tcm_vhost_tport *tv_tport;
1261         struct tcm_vhost_tpg *tv_tpg;
1262         struct vhost_virtqueue *vq;
1263         bool match = false;
1264         int index, ret, i;
1265         u8 target;
1266
1267         mutex_lock(&tcm_vhost_mutex);
1268         mutex_lock(&vs->dev.mutex);
1269         /* Verify that ring has been setup correctly. */
1270         for (index = 0; index < vs->dev.nvqs; ++index) {
1271                 if (!vhost_vq_access_ok(&vs->vqs[index].vq)) {
1272                         ret = -EFAULT;
1273                         goto err_dev;
1274                 }
1275         }
1276
1277         if (!vs->vs_tpg) {
1278                 ret = 0;
1279                 goto err_dev;
1280         }
1281
1282         for (i = 0; i < VHOST_SCSI_MAX_TARGET; i++) {
1283                 target = i;
1284                 tv_tpg = vs->vs_tpg[target];
1285                 if (!tv_tpg)
1286                         continue;
1287
1288                 mutex_lock(&tv_tpg->tv_tpg_mutex);
1289                 tv_tport = tv_tpg->tport;
1290                 if (!tv_tport) {
1291                         ret = -ENODEV;
1292                         goto err_tpg;
1293                 }
1294
1295                 if (strcmp(tv_tport->tport_name, t->vhost_wwpn)) {
1296                         pr_warn("tv_tport->tport_name: %s, tv_tpg->tport_tpgt: %hu"
1297                                 " does not match t->vhost_wwpn: %s, t->vhost_tpgt: %hu\n",
1298                                 tv_tport->tport_name, tv_tpg->tport_tpgt,
1299                                 t->vhost_wwpn, t->vhost_tpgt);
1300                         ret = -EINVAL;
1301                         goto err_tpg;
1302                 }
1303                 tv_tpg->tv_tpg_vhost_count--;
1304                 tv_tpg->vhost_scsi = NULL;
1305                 vs->vs_tpg[target] = NULL;
1306                 match = true;
1307                 mutex_unlock(&tv_tpg->tv_tpg_mutex);
1308                 /*
1309                  * Release se_tpg->tpg_group.cg_item configfs dependency now
1310                  * to allow vhost-scsi WWPN se_tpg->tpg_group shutdown to occur.
1311                  */
1312                 se_tpg = &tv_tpg->se_tpg;
1313                 configfs_undepend_item(se_tpg->se_tpg_tfo->tf_subsys,
1314                                        &se_tpg->tpg_group.cg_item);
1315         }
1316         if (match) {
1317                 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++) {
1318                         vq = &vs->vqs[i].vq;
1319                         /* Flushing the vhost_work acts as synchronize_rcu */
1320                         mutex_lock(&vq->mutex);
1321                         rcu_assign_pointer(vq->private_data, NULL);
1322                         mutex_unlock(&vq->mutex);
1323                 }
1324         }
1325         /*
1326          * Act as synchronize_rcu to make sure access to
1327          * old vs->vs_tpg is finished.
1328          */
1329         vhost_scsi_flush(vs);
1330         kfree(vs->vs_tpg);
1331         vs->vs_tpg = NULL;
1332         WARN_ON(vs->vs_events_nr);
1333         mutex_unlock(&vs->dev.mutex);
1334         mutex_unlock(&tcm_vhost_mutex);
1335         return 0;
1336
1337 err_tpg:
1338         mutex_unlock(&tv_tpg->tv_tpg_mutex);
1339 err_dev:
1340         mutex_unlock(&vs->dev.mutex);
1341         mutex_unlock(&tcm_vhost_mutex);
1342         return ret;
1343 }
1344
1345 static int vhost_scsi_set_features(struct vhost_scsi *vs, u64 features)
1346 {
1347         if (features & ~VHOST_SCSI_FEATURES)
1348                 return -EOPNOTSUPP;
1349
1350         mutex_lock(&vs->dev.mutex);
1351         if ((features & (1 << VHOST_F_LOG_ALL)) &&
1352             !vhost_log_access_ok(&vs->dev)) {
1353                 mutex_unlock(&vs->dev.mutex);
1354                 return -EFAULT;
1355         }
1356         vs->dev.acked_features = features;
1357         smp_wmb();
1358         vhost_scsi_flush(vs);
1359         mutex_unlock(&vs->dev.mutex);
1360         return 0;
1361 }
1362
1363 static int vhost_scsi_open(struct inode *inode, struct file *f)
1364 {
1365         struct vhost_scsi *s;
1366         struct vhost_virtqueue **vqs;
1367         int r, i;
1368
1369         s = kzalloc(sizeof(*s), GFP_KERNEL);
1370         if (!s)
1371                 return -ENOMEM;
1372
1373         vqs = kmalloc(VHOST_SCSI_MAX_VQ * sizeof(*vqs), GFP_KERNEL);
1374         if (!vqs) {
1375                 kfree(s);
1376                 return -ENOMEM;
1377         }
1378
1379         vhost_work_init(&s->vs_completion_work, vhost_scsi_complete_cmd_work);
1380         vhost_work_init(&s->vs_event_work, tcm_vhost_evt_work);
1381
1382         s->vs_events_nr = 0;
1383         s->vs_events_missed = false;
1384
1385         vqs[VHOST_SCSI_VQ_CTL] = &s->vqs[VHOST_SCSI_VQ_CTL].vq;
1386         vqs[VHOST_SCSI_VQ_EVT] = &s->vqs[VHOST_SCSI_VQ_EVT].vq;
1387         s->vqs[VHOST_SCSI_VQ_CTL].vq.handle_kick = vhost_scsi_ctl_handle_kick;
1388         s->vqs[VHOST_SCSI_VQ_EVT].vq.handle_kick = vhost_scsi_evt_handle_kick;
1389         for (i = VHOST_SCSI_VQ_IO; i < VHOST_SCSI_MAX_VQ; i++) {
1390                 vqs[i] = &s->vqs[i].vq;
1391                 s->vqs[i].vq.handle_kick = vhost_scsi_handle_kick;
1392         }
1393         r = vhost_dev_init(&s->dev, vqs, VHOST_SCSI_MAX_VQ);
1394
1395         tcm_vhost_init_inflight(s, NULL);
1396
1397         if (r < 0) {
1398                 kfree(vqs);
1399                 kfree(s);
1400                 return r;
1401         }
1402
1403         f->private_data = s;
1404         return 0;
1405 }
1406
1407 static int vhost_scsi_release(struct inode *inode, struct file *f)
1408 {
1409         struct vhost_scsi *s = f->private_data;
1410         struct vhost_scsi_target t;
1411
1412         mutex_lock(&s->dev.mutex);
1413         memcpy(t.vhost_wwpn, s->vs_vhost_wwpn, sizeof(t.vhost_wwpn));
1414         mutex_unlock(&s->dev.mutex);
1415         vhost_scsi_clear_endpoint(s, &t);
1416         vhost_dev_stop(&s->dev);
1417         vhost_dev_cleanup(&s->dev, false);
1418         /* Jobs can re-queue themselves in evt kick handler. Do extra flush. */
1419         vhost_scsi_flush(s);
1420         kfree(s->dev.vqs);
1421         kfree(s);
1422         return 0;
1423 }
1424
1425 static long vhost_scsi_ioctl(struct file *f, unsigned int ioctl,
1426                                 unsigned long arg)
1427 {
1428         struct vhost_scsi *vs = f->private_data;
1429         struct vhost_scsi_target backend;
1430         void __user *argp = (void __user *)arg;
1431         u64 __user *featurep = argp;
1432         u32 __user *eventsp = argp;
1433         u32 events_missed;
1434         u64 features;
1435         int r, abi_version = VHOST_SCSI_ABI_VERSION;
1436         struct vhost_virtqueue *vq = &vs->vqs[VHOST_SCSI_VQ_EVT].vq;
1437
1438         switch (ioctl) {
1439         case VHOST_SCSI_SET_ENDPOINT:
1440                 if (copy_from_user(&backend, argp, sizeof backend))
1441                         return -EFAULT;
1442                 if (backend.reserved != 0)
1443                         return -EOPNOTSUPP;
1444
1445                 return vhost_scsi_set_endpoint(vs, &backend);
1446         case VHOST_SCSI_CLEAR_ENDPOINT:
1447                 if (copy_from_user(&backend, argp, sizeof backend))
1448                         return -EFAULT;
1449                 if (backend.reserved != 0)
1450                         return -EOPNOTSUPP;
1451
1452                 return vhost_scsi_clear_endpoint(vs, &backend);
1453         case VHOST_SCSI_GET_ABI_VERSION:
1454                 if (copy_to_user(argp, &abi_version, sizeof abi_version))
1455                         return -EFAULT;
1456                 return 0;
1457         case VHOST_SCSI_SET_EVENTS_MISSED:
1458                 if (get_user(events_missed, eventsp))
1459                         return -EFAULT;
1460                 mutex_lock(&vq->mutex);
1461                 vs->vs_events_missed = events_missed;
1462                 mutex_unlock(&vq->mutex);
1463                 return 0;
1464         case VHOST_SCSI_GET_EVENTS_MISSED:
1465                 mutex_lock(&vq->mutex);
1466                 events_missed = vs->vs_events_missed;
1467                 mutex_unlock(&vq->mutex);
1468                 if (put_user(events_missed, eventsp))
1469                         return -EFAULT;
1470                 return 0;
1471         case VHOST_GET_FEATURES:
1472                 features = VHOST_SCSI_FEATURES;
1473                 if (copy_to_user(featurep, &features, sizeof features))
1474                         return -EFAULT;
1475                 return 0;
1476         case VHOST_SET_FEATURES:
1477                 if (copy_from_user(&features, featurep, sizeof features))
1478                         return -EFAULT;
1479                 return vhost_scsi_set_features(vs, features);
1480         default:
1481                 mutex_lock(&vs->dev.mutex);
1482                 r = vhost_dev_ioctl(&vs->dev, ioctl, argp);
1483                 /* TODO: flush backend after dev ioctl. */
1484                 if (r == -ENOIOCTLCMD)
1485                         r = vhost_vring_ioctl(&vs->dev, ioctl, argp);
1486                 mutex_unlock(&vs->dev.mutex);
1487                 return r;
1488         }
1489 }
1490
1491 #ifdef CONFIG_COMPAT
1492 static long vhost_scsi_compat_ioctl(struct file *f, unsigned int ioctl,
1493                                 unsigned long arg)
1494 {
1495         return vhost_scsi_ioctl(f, ioctl, (unsigned long)compat_ptr(arg));
1496 }
1497 #endif
1498
1499 static const struct file_operations vhost_scsi_fops = {
1500         .owner          = THIS_MODULE,
1501         .release        = vhost_scsi_release,
1502         .unlocked_ioctl = vhost_scsi_ioctl,
1503 #ifdef CONFIG_COMPAT
1504         .compat_ioctl   = vhost_scsi_compat_ioctl,
1505 #endif
1506         .open           = vhost_scsi_open,
1507         .llseek         = noop_llseek,
1508 };
1509
1510 static struct miscdevice vhost_scsi_misc = {
1511         MISC_DYNAMIC_MINOR,
1512         "vhost-scsi",
1513         &vhost_scsi_fops,
1514 };
1515
1516 static int __init vhost_scsi_register(void)
1517 {
1518         return misc_register(&vhost_scsi_misc);
1519 }
1520
1521 static int vhost_scsi_deregister(void)
1522 {
1523         return misc_deregister(&vhost_scsi_misc);
1524 }
1525
1526 static char *tcm_vhost_dump_proto_id(struct tcm_vhost_tport *tport)
1527 {
1528         switch (tport->tport_proto_id) {
1529         case SCSI_PROTOCOL_SAS:
1530                 return "SAS";
1531         case SCSI_PROTOCOL_FCP:
1532                 return "FCP";
1533         case SCSI_PROTOCOL_ISCSI:
1534                 return "iSCSI";
1535         default:
1536                 break;
1537         }
1538
1539         return "Unknown";
1540 }
1541
1542 static void tcm_vhost_do_plug(struct tcm_vhost_tpg *tpg,
1543         struct se_lun *lun, bool plug)
1544 {
1545
1546         struct vhost_scsi *vs = tpg->vhost_scsi;
1547         struct vhost_virtqueue *vq;
1548         u32 reason;
1549
1550         if (!vs)
1551                 return;
1552
1553         mutex_lock(&vs->dev.mutex);
1554         if (!vhost_has_feature(&vs->dev, VIRTIO_SCSI_F_HOTPLUG)) {
1555                 mutex_unlock(&vs->dev.mutex);
1556                 return;
1557         }
1558
1559         if (plug)
1560                 reason = VIRTIO_SCSI_EVT_RESET_RESCAN;
1561         else
1562                 reason = VIRTIO_SCSI_EVT_RESET_REMOVED;
1563
1564         vq = &vs->vqs[VHOST_SCSI_VQ_EVT].vq;
1565         mutex_lock(&vq->mutex);
1566         tcm_vhost_send_evt(vs, tpg, lun,
1567                         VIRTIO_SCSI_T_TRANSPORT_RESET, reason);
1568         mutex_unlock(&vq->mutex);
1569         mutex_unlock(&vs->dev.mutex);
1570 }
1571
1572 static void tcm_vhost_hotplug(struct tcm_vhost_tpg *tpg, struct se_lun *lun)
1573 {
1574         tcm_vhost_do_plug(tpg, lun, true);
1575 }
1576
1577 static void tcm_vhost_hotunplug(struct tcm_vhost_tpg *tpg, struct se_lun *lun)
1578 {
1579         tcm_vhost_do_plug(tpg, lun, false);
1580 }
1581
1582 static int tcm_vhost_port_link(struct se_portal_group *se_tpg,
1583         struct se_lun *lun)
1584 {
1585         struct tcm_vhost_tpg *tv_tpg = container_of(se_tpg,
1586                                 struct tcm_vhost_tpg, se_tpg);
1587
1588         mutex_lock(&tcm_vhost_mutex);
1589
1590         mutex_lock(&tv_tpg->tv_tpg_mutex);
1591         tv_tpg->tv_tpg_port_count++;
1592         mutex_unlock(&tv_tpg->tv_tpg_mutex);
1593
1594         tcm_vhost_hotplug(tv_tpg, lun);
1595
1596         mutex_unlock(&tcm_vhost_mutex);
1597
1598         return 0;
1599 }
1600
1601 static void tcm_vhost_port_unlink(struct se_portal_group *se_tpg,
1602         struct se_lun *lun)
1603 {
1604         struct tcm_vhost_tpg *tv_tpg = container_of(se_tpg,
1605                                 struct tcm_vhost_tpg, se_tpg);
1606
1607         mutex_lock(&tcm_vhost_mutex);
1608
1609         mutex_lock(&tv_tpg->tv_tpg_mutex);
1610         tv_tpg->tv_tpg_port_count--;
1611         mutex_unlock(&tv_tpg->tv_tpg_mutex);
1612
1613         tcm_vhost_hotunplug(tv_tpg, lun);
1614
1615         mutex_unlock(&tcm_vhost_mutex);
1616 }
1617
1618 static struct se_node_acl *tcm_vhost_make_nodeacl(
1619         struct se_portal_group *se_tpg,
1620         struct config_group *group,
1621         const char *name)
1622 {
1623         struct se_node_acl *se_nacl, *se_nacl_new;
1624         struct tcm_vhost_nacl *nacl;
1625         u64 wwpn = 0;
1626         u32 nexus_depth;
1627
1628         /* tcm_vhost_parse_wwn(name, &wwpn, 1) < 0)
1629                 return ERR_PTR(-EINVAL); */
1630         se_nacl_new = tcm_vhost_alloc_fabric_acl(se_tpg);
1631         if (!se_nacl_new)
1632                 return ERR_PTR(-ENOMEM);
1633
1634         nexus_depth = 1;
1635         /*
1636          * se_nacl_new may be released by core_tpg_add_initiator_node_acl()
1637          * when converting a NodeACL from demo mode -> explict
1638          */
1639         se_nacl = core_tpg_add_initiator_node_acl(se_tpg, se_nacl_new,
1640                                 name, nexus_depth);
1641         if (IS_ERR(se_nacl)) {
1642                 tcm_vhost_release_fabric_acl(se_tpg, se_nacl_new);
1643                 return se_nacl;
1644         }
1645         /*
1646          * Locate our struct tcm_vhost_nacl and set the FC Nport WWPN
1647          */
1648         nacl = container_of(se_nacl, struct tcm_vhost_nacl, se_node_acl);
1649         nacl->iport_wwpn = wwpn;
1650
1651         return se_nacl;
1652 }
1653
1654 static void tcm_vhost_drop_nodeacl(struct se_node_acl *se_acl)
1655 {
1656         struct tcm_vhost_nacl *nacl = container_of(se_acl,
1657                                 struct tcm_vhost_nacl, se_node_acl);
1658         core_tpg_del_initiator_node_acl(se_acl->se_tpg, se_acl, 1);
1659         kfree(nacl);
1660 }
1661
1662 static int tcm_vhost_make_nexus(struct tcm_vhost_tpg *tv_tpg,
1663         const char *name)
1664 {
1665         struct se_portal_group *se_tpg;
1666         struct tcm_vhost_nexus *tv_nexus;
1667
1668         mutex_lock(&tv_tpg->tv_tpg_mutex);
1669         if (tv_tpg->tpg_nexus) {
1670                 mutex_unlock(&tv_tpg->tv_tpg_mutex);
1671                 pr_debug("tv_tpg->tpg_nexus already exists\n");
1672                 return -EEXIST;
1673         }
1674         se_tpg = &tv_tpg->se_tpg;
1675
1676         tv_nexus = kzalloc(sizeof(struct tcm_vhost_nexus), GFP_KERNEL);
1677         if (!tv_nexus) {
1678                 mutex_unlock(&tv_tpg->tv_tpg_mutex);
1679                 pr_err("Unable to allocate struct tcm_vhost_nexus\n");
1680                 return -ENOMEM;
1681         }
1682         /*
1683          *  Initialize the struct se_session pointer
1684          */
1685         tv_nexus->tvn_se_sess = transport_init_session();
1686         if (IS_ERR(tv_nexus->tvn_se_sess)) {
1687                 mutex_unlock(&tv_tpg->tv_tpg_mutex);
1688                 kfree(tv_nexus);
1689                 return -ENOMEM;
1690         }
1691         /*
1692          * Since we are running in 'demo mode' this call with generate a
1693          * struct se_node_acl for the tcm_vhost struct se_portal_group with
1694          * the SCSI Initiator port name of the passed configfs group 'name'.
1695          */
1696         tv_nexus->tvn_se_sess->se_node_acl = core_tpg_check_initiator_node_acl(
1697                                 se_tpg, (unsigned char *)name);
1698         if (!tv_nexus->tvn_se_sess->se_node_acl) {
1699                 mutex_unlock(&tv_tpg->tv_tpg_mutex);
1700                 pr_debug("core_tpg_check_initiator_node_acl() failed"
1701                                 " for %s\n", name);
1702                 transport_free_session(tv_nexus->tvn_se_sess);
1703                 kfree(tv_nexus);
1704                 return -ENOMEM;
1705         }
1706         /*
1707          * Now register the TCM vhost virtual I_T Nexus as active with the
1708          * call to __transport_register_session()
1709          */
1710         __transport_register_session(se_tpg, tv_nexus->tvn_se_sess->se_node_acl,
1711                         tv_nexus->tvn_se_sess, tv_nexus);
1712         tv_tpg->tpg_nexus = tv_nexus;
1713
1714         mutex_unlock(&tv_tpg->tv_tpg_mutex);
1715         return 0;
1716 }
1717
1718 static int tcm_vhost_drop_nexus(struct tcm_vhost_tpg *tpg)
1719 {
1720         struct se_session *se_sess;
1721         struct tcm_vhost_nexus *tv_nexus;
1722
1723         mutex_lock(&tpg->tv_tpg_mutex);
1724         tv_nexus = tpg->tpg_nexus;
1725         if (!tv_nexus) {
1726                 mutex_unlock(&tpg->tv_tpg_mutex);
1727                 return -ENODEV;
1728         }
1729
1730         se_sess = tv_nexus->tvn_se_sess;
1731         if (!se_sess) {
1732                 mutex_unlock(&tpg->tv_tpg_mutex);
1733                 return -ENODEV;
1734         }
1735
1736         if (tpg->tv_tpg_port_count != 0) {
1737                 mutex_unlock(&tpg->tv_tpg_mutex);
1738                 pr_err("Unable to remove TCM_vhost I_T Nexus with"
1739                         " active TPG port count: %d\n",
1740                         tpg->tv_tpg_port_count);
1741                 return -EBUSY;
1742         }
1743
1744         if (tpg->tv_tpg_vhost_count != 0) {
1745                 mutex_unlock(&tpg->tv_tpg_mutex);
1746                 pr_err("Unable to remove TCM_vhost I_T Nexus with"
1747                         " active TPG vhost count: %d\n",
1748                         tpg->tv_tpg_vhost_count);
1749                 return -EBUSY;
1750         }
1751
1752         pr_debug("TCM_vhost_ConfigFS: Removing I_T Nexus to emulated"
1753                 " %s Initiator Port: %s\n", tcm_vhost_dump_proto_id(tpg->tport),
1754                 tv_nexus->tvn_se_sess->se_node_acl->initiatorname);
1755         /*
1756          * Release the SCSI I_T Nexus to the emulated vhost Target Port
1757          */
1758         transport_deregister_session(tv_nexus->tvn_se_sess);
1759         tpg->tpg_nexus = NULL;
1760         mutex_unlock(&tpg->tv_tpg_mutex);
1761
1762         kfree(tv_nexus);
1763         return 0;
1764 }
1765
1766 static ssize_t tcm_vhost_tpg_show_nexus(struct se_portal_group *se_tpg,
1767         char *page)
1768 {
1769         struct tcm_vhost_tpg *tv_tpg = container_of(se_tpg,
1770                                 struct tcm_vhost_tpg, se_tpg);
1771         struct tcm_vhost_nexus *tv_nexus;
1772         ssize_t ret;
1773
1774         mutex_lock(&tv_tpg->tv_tpg_mutex);
1775         tv_nexus = tv_tpg->tpg_nexus;
1776         if (!tv_nexus) {
1777                 mutex_unlock(&tv_tpg->tv_tpg_mutex);
1778                 return -ENODEV;
1779         }
1780         ret = snprintf(page, PAGE_SIZE, "%s\n",
1781                         tv_nexus->tvn_se_sess->se_node_acl->initiatorname);
1782         mutex_unlock(&tv_tpg->tv_tpg_mutex);
1783
1784         return ret;
1785 }
1786
1787 static ssize_t tcm_vhost_tpg_store_nexus(struct se_portal_group *se_tpg,
1788         const char *page,
1789         size_t count)
1790 {
1791         struct tcm_vhost_tpg *tv_tpg = container_of(se_tpg,
1792                                 struct tcm_vhost_tpg, se_tpg);
1793         struct tcm_vhost_tport *tport_wwn = tv_tpg->tport;
1794         unsigned char i_port[TCM_VHOST_NAMELEN], *ptr, *port_ptr;
1795         int ret;
1796         /*
1797          * Shutdown the active I_T nexus if 'NULL' is passed..
1798          */
1799         if (!strncmp(page, "NULL", 4)) {
1800                 ret = tcm_vhost_drop_nexus(tv_tpg);
1801                 return (!ret) ? count : ret;
1802         }
1803         /*
1804          * Otherwise make sure the passed virtual Initiator port WWN matches
1805          * the fabric protocol_id set in tcm_vhost_make_tport(), and call
1806          * tcm_vhost_make_nexus().
1807          */
1808         if (strlen(page) >= TCM_VHOST_NAMELEN) {
1809                 pr_err("Emulated NAA Sas Address: %s, exceeds"
1810                                 " max: %d\n", page, TCM_VHOST_NAMELEN);
1811                 return -EINVAL;
1812         }
1813         snprintf(&i_port[0], TCM_VHOST_NAMELEN, "%s", page);
1814
1815         ptr = strstr(i_port, "naa.");
1816         if (ptr) {
1817                 if (tport_wwn->tport_proto_id != SCSI_PROTOCOL_SAS) {
1818                         pr_err("Passed SAS Initiator Port %s does not"
1819                                 " match target port protoid: %s\n", i_port,
1820                                 tcm_vhost_dump_proto_id(tport_wwn));
1821                         return -EINVAL;
1822                 }
1823                 port_ptr = &i_port[0];
1824                 goto check_newline;
1825         }
1826         ptr = strstr(i_port, "fc.");
1827         if (ptr) {
1828                 if (tport_wwn->tport_proto_id != SCSI_PROTOCOL_FCP) {
1829                         pr_err("Passed FCP Initiator Port %s does not"
1830                                 " match target port protoid: %s\n", i_port,
1831                                 tcm_vhost_dump_proto_id(tport_wwn));
1832                         return -EINVAL;
1833                 }
1834                 port_ptr = &i_port[3]; /* Skip over "fc." */
1835                 goto check_newline;
1836         }
1837         ptr = strstr(i_port, "iqn.");
1838         if (ptr) {
1839                 if (tport_wwn->tport_proto_id != SCSI_PROTOCOL_ISCSI) {
1840                         pr_err("Passed iSCSI Initiator Port %s does not"
1841                                 " match target port protoid: %s\n", i_port,
1842                                 tcm_vhost_dump_proto_id(tport_wwn));
1843                         return -EINVAL;
1844                 }
1845                 port_ptr = &i_port[0];
1846                 goto check_newline;
1847         }
1848         pr_err("Unable to locate prefix for emulated Initiator Port:"
1849                         " %s\n", i_port);
1850         return -EINVAL;
1851         /*
1852          * Clear any trailing newline for the NAA WWN
1853          */
1854 check_newline:
1855         if (i_port[strlen(i_port)-1] == '\n')
1856                 i_port[strlen(i_port)-1] = '\0';
1857
1858         ret = tcm_vhost_make_nexus(tv_tpg, port_ptr);
1859         if (ret < 0)
1860                 return ret;
1861
1862         return count;
1863 }
1864
1865 TF_TPG_BASE_ATTR(tcm_vhost, nexus, S_IRUGO | S_IWUSR);
1866
1867 static struct configfs_attribute *tcm_vhost_tpg_attrs[] = {
1868         &tcm_vhost_tpg_nexus.attr,
1869         NULL,
1870 };
1871
1872 static struct se_portal_group *tcm_vhost_make_tpg(struct se_wwn *wwn,
1873         struct config_group *group,
1874         const char *name)
1875 {
1876         struct tcm_vhost_tport *tport = container_of(wwn,
1877                         struct tcm_vhost_tport, tport_wwn);
1878
1879         struct tcm_vhost_tpg *tpg;
1880         unsigned long tpgt;
1881         int ret;
1882
1883         if (strstr(name, "tpgt_") != name)
1884                 return ERR_PTR(-EINVAL);
1885         if (kstrtoul(name + 5, 10, &tpgt) || tpgt > UINT_MAX)
1886                 return ERR_PTR(-EINVAL);
1887
1888         tpg = kzalloc(sizeof(struct tcm_vhost_tpg), GFP_KERNEL);
1889         if (!tpg) {
1890                 pr_err("Unable to allocate struct tcm_vhost_tpg");
1891                 return ERR_PTR(-ENOMEM);
1892         }
1893         mutex_init(&tpg->tv_tpg_mutex);
1894         INIT_LIST_HEAD(&tpg->tv_tpg_list);
1895         tpg->tport = tport;
1896         tpg->tport_tpgt = tpgt;
1897
1898         ret = core_tpg_register(&tcm_vhost_fabric_configfs->tf_ops, wwn,
1899                                 &tpg->se_tpg, tpg, TRANSPORT_TPG_TYPE_NORMAL);
1900         if (ret < 0) {
1901                 kfree(tpg);
1902                 return NULL;
1903         }
1904         mutex_lock(&tcm_vhost_mutex);
1905         list_add_tail(&tpg->tv_tpg_list, &tcm_vhost_list);
1906         mutex_unlock(&tcm_vhost_mutex);
1907
1908         return &tpg->se_tpg;
1909 }
1910
1911 static void tcm_vhost_drop_tpg(struct se_portal_group *se_tpg)
1912 {
1913         struct tcm_vhost_tpg *tpg = container_of(se_tpg,
1914                                 struct tcm_vhost_tpg, se_tpg);
1915
1916         mutex_lock(&tcm_vhost_mutex);
1917         list_del(&tpg->tv_tpg_list);
1918         mutex_unlock(&tcm_vhost_mutex);
1919         /*
1920          * Release the virtual I_T Nexus for this vhost TPG
1921          */
1922         tcm_vhost_drop_nexus(tpg);
1923         /*
1924          * Deregister the se_tpg from TCM..
1925          */
1926         core_tpg_deregister(se_tpg);
1927         kfree(tpg);
1928 }
1929
1930 static struct se_wwn *tcm_vhost_make_tport(struct target_fabric_configfs *tf,
1931         struct config_group *group,
1932         const char *name)
1933 {
1934         struct tcm_vhost_tport *tport;
1935         char *ptr;
1936         u64 wwpn = 0;
1937         int off = 0;
1938
1939         /* if (tcm_vhost_parse_wwn(name, &wwpn, 1) < 0)
1940                 return ERR_PTR(-EINVAL); */
1941
1942         tport = kzalloc(sizeof(struct tcm_vhost_tport), GFP_KERNEL);
1943         if (!tport) {
1944                 pr_err("Unable to allocate struct tcm_vhost_tport");
1945                 return ERR_PTR(-ENOMEM);
1946         }
1947         tport->tport_wwpn = wwpn;
1948         /*
1949          * Determine the emulated Protocol Identifier and Target Port Name
1950          * based on the incoming configfs directory name.
1951          */
1952         ptr = strstr(name, "naa.");
1953         if (ptr) {
1954                 tport->tport_proto_id = SCSI_PROTOCOL_SAS;
1955                 goto check_len;
1956         }
1957         ptr = strstr(name, "fc.");
1958         if (ptr) {
1959                 tport->tport_proto_id = SCSI_PROTOCOL_FCP;
1960                 off = 3; /* Skip over "fc." */
1961                 goto check_len;
1962         }
1963         ptr = strstr(name, "iqn.");
1964         if (ptr) {
1965                 tport->tport_proto_id = SCSI_PROTOCOL_ISCSI;
1966                 goto check_len;
1967         }
1968
1969         pr_err("Unable to locate prefix for emulated Target Port:"
1970                         " %s\n", name);
1971         kfree(tport);
1972         return ERR_PTR(-EINVAL);
1973
1974 check_len:
1975         if (strlen(name) >= TCM_VHOST_NAMELEN) {
1976                 pr_err("Emulated %s Address: %s, exceeds"
1977                         " max: %d\n", name, tcm_vhost_dump_proto_id(tport),
1978                         TCM_VHOST_NAMELEN);
1979                 kfree(tport);
1980                 return ERR_PTR(-EINVAL);
1981         }
1982         snprintf(&tport->tport_name[0], TCM_VHOST_NAMELEN, "%s", &name[off]);
1983
1984         pr_debug("TCM_VHost_ConfigFS: Allocated emulated Target"
1985                 " %s Address: %s\n", tcm_vhost_dump_proto_id(tport), name);
1986
1987         return &tport->tport_wwn;
1988 }
1989
1990 static void tcm_vhost_drop_tport(struct se_wwn *wwn)
1991 {
1992         struct tcm_vhost_tport *tport = container_of(wwn,
1993                                 struct tcm_vhost_tport, tport_wwn);
1994
1995         pr_debug("TCM_VHost_ConfigFS: Deallocating emulated Target"
1996                 " %s Address: %s\n", tcm_vhost_dump_proto_id(tport),
1997                 tport->tport_name);
1998
1999         kfree(tport);
2000 }
2001
2002 static ssize_t tcm_vhost_wwn_show_attr_version(
2003         struct target_fabric_configfs *tf,
2004         char *page)
2005 {
2006         return sprintf(page, "TCM_VHOST fabric module %s on %s/%s"
2007                 "on "UTS_RELEASE"\n", TCM_VHOST_VERSION, utsname()->sysname,
2008                 utsname()->machine);
2009 }
2010
2011 TF_WWN_ATTR_RO(tcm_vhost, version);
2012
2013 static struct configfs_attribute *tcm_vhost_wwn_attrs[] = {
2014         &tcm_vhost_wwn_version.attr,
2015         NULL,
2016 };
2017
2018 static struct target_core_fabric_ops tcm_vhost_ops = {
2019         .get_fabric_name                = tcm_vhost_get_fabric_name,
2020         .get_fabric_proto_ident         = tcm_vhost_get_fabric_proto_ident,
2021         .tpg_get_wwn                    = tcm_vhost_get_fabric_wwn,
2022         .tpg_get_tag                    = tcm_vhost_get_tag,
2023         .tpg_get_default_depth          = tcm_vhost_get_default_depth,
2024         .tpg_get_pr_transport_id        = tcm_vhost_get_pr_transport_id,
2025         .tpg_get_pr_transport_id_len    = tcm_vhost_get_pr_transport_id_len,
2026         .tpg_parse_pr_out_transport_id  = tcm_vhost_parse_pr_out_transport_id,
2027         .tpg_check_demo_mode            = tcm_vhost_check_true,
2028         .tpg_check_demo_mode_cache      = tcm_vhost_check_true,
2029         .tpg_check_demo_mode_write_protect = tcm_vhost_check_false,
2030         .tpg_check_prod_mode_write_protect = tcm_vhost_check_false,
2031         .tpg_alloc_fabric_acl           = tcm_vhost_alloc_fabric_acl,
2032         .tpg_release_fabric_acl         = tcm_vhost_release_fabric_acl,
2033         .tpg_get_inst_index             = tcm_vhost_tpg_get_inst_index,
2034         .release_cmd                    = tcm_vhost_release_cmd,
2035         .shutdown_session               = tcm_vhost_shutdown_session,
2036         .close_session                  = tcm_vhost_close_session,
2037         .sess_get_index                 = tcm_vhost_sess_get_index,
2038         .sess_get_initiator_sid         = NULL,
2039         .write_pending                  = tcm_vhost_write_pending,
2040         .write_pending_status           = tcm_vhost_write_pending_status,
2041         .set_default_node_attributes    = tcm_vhost_set_default_node_attrs,
2042         .get_task_tag                   = tcm_vhost_get_task_tag,
2043         .get_cmd_state                  = tcm_vhost_get_cmd_state,
2044         .queue_data_in                  = tcm_vhost_queue_data_in,
2045         .queue_status                   = tcm_vhost_queue_status,
2046         .queue_tm_rsp                   = tcm_vhost_queue_tm_rsp,
2047         /*
2048          * Setup callers for generic logic in target_core_fabric_configfs.c
2049          */
2050         .fabric_make_wwn                = tcm_vhost_make_tport,
2051         .fabric_drop_wwn                = tcm_vhost_drop_tport,
2052         .fabric_make_tpg                = tcm_vhost_make_tpg,
2053         .fabric_drop_tpg                = tcm_vhost_drop_tpg,
2054         .fabric_post_link               = tcm_vhost_port_link,
2055         .fabric_pre_unlink              = tcm_vhost_port_unlink,
2056         .fabric_make_np                 = NULL,
2057         .fabric_drop_np                 = NULL,
2058         .fabric_make_nodeacl            = tcm_vhost_make_nodeacl,
2059         .fabric_drop_nodeacl            = tcm_vhost_drop_nodeacl,
2060 };
2061
2062 static int tcm_vhost_register_configfs(void)
2063 {
2064         struct target_fabric_configfs *fabric;
2065         int ret;
2066
2067         pr_debug("TCM_VHOST fabric module %s on %s/%s"
2068                 " on "UTS_RELEASE"\n", TCM_VHOST_VERSION, utsname()->sysname,
2069                 utsname()->machine);
2070         /*
2071          * Register the top level struct config_item_type with TCM core
2072          */
2073         fabric = target_fabric_configfs_init(THIS_MODULE, "vhost");
2074         if (IS_ERR(fabric)) {
2075                 pr_err("target_fabric_configfs_init() failed\n");
2076                 return PTR_ERR(fabric);
2077         }
2078         /*
2079          * Setup fabric->tf_ops from our local tcm_vhost_ops
2080          */
2081         fabric->tf_ops = tcm_vhost_ops;
2082         /*
2083          * Setup default attribute lists for various fabric->tf_cit_tmpl
2084          */
2085         TF_CIT_TMPL(fabric)->tfc_wwn_cit.ct_attrs = tcm_vhost_wwn_attrs;
2086         TF_CIT_TMPL(fabric)->tfc_tpg_base_cit.ct_attrs = tcm_vhost_tpg_attrs;
2087         TF_CIT_TMPL(fabric)->tfc_tpg_attrib_cit.ct_attrs = NULL;
2088         TF_CIT_TMPL(fabric)->tfc_tpg_param_cit.ct_attrs = NULL;
2089         TF_CIT_TMPL(fabric)->tfc_tpg_np_base_cit.ct_attrs = NULL;
2090         TF_CIT_TMPL(fabric)->tfc_tpg_nacl_base_cit.ct_attrs = NULL;
2091         TF_CIT_TMPL(fabric)->tfc_tpg_nacl_attrib_cit.ct_attrs = NULL;
2092         TF_CIT_TMPL(fabric)->tfc_tpg_nacl_auth_cit.ct_attrs = NULL;
2093         TF_CIT_TMPL(fabric)->tfc_tpg_nacl_param_cit.ct_attrs = NULL;
2094         /*
2095          * Register the fabric for use within TCM
2096          */
2097         ret = target_fabric_configfs_register(fabric);
2098         if (ret < 0) {
2099                 pr_err("target_fabric_configfs_register() failed"
2100                                 " for TCM_VHOST\n");
2101                 return ret;
2102         }
2103         /*
2104          * Setup our local pointer to *fabric
2105          */
2106         tcm_vhost_fabric_configfs = fabric;
2107         pr_debug("TCM_VHOST[0] - Set fabric -> tcm_vhost_fabric_configfs\n");
2108         return 0;
2109 };
2110
2111 static void tcm_vhost_deregister_configfs(void)
2112 {
2113         if (!tcm_vhost_fabric_configfs)
2114                 return;
2115
2116         target_fabric_configfs_deregister(tcm_vhost_fabric_configfs);
2117         tcm_vhost_fabric_configfs = NULL;
2118         pr_debug("TCM_VHOST[0] - Cleared tcm_vhost_fabric_configfs\n");
2119 };
2120
2121 static int __init tcm_vhost_init(void)
2122 {
2123         int ret = -ENOMEM;
2124         /*
2125          * Use our own dedicated workqueue for submitting I/O into
2126          * target core to avoid contention within system_wq.
2127          */
2128         tcm_vhost_workqueue = alloc_workqueue("tcm_vhost", 0, 0);
2129         if (!tcm_vhost_workqueue)
2130                 goto out;
2131
2132         ret = vhost_scsi_register();
2133         if (ret < 0)
2134                 goto out_destroy_workqueue;
2135
2136         ret = tcm_vhost_register_configfs();
2137         if (ret < 0)
2138                 goto out_vhost_scsi_deregister;
2139
2140         return 0;
2141
2142 out_vhost_scsi_deregister:
2143         vhost_scsi_deregister();
2144 out_destroy_workqueue:
2145         destroy_workqueue(tcm_vhost_workqueue);
2146 out:
2147         return ret;
2148 };
2149
2150 static void tcm_vhost_exit(void)
2151 {
2152         tcm_vhost_deregister_configfs();
2153         vhost_scsi_deregister();
2154         destroy_workqueue(tcm_vhost_workqueue);
2155 };
2156
2157 MODULE_DESCRIPTION("VHOST_SCSI series fabric driver");
2158 MODULE_ALIAS("tcm_vhost");
2159 MODULE_LICENSE("GPL");
2160 module_init(tcm_vhost_init);
2161 module_exit(tcm_vhost_exit);