blob: b9800c7a1d5db25764b0871af204ab914d749801 [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
Nicholas Bellingerb4078b52015-01-28 13:10:51 -0800225static int iov_num_pages(void __user *iov_base, size_t iov_len)
Asias He765b34f2013-01-22 11:20:25 +0800226{
Nicholas Bellingerb4078b52015-01-28 13:10:51 -0800227 return (PAGE_ALIGN((unsigned long)iov_base + iov_len) -
228 ((unsigned long)iov_base & PAGE_MASK)) >> PAGE_SHIFT;
Asias He765b34f2013-01-22 11:20:25 +0800229}
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 Bellingerb4078b52015-01-28 13:10:51 -0800785vhost_scsi_map_to_sgl(struct tcm_vhost_cmd *cmd,
786 void __user *ptr,
787 size_t len,
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -0700788 struct scatterlist *sgl,
Nicholas Bellinger5a01d082014-02-22 18:34:08 -0800789 bool write)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700790{
Nicholas Bellingerb4078b52015-01-28 13:10:51 -0800791 unsigned int npages = 0, offset, nbytes;
792 unsigned int pages_nr = iov_num_pages(ptr, len);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700793 struct scatterlist *sg = sgl;
Nicholas Bellingerb4078b52015-01-28 13:10:51 -0800794 struct page **pages = cmd->tvc_upages;
Asias He18100532013-01-22 11:20:27 +0800795 int ret, i;
796
Nicholas Bellinger5a01d082014-02-22 18:34:08 -0800797 if (pages_nr > TCM_VHOST_PREALLOC_UPAGES) {
798 pr_err("vhost_scsi_map_to_sgl() pages_nr: %u greater than"
799 " preallocated TCM_VHOST_PREALLOC_UPAGES: %u\n",
800 pages_nr, TCM_VHOST_PREALLOC_UPAGES);
801 return -ENOBUFS;
802 }
Asias He18100532013-01-22 11:20:27 +0800803
804 ret = get_user_pages_fast((unsigned long)ptr, pages_nr, write, pages);
805 /* No pages were pinned */
806 if (ret < 0)
807 goto out;
808 /* Less pages pinned than wanted */
809 if (ret != pages_nr) {
810 for (i = 0; i < ret; i++)
811 put_page(pages[i]);
812 ret = -EFAULT;
813 goto out;
814 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700815
816 while (len > 0) {
Asias He18100532013-01-22 11:20:27 +0800817 offset = (uintptr_t)ptr & ~PAGE_MASK;
818 nbytes = min_t(unsigned int, PAGE_SIZE - offset, len);
819 sg_set_page(sg, pages[npages], nbytes, offset);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700820 ptr += nbytes;
821 len -= nbytes;
822 sg++;
823 npages++;
824 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700825
Asias He18100532013-01-22 11:20:27 +0800826out:
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700827 return ret;
828}
829
Asias He683bd962013-05-06 16:38:27 +0800830static int
Asias He3c63f662013-05-06 16:38:29 +0800831vhost_scsi_map_iov_to_sgl(struct tcm_vhost_cmd *cmd,
Asias He683bd962013-05-06 16:38:27 +0800832 struct iovec *iov,
Nicholas Bellinger5a01d082014-02-22 18:34:08 -0800833 int niov,
834 bool write)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700835{
Nicholas Bellinger5a01d082014-02-22 18:34:08 -0800836 struct scatterlist *sg = cmd->tvc_sgl;
837 unsigned int sgl_count = 0;
838 int ret, i;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700839
Asias Hef3158f32013-01-22 11:20:26 +0800840 for (i = 0; i < niov; i++)
Nicholas Bellingerb4078b52015-01-28 13:10:51 -0800841 sgl_count += iov_num_pages(iov[i].iov_base, iov[i].iov_len);
Asias Hef3158f32013-01-22 11:20:26 +0800842
Nicholas Bellinger5a01d082014-02-22 18:34:08 -0800843 if (sgl_count > TCM_VHOST_PREALLOC_SGLS) {
844 pr_err("vhost_scsi_map_iov_to_sgl() sgl_count: %u greater than"
845 " preallocated TCM_VHOST_PREALLOC_SGLS: %u\n",
846 sgl_count, TCM_VHOST_PREALLOC_SGLS);
847 return -ENOBUFS;
848 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700849
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -0700850 pr_debug("%s sg %p sgl_count %u\n", __func__, sg, sgl_count);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700851 sg_init_table(sg, sgl_count);
Asias He3c63f662013-05-06 16:38:29 +0800852 cmd->tvc_sgl_count = sgl_count;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700853
Nicholas Bellinger5a01d082014-02-22 18:34:08 -0800854 pr_debug("Mapping iovec %p for %u pages\n", &iov[0], sgl_count);
855
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700856 for (i = 0; i < niov; i++) {
Nicholas Bellingerb4078b52015-01-28 13:10:51 -0800857 ret = vhost_scsi_map_to_sgl(cmd, iov[i].iov_base, iov[i].iov_len,
858 sg, write);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700859 if (ret < 0) {
Nicholas Bellingerde1419e2015-01-29 17:21:13 -0800860 for (i = 0; i < cmd->tvc_sgl_count; i++) {
861 struct page *page = sg_page(&cmd->tvc_sgl[i]);
862 if (page)
863 put_page(page);
864 }
Asias He3c63f662013-05-06 16:38:29 +0800865 cmd->tvc_sgl_count = 0;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700866 return ret;
867 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700868 sg += ret;
869 sgl_count -= ret;
870 }
871 return 0;
872}
873
Nicholas Bellingere31885d2014-02-22 18:34:43 -0800874static int
875vhost_scsi_map_iov_to_prot(struct tcm_vhost_cmd *cmd,
876 struct iovec *iov,
877 int niov,
878 bool write)
879{
880 struct scatterlist *prot_sg = cmd->tvc_prot_sgl;
881 unsigned int prot_sgl_count = 0;
882 int ret, i;
883
884 for (i = 0; i < niov; i++)
Nicholas Bellingerb4078b52015-01-28 13:10:51 -0800885 prot_sgl_count += iov_num_pages(iov[i].iov_base, iov[i].iov_len);
Nicholas Bellingere31885d2014-02-22 18:34:43 -0800886
887 if (prot_sgl_count > TCM_VHOST_PREALLOC_PROT_SGLS) {
888 pr_err("vhost_scsi_map_iov_to_prot() sgl_count: %u greater than"
889 " preallocated TCM_VHOST_PREALLOC_PROT_SGLS: %u\n",
890 prot_sgl_count, TCM_VHOST_PREALLOC_PROT_SGLS);
891 return -ENOBUFS;
892 }
893
894 pr_debug("%s prot_sg %p prot_sgl_count %u\n", __func__,
895 prot_sg, prot_sgl_count);
896 sg_init_table(prot_sg, prot_sgl_count);
897 cmd->tvc_prot_sgl_count = prot_sgl_count;
898
899 for (i = 0; i < niov; i++) {
Nicholas Bellingerb4078b52015-01-28 13:10:51 -0800900 ret = vhost_scsi_map_to_sgl(cmd, iov[i].iov_base, iov[i].iov_len,
901 prot_sg, write);
Nicholas Bellingere31885d2014-02-22 18:34:43 -0800902 if (ret < 0) {
Nicholas Bellingerde1419e2015-01-29 17:21:13 -0800903 for (i = 0; i < cmd->tvc_prot_sgl_count; i++) {
904 struct page *page = sg_page(&cmd->tvc_prot_sgl[i]);
905 if (page)
906 put_page(page);
907 }
Nicholas Bellingere31885d2014-02-22 18:34:43 -0800908 cmd->tvc_prot_sgl_count = 0;
909 return ret;
910 }
911 prot_sg += ret;
912 prot_sgl_count -= ret;
913 }
914 return 0;
915}
916
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700917static void tcm_vhost_submission_work(struct work_struct *work)
918{
Asias He3c63f662013-05-06 16:38:29 +0800919 struct tcm_vhost_cmd *cmd =
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700920 container_of(work, struct tcm_vhost_cmd, work);
Nicholas Bellinger9f0abc12012-10-01 18:40:55 -0700921 struct tcm_vhost_nexus *tv_nexus;
Asias He3c63f662013-05-06 16:38:29 +0800922 struct se_cmd *se_cmd = &cmd->tvc_se_cmd;
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800923 struct scatterlist *sg_ptr, *sg_prot_ptr = NULL;
924 int rc;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700925
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800926 /* FIXME: BIDI operation */
Asias He3c63f662013-05-06 16:38:29 +0800927 if (cmd->tvc_sgl_count) {
928 sg_ptr = cmd->tvc_sgl;
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800929
930 if (cmd->tvc_prot_sgl_count)
931 sg_prot_ptr = cmd->tvc_prot_sgl;
932 else
933 se_cmd->prot_pto = true;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700934 } else {
935 sg_ptr = NULL;
936 }
Asias He3c63f662013-05-06 16:38:29 +0800937 tv_nexus = cmd->tvc_nexus;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700938
Nicholas Bellinger9f0abc12012-10-01 18:40:55 -0700939 rc = target_submit_cmd_map_sgls(se_cmd, tv_nexus->tvn_se_sess,
Asias He3c63f662013-05-06 16:38:29 +0800940 cmd->tvc_cdb, &cmd->tvc_sense_buf[0],
941 cmd->tvc_lun, cmd->tvc_exp_data_len,
942 cmd->tvc_task_attr, cmd->tvc_data_direction,
Linus Torvalds6d2fa9e2013-07-11 12:57:19 -0700943 TARGET_SCF_ACK_KREF, sg_ptr, cmd->tvc_sgl_count,
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800944 NULL, 0, sg_prot_ptr, cmd->tvc_prot_sgl_count);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700945 if (rc < 0) {
946 transport_send_check_condition_and_sense(se_cmd,
Nicholas Bellinger9f0abc12012-10-01 18:40:55 -0700947 TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE, 0);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700948 transport_generic_free_cmd(se_cmd, 0);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700949 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700950}
951
Asias He683bd962013-05-06 16:38:27 +0800952static void
953vhost_scsi_send_bad_target(struct vhost_scsi *vs,
954 struct vhost_virtqueue *vq,
955 int head, unsigned out)
Asias He637ab212013-04-10 15:06:15 +0800956{
957 struct virtio_scsi_cmd_resp __user *resp;
958 struct virtio_scsi_cmd_resp rsp;
959 int ret;
960
961 memset(&rsp, 0, sizeof(rsp));
962 rsp.response = VIRTIO_SCSI_S_BAD_TARGET;
963 resp = vq->iov[out].iov_base;
964 ret = __copy_to_user(resp, &rsp, sizeof(rsp));
965 if (!ret)
966 vhost_add_used_and_signal(&vs->dev, vq, head, 0);
967 else
968 pr_err("Faulted on virtio_scsi_cmd_resp\n");
969}
970
Asias He683bd962013-05-06 16:38:27 +0800971static void
972vhost_scsi_handle_vq(struct vhost_scsi *vs, struct vhost_virtqueue *vq)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700973{
Asias He4f7f46d2013-04-03 14:17:37 +0800974 struct tcm_vhost_tpg **vs_tpg;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700975 struct virtio_scsi_cmd_req v_req;
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800976 struct virtio_scsi_cmd_req_pi v_req_pi;
Asias He98718312013-05-06 16:38:28 +0800977 struct tcm_vhost_tpg *tpg;
Asias He3c63f662013-05-06 16:38:29 +0800978 struct tcm_vhost_cmd *cmd;
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800979 u64 tag;
980 u32 exp_data_len, data_first, data_num, data_direction, prot_first;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700981 unsigned out, in, i;
Nicholas Bellinger95e7c432014-02-22 18:22:31 -0800982 int head, ret, data_niov, prot_niov, prot_bytes;
983 size_t req_size;
984 u16 lun;
985 u8 *target, *lunp, task_attr;
986 bool hdr_pi;
987 void *req, *cdb;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700988
Asias Hee7802212013-05-07 14:54:35 +0800989 mutex_lock(&vq->mutex);
Asias He4f7f46d2013-04-03 14:17:37 +0800990 /*
991 * We can handle the vq only after the endpoint is setup by calling the
992 * VHOST_SCSI_SET_ENDPOINT ioctl.
Asias He4f7f46d2013-04-03 14:17:37 +0800993 */
Asias Hee7802212013-05-07 14:54:35 +0800994 vs_tpg = vq->private_data;
Asias He4f7f46d2013-04-03 14:17:37 +0800995 if (!vs_tpg)
Asias Hee7802212013-05-07 14:54:35 +0800996 goto out;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700997
Nicholas Bellinger057cbf42012-07-18 14:31:32 -0700998 vhost_disable_notify(&vs->dev, vq);
999
1000 for (;;) {
Michael S. Tsirkin47283be2014-06-05 15:20:27 +03001001 head = vhost_get_vq_desc(vq, vq->iov,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001002 ARRAY_SIZE(vq->iov), &out, &in,
1003 NULL, NULL);
1004 pr_debug("vhost_get_vq_desc: head: %d, out: %u in: %u\n",
1005 head, out, in);
1006 /* On error, stop handling until the next kick. */
1007 if (unlikely(head < 0))
1008 break;
1009 /* Nothing new? Wait for eventfd to tell us they refilled. */
1010 if (head == vq->num) {
1011 if (unlikely(vhost_enable_notify(&vs->dev, vq))) {
1012 vhost_disable_notify(&vs->dev, vq);
1013 continue;
1014 }
1015 break;
1016 }
1017
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001018 /* FIXME: BIDI operation */
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001019 if (out == 1 && in == 1) {
1020 data_direction = DMA_NONE;
1021 data_first = 0;
1022 data_num = 0;
1023 } else if (out == 1 && in > 1) {
1024 data_direction = DMA_FROM_DEVICE;
1025 data_first = out + 1;
1026 data_num = in - 1;
1027 } else if (out > 1 && in == 1) {
1028 data_direction = DMA_TO_DEVICE;
1029 data_first = 1;
1030 data_num = out - 1;
1031 } else {
1032 vq_err(vq, "Invalid buffer layout out: %u in: %u\n",
1033 out, in);
1034 break;
1035 }
1036
1037 /*
1038 * Check for a sane resp buffer so we can report errors to
1039 * the guest.
1040 */
1041 if (unlikely(vq->iov[out].iov_len !=
1042 sizeof(struct virtio_scsi_cmd_resp))) {
1043 vq_err(vq, "Expecting virtio_scsi_cmd_resp, got %zu"
1044 " bytes\n", vq->iov[out].iov_len);
1045 break;
1046 }
1047
Linus Torvaldsed9ea4e2014-06-12 22:38:32 -07001048 if (vhost_has_feature(vq, VIRTIO_SCSI_F_T10_PI)) {
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001049 req = &v_req_pi;
1050 lunp = &v_req_pi.lun[0];
1051 target = &v_req_pi.lun[1];
1052 req_size = sizeof(v_req_pi);
1053 hdr_pi = true;
1054 } else {
1055 req = &v_req;
1056 lunp = &v_req.lun[0];
1057 target = &v_req.lun[1];
1058 req_size = sizeof(v_req);
1059 hdr_pi = false;
1060 }
1061
1062 if (unlikely(vq->iov[0].iov_len < req_size)) {
1063 pr_err("Expecting virtio-scsi header: %zu, got %zu\n",
1064 req_size, vq->iov[0].iov_len);
Nicholas Bellingerde1419e2015-01-29 17:21:13 -08001065 vhost_scsi_send_bad_target(vs, vq, head, out);
1066 continue;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001067 }
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001068 ret = memcpy_fromiovecend(req, &vq->iov[0], 0, req_size);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001069 if (unlikely(ret)) {
1070 vq_err(vq, "Faulted on virtio_scsi_cmd_req\n");
Nicholas Bellingerde1419e2015-01-29 17:21:13 -08001071 vhost_scsi_send_bad_target(vs, vq, head, out);
1072 continue;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001073 }
1074
Venkatesh Srinivas7fe412d2014-02-24 14:13:32 -08001075 /* virtio-scsi spec requires byte 0 of the lun to be 1 */
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001076 if (unlikely(*lunp != 1)) {
Venkatesh Srinivas7fe412d2014-02-24 14:13:32 -08001077 vhost_scsi_send_bad_target(vs, vq, head, out);
1078 continue;
1079 }
1080
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001081 tpg = ACCESS_ONCE(vs_tpg[*target]);
Asias He67e18cf2013-02-05 12:31:57 +08001082
1083 /* Target does not exist, fail the request */
Asias He98718312013-05-06 16:38:28 +08001084 if (unlikely(!tpg)) {
Asias He637ab212013-04-10 15:06:15 +08001085 vhost_scsi_send_bad_target(vs, vq, head, out);
Asias He67e18cf2013-02-05 12:31:57 +08001086 continue;
1087 }
1088
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001089 data_niov = data_num;
1090 prot_niov = prot_first = prot_bytes = 0;
1091 /*
1092 * Determine if any protection information iovecs are preceeding
1093 * the actual data payload, and adjust data_first + data_niov
1094 * values accordingly for vhost_scsi_map_iov_to_sgl() below.
1095 *
1096 * Also extract virtio_scsi header bits for vhost_scsi_get_tag()
1097 */
1098 if (hdr_pi) {
1099 if (v_req_pi.pi_bytesout) {
1100 if (data_direction != DMA_TO_DEVICE) {
1101 vq_err(vq, "Received non zero do_pi_niov"
1102 ", but wrong data_direction\n");
Nicholas Bellingerde1419e2015-01-29 17:21:13 -08001103 vhost_scsi_send_bad_target(vs, vq, head, out);
1104 continue;
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001105 }
Michael S. Tsirkine72fd722014-11-23 18:01:34 +02001106 prot_bytes = vhost32_to_cpu(vq, v_req_pi.pi_bytesout);
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001107 } else if (v_req_pi.pi_bytesin) {
1108 if (data_direction != DMA_FROM_DEVICE) {
1109 vq_err(vq, "Received non zero di_pi_niov"
1110 ", but wrong data_direction\n");
Nicholas Bellingerde1419e2015-01-29 17:21:13 -08001111 vhost_scsi_send_bad_target(vs, vq, head, out);
1112 continue;
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001113 }
Michael S. Tsirkine72fd722014-11-23 18:01:34 +02001114 prot_bytes = vhost32_to_cpu(vq, v_req_pi.pi_bytesin);
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001115 }
1116 if (prot_bytes) {
1117 int tmp = 0;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001118
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001119 for (i = 0; i < data_num; i++) {
1120 tmp += vq->iov[data_first + i].iov_len;
1121 prot_niov++;
1122 if (tmp >= prot_bytes)
1123 break;
1124 }
1125 prot_first = data_first;
1126 data_first += prot_niov;
1127 data_niov = data_num - prot_niov;
1128 }
Michael S. Tsirkine72fd722014-11-23 18:01:34 +02001129 tag = vhost64_to_cpu(vq, v_req_pi.tag);
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001130 task_attr = v_req_pi.task_attr;
1131 cdb = &v_req_pi.cdb[0];
1132 lun = ((v_req_pi.lun[2] << 8) | v_req_pi.lun[3]) & 0x3FFF;
1133 } else {
Michael S. Tsirkine72fd722014-11-23 18:01:34 +02001134 tag = vhost64_to_cpu(vq, v_req.tag);
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001135 task_attr = v_req.task_attr;
1136 cdb = &v_req.cdb[0];
1137 lun = ((v_req.lun[2] << 8) | v_req.lun[3]) & 0x3FFF;
1138 }
1139 exp_data_len = 0;
1140 for (i = 0; i < data_niov; i++)
1141 exp_data_len += vq->iov[data_first + i].iov_len;
1142 /*
1143 * Check that the recieved CDB size does not exceeded our
1144 * hardcoded max for vhost-scsi
1145 *
1146 * TODO what if cdb was too small for varlen cdb header?
1147 */
1148 if (unlikely(scsi_command_size(cdb) > TCM_VHOST_MAX_CDB_SIZE)) {
1149 vq_err(vq, "Received SCSI CDB with command_size: %d that"
1150 " exceeds SCSI_MAX_VARLEN_CDB_SIZE: %d\n",
1151 scsi_command_size(cdb), TCM_VHOST_MAX_CDB_SIZE);
Nicholas Bellingerde1419e2015-01-29 17:21:13 -08001152 vhost_scsi_send_bad_target(vs, vq, head, out);
1153 continue;
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001154 }
1155
1156 cmd = vhost_scsi_get_tag(vq, tpg, cdb, tag, lun, task_attr,
Nicholas Bellinger9f977ef2014-06-10 01:19:38 -07001157 exp_data_len + prot_bytes,
1158 data_direction);
Asias He3c63f662013-05-06 16:38:29 +08001159 if (IS_ERR(cmd)) {
Nicholas Bellinger4824d3b2013-06-07 17:47:46 -07001160 vq_err(vq, "vhost_scsi_get_tag failed %ld\n",
Asias He3c63f662013-05-06 16:38:29 +08001161 PTR_ERR(cmd));
Nicholas Bellingerde1419e2015-01-29 17:21:13 -08001162 vhost_scsi_send_bad_target(vs, vq, head, out);
1163 continue;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001164 }
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001165
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001166 pr_debug("Allocated tv_cmd: %p exp_data_len: %d, data_direction"
Asias He3c63f662013-05-06 16:38:29 +08001167 ": %d\n", cmd, exp_data_len, data_direction);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001168
Asias He3c63f662013-05-06 16:38:29 +08001169 cmd->tvc_vhost = vs;
1170 cmd->tvc_vq = vq;
Nicholas Bellinger79c14142015-01-27 13:13:12 -08001171 cmd->tvc_resp_iov = &vq->iov[out];
1172 cmd->tvc_in_iovs = in;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001173
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001174 pr_debug("vhost_scsi got command opcode: %#02x, lun: %d\n",
Asias He3c63f662013-05-06 16:38:29 +08001175 cmd->tvc_cdb[0], cmd->tvc_lun);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001176
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001177 if (prot_niov) {
1178 ret = vhost_scsi_map_iov_to_prot(cmd,
1179 &vq->iov[prot_first], prot_niov,
1180 data_direction == DMA_FROM_DEVICE);
1181 if (unlikely(ret)) {
1182 vq_err(vq, "Failed to map iov to"
1183 " prot_sgl\n");
Nicholas Bellingerde1419e2015-01-29 17:21:13 -08001184 tcm_vhost_release_cmd(&cmd->tvc_se_cmd);
1185 vhost_scsi_send_bad_target(vs, vq, head, out);
1186 continue;
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001187 }
1188 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001189 if (data_direction != DMA_NONE) {
Asias He3c63f662013-05-06 16:38:29 +08001190 ret = vhost_scsi_map_iov_to_sgl(cmd,
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001191 &vq->iov[data_first], data_niov,
Nicholas Bellinger60a01f52013-10-25 10:44:15 -07001192 data_direction == DMA_FROM_DEVICE);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001193 if (unlikely(ret)) {
1194 vq_err(vq, "Failed to map iov to sgl\n");
Nicholas Bellingerde1419e2015-01-29 17:21:13 -08001195 tcm_vhost_release_cmd(&cmd->tvc_se_cmd);
1196 vhost_scsi_send_bad_target(vs, vq, head, out);
1197 continue;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001198 }
1199 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001200 /*
1201 * Save the descriptor from vhost_get_vq_desc() to be used to
1202 * complete the virtio-scsi request in TCM callback context via
1203 * tcm_vhost_queue_data_in() and tcm_vhost_queue_status()
1204 */
Asias He3c63f662013-05-06 16:38:29 +08001205 cmd->tvc_vq_desc = head;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001206 /*
1207 * Dispatch tv_cmd descriptor for cmwq execution in process
1208 * context provided by tcm_vhost_workqueue. This also ensures
1209 * tv_cmd is executed on the same kworker CPU as this vhost
1210 * thread to gain positive L2 cache locality effects..
1211 */
Asias He3c63f662013-05-06 16:38:29 +08001212 INIT_WORK(&cmd->work, tcm_vhost_submission_work);
1213 queue_work(tcm_vhost_workqueue, &cmd->work);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001214 }
Asias Hee7802212013-05-07 14:54:35 +08001215out:
Asias He7ea206c2013-04-10 15:06:14 +08001216 mutex_unlock(&vq->mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001217}
1218
1219static void vhost_scsi_ctl_handle_kick(struct vhost_work *work)
1220{
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001221 pr_debug("%s: The handling func for control queue.\n", __func__);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001222}
1223
Asias He683bd962013-05-06 16:38:27 +08001224static void
1225tcm_vhost_send_evt(struct vhost_scsi *vs,
1226 struct tcm_vhost_tpg *tpg,
1227 struct se_lun *lun,
1228 u32 event,
1229 u32 reason)
Asias Hea6c9af82013-04-25 15:35:21 +08001230{
1231 struct tcm_vhost_evt *evt;
1232
1233 evt = tcm_vhost_allocate_evt(vs, event, reason);
1234 if (!evt)
1235 return;
1236
1237 if (tpg && lun) {
1238 /* TODO: share lun setup code with virtio-scsi.ko */
1239 /*
1240 * Note: evt->event is zeroed when we allocate it and
1241 * lun[4-7] need to be zero according to virtio-scsi spec.
1242 */
1243 evt->event.lun[0] = 0x01;
1244 evt->event.lun[1] = tpg->tport_tpgt & 0xFF;
1245 if (lun->unpacked_lun >= 256)
1246 evt->event.lun[2] = lun->unpacked_lun >> 8 | 0x40 ;
1247 evt->event.lun[3] = lun->unpacked_lun & 0xFF;
1248 }
1249
1250 llist_add(&evt->list, &vs->vs_event_list);
1251 vhost_work_queue(&vs->dev, &vs->vs_event_work);
1252}
1253
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001254static void vhost_scsi_evt_handle_kick(struct vhost_work *work)
1255{
Asias Hea6c9af82013-04-25 15:35:21 +08001256 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
1257 poll.work);
1258 struct vhost_scsi *vs = container_of(vq->dev, struct vhost_scsi, dev);
1259
1260 mutex_lock(&vq->mutex);
1261 if (!vq->private_data)
1262 goto out;
1263
1264 if (vs->vs_events_missed)
1265 tcm_vhost_send_evt(vs, NULL, NULL, VIRTIO_SCSI_T_NO_EVENT, 0);
1266out:
1267 mutex_unlock(&vq->mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001268}
1269
1270static void vhost_scsi_handle_kick(struct vhost_work *work)
1271{
1272 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
1273 poll.work);
1274 struct vhost_scsi *vs = container_of(vq->dev, struct vhost_scsi, dev);
1275
Asias He1b7f3902013-02-06 13:20:59 +08001276 vhost_scsi_handle_vq(vs, vq);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001277}
1278
Asias He4f7f46d2013-04-03 14:17:37 +08001279static void vhost_scsi_flush_vq(struct vhost_scsi *vs, int index)
1280{
Asias He3ab2e422013-04-27 11:16:48 +08001281 vhost_poll_flush(&vs->vqs[index].vq.poll);
Asias He4f7f46d2013-04-03 14:17:37 +08001282}
1283
Michael S. Tsirkin3dfbff32013-04-28 15:38:52 +03001284/* Callers must hold dev mutex */
Asias He4f7f46d2013-04-03 14:17:37 +08001285static void vhost_scsi_flush(struct vhost_scsi *vs)
1286{
Asias Hef2f0173d2013-04-27 11:16:49 +08001287 struct vhost_scsi_inflight *old_inflight[VHOST_SCSI_MAX_VQ];
Asias He4f7f46d2013-04-03 14:17:37 +08001288 int i;
1289
Asias Hef2f0173d2013-04-27 11:16:49 +08001290 /* Init new inflight and remember the old inflight */
1291 tcm_vhost_init_inflight(vs, old_inflight);
1292
1293 /*
1294 * The inflight->kref was initialized to 1. We decrement it here to
1295 * indicate the start of the flush operation so that it will reach 0
1296 * when all the reqs are finished.
1297 */
1298 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++)
1299 kref_put(&old_inflight[i]->kref, tcm_vhost_done_inflight);
1300
1301 /* Flush both the vhost poll and vhost work */
Asias He4f7f46d2013-04-03 14:17:37 +08001302 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++)
1303 vhost_scsi_flush_vq(vs, i);
1304 vhost_work_flush(&vs->dev, &vs->vs_completion_work);
Asias Hea6c9af82013-04-25 15:35:21 +08001305 vhost_work_flush(&vs->dev, &vs->vs_event_work);
Asias Hef2f0173d2013-04-27 11:16:49 +08001306
1307 /* Wait for all reqs issued before the flush to be finished */
1308 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++)
1309 wait_for_completion(&old_inflight[i]->comp);
Asias He4f7f46d2013-04-03 14:17:37 +08001310}
1311
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001312/*
1313 * Called from vhost_scsi_ioctl() context to walk the list of available
1314 * tcm_vhost_tpg with an active struct tcm_vhost_nexus
Asias Hef2b7daf2013-04-25 15:35:20 +08001315 *
1316 * The lock nesting rule is:
1317 * tcm_vhost_mutex -> vs->dev.mutex -> tpg->tv_tpg_mutex -> vq->mutex
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001318 */
Asias He683bd962013-05-06 16:38:27 +08001319static int
1320vhost_scsi_set_endpoint(struct vhost_scsi *vs,
1321 struct vhost_scsi_target *t)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001322{
Nicholas Bellingerab8edab2014-10-08 06:19:20 +00001323 struct se_portal_group *se_tpg;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001324 struct tcm_vhost_tport *tv_tport;
Asias He98718312013-05-06 16:38:28 +08001325 struct tcm_vhost_tpg *tpg;
Asias He4f7f46d2013-04-03 14:17:37 +08001326 struct tcm_vhost_tpg **vs_tpg;
1327 struct vhost_virtqueue *vq;
1328 int index, ret, i, len;
Asias He67e18cf2013-02-05 12:31:57 +08001329 bool match = false;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001330
Asias Hef2b7daf2013-04-25 15:35:20 +08001331 mutex_lock(&tcm_vhost_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001332 mutex_lock(&vs->dev.mutex);
Asias Hef2b7daf2013-04-25 15:35:20 +08001333
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001334 /* Verify that ring has been setup correctly. */
1335 for (index = 0; index < vs->dev.nvqs; ++index) {
1336 /* Verify that ring has been setup correctly. */
Asias He3ab2e422013-04-27 11:16:48 +08001337 if (!vhost_vq_access_ok(&vs->vqs[index].vq)) {
Asias Hef2b7daf2013-04-25 15:35:20 +08001338 ret = -EFAULT;
1339 goto out;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001340 }
1341 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001342
Asias He4f7f46d2013-04-03 14:17:37 +08001343 len = sizeof(vs_tpg[0]) * VHOST_SCSI_MAX_TARGET;
1344 vs_tpg = kzalloc(len, GFP_KERNEL);
1345 if (!vs_tpg) {
Asias Hef2b7daf2013-04-25 15:35:20 +08001346 ret = -ENOMEM;
1347 goto out;
Asias He4f7f46d2013-04-03 14:17:37 +08001348 }
1349 if (vs->vs_tpg)
1350 memcpy(vs_tpg, vs->vs_tpg, len);
1351
Asias He98718312013-05-06 16:38:28 +08001352 list_for_each_entry(tpg, &tcm_vhost_list, tv_tpg_list) {
1353 mutex_lock(&tpg->tv_tpg_mutex);
1354 if (!tpg->tpg_nexus) {
1355 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001356 continue;
1357 }
Asias He98718312013-05-06 16:38:28 +08001358 if (tpg->tv_tpg_vhost_count != 0) {
1359 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001360 continue;
1361 }
Asias He98718312013-05-06 16:38:28 +08001362 tv_tport = tpg->tport;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001363
Asias He67e18cf2013-02-05 12:31:57 +08001364 if (!strcmp(tv_tport->tport_name, t->vhost_wwpn)) {
Asias He98718312013-05-06 16:38:28 +08001365 if (vs->vs_tpg && vs->vs_tpg[tpg->tport_tpgt]) {
Asias He4f7f46d2013-04-03 14:17:37 +08001366 kfree(vs_tpg);
Asias He98718312013-05-06 16:38:28 +08001367 mutex_unlock(&tpg->tv_tpg_mutex);
Asias Hef2b7daf2013-04-25 15:35:20 +08001368 ret = -EEXIST;
1369 goto out;
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001370 }
Nicholas Bellingerab8edab2014-10-08 06:19:20 +00001371 /*
1372 * In order to ensure individual vhost-scsi configfs
1373 * groups cannot be removed while in use by vhost ioctl,
1374 * go ahead and take an explicit se_tpg->tpg_group.cg_item
1375 * dependency now.
1376 */
1377 se_tpg = &tpg->se_tpg;
1378 ret = configfs_depend_item(se_tpg->se_tpg_tfo->tf_subsys,
1379 &se_tpg->tpg_group.cg_item);
1380 if (ret) {
1381 pr_warn("configfs_depend_item() failed: %d\n", ret);
1382 kfree(vs_tpg);
1383 mutex_unlock(&tpg->tv_tpg_mutex);
1384 goto out;
1385 }
Asias He98718312013-05-06 16:38:28 +08001386 tpg->tv_tpg_vhost_count++;
1387 tpg->vhost_scsi = vs;
1388 vs_tpg[tpg->tport_tpgt] = tpg;
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001389 smp_mb__after_atomic();
Asias He67e18cf2013-02-05 12:31:57 +08001390 match = true;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001391 }
Asias He98718312013-05-06 16:38:28 +08001392 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001393 }
Asias He67e18cf2013-02-05 12:31:57 +08001394
1395 if (match) {
1396 memcpy(vs->vs_vhost_wwpn, t->vhost_wwpn,
1397 sizeof(vs->vs_vhost_wwpn));
Asias He4f7f46d2013-04-03 14:17:37 +08001398 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++) {
Asias He3ab2e422013-04-27 11:16:48 +08001399 vq = &vs->vqs[i].vq;
Asias He4f7f46d2013-04-03 14:17:37 +08001400 mutex_lock(&vq->mutex);
Asias He22fa90c2013-05-07 14:54:36 +08001401 vq->private_data = vs_tpg;
Asias Hedfd5d562013-04-03 14:17:38 +08001402 vhost_init_used(vq);
Asias He4f7f46d2013-04-03 14:17:37 +08001403 mutex_unlock(&vq->mutex);
1404 }
Asias He67e18cf2013-02-05 12:31:57 +08001405 ret = 0;
1406 } else {
1407 ret = -EEXIST;
1408 }
1409
Asias He4f7f46d2013-04-03 14:17:37 +08001410 /*
1411 * Act as synchronize_rcu to make sure access to
1412 * old vs->vs_tpg is finished.
1413 */
1414 vhost_scsi_flush(vs);
1415 kfree(vs->vs_tpg);
1416 vs->vs_tpg = vs_tpg;
1417
Asias Hef2b7daf2013-04-25 15:35:20 +08001418out:
Asias He67e18cf2013-02-05 12:31:57 +08001419 mutex_unlock(&vs->dev.mutex);
Asias Hef2b7daf2013-04-25 15:35:20 +08001420 mutex_unlock(&tcm_vhost_mutex);
Asias He67e18cf2013-02-05 12:31:57 +08001421 return ret;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001422}
1423
Asias He683bd962013-05-06 16:38:27 +08001424static int
1425vhost_scsi_clear_endpoint(struct vhost_scsi *vs,
1426 struct vhost_scsi_target *t)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001427{
Nicholas Bellingerab8edab2014-10-08 06:19:20 +00001428 struct se_portal_group *se_tpg;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001429 struct tcm_vhost_tport *tv_tport;
Asias He98718312013-05-06 16:38:28 +08001430 struct tcm_vhost_tpg *tpg;
Asias He4f7f46d2013-04-03 14:17:37 +08001431 struct vhost_virtqueue *vq;
1432 bool match = false;
Asias He67e18cf2013-02-05 12:31:57 +08001433 int index, ret, i;
1434 u8 target;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001435
Asias Hef2b7daf2013-04-25 15:35:20 +08001436 mutex_lock(&tcm_vhost_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001437 mutex_lock(&vs->dev.mutex);
1438 /* Verify that ring has been setup correctly. */
1439 for (index = 0; index < vs->dev.nvqs; ++index) {
Asias He3ab2e422013-04-27 11:16:48 +08001440 if (!vhost_vq_access_ok(&vs->vqs[index].vq)) {
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001441 ret = -EFAULT;
Asias He038e0af2013-03-15 09:14:05 +08001442 goto err_dev;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001443 }
1444 }
Asias He4f7f46d2013-04-03 14:17:37 +08001445
1446 if (!vs->vs_tpg) {
Asias Hef2b7daf2013-04-25 15:35:20 +08001447 ret = 0;
1448 goto err_dev;
Asias He4f7f46d2013-04-03 14:17:37 +08001449 }
1450
Asias He67e18cf2013-02-05 12:31:57 +08001451 for (i = 0; i < VHOST_SCSI_MAX_TARGET; i++) {
1452 target = i;
Asias He98718312013-05-06 16:38:28 +08001453 tpg = vs->vs_tpg[target];
1454 if (!tpg)
Asias He67e18cf2013-02-05 12:31:57 +08001455 continue;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001456
Asias He98718312013-05-06 16:38:28 +08001457 mutex_lock(&tpg->tv_tpg_mutex);
1458 tv_tport = tpg->tport;
Asias He67e18cf2013-02-05 12:31:57 +08001459 if (!tv_tport) {
1460 ret = -ENODEV;
Asias He038e0af2013-03-15 09:14:05 +08001461 goto err_tpg;
Asias He67e18cf2013-02-05 12:31:57 +08001462 }
1463
1464 if (strcmp(tv_tport->tport_name, t->vhost_wwpn)) {
Asias He98718312013-05-06 16:38:28 +08001465 pr_warn("tv_tport->tport_name: %s, tpg->tport_tpgt: %hu"
Asias He67e18cf2013-02-05 12:31:57 +08001466 " does not match t->vhost_wwpn: %s, t->vhost_tpgt: %hu\n",
Asias He98718312013-05-06 16:38:28 +08001467 tv_tport->tport_name, tpg->tport_tpgt,
Asias He67e18cf2013-02-05 12:31:57 +08001468 t->vhost_wwpn, t->vhost_tpgt);
1469 ret = -EINVAL;
Asias He038e0af2013-03-15 09:14:05 +08001470 goto err_tpg;
Asias He67e18cf2013-02-05 12:31:57 +08001471 }
Asias He98718312013-05-06 16:38:28 +08001472 tpg->tv_tpg_vhost_count--;
1473 tpg->vhost_scsi = NULL;
Asias He67e18cf2013-02-05 12:31:57 +08001474 vs->vs_tpg[target] = NULL;
Asias He4f7f46d2013-04-03 14:17:37 +08001475 match = true;
Asias He98718312013-05-06 16:38:28 +08001476 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellingerab8edab2014-10-08 06:19:20 +00001477 /*
1478 * Release se_tpg->tpg_group.cg_item configfs dependency now
1479 * to allow vhost-scsi WWPN se_tpg->tpg_group shutdown to occur.
1480 */
1481 se_tpg = &tpg->se_tpg;
1482 configfs_undepend_item(se_tpg->se_tpg_tfo->tf_subsys,
1483 &se_tpg->tpg_group.cg_item);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001484 }
Asias He4f7f46d2013-04-03 14:17:37 +08001485 if (match) {
1486 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++) {
Asias He3ab2e422013-04-27 11:16:48 +08001487 vq = &vs->vqs[i].vq;
Asias He4f7f46d2013-04-03 14:17:37 +08001488 mutex_lock(&vq->mutex);
Asias He22fa90c2013-05-07 14:54:36 +08001489 vq->private_data = NULL;
Asias He4f7f46d2013-04-03 14:17:37 +08001490 mutex_unlock(&vq->mutex);
1491 }
1492 }
1493 /*
1494 * Act as synchronize_rcu to make sure access to
1495 * old vs->vs_tpg is finished.
1496 */
1497 vhost_scsi_flush(vs);
1498 kfree(vs->vs_tpg);
1499 vs->vs_tpg = NULL;
Asias Hea6c9af82013-04-25 15:35:21 +08001500 WARN_ON(vs->vs_events_nr);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001501 mutex_unlock(&vs->dev.mutex);
Asias Hef2b7daf2013-04-25 15:35:20 +08001502 mutex_unlock(&tcm_vhost_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001503 return 0;
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001504
Asias He038e0af2013-03-15 09:14:05 +08001505err_tpg:
Asias He98718312013-05-06 16:38:28 +08001506 mutex_unlock(&tpg->tv_tpg_mutex);
Asias He038e0af2013-03-15 09:14:05 +08001507err_dev:
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001508 mutex_unlock(&vs->dev.mutex);
Asias Hef2b7daf2013-04-25 15:35:20 +08001509 mutex_unlock(&tcm_vhost_mutex);
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001510 return ret;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001511}
1512
Asias He4f7f46d2013-04-03 14:17:37 +08001513static int vhost_scsi_set_features(struct vhost_scsi *vs, u64 features)
1514{
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001515 struct vhost_virtqueue *vq;
1516 int i;
1517
Asias He4f7f46d2013-04-03 14:17:37 +08001518 if (features & ~VHOST_SCSI_FEATURES)
1519 return -EOPNOTSUPP;
1520
1521 mutex_lock(&vs->dev.mutex);
1522 if ((features & (1 << VHOST_F_LOG_ALL)) &&
1523 !vhost_log_access_ok(&vs->dev)) {
1524 mutex_unlock(&vs->dev.mutex);
1525 return -EFAULT;
1526 }
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001527
1528 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++) {
1529 vq = &vs->vqs[i].vq;
1530 mutex_lock(&vq->mutex);
1531 vq->acked_features = features;
1532 mutex_unlock(&vq->mutex);
1533 }
Asias He4f7f46d2013-04-03 14:17:37 +08001534 mutex_unlock(&vs->dev.mutex);
1535 return 0;
1536}
1537
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001538static int vhost_scsi_open(struct inode *inode, struct file *f)
1539{
Asias Hec7289312013-05-06 16:38:26 +08001540 struct vhost_scsi *vs;
Asias He3ab2e422013-04-27 11:16:48 +08001541 struct vhost_virtqueue **vqs;
Michael S. Tsirkin595cb752013-09-17 09:30:34 +03001542 int r = -ENOMEM, i;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001543
Michael S. Tsirkin595cb752013-09-17 09:30:34 +03001544 vs = kzalloc(sizeof(*vs), GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT);
1545 if (!vs) {
1546 vs = vzalloc(sizeof(*vs));
1547 if (!vs)
1548 goto err_vs;
1549 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001550
Asias He3ab2e422013-04-27 11:16:48 +08001551 vqs = kmalloc(VHOST_SCSI_MAX_VQ * sizeof(*vqs), GFP_KERNEL);
Michael S. Tsirkin595cb752013-09-17 09:30:34 +03001552 if (!vqs)
1553 goto err_vqs;
Asias He3ab2e422013-04-27 11:16:48 +08001554
Asias Hec7289312013-05-06 16:38:26 +08001555 vhost_work_init(&vs->vs_completion_work, vhost_scsi_complete_cmd_work);
1556 vhost_work_init(&vs->vs_event_work, tcm_vhost_evt_work);
Asias Hea6c9af82013-04-25 15:35:21 +08001557
Asias Hec7289312013-05-06 16:38:26 +08001558 vs->vs_events_nr = 0;
1559 vs->vs_events_missed = false;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001560
Asias Hec7289312013-05-06 16:38:26 +08001561 vqs[VHOST_SCSI_VQ_CTL] = &vs->vqs[VHOST_SCSI_VQ_CTL].vq;
1562 vqs[VHOST_SCSI_VQ_EVT] = &vs->vqs[VHOST_SCSI_VQ_EVT].vq;
1563 vs->vqs[VHOST_SCSI_VQ_CTL].vq.handle_kick = vhost_scsi_ctl_handle_kick;
1564 vs->vqs[VHOST_SCSI_VQ_EVT].vq.handle_kick = vhost_scsi_evt_handle_kick;
Asias He3ab2e422013-04-27 11:16:48 +08001565 for (i = VHOST_SCSI_VQ_IO; i < VHOST_SCSI_MAX_VQ; i++) {
Asias Hec7289312013-05-06 16:38:26 +08001566 vqs[i] = &vs->vqs[i].vq;
1567 vs->vqs[i].vq.handle_kick = vhost_scsi_handle_kick;
Asias He3ab2e422013-04-27 11:16:48 +08001568 }
Zhi Yong Wu59566b6e2013-12-07 04:13:03 +08001569 vhost_dev_init(&vs->dev, vqs, VHOST_SCSI_MAX_VQ);
Asias Hef2f0173d2013-04-27 11:16:49 +08001570
Asias Hec7289312013-05-06 16:38:26 +08001571 tcm_vhost_init_inflight(vs, NULL);
Asias Hef2f0173d2013-04-27 11:16:49 +08001572
Asias Hec7289312013-05-06 16:38:26 +08001573 f->private_data = vs;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001574 return 0;
Michael S. Tsirkin595cb752013-09-17 09:30:34 +03001575
Michael S. Tsirkin595cb752013-09-17 09:30:34 +03001576err_vqs:
Michael S. Tsirkin68404442014-06-12 19:00:01 +03001577 kvfree(vs);
Michael S. Tsirkin595cb752013-09-17 09:30:34 +03001578err_vs:
1579 return r;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001580}
1581
1582static int vhost_scsi_release(struct inode *inode, struct file *f)
1583{
Asias Hec7289312013-05-06 16:38:26 +08001584 struct vhost_scsi *vs = f->private_data;
Asias He67e18cf2013-02-05 12:31:57 +08001585 struct vhost_scsi_target t;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001586
Asias Hec7289312013-05-06 16:38:26 +08001587 mutex_lock(&vs->dev.mutex);
1588 memcpy(t.vhost_wwpn, vs->vs_vhost_wwpn, sizeof(t.vhost_wwpn));
1589 mutex_unlock(&vs->dev.mutex);
1590 vhost_scsi_clear_endpoint(vs, &t);
1591 vhost_dev_stop(&vs->dev);
1592 vhost_dev_cleanup(&vs->dev, false);
Asias Hea6c9af82013-04-25 15:35:21 +08001593 /* Jobs can re-queue themselves in evt kick handler. Do extra flush. */
Asias Hec7289312013-05-06 16:38:26 +08001594 vhost_scsi_flush(vs);
1595 kfree(vs->dev.vqs);
Michael S. Tsirkin68404442014-06-12 19:00:01 +03001596 kvfree(vs);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001597 return 0;
1598}
1599
Asias He683bd962013-05-06 16:38:27 +08001600static long
1601vhost_scsi_ioctl(struct file *f,
1602 unsigned int ioctl,
1603 unsigned long arg)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001604{
1605 struct vhost_scsi *vs = f->private_data;
1606 struct vhost_scsi_target backend;
1607 void __user *argp = (void __user *)arg;
1608 u64 __user *featurep = argp;
Asias He11c63412013-04-25 15:35:22 +08001609 u32 __user *eventsp = argp;
1610 u32 events_missed;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001611 u64 features;
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001612 int r, abi_version = VHOST_SCSI_ABI_VERSION;
Asias He3ab2e422013-04-27 11:16:48 +08001613 struct vhost_virtqueue *vq = &vs->vqs[VHOST_SCSI_VQ_EVT].vq;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001614
1615 switch (ioctl) {
1616 case VHOST_SCSI_SET_ENDPOINT:
1617 if (copy_from_user(&backend, argp, sizeof backend))
1618 return -EFAULT;
Michael S. Tsirkin6de71452012-08-18 15:44:09 -07001619 if (backend.reserved != 0)
1620 return -EOPNOTSUPP;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001621
1622 return vhost_scsi_set_endpoint(vs, &backend);
1623 case VHOST_SCSI_CLEAR_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_clear_endpoint(vs, &backend);
1630 case VHOST_SCSI_GET_ABI_VERSION:
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001631 if (copy_to_user(argp, &abi_version, sizeof abi_version))
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001632 return -EFAULT;
1633 return 0;
Asias He11c63412013-04-25 15:35:22 +08001634 case VHOST_SCSI_SET_EVENTS_MISSED:
1635 if (get_user(events_missed, eventsp))
1636 return -EFAULT;
1637 mutex_lock(&vq->mutex);
1638 vs->vs_events_missed = events_missed;
1639 mutex_unlock(&vq->mutex);
1640 return 0;
1641 case VHOST_SCSI_GET_EVENTS_MISSED:
1642 mutex_lock(&vq->mutex);
1643 events_missed = vs->vs_events_missed;
1644 mutex_unlock(&vq->mutex);
1645 if (put_user(events_missed, eventsp))
1646 return -EFAULT;
1647 return 0;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001648 case VHOST_GET_FEATURES:
Nicholas Bellinger5dade712013-03-27 17:23:41 -07001649 features = VHOST_SCSI_FEATURES;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001650 if (copy_to_user(featurep, &features, sizeof features))
1651 return -EFAULT;
1652 return 0;
1653 case VHOST_SET_FEATURES:
1654 if (copy_from_user(&features, featurep, sizeof features))
1655 return -EFAULT;
1656 return vhost_scsi_set_features(vs, features);
1657 default:
1658 mutex_lock(&vs->dev.mutex);
Michael S. Tsirkin935cdee2012-12-06 14:03:34 +02001659 r = vhost_dev_ioctl(&vs->dev, ioctl, argp);
1660 /* TODO: flush backend after dev ioctl. */
1661 if (r == -ENOIOCTLCMD)
1662 r = vhost_vring_ioctl(&vs->dev, ioctl, argp);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001663 mutex_unlock(&vs->dev.mutex);
1664 return r;
1665 }
1666}
1667
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001668#ifdef CONFIG_COMPAT
1669static long vhost_scsi_compat_ioctl(struct file *f, unsigned int ioctl,
1670 unsigned long arg)
1671{
1672 return vhost_scsi_ioctl(f, ioctl, (unsigned long)compat_ptr(arg));
1673}
1674#endif
1675
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001676static const struct file_operations vhost_scsi_fops = {
1677 .owner = THIS_MODULE,
1678 .release = vhost_scsi_release,
1679 .unlocked_ioctl = vhost_scsi_ioctl,
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001680#ifdef CONFIG_COMPAT
1681 .compat_ioctl = vhost_scsi_compat_ioctl,
1682#endif
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001683 .open = vhost_scsi_open,
1684 .llseek = noop_llseek,
1685};
1686
1687static struct miscdevice vhost_scsi_misc = {
1688 MISC_DYNAMIC_MINOR,
1689 "vhost-scsi",
1690 &vhost_scsi_fops,
1691};
1692
1693static int __init vhost_scsi_register(void)
1694{
1695 return misc_register(&vhost_scsi_misc);
1696}
1697
1698static int vhost_scsi_deregister(void)
1699{
1700 return misc_deregister(&vhost_scsi_misc);
1701}
1702
1703static char *tcm_vhost_dump_proto_id(struct tcm_vhost_tport *tport)
1704{
1705 switch (tport->tport_proto_id) {
1706 case SCSI_PROTOCOL_SAS:
1707 return "SAS";
1708 case SCSI_PROTOCOL_FCP:
1709 return "FCP";
1710 case SCSI_PROTOCOL_ISCSI:
1711 return "iSCSI";
1712 default:
1713 break;
1714 }
1715
1716 return "Unknown";
1717}
1718
Asias He683bd962013-05-06 16:38:27 +08001719static void
1720tcm_vhost_do_plug(struct tcm_vhost_tpg *tpg,
1721 struct se_lun *lun, bool plug)
Asias Hea6c9af82013-04-25 15:35:21 +08001722{
1723
1724 struct vhost_scsi *vs = tpg->vhost_scsi;
1725 struct vhost_virtqueue *vq;
1726 u32 reason;
1727
1728 if (!vs)
1729 return;
1730
1731 mutex_lock(&vs->dev.mutex);
Asias Hea6c9af82013-04-25 15:35:21 +08001732
1733 if (plug)
1734 reason = VIRTIO_SCSI_EVT_RESET_RESCAN;
1735 else
1736 reason = VIRTIO_SCSI_EVT_RESET_REMOVED;
1737
Asias He3ab2e422013-04-27 11:16:48 +08001738 vq = &vs->vqs[VHOST_SCSI_VQ_EVT].vq;
Asias Hea6c9af82013-04-25 15:35:21 +08001739 mutex_lock(&vq->mutex);
Michael S. Tsirkinea16c512014-06-05 15:20:23 +03001740 if (vhost_has_feature(vq, VIRTIO_SCSI_F_HOTPLUG))
1741 tcm_vhost_send_evt(vs, tpg, lun,
1742 VIRTIO_SCSI_T_TRANSPORT_RESET, reason);
Asias Hea6c9af82013-04-25 15:35:21 +08001743 mutex_unlock(&vq->mutex);
1744 mutex_unlock(&vs->dev.mutex);
1745}
1746
1747static void tcm_vhost_hotplug(struct tcm_vhost_tpg *tpg, struct se_lun *lun)
1748{
1749 tcm_vhost_do_plug(tpg, lun, true);
1750}
1751
1752static void tcm_vhost_hotunplug(struct tcm_vhost_tpg *tpg, struct se_lun *lun)
1753{
1754 tcm_vhost_do_plug(tpg, lun, false);
1755}
1756
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001757static int tcm_vhost_port_link(struct se_portal_group *se_tpg,
Asias He683bd962013-05-06 16:38:27 +08001758 struct se_lun *lun)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001759{
Asias He98718312013-05-06 16:38:28 +08001760 struct tcm_vhost_tpg *tpg = container_of(se_tpg,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001761 struct tcm_vhost_tpg, se_tpg);
1762
Asias Hea6c9af82013-04-25 15:35:21 +08001763 mutex_lock(&tcm_vhost_mutex);
1764
Asias He98718312013-05-06 16:38:28 +08001765 mutex_lock(&tpg->tv_tpg_mutex);
1766 tpg->tv_tpg_port_count++;
1767 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001768
Asias He98718312013-05-06 16:38:28 +08001769 tcm_vhost_hotplug(tpg, lun);
Asias Hea6c9af82013-04-25 15:35:21 +08001770
1771 mutex_unlock(&tcm_vhost_mutex);
1772
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001773 return 0;
1774}
1775
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001776static void tcm_vhost_port_unlink(struct se_portal_group *se_tpg,
Asias He683bd962013-05-06 16:38:27 +08001777 struct se_lun *lun)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001778{
Asias He98718312013-05-06 16:38:28 +08001779 struct tcm_vhost_tpg *tpg = container_of(se_tpg,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001780 struct tcm_vhost_tpg, se_tpg);
1781
Asias Hea6c9af82013-04-25 15:35:21 +08001782 mutex_lock(&tcm_vhost_mutex);
1783
Asias He98718312013-05-06 16:38:28 +08001784 mutex_lock(&tpg->tv_tpg_mutex);
1785 tpg->tv_tpg_port_count--;
1786 mutex_unlock(&tpg->tv_tpg_mutex);
Asias Hea6c9af82013-04-25 15:35:21 +08001787
Asias He98718312013-05-06 16:38:28 +08001788 tcm_vhost_hotunplug(tpg, lun);
Asias Hea6c9af82013-04-25 15:35:21 +08001789
1790 mutex_unlock(&tcm_vhost_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001791}
1792
Asias He683bd962013-05-06 16:38:27 +08001793static struct se_node_acl *
1794tcm_vhost_make_nodeacl(struct se_portal_group *se_tpg,
1795 struct config_group *group,
1796 const char *name)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001797{
1798 struct se_node_acl *se_nacl, *se_nacl_new;
1799 struct tcm_vhost_nacl *nacl;
1800 u64 wwpn = 0;
1801 u32 nexus_depth;
1802
1803 /* tcm_vhost_parse_wwn(name, &wwpn, 1) < 0)
1804 return ERR_PTR(-EINVAL); */
1805 se_nacl_new = tcm_vhost_alloc_fabric_acl(se_tpg);
1806 if (!se_nacl_new)
1807 return ERR_PTR(-ENOMEM);
1808
1809 nexus_depth = 1;
1810 /*
1811 * se_nacl_new may be released by core_tpg_add_initiator_node_acl()
1812 * when converting a NodeACL from demo mode -> explict
1813 */
1814 se_nacl = core_tpg_add_initiator_node_acl(se_tpg, se_nacl_new,
1815 name, nexus_depth);
1816 if (IS_ERR(se_nacl)) {
1817 tcm_vhost_release_fabric_acl(se_tpg, se_nacl_new);
1818 return se_nacl;
1819 }
1820 /*
1821 * Locate our struct tcm_vhost_nacl and set the FC Nport WWPN
1822 */
1823 nacl = container_of(se_nacl, struct tcm_vhost_nacl, se_node_acl);
1824 nacl->iport_wwpn = wwpn;
1825
1826 return se_nacl;
1827}
1828
1829static void tcm_vhost_drop_nodeacl(struct se_node_acl *se_acl)
1830{
1831 struct tcm_vhost_nacl *nacl = container_of(se_acl,
1832 struct tcm_vhost_nacl, se_node_acl);
1833 core_tpg_del_initiator_node_acl(se_acl->se_tpg, se_acl, 1);
1834 kfree(nacl);
1835}
1836
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001837static void tcm_vhost_free_cmd_map_res(struct tcm_vhost_nexus *nexus,
1838 struct se_session *se_sess)
1839{
1840 struct tcm_vhost_cmd *tv_cmd;
1841 unsigned int i;
1842
1843 if (!se_sess->sess_cmd_map)
1844 return;
1845
1846 for (i = 0; i < TCM_VHOST_DEFAULT_TAGS; i++) {
1847 tv_cmd = &((struct tcm_vhost_cmd *)se_sess->sess_cmd_map)[i];
1848
1849 kfree(tv_cmd->tvc_sgl);
Nicholas Bellingerb1935f62014-02-22 18:08:24 -08001850 kfree(tv_cmd->tvc_prot_sgl);
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001851 kfree(tv_cmd->tvc_upages);
1852 }
1853}
1854
Asias He98718312013-05-06 16:38:28 +08001855static int tcm_vhost_make_nexus(struct tcm_vhost_tpg *tpg,
Asias He683bd962013-05-06 16:38:27 +08001856 const char *name)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001857{
1858 struct se_portal_group *se_tpg;
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001859 struct se_session *se_sess;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001860 struct tcm_vhost_nexus *tv_nexus;
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001861 struct tcm_vhost_cmd *tv_cmd;
1862 unsigned int i;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001863
Asias He98718312013-05-06 16:38:28 +08001864 mutex_lock(&tpg->tv_tpg_mutex);
1865 if (tpg->tpg_nexus) {
1866 mutex_unlock(&tpg->tv_tpg_mutex);
1867 pr_debug("tpg->tpg_nexus already exists\n");
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001868 return -EEXIST;
1869 }
Asias He98718312013-05-06 16:38:28 +08001870 se_tpg = &tpg->se_tpg;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001871
1872 tv_nexus = kzalloc(sizeof(struct tcm_vhost_nexus), GFP_KERNEL);
1873 if (!tv_nexus) {
Asias He98718312013-05-06 16:38:28 +08001874 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001875 pr_err("Unable to allocate struct tcm_vhost_nexus\n");
1876 return -ENOMEM;
1877 }
1878 /*
Nicholas Bellinger4824d3b2013-06-07 17:47:46 -07001879 * Initialize the struct se_session pointer and setup tagpool
1880 * for struct tcm_vhost_cmd descriptors
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001881 */
Nicholas Bellinger4824d3b2013-06-07 17:47:46 -07001882 tv_nexus->tvn_se_sess = transport_init_session_tags(
1883 TCM_VHOST_DEFAULT_TAGS,
Nicholas Bellingere70beee2014-04-02 12:52:38 -07001884 sizeof(struct tcm_vhost_cmd),
Nicholas Bellinger95e7c432014-02-22 18:22:31 -08001885 TARGET_PROT_DIN_PASS | TARGET_PROT_DOUT_PASS);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001886 if (IS_ERR(tv_nexus->tvn_se_sess)) {
Asias He98718312013-05-06 16:38:28 +08001887 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001888 kfree(tv_nexus);
1889 return -ENOMEM;
1890 }
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001891 se_sess = tv_nexus->tvn_se_sess;
1892 for (i = 0; i < TCM_VHOST_DEFAULT_TAGS; i++) {
1893 tv_cmd = &((struct tcm_vhost_cmd *)se_sess->sess_cmd_map)[i];
1894
1895 tv_cmd->tvc_sgl = kzalloc(sizeof(struct scatterlist) *
1896 TCM_VHOST_PREALLOC_SGLS, GFP_KERNEL);
1897 if (!tv_cmd->tvc_sgl) {
1898 mutex_unlock(&tpg->tv_tpg_mutex);
1899 pr_err("Unable to allocate tv_cmd->tvc_sgl\n");
1900 goto out;
1901 }
1902
1903 tv_cmd->tvc_upages = kzalloc(sizeof(struct page *) *
Nicholas Bellinger5a01d082014-02-22 18:34:08 -08001904 TCM_VHOST_PREALLOC_UPAGES, GFP_KERNEL);
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001905 if (!tv_cmd->tvc_upages) {
1906 mutex_unlock(&tpg->tv_tpg_mutex);
1907 pr_err("Unable to allocate tv_cmd->tvc_upages\n");
1908 goto out;
1909 }
Nicholas Bellingerb1935f62014-02-22 18:08:24 -08001910
1911 tv_cmd->tvc_prot_sgl = kzalloc(sizeof(struct scatterlist) *
1912 TCM_VHOST_PREALLOC_PROT_SGLS, GFP_KERNEL);
1913 if (!tv_cmd->tvc_prot_sgl) {
1914 mutex_unlock(&tpg->tv_tpg_mutex);
1915 pr_err("Unable to allocate tv_cmd->tvc_prot_sgl\n");
1916 goto out;
1917 }
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001918 }
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001919 /*
1920 * Since we are running in 'demo mode' this call with generate a
1921 * struct se_node_acl for the tcm_vhost struct se_portal_group with
1922 * the SCSI Initiator port name of the passed configfs group 'name'.
1923 */
1924 tv_nexus->tvn_se_sess->se_node_acl = core_tpg_check_initiator_node_acl(
1925 se_tpg, (unsigned char *)name);
1926 if (!tv_nexus->tvn_se_sess->se_node_acl) {
Asias He98718312013-05-06 16:38:28 +08001927 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001928 pr_debug("core_tpg_check_initiator_node_acl() failed"
1929 " for %s\n", name);
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001930 goto out;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001931 }
1932 /*
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001933 * Now register the TCM vhost virtual I_T Nexus as active with the
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001934 * call to __transport_register_session()
1935 */
1936 __transport_register_session(se_tpg, tv_nexus->tvn_se_sess->se_node_acl,
1937 tv_nexus->tvn_se_sess, tv_nexus);
Asias He98718312013-05-06 16:38:28 +08001938 tpg->tpg_nexus = tv_nexus;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001939
Asias He98718312013-05-06 16:38:28 +08001940 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001941 return 0;
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001942
1943out:
1944 tcm_vhost_free_cmd_map_res(tv_nexus, se_sess);
1945 transport_free_session(se_sess);
1946 kfree(tv_nexus);
1947 return -ENOMEM;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001948}
1949
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001950static int tcm_vhost_drop_nexus(struct tcm_vhost_tpg *tpg)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001951{
1952 struct se_session *se_sess;
1953 struct tcm_vhost_nexus *tv_nexus;
1954
1955 mutex_lock(&tpg->tv_tpg_mutex);
1956 tv_nexus = tpg->tpg_nexus;
1957 if (!tv_nexus) {
1958 mutex_unlock(&tpg->tv_tpg_mutex);
1959 return -ENODEV;
1960 }
1961
1962 se_sess = tv_nexus->tvn_se_sess;
1963 if (!se_sess) {
1964 mutex_unlock(&tpg->tv_tpg_mutex);
1965 return -ENODEV;
1966 }
1967
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001968 if (tpg->tv_tpg_port_count != 0) {
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001969 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001970 pr_err("Unable to remove TCM_vhost I_T Nexus with"
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001971 " active TPG port count: %d\n",
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001972 tpg->tv_tpg_port_count);
1973 return -EBUSY;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001974 }
1975
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001976 if (tpg->tv_tpg_vhost_count != 0) {
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001977 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001978 pr_err("Unable to remove TCM_vhost I_T Nexus with"
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001979 " active TPG vhost count: %d\n",
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001980 tpg->tv_tpg_vhost_count);
1981 return -EBUSY;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001982 }
1983
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001984 pr_debug("TCM_vhost_ConfigFS: Removing I_T Nexus to emulated"
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001985 " %s Initiator Port: %s\n", tcm_vhost_dump_proto_id(tpg->tport),
1986 tv_nexus->tvn_se_sess->se_node_acl->initiatorname);
Nicholas Bellinger3aee26b2013-06-21 14:32:04 -07001987
1988 tcm_vhost_free_cmd_map_res(tv_nexus, se_sess);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001989 /*
Nicholas Bellinger101998f2012-07-30 13:30:00 -07001990 * Release the SCSI I_T Nexus to the emulated vhost Target Port
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07001991 */
1992 transport_deregister_session(tv_nexus->tvn_se_sess);
1993 tpg->tpg_nexus = NULL;
1994 mutex_unlock(&tpg->tv_tpg_mutex);
1995
1996 kfree(tv_nexus);
1997 return 0;
1998}
1999
Nicholas Bellinger101998f2012-07-30 13:30:00 -07002000static ssize_t tcm_vhost_tpg_show_nexus(struct se_portal_group *se_tpg,
Asias He683bd962013-05-06 16:38:27 +08002001 char *page)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002002{
Asias He98718312013-05-06 16:38:28 +08002003 struct tcm_vhost_tpg *tpg = container_of(se_tpg,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002004 struct tcm_vhost_tpg, se_tpg);
2005 struct tcm_vhost_nexus *tv_nexus;
2006 ssize_t ret;
2007
Asias He98718312013-05-06 16:38:28 +08002008 mutex_lock(&tpg->tv_tpg_mutex);
2009 tv_nexus = tpg->tpg_nexus;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002010 if (!tv_nexus) {
Asias He98718312013-05-06 16:38:28 +08002011 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002012 return -ENODEV;
2013 }
2014 ret = snprintf(page, PAGE_SIZE, "%s\n",
2015 tv_nexus->tvn_se_sess->se_node_acl->initiatorname);
Asias He98718312013-05-06 16:38:28 +08002016 mutex_unlock(&tpg->tv_tpg_mutex);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002017
2018 return ret;
2019}
2020
Nicholas Bellinger101998f2012-07-30 13:30:00 -07002021static ssize_t tcm_vhost_tpg_store_nexus(struct se_portal_group *se_tpg,
Asias He683bd962013-05-06 16:38:27 +08002022 const char *page,
2023 size_t count)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002024{
Asias He98718312013-05-06 16:38:28 +08002025 struct tcm_vhost_tpg *tpg = container_of(se_tpg,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002026 struct tcm_vhost_tpg, se_tpg);
Asias He98718312013-05-06 16:38:28 +08002027 struct tcm_vhost_tport *tport_wwn = tpg->tport;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002028 unsigned char i_port[TCM_VHOST_NAMELEN], *ptr, *port_ptr;
2029 int ret;
2030 /*
2031 * Shutdown the active I_T nexus if 'NULL' is passed..
2032 */
2033 if (!strncmp(page, "NULL", 4)) {
Asias He98718312013-05-06 16:38:28 +08002034 ret = tcm_vhost_drop_nexus(tpg);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002035 return (!ret) ? count : ret;
2036 }
2037 /*
2038 * Otherwise make sure the passed virtual Initiator port WWN matches
2039 * the fabric protocol_id set in tcm_vhost_make_tport(), and call
2040 * tcm_vhost_make_nexus().
2041 */
2042 if (strlen(page) >= TCM_VHOST_NAMELEN) {
2043 pr_err("Emulated NAA Sas Address: %s, exceeds"
2044 " max: %d\n", page, TCM_VHOST_NAMELEN);
2045 return -EINVAL;
2046 }
2047 snprintf(&i_port[0], TCM_VHOST_NAMELEN, "%s", page);
2048
2049 ptr = strstr(i_port, "naa.");
2050 if (ptr) {
2051 if (tport_wwn->tport_proto_id != SCSI_PROTOCOL_SAS) {
2052 pr_err("Passed SAS Initiator Port %s does not"
2053 " match target port protoid: %s\n", i_port,
2054 tcm_vhost_dump_proto_id(tport_wwn));
2055 return -EINVAL;
2056 }
2057 port_ptr = &i_port[0];
2058 goto check_newline;
2059 }
2060 ptr = strstr(i_port, "fc.");
2061 if (ptr) {
2062 if (tport_wwn->tport_proto_id != SCSI_PROTOCOL_FCP) {
2063 pr_err("Passed FCP Initiator Port %s does not"
2064 " match target port protoid: %s\n", i_port,
2065 tcm_vhost_dump_proto_id(tport_wwn));
2066 return -EINVAL;
2067 }
2068 port_ptr = &i_port[3]; /* Skip over "fc." */
2069 goto check_newline;
2070 }
2071 ptr = strstr(i_port, "iqn.");
2072 if (ptr) {
2073 if (tport_wwn->tport_proto_id != SCSI_PROTOCOL_ISCSI) {
2074 pr_err("Passed iSCSI Initiator Port %s does not"
2075 " match target port protoid: %s\n", i_port,
2076 tcm_vhost_dump_proto_id(tport_wwn));
2077 return -EINVAL;
2078 }
2079 port_ptr = &i_port[0];
2080 goto check_newline;
2081 }
2082 pr_err("Unable to locate prefix for emulated Initiator Port:"
2083 " %s\n", i_port);
2084 return -EINVAL;
2085 /*
2086 * Clear any trailing newline for the NAA WWN
2087 */
2088check_newline:
2089 if (i_port[strlen(i_port)-1] == '\n')
2090 i_port[strlen(i_port)-1] = '\0';
2091
Asias He98718312013-05-06 16:38:28 +08002092 ret = tcm_vhost_make_nexus(tpg, port_ptr);
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002093 if (ret < 0)
2094 return ret;
2095
2096 return count;
2097}
2098
2099TF_TPG_BASE_ATTR(tcm_vhost, nexus, S_IRUGO | S_IWUSR);
2100
2101static struct configfs_attribute *tcm_vhost_tpg_attrs[] = {
2102 &tcm_vhost_tpg_nexus.attr,
2103 NULL,
2104};
2105
Asias He683bd962013-05-06 16:38:27 +08002106static struct se_portal_group *
2107tcm_vhost_make_tpg(struct se_wwn *wwn,
2108 struct config_group *group,
2109 const char *name)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002110{
2111 struct tcm_vhost_tport *tport = container_of(wwn,
2112 struct tcm_vhost_tport, tport_wwn);
2113
2114 struct tcm_vhost_tpg *tpg;
2115 unsigned long tpgt;
2116 int ret;
2117
2118 if (strstr(name, "tpgt_") != name)
2119 return ERR_PTR(-EINVAL);
2120 if (kstrtoul(name + 5, 10, &tpgt) || tpgt > UINT_MAX)
2121 return ERR_PTR(-EINVAL);
2122
2123 tpg = kzalloc(sizeof(struct tcm_vhost_tpg), GFP_KERNEL);
2124 if (!tpg) {
2125 pr_err("Unable to allocate struct tcm_vhost_tpg");
2126 return ERR_PTR(-ENOMEM);
2127 }
2128 mutex_init(&tpg->tv_tpg_mutex);
2129 INIT_LIST_HEAD(&tpg->tv_tpg_list);
2130 tpg->tport = tport;
2131 tpg->tport_tpgt = tpgt;
2132
2133 ret = core_tpg_register(&tcm_vhost_fabric_configfs->tf_ops, wwn,
2134 &tpg->se_tpg, tpg, TRANSPORT_TPG_TYPE_NORMAL);
2135 if (ret < 0) {
2136 kfree(tpg);
2137 return NULL;
2138 }
2139 mutex_lock(&tcm_vhost_mutex);
2140 list_add_tail(&tpg->tv_tpg_list, &tcm_vhost_list);
2141 mutex_unlock(&tcm_vhost_mutex);
2142
2143 return &tpg->se_tpg;
2144}
2145
2146static void tcm_vhost_drop_tpg(struct se_portal_group *se_tpg)
2147{
2148 struct tcm_vhost_tpg *tpg = container_of(se_tpg,
2149 struct tcm_vhost_tpg, se_tpg);
2150
2151 mutex_lock(&tcm_vhost_mutex);
2152 list_del(&tpg->tv_tpg_list);
2153 mutex_unlock(&tcm_vhost_mutex);
2154 /*
Nicholas Bellinger101998f2012-07-30 13:30:00 -07002155 * Release the virtual I_T Nexus for this vhost TPG
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002156 */
2157 tcm_vhost_drop_nexus(tpg);
2158 /*
2159 * Deregister the se_tpg from TCM..
2160 */
2161 core_tpg_deregister(se_tpg);
2162 kfree(tpg);
2163}
2164
Asias He683bd962013-05-06 16:38:27 +08002165static struct se_wwn *
2166tcm_vhost_make_tport(struct target_fabric_configfs *tf,
2167 struct config_group *group,
2168 const char *name)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002169{
2170 struct tcm_vhost_tport *tport;
2171 char *ptr;
2172 u64 wwpn = 0;
2173 int off = 0;
2174
2175 /* if (tcm_vhost_parse_wwn(name, &wwpn, 1) < 0)
2176 return ERR_PTR(-EINVAL); */
2177
2178 tport = kzalloc(sizeof(struct tcm_vhost_tport), GFP_KERNEL);
2179 if (!tport) {
2180 pr_err("Unable to allocate struct tcm_vhost_tport");
2181 return ERR_PTR(-ENOMEM);
2182 }
2183 tport->tport_wwpn = wwpn;
2184 /*
2185 * Determine the emulated Protocol Identifier and Target Port Name
2186 * based on the incoming configfs directory name.
2187 */
2188 ptr = strstr(name, "naa.");
2189 if (ptr) {
2190 tport->tport_proto_id = SCSI_PROTOCOL_SAS;
2191 goto check_len;
2192 }
2193 ptr = strstr(name, "fc.");
2194 if (ptr) {
2195 tport->tport_proto_id = SCSI_PROTOCOL_FCP;
2196 off = 3; /* Skip over "fc." */
2197 goto check_len;
2198 }
2199 ptr = strstr(name, "iqn.");
2200 if (ptr) {
2201 tport->tport_proto_id = SCSI_PROTOCOL_ISCSI;
2202 goto check_len;
2203 }
2204
2205 pr_err("Unable to locate prefix for emulated Target Port:"
2206 " %s\n", name);
2207 kfree(tport);
2208 return ERR_PTR(-EINVAL);
2209
2210check_len:
2211 if (strlen(name) >= TCM_VHOST_NAMELEN) {
2212 pr_err("Emulated %s Address: %s, exceeds"
2213 " max: %d\n", name, tcm_vhost_dump_proto_id(tport),
2214 TCM_VHOST_NAMELEN);
2215 kfree(tport);
2216 return ERR_PTR(-EINVAL);
2217 }
2218 snprintf(&tport->tport_name[0], TCM_VHOST_NAMELEN, "%s", &name[off]);
2219
2220 pr_debug("TCM_VHost_ConfigFS: Allocated emulated Target"
2221 " %s Address: %s\n", tcm_vhost_dump_proto_id(tport), name);
2222
2223 return &tport->tport_wwn;
2224}
2225
2226static void tcm_vhost_drop_tport(struct se_wwn *wwn)
2227{
2228 struct tcm_vhost_tport *tport = container_of(wwn,
2229 struct tcm_vhost_tport, tport_wwn);
2230
2231 pr_debug("TCM_VHost_ConfigFS: Deallocating emulated Target"
2232 " %s Address: %s\n", tcm_vhost_dump_proto_id(tport),
2233 tport->tport_name);
2234
2235 kfree(tport);
2236}
2237
Asias He683bd962013-05-06 16:38:27 +08002238static ssize_t
2239tcm_vhost_wwn_show_attr_version(struct target_fabric_configfs *tf,
2240 char *page)
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002241{
2242 return sprintf(page, "TCM_VHOST fabric module %s on %s/%s"
2243 "on "UTS_RELEASE"\n", TCM_VHOST_VERSION, utsname()->sysname,
2244 utsname()->machine);
2245}
2246
2247TF_WWN_ATTR_RO(tcm_vhost, version);
2248
2249static struct configfs_attribute *tcm_vhost_wwn_attrs[] = {
2250 &tcm_vhost_wwn_version.attr,
2251 NULL,
2252};
2253
2254static struct target_core_fabric_ops tcm_vhost_ops = {
2255 .get_fabric_name = tcm_vhost_get_fabric_name,
2256 .get_fabric_proto_ident = tcm_vhost_get_fabric_proto_ident,
2257 .tpg_get_wwn = tcm_vhost_get_fabric_wwn,
2258 .tpg_get_tag = tcm_vhost_get_tag,
2259 .tpg_get_default_depth = tcm_vhost_get_default_depth,
2260 .tpg_get_pr_transport_id = tcm_vhost_get_pr_transport_id,
2261 .tpg_get_pr_transport_id_len = tcm_vhost_get_pr_transport_id_len,
2262 .tpg_parse_pr_out_transport_id = tcm_vhost_parse_pr_out_transport_id,
2263 .tpg_check_demo_mode = tcm_vhost_check_true,
2264 .tpg_check_demo_mode_cache = tcm_vhost_check_true,
2265 .tpg_check_demo_mode_write_protect = tcm_vhost_check_false,
2266 .tpg_check_prod_mode_write_protect = tcm_vhost_check_false,
2267 .tpg_alloc_fabric_acl = tcm_vhost_alloc_fabric_acl,
2268 .tpg_release_fabric_acl = tcm_vhost_release_fabric_acl,
2269 .tpg_get_inst_index = tcm_vhost_tpg_get_inst_index,
2270 .release_cmd = tcm_vhost_release_cmd,
Nicholas Bellinger084ed452013-06-06 02:20:41 -07002271 .check_stop_free = vhost_scsi_check_stop_free,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002272 .shutdown_session = tcm_vhost_shutdown_session,
2273 .close_session = tcm_vhost_close_session,
2274 .sess_get_index = tcm_vhost_sess_get_index,
2275 .sess_get_initiator_sid = NULL,
2276 .write_pending = tcm_vhost_write_pending,
2277 .write_pending_status = tcm_vhost_write_pending_status,
2278 .set_default_node_attributes = tcm_vhost_set_default_node_attrs,
2279 .get_task_tag = tcm_vhost_get_task_tag,
2280 .get_cmd_state = tcm_vhost_get_cmd_state,
2281 .queue_data_in = tcm_vhost_queue_data_in,
2282 .queue_status = tcm_vhost_queue_status,
2283 .queue_tm_rsp = tcm_vhost_queue_tm_rsp,
Nicholas Bellinger131e6ab2014-03-22 14:55:56 -07002284 .aborted_task = tcm_vhost_aborted_task,
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002285 /*
2286 * Setup callers for generic logic in target_core_fabric_configfs.c
2287 */
2288 .fabric_make_wwn = tcm_vhost_make_tport,
2289 .fabric_drop_wwn = tcm_vhost_drop_tport,
2290 .fabric_make_tpg = tcm_vhost_make_tpg,
2291 .fabric_drop_tpg = tcm_vhost_drop_tpg,
2292 .fabric_post_link = tcm_vhost_port_link,
2293 .fabric_pre_unlink = tcm_vhost_port_unlink,
2294 .fabric_make_np = NULL,
2295 .fabric_drop_np = NULL,
2296 .fabric_make_nodeacl = tcm_vhost_make_nodeacl,
2297 .fabric_drop_nodeacl = tcm_vhost_drop_nodeacl,
2298};
2299
2300static int tcm_vhost_register_configfs(void)
2301{
2302 struct target_fabric_configfs *fabric;
2303 int ret;
2304
2305 pr_debug("TCM_VHOST fabric module %s on %s/%s"
2306 " on "UTS_RELEASE"\n", TCM_VHOST_VERSION, utsname()->sysname,
2307 utsname()->machine);
2308 /*
2309 * Register the top level struct config_item_type with TCM core
2310 */
2311 fabric = target_fabric_configfs_init(THIS_MODULE, "vhost");
2312 if (IS_ERR(fabric)) {
2313 pr_err("target_fabric_configfs_init() failed\n");
2314 return PTR_ERR(fabric);
2315 }
2316 /*
2317 * Setup fabric->tf_ops from our local tcm_vhost_ops
2318 */
2319 fabric->tf_ops = tcm_vhost_ops;
2320 /*
2321 * Setup default attribute lists for various fabric->tf_cit_tmpl
2322 */
Andy Groverd80e224d2013-10-09 11:05:56 -07002323 fabric->tf_cit_tmpl.tfc_wwn_cit.ct_attrs = tcm_vhost_wwn_attrs;
2324 fabric->tf_cit_tmpl.tfc_tpg_base_cit.ct_attrs = tcm_vhost_tpg_attrs;
2325 fabric->tf_cit_tmpl.tfc_tpg_attrib_cit.ct_attrs = NULL;
2326 fabric->tf_cit_tmpl.tfc_tpg_param_cit.ct_attrs = NULL;
2327 fabric->tf_cit_tmpl.tfc_tpg_np_base_cit.ct_attrs = NULL;
2328 fabric->tf_cit_tmpl.tfc_tpg_nacl_base_cit.ct_attrs = NULL;
2329 fabric->tf_cit_tmpl.tfc_tpg_nacl_attrib_cit.ct_attrs = NULL;
2330 fabric->tf_cit_tmpl.tfc_tpg_nacl_auth_cit.ct_attrs = NULL;
2331 fabric->tf_cit_tmpl.tfc_tpg_nacl_param_cit.ct_attrs = NULL;
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002332 /*
2333 * Register the fabric for use within TCM
2334 */
2335 ret = target_fabric_configfs_register(fabric);
2336 if (ret < 0) {
2337 pr_err("target_fabric_configfs_register() failed"
2338 " for TCM_VHOST\n");
2339 return ret;
2340 }
2341 /*
2342 * Setup our local pointer to *fabric
2343 */
2344 tcm_vhost_fabric_configfs = fabric;
2345 pr_debug("TCM_VHOST[0] - Set fabric -> tcm_vhost_fabric_configfs\n");
2346 return 0;
2347};
2348
2349static void tcm_vhost_deregister_configfs(void)
2350{
2351 if (!tcm_vhost_fabric_configfs)
2352 return;
2353
2354 target_fabric_configfs_deregister(tcm_vhost_fabric_configfs);
2355 tcm_vhost_fabric_configfs = NULL;
2356 pr_debug("TCM_VHOST[0] - Cleared tcm_vhost_fabric_configfs\n");
2357};
2358
2359static int __init tcm_vhost_init(void)
2360{
2361 int ret = -ENOMEM;
Nicholas Bellinger101998f2012-07-30 13:30:00 -07002362 /*
2363 * Use our own dedicated workqueue for submitting I/O into
2364 * target core to avoid contention within system_wq.
2365 */
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002366 tcm_vhost_workqueue = alloc_workqueue("tcm_vhost", 0, 0);
2367 if (!tcm_vhost_workqueue)
2368 goto out;
2369
2370 ret = vhost_scsi_register();
2371 if (ret < 0)
2372 goto out_destroy_workqueue;
2373
2374 ret = tcm_vhost_register_configfs();
2375 if (ret < 0)
2376 goto out_vhost_scsi_deregister;
2377
2378 return 0;
2379
2380out_vhost_scsi_deregister:
2381 vhost_scsi_deregister();
2382out_destroy_workqueue:
2383 destroy_workqueue(tcm_vhost_workqueue);
2384out:
2385 return ret;
2386};
2387
2388static void tcm_vhost_exit(void)
2389{
2390 tcm_vhost_deregister_configfs();
2391 vhost_scsi_deregister();
2392 destroy_workqueue(tcm_vhost_workqueue);
2393};
2394
Michael S. Tsirkin181c04a2013-05-02 03:52:59 +03002395MODULE_DESCRIPTION("VHOST_SCSI series fabric driver");
2396MODULE_ALIAS("tcm_vhost");
Nicholas Bellinger057cbf42012-07-18 14:31:32 -07002397MODULE_LICENSE("GPL");
2398module_init(tcm_vhost_init);
2399module_exit(tcm_vhost_exit);