blob: 62de820ae2f4fc72244ad85b04fbd5ce99fbba75 [file] [log] [blame]
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001/*******************************************************************************
2 * Vhost kernel TCM fabric driver for virtio SCSI initiators
3 *
Nicholas Bellinger4c762512013-09-05 15:29:12 -07004 * (C) Copyright 2010-2013 Datera, Inc.
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07005 * (C) Copyright 2010-2012 IBM Corp.
6 *
7 * Licensed to the Linux Foundation under the General Public License (GPL) version 2.
8 *
Nicholas Bellinger4c762512013-09-05 15:29:12 -07009 * Authors: Nicholas A. Bellinger <nab@daterainc.com>
Nicholas Bellinger057cbf42012-07-18 14:31:32 -070010 * 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>
Nicholas Bellinger057cbf42012-07-18 14:31:32 -070037#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>
Nicholas Bellinger057cbf42012-07-18 14:31:32 -070048#include <linux/virtio_scsi.h>
Asias He9d6064a2013-01-06 14:36:13 +080049#include <linux/llist.h>
Asias He1b7f3902013-02-06 13:20:59 +080050#include <linux/bitmap.h>
Nicholas Bellinger4824d3b2013-06-07 17:47:46 -070051#include <linux/percpu_ida.h>
Nicholas Bellinger057cbf42012-07-18 14:31:32 -070052
Nicholas Bellinger057cbf42012-07-18 14:31:32 -070053#include "vhost.h"
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +030054
55#define TCM_VHOST_VERSION "v0.1"
56#define TCM_VHOST_NAMELEN 256
57#define TCM_VHOST_MAX_CDB_SIZE 32
Nicholas Bellinger4824d3b2013-06-07 17:47:46 -070058#define TCM_VHOST_DEFAULT_TAGS 256
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -070059#define TCM_VHOST_PREALLOC_SGLS 2048
Nicholas Bellinger5a01d082014-02-22 18:34:08 -080060#define TCM_VHOST_PREALLOC_UPAGES 2048
Nicholas Bellingerb1935f62014-02-22 18:08:24 -080061#define TCM_VHOST_PREALLOC_PROT_SGLS 512
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +030062
63struct vhost_scsi_inflight {
64 /* Wait for the flush operation to finish */
65 struct completion comp;
66 /* Refcount for the inflight reqs */
67 struct kref kref;
68};
69
70struct tcm_vhost_cmd {
71 /* Descriptor from vhost_get_vq_desc() for virt_queue segment */
72 int tvc_vq_desc;
73 /* virtio-scsi initiator task attribute */
74 int tvc_task_attr;
Nicholas Bellinger79c14142015-01-27 13:13:12 -080075 /* virtio-scsi response incoming iovecs */
76 int tvc_in_iovs;
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +030077 /* virtio-scsi initiator data direction */
78 enum dma_data_direction tvc_data_direction;
79 /* Expected data transfer length from virtio-scsi header */
80 u32 tvc_exp_data_len;
81 /* The Tag from include/linux/virtio_scsi.h:struct virtio_scsi_cmd_req */
82 u64 tvc_tag;
83 /* The number of scatterlists associated with this cmd */
84 u32 tvc_sgl_count;
Nicholas Bellingere31885d2014-02-22 18:34:43 -080085 u32 tvc_prot_sgl_count;
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +030086 /* Saved unpacked SCSI LUN for tcm_vhost_submission_work() */
87 u32 tvc_lun;
88 /* Pointer to the SGL formatted memory from virtio-scsi */
89 struct scatterlist *tvc_sgl;
Nicholas Bellingerb1935f62014-02-22 18:08:24 -080090 struct scatterlist *tvc_prot_sgl;
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -070091 struct page **tvc_upages;
Nicholas Bellinger79c14142015-01-27 13:13:12 -080092 /* Pointer to response header iovec */
93 struct iovec *tvc_resp_iov;
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +030094 /* Pointer to vhost_scsi for our device */
95 struct vhost_scsi *tvc_vhost;
96 /* Pointer to vhost_virtqueue for the cmd */
97 struct vhost_virtqueue *tvc_vq;
98 /* Pointer to vhost nexus memory */
99 struct tcm_vhost_nexus *tvc_nexus;
100 /* The TCM I/O descriptor that is accessed via container_of() */
101 struct se_cmd tvc_se_cmd;
102 /* work item used for cmwq dispatch to tcm_vhost_submission_work() */
103 struct work_struct work;
104 /* Copy of the incoming SCSI command descriptor block (CDB) */
105 unsigned char tvc_cdb[TCM_VHOST_MAX_CDB_SIZE];
106 /* Sense buffer that will be mapped into outgoing status */
107 unsigned char tvc_sense_buf[TRANSPORT_SENSE_BUFFER];
108 /* Completed commands list, serviced from vhost worker thread */
109 struct llist_node tvc_completion_list;
110 /* Used to track inflight cmd */
111 struct vhost_scsi_inflight *inflight;
112};
113
114struct tcm_vhost_nexus {
115 /* Pointer to TCM session for I_T Nexus */
116 struct se_session *tvn_se_sess;
117};
118
119struct tcm_vhost_nacl {
120 /* Binary World Wide unique Port Name for Vhost Initiator port */
121 u64 iport_wwpn;
122 /* ASCII formatted WWPN for Sas Initiator port */
123 char iport_name[TCM_VHOST_NAMELEN];
124 /* Returned by tcm_vhost_make_nodeacl() */
125 struct se_node_acl se_node_acl;
126};
127
Michael S. Tsirkin5012a3a2013-05-02 03:50:34 +0300128struct tcm_vhost_tpg {
129 /* Vhost port target portal group tag for TCM */
130 u16 tport_tpgt;
131 /* Used to track number of TPG Port/Lun Links wrt to explict I_T Nexus shutdown */
132 int tv_tpg_port_count;
133 /* Used for vhost_scsi device reference to tpg_nexus, protected by tv_tpg_mutex */
134 int tv_tpg_vhost_count;
135 /* list for tcm_vhost_list */
136 struct list_head tv_tpg_list;
137 /* Used to protect access for tpg_nexus */
138 struct mutex tv_tpg_mutex;
139 /* Pointer to the TCM VHost I_T Nexus for this TPG endpoint */
140 struct tcm_vhost_nexus *tpg_nexus;
141 /* Pointer back to tcm_vhost_tport */
142 struct tcm_vhost_tport *tport;
143 /* Returned by tcm_vhost_make_tpg() */
144 struct se_portal_group se_tpg;
145 /* Pointer back to vhost_scsi, protected by tv_tpg_mutex */
146 struct vhost_scsi *vhost_scsi;
147};
148
149struct tcm_vhost_tport {
150 /* SCSI protocol the tport is providing */
151 u8 tport_proto_id;
152 /* Binary World Wide unique Port Name for Vhost Target port */
153 u64 tport_wwpn;
154 /* ASCII formatted WWPN for Vhost Target port */
155 char tport_name[TCM_VHOST_NAMELEN];
156 /* Returned by tcm_vhost_make_tport() */
157 struct se_wwn tport_wwn;
158};
159
160struct tcm_vhost_evt {
161 /* event to be sent to guest */
162 struct virtio_scsi_event event;
163 /* event list, serviced from vhost worker thread */
164 struct llist_node list;
165};
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700166
Nicholas Bellinger101998f2012-07-30 13:30:00 -0700167enum {
168 VHOST_SCSI_VQ_CTL = 0,
169 VHOST_SCSI_VQ_EVT = 1,
170 VHOST_SCSI_VQ_IO = 2,
171};
172
Michael S. Tsirkine72fd722014-11-23 18:01:34 +0200173/* Note: can't set VIRTIO_F_VERSION_1 yet, since that implies ANY_LAYOUT. */
Nicholas Bellinger5dade712013-03-27 17:23:41 -0700174enum {
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800175 VHOST_SCSI_FEATURES = VHOST_FEATURES | (1ULL << VIRTIO_SCSI_F_HOTPLUG) |
176 (1ULL << VIRTIO_SCSI_F_T10_PI)
Nicholas Bellinger5dade712013-03-27 17:23:41 -0700177};
178
Asias He1b7f3902013-02-06 13:20:59 +0800179#define VHOST_SCSI_MAX_TARGET 256
180#define VHOST_SCSI_MAX_VQ 128
Asias Hea6c9af82013-04-25 15:35:21 +0800181#define VHOST_SCSI_MAX_EVENT 128
Asias He67e18cf2013-02-05 12:31:57 +0800182
Asias He3ab2e422013-04-27 11:16:48 +0800183struct vhost_scsi_virtqueue {
184 struct vhost_virtqueue vq;
Michael S. Tsirkin3dfbff32013-04-28 15:38:52 +0300185 /*
186 * Reference counting for inflight reqs, used for flush operation. At
187 * each time, one reference tracks new commands submitted, while we
188 * wait for another one to reach 0.
189 */
Asias Hef2f0173d2013-04-27 11:16:49 +0800190 struct vhost_scsi_inflight inflights[2];
Michael S. Tsirkin3dfbff32013-04-28 15:38:52 +0300191 /*
192 * Indicate current inflight in use, protected by vq->mutex.
193 * Writers must also take dev mutex and flush under it.
194 */
Asias Hef2f0173d2013-04-27 11:16:49 +0800195 int inflight_idx;
Asias He3ab2e422013-04-27 11:16:48 +0800196};
197
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700198struct vhost_scsi {
Asias He67e18cf2013-02-05 12:31:57 +0800199 /* Protected by vhost_scsi->dev.mutex */
Asias He4f7f46d2013-04-03 14:17:37 +0800200 struct tcm_vhost_tpg **vs_tpg;
Asias He67e18cf2013-02-05 12:31:57 +0800201 char vs_vhost_wwpn[TRANSPORT_IQN_LEN];
Asias He67e18cf2013-02-05 12:31:57 +0800202
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700203 struct vhost_dev dev;
Asias He3ab2e422013-04-27 11:16:48 +0800204 struct vhost_scsi_virtqueue vqs[VHOST_SCSI_MAX_VQ];
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700205
206 struct vhost_work vs_completion_work; /* cmd completion work item */
Asias He9d6064a2013-01-06 14:36:13 +0800207 struct llist_head vs_completion_list; /* cmd completion queue */
Asias Hea6c9af82013-04-25 15:35:21 +0800208
209 struct vhost_work vs_event_work; /* evt injection work item */
210 struct llist_head vs_event_list; /* evt injection queue */
211
212 bool vs_events_missed; /* any missed events, protected by vq->mutex */
213 int vs_events_nr; /* num of pending events, protected by vq->mutex */
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700214};
215
216/* Local pointer to allocated TCM configfs fabric module */
217static struct target_fabric_configfs *tcm_vhost_fabric_configfs;
218
219static struct workqueue_struct *tcm_vhost_workqueue;
220
221/* Global spinlock to protect tcm_vhost TPG list for vhost IOCTL access */
222static DEFINE_MUTEX(tcm_vhost_mutex);
223static LIST_HEAD(tcm_vhost_list);
224
Asias He765b34f2013-01-22 11:20:25 +0800225static int iov_num_pages(struct iovec *iov)
226{
227 return (PAGE_ALIGN((unsigned long)iov->iov_base + iov->iov_len) -
228 ((unsigned long)iov->iov_base & PAGE_MASK)) >> PAGE_SHIFT;
229}
230
Asias He0a1febf2013-06-05 21:17:38 +0800231static void tcm_vhost_done_inflight(struct kref *kref)
Asias Hef2f0173d2013-04-27 11:16:49 +0800232{
233 struct vhost_scsi_inflight *inflight;
234
235 inflight = container_of(kref, struct vhost_scsi_inflight, kref);
236 complete(&inflight->comp);
237}
238
239static void tcm_vhost_init_inflight(struct vhost_scsi *vs,
240 struct vhost_scsi_inflight *old_inflight[])
241{
242 struct vhost_scsi_inflight *new_inflight;
243 struct vhost_virtqueue *vq;
244 int idx, i;
245
246 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++) {
247 vq = &vs->vqs[i].vq;
248
249 mutex_lock(&vq->mutex);
250
251 /* store old infight */
252 idx = vs->vqs[i].inflight_idx;
253 if (old_inflight)
254 old_inflight[i] = &vs->vqs[i].inflights[idx];
255
256 /* setup new infight */
257 vs->vqs[i].inflight_idx = idx ^ 1;
258 new_inflight = &vs->vqs[i].inflights[idx ^ 1];
259 kref_init(&new_inflight->kref);
260 init_completion(&new_inflight->comp);
261
262 mutex_unlock(&vq->mutex);
263 }
264}
265
266static struct vhost_scsi_inflight *
267tcm_vhost_get_inflight(struct vhost_virtqueue *vq)
268{
269 struct vhost_scsi_inflight *inflight;
270 struct vhost_scsi_virtqueue *svq;
271
272 svq = container_of(vq, struct vhost_scsi_virtqueue, vq);
273 inflight = &svq->inflights[svq->inflight_idx];
274 kref_get(&inflight->kref);
275
276 return inflight;
277}
278
279static void tcm_vhost_put_inflight(struct vhost_scsi_inflight *inflight)
280{
281 kref_put(&inflight->kref, tcm_vhost_done_inflight);
282}
283
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700284static int tcm_vhost_check_true(struct se_portal_group *se_tpg)
285{
286 return 1;
287}
288
289static int tcm_vhost_check_false(struct se_portal_group *se_tpg)
290{
291 return 0;
292}
293
294static char *tcm_vhost_get_fabric_name(void)
295{
296 return "vhost";
297}
298
299static u8 tcm_vhost_get_fabric_proto_ident(struct se_portal_group *se_tpg)
300{
301 struct tcm_vhost_tpg *tpg = container_of(se_tpg,
302 struct tcm_vhost_tpg, se_tpg);
303 struct tcm_vhost_tport *tport = tpg->tport;
304
305 switch (tport->tport_proto_id) {
306 case SCSI_PROTOCOL_SAS:
307 return sas_get_fabric_proto_ident(se_tpg);
308 case SCSI_PROTOCOL_FCP:
309 return fc_get_fabric_proto_ident(se_tpg);
310 case SCSI_PROTOCOL_ISCSI:
311 return iscsi_get_fabric_proto_ident(se_tpg);
312 default:
313 pr_err("Unknown tport_proto_id: 0x%02x, using"
314 " SAS emulation\n", tport->tport_proto_id);
315 break;
316 }
317
318 return sas_get_fabric_proto_ident(se_tpg);
319}
320
321static char *tcm_vhost_get_fabric_wwn(struct se_portal_group *se_tpg)
322{
323 struct tcm_vhost_tpg *tpg = container_of(se_tpg,
324 struct tcm_vhost_tpg, se_tpg);
325 struct tcm_vhost_tport *tport = tpg->tport;
326
327 return &tport->tport_name[0];
328}
329
330static u16 tcm_vhost_get_tag(struct se_portal_group *se_tpg)
331{
332 struct tcm_vhost_tpg *tpg = container_of(se_tpg,
333 struct tcm_vhost_tpg, se_tpg);
334 return tpg->tport_tpgt;
335}
336
337static u32 tcm_vhost_get_default_depth(struct se_portal_group *se_tpg)
338{
339 return 1;
340}
341
Asias He683bd962013-05-06 16:38:27 +0800342static u32
343tcm_vhost_get_pr_transport_id(struct se_portal_group *se_tpg,
344 struct se_node_acl *se_nacl,
345 struct t10_pr_registration *pr_reg,
346 int *format_code,
347 unsigned char *buf)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700348{
349 struct tcm_vhost_tpg *tpg = container_of(se_tpg,
350 struct tcm_vhost_tpg, se_tpg);
351 struct tcm_vhost_tport *tport = tpg->tport;
352
353 switch (tport->tport_proto_id) {
354 case SCSI_PROTOCOL_SAS:
355 return sas_get_pr_transport_id(se_tpg, se_nacl, pr_reg,
356 format_code, buf);
357 case SCSI_PROTOCOL_FCP:
358 return fc_get_pr_transport_id(se_tpg, se_nacl, pr_reg,
359 format_code, buf);
360 case SCSI_PROTOCOL_ISCSI:
361 return iscsi_get_pr_transport_id(se_tpg, se_nacl, pr_reg,
362 format_code, buf);
363 default:
364 pr_err("Unknown tport_proto_id: 0x%02x, using"
365 " SAS emulation\n", tport->tport_proto_id);
366 break;
367 }
368
369 return sas_get_pr_transport_id(se_tpg, se_nacl, pr_reg,
370 format_code, buf);
371}
372
Asias He683bd962013-05-06 16:38:27 +0800373static u32
374tcm_vhost_get_pr_transport_id_len(struct se_portal_group *se_tpg,
375 struct se_node_acl *se_nacl,
376 struct t10_pr_registration *pr_reg,
377 int *format_code)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700378{
379 struct tcm_vhost_tpg *tpg = container_of(se_tpg,
380 struct tcm_vhost_tpg, se_tpg);
381 struct tcm_vhost_tport *tport = tpg->tport;
382
383 switch (tport->tport_proto_id) {
384 case SCSI_PROTOCOL_SAS:
385 return sas_get_pr_transport_id_len(se_tpg, se_nacl, pr_reg,
386 format_code);
387 case SCSI_PROTOCOL_FCP:
388 return fc_get_pr_transport_id_len(se_tpg, se_nacl, pr_reg,
389 format_code);
390 case SCSI_PROTOCOL_ISCSI:
391 return iscsi_get_pr_transport_id_len(se_tpg, se_nacl, pr_reg,
392 format_code);
393 default:
394 pr_err("Unknown tport_proto_id: 0x%02x, using"
395 " SAS emulation\n", tport->tport_proto_id);
396 break;
397 }
398
399 return sas_get_pr_transport_id_len(se_tpg, se_nacl, pr_reg,
400 format_code);
401}
402
Asias He683bd962013-05-06 16:38:27 +0800403static char *
404tcm_vhost_parse_pr_out_transport_id(struct se_portal_group *se_tpg,
405 const char *buf,
406 u32 *out_tid_len,
407 char **port_nexus_ptr)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700408{
409 struct tcm_vhost_tpg *tpg = container_of(se_tpg,
410 struct tcm_vhost_tpg, se_tpg);
411 struct tcm_vhost_tport *tport = tpg->tport;
412
413 switch (tport->tport_proto_id) {
414 case SCSI_PROTOCOL_SAS:
415 return sas_parse_pr_out_transport_id(se_tpg, buf, out_tid_len,
416 port_nexus_ptr);
417 case SCSI_PROTOCOL_FCP:
418 return fc_parse_pr_out_transport_id(se_tpg, buf, out_tid_len,
419 port_nexus_ptr);
420 case SCSI_PROTOCOL_ISCSI:
421 return iscsi_parse_pr_out_transport_id(se_tpg, buf, out_tid_len,
422 port_nexus_ptr);
423 default:
424 pr_err("Unknown tport_proto_id: 0x%02x, using"
425 " SAS emulation\n", tport->tport_proto_id);
426 break;
427 }
428
429 return sas_parse_pr_out_transport_id(se_tpg, buf, out_tid_len,
430 port_nexus_ptr);
431}
432
Asias He683bd962013-05-06 16:38:27 +0800433static struct se_node_acl *
434tcm_vhost_alloc_fabric_acl(struct se_portal_group *se_tpg)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700435{
436 struct tcm_vhost_nacl *nacl;
437
438 nacl = kzalloc(sizeof(struct tcm_vhost_nacl), GFP_KERNEL);
439 if (!nacl) {
Masanari Iida744627e92012-11-05 23:30:40 +0900440 pr_err("Unable to allocate struct tcm_vhost_nacl\n");
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700441 return NULL;
442 }
443
444 return &nacl->se_node_acl;
445}
446
Asias He683bd962013-05-06 16:38:27 +0800447static void
448tcm_vhost_release_fabric_acl(struct se_portal_group *se_tpg,
449 struct se_node_acl *se_nacl)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700450{
451 struct tcm_vhost_nacl *nacl = container_of(se_nacl,
452 struct tcm_vhost_nacl, se_node_acl);
453 kfree(nacl);
454}
455
456static u32 tcm_vhost_tpg_get_inst_index(struct se_portal_group *se_tpg)
457{
458 return 1;
459}
460
461static void tcm_vhost_release_cmd(struct se_cmd *se_cmd)
462{
Nicholas Bellinger084ed452013-06-06 02:20:41 -0700463 struct tcm_vhost_cmd *tv_cmd = container_of(se_cmd,
464 struct tcm_vhost_cmd, tvc_se_cmd);
Nicholas Bellingerde1419e2015-01-29 17:21:13 -0800465 struct se_session *se_sess = tv_cmd->tvc_nexus->tvn_se_sess;
Nicholas Bellingere31885d2014-02-22 18:34:43 -0800466 int i;
Nicholas Bellinger084ed452013-06-06 02:20:41 -0700467
468 if (tv_cmd->tvc_sgl_count) {
Nicholas Bellinger084ed452013-06-06 02:20:41 -0700469 for (i = 0; i < tv_cmd->tvc_sgl_count; i++)
470 put_page(sg_page(&tv_cmd->tvc_sgl[i]));
Michael S. Tsirkind3d665a2013-09-17 22:54:31 +0300471 }
Nicholas Bellingere31885d2014-02-22 18:34:43 -0800472 if (tv_cmd->tvc_prot_sgl_count) {
473 for (i = 0; i < tv_cmd->tvc_prot_sgl_count; i++)
474 put_page(sg_page(&tv_cmd->tvc_prot_sgl[i]));
475 }
Nicholas Bellinger084ed452013-06-06 02:20:41 -0700476
477 tcm_vhost_put_inflight(tv_cmd->inflight);
Nicholas Bellinger4824d3b2013-06-07 17:47:46 -0700478 percpu_ida_free(&se_sess->sess_tag_pool, se_cmd->map_tag);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700479}
480
481static int tcm_vhost_shutdown_session(struct se_session *se_sess)
482{
483 return 0;
484}
485
486static void tcm_vhost_close_session(struct se_session *se_sess)
487{
488 return;
489}
490
491static u32 tcm_vhost_sess_get_index(struct se_session *se_sess)
492{
493 return 0;
494}
495
496static int tcm_vhost_write_pending(struct se_cmd *se_cmd)
497{
498 /* Go ahead and process the write immediately */
499 target_execute_cmd(se_cmd);
500 return 0;
501}
502
503static int tcm_vhost_write_pending_status(struct se_cmd *se_cmd)
504{
505 return 0;
506}
507
508static void tcm_vhost_set_default_node_attrs(struct se_node_acl *nacl)
509{
510 return;
511}
512
513static u32 tcm_vhost_get_task_tag(struct se_cmd *se_cmd)
514{
515 return 0;
516}
517
518static int tcm_vhost_get_cmd_state(struct se_cmd *se_cmd)
519{
520 return 0;
521}
522
Asias He3c63f662013-05-06 16:38:29 +0800523static void vhost_scsi_complete_cmd(struct tcm_vhost_cmd *cmd)
Nicholas Bellinger101998f2012-07-30 13:30:00 -0700524{
Asias He3c63f662013-05-06 16:38:29 +0800525 struct vhost_scsi *vs = cmd->tvc_vhost;
Nicholas Bellinger101998f2012-07-30 13:30:00 -0700526
Asias He3c63f662013-05-06 16:38:29 +0800527 llist_add(&cmd->tvc_completion_list, &vs->vs_completion_list);
Nicholas Bellinger101998f2012-07-30 13:30:00 -0700528
529 vhost_work_queue(&vs->dev, &vs->vs_completion_work);
530}
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700531
532static int tcm_vhost_queue_data_in(struct se_cmd *se_cmd)
533{
Asias He3c63f662013-05-06 16:38:29 +0800534 struct tcm_vhost_cmd *cmd = container_of(se_cmd,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700535 struct tcm_vhost_cmd, tvc_se_cmd);
Asias He3c63f662013-05-06 16:38:29 +0800536 vhost_scsi_complete_cmd(cmd);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700537 return 0;
538}
539
540static int tcm_vhost_queue_status(struct se_cmd *se_cmd)
541{
Asias He3c63f662013-05-06 16:38:29 +0800542 struct tcm_vhost_cmd *cmd = container_of(se_cmd,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700543 struct tcm_vhost_cmd, tvc_se_cmd);
Asias He3c63f662013-05-06 16:38:29 +0800544 vhost_scsi_complete_cmd(cmd);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700545 return 0;
546}
547
Joern Engelb79fafa2013-07-03 11:22:17 -0400548static void tcm_vhost_queue_tm_rsp(struct se_cmd *se_cmd)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700549{
Joern Engelb79fafa2013-07-03 11:22:17 -0400550 return;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700551}
552
Nicholas Bellinger131e6ab2014-03-22 14:55:56 -0700553static void tcm_vhost_aborted_task(struct se_cmd *se_cmd)
554{
555 return;
556}
557
Asias Hea6c9af82013-04-25 15:35:21 +0800558static void tcm_vhost_free_evt(struct vhost_scsi *vs, struct tcm_vhost_evt *evt)
559{
560 vs->vs_events_nr--;
561 kfree(evt);
562}
563
Asias He683bd962013-05-06 16:38:27 +0800564static struct tcm_vhost_evt *
565tcm_vhost_allocate_evt(struct vhost_scsi *vs,
566 u32 event, u32 reason)
Asias Hea6c9af82013-04-25 15:35:21 +0800567{
Asias He3ab2e422013-04-27 11:16:48 +0800568 struct vhost_virtqueue *vq = &vs->vqs[VHOST_SCSI_VQ_EVT].vq;
Asias Hea6c9af82013-04-25 15:35:21 +0800569 struct tcm_vhost_evt *evt;
570
571 if (vs->vs_events_nr > VHOST_SCSI_MAX_EVENT) {
572 vs->vs_events_missed = true;
573 return NULL;
574 }
575
576 evt = kzalloc(sizeof(*evt), GFP_KERNEL);
577 if (!evt) {
578 vq_err(vq, "Failed to allocate tcm_vhost_evt\n");
579 vs->vs_events_missed = true;
580 return NULL;
581 }
582
Michael S. Tsirkine72fd722014-11-23 18:01:34 +0200583 evt->event.event = cpu_to_vhost32(vq, event);
584 evt->event.reason = cpu_to_vhost32(vq, reason);
Asias Hea6c9af82013-04-25 15:35:21 +0800585 vs->vs_events_nr++;
586
587 return evt;
588}
589
Asias He3c63f662013-05-06 16:38:29 +0800590static void vhost_scsi_free_cmd(struct tcm_vhost_cmd *cmd)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700591{
Asias He3c63f662013-05-06 16:38:29 +0800592 struct se_cmd *se_cmd = &cmd->tvc_se_cmd;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700593
594 /* TODO locking against target/backend threads? */
Nicholas Bellinger6c131d02013-06-06 01:44:48 -0700595 transport_generic_free_cmd(se_cmd, 0);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700596
Nicholas Bellinger084ed452013-06-06 02:20:41 -0700597}
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700598
Nicholas Bellinger084ed452013-06-06 02:20:41 -0700599static int vhost_scsi_check_stop_free(struct se_cmd *se_cmd)
600{
601 return target_put_sess_cmd(se_cmd->se_sess, se_cmd);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700602}
603
Asias He683bd962013-05-06 16:38:27 +0800604static void
605tcm_vhost_do_evt_work(struct vhost_scsi *vs, struct tcm_vhost_evt *evt)
Asias Hea6c9af82013-04-25 15:35:21 +0800606{
Asias He3ab2e422013-04-27 11:16:48 +0800607 struct vhost_virtqueue *vq = &vs->vqs[VHOST_SCSI_VQ_EVT].vq;
Asias Hea6c9af82013-04-25 15:35:21 +0800608 struct virtio_scsi_event *event = &evt->event;
609 struct virtio_scsi_event __user *eventp;
610 unsigned out, in;
611 int head, ret;
612
613 if (!vq->private_data) {
614 vs->vs_events_missed = true;
615 return;
616 }
617
618again:
619 vhost_disable_notify(&vs->dev, vq);
Michael S. Tsirkin47283be2014-06-05 15:20:27 +0300620 head = vhost_get_vq_desc(vq, vq->iov,
Asias Hea6c9af82013-04-25 15:35:21 +0800621 ARRAY_SIZE(vq->iov), &out, &in,
622 NULL, NULL);
623 if (head < 0) {
624 vs->vs_events_missed = true;
625 return;
626 }
627 if (head == vq->num) {
628 if (vhost_enable_notify(&vs->dev, vq))
629 goto again;
630 vs->vs_events_missed = true;
631 return;
632 }
633
634 if ((vq->iov[out].iov_len != sizeof(struct virtio_scsi_event))) {
635 vq_err(vq, "Expecting virtio_scsi_event, got %zu bytes\n",
636 vq->iov[out].iov_len);
637 vs->vs_events_missed = true;
638 return;
639 }
640
641 if (vs->vs_events_missed) {
Michael S. Tsirkine72fd722014-11-23 18:01:34 +0200642 event->event |= cpu_to_vhost32(vq, VIRTIO_SCSI_T_EVENTS_MISSED);
Asias Hea6c9af82013-04-25 15:35:21 +0800643 vs->vs_events_missed = false;
644 }
645
646 eventp = vq->iov[out].iov_base;
647 ret = __copy_to_user(eventp, event, sizeof(*event));
648 if (!ret)
649 vhost_add_used_and_signal(&vs->dev, vq, head, 0);
650 else
651 vq_err(vq, "Faulted on tcm_vhost_send_event\n");
652}
653
654static void tcm_vhost_evt_work(struct vhost_work *work)
655{
656 struct vhost_scsi *vs = container_of(work, struct vhost_scsi,
657 vs_event_work);
Asias He3ab2e422013-04-27 11:16:48 +0800658 struct vhost_virtqueue *vq = &vs->vqs[VHOST_SCSI_VQ_EVT].vq;
Asias Hea6c9af82013-04-25 15:35:21 +0800659 struct tcm_vhost_evt *evt;
660 struct llist_node *llnode;
661
662 mutex_lock(&vq->mutex);
663 llnode = llist_del_all(&vs->vs_event_list);
664 while (llnode) {
665 evt = llist_entry(llnode, struct tcm_vhost_evt, list);
666 llnode = llist_next(llnode);
667 tcm_vhost_do_evt_work(vs, evt);
668 tcm_vhost_free_evt(vs, evt);
669 }
670 mutex_unlock(&vq->mutex);
671}
672
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700673/* Fill in status and signal that we are done processing this command
674 *
675 * This is scheduled in the vhost work queue so we are called with the owner
676 * process mm and can access the vring.
677 */
678static void vhost_scsi_complete_cmd_work(struct vhost_work *work)
679{
680 struct vhost_scsi *vs = container_of(work, struct vhost_scsi,
681 vs_completion_work);
Asias He1b7f3902013-02-06 13:20:59 +0800682 DECLARE_BITMAP(signal, VHOST_SCSI_MAX_VQ);
Asias He9d6064a2013-01-06 14:36:13 +0800683 struct virtio_scsi_cmd_resp v_rsp;
Asias He3c63f662013-05-06 16:38:29 +0800684 struct tcm_vhost_cmd *cmd;
Asias He9d6064a2013-01-06 14:36:13 +0800685 struct llist_node *llnode;
686 struct se_cmd *se_cmd;
Nicholas Bellinger79c14142015-01-27 13:13:12 -0800687 struct iov_iter iov_iter;
Asias He1b7f3902013-02-06 13:20:59 +0800688 int ret, vq;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700689
Asias He1b7f3902013-02-06 13:20:59 +0800690 bitmap_zero(signal, VHOST_SCSI_MAX_VQ);
Asias He9d6064a2013-01-06 14:36:13 +0800691 llnode = llist_del_all(&vs->vs_completion_list);
692 while (llnode) {
Asias He3c63f662013-05-06 16:38:29 +0800693 cmd = llist_entry(llnode, struct tcm_vhost_cmd,
Asias He9d6064a2013-01-06 14:36:13 +0800694 tvc_completion_list);
695 llnode = llist_next(llnode);
Asias He3c63f662013-05-06 16:38:29 +0800696 se_cmd = &cmd->tvc_se_cmd;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700697
698 pr_debug("%s tv_cmd %p resid %u status %#02x\n", __func__,
Asias He3c63f662013-05-06 16:38:29 +0800699 cmd, se_cmd->residual_count, se_cmd->scsi_status);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700700
701 memset(&v_rsp, 0, sizeof(v_rsp));
Michael S. Tsirkine72fd722014-11-23 18:01:34 +0200702 v_rsp.resid = cpu_to_vhost32(cmd->tvc_vq, se_cmd->residual_count);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700703 /* TODO is status_qualifier field needed? */
704 v_rsp.status = se_cmd->scsi_status;
Michael S. Tsirkine72fd722014-11-23 18:01:34 +0200705 v_rsp.sense_len = cpu_to_vhost32(cmd->tvc_vq,
706 se_cmd->scsi_sense_length);
Asias He3c63f662013-05-06 16:38:29 +0800707 memcpy(v_rsp.sense, cmd->tvc_sense_buf,
Michael S. Tsirkine72fd722014-11-23 18:01:34 +0200708 se_cmd->scsi_sense_length);
Nicholas Bellinger79c14142015-01-27 13:13:12 -0800709
710 iov_iter_init(&iov_iter, READ, cmd->tvc_resp_iov,
711 cmd->tvc_in_iovs, sizeof(v_rsp));
712 ret = copy_to_iter(&v_rsp, sizeof(v_rsp), &iov_iter);
713 if (likely(ret == sizeof(v_rsp))) {
Asias He3ab2e422013-04-27 11:16:48 +0800714 struct vhost_scsi_virtqueue *q;
Asias He3c63f662013-05-06 16:38:29 +0800715 vhost_add_used(cmd->tvc_vq, cmd->tvc_vq_desc, 0);
716 q = container_of(cmd->tvc_vq, struct vhost_scsi_virtqueue, vq);
Asias He3ab2e422013-04-27 11:16:48 +0800717 vq = q - vs->vqs;
Asias He1b7f3902013-02-06 13:20:59 +0800718 __set_bit(vq, signal);
719 } else
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700720 pr_err("Faulted on virtio_scsi_cmd_resp\n");
721
Asias He3c63f662013-05-06 16:38:29 +0800722 vhost_scsi_free_cmd(cmd);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700723 }
724
Asias He1b7f3902013-02-06 13:20:59 +0800725 vq = -1;
726 while ((vq = find_next_bit(signal, VHOST_SCSI_MAX_VQ, vq + 1))
727 < VHOST_SCSI_MAX_VQ)
Asias He3ab2e422013-04-27 11:16:48 +0800728 vhost_signal(&vs->dev, &vs->vqs[vq].vq);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700729}
730
Asias He683bd962013-05-06 16:38:27 +0800731static struct tcm_vhost_cmd *
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800732vhost_scsi_get_tag(struct vhost_virtqueue *vq, struct tcm_vhost_tpg *tpg,
733 unsigned char *cdb, u64 scsi_tag, u16 lun, u8 task_attr,
734 u32 exp_data_len, int data_direction)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700735{
Asias He3c63f662013-05-06 16:38:29 +0800736 struct tcm_vhost_cmd *cmd;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700737 struct tcm_vhost_nexus *tv_nexus;
Nicholas Bellinger4824d3b2013-06-07 17:47:46 -0700738 struct se_session *se_sess;
Nicholas Bellingerb1935f62014-02-22 18:08:24 -0800739 struct scatterlist *sg, *prot_sg;
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -0700740 struct page **pages;
Nicholas Bellinger4824d3b2013-06-07 17:47:46 -0700741 int tag;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700742
Asias He98718312013-05-06 16:38:28 +0800743 tv_nexus = tpg->tpg_nexus;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700744 if (!tv_nexus) {
745 pr_err("Unable to locate active struct tcm_vhost_nexus\n");
746 return ERR_PTR(-EIO);
747 }
Nicholas Bellinger4824d3b2013-06-07 17:47:46 -0700748 se_sess = tv_nexus->tvn_se_sess;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700749
Kent Overstreet6f6b5d12014-01-19 08:26:37 +0000750 tag = percpu_ida_alloc(&se_sess->sess_tag_pool, TASK_RUNNING);
Nicholas Bellinger4a47d3a2013-09-23 11:42:28 -0700751 if (tag < 0) {
752 pr_err("Unable to obtain tag for tcm_vhost_cmd\n");
753 return ERR_PTR(-ENOMEM);
754 }
755
Nicholas Bellinger4824d3b2013-06-07 17:47:46 -0700756 cmd = &((struct tcm_vhost_cmd *)se_sess->sess_cmd_map)[tag];
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -0700757 sg = cmd->tvc_sgl;
Nicholas Bellingerb1935f62014-02-22 18:08:24 -0800758 prot_sg = cmd->tvc_prot_sgl;
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -0700759 pages = cmd->tvc_upages;
Nicholas Bellinger4824d3b2013-06-07 17:47:46 -0700760 memset(cmd, 0, sizeof(struct tcm_vhost_cmd));
761
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -0700762 cmd->tvc_sgl = sg;
Nicholas Bellingerb1935f62014-02-22 18:08:24 -0800763 cmd->tvc_prot_sgl = prot_sg;
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -0700764 cmd->tvc_upages = pages;
Nicholas Bellinger4824d3b2013-06-07 17:47:46 -0700765 cmd->tvc_se_cmd.map_tag = tag;
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800766 cmd->tvc_tag = scsi_tag;
767 cmd->tvc_lun = lun;
768 cmd->tvc_task_attr = task_attr;
Asias He3c63f662013-05-06 16:38:29 +0800769 cmd->tvc_exp_data_len = exp_data_len;
770 cmd->tvc_data_direction = data_direction;
771 cmd->tvc_nexus = tv_nexus;
772 cmd->inflight = tcm_vhost_get_inflight(vq);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700773
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800774 memcpy(cmd->tvc_cdb, cdb, TCM_VHOST_MAX_CDB_SIZE);
775
Asias He3c63f662013-05-06 16:38:29 +0800776 return cmd;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700777}
778
779/*
780 * Map a user memory range into a scatterlist
781 *
782 * Returns the number of scatterlist entries used or -errno on error.
783 */
Asias He683bd962013-05-06 16:38:27 +0800784static int
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -0700785vhost_scsi_map_to_sgl(struct tcm_vhost_cmd *tv_cmd,
786 struct scatterlist *sgl,
Asias He683bd962013-05-06 16:38:27 +0800787 unsigned int sgl_count,
788 struct iovec *iov,
Nicholas Bellinger5a01d082014-02-22 18:34:08 -0800789 struct page **pages,
790 bool write)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700791{
Asias He18100532013-01-22 11:20:27 +0800792 unsigned int npages = 0, pages_nr, offset, nbytes;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700793 struct scatterlist *sg = sgl;
Asias He18100532013-01-22 11:20:27 +0800794 void __user *ptr = iov->iov_base;
795 size_t len = iov->iov_len;
Asias He18100532013-01-22 11:20:27 +0800796 int ret, i;
797
798 pages_nr = iov_num_pages(iov);
Nicholas Bellinger5a01d082014-02-22 18:34:08 -0800799 if (pages_nr > sgl_count) {
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -0700800 pr_err("vhost_scsi_map_to_sgl() pages_nr: %u greater than"
Nicholas Bellinger5a01d082014-02-22 18:34:08 -0800801 " sgl_count: %u\n", pages_nr, sgl_count);
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -0700802 return -ENOBUFS;
803 }
Nicholas Bellinger5a01d082014-02-22 18:34:08 -0800804 if (pages_nr > TCM_VHOST_PREALLOC_UPAGES) {
805 pr_err("vhost_scsi_map_to_sgl() pages_nr: %u greater than"
806 " preallocated TCM_VHOST_PREALLOC_UPAGES: %u\n",
807 pages_nr, TCM_VHOST_PREALLOC_UPAGES);
808 return -ENOBUFS;
809 }
Asias He18100532013-01-22 11:20:27 +0800810
811 ret = get_user_pages_fast((unsigned long)ptr, pages_nr, write, pages);
812 /* No pages were pinned */
813 if (ret < 0)
814 goto out;
815 /* Less pages pinned than wanted */
816 if (ret != pages_nr) {
817 for (i = 0; i < ret; i++)
818 put_page(pages[i]);
819 ret = -EFAULT;
820 goto out;
821 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700822
823 while (len > 0) {
Asias He18100532013-01-22 11:20:27 +0800824 offset = (uintptr_t)ptr & ~PAGE_MASK;
825 nbytes = min_t(unsigned int, PAGE_SIZE - offset, len);
826 sg_set_page(sg, pages[npages], nbytes, offset);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700827 ptr += nbytes;
828 len -= nbytes;
829 sg++;
830 npages++;
831 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700832
Asias He18100532013-01-22 11:20:27 +0800833out:
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700834 return ret;
835}
836
Asias He683bd962013-05-06 16:38:27 +0800837static int
Asias He3c63f662013-05-06 16:38:29 +0800838vhost_scsi_map_iov_to_sgl(struct tcm_vhost_cmd *cmd,
Asias He683bd962013-05-06 16:38:27 +0800839 struct iovec *iov,
Nicholas Bellinger5a01d082014-02-22 18:34:08 -0800840 int niov,
841 bool write)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700842{
Nicholas Bellinger5a01d082014-02-22 18:34:08 -0800843 struct scatterlist *sg = cmd->tvc_sgl;
844 unsigned int sgl_count = 0;
845 int ret, i;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700846
Asias Hef3158f32013-01-22 11:20:26 +0800847 for (i = 0; i < niov; i++)
848 sgl_count += iov_num_pages(&iov[i]);
849
Nicholas Bellinger5a01d082014-02-22 18:34:08 -0800850 if (sgl_count > TCM_VHOST_PREALLOC_SGLS) {
851 pr_err("vhost_scsi_map_iov_to_sgl() sgl_count: %u greater than"
852 " preallocated TCM_VHOST_PREALLOC_SGLS: %u\n",
853 sgl_count, TCM_VHOST_PREALLOC_SGLS);
854 return -ENOBUFS;
855 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700856
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -0700857 pr_debug("%s sg %p sgl_count %u\n", __func__, sg, sgl_count);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700858 sg_init_table(sg, sgl_count);
Asias He3c63f662013-05-06 16:38:29 +0800859 cmd->tvc_sgl_count = sgl_count;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700860
Nicholas Bellinger5a01d082014-02-22 18:34:08 -0800861 pr_debug("Mapping iovec %p for %u pages\n", &iov[0], sgl_count);
862
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700863 for (i = 0; i < niov; i++) {
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -0700864 ret = vhost_scsi_map_to_sgl(cmd, sg, sgl_count, &iov[i],
Nicholas Bellinger5a01d082014-02-22 18:34:08 -0800865 cmd->tvc_upages, write);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700866 if (ret < 0) {
Nicholas Bellingerde1419e2015-01-29 17:21:13 -0800867 for (i = 0; i < cmd->tvc_sgl_count; i++) {
868 struct page *page = sg_page(&cmd->tvc_sgl[i]);
869 if (page)
870 put_page(page);
871 }
Asias He3c63f662013-05-06 16:38:29 +0800872 cmd->tvc_sgl_count = 0;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700873 return ret;
874 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700875 sg += ret;
876 sgl_count -= ret;
877 }
878 return 0;
879}
880
Nicholas Bellingere31885d2014-02-22 18:34:43 -0800881static int
882vhost_scsi_map_iov_to_prot(struct tcm_vhost_cmd *cmd,
883 struct iovec *iov,
884 int niov,
885 bool write)
886{
887 struct scatterlist *prot_sg = cmd->tvc_prot_sgl;
888 unsigned int prot_sgl_count = 0;
889 int ret, i;
890
891 for (i = 0; i < niov; i++)
892 prot_sgl_count += iov_num_pages(&iov[i]);
893
894 if (prot_sgl_count > TCM_VHOST_PREALLOC_PROT_SGLS) {
895 pr_err("vhost_scsi_map_iov_to_prot() sgl_count: %u greater than"
896 " preallocated TCM_VHOST_PREALLOC_PROT_SGLS: %u\n",
897 prot_sgl_count, TCM_VHOST_PREALLOC_PROT_SGLS);
898 return -ENOBUFS;
899 }
900
901 pr_debug("%s prot_sg %p prot_sgl_count %u\n", __func__,
902 prot_sg, prot_sgl_count);
903 sg_init_table(prot_sg, prot_sgl_count);
904 cmd->tvc_prot_sgl_count = prot_sgl_count;
905
906 for (i = 0; i < niov; i++) {
907 ret = vhost_scsi_map_to_sgl(cmd, prot_sg, prot_sgl_count, &iov[i],
908 cmd->tvc_upages, write);
909 if (ret < 0) {
Nicholas Bellingerde1419e2015-01-29 17:21:13 -0800910 for (i = 0; i < cmd->tvc_prot_sgl_count; i++) {
911 struct page *page = sg_page(&cmd->tvc_prot_sgl[i]);
912 if (page)
913 put_page(page);
914 }
Nicholas Bellingere31885d2014-02-22 18:34:43 -0800915 cmd->tvc_prot_sgl_count = 0;
916 return ret;
917 }
918 prot_sg += ret;
919 prot_sgl_count -= ret;
920 }
921 return 0;
922}
923
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700924static void tcm_vhost_submission_work(struct work_struct *work)
925{
Asias He3c63f662013-05-06 16:38:29 +0800926 struct tcm_vhost_cmd *cmd =
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700927 container_of(work, struct tcm_vhost_cmd, work);
Nicholas Bellinger9f0abc12012-10-01 18:40:55 -0700928 struct tcm_vhost_nexus *tv_nexus;
Asias He3c63f662013-05-06 16:38:29 +0800929 struct se_cmd *se_cmd = &cmd->tvc_se_cmd;
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800930 struct scatterlist *sg_ptr, *sg_prot_ptr = NULL;
931 int rc;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700932
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800933 /* FIXME: BIDI operation */
Asias He3c63f662013-05-06 16:38:29 +0800934 if (cmd->tvc_sgl_count) {
935 sg_ptr = cmd->tvc_sgl;
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800936
937 if (cmd->tvc_prot_sgl_count)
938 sg_prot_ptr = cmd->tvc_prot_sgl;
939 else
940 se_cmd->prot_pto = true;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700941 } else {
942 sg_ptr = NULL;
943 }
Asias He3c63f662013-05-06 16:38:29 +0800944 tv_nexus = cmd->tvc_nexus;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700945
Nicholas Bellinger9f0abc12012-10-01 18:40:55 -0700946 rc = target_submit_cmd_map_sgls(se_cmd, tv_nexus->tvn_se_sess,
Asias He3c63f662013-05-06 16:38:29 +0800947 cmd->tvc_cdb, &cmd->tvc_sense_buf[0],
948 cmd->tvc_lun, cmd->tvc_exp_data_len,
949 cmd->tvc_task_attr, cmd->tvc_data_direction,
Linus Torvalds6d2fa9e2013-07-11 12:57:19 -0700950 TARGET_SCF_ACK_KREF, sg_ptr, cmd->tvc_sgl_count,
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800951 NULL, 0, sg_prot_ptr, cmd->tvc_prot_sgl_count);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700952 if (rc < 0) {
953 transport_send_check_condition_and_sense(se_cmd,
Nicholas Bellinger9f0abc12012-10-01 18:40:55 -0700954 TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE, 0);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700955 transport_generic_free_cmd(se_cmd, 0);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700956 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700957}
958
Asias He683bd962013-05-06 16:38:27 +0800959static void
960vhost_scsi_send_bad_target(struct vhost_scsi *vs,
961 struct vhost_virtqueue *vq,
962 int head, unsigned out)
Asias He637ab212013-04-10 15:06:15 +0800963{
964 struct virtio_scsi_cmd_resp __user *resp;
965 struct virtio_scsi_cmd_resp rsp;
966 int ret;
967
968 memset(&rsp, 0, sizeof(rsp));
969 rsp.response = VIRTIO_SCSI_S_BAD_TARGET;
970 resp = vq->iov[out].iov_base;
971 ret = __copy_to_user(resp, &rsp, sizeof(rsp));
972 if (!ret)
973 vhost_add_used_and_signal(&vs->dev, vq, head, 0);
974 else
975 pr_err("Faulted on virtio_scsi_cmd_resp\n");
976}
977
Asias He683bd962013-05-06 16:38:27 +0800978static void
979vhost_scsi_handle_vq(struct vhost_scsi *vs, struct vhost_virtqueue *vq)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700980{
Asias He4f7f46d2013-04-03 14:17:37 +0800981 struct tcm_vhost_tpg **vs_tpg;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700982 struct virtio_scsi_cmd_req v_req;
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800983 struct virtio_scsi_cmd_req_pi v_req_pi;
Asias He98718312013-05-06 16:38:28 +0800984 struct tcm_vhost_tpg *tpg;
Asias He3c63f662013-05-06 16:38:29 +0800985 struct tcm_vhost_cmd *cmd;
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800986 u64 tag;
987 u32 exp_data_len, data_first, data_num, data_direction, prot_first;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700988 unsigned out, in, i;
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800989 int head, ret, data_niov, prot_niov, prot_bytes;
990 size_t req_size;
991 u16 lun;
992 u8 *target, *lunp, task_attr;
993 bool hdr_pi;
994 void *req, *cdb;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700995
Asias Hee7802212013-05-07 14:54:35 +0800996 mutex_lock(&vq->mutex);
Asias He4f7f46d2013-04-03 14:17:37 +0800997 /*
998 * We can handle the vq only after the endpoint is setup by calling the
999 * VHOST_SCSI_SET_ENDPOINT ioctl.
Asias He4f7f46d2013-04-03 14:17:37 +08001000 */
Asias Hee7802212013-05-07 14:54:35 +08001001 vs_tpg = vq->private_data;
Asias He4f7f46d2013-04-03 14:17:37 +08001002 if (!vs_tpg)
Asias Hee7802212013-05-07 14:54:35 +08001003 goto out;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001004
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001005 vhost_disable_notify(&vs->dev, vq);
1006
1007 for (;;) {
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03001008 head = vhost_get_vq_desc(vq, vq->iov,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001009 ARRAY_SIZE(vq->iov), &out, &in,
1010 NULL, NULL);
1011 pr_debug("vhost_get_vq_desc: head: %d, out: %u in: %u\n",
1012 head, out, in);
1013 /* On error, stop handling until the next kick. */
1014 if (unlikely(head < 0))
1015 break;
1016 /* Nothing new? Wait for eventfd to tell us they refilled. */
1017 if (head == vq->num) {
1018 if (unlikely(vhost_enable_notify(&vs->dev, vq))) {
1019 vhost_disable_notify(&vs->dev, vq);
1020 continue;
1021 }
1022 break;
1023 }
1024
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001025 /* FIXME: BIDI operation */
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001026 if (out == 1 && in == 1) {
1027 data_direction = DMA_NONE;
1028 data_first = 0;
1029 data_num = 0;
1030 } else if (out == 1 && in > 1) {
1031 data_direction = DMA_FROM_DEVICE;
1032 data_first = out + 1;
1033 data_num = in - 1;
1034 } else if (out > 1 && in == 1) {
1035 data_direction = DMA_TO_DEVICE;
1036 data_first = 1;
1037 data_num = out - 1;
1038 } else {
1039 vq_err(vq, "Invalid buffer layout out: %u in: %u\n",
1040 out, in);
1041 break;
1042 }
1043
1044 /*
1045 * Check for a sane resp buffer so we can report errors to
1046 * the guest.
1047 */
1048 if (unlikely(vq->iov[out].iov_len !=
1049 sizeof(struct virtio_scsi_cmd_resp))) {
1050 vq_err(vq, "Expecting virtio_scsi_cmd_resp, got %zu"
1051 " bytes\n", vq->iov[out].iov_len);
1052 break;
1053 }
1054
Linus Torvaldsed9ea4e2014-06-12 22:38:32 -07001055 if (vhost_has_feature(vq, VIRTIO_SCSI_F_T10_PI)) {
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001056 req = &v_req_pi;
1057 lunp = &v_req_pi.lun[0];
1058 target = &v_req_pi.lun[1];
1059 req_size = sizeof(v_req_pi);
1060 hdr_pi = true;
1061 } else {
1062 req = &v_req;
1063 lunp = &v_req.lun[0];
1064 target = &v_req.lun[1];
1065 req_size = sizeof(v_req);
1066 hdr_pi = false;
1067 }
1068
1069 if (unlikely(vq->iov[0].iov_len < req_size)) {
1070 pr_err("Expecting virtio-scsi header: %zu, got %zu\n",
1071 req_size, vq->iov[0].iov_len);
Nicholas Bellingerde1419e2015-01-29 17:21:13 -08001072 vhost_scsi_send_bad_target(vs, vq, head, out);
1073 continue;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001074 }
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001075 ret = memcpy_fromiovecend(req, &vq->iov[0], 0, req_size);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001076 if (unlikely(ret)) {
1077 vq_err(vq, "Faulted on virtio_scsi_cmd_req\n");
Nicholas Bellingerde1419e2015-01-29 17:21:13 -08001078 vhost_scsi_send_bad_target(vs, vq, head, out);
1079 continue;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001080 }
1081
Venkatesh Srinivas7fe412d2014-02-24 14:13:32 -08001082 /* virtio-scsi spec requires byte 0 of the lun to be 1 */
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001083 if (unlikely(*lunp != 1)) {
Venkatesh Srinivas7fe412d2014-02-24 14:13:32 -08001084 vhost_scsi_send_bad_target(vs, vq, head, out);
1085 continue;
1086 }
1087
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001088 tpg = ACCESS_ONCE(vs_tpg[*target]);
Asias He67e18cf2013-02-05 12:31:57 +08001089
1090 /* Target does not exist, fail the request */
Asias He98718312013-05-06 16:38:28 +08001091 if (unlikely(!tpg)) {
Asias He637ab212013-04-10 15:06:15 +08001092 vhost_scsi_send_bad_target(vs, vq, head, out);
Asias He67e18cf2013-02-05 12:31:57 +08001093 continue;
1094 }
1095
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001096 data_niov = data_num;
1097 prot_niov = prot_first = prot_bytes = 0;
1098 /*
1099 * Determine if any protection information iovecs are preceeding
1100 * the actual data payload, and adjust data_first + data_niov
1101 * values accordingly for vhost_scsi_map_iov_to_sgl() below.
1102 *
1103 * Also extract virtio_scsi header bits for vhost_scsi_get_tag()
1104 */
1105 if (hdr_pi) {
1106 if (v_req_pi.pi_bytesout) {
1107 if (data_direction != DMA_TO_DEVICE) {
1108 vq_err(vq, "Received non zero do_pi_niov"
1109 ", but wrong data_direction\n");
Nicholas Bellingerde1419e2015-01-29 17:21:13 -08001110 vhost_scsi_send_bad_target(vs, vq, head, out);
1111 continue;
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001112 }
Michael S. Tsirkine72fd722014-11-23 18:01:34 +02001113 prot_bytes = vhost32_to_cpu(vq, v_req_pi.pi_bytesout);
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001114 } else if (v_req_pi.pi_bytesin) {
1115 if (data_direction != DMA_FROM_DEVICE) {
1116 vq_err(vq, "Received non zero di_pi_niov"
1117 ", but wrong data_direction\n");
Nicholas Bellingerde1419e2015-01-29 17:21:13 -08001118 vhost_scsi_send_bad_target(vs, vq, head, out);
1119 continue;
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001120 }
Michael S. Tsirkine72fd722014-11-23 18:01:34 +02001121 prot_bytes = vhost32_to_cpu(vq, v_req_pi.pi_bytesin);
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001122 }
1123 if (prot_bytes) {
1124 int tmp = 0;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001125
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001126 for (i = 0; i < data_num; i++) {
1127 tmp += vq->iov[data_first + i].iov_len;
1128 prot_niov++;
1129 if (tmp >= prot_bytes)
1130 break;
1131 }
1132 prot_first = data_first;
1133 data_first += prot_niov;
1134 data_niov = data_num - prot_niov;
1135 }
Michael S. Tsirkine72fd722014-11-23 18:01:34 +02001136 tag = vhost64_to_cpu(vq, v_req_pi.tag);
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001137 task_attr = v_req_pi.task_attr;
1138 cdb = &v_req_pi.cdb[0];
1139 lun = ((v_req_pi.lun[2] << 8) | v_req_pi.lun[3]) & 0x3FFF;
1140 } else {
Michael S. Tsirkine72fd722014-11-23 18:01:34 +02001141 tag = vhost64_to_cpu(vq, v_req.tag);
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001142 task_attr = v_req.task_attr;
1143 cdb = &v_req.cdb[0];
1144 lun = ((v_req.lun[2] << 8) | v_req.lun[3]) & 0x3FFF;
1145 }
1146 exp_data_len = 0;
1147 for (i = 0; i < data_niov; i++)
1148 exp_data_len += vq->iov[data_first + i].iov_len;
1149 /*
1150 * Check that the recieved CDB size does not exceeded our
1151 * hardcoded max for vhost-scsi
1152 *
1153 * TODO what if cdb was too small for varlen cdb header?
1154 */
1155 if (unlikely(scsi_command_size(cdb) > TCM_VHOST_MAX_CDB_SIZE)) {
1156 vq_err(vq, "Received SCSI CDB with command_size: %d that"
1157 " exceeds SCSI_MAX_VARLEN_CDB_SIZE: %d\n",
1158 scsi_command_size(cdb), TCM_VHOST_MAX_CDB_SIZE);
Nicholas Bellingerde1419e2015-01-29 17:21:13 -08001159 vhost_scsi_send_bad_target(vs, vq, head, out);
1160 continue;
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001161 }
1162
1163 cmd = vhost_scsi_get_tag(vq, tpg, cdb, tag, lun, task_attr,
Nicholas Bellinger9f977ef2014-06-10 01:19:38 -07001164 exp_data_len + prot_bytes,
1165 data_direction);
Asias He3c63f662013-05-06 16:38:29 +08001166 if (IS_ERR(cmd)) {
Nicholas Bellinger4824d3b2013-06-07 17:47:46 -07001167 vq_err(vq, "vhost_scsi_get_tag failed %ld\n",
Asias He3c63f662013-05-06 16:38:29 +08001168 PTR_ERR(cmd));
Nicholas Bellingerde1419e2015-01-29 17:21:13 -08001169 vhost_scsi_send_bad_target(vs, vq, head, out);
1170 continue;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001171 }
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001172
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001173 pr_debug("Allocated tv_cmd: %p exp_data_len: %d, data_direction"
Asias He3c63f662013-05-06 16:38:29 +08001174 ": %d\n", cmd, exp_data_len, data_direction);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001175
Asias He3c63f662013-05-06 16:38:29 +08001176 cmd->tvc_vhost = vs;
1177 cmd->tvc_vq = vq;
Nicholas Bellinger79c14142015-01-27 13:13:12 -08001178 cmd->tvc_resp_iov = &vq->iov[out];
1179 cmd->tvc_in_iovs = in;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001180
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001181 pr_debug("vhost_scsi got command opcode: %#02x, lun: %d\n",
Asias He3c63f662013-05-06 16:38:29 +08001182 cmd->tvc_cdb[0], cmd->tvc_lun);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001183
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001184 if (prot_niov) {
1185 ret = vhost_scsi_map_iov_to_prot(cmd,
1186 &vq->iov[prot_first], prot_niov,
1187 data_direction == DMA_FROM_DEVICE);
1188 if (unlikely(ret)) {
1189 vq_err(vq, "Failed to map iov to"
1190 " prot_sgl\n");
Nicholas Bellingerde1419e2015-01-29 17:21:13 -08001191 tcm_vhost_release_cmd(&cmd->tvc_se_cmd);
1192 vhost_scsi_send_bad_target(vs, vq, head, out);
1193 continue;
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001194 }
1195 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001196 if (data_direction != DMA_NONE) {
Asias He3c63f662013-05-06 16:38:29 +08001197 ret = vhost_scsi_map_iov_to_sgl(cmd,
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001198 &vq->iov[data_first], data_niov,
Nicholas Bellinger60a01f52013-10-25 10:44:15 -07001199 data_direction == DMA_FROM_DEVICE);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001200 if (unlikely(ret)) {
1201 vq_err(vq, "Failed to map iov to sgl\n");
Nicholas Bellingerde1419e2015-01-29 17:21:13 -08001202 tcm_vhost_release_cmd(&cmd->tvc_se_cmd);
1203 vhost_scsi_send_bad_target(vs, vq, head, out);
1204 continue;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001205 }
1206 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001207 /*
1208 * Save the descriptor from vhost_get_vq_desc() to be used to
1209 * complete the virtio-scsi request in TCM callback context via
1210 * tcm_vhost_queue_data_in() and tcm_vhost_queue_status()
1211 */
Asias He3c63f662013-05-06 16:38:29 +08001212 cmd->tvc_vq_desc = head;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001213 /*
1214 * Dispatch tv_cmd descriptor for cmwq execution in process
1215 * context provided by tcm_vhost_workqueue. This also ensures
1216 * tv_cmd is executed on the same kworker CPU as this vhost
1217 * thread to gain positive L2 cache locality effects..
1218 */
Asias He3c63f662013-05-06 16:38:29 +08001219 INIT_WORK(&cmd->work, tcm_vhost_submission_work);
1220 queue_work(tcm_vhost_workqueue, &cmd->work);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001221 }
Asias Hee7802212013-05-07 14:54:35 +08001222out:
Asias He7ea206c2013-04-10 15:06:14 +08001223 mutex_unlock(&vq->mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001224}
1225
1226static void vhost_scsi_ctl_handle_kick(struct vhost_work *work)
1227{
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001228 pr_debug("%s: The handling func for control queue.\n", __func__);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001229}
1230
Asias He683bd962013-05-06 16:38:27 +08001231static void
1232tcm_vhost_send_evt(struct vhost_scsi *vs,
1233 struct tcm_vhost_tpg *tpg,
1234 struct se_lun *lun,
1235 u32 event,
1236 u32 reason)
Asias Hea6c9af82013-04-25 15:35:21 +08001237{
1238 struct tcm_vhost_evt *evt;
1239
1240 evt = tcm_vhost_allocate_evt(vs, event, reason);
1241 if (!evt)
1242 return;
1243
1244 if (tpg && lun) {
1245 /* TODO: share lun setup code with virtio-scsi.ko */
1246 /*
1247 * Note: evt->event is zeroed when we allocate it and
1248 * lun[4-7] need to be zero according to virtio-scsi spec.
1249 */
1250 evt->event.lun[0] = 0x01;
1251 evt->event.lun[1] = tpg->tport_tpgt & 0xFF;
1252 if (lun->unpacked_lun >= 256)
1253 evt->event.lun[2] = lun->unpacked_lun >> 8 | 0x40 ;
1254 evt->event.lun[3] = lun->unpacked_lun & 0xFF;
1255 }
1256
1257 llist_add(&evt->list, &vs->vs_event_list);
1258 vhost_work_queue(&vs->dev, &vs->vs_event_work);
1259}
1260
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001261static void vhost_scsi_evt_handle_kick(struct vhost_work *work)
1262{
Asias Hea6c9af82013-04-25 15:35:21 +08001263 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
1264 poll.work);
1265 struct vhost_scsi *vs = container_of(vq->dev, struct vhost_scsi, dev);
1266
1267 mutex_lock(&vq->mutex);
1268 if (!vq->private_data)
1269 goto out;
1270
1271 if (vs->vs_events_missed)
1272 tcm_vhost_send_evt(vs, NULL, NULL, VIRTIO_SCSI_T_NO_EVENT, 0);
1273out:
1274 mutex_unlock(&vq->mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001275}
1276
1277static void vhost_scsi_handle_kick(struct vhost_work *work)
1278{
1279 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
1280 poll.work);
1281 struct vhost_scsi *vs = container_of(vq->dev, struct vhost_scsi, dev);
1282
Asias He1b7f3902013-02-06 13:20:59 +08001283 vhost_scsi_handle_vq(vs, vq);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001284}
1285
Asias He4f7f46d2013-04-03 14:17:37 +08001286static void vhost_scsi_flush_vq(struct vhost_scsi *vs, int index)
1287{
Asias He3ab2e422013-04-27 11:16:48 +08001288 vhost_poll_flush(&vs->vqs[index].vq.poll);
Asias He4f7f46d2013-04-03 14:17:37 +08001289}
1290
Michael S. Tsirkin3dfbff32013-04-28 15:38:52 +03001291/* Callers must hold dev mutex */
Asias He4f7f46d2013-04-03 14:17:37 +08001292static void vhost_scsi_flush(struct vhost_scsi *vs)
1293{
Asias Hef2f0173d2013-04-27 11:16:49 +08001294 struct vhost_scsi_inflight *old_inflight[VHOST_SCSI_MAX_VQ];
Asias He4f7f46d2013-04-03 14:17:37 +08001295 int i;
1296
Asias Hef2f0173d2013-04-27 11:16:49 +08001297 /* Init new inflight and remember the old inflight */
1298 tcm_vhost_init_inflight(vs, old_inflight);
1299
1300 /*
1301 * The inflight->kref was initialized to 1. We decrement it here to
1302 * indicate the start of the flush operation so that it will reach 0
1303 * when all the reqs are finished.
1304 */
1305 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++)
1306 kref_put(&old_inflight[i]->kref, tcm_vhost_done_inflight);
1307
1308 /* Flush both the vhost poll and vhost work */
Asias He4f7f46d2013-04-03 14:17:37 +08001309 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++)
1310 vhost_scsi_flush_vq(vs, i);
1311 vhost_work_flush(&vs->dev, &vs->vs_completion_work);
Asias Hea6c9af82013-04-25 15:35:21 +08001312 vhost_work_flush(&vs->dev, &vs->vs_event_work);
Asias Hef2f0173d2013-04-27 11:16:49 +08001313
1314 /* Wait for all reqs issued before the flush to be finished */
1315 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++)
1316 wait_for_completion(&old_inflight[i]->comp);
Asias He4f7f46d2013-04-03 14:17:37 +08001317}
1318
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001319/*
1320 * Called from vhost_scsi_ioctl() context to walk the list of available
1321 * tcm_vhost_tpg with an active struct tcm_vhost_nexus
Asias Hef2b7daf2013-04-25 15:35:20 +08001322 *
1323 * The lock nesting rule is:
1324 * tcm_vhost_mutex -> vs->dev.mutex -> tpg->tv_tpg_mutex -> vq->mutex
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001325 */
Asias He683bd962013-05-06 16:38:27 +08001326static int
1327vhost_scsi_set_endpoint(struct vhost_scsi *vs,
1328 struct vhost_scsi_target *t)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001329{
Nicholas Bellingerab8edab2014-10-08 06:19:20 +00001330 struct se_portal_group *se_tpg;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001331 struct tcm_vhost_tport *tv_tport;
Asias He98718312013-05-06 16:38:28 +08001332 struct tcm_vhost_tpg *tpg;
Asias He4f7f46d2013-04-03 14:17:37 +08001333 struct tcm_vhost_tpg **vs_tpg;
1334 struct vhost_virtqueue *vq;
1335 int index, ret, i, len;
Asias He67e18cf2013-02-05 12:31:57 +08001336 bool match = false;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001337
Asias Hef2b7daf2013-04-25 15:35:20 +08001338 mutex_lock(&tcm_vhost_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001339 mutex_lock(&vs->dev.mutex);
Asias Hef2b7daf2013-04-25 15:35:20 +08001340
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001341 /* Verify that ring has been setup correctly. */
1342 for (index = 0; index < vs->dev.nvqs; ++index) {
1343 /* Verify that ring has been setup correctly. */
Asias He3ab2e422013-04-27 11:16:48 +08001344 if (!vhost_vq_access_ok(&vs->vqs[index].vq)) {
Asias Hef2b7daf2013-04-25 15:35:20 +08001345 ret = -EFAULT;
1346 goto out;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001347 }
1348 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001349
Asias He4f7f46d2013-04-03 14:17:37 +08001350 len = sizeof(vs_tpg[0]) * VHOST_SCSI_MAX_TARGET;
1351 vs_tpg = kzalloc(len, GFP_KERNEL);
1352 if (!vs_tpg) {
Asias Hef2b7daf2013-04-25 15:35:20 +08001353 ret = -ENOMEM;
1354 goto out;
Asias He4f7f46d2013-04-03 14:17:37 +08001355 }
1356 if (vs->vs_tpg)
1357 memcpy(vs_tpg, vs->vs_tpg, len);
1358
Asias He98718312013-05-06 16:38:28 +08001359 list_for_each_entry(tpg, &tcm_vhost_list, tv_tpg_list) {
1360 mutex_lock(&tpg->tv_tpg_mutex);
1361 if (!tpg->tpg_nexus) {
1362 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001363 continue;
1364 }
Asias He98718312013-05-06 16:38:28 +08001365 if (tpg->tv_tpg_vhost_count != 0) {
1366 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001367 continue;
1368 }
Asias He98718312013-05-06 16:38:28 +08001369 tv_tport = tpg->tport;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001370
Asias He67e18cf2013-02-05 12:31:57 +08001371 if (!strcmp(tv_tport->tport_name, t->vhost_wwpn)) {
Asias He98718312013-05-06 16:38:28 +08001372 if (vs->vs_tpg && vs->vs_tpg[tpg->tport_tpgt]) {
Asias He4f7f46d2013-04-03 14:17:37 +08001373 kfree(vs_tpg);
Asias He98718312013-05-06 16:38:28 +08001374 mutex_unlock(&tpg->tv_tpg_mutex);
Asias Hef2b7daf2013-04-25 15:35:20 +08001375 ret = -EEXIST;
1376 goto out;
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001377 }
Nicholas Bellingerab8edab2014-10-08 06:19:20 +00001378 /*
1379 * In order to ensure individual vhost-scsi configfs
1380 * groups cannot be removed while in use by vhost ioctl,
1381 * go ahead and take an explicit se_tpg->tpg_group.cg_item
1382 * dependency now.
1383 */
1384 se_tpg = &tpg->se_tpg;
1385 ret = configfs_depend_item(se_tpg->se_tpg_tfo->tf_subsys,
1386 &se_tpg->tpg_group.cg_item);
1387 if (ret) {
1388 pr_warn("configfs_depend_item() failed: %d\n", ret);
1389 kfree(vs_tpg);
1390 mutex_unlock(&tpg->tv_tpg_mutex);
1391 goto out;
1392 }
Asias He98718312013-05-06 16:38:28 +08001393 tpg->tv_tpg_vhost_count++;
1394 tpg->vhost_scsi = vs;
1395 vs_tpg[tpg->tport_tpgt] = tpg;
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001396 smp_mb__after_atomic();
Asias He67e18cf2013-02-05 12:31:57 +08001397 match = true;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001398 }
Asias He98718312013-05-06 16:38:28 +08001399 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001400 }
Asias He67e18cf2013-02-05 12:31:57 +08001401
1402 if (match) {
1403 memcpy(vs->vs_vhost_wwpn, t->vhost_wwpn,
1404 sizeof(vs->vs_vhost_wwpn));
Asias He4f7f46d2013-04-03 14:17:37 +08001405 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++) {
Asias He3ab2e422013-04-27 11:16:48 +08001406 vq = &vs->vqs[i].vq;
Asias He4f7f46d2013-04-03 14:17:37 +08001407 mutex_lock(&vq->mutex);
Asias He22fa90c2013-05-07 14:54:36 +08001408 vq->private_data = vs_tpg;
Asias Hedfd5d562013-04-03 14:17:38 +08001409 vhost_init_used(vq);
Asias He4f7f46d2013-04-03 14:17:37 +08001410 mutex_unlock(&vq->mutex);
1411 }
Asias He67e18cf2013-02-05 12:31:57 +08001412 ret = 0;
1413 } else {
1414 ret = -EEXIST;
1415 }
1416
Asias He4f7f46d2013-04-03 14:17:37 +08001417 /*
1418 * Act as synchronize_rcu to make sure access to
1419 * old vs->vs_tpg is finished.
1420 */
1421 vhost_scsi_flush(vs);
1422 kfree(vs->vs_tpg);
1423 vs->vs_tpg = vs_tpg;
1424
Asias Hef2b7daf2013-04-25 15:35:20 +08001425out:
Asias He67e18cf2013-02-05 12:31:57 +08001426 mutex_unlock(&vs->dev.mutex);
Asias Hef2b7daf2013-04-25 15:35:20 +08001427 mutex_unlock(&tcm_vhost_mutex);
Asias He67e18cf2013-02-05 12:31:57 +08001428 return ret;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001429}
1430
Asias He683bd962013-05-06 16:38:27 +08001431static int
1432vhost_scsi_clear_endpoint(struct vhost_scsi *vs,
1433 struct vhost_scsi_target *t)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001434{
Nicholas Bellingerab8edab2014-10-08 06:19:20 +00001435 struct se_portal_group *se_tpg;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001436 struct tcm_vhost_tport *tv_tport;
Asias He98718312013-05-06 16:38:28 +08001437 struct tcm_vhost_tpg *tpg;
Asias He4f7f46d2013-04-03 14:17:37 +08001438 struct vhost_virtqueue *vq;
1439 bool match = false;
Asias He67e18cf2013-02-05 12:31:57 +08001440 int index, ret, i;
1441 u8 target;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001442
Asias Hef2b7daf2013-04-25 15:35:20 +08001443 mutex_lock(&tcm_vhost_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001444 mutex_lock(&vs->dev.mutex);
1445 /* Verify that ring has been setup correctly. */
1446 for (index = 0; index < vs->dev.nvqs; ++index) {
Asias He3ab2e422013-04-27 11:16:48 +08001447 if (!vhost_vq_access_ok(&vs->vqs[index].vq)) {
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001448 ret = -EFAULT;
Asias He038e0af2013-03-15 09:14:05 +08001449 goto err_dev;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001450 }
1451 }
Asias He4f7f46d2013-04-03 14:17:37 +08001452
1453 if (!vs->vs_tpg) {
Asias Hef2b7daf2013-04-25 15:35:20 +08001454 ret = 0;
1455 goto err_dev;
Asias He4f7f46d2013-04-03 14:17:37 +08001456 }
1457
Asias He67e18cf2013-02-05 12:31:57 +08001458 for (i = 0; i < VHOST_SCSI_MAX_TARGET; i++) {
1459 target = i;
Asias He98718312013-05-06 16:38:28 +08001460 tpg = vs->vs_tpg[target];
1461 if (!tpg)
Asias He67e18cf2013-02-05 12:31:57 +08001462 continue;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001463
Asias He98718312013-05-06 16:38:28 +08001464 mutex_lock(&tpg->tv_tpg_mutex);
1465 tv_tport = tpg->tport;
Asias He67e18cf2013-02-05 12:31:57 +08001466 if (!tv_tport) {
1467 ret = -ENODEV;
Asias He038e0af2013-03-15 09:14:05 +08001468 goto err_tpg;
Asias He67e18cf2013-02-05 12:31:57 +08001469 }
1470
1471 if (strcmp(tv_tport->tport_name, t->vhost_wwpn)) {
Asias He98718312013-05-06 16:38:28 +08001472 pr_warn("tv_tport->tport_name: %s, tpg->tport_tpgt: %hu"
Asias He67e18cf2013-02-05 12:31:57 +08001473 " does not match t->vhost_wwpn: %s, t->vhost_tpgt: %hu\n",
Asias He98718312013-05-06 16:38:28 +08001474 tv_tport->tport_name, tpg->tport_tpgt,
Asias He67e18cf2013-02-05 12:31:57 +08001475 t->vhost_wwpn, t->vhost_tpgt);
1476 ret = -EINVAL;
Asias He038e0af2013-03-15 09:14:05 +08001477 goto err_tpg;
Asias He67e18cf2013-02-05 12:31:57 +08001478 }
Asias He98718312013-05-06 16:38:28 +08001479 tpg->tv_tpg_vhost_count--;
1480 tpg->vhost_scsi = NULL;
Asias He67e18cf2013-02-05 12:31:57 +08001481 vs->vs_tpg[target] = NULL;
Asias He4f7f46d2013-04-03 14:17:37 +08001482 match = true;
Asias He98718312013-05-06 16:38:28 +08001483 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellingerab8edab2014-10-08 06:19:20 +00001484 /*
1485 * Release se_tpg->tpg_group.cg_item configfs dependency now
1486 * to allow vhost-scsi WWPN se_tpg->tpg_group shutdown to occur.
1487 */
1488 se_tpg = &tpg->se_tpg;
1489 configfs_undepend_item(se_tpg->se_tpg_tfo->tf_subsys,
1490 &se_tpg->tpg_group.cg_item);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001491 }
Asias He4f7f46d2013-04-03 14:17:37 +08001492 if (match) {
1493 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++) {
Asias He3ab2e422013-04-27 11:16:48 +08001494 vq = &vs->vqs[i].vq;
Asias He4f7f46d2013-04-03 14:17:37 +08001495 mutex_lock(&vq->mutex);
Asias He22fa90c2013-05-07 14:54:36 +08001496 vq->private_data = NULL;
Asias He4f7f46d2013-04-03 14:17:37 +08001497 mutex_unlock(&vq->mutex);
1498 }
1499 }
1500 /*
1501 * Act as synchronize_rcu to make sure access to
1502 * old vs->vs_tpg is finished.
1503 */
1504 vhost_scsi_flush(vs);
1505 kfree(vs->vs_tpg);
1506 vs->vs_tpg = NULL;
Asias Hea6c9af82013-04-25 15:35:21 +08001507 WARN_ON(vs->vs_events_nr);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001508 mutex_unlock(&vs->dev.mutex);
Asias Hef2b7daf2013-04-25 15:35:20 +08001509 mutex_unlock(&tcm_vhost_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001510 return 0;
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001511
Asias He038e0af2013-03-15 09:14:05 +08001512err_tpg:
Asias He98718312013-05-06 16:38:28 +08001513 mutex_unlock(&tpg->tv_tpg_mutex);
Asias He038e0af2013-03-15 09:14:05 +08001514err_dev:
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001515 mutex_unlock(&vs->dev.mutex);
Asias Hef2b7daf2013-04-25 15:35:20 +08001516 mutex_unlock(&tcm_vhost_mutex);
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001517 return ret;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001518}
1519
Asias He4f7f46d2013-04-03 14:17:37 +08001520static int vhost_scsi_set_features(struct vhost_scsi *vs, u64 features)
1521{
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001522 struct vhost_virtqueue *vq;
1523 int i;
1524
Asias He4f7f46d2013-04-03 14:17:37 +08001525 if (features & ~VHOST_SCSI_FEATURES)
1526 return -EOPNOTSUPP;
1527
1528 mutex_lock(&vs->dev.mutex);
1529 if ((features & (1 << VHOST_F_LOG_ALL)) &&
1530 !vhost_log_access_ok(&vs->dev)) {
1531 mutex_unlock(&vs->dev.mutex);
1532 return -EFAULT;
1533 }
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001534
1535 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++) {
1536 vq = &vs->vqs[i].vq;
1537 mutex_lock(&vq->mutex);
1538 vq->acked_features = features;
1539 mutex_unlock(&vq->mutex);
1540 }
Asias He4f7f46d2013-04-03 14:17:37 +08001541 mutex_unlock(&vs->dev.mutex);
1542 return 0;
1543}
1544
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001545static int vhost_scsi_open(struct inode *inode, struct file *f)
1546{
Asias Hec7289312013-05-06 16:38:26 +08001547 struct vhost_scsi *vs;
Asias He3ab2e422013-04-27 11:16:48 +08001548 struct vhost_virtqueue **vqs;
Michael S. Tsirkin595cb752013-09-17 09:30:34 +03001549 int r = -ENOMEM, i;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001550
Michael S. Tsirkin595cb752013-09-17 09:30:34 +03001551 vs = kzalloc(sizeof(*vs), GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT);
1552 if (!vs) {
1553 vs = vzalloc(sizeof(*vs));
1554 if (!vs)
1555 goto err_vs;
1556 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001557
Asias He3ab2e422013-04-27 11:16:48 +08001558 vqs = kmalloc(VHOST_SCSI_MAX_VQ * sizeof(*vqs), GFP_KERNEL);
Michael S. Tsirkin595cb752013-09-17 09:30:34 +03001559 if (!vqs)
1560 goto err_vqs;
Asias He3ab2e422013-04-27 11:16:48 +08001561
Asias Hec7289312013-05-06 16:38:26 +08001562 vhost_work_init(&vs->vs_completion_work, vhost_scsi_complete_cmd_work);
1563 vhost_work_init(&vs->vs_event_work, tcm_vhost_evt_work);
Asias Hea6c9af82013-04-25 15:35:21 +08001564
Asias Hec7289312013-05-06 16:38:26 +08001565 vs->vs_events_nr = 0;
1566 vs->vs_events_missed = false;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001567
Asias Hec7289312013-05-06 16:38:26 +08001568 vqs[VHOST_SCSI_VQ_CTL] = &vs->vqs[VHOST_SCSI_VQ_CTL].vq;
1569 vqs[VHOST_SCSI_VQ_EVT] = &vs->vqs[VHOST_SCSI_VQ_EVT].vq;
1570 vs->vqs[VHOST_SCSI_VQ_CTL].vq.handle_kick = vhost_scsi_ctl_handle_kick;
1571 vs->vqs[VHOST_SCSI_VQ_EVT].vq.handle_kick = vhost_scsi_evt_handle_kick;
Asias He3ab2e422013-04-27 11:16:48 +08001572 for (i = VHOST_SCSI_VQ_IO; i < VHOST_SCSI_MAX_VQ; i++) {
Asias Hec7289312013-05-06 16:38:26 +08001573 vqs[i] = &vs->vqs[i].vq;
1574 vs->vqs[i].vq.handle_kick = vhost_scsi_handle_kick;
Asias He3ab2e422013-04-27 11:16:48 +08001575 }
Zhi Yong Wu59566b6e2013-12-07 04:13:03 +08001576 vhost_dev_init(&vs->dev, vqs, VHOST_SCSI_MAX_VQ);
Asias Hef2f0173d2013-04-27 11:16:49 +08001577
Asias Hec7289312013-05-06 16:38:26 +08001578 tcm_vhost_init_inflight(vs, NULL);
Asias Hef2f0173d2013-04-27 11:16:49 +08001579
Asias Hec7289312013-05-06 16:38:26 +08001580 f->private_data = vs;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001581 return 0;
Michael S. Tsirkin595cb752013-09-17 09:30:34 +03001582
Michael S. Tsirkin595cb752013-09-17 09:30:34 +03001583err_vqs:
Michael S. Tsirkin684044412014-06-12 19:00:01 +03001584 kvfree(vs);
Michael S. Tsirkin595cb752013-09-17 09:30:34 +03001585err_vs:
1586 return r;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001587}
1588
1589static int vhost_scsi_release(struct inode *inode, struct file *f)
1590{
Asias Hec7289312013-05-06 16:38:26 +08001591 struct vhost_scsi *vs = f->private_data;
Asias He67e18cf2013-02-05 12:31:57 +08001592 struct vhost_scsi_target t;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001593
Asias Hec7289312013-05-06 16:38:26 +08001594 mutex_lock(&vs->dev.mutex);
1595 memcpy(t.vhost_wwpn, vs->vs_vhost_wwpn, sizeof(t.vhost_wwpn));
1596 mutex_unlock(&vs->dev.mutex);
1597 vhost_scsi_clear_endpoint(vs, &t);
1598 vhost_dev_stop(&vs->dev);
1599 vhost_dev_cleanup(&vs->dev, false);
Asias Hea6c9af82013-04-25 15:35:21 +08001600 /* Jobs can re-queue themselves in evt kick handler. Do extra flush. */
Asias Hec7289312013-05-06 16:38:26 +08001601 vhost_scsi_flush(vs);
1602 kfree(vs->dev.vqs);
Michael S. Tsirkin684044412014-06-12 19:00:01 +03001603 kvfree(vs);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001604 return 0;
1605}
1606
Asias He683bd962013-05-06 16:38:27 +08001607static long
1608vhost_scsi_ioctl(struct file *f,
1609 unsigned int ioctl,
1610 unsigned long arg)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001611{
1612 struct vhost_scsi *vs = f->private_data;
1613 struct vhost_scsi_target backend;
1614 void __user *argp = (void __user *)arg;
1615 u64 __user *featurep = argp;
Asias He11c634182013-04-25 15:35:22 +08001616 u32 __user *eventsp = argp;
1617 u32 events_missed;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001618 u64 features;
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001619 int r, abi_version = VHOST_SCSI_ABI_VERSION;
Asias He3ab2e422013-04-27 11:16:48 +08001620 struct vhost_virtqueue *vq = &vs->vqs[VHOST_SCSI_VQ_EVT].vq;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001621
1622 switch (ioctl) {
1623 case VHOST_SCSI_SET_ENDPOINT:
1624 if (copy_from_user(&backend, argp, sizeof backend))
1625 return -EFAULT;
Michael S. Tsirkin6de71452012-08-18 15:44:09 -07001626 if (backend.reserved != 0)
1627 return -EOPNOTSUPP;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001628
1629 return vhost_scsi_set_endpoint(vs, &backend);
1630 case VHOST_SCSI_CLEAR_ENDPOINT:
1631 if (copy_from_user(&backend, argp, sizeof backend))
1632 return -EFAULT;
Michael S. Tsirkin6de71452012-08-18 15:44:09 -07001633 if (backend.reserved != 0)
1634 return -EOPNOTSUPP;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001635
1636 return vhost_scsi_clear_endpoint(vs, &backend);
1637 case VHOST_SCSI_GET_ABI_VERSION:
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001638 if (copy_to_user(argp, &abi_version, sizeof abi_version))
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001639 return -EFAULT;
1640 return 0;
Asias He11c634182013-04-25 15:35:22 +08001641 case VHOST_SCSI_SET_EVENTS_MISSED:
1642 if (get_user(events_missed, eventsp))
1643 return -EFAULT;
1644 mutex_lock(&vq->mutex);
1645 vs->vs_events_missed = events_missed;
1646 mutex_unlock(&vq->mutex);
1647 return 0;
1648 case VHOST_SCSI_GET_EVENTS_MISSED:
1649 mutex_lock(&vq->mutex);
1650 events_missed = vs->vs_events_missed;
1651 mutex_unlock(&vq->mutex);
1652 if (put_user(events_missed, eventsp))
1653 return -EFAULT;
1654 return 0;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001655 case VHOST_GET_FEATURES:
Nicholas Bellinger5dade712013-03-27 17:23:41 -07001656 features = VHOST_SCSI_FEATURES;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001657 if (copy_to_user(featurep, &features, sizeof features))
1658 return -EFAULT;
1659 return 0;
1660 case VHOST_SET_FEATURES:
1661 if (copy_from_user(&features, featurep, sizeof features))
1662 return -EFAULT;
1663 return vhost_scsi_set_features(vs, features);
1664 default:
1665 mutex_lock(&vs->dev.mutex);
Michael S. Tsirkin935cdee2012-12-06 14:03:34 +02001666 r = vhost_dev_ioctl(&vs->dev, ioctl, argp);
1667 /* TODO: flush backend after dev ioctl. */
1668 if (r == -ENOIOCTLCMD)
1669 r = vhost_vring_ioctl(&vs->dev, ioctl, argp);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001670 mutex_unlock(&vs->dev.mutex);
1671 return r;
1672 }
1673}
1674
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001675#ifdef CONFIG_COMPAT
1676static long vhost_scsi_compat_ioctl(struct file *f, unsigned int ioctl,
1677 unsigned long arg)
1678{
1679 return vhost_scsi_ioctl(f, ioctl, (unsigned long)compat_ptr(arg));
1680}
1681#endif
1682
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001683static const struct file_operations vhost_scsi_fops = {
1684 .owner = THIS_MODULE,
1685 .release = vhost_scsi_release,
1686 .unlocked_ioctl = vhost_scsi_ioctl,
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001687#ifdef CONFIG_COMPAT
1688 .compat_ioctl = vhost_scsi_compat_ioctl,
1689#endif
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001690 .open = vhost_scsi_open,
1691 .llseek = noop_llseek,
1692};
1693
1694static struct miscdevice vhost_scsi_misc = {
1695 MISC_DYNAMIC_MINOR,
1696 "vhost-scsi",
1697 &vhost_scsi_fops,
1698};
1699
1700static int __init vhost_scsi_register(void)
1701{
1702 return misc_register(&vhost_scsi_misc);
1703}
1704
1705static int vhost_scsi_deregister(void)
1706{
1707 return misc_deregister(&vhost_scsi_misc);
1708}
1709
1710static char *tcm_vhost_dump_proto_id(struct tcm_vhost_tport *tport)
1711{
1712 switch (tport->tport_proto_id) {
1713 case SCSI_PROTOCOL_SAS:
1714 return "SAS";
1715 case SCSI_PROTOCOL_FCP:
1716 return "FCP";
1717 case SCSI_PROTOCOL_ISCSI:
1718 return "iSCSI";
1719 default:
1720 break;
1721 }
1722
1723 return "Unknown";
1724}
1725
Asias He683bd962013-05-06 16:38:27 +08001726static void
1727tcm_vhost_do_plug(struct tcm_vhost_tpg *tpg,
1728 struct se_lun *lun, bool plug)
Asias Hea6c9af82013-04-25 15:35:21 +08001729{
1730
1731 struct vhost_scsi *vs = tpg->vhost_scsi;
1732 struct vhost_virtqueue *vq;
1733 u32 reason;
1734
1735 if (!vs)
1736 return;
1737
1738 mutex_lock(&vs->dev.mutex);
Asias Hea6c9af82013-04-25 15:35:21 +08001739
1740 if (plug)
1741 reason = VIRTIO_SCSI_EVT_RESET_RESCAN;
1742 else
1743 reason = VIRTIO_SCSI_EVT_RESET_REMOVED;
1744
Asias He3ab2e422013-04-27 11:16:48 +08001745 vq = &vs->vqs[VHOST_SCSI_VQ_EVT].vq;
Asias Hea6c9af82013-04-25 15:35:21 +08001746 mutex_lock(&vq->mutex);
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001747 if (vhost_has_feature(vq, VIRTIO_SCSI_F_HOTPLUG))
1748 tcm_vhost_send_evt(vs, tpg, lun,
1749 VIRTIO_SCSI_T_TRANSPORT_RESET, reason);
Asias Hea6c9af82013-04-25 15:35:21 +08001750 mutex_unlock(&vq->mutex);
1751 mutex_unlock(&vs->dev.mutex);
1752}
1753
1754static void tcm_vhost_hotplug(struct tcm_vhost_tpg *tpg, struct se_lun *lun)
1755{
1756 tcm_vhost_do_plug(tpg, lun, true);
1757}
1758
1759static void tcm_vhost_hotunplug(struct tcm_vhost_tpg *tpg, struct se_lun *lun)
1760{
1761 tcm_vhost_do_plug(tpg, lun, false);
1762}
1763
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001764static int tcm_vhost_port_link(struct se_portal_group *se_tpg,
Asias He683bd962013-05-06 16:38:27 +08001765 struct se_lun *lun)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001766{
Asias He98718312013-05-06 16:38:28 +08001767 struct tcm_vhost_tpg *tpg = container_of(se_tpg,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001768 struct tcm_vhost_tpg, se_tpg);
1769
Asias Hea6c9af82013-04-25 15:35:21 +08001770 mutex_lock(&tcm_vhost_mutex);
1771
Asias He98718312013-05-06 16:38:28 +08001772 mutex_lock(&tpg->tv_tpg_mutex);
1773 tpg->tv_tpg_port_count++;
1774 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001775
Asias He98718312013-05-06 16:38:28 +08001776 tcm_vhost_hotplug(tpg, lun);
Asias Hea6c9af82013-04-25 15:35:21 +08001777
1778 mutex_unlock(&tcm_vhost_mutex);
1779
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001780 return 0;
1781}
1782
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001783static void tcm_vhost_port_unlink(struct se_portal_group *se_tpg,
Asias He683bd962013-05-06 16:38:27 +08001784 struct se_lun *lun)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001785{
Asias He98718312013-05-06 16:38:28 +08001786 struct tcm_vhost_tpg *tpg = container_of(se_tpg,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001787 struct tcm_vhost_tpg, se_tpg);
1788
Asias Hea6c9af82013-04-25 15:35:21 +08001789 mutex_lock(&tcm_vhost_mutex);
1790
Asias He98718312013-05-06 16:38:28 +08001791 mutex_lock(&tpg->tv_tpg_mutex);
1792 tpg->tv_tpg_port_count--;
1793 mutex_unlock(&tpg->tv_tpg_mutex);
Asias Hea6c9af82013-04-25 15:35:21 +08001794
Asias He98718312013-05-06 16:38:28 +08001795 tcm_vhost_hotunplug(tpg, lun);
Asias Hea6c9af82013-04-25 15:35:21 +08001796
1797 mutex_unlock(&tcm_vhost_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001798}
1799
Asias He683bd962013-05-06 16:38:27 +08001800static struct se_node_acl *
1801tcm_vhost_make_nodeacl(struct se_portal_group *se_tpg,
1802 struct config_group *group,
1803 const char *name)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001804{
1805 struct se_node_acl *se_nacl, *se_nacl_new;
1806 struct tcm_vhost_nacl *nacl;
1807 u64 wwpn = 0;
1808 u32 nexus_depth;
1809
1810 /* tcm_vhost_parse_wwn(name, &wwpn, 1) < 0)
1811 return ERR_PTR(-EINVAL); */
1812 se_nacl_new = tcm_vhost_alloc_fabric_acl(se_tpg);
1813 if (!se_nacl_new)
1814 return ERR_PTR(-ENOMEM);
1815
1816 nexus_depth = 1;
1817 /*
1818 * se_nacl_new may be released by core_tpg_add_initiator_node_acl()
1819 * when converting a NodeACL from demo mode -> explict
1820 */
1821 se_nacl = core_tpg_add_initiator_node_acl(se_tpg, se_nacl_new,
1822 name, nexus_depth);
1823 if (IS_ERR(se_nacl)) {
1824 tcm_vhost_release_fabric_acl(se_tpg, se_nacl_new);
1825 return se_nacl;
1826 }
1827 /*
1828 * Locate our struct tcm_vhost_nacl and set the FC Nport WWPN
1829 */
1830 nacl = container_of(se_nacl, struct tcm_vhost_nacl, se_node_acl);
1831 nacl->iport_wwpn = wwpn;
1832
1833 return se_nacl;
1834}
1835
1836static void tcm_vhost_drop_nodeacl(struct se_node_acl *se_acl)
1837{
1838 struct tcm_vhost_nacl *nacl = container_of(se_acl,
1839 struct tcm_vhost_nacl, se_node_acl);
1840 core_tpg_del_initiator_node_acl(se_acl->se_tpg, se_acl, 1);
1841 kfree(nacl);
1842}
1843
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001844static void tcm_vhost_free_cmd_map_res(struct tcm_vhost_nexus *nexus,
1845 struct se_session *se_sess)
1846{
1847 struct tcm_vhost_cmd *tv_cmd;
1848 unsigned int i;
1849
1850 if (!se_sess->sess_cmd_map)
1851 return;
1852
1853 for (i = 0; i < TCM_VHOST_DEFAULT_TAGS; i++) {
1854 tv_cmd = &((struct tcm_vhost_cmd *)se_sess->sess_cmd_map)[i];
1855
1856 kfree(tv_cmd->tvc_sgl);
Nicholas Bellingerb1935f62014-02-22 18:08:24 -08001857 kfree(tv_cmd->tvc_prot_sgl);
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001858 kfree(tv_cmd->tvc_upages);
1859 }
1860}
1861
Asias He98718312013-05-06 16:38:28 +08001862static int tcm_vhost_make_nexus(struct tcm_vhost_tpg *tpg,
Asias He683bd962013-05-06 16:38:27 +08001863 const char *name)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001864{
1865 struct se_portal_group *se_tpg;
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001866 struct se_session *se_sess;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001867 struct tcm_vhost_nexus *tv_nexus;
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001868 struct tcm_vhost_cmd *tv_cmd;
1869 unsigned int i;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001870
Asias He98718312013-05-06 16:38:28 +08001871 mutex_lock(&tpg->tv_tpg_mutex);
1872 if (tpg->tpg_nexus) {
1873 mutex_unlock(&tpg->tv_tpg_mutex);
1874 pr_debug("tpg->tpg_nexus already exists\n");
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001875 return -EEXIST;
1876 }
Asias He98718312013-05-06 16:38:28 +08001877 se_tpg = &tpg->se_tpg;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001878
1879 tv_nexus = kzalloc(sizeof(struct tcm_vhost_nexus), GFP_KERNEL);
1880 if (!tv_nexus) {
Asias He98718312013-05-06 16:38:28 +08001881 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001882 pr_err("Unable to allocate struct tcm_vhost_nexus\n");
1883 return -ENOMEM;
1884 }
1885 /*
Nicholas Bellinger4824d3b2013-06-07 17:47:46 -07001886 * Initialize the struct se_session pointer and setup tagpool
1887 * for struct tcm_vhost_cmd descriptors
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001888 */
Nicholas Bellinger4824d3b2013-06-07 17:47:46 -07001889 tv_nexus->tvn_se_sess = transport_init_session_tags(
1890 TCM_VHOST_DEFAULT_TAGS,
Nicholas Bellingere70beee2014-04-02 12:52:38 -07001891 sizeof(struct tcm_vhost_cmd),
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001892 TARGET_PROT_DIN_PASS | TARGET_PROT_DOUT_PASS);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001893 if (IS_ERR(tv_nexus->tvn_se_sess)) {
Asias He98718312013-05-06 16:38:28 +08001894 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001895 kfree(tv_nexus);
1896 return -ENOMEM;
1897 }
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001898 se_sess = tv_nexus->tvn_se_sess;
1899 for (i = 0; i < TCM_VHOST_DEFAULT_TAGS; i++) {
1900 tv_cmd = &((struct tcm_vhost_cmd *)se_sess->sess_cmd_map)[i];
1901
1902 tv_cmd->tvc_sgl = kzalloc(sizeof(struct scatterlist) *
1903 TCM_VHOST_PREALLOC_SGLS, GFP_KERNEL);
1904 if (!tv_cmd->tvc_sgl) {
1905 mutex_unlock(&tpg->tv_tpg_mutex);
1906 pr_err("Unable to allocate tv_cmd->tvc_sgl\n");
1907 goto out;
1908 }
1909
1910 tv_cmd->tvc_upages = kzalloc(sizeof(struct page *) *
Nicholas Bellinger5a01d082014-02-22 18:34:08 -08001911 TCM_VHOST_PREALLOC_UPAGES, GFP_KERNEL);
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001912 if (!tv_cmd->tvc_upages) {
1913 mutex_unlock(&tpg->tv_tpg_mutex);
1914 pr_err("Unable to allocate tv_cmd->tvc_upages\n");
1915 goto out;
1916 }
Nicholas Bellingerb1935f62014-02-22 18:08:24 -08001917
1918 tv_cmd->tvc_prot_sgl = kzalloc(sizeof(struct scatterlist) *
1919 TCM_VHOST_PREALLOC_PROT_SGLS, GFP_KERNEL);
1920 if (!tv_cmd->tvc_prot_sgl) {
1921 mutex_unlock(&tpg->tv_tpg_mutex);
1922 pr_err("Unable to allocate tv_cmd->tvc_prot_sgl\n");
1923 goto out;
1924 }
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001925 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001926 /*
1927 * Since we are running in 'demo mode' this call with generate a
1928 * struct se_node_acl for the tcm_vhost struct se_portal_group with
1929 * the SCSI Initiator port name of the passed configfs group 'name'.
1930 */
1931 tv_nexus->tvn_se_sess->se_node_acl = core_tpg_check_initiator_node_acl(
1932 se_tpg, (unsigned char *)name);
1933 if (!tv_nexus->tvn_se_sess->se_node_acl) {
Asias He98718312013-05-06 16:38:28 +08001934 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001935 pr_debug("core_tpg_check_initiator_node_acl() failed"
1936 " for %s\n", name);
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001937 goto out;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001938 }
1939 /*
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001940 * Now register the TCM vhost virtual I_T Nexus as active with the
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001941 * call to __transport_register_session()
1942 */
1943 __transport_register_session(se_tpg, tv_nexus->tvn_se_sess->se_node_acl,
1944 tv_nexus->tvn_se_sess, tv_nexus);
Asias He98718312013-05-06 16:38:28 +08001945 tpg->tpg_nexus = tv_nexus;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001946
Asias He98718312013-05-06 16:38:28 +08001947 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001948 return 0;
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001949
1950out:
1951 tcm_vhost_free_cmd_map_res(tv_nexus, se_sess);
1952 transport_free_session(se_sess);
1953 kfree(tv_nexus);
1954 return -ENOMEM;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001955}
1956
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001957static int tcm_vhost_drop_nexus(struct tcm_vhost_tpg *tpg)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001958{
1959 struct se_session *se_sess;
1960 struct tcm_vhost_nexus *tv_nexus;
1961
1962 mutex_lock(&tpg->tv_tpg_mutex);
1963 tv_nexus = tpg->tpg_nexus;
1964 if (!tv_nexus) {
1965 mutex_unlock(&tpg->tv_tpg_mutex);
1966 return -ENODEV;
1967 }
1968
1969 se_sess = tv_nexus->tvn_se_sess;
1970 if (!se_sess) {
1971 mutex_unlock(&tpg->tv_tpg_mutex);
1972 return -ENODEV;
1973 }
1974
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001975 if (tpg->tv_tpg_port_count != 0) {
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001976 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001977 pr_err("Unable to remove TCM_vhost I_T Nexus with"
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001978 " active TPG port count: %d\n",
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001979 tpg->tv_tpg_port_count);
1980 return -EBUSY;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001981 }
1982
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001983 if (tpg->tv_tpg_vhost_count != 0) {
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001984 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001985 pr_err("Unable to remove TCM_vhost I_T Nexus with"
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001986 " active TPG vhost count: %d\n",
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001987 tpg->tv_tpg_vhost_count);
1988 return -EBUSY;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001989 }
1990
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001991 pr_debug("TCM_vhost_ConfigFS: Removing I_T Nexus to emulated"
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001992 " %s Initiator Port: %s\n", tcm_vhost_dump_proto_id(tpg->tport),
1993 tv_nexus->tvn_se_sess->se_node_acl->initiatorname);
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001994
1995 tcm_vhost_free_cmd_map_res(tv_nexus, se_sess);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001996 /*
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001997 * Release the SCSI I_T Nexus to the emulated vhost Target Port
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001998 */
1999 transport_deregister_session(tv_nexus->tvn_se_sess);
2000 tpg->tpg_nexus = NULL;
2001 mutex_unlock(&tpg->tv_tpg_mutex);
2002
2003 kfree(tv_nexus);
2004 return 0;
2005}
2006
Nicholas Bellinger101998f2012-07-30 13:30:00 -07002007static ssize_t tcm_vhost_tpg_show_nexus(struct se_portal_group *se_tpg,
Asias He683bd962013-05-06 16:38:27 +08002008 char *page)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002009{
Asias He98718312013-05-06 16:38:28 +08002010 struct tcm_vhost_tpg *tpg = container_of(se_tpg,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002011 struct tcm_vhost_tpg, se_tpg);
2012 struct tcm_vhost_nexus *tv_nexus;
2013 ssize_t ret;
2014
Asias He98718312013-05-06 16:38:28 +08002015 mutex_lock(&tpg->tv_tpg_mutex);
2016 tv_nexus = tpg->tpg_nexus;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002017 if (!tv_nexus) {
Asias He98718312013-05-06 16:38:28 +08002018 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002019 return -ENODEV;
2020 }
2021 ret = snprintf(page, PAGE_SIZE, "%s\n",
2022 tv_nexus->tvn_se_sess->se_node_acl->initiatorname);
Asias He98718312013-05-06 16:38:28 +08002023 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002024
2025 return ret;
2026}
2027
Nicholas Bellinger101998f2012-07-30 13:30:00 -07002028static ssize_t tcm_vhost_tpg_store_nexus(struct se_portal_group *se_tpg,
Asias He683bd962013-05-06 16:38:27 +08002029 const char *page,
2030 size_t count)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002031{
Asias He98718312013-05-06 16:38:28 +08002032 struct tcm_vhost_tpg *tpg = container_of(se_tpg,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002033 struct tcm_vhost_tpg, se_tpg);
Asias He98718312013-05-06 16:38:28 +08002034 struct tcm_vhost_tport *tport_wwn = tpg->tport;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002035 unsigned char i_port[TCM_VHOST_NAMELEN], *ptr, *port_ptr;
2036 int ret;
2037 /*
2038 * Shutdown the active I_T nexus if 'NULL' is passed..
2039 */
2040 if (!strncmp(page, "NULL", 4)) {
Asias He98718312013-05-06 16:38:28 +08002041 ret = tcm_vhost_drop_nexus(tpg);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002042 return (!ret) ? count : ret;
2043 }
2044 /*
2045 * Otherwise make sure the passed virtual Initiator port WWN matches
2046 * the fabric protocol_id set in tcm_vhost_make_tport(), and call
2047 * tcm_vhost_make_nexus().
2048 */
2049 if (strlen(page) >= TCM_VHOST_NAMELEN) {
2050 pr_err("Emulated NAA Sas Address: %s, exceeds"
2051 " max: %d\n", page, TCM_VHOST_NAMELEN);
2052 return -EINVAL;
2053 }
2054 snprintf(&i_port[0], TCM_VHOST_NAMELEN, "%s", page);
2055
2056 ptr = strstr(i_port, "naa.");
2057 if (ptr) {
2058 if (tport_wwn->tport_proto_id != SCSI_PROTOCOL_SAS) {
2059 pr_err("Passed SAS Initiator Port %s does not"
2060 " match target port protoid: %s\n", i_port,
2061 tcm_vhost_dump_proto_id(tport_wwn));
2062 return -EINVAL;
2063 }
2064 port_ptr = &i_port[0];
2065 goto check_newline;
2066 }
2067 ptr = strstr(i_port, "fc.");
2068 if (ptr) {
2069 if (tport_wwn->tport_proto_id != SCSI_PROTOCOL_FCP) {
2070 pr_err("Passed FCP Initiator Port %s does not"
2071 " match target port protoid: %s\n", i_port,
2072 tcm_vhost_dump_proto_id(tport_wwn));
2073 return -EINVAL;
2074 }
2075 port_ptr = &i_port[3]; /* Skip over "fc." */
2076 goto check_newline;
2077 }
2078 ptr = strstr(i_port, "iqn.");
2079 if (ptr) {
2080 if (tport_wwn->tport_proto_id != SCSI_PROTOCOL_ISCSI) {
2081 pr_err("Passed iSCSI Initiator Port %s does not"
2082 " match target port protoid: %s\n", i_port,
2083 tcm_vhost_dump_proto_id(tport_wwn));
2084 return -EINVAL;
2085 }
2086 port_ptr = &i_port[0];
2087 goto check_newline;
2088 }
2089 pr_err("Unable to locate prefix for emulated Initiator Port:"
2090 " %s\n", i_port);
2091 return -EINVAL;
2092 /*
2093 * Clear any trailing newline for the NAA WWN
2094 */
2095check_newline:
2096 if (i_port[strlen(i_port)-1] == '\n')
2097 i_port[strlen(i_port)-1] = '\0';
2098
Asias He98718312013-05-06 16:38:28 +08002099 ret = tcm_vhost_make_nexus(tpg, port_ptr);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002100 if (ret < 0)
2101 return ret;
2102
2103 return count;
2104}
2105
2106TF_TPG_BASE_ATTR(tcm_vhost, nexus, S_IRUGO | S_IWUSR);
2107
2108static struct configfs_attribute *tcm_vhost_tpg_attrs[] = {
2109 &tcm_vhost_tpg_nexus.attr,
2110 NULL,
2111};
2112
Asias He683bd962013-05-06 16:38:27 +08002113static struct se_portal_group *
2114tcm_vhost_make_tpg(struct se_wwn *wwn,
2115 struct config_group *group,
2116 const char *name)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002117{
2118 struct tcm_vhost_tport *tport = container_of(wwn,
2119 struct tcm_vhost_tport, tport_wwn);
2120
2121 struct tcm_vhost_tpg *tpg;
2122 unsigned long tpgt;
2123 int ret;
2124
2125 if (strstr(name, "tpgt_") != name)
2126 return ERR_PTR(-EINVAL);
2127 if (kstrtoul(name + 5, 10, &tpgt) || tpgt > UINT_MAX)
2128 return ERR_PTR(-EINVAL);
2129
2130 tpg = kzalloc(sizeof(struct tcm_vhost_tpg), GFP_KERNEL);
2131 if (!tpg) {
2132 pr_err("Unable to allocate struct tcm_vhost_tpg");
2133 return ERR_PTR(-ENOMEM);
2134 }
2135 mutex_init(&tpg->tv_tpg_mutex);
2136 INIT_LIST_HEAD(&tpg->tv_tpg_list);
2137 tpg->tport = tport;
2138 tpg->tport_tpgt = tpgt;
2139
2140 ret = core_tpg_register(&tcm_vhost_fabric_configfs->tf_ops, wwn,
2141 &tpg->se_tpg, tpg, TRANSPORT_TPG_TYPE_NORMAL);
2142 if (ret < 0) {
2143 kfree(tpg);
2144 return NULL;
2145 }
2146 mutex_lock(&tcm_vhost_mutex);
2147 list_add_tail(&tpg->tv_tpg_list, &tcm_vhost_list);
2148 mutex_unlock(&tcm_vhost_mutex);
2149
2150 return &tpg->se_tpg;
2151}
2152
2153static void tcm_vhost_drop_tpg(struct se_portal_group *se_tpg)
2154{
2155 struct tcm_vhost_tpg *tpg = container_of(se_tpg,
2156 struct tcm_vhost_tpg, se_tpg);
2157
2158 mutex_lock(&tcm_vhost_mutex);
2159 list_del(&tpg->tv_tpg_list);
2160 mutex_unlock(&tcm_vhost_mutex);
2161 /*
Nicholas Bellinger101998f2012-07-30 13:30:00 -07002162 * Release the virtual I_T Nexus for this vhost TPG
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002163 */
2164 tcm_vhost_drop_nexus(tpg);
2165 /*
2166 * Deregister the se_tpg from TCM..
2167 */
2168 core_tpg_deregister(se_tpg);
2169 kfree(tpg);
2170}
2171
Asias He683bd962013-05-06 16:38:27 +08002172static struct se_wwn *
2173tcm_vhost_make_tport(struct target_fabric_configfs *tf,
2174 struct config_group *group,
2175 const char *name)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002176{
2177 struct tcm_vhost_tport *tport;
2178 char *ptr;
2179 u64 wwpn = 0;
2180 int off = 0;
2181
2182 /* if (tcm_vhost_parse_wwn(name, &wwpn, 1) < 0)
2183 return ERR_PTR(-EINVAL); */
2184
2185 tport = kzalloc(sizeof(struct tcm_vhost_tport), GFP_KERNEL);
2186 if (!tport) {
2187 pr_err("Unable to allocate struct tcm_vhost_tport");
2188 return ERR_PTR(-ENOMEM);
2189 }
2190 tport->tport_wwpn = wwpn;
2191 /*
2192 * Determine the emulated Protocol Identifier and Target Port Name
2193 * based on the incoming configfs directory name.
2194 */
2195 ptr = strstr(name, "naa.");
2196 if (ptr) {
2197 tport->tport_proto_id = SCSI_PROTOCOL_SAS;
2198 goto check_len;
2199 }
2200 ptr = strstr(name, "fc.");
2201 if (ptr) {
2202 tport->tport_proto_id = SCSI_PROTOCOL_FCP;
2203 off = 3; /* Skip over "fc." */
2204 goto check_len;
2205 }
2206 ptr = strstr(name, "iqn.");
2207 if (ptr) {
2208 tport->tport_proto_id = SCSI_PROTOCOL_ISCSI;
2209 goto check_len;
2210 }
2211
2212 pr_err("Unable to locate prefix for emulated Target Port:"
2213 " %s\n", name);
2214 kfree(tport);
2215 return ERR_PTR(-EINVAL);
2216
2217check_len:
2218 if (strlen(name) >= TCM_VHOST_NAMELEN) {
2219 pr_err("Emulated %s Address: %s, exceeds"
2220 " max: %d\n", name, tcm_vhost_dump_proto_id(tport),
2221 TCM_VHOST_NAMELEN);
2222 kfree(tport);
2223 return ERR_PTR(-EINVAL);
2224 }
2225 snprintf(&tport->tport_name[0], TCM_VHOST_NAMELEN, "%s", &name[off]);
2226
2227 pr_debug("TCM_VHost_ConfigFS: Allocated emulated Target"
2228 " %s Address: %s\n", tcm_vhost_dump_proto_id(tport), name);
2229
2230 return &tport->tport_wwn;
2231}
2232
2233static void tcm_vhost_drop_tport(struct se_wwn *wwn)
2234{
2235 struct tcm_vhost_tport *tport = container_of(wwn,
2236 struct tcm_vhost_tport, tport_wwn);
2237
2238 pr_debug("TCM_VHost_ConfigFS: Deallocating emulated Target"
2239 " %s Address: %s\n", tcm_vhost_dump_proto_id(tport),
2240 tport->tport_name);
2241
2242 kfree(tport);
2243}
2244
Asias He683bd962013-05-06 16:38:27 +08002245static ssize_t
2246tcm_vhost_wwn_show_attr_version(struct target_fabric_configfs *tf,
2247 char *page)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002248{
2249 return sprintf(page, "TCM_VHOST fabric module %s on %s/%s"
2250 "on "UTS_RELEASE"\n", TCM_VHOST_VERSION, utsname()->sysname,
2251 utsname()->machine);
2252}
2253
2254TF_WWN_ATTR_RO(tcm_vhost, version);
2255
2256static struct configfs_attribute *tcm_vhost_wwn_attrs[] = {
2257 &tcm_vhost_wwn_version.attr,
2258 NULL,
2259};
2260
2261static struct target_core_fabric_ops tcm_vhost_ops = {
2262 .get_fabric_name = tcm_vhost_get_fabric_name,
2263 .get_fabric_proto_ident = tcm_vhost_get_fabric_proto_ident,
2264 .tpg_get_wwn = tcm_vhost_get_fabric_wwn,
2265 .tpg_get_tag = tcm_vhost_get_tag,
2266 .tpg_get_default_depth = tcm_vhost_get_default_depth,
2267 .tpg_get_pr_transport_id = tcm_vhost_get_pr_transport_id,
2268 .tpg_get_pr_transport_id_len = tcm_vhost_get_pr_transport_id_len,
2269 .tpg_parse_pr_out_transport_id = tcm_vhost_parse_pr_out_transport_id,
2270 .tpg_check_demo_mode = tcm_vhost_check_true,
2271 .tpg_check_demo_mode_cache = tcm_vhost_check_true,
2272 .tpg_check_demo_mode_write_protect = tcm_vhost_check_false,
2273 .tpg_check_prod_mode_write_protect = tcm_vhost_check_false,
2274 .tpg_alloc_fabric_acl = tcm_vhost_alloc_fabric_acl,
2275 .tpg_release_fabric_acl = tcm_vhost_release_fabric_acl,
2276 .tpg_get_inst_index = tcm_vhost_tpg_get_inst_index,
2277 .release_cmd = tcm_vhost_release_cmd,
Nicholas Bellinger084ed452013-06-06 02:20:41 -07002278 .check_stop_free = vhost_scsi_check_stop_free,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002279 .shutdown_session = tcm_vhost_shutdown_session,
2280 .close_session = tcm_vhost_close_session,
2281 .sess_get_index = tcm_vhost_sess_get_index,
2282 .sess_get_initiator_sid = NULL,
2283 .write_pending = tcm_vhost_write_pending,
2284 .write_pending_status = tcm_vhost_write_pending_status,
2285 .set_default_node_attributes = tcm_vhost_set_default_node_attrs,
2286 .get_task_tag = tcm_vhost_get_task_tag,
2287 .get_cmd_state = tcm_vhost_get_cmd_state,
2288 .queue_data_in = tcm_vhost_queue_data_in,
2289 .queue_status = tcm_vhost_queue_status,
2290 .queue_tm_rsp = tcm_vhost_queue_tm_rsp,
Nicholas Bellinger131e6ab2014-03-22 14:55:56 -07002291 .aborted_task = tcm_vhost_aborted_task,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002292 /*
2293 * Setup callers for generic logic in target_core_fabric_configfs.c
2294 */
2295 .fabric_make_wwn = tcm_vhost_make_tport,
2296 .fabric_drop_wwn = tcm_vhost_drop_tport,
2297 .fabric_make_tpg = tcm_vhost_make_tpg,
2298 .fabric_drop_tpg = tcm_vhost_drop_tpg,
2299 .fabric_post_link = tcm_vhost_port_link,
2300 .fabric_pre_unlink = tcm_vhost_port_unlink,
2301 .fabric_make_np = NULL,
2302 .fabric_drop_np = NULL,
2303 .fabric_make_nodeacl = tcm_vhost_make_nodeacl,
2304 .fabric_drop_nodeacl = tcm_vhost_drop_nodeacl,
2305};
2306
2307static int tcm_vhost_register_configfs(void)
2308{
2309 struct target_fabric_configfs *fabric;
2310 int ret;
2311
2312 pr_debug("TCM_VHOST fabric module %s on %s/%s"
2313 " on "UTS_RELEASE"\n", TCM_VHOST_VERSION, utsname()->sysname,
2314 utsname()->machine);
2315 /*
2316 * Register the top level struct config_item_type with TCM core
2317 */
2318 fabric = target_fabric_configfs_init(THIS_MODULE, "vhost");
2319 if (IS_ERR(fabric)) {
2320 pr_err("target_fabric_configfs_init() failed\n");
2321 return PTR_ERR(fabric);
2322 }
2323 /*
2324 * Setup fabric->tf_ops from our local tcm_vhost_ops
2325 */
2326 fabric->tf_ops = tcm_vhost_ops;
2327 /*
2328 * Setup default attribute lists for various fabric->tf_cit_tmpl
2329 */
Andy Groverd80e224d2013-10-09 11:05:56 -07002330 fabric->tf_cit_tmpl.tfc_wwn_cit.ct_attrs = tcm_vhost_wwn_attrs;
2331 fabric->tf_cit_tmpl.tfc_tpg_base_cit.ct_attrs = tcm_vhost_tpg_attrs;
2332 fabric->tf_cit_tmpl.tfc_tpg_attrib_cit.ct_attrs = NULL;
2333 fabric->tf_cit_tmpl.tfc_tpg_param_cit.ct_attrs = NULL;
2334 fabric->tf_cit_tmpl.tfc_tpg_np_base_cit.ct_attrs = NULL;
2335 fabric->tf_cit_tmpl.tfc_tpg_nacl_base_cit.ct_attrs = NULL;
2336 fabric->tf_cit_tmpl.tfc_tpg_nacl_attrib_cit.ct_attrs = NULL;
2337 fabric->tf_cit_tmpl.tfc_tpg_nacl_auth_cit.ct_attrs = NULL;
2338 fabric->tf_cit_tmpl.tfc_tpg_nacl_param_cit.ct_attrs = NULL;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002339 /*
2340 * Register the fabric for use within TCM
2341 */
2342 ret = target_fabric_configfs_register(fabric);
2343 if (ret < 0) {
2344 pr_err("target_fabric_configfs_register() failed"
2345 " for TCM_VHOST\n");
2346 return ret;
2347 }
2348 /*
2349 * Setup our local pointer to *fabric
2350 */
2351 tcm_vhost_fabric_configfs = fabric;
2352 pr_debug("TCM_VHOST[0] - Set fabric -> tcm_vhost_fabric_configfs\n");
2353 return 0;
2354};
2355
2356static void tcm_vhost_deregister_configfs(void)
2357{
2358 if (!tcm_vhost_fabric_configfs)
2359 return;
2360
2361 target_fabric_configfs_deregister(tcm_vhost_fabric_configfs);
2362 tcm_vhost_fabric_configfs = NULL;
2363 pr_debug("TCM_VHOST[0] - Cleared tcm_vhost_fabric_configfs\n");
2364};
2365
2366static int __init tcm_vhost_init(void)
2367{
2368 int ret = -ENOMEM;
Nicholas Bellinger101998f2012-07-30 13:30:00 -07002369 /*
2370 * Use our own dedicated workqueue for submitting I/O into
2371 * target core to avoid contention within system_wq.
2372 */
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002373 tcm_vhost_workqueue = alloc_workqueue("tcm_vhost", 0, 0);
2374 if (!tcm_vhost_workqueue)
2375 goto out;
2376
2377 ret = vhost_scsi_register();
2378 if (ret < 0)
2379 goto out_destroy_workqueue;
2380
2381 ret = tcm_vhost_register_configfs();
2382 if (ret < 0)
2383 goto out_vhost_scsi_deregister;
2384
2385 return 0;
2386
2387out_vhost_scsi_deregister:
2388 vhost_scsi_deregister();
2389out_destroy_workqueue:
2390 destroy_workqueue(tcm_vhost_workqueue);
2391out:
2392 return ret;
2393};
2394
2395static void tcm_vhost_exit(void)
2396{
2397 tcm_vhost_deregister_configfs();
2398 vhost_scsi_deregister();
2399 destroy_workqueue(tcm_vhost_workqueue);
2400};
2401
Michael S. Tsirkin181c04a2013-05-02 03:52:59 +03002402MODULE_DESCRIPTION("VHOST_SCSI series fabric driver");
2403MODULE_ALIAS("tcm_vhost");
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002404MODULE_LICENSE("GPL");
2405module_init(tcm_vhost_init);
2406module_exit(tcm_vhost_exit);