1 /******************************************************************************* 2 * Vhost kernel TCM fabric driver for virtio SCSI initiators 3 * 4 * (C) Copyright 2010-2013 Datera, Inc. 5 * (C) Copyright 2010-2012 IBM Corp. 6 * 7 * Licensed to the Linux Foundation under the General Public License (GPL) version 2. 8 * 9 * Authors: Nicholas A. Bellinger <nab@daterainc.com> 10 * Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> 11 * 12 * This program is free software; you can redistribute it and/or modify 13 * it under the terms of the GNU General Public License as published by 14 * the Free Software Foundation; either version 2 of the License, or 15 * (at your option) any later version. 16 * 17 * This program is distributed in the hope that it will be useful, 18 * but WITHOUT ANY WARRANTY; without even the implied warranty of 19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 20 * GNU General Public License for more details. 21 * 22 ****************************************************************************/ 23 24 #include <linux/module.h> 25 #include <linux/moduleparam.h> 26 #include <generated/utsrelease.h> 27 #include <linux/utsname.h> 28 #include <linux/init.h> 29 #include <linux/slab.h> 30 #include <linux/kthread.h> 31 #include <linux/types.h> 32 #include <linux/string.h> 33 #include <linux/configfs.h> 34 #include <linux/ctype.h> 35 #include <linux/compat.h> 36 #include <linux/eventfd.h> 37 #include <linux/fs.h> 38 #include <linux/vmalloc.h> 39 #include <linux/miscdevice.h> 40 #include <asm/unaligned.h> 41 #include <scsi/scsi_common.h> 42 #include <scsi/scsi_proto.h> 43 #include <target/target_core_base.h> 44 #include <target/target_core_fabric.h> 45 #include <linux/vhost.h> 46 #include <linux/virtio_scsi.h> 47 #include <linux/llist.h> 48 #include <linux/bitmap.h> 49 50 #include "vhost.h" 51 52 #define VHOST_SCSI_VERSION "v0.1" 53 #define VHOST_SCSI_NAMELEN 256 54 #define VHOST_SCSI_MAX_CDB_SIZE 32 55 #define VHOST_SCSI_PREALLOC_SGLS 2048 56 #define VHOST_SCSI_PREALLOC_UPAGES 2048 57 #define VHOST_SCSI_PREALLOC_PROT_SGLS 2048 58 59 /* Max number of requests before requeueing the job. 60 * Using this limit prevents one virtqueue from starving others with 61 * request. 62 */ 63 #define VHOST_SCSI_WEIGHT 256 64 65 struct vhost_scsi_inflight { 66 /* Wait for the flush operation to finish */ 67 struct completion comp; 68 /* Refcount for the inflight reqs */ 69 struct kref kref; 70 }; 71 72 struct vhost_scsi_cmd { 73 /* Descriptor from vhost_get_vq_desc() for virt_queue segment */ 74 int tvc_vq_desc; 75 /* virtio-scsi initiator task attribute */ 76 int tvc_task_attr; 77 /* virtio-scsi response incoming iovecs */ 78 int tvc_in_iovs; 79 /* virtio-scsi initiator data direction */ 80 enum dma_data_direction tvc_data_direction; 81 /* Expected data transfer length from virtio-scsi header */ 82 u32 tvc_exp_data_len; 83 /* The Tag from include/linux/virtio_scsi.h:struct virtio_scsi_cmd_req */ 84 u64 tvc_tag; 85 /* The number of scatterlists associated with this cmd */ 86 u32 tvc_sgl_count; 87 u32 tvc_prot_sgl_count; 88 /* Saved unpacked SCSI LUN for vhost_scsi_submission_work() */ 89 u32 tvc_lun; 90 /* Pointer to the SGL formatted memory from virtio-scsi */ 91 struct scatterlist *tvc_sgl; 92 struct scatterlist *tvc_prot_sgl; 93 struct page **tvc_upages; 94 /* Pointer to response header iovec */ 95 struct iovec tvc_resp_iov; 96 /* Pointer to vhost_scsi for our device */ 97 struct vhost_scsi *tvc_vhost; 98 /* Pointer to vhost_virtqueue for the cmd */ 99 struct vhost_virtqueue *tvc_vq; 100 /* Pointer to vhost nexus memory */ 101 struct vhost_scsi_nexus *tvc_nexus; 102 /* The TCM I/O descriptor that is accessed via container_of() */ 103 struct se_cmd tvc_se_cmd; 104 /* work item used for cmwq dispatch to vhost_scsi_submission_work() */ 105 struct work_struct work; 106 /* Copy of the incoming SCSI command descriptor block (CDB) */ 107 unsigned char tvc_cdb[VHOST_SCSI_MAX_CDB_SIZE]; 108 /* Sense buffer that will be mapped into outgoing status */ 109 unsigned char tvc_sense_buf[TRANSPORT_SENSE_BUFFER]; 110 /* Completed commands list, serviced from vhost worker thread */ 111 struct llist_node tvc_completion_list; 112 /* Used to track inflight cmd */ 113 struct vhost_scsi_inflight *inflight; 114 }; 115 116 struct vhost_scsi_nexus { 117 /* Pointer to TCM session for I_T Nexus */ 118 struct se_session *tvn_se_sess; 119 }; 120 121 struct vhost_scsi_tpg { 122 /* Vhost port target portal group tag for TCM */ 123 u16 tport_tpgt; 124 /* Used to track number of TPG Port/Lun Links wrt to explict I_T Nexus shutdown */ 125 int tv_tpg_port_count; 126 /* Used for vhost_scsi device reference to tpg_nexus, protected by tv_tpg_mutex */ 127 int tv_tpg_vhost_count; 128 /* Used for enabling T10-PI with legacy devices */ 129 int tv_fabric_prot_type; 130 /* list for vhost_scsi_list */ 131 struct list_head tv_tpg_list; 132 /* Used to protect access for tpg_nexus */ 133 struct mutex tv_tpg_mutex; 134 /* Pointer to the TCM VHost I_T Nexus for this TPG endpoint */ 135 struct vhost_scsi_nexus *tpg_nexus; 136 /* Pointer back to vhost_scsi_tport */ 137 struct vhost_scsi_tport *tport; 138 /* Returned by vhost_scsi_make_tpg() */ 139 struct se_portal_group se_tpg; 140 /* Pointer back to vhost_scsi, protected by tv_tpg_mutex */ 141 struct vhost_scsi *vhost_scsi; 142 struct list_head tmf_queue; 143 }; 144 145 struct vhost_scsi_tport { 146 /* SCSI protocol the tport is providing */ 147 u8 tport_proto_id; 148 /* Binary World Wide unique Port Name for Vhost Target port */ 149 u64 tport_wwpn; 150 /* ASCII formatted WWPN for Vhost Target port */ 151 char tport_name[VHOST_SCSI_NAMELEN]; 152 /* Returned by vhost_scsi_make_tport() */ 153 struct se_wwn tport_wwn; 154 }; 155 156 struct vhost_scsi_evt { 157 /* event to be sent to guest */ 158 struct virtio_scsi_event event; 159 /* event list, serviced from vhost worker thread */ 160 struct llist_node list; 161 }; 162 163 enum { 164 VHOST_SCSI_VQ_CTL = 0, 165 VHOST_SCSI_VQ_EVT = 1, 166 VHOST_SCSI_VQ_IO = 2, 167 }; 168 169 /* Note: can't set VIRTIO_F_VERSION_1 yet, since that implies ANY_LAYOUT. */ 170 enum { 171 VHOST_SCSI_FEATURES = VHOST_FEATURES | (1ULL << VIRTIO_SCSI_F_HOTPLUG) | 172 (1ULL << VIRTIO_SCSI_F_T10_PI) 173 }; 174 175 #define VHOST_SCSI_MAX_TARGET 256 176 #define VHOST_SCSI_MAX_VQ 128 177 #define VHOST_SCSI_MAX_EVENT 128 178 179 struct vhost_scsi_virtqueue { 180 struct vhost_virtqueue vq; 181 /* 182 * Reference counting for inflight reqs, used for flush operation. At 183 * each time, one reference tracks new commands submitted, while we 184 * wait for another one to reach 0. 185 */ 186 struct vhost_scsi_inflight inflights[2]; 187 /* 188 * Indicate current inflight in use, protected by vq->mutex. 189 * Writers must also take dev mutex and flush under it. 190 */ 191 int inflight_idx; 192 struct vhost_scsi_cmd *scsi_cmds; 193 struct sbitmap scsi_tags; 194 int max_cmds; 195 }; 196 197 struct vhost_scsi { 198 /* Protected by vhost_scsi->dev.mutex */ 199 struct vhost_scsi_tpg **vs_tpg; 200 char vs_vhost_wwpn[TRANSPORT_IQN_LEN]; 201 202 struct vhost_dev dev; 203 struct vhost_scsi_virtqueue vqs[VHOST_SCSI_MAX_VQ]; 204 205 struct vhost_work vs_completion_work; /* cmd completion work item */ 206 struct llist_head vs_completion_list; /* cmd completion queue */ 207 208 struct vhost_work vs_event_work; /* evt injection work item */ 209 struct llist_head vs_event_list; /* evt injection queue */ 210 211 bool vs_events_missed; /* any missed events, protected by vq->mutex */ 212 int vs_events_nr; /* num of pending events, protected by vq->mutex */ 213 }; 214 215 struct vhost_scsi_tmf { 216 struct vhost_work vwork; 217 struct vhost_scsi_tpg *tpg; 218 struct vhost_scsi *vhost; 219 struct vhost_scsi_virtqueue *svq; 220 struct list_head queue_entry; 221 222 struct se_cmd se_cmd; 223 u8 scsi_resp; 224 struct vhost_scsi_inflight *inflight; 225 struct iovec resp_iov; 226 int in_iovs; 227 int vq_desc; 228 }; 229 230 /* 231 * Context for processing request and control queue operations. 232 */ 233 struct vhost_scsi_ctx { 234 int head; 235 unsigned int out, in; 236 size_t req_size, rsp_size; 237 size_t out_size, in_size; 238 u8 *target, *lunp; 239 void *req; 240 struct iov_iter out_iter; 241 }; 242 243 static struct workqueue_struct *vhost_scsi_workqueue; 244 245 /* Global spinlock to protect vhost_scsi TPG list for vhost IOCTL access */ 246 static DEFINE_MUTEX(vhost_scsi_mutex); 247 static LIST_HEAD(vhost_scsi_list); 248 249 static void vhost_scsi_done_inflight(struct kref *kref) 250 { 251 struct vhost_scsi_inflight *inflight; 252 253 inflight = container_of(kref, struct vhost_scsi_inflight, kref); 254 complete(&inflight->comp); 255 } 256 257 static void vhost_scsi_init_inflight(struct vhost_scsi *vs, 258 struct vhost_scsi_inflight *old_inflight[]) 259 { 260 struct vhost_scsi_inflight *new_inflight; 261 struct vhost_virtqueue *vq; 262 int idx, i; 263 264 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++) { 265 vq = &vs->vqs[i].vq; 266 267 mutex_lock(&vq->mutex); 268 269 /* store old infight */ 270 idx = vs->vqs[i].inflight_idx; 271 if (old_inflight) 272 old_inflight[i] = &vs->vqs[i].inflights[idx]; 273 274 /* setup new infight */ 275 vs->vqs[i].inflight_idx = idx ^ 1; 276 new_inflight = &vs->vqs[i].inflights[idx ^ 1]; 277 kref_init(&new_inflight->kref); 278 init_completion(&new_inflight->comp); 279 280 mutex_unlock(&vq->mutex); 281 } 282 } 283 284 static struct vhost_scsi_inflight * 285 vhost_scsi_get_inflight(struct vhost_virtqueue *vq) 286 { 287 struct vhost_scsi_inflight *inflight; 288 struct vhost_scsi_virtqueue *svq; 289 290 svq = container_of(vq, struct vhost_scsi_virtqueue, vq); 291 inflight = &svq->inflights[svq->inflight_idx]; 292 kref_get(&inflight->kref); 293 294 return inflight; 295 } 296 297 static void vhost_scsi_put_inflight(struct vhost_scsi_inflight *inflight) 298 { 299 kref_put(&inflight->kref, vhost_scsi_done_inflight); 300 } 301 302 static int vhost_scsi_check_true(struct se_portal_group *se_tpg) 303 { 304 return 1; 305 } 306 307 static int vhost_scsi_check_false(struct se_portal_group *se_tpg) 308 { 309 return 0; 310 } 311 312 static char *vhost_scsi_get_fabric_wwn(struct se_portal_group *se_tpg) 313 { 314 struct vhost_scsi_tpg *tpg = container_of(se_tpg, 315 struct vhost_scsi_tpg, se_tpg); 316 struct vhost_scsi_tport *tport = tpg->tport; 317 318 return &tport->tport_name[0]; 319 } 320 321 static u16 vhost_scsi_get_tpgt(struct se_portal_group *se_tpg) 322 { 323 struct vhost_scsi_tpg *tpg = container_of(se_tpg, 324 struct vhost_scsi_tpg, se_tpg); 325 return tpg->tport_tpgt; 326 } 327 328 static int vhost_scsi_check_prot_fabric_only(struct se_portal_group *se_tpg) 329 { 330 struct vhost_scsi_tpg *tpg = container_of(se_tpg, 331 struct vhost_scsi_tpg, se_tpg); 332 333 return tpg->tv_fabric_prot_type; 334 } 335 336 static u32 vhost_scsi_tpg_get_inst_index(struct se_portal_group *se_tpg) 337 { 338 return 1; 339 } 340 341 static void vhost_scsi_release_cmd_res(struct se_cmd *se_cmd) 342 { 343 struct vhost_scsi_cmd *tv_cmd = container_of(se_cmd, 344 struct vhost_scsi_cmd, tvc_se_cmd); 345 struct vhost_scsi_virtqueue *svq = container_of(tv_cmd->tvc_vq, 346 struct vhost_scsi_virtqueue, vq); 347 struct vhost_scsi_inflight *inflight = tv_cmd->inflight; 348 int i; 349 350 if (tv_cmd->tvc_sgl_count) { 351 for (i = 0; i < tv_cmd->tvc_sgl_count; i++) 352 put_page(sg_page(&tv_cmd->tvc_sgl[i])); 353 } 354 if (tv_cmd->tvc_prot_sgl_count) { 355 for (i = 0; i < tv_cmd->tvc_prot_sgl_count; i++) 356 put_page(sg_page(&tv_cmd->tvc_prot_sgl[i])); 357 } 358 359 sbitmap_clear_bit(&svq->scsi_tags, se_cmd->map_tag); 360 vhost_scsi_put_inflight(inflight); 361 } 362 363 static void vhost_scsi_release_tmf_res(struct vhost_scsi_tmf *tmf) 364 { 365 struct vhost_scsi_tpg *tpg = tmf->tpg; 366 struct vhost_scsi_inflight *inflight = tmf->inflight; 367 368 mutex_lock(&tpg->tv_tpg_mutex); 369 list_add_tail(&tpg->tmf_queue, &tmf->queue_entry); 370 mutex_unlock(&tpg->tv_tpg_mutex); 371 vhost_scsi_put_inflight(inflight); 372 } 373 374 static void vhost_scsi_release_cmd(struct se_cmd *se_cmd) 375 { 376 if (se_cmd->se_cmd_flags & SCF_SCSI_TMR_CDB) { 377 struct vhost_scsi_tmf *tmf = container_of(se_cmd, 378 struct vhost_scsi_tmf, se_cmd); 379 380 vhost_work_queue(&tmf->vhost->dev, &tmf->vwork); 381 } else { 382 struct vhost_scsi_cmd *cmd = container_of(se_cmd, 383 struct vhost_scsi_cmd, tvc_se_cmd); 384 struct vhost_scsi *vs = cmd->tvc_vhost; 385 386 llist_add(&cmd->tvc_completion_list, &vs->vs_completion_list); 387 vhost_work_queue(&vs->dev, &vs->vs_completion_work); 388 } 389 } 390 391 static u32 vhost_scsi_sess_get_index(struct se_session *se_sess) 392 { 393 return 0; 394 } 395 396 static int vhost_scsi_write_pending(struct se_cmd *se_cmd) 397 { 398 /* Go ahead and process the write immediately */ 399 target_execute_cmd(se_cmd); 400 return 0; 401 } 402 403 static void vhost_scsi_set_default_node_attrs(struct se_node_acl *nacl) 404 { 405 return; 406 } 407 408 static int vhost_scsi_get_cmd_state(struct se_cmd *se_cmd) 409 { 410 return 0; 411 } 412 413 static int vhost_scsi_queue_data_in(struct se_cmd *se_cmd) 414 { 415 transport_generic_free_cmd(se_cmd, 0); 416 return 0; 417 } 418 419 static int vhost_scsi_queue_status(struct se_cmd *se_cmd) 420 { 421 transport_generic_free_cmd(se_cmd, 0); 422 return 0; 423 } 424 425 static void vhost_scsi_queue_tm_rsp(struct se_cmd *se_cmd) 426 { 427 struct vhost_scsi_tmf *tmf = container_of(se_cmd, struct vhost_scsi_tmf, 428 se_cmd); 429 430 tmf->scsi_resp = se_cmd->se_tmr_req->response; 431 transport_generic_free_cmd(&tmf->se_cmd, 0); 432 } 433 434 static void vhost_scsi_aborted_task(struct se_cmd *se_cmd) 435 { 436 return; 437 } 438 439 static void vhost_scsi_free_evt(struct vhost_scsi *vs, struct vhost_scsi_evt *evt) 440 { 441 vs->vs_events_nr--; 442 kfree(evt); 443 } 444 445 static struct vhost_scsi_evt * 446 vhost_scsi_allocate_evt(struct vhost_scsi *vs, 447 u32 event, u32 reason) 448 { 449 struct vhost_virtqueue *vq = &vs->vqs[VHOST_SCSI_VQ_EVT].vq; 450 struct vhost_scsi_evt *evt; 451 452 if (vs->vs_events_nr > VHOST_SCSI_MAX_EVENT) { 453 vs->vs_events_missed = true; 454 return NULL; 455 } 456 457 evt = kzalloc(sizeof(*evt), GFP_KERNEL); 458 if (!evt) { 459 vq_err(vq, "Failed to allocate vhost_scsi_evt\n"); 460 vs->vs_events_missed = true; 461 return NULL; 462 } 463 464 evt->event.event = cpu_to_vhost32(vq, event); 465 evt->event.reason = cpu_to_vhost32(vq, reason); 466 vs->vs_events_nr++; 467 468 return evt; 469 } 470 471 static int vhost_scsi_check_stop_free(struct se_cmd *se_cmd) 472 { 473 return target_put_sess_cmd(se_cmd); 474 } 475 476 static void 477 vhost_scsi_do_evt_work(struct vhost_scsi *vs, struct vhost_scsi_evt *evt) 478 { 479 struct vhost_virtqueue *vq = &vs->vqs[VHOST_SCSI_VQ_EVT].vq; 480 struct virtio_scsi_event *event = &evt->event; 481 struct virtio_scsi_event __user *eventp; 482 unsigned out, in; 483 int head, ret; 484 485 if (!vhost_vq_get_backend(vq)) { 486 vs->vs_events_missed = true; 487 return; 488 } 489 490 again: 491 vhost_disable_notify(&vs->dev, vq); 492 head = vhost_get_vq_desc(vq, vq->iov, 493 ARRAY_SIZE(vq->iov), &out, &in, 494 NULL, NULL); 495 if (head < 0) { 496 vs->vs_events_missed = true; 497 return; 498 } 499 if (head == vq->num) { 500 if (vhost_enable_notify(&vs->dev, vq)) 501 goto again; 502 vs->vs_events_missed = true; 503 return; 504 } 505 506 if ((vq->iov[out].iov_len != sizeof(struct virtio_scsi_event))) { 507 vq_err(vq, "Expecting virtio_scsi_event, got %zu bytes\n", 508 vq->iov[out].iov_len); 509 vs->vs_events_missed = true; 510 return; 511 } 512 513 if (vs->vs_events_missed) { 514 event->event |= cpu_to_vhost32(vq, VIRTIO_SCSI_T_EVENTS_MISSED); 515 vs->vs_events_missed = false; 516 } 517 518 eventp = vq->iov[out].iov_base; 519 ret = __copy_to_user(eventp, event, sizeof(*event)); 520 if (!ret) 521 vhost_add_used_and_signal(&vs->dev, vq, head, 0); 522 else 523 vq_err(vq, "Faulted on vhost_scsi_send_event\n"); 524 } 525 526 static void vhost_scsi_evt_work(struct vhost_work *work) 527 { 528 struct vhost_scsi *vs = container_of(work, struct vhost_scsi, 529 vs_event_work); 530 struct vhost_virtqueue *vq = &vs->vqs[VHOST_SCSI_VQ_EVT].vq; 531 struct vhost_scsi_evt *evt, *t; 532 struct llist_node *llnode; 533 534 mutex_lock(&vq->mutex); 535 llnode = llist_del_all(&vs->vs_event_list); 536 llist_for_each_entry_safe(evt, t, llnode, list) { 537 vhost_scsi_do_evt_work(vs, evt); 538 vhost_scsi_free_evt(vs, evt); 539 } 540 mutex_unlock(&vq->mutex); 541 } 542 543 /* Fill in status and signal that we are done processing this command 544 * 545 * This is scheduled in the vhost work queue so we are called with the owner 546 * process mm and can access the vring. 547 */ 548 static void vhost_scsi_complete_cmd_work(struct vhost_work *work) 549 { 550 struct vhost_scsi *vs = container_of(work, struct vhost_scsi, 551 vs_completion_work); 552 DECLARE_BITMAP(signal, VHOST_SCSI_MAX_VQ); 553 struct virtio_scsi_cmd_resp v_rsp; 554 struct vhost_scsi_cmd *cmd, *t; 555 struct llist_node *llnode; 556 struct se_cmd *se_cmd; 557 struct iov_iter iov_iter; 558 int ret, vq; 559 560 bitmap_zero(signal, VHOST_SCSI_MAX_VQ); 561 llnode = llist_del_all(&vs->vs_completion_list); 562 llist_for_each_entry_safe(cmd, t, llnode, tvc_completion_list) { 563 se_cmd = &cmd->tvc_se_cmd; 564 565 pr_debug("%s tv_cmd %p resid %u status %#02x\n", __func__, 566 cmd, se_cmd->residual_count, se_cmd->scsi_status); 567 568 memset(&v_rsp, 0, sizeof(v_rsp)); 569 v_rsp.resid = cpu_to_vhost32(cmd->tvc_vq, se_cmd->residual_count); 570 /* TODO is status_qualifier field needed? */ 571 v_rsp.status = se_cmd->scsi_status; 572 v_rsp.sense_len = cpu_to_vhost32(cmd->tvc_vq, 573 se_cmd->scsi_sense_length); 574 memcpy(v_rsp.sense, cmd->tvc_sense_buf, 575 se_cmd->scsi_sense_length); 576 577 iov_iter_init(&iov_iter, READ, &cmd->tvc_resp_iov, 578 cmd->tvc_in_iovs, sizeof(v_rsp)); 579 ret = copy_to_iter(&v_rsp, sizeof(v_rsp), &iov_iter); 580 if (likely(ret == sizeof(v_rsp))) { 581 struct vhost_scsi_virtqueue *q; 582 vhost_add_used(cmd->tvc_vq, cmd->tvc_vq_desc, 0); 583 q = container_of(cmd->tvc_vq, struct vhost_scsi_virtqueue, vq); 584 vq = q - vs->vqs; 585 __set_bit(vq, signal); 586 } else 587 pr_err("Faulted on virtio_scsi_cmd_resp\n"); 588 589 vhost_scsi_release_cmd_res(se_cmd); 590 } 591 592 vq = -1; 593 while ((vq = find_next_bit(signal, VHOST_SCSI_MAX_VQ, vq + 1)) 594 < VHOST_SCSI_MAX_VQ) 595 vhost_signal(&vs->dev, &vs->vqs[vq].vq); 596 } 597 598 static struct vhost_scsi_cmd * 599 vhost_scsi_get_cmd(struct vhost_virtqueue *vq, struct vhost_scsi_tpg *tpg, 600 unsigned char *cdb, u64 scsi_tag, u16 lun, u8 task_attr, 601 u32 exp_data_len, int data_direction) 602 { 603 struct vhost_scsi_virtqueue *svq = container_of(vq, 604 struct vhost_scsi_virtqueue, vq); 605 struct vhost_scsi_cmd *cmd; 606 struct vhost_scsi_nexus *tv_nexus; 607 struct scatterlist *sg, *prot_sg; 608 struct page **pages; 609 int tag; 610 611 tv_nexus = tpg->tpg_nexus; 612 if (!tv_nexus) { 613 pr_err("Unable to locate active struct vhost_scsi_nexus\n"); 614 return ERR_PTR(-EIO); 615 } 616 617 tag = sbitmap_get(&svq->scsi_tags); 618 if (tag < 0) { 619 pr_err("Unable to obtain tag for vhost_scsi_cmd\n"); 620 return ERR_PTR(-ENOMEM); 621 } 622 623 cmd = &svq->scsi_cmds[tag]; 624 sg = cmd->tvc_sgl; 625 prot_sg = cmd->tvc_prot_sgl; 626 pages = cmd->tvc_upages; 627 memset(cmd, 0, sizeof(*cmd)); 628 cmd->tvc_sgl = sg; 629 cmd->tvc_prot_sgl = prot_sg; 630 cmd->tvc_upages = pages; 631 cmd->tvc_se_cmd.map_tag = tag; 632 cmd->tvc_tag = scsi_tag; 633 cmd->tvc_lun = lun; 634 cmd->tvc_task_attr = task_attr; 635 cmd->tvc_exp_data_len = exp_data_len; 636 cmd->tvc_data_direction = data_direction; 637 cmd->tvc_nexus = tv_nexus; 638 cmd->inflight = vhost_scsi_get_inflight(vq); 639 640 memcpy(cmd->tvc_cdb, cdb, VHOST_SCSI_MAX_CDB_SIZE); 641 642 return cmd; 643 } 644 645 /* 646 * Map a user memory range into a scatterlist 647 * 648 * Returns the number of scatterlist entries used or -errno on error. 649 */ 650 static int 651 vhost_scsi_map_to_sgl(struct vhost_scsi_cmd *cmd, 652 struct iov_iter *iter, 653 struct scatterlist *sgl, 654 bool write) 655 { 656 struct page **pages = cmd->tvc_upages; 657 struct scatterlist *sg = sgl; 658 ssize_t bytes; 659 size_t offset; 660 unsigned int npages = 0; 661 662 bytes = iov_iter_get_pages(iter, pages, LONG_MAX, 663 VHOST_SCSI_PREALLOC_UPAGES, &offset); 664 /* No pages were pinned */ 665 if (bytes <= 0) 666 return bytes < 0 ? bytes : -EFAULT; 667 668 iov_iter_advance(iter, bytes); 669 670 while (bytes) { 671 unsigned n = min_t(unsigned, PAGE_SIZE - offset, bytes); 672 sg_set_page(sg++, pages[npages++], n, offset); 673 bytes -= n; 674 offset = 0; 675 } 676 return npages; 677 } 678 679 static int 680 vhost_scsi_calc_sgls(struct iov_iter *iter, size_t bytes, int max_sgls) 681 { 682 int sgl_count = 0; 683 684 if (!iter || !iter->iov) { 685 pr_err("%s: iter->iov is NULL, but expected bytes: %zu" 686 " present\n", __func__, bytes); 687 return -EINVAL; 688 } 689 690 sgl_count = iov_iter_npages(iter, 0xffff); 691 if (sgl_count > max_sgls) { 692 pr_err("%s: requested sgl_count: %d exceeds pre-allocated" 693 " max_sgls: %d\n", __func__, sgl_count, max_sgls); 694 return -EINVAL; 695 } 696 return sgl_count; 697 } 698 699 static int 700 vhost_scsi_iov_to_sgl(struct vhost_scsi_cmd *cmd, bool write, 701 struct iov_iter *iter, 702 struct scatterlist *sg, int sg_count) 703 { 704 struct scatterlist *p = sg; 705 int ret; 706 707 while (iov_iter_count(iter)) { 708 ret = vhost_scsi_map_to_sgl(cmd, iter, sg, write); 709 if (ret < 0) { 710 while (p < sg) { 711 struct page *page = sg_page(p++); 712 if (page) 713 put_page(page); 714 } 715 return ret; 716 } 717 sg += ret; 718 } 719 return 0; 720 } 721 722 static int 723 vhost_scsi_mapal(struct vhost_scsi_cmd *cmd, 724 size_t prot_bytes, struct iov_iter *prot_iter, 725 size_t data_bytes, struct iov_iter *data_iter) 726 { 727 int sgl_count, ret; 728 bool write = (cmd->tvc_data_direction == DMA_FROM_DEVICE); 729 730 if (prot_bytes) { 731 sgl_count = vhost_scsi_calc_sgls(prot_iter, prot_bytes, 732 VHOST_SCSI_PREALLOC_PROT_SGLS); 733 if (sgl_count < 0) 734 return sgl_count; 735 736 sg_init_table(cmd->tvc_prot_sgl, sgl_count); 737 cmd->tvc_prot_sgl_count = sgl_count; 738 pr_debug("%s prot_sg %p prot_sgl_count %u\n", __func__, 739 cmd->tvc_prot_sgl, cmd->tvc_prot_sgl_count); 740 741 ret = vhost_scsi_iov_to_sgl(cmd, write, prot_iter, 742 cmd->tvc_prot_sgl, 743 cmd->tvc_prot_sgl_count); 744 if (ret < 0) { 745 cmd->tvc_prot_sgl_count = 0; 746 return ret; 747 } 748 } 749 sgl_count = vhost_scsi_calc_sgls(data_iter, data_bytes, 750 VHOST_SCSI_PREALLOC_SGLS); 751 if (sgl_count < 0) 752 return sgl_count; 753 754 sg_init_table(cmd->tvc_sgl, sgl_count); 755 cmd->tvc_sgl_count = sgl_count; 756 pr_debug("%s data_sg %p data_sgl_count %u\n", __func__, 757 cmd->tvc_sgl, cmd->tvc_sgl_count); 758 759 ret = vhost_scsi_iov_to_sgl(cmd, write, data_iter, 760 cmd->tvc_sgl, cmd->tvc_sgl_count); 761 if (ret < 0) { 762 cmd->tvc_sgl_count = 0; 763 return ret; 764 } 765 return 0; 766 } 767 768 static int vhost_scsi_to_tcm_attr(int attr) 769 { 770 switch (attr) { 771 case VIRTIO_SCSI_S_SIMPLE: 772 return TCM_SIMPLE_TAG; 773 case VIRTIO_SCSI_S_ORDERED: 774 return TCM_ORDERED_TAG; 775 case VIRTIO_SCSI_S_HEAD: 776 return TCM_HEAD_TAG; 777 case VIRTIO_SCSI_S_ACA: 778 return TCM_ACA_TAG; 779 default: 780 break; 781 } 782 return TCM_SIMPLE_TAG; 783 } 784 785 static void vhost_scsi_submission_work(struct work_struct *work) 786 { 787 struct vhost_scsi_cmd *cmd = 788 container_of(work, struct vhost_scsi_cmd, work); 789 struct vhost_scsi_nexus *tv_nexus; 790 struct se_cmd *se_cmd = &cmd->tvc_se_cmd; 791 struct scatterlist *sg_ptr, *sg_prot_ptr = NULL; 792 793 /* FIXME: BIDI operation */ 794 if (cmd->tvc_sgl_count) { 795 sg_ptr = cmd->tvc_sgl; 796 797 if (cmd->tvc_prot_sgl_count) 798 sg_prot_ptr = cmd->tvc_prot_sgl; 799 else 800 se_cmd->prot_pto = true; 801 } else { 802 sg_ptr = NULL; 803 } 804 tv_nexus = cmd->tvc_nexus; 805 806 se_cmd->tag = 0; 807 target_init_cmd(se_cmd, tv_nexus->tvn_se_sess, &cmd->tvc_sense_buf[0], 808 cmd->tvc_lun, cmd->tvc_exp_data_len, 809 vhost_scsi_to_tcm_attr(cmd->tvc_task_attr), 810 cmd->tvc_data_direction, TARGET_SCF_ACK_KREF); 811 812 if (target_submit_prep(se_cmd, cmd->tvc_cdb, sg_ptr, 813 cmd->tvc_sgl_count, NULL, 0, sg_prot_ptr, 814 cmd->tvc_prot_sgl_count, GFP_KERNEL)) 815 return; 816 817 target_submit(se_cmd); 818 } 819 820 static void 821 vhost_scsi_send_bad_target(struct vhost_scsi *vs, 822 struct vhost_virtqueue *vq, 823 int head, unsigned out) 824 { 825 struct virtio_scsi_cmd_resp __user *resp; 826 struct virtio_scsi_cmd_resp rsp; 827 int ret; 828 829 memset(&rsp, 0, sizeof(rsp)); 830 rsp.response = VIRTIO_SCSI_S_BAD_TARGET; 831 resp = vq->iov[out].iov_base; 832 ret = __copy_to_user(resp, &rsp, sizeof(rsp)); 833 if (!ret) 834 vhost_add_used_and_signal(&vs->dev, vq, head, 0); 835 else 836 pr_err("Faulted on virtio_scsi_cmd_resp\n"); 837 } 838 839 static int 840 vhost_scsi_get_desc(struct vhost_scsi *vs, struct vhost_virtqueue *vq, 841 struct vhost_scsi_ctx *vc) 842 { 843 int ret = -ENXIO; 844 845 vc->head = vhost_get_vq_desc(vq, vq->iov, 846 ARRAY_SIZE(vq->iov), &vc->out, &vc->in, 847 NULL, NULL); 848 849 pr_debug("vhost_get_vq_desc: head: %d, out: %u in: %u\n", 850 vc->head, vc->out, vc->in); 851 852 /* On error, stop handling until the next kick. */ 853 if (unlikely(vc->head < 0)) 854 goto done; 855 856 /* Nothing new? Wait for eventfd to tell us they refilled. */ 857 if (vc->head == vq->num) { 858 if (unlikely(vhost_enable_notify(&vs->dev, vq))) { 859 vhost_disable_notify(&vs->dev, vq); 860 ret = -EAGAIN; 861 } 862 goto done; 863 } 864 865 /* 866 * Get the size of request and response buffers. 867 * FIXME: Not correct for BIDI operation 868 */ 869 vc->out_size = iov_length(vq->iov, vc->out); 870 vc->in_size = iov_length(&vq->iov[vc->out], vc->in); 871 872 /* 873 * Copy over the virtio-scsi request header, which for a 874 * ANY_LAYOUT enabled guest may span multiple iovecs, or a 875 * single iovec may contain both the header + outgoing 876 * WRITE payloads. 877 * 878 * copy_from_iter() will advance out_iter, so that it will 879 * point at the start of the outgoing WRITE payload, if 880 * DMA_TO_DEVICE is set. 881 */ 882 iov_iter_init(&vc->out_iter, WRITE, vq->iov, vc->out, vc->out_size); 883 ret = 0; 884 885 done: 886 return ret; 887 } 888 889 static int 890 vhost_scsi_chk_size(struct vhost_virtqueue *vq, struct vhost_scsi_ctx *vc) 891 { 892 if (unlikely(vc->in_size < vc->rsp_size)) { 893 vq_err(vq, 894 "Response buf too small, need min %zu bytes got %zu", 895 vc->rsp_size, vc->in_size); 896 return -EINVAL; 897 } else if (unlikely(vc->out_size < vc->req_size)) { 898 vq_err(vq, 899 "Request buf too small, need min %zu bytes got %zu", 900 vc->req_size, vc->out_size); 901 return -EIO; 902 } 903 904 return 0; 905 } 906 907 static int 908 vhost_scsi_get_req(struct vhost_virtqueue *vq, struct vhost_scsi_ctx *vc, 909 struct vhost_scsi_tpg **tpgp) 910 { 911 int ret = -EIO; 912 913 if (unlikely(!copy_from_iter_full(vc->req, vc->req_size, 914 &vc->out_iter))) { 915 vq_err(vq, "Faulted on copy_from_iter_full\n"); 916 } else if (unlikely(*vc->lunp != 1)) { 917 /* virtio-scsi spec requires byte 0 of the lun to be 1 */ 918 vq_err(vq, "Illegal virtio-scsi lun: %u\n", *vc->lunp); 919 } else { 920 struct vhost_scsi_tpg **vs_tpg, *tpg; 921 922 vs_tpg = vhost_vq_get_backend(vq); /* validated at handler entry */ 923 924 tpg = READ_ONCE(vs_tpg[*vc->target]); 925 if (unlikely(!tpg)) { 926 vq_err(vq, "Target 0x%x does not exist\n", *vc->target); 927 } else { 928 if (tpgp) 929 *tpgp = tpg; 930 ret = 0; 931 } 932 } 933 934 return ret; 935 } 936 937 static u16 vhost_buf_to_lun(u8 *lun_buf) 938 { 939 return ((lun_buf[2] << 8) | lun_buf[3]) & 0x3FFF; 940 } 941 942 static void 943 vhost_scsi_handle_vq(struct vhost_scsi *vs, struct vhost_virtqueue *vq) 944 { 945 struct vhost_scsi_tpg **vs_tpg, *tpg; 946 struct virtio_scsi_cmd_req v_req; 947 struct virtio_scsi_cmd_req_pi v_req_pi; 948 struct vhost_scsi_ctx vc; 949 struct vhost_scsi_cmd *cmd; 950 struct iov_iter in_iter, prot_iter, data_iter; 951 u64 tag; 952 u32 exp_data_len, data_direction; 953 int ret, prot_bytes, c = 0; 954 u16 lun; 955 u8 task_attr; 956 bool t10_pi = vhost_has_feature(vq, VIRTIO_SCSI_F_T10_PI); 957 void *cdb; 958 959 mutex_lock(&vq->mutex); 960 /* 961 * We can handle the vq only after the endpoint is setup by calling the 962 * VHOST_SCSI_SET_ENDPOINT ioctl. 963 */ 964 vs_tpg = vhost_vq_get_backend(vq); 965 if (!vs_tpg) 966 goto out; 967 968 memset(&vc, 0, sizeof(vc)); 969 vc.rsp_size = sizeof(struct virtio_scsi_cmd_resp); 970 971 vhost_disable_notify(&vs->dev, vq); 972 973 do { 974 ret = vhost_scsi_get_desc(vs, vq, &vc); 975 if (ret) 976 goto err; 977 978 /* 979 * Setup pointers and values based upon different virtio-scsi 980 * request header if T10_PI is enabled in KVM guest. 981 */ 982 if (t10_pi) { 983 vc.req = &v_req_pi; 984 vc.req_size = sizeof(v_req_pi); 985 vc.lunp = &v_req_pi.lun[0]; 986 vc.target = &v_req_pi.lun[1]; 987 } else { 988 vc.req = &v_req; 989 vc.req_size = sizeof(v_req); 990 vc.lunp = &v_req.lun[0]; 991 vc.target = &v_req.lun[1]; 992 } 993 994 /* 995 * Validate the size of request and response buffers. 996 * Check for a sane response buffer so we can report 997 * early errors back to the guest. 998 */ 999 ret = vhost_scsi_chk_size(vq, &vc); 1000 if (ret) 1001 goto err; 1002 1003 ret = vhost_scsi_get_req(vq, &vc, &tpg); 1004 if (ret) 1005 goto err; 1006 1007 ret = -EIO; /* bad target on any error from here on */ 1008 1009 /* 1010 * Determine data_direction by calculating the total outgoing 1011 * iovec sizes + incoming iovec sizes vs. virtio-scsi request + 1012 * response headers respectively. 1013 * 1014 * For DMA_TO_DEVICE this is out_iter, which is already pointing 1015 * to the right place. 1016 * 1017 * For DMA_FROM_DEVICE, the iovec will be just past the end 1018 * of the virtio-scsi response header in either the same 1019 * or immediately following iovec. 1020 * 1021 * Any associated T10_PI bytes for the outgoing / incoming 1022 * payloads are included in calculation of exp_data_len here. 1023 */ 1024 prot_bytes = 0; 1025 1026 if (vc.out_size > vc.req_size) { 1027 data_direction = DMA_TO_DEVICE; 1028 exp_data_len = vc.out_size - vc.req_size; 1029 data_iter = vc.out_iter; 1030 } else if (vc.in_size > vc.rsp_size) { 1031 data_direction = DMA_FROM_DEVICE; 1032 exp_data_len = vc.in_size - vc.rsp_size; 1033 1034 iov_iter_init(&in_iter, READ, &vq->iov[vc.out], vc.in, 1035 vc.rsp_size + exp_data_len); 1036 iov_iter_advance(&in_iter, vc.rsp_size); 1037 data_iter = in_iter; 1038 } else { 1039 data_direction = DMA_NONE; 1040 exp_data_len = 0; 1041 } 1042 /* 1043 * If T10_PI header + payload is present, setup prot_iter values 1044 * and recalculate data_iter for vhost_scsi_mapal() mapping to 1045 * host scatterlists via get_user_pages_fast(). 1046 */ 1047 if (t10_pi) { 1048 if (v_req_pi.pi_bytesout) { 1049 if (data_direction != DMA_TO_DEVICE) { 1050 vq_err(vq, "Received non zero pi_bytesout," 1051 " but wrong data_direction\n"); 1052 goto err; 1053 } 1054 prot_bytes = vhost32_to_cpu(vq, v_req_pi.pi_bytesout); 1055 } else if (v_req_pi.pi_bytesin) { 1056 if (data_direction != DMA_FROM_DEVICE) { 1057 vq_err(vq, "Received non zero pi_bytesin," 1058 " but wrong data_direction\n"); 1059 goto err; 1060 } 1061 prot_bytes = vhost32_to_cpu(vq, v_req_pi.pi_bytesin); 1062 } 1063 /* 1064 * Set prot_iter to data_iter and truncate it to 1065 * prot_bytes, and advance data_iter past any 1066 * preceeding prot_bytes that may be present. 1067 * 1068 * Also fix up the exp_data_len to reflect only the 1069 * actual data payload length. 1070 */ 1071 if (prot_bytes) { 1072 exp_data_len -= prot_bytes; 1073 prot_iter = data_iter; 1074 iov_iter_truncate(&prot_iter, prot_bytes); 1075 iov_iter_advance(&data_iter, prot_bytes); 1076 } 1077 tag = vhost64_to_cpu(vq, v_req_pi.tag); 1078 task_attr = v_req_pi.task_attr; 1079 cdb = &v_req_pi.cdb[0]; 1080 lun = vhost_buf_to_lun(v_req_pi.lun); 1081 } else { 1082 tag = vhost64_to_cpu(vq, v_req.tag); 1083 task_attr = v_req.task_attr; 1084 cdb = &v_req.cdb[0]; 1085 lun = vhost_buf_to_lun(v_req.lun); 1086 } 1087 /* 1088 * Check that the received CDB size does not exceeded our 1089 * hardcoded max for vhost-scsi, then get a pre-allocated 1090 * cmd descriptor for the new virtio-scsi tag. 1091 * 1092 * TODO what if cdb was too small for varlen cdb header? 1093 */ 1094 if (unlikely(scsi_command_size(cdb) > VHOST_SCSI_MAX_CDB_SIZE)) { 1095 vq_err(vq, "Received SCSI CDB with command_size: %d that" 1096 " exceeds SCSI_MAX_VARLEN_CDB_SIZE: %d\n", 1097 scsi_command_size(cdb), VHOST_SCSI_MAX_CDB_SIZE); 1098 goto err; 1099 } 1100 cmd = vhost_scsi_get_cmd(vq, tpg, cdb, tag, lun, task_attr, 1101 exp_data_len + prot_bytes, 1102 data_direction); 1103 if (IS_ERR(cmd)) { 1104 vq_err(vq, "vhost_scsi_get_cmd failed %ld\n", 1105 PTR_ERR(cmd)); 1106 goto err; 1107 } 1108 cmd->tvc_vhost = vs; 1109 cmd->tvc_vq = vq; 1110 cmd->tvc_resp_iov = vq->iov[vc.out]; 1111 cmd->tvc_in_iovs = vc.in; 1112 1113 pr_debug("vhost_scsi got command opcode: %#02x, lun: %d\n", 1114 cmd->tvc_cdb[0], cmd->tvc_lun); 1115 pr_debug("cmd: %p exp_data_len: %d, prot_bytes: %d data_direction:" 1116 " %d\n", cmd, exp_data_len, prot_bytes, data_direction); 1117 1118 if (data_direction != DMA_NONE) { 1119 if (unlikely(vhost_scsi_mapal(cmd, prot_bytes, 1120 &prot_iter, exp_data_len, 1121 &data_iter))) { 1122 vq_err(vq, "Failed to map iov to sgl\n"); 1123 vhost_scsi_release_cmd_res(&cmd->tvc_se_cmd); 1124 goto err; 1125 } 1126 } 1127 /* 1128 * Save the descriptor from vhost_get_vq_desc() to be used to 1129 * complete the virtio-scsi request in TCM callback context via 1130 * vhost_scsi_queue_data_in() and vhost_scsi_queue_status() 1131 */ 1132 cmd->tvc_vq_desc = vc.head; 1133 /* 1134 * Dispatch cmd descriptor for cmwq execution in process 1135 * context provided by vhost_scsi_workqueue. This also ensures 1136 * cmd is executed on the same kworker CPU as this vhost 1137 * thread to gain positive L2 cache locality effects. 1138 */ 1139 INIT_WORK(&cmd->work, vhost_scsi_submission_work); 1140 queue_work(vhost_scsi_workqueue, &cmd->work); 1141 ret = 0; 1142 err: 1143 /* 1144 * ENXIO: No more requests, or read error, wait for next kick 1145 * EINVAL: Invalid response buffer, drop the request 1146 * EIO: Respond with bad target 1147 * EAGAIN: Pending request 1148 */ 1149 if (ret == -ENXIO) 1150 break; 1151 else if (ret == -EIO) 1152 vhost_scsi_send_bad_target(vs, vq, vc.head, vc.out); 1153 } while (likely(!vhost_exceeds_weight(vq, ++c, 0))); 1154 out: 1155 mutex_unlock(&vq->mutex); 1156 } 1157 1158 static void 1159 vhost_scsi_send_tmf_resp(struct vhost_scsi *vs, struct vhost_virtqueue *vq, 1160 int in_iovs, int vq_desc, struct iovec *resp_iov, 1161 int tmf_resp_code) 1162 { 1163 struct virtio_scsi_ctrl_tmf_resp rsp; 1164 struct iov_iter iov_iter; 1165 int ret; 1166 1167 pr_debug("%s\n", __func__); 1168 memset(&rsp, 0, sizeof(rsp)); 1169 rsp.response = tmf_resp_code; 1170 1171 iov_iter_init(&iov_iter, READ, resp_iov, in_iovs, sizeof(rsp)); 1172 1173 ret = copy_to_iter(&rsp, sizeof(rsp), &iov_iter); 1174 if (likely(ret == sizeof(rsp))) 1175 vhost_add_used_and_signal(&vs->dev, vq, vq_desc, 0); 1176 else 1177 pr_err("Faulted on virtio_scsi_ctrl_tmf_resp\n"); 1178 } 1179 1180 static void vhost_scsi_tmf_resp_work(struct vhost_work *work) 1181 { 1182 struct vhost_scsi_tmf *tmf = container_of(work, struct vhost_scsi_tmf, 1183 vwork); 1184 int resp_code; 1185 1186 if (tmf->scsi_resp == TMR_FUNCTION_COMPLETE) 1187 resp_code = VIRTIO_SCSI_S_FUNCTION_SUCCEEDED; 1188 else 1189 resp_code = VIRTIO_SCSI_S_FUNCTION_REJECTED; 1190 1191 vhost_scsi_send_tmf_resp(tmf->vhost, &tmf->svq->vq, tmf->in_iovs, 1192 tmf->vq_desc, &tmf->resp_iov, resp_code); 1193 vhost_scsi_release_tmf_res(tmf); 1194 } 1195 1196 static void 1197 vhost_scsi_handle_tmf(struct vhost_scsi *vs, struct vhost_scsi_tpg *tpg, 1198 struct vhost_virtqueue *vq, 1199 struct virtio_scsi_ctrl_tmf_req *vtmf, 1200 struct vhost_scsi_ctx *vc) 1201 { 1202 struct vhost_scsi_virtqueue *svq = container_of(vq, 1203 struct vhost_scsi_virtqueue, vq); 1204 struct vhost_scsi_tmf *tmf; 1205 1206 if (vhost32_to_cpu(vq, vtmf->subtype) != 1207 VIRTIO_SCSI_T_TMF_LOGICAL_UNIT_RESET) 1208 goto send_reject; 1209 1210 if (!tpg->tpg_nexus || !tpg->tpg_nexus->tvn_se_sess) { 1211 pr_err("Unable to locate active struct vhost_scsi_nexus for LUN RESET.\n"); 1212 goto send_reject; 1213 } 1214 1215 mutex_lock(&tpg->tv_tpg_mutex); 1216 if (list_empty(&tpg->tmf_queue)) { 1217 pr_err("Missing reserve TMF. Could not handle LUN RESET.\n"); 1218 mutex_unlock(&tpg->tv_tpg_mutex); 1219 goto send_reject; 1220 } 1221 1222 tmf = list_first_entry(&tpg->tmf_queue, struct vhost_scsi_tmf, 1223 queue_entry); 1224 list_del_init(&tmf->queue_entry); 1225 mutex_unlock(&tpg->tv_tpg_mutex); 1226 1227 tmf->tpg = tpg; 1228 tmf->vhost = vs; 1229 tmf->svq = svq; 1230 tmf->resp_iov = vq->iov[vc->out]; 1231 tmf->vq_desc = vc->head; 1232 tmf->in_iovs = vc->in; 1233 tmf->inflight = vhost_scsi_get_inflight(vq); 1234 1235 if (target_submit_tmr(&tmf->se_cmd, tpg->tpg_nexus->tvn_se_sess, NULL, 1236 vhost_buf_to_lun(vtmf->lun), NULL, 1237 TMR_LUN_RESET, GFP_KERNEL, 0, 1238 TARGET_SCF_ACK_KREF) < 0) { 1239 vhost_scsi_release_tmf_res(tmf); 1240 goto send_reject; 1241 } 1242 1243 return; 1244 1245 send_reject: 1246 vhost_scsi_send_tmf_resp(vs, vq, vc->in, vc->head, &vq->iov[vc->out], 1247 VIRTIO_SCSI_S_FUNCTION_REJECTED); 1248 } 1249 1250 static void 1251 vhost_scsi_send_an_resp(struct vhost_scsi *vs, 1252 struct vhost_virtqueue *vq, 1253 struct vhost_scsi_ctx *vc) 1254 { 1255 struct virtio_scsi_ctrl_an_resp rsp; 1256 struct iov_iter iov_iter; 1257 int ret; 1258 1259 pr_debug("%s\n", __func__); 1260 memset(&rsp, 0, sizeof(rsp)); /* event_actual = 0 */ 1261 rsp.response = VIRTIO_SCSI_S_OK; 1262 1263 iov_iter_init(&iov_iter, READ, &vq->iov[vc->out], vc->in, sizeof(rsp)); 1264 1265 ret = copy_to_iter(&rsp, sizeof(rsp), &iov_iter); 1266 if (likely(ret == sizeof(rsp))) 1267 vhost_add_used_and_signal(&vs->dev, vq, vc->head, 0); 1268 else 1269 pr_err("Faulted on virtio_scsi_ctrl_an_resp\n"); 1270 } 1271 1272 static void 1273 vhost_scsi_ctl_handle_vq(struct vhost_scsi *vs, struct vhost_virtqueue *vq) 1274 { 1275 struct vhost_scsi_tpg *tpg; 1276 union { 1277 __virtio32 type; 1278 struct virtio_scsi_ctrl_an_req an; 1279 struct virtio_scsi_ctrl_tmf_req tmf; 1280 } v_req; 1281 struct vhost_scsi_ctx vc; 1282 size_t typ_size; 1283 int ret, c = 0; 1284 1285 mutex_lock(&vq->mutex); 1286 /* 1287 * We can handle the vq only after the endpoint is setup by calling the 1288 * VHOST_SCSI_SET_ENDPOINT ioctl. 1289 */ 1290 if (!vhost_vq_get_backend(vq)) 1291 goto out; 1292 1293 memset(&vc, 0, sizeof(vc)); 1294 1295 vhost_disable_notify(&vs->dev, vq); 1296 1297 do { 1298 ret = vhost_scsi_get_desc(vs, vq, &vc); 1299 if (ret) 1300 goto err; 1301 1302 /* 1303 * Get the request type first in order to setup 1304 * other parameters dependent on the type. 1305 */ 1306 vc.req = &v_req.type; 1307 typ_size = sizeof(v_req.type); 1308 1309 if (unlikely(!copy_from_iter_full(vc.req, typ_size, 1310 &vc.out_iter))) { 1311 vq_err(vq, "Faulted on copy_from_iter tmf type\n"); 1312 /* 1313 * The size of the response buffer depends on the 1314 * request type and must be validated against it. 1315 * Since the request type is not known, don't send 1316 * a response. 1317 */ 1318 continue; 1319 } 1320 1321 switch (vhost32_to_cpu(vq, v_req.type)) { 1322 case VIRTIO_SCSI_T_TMF: 1323 vc.req = &v_req.tmf; 1324 vc.req_size = sizeof(struct virtio_scsi_ctrl_tmf_req); 1325 vc.rsp_size = sizeof(struct virtio_scsi_ctrl_tmf_resp); 1326 vc.lunp = &v_req.tmf.lun[0]; 1327 vc.target = &v_req.tmf.lun[1]; 1328 break; 1329 case VIRTIO_SCSI_T_AN_QUERY: 1330 case VIRTIO_SCSI_T_AN_SUBSCRIBE: 1331 vc.req = &v_req.an; 1332 vc.req_size = sizeof(struct virtio_scsi_ctrl_an_req); 1333 vc.rsp_size = sizeof(struct virtio_scsi_ctrl_an_resp); 1334 vc.lunp = &v_req.an.lun[0]; 1335 vc.target = NULL; 1336 break; 1337 default: 1338 vq_err(vq, "Unknown control request %d", v_req.type); 1339 continue; 1340 } 1341 1342 /* 1343 * Validate the size of request and response buffers. 1344 * Check for a sane response buffer so we can report 1345 * early errors back to the guest. 1346 */ 1347 ret = vhost_scsi_chk_size(vq, &vc); 1348 if (ret) 1349 goto err; 1350 1351 /* 1352 * Get the rest of the request now that its size is known. 1353 */ 1354 vc.req += typ_size; 1355 vc.req_size -= typ_size; 1356 1357 ret = vhost_scsi_get_req(vq, &vc, &tpg); 1358 if (ret) 1359 goto err; 1360 1361 if (v_req.type == VIRTIO_SCSI_T_TMF) 1362 vhost_scsi_handle_tmf(vs, tpg, vq, &v_req.tmf, &vc); 1363 else 1364 vhost_scsi_send_an_resp(vs, vq, &vc); 1365 err: 1366 /* 1367 * ENXIO: No more requests, or read error, wait for next kick 1368 * EINVAL: Invalid response buffer, drop the request 1369 * EIO: Respond with bad target 1370 * EAGAIN: Pending request 1371 */ 1372 if (ret == -ENXIO) 1373 break; 1374 else if (ret == -EIO) 1375 vhost_scsi_send_bad_target(vs, vq, vc.head, vc.out); 1376 } while (likely(!vhost_exceeds_weight(vq, ++c, 0))); 1377 out: 1378 mutex_unlock(&vq->mutex); 1379 } 1380 1381 static void vhost_scsi_ctl_handle_kick(struct vhost_work *work) 1382 { 1383 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue, 1384 poll.work); 1385 struct vhost_scsi *vs = container_of(vq->dev, struct vhost_scsi, dev); 1386 1387 pr_debug("%s: The handling func for control queue.\n", __func__); 1388 vhost_scsi_ctl_handle_vq(vs, vq); 1389 } 1390 1391 static void 1392 vhost_scsi_send_evt(struct vhost_scsi *vs, 1393 struct vhost_scsi_tpg *tpg, 1394 struct se_lun *lun, 1395 u32 event, 1396 u32 reason) 1397 { 1398 struct vhost_scsi_evt *evt; 1399 1400 evt = vhost_scsi_allocate_evt(vs, event, reason); 1401 if (!evt) 1402 return; 1403 1404 if (tpg && lun) { 1405 /* TODO: share lun setup code with virtio-scsi.ko */ 1406 /* 1407 * Note: evt->event is zeroed when we allocate it and 1408 * lun[4-7] need to be zero according to virtio-scsi spec. 1409 */ 1410 evt->event.lun[0] = 0x01; 1411 evt->event.lun[1] = tpg->tport_tpgt; 1412 if (lun->unpacked_lun >= 256) 1413 evt->event.lun[2] = lun->unpacked_lun >> 8 | 0x40 ; 1414 evt->event.lun[3] = lun->unpacked_lun & 0xFF; 1415 } 1416 1417 llist_add(&evt->list, &vs->vs_event_list); 1418 vhost_work_queue(&vs->dev, &vs->vs_event_work); 1419 } 1420 1421 static void vhost_scsi_evt_handle_kick(struct vhost_work *work) 1422 { 1423 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue, 1424 poll.work); 1425 struct vhost_scsi *vs = container_of(vq->dev, struct vhost_scsi, dev); 1426 1427 mutex_lock(&vq->mutex); 1428 if (!vhost_vq_get_backend(vq)) 1429 goto out; 1430 1431 if (vs->vs_events_missed) 1432 vhost_scsi_send_evt(vs, NULL, NULL, VIRTIO_SCSI_T_NO_EVENT, 0); 1433 out: 1434 mutex_unlock(&vq->mutex); 1435 } 1436 1437 static void vhost_scsi_handle_kick(struct vhost_work *work) 1438 { 1439 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue, 1440 poll.work); 1441 struct vhost_scsi *vs = container_of(vq->dev, struct vhost_scsi, dev); 1442 1443 vhost_scsi_handle_vq(vs, vq); 1444 } 1445 1446 static void vhost_scsi_flush_vq(struct vhost_scsi *vs, int index) 1447 { 1448 vhost_poll_flush(&vs->vqs[index].vq.poll); 1449 } 1450 1451 /* Callers must hold dev mutex */ 1452 static void vhost_scsi_flush(struct vhost_scsi *vs) 1453 { 1454 struct vhost_scsi_inflight *old_inflight[VHOST_SCSI_MAX_VQ]; 1455 int i; 1456 1457 /* Init new inflight and remember the old inflight */ 1458 vhost_scsi_init_inflight(vs, old_inflight); 1459 1460 /* 1461 * The inflight->kref was initialized to 1. We decrement it here to 1462 * indicate the start of the flush operation so that it will reach 0 1463 * when all the reqs are finished. 1464 */ 1465 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++) 1466 kref_put(&old_inflight[i]->kref, vhost_scsi_done_inflight); 1467 1468 /* Flush both the vhost poll and vhost work */ 1469 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++) 1470 vhost_scsi_flush_vq(vs, i); 1471 vhost_work_flush(&vs->dev, &vs->vs_completion_work); 1472 vhost_work_flush(&vs->dev, &vs->vs_event_work); 1473 1474 /* Wait for all reqs issued before the flush to be finished */ 1475 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++) 1476 wait_for_completion(&old_inflight[i]->comp); 1477 } 1478 1479 static void vhost_scsi_destroy_vq_cmds(struct vhost_virtqueue *vq) 1480 { 1481 struct vhost_scsi_virtqueue *svq = container_of(vq, 1482 struct vhost_scsi_virtqueue, vq); 1483 struct vhost_scsi_cmd *tv_cmd; 1484 unsigned int i; 1485 1486 if (!svq->scsi_cmds) 1487 return; 1488 1489 for (i = 0; i < svq->max_cmds; i++) { 1490 tv_cmd = &svq->scsi_cmds[i]; 1491 1492 kfree(tv_cmd->tvc_sgl); 1493 kfree(tv_cmd->tvc_prot_sgl); 1494 kfree(tv_cmd->tvc_upages); 1495 } 1496 1497 sbitmap_free(&svq->scsi_tags); 1498 kfree(svq->scsi_cmds); 1499 svq->scsi_cmds = NULL; 1500 } 1501 1502 static int vhost_scsi_setup_vq_cmds(struct vhost_virtqueue *vq, int max_cmds) 1503 { 1504 struct vhost_scsi_virtqueue *svq = container_of(vq, 1505 struct vhost_scsi_virtqueue, vq); 1506 struct vhost_scsi_cmd *tv_cmd; 1507 unsigned int i; 1508 1509 if (svq->scsi_cmds) 1510 return 0; 1511 1512 if (sbitmap_init_node(&svq->scsi_tags, max_cmds, -1, GFP_KERNEL, 1513 NUMA_NO_NODE, false, true)) 1514 return -ENOMEM; 1515 svq->max_cmds = max_cmds; 1516 1517 svq->scsi_cmds = kcalloc(max_cmds, sizeof(*tv_cmd), GFP_KERNEL); 1518 if (!svq->scsi_cmds) { 1519 sbitmap_free(&svq->scsi_tags); 1520 return -ENOMEM; 1521 } 1522 1523 for (i = 0; i < max_cmds; i++) { 1524 tv_cmd = &svq->scsi_cmds[i]; 1525 1526 tv_cmd->tvc_sgl = kcalloc(VHOST_SCSI_PREALLOC_SGLS, 1527 sizeof(struct scatterlist), 1528 GFP_KERNEL); 1529 if (!tv_cmd->tvc_sgl) { 1530 pr_err("Unable to allocate tv_cmd->tvc_sgl\n"); 1531 goto out; 1532 } 1533 1534 tv_cmd->tvc_upages = kcalloc(VHOST_SCSI_PREALLOC_UPAGES, 1535 sizeof(struct page *), 1536 GFP_KERNEL); 1537 if (!tv_cmd->tvc_upages) { 1538 pr_err("Unable to allocate tv_cmd->tvc_upages\n"); 1539 goto out; 1540 } 1541 1542 tv_cmd->tvc_prot_sgl = kcalloc(VHOST_SCSI_PREALLOC_PROT_SGLS, 1543 sizeof(struct scatterlist), 1544 GFP_KERNEL); 1545 if (!tv_cmd->tvc_prot_sgl) { 1546 pr_err("Unable to allocate tv_cmd->tvc_prot_sgl\n"); 1547 goto out; 1548 } 1549 } 1550 return 0; 1551 out: 1552 vhost_scsi_destroy_vq_cmds(vq); 1553 return -ENOMEM; 1554 } 1555 1556 /* 1557 * Called from vhost_scsi_ioctl() context to walk the list of available 1558 * vhost_scsi_tpg with an active struct vhost_scsi_nexus 1559 * 1560 * The lock nesting rule is: 1561 * vhost_scsi_mutex -> vs->dev.mutex -> tpg->tv_tpg_mutex -> vq->mutex 1562 */ 1563 static int 1564 vhost_scsi_set_endpoint(struct vhost_scsi *vs, 1565 struct vhost_scsi_target *t) 1566 { 1567 struct se_portal_group *se_tpg; 1568 struct vhost_scsi_tport *tv_tport; 1569 struct vhost_scsi_tpg *tpg; 1570 struct vhost_scsi_tpg **vs_tpg; 1571 struct vhost_virtqueue *vq; 1572 int index, ret, i, len; 1573 bool match = false; 1574 1575 mutex_lock(&vhost_scsi_mutex); 1576 mutex_lock(&vs->dev.mutex); 1577 1578 /* Verify that ring has been setup correctly. */ 1579 for (index = 0; index < vs->dev.nvqs; ++index) { 1580 /* Verify that ring has been setup correctly. */ 1581 if (!vhost_vq_access_ok(&vs->vqs[index].vq)) { 1582 ret = -EFAULT; 1583 goto out; 1584 } 1585 } 1586 1587 len = sizeof(vs_tpg[0]) * VHOST_SCSI_MAX_TARGET; 1588 vs_tpg = kzalloc(len, GFP_KERNEL); 1589 if (!vs_tpg) { 1590 ret = -ENOMEM; 1591 goto out; 1592 } 1593 if (vs->vs_tpg) 1594 memcpy(vs_tpg, vs->vs_tpg, len); 1595 1596 list_for_each_entry(tpg, &vhost_scsi_list, tv_tpg_list) { 1597 mutex_lock(&tpg->tv_tpg_mutex); 1598 if (!tpg->tpg_nexus) { 1599 mutex_unlock(&tpg->tv_tpg_mutex); 1600 continue; 1601 } 1602 if (tpg->tv_tpg_vhost_count != 0) { 1603 mutex_unlock(&tpg->tv_tpg_mutex); 1604 continue; 1605 } 1606 tv_tport = tpg->tport; 1607 1608 if (!strcmp(tv_tport->tport_name, t->vhost_wwpn)) { 1609 if (vs->vs_tpg && vs->vs_tpg[tpg->tport_tpgt]) { 1610 mutex_unlock(&tpg->tv_tpg_mutex); 1611 ret = -EEXIST; 1612 goto undepend; 1613 } 1614 /* 1615 * In order to ensure individual vhost-scsi configfs 1616 * groups cannot be removed while in use by vhost ioctl, 1617 * go ahead and take an explicit se_tpg->tpg_group.cg_item 1618 * dependency now. 1619 */ 1620 se_tpg = &tpg->se_tpg; 1621 ret = target_depend_item(&se_tpg->tpg_group.cg_item); 1622 if (ret) { 1623 pr_warn("target_depend_item() failed: %d\n", ret); 1624 mutex_unlock(&tpg->tv_tpg_mutex); 1625 goto undepend; 1626 } 1627 tpg->tv_tpg_vhost_count++; 1628 tpg->vhost_scsi = vs; 1629 vs_tpg[tpg->tport_tpgt] = tpg; 1630 match = true; 1631 } 1632 mutex_unlock(&tpg->tv_tpg_mutex); 1633 } 1634 1635 if (match) { 1636 memcpy(vs->vs_vhost_wwpn, t->vhost_wwpn, 1637 sizeof(vs->vs_vhost_wwpn)); 1638 1639 for (i = VHOST_SCSI_VQ_IO; i < VHOST_SCSI_MAX_VQ; i++) { 1640 vq = &vs->vqs[i].vq; 1641 if (!vhost_vq_is_setup(vq)) 1642 continue; 1643 1644 ret = vhost_scsi_setup_vq_cmds(vq, vq->num); 1645 if (ret) 1646 goto destroy_vq_cmds; 1647 } 1648 1649 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++) { 1650 vq = &vs->vqs[i].vq; 1651 mutex_lock(&vq->mutex); 1652 vhost_vq_set_backend(vq, vs_tpg); 1653 vhost_vq_init_access(vq); 1654 mutex_unlock(&vq->mutex); 1655 } 1656 ret = 0; 1657 } else { 1658 ret = -EEXIST; 1659 } 1660 1661 /* 1662 * Act as synchronize_rcu to make sure access to 1663 * old vs->vs_tpg is finished. 1664 */ 1665 vhost_scsi_flush(vs); 1666 kfree(vs->vs_tpg); 1667 vs->vs_tpg = vs_tpg; 1668 goto out; 1669 1670 destroy_vq_cmds: 1671 for (i--; i >= VHOST_SCSI_VQ_IO; i--) { 1672 if (!vhost_vq_get_backend(&vs->vqs[i].vq)) 1673 vhost_scsi_destroy_vq_cmds(&vs->vqs[i].vq); 1674 } 1675 undepend: 1676 for (i = 0; i < VHOST_SCSI_MAX_TARGET; i++) { 1677 tpg = vs_tpg[i]; 1678 if (tpg) { 1679 tpg->tv_tpg_vhost_count--; 1680 target_undepend_item(&tpg->se_tpg.tpg_group.cg_item); 1681 } 1682 } 1683 kfree(vs_tpg); 1684 out: 1685 mutex_unlock(&vs->dev.mutex); 1686 mutex_unlock(&vhost_scsi_mutex); 1687 return ret; 1688 } 1689 1690 static int 1691 vhost_scsi_clear_endpoint(struct vhost_scsi *vs, 1692 struct vhost_scsi_target *t) 1693 { 1694 struct se_portal_group *se_tpg; 1695 struct vhost_scsi_tport *tv_tport; 1696 struct vhost_scsi_tpg *tpg; 1697 struct vhost_virtqueue *vq; 1698 bool match = false; 1699 int index, ret, i; 1700 u8 target; 1701 1702 mutex_lock(&vhost_scsi_mutex); 1703 mutex_lock(&vs->dev.mutex); 1704 /* Verify that ring has been setup correctly. */ 1705 for (index = 0; index < vs->dev.nvqs; ++index) { 1706 if (!vhost_vq_access_ok(&vs->vqs[index].vq)) { 1707 ret = -EFAULT; 1708 goto err_dev; 1709 } 1710 } 1711 1712 if (!vs->vs_tpg) { 1713 ret = 0; 1714 goto err_dev; 1715 } 1716 1717 for (i = 0; i < VHOST_SCSI_MAX_TARGET; i++) { 1718 target = i; 1719 tpg = vs->vs_tpg[target]; 1720 if (!tpg) 1721 continue; 1722 1723 mutex_lock(&tpg->tv_tpg_mutex); 1724 tv_tport = tpg->tport; 1725 if (!tv_tport) { 1726 ret = -ENODEV; 1727 goto err_tpg; 1728 } 1729 1730 if (strcmp(tv_tport->tport_name, t->vhost_wwpn)) { 1731 pr_warn("tv_tport->tport_name: %s, tpg->tport_tpgt: %hu" 1732 " does not match t->vhost_wwpn: %s, t->vhost_tpgt: %hu\n", 1733 tv_tport->tport_name, tpg->tport_tpgt, 1734 t->vhost_wwpn, t->vhost_tpgt); 1735 ret = -EINVAL; 1736 goto err_tpg; 1737 } 1738 tpg->tv_tpg_vhost_count--; 1739 tpg->vhost_scsi = NULL; 1740 vs->vs_tpg[target] = NULL; 1741 match = true; 1742 mutex_unlock(&tpg->tv_tpg_mutex); 1743 /* 1744 * Release se_tpg->tpg_group.cg_item configfs dependency now 1745 * to allow vhost-scsi WWPN se_tpg->tpg_group shutdown to occur. 1746 */ 1747 se_tpg = &tpg->se_tpg; 1748 target_undepend_item(&se_tpg->tpg_group.cg_item); 1749 } 1750 if (match) { 1751 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++) { 1752 vq = &vs->vqs[i].vq; 1753 mutex_lock(&vq->mutex); 1754 vhost_vq_set_backend(vq, NULL); 1755 mutex_unlock(&vq->mutex); 1756 /* 1757 * Make sure cmds are not running before tearing them 1758 * down. 1759 */ 1760 vhost_scsi_flush(vs); 1761 vhost_scsi_destroy_vq_cmds(vq); 1762 } 1763 } 1764 /* 1765 * Act as synchronize_rcu to make sure access to 1766 * old vs->vs_tpg is finished. 1767 */ 1768 vhost_scsi_flush(vs); 1769 kfree(vs->vs_tpg); 1770 vs->vs_tpg = NULL; 1771 WARN_ON(vs->vs_events_nr); 1772 mutex_unlock(&vs->dev.mutex); 1773 mutex_unlock(&vhost_scsi_mutex); 1774 return 0; 1775 1776 err_tpg: 1777 mutex_unlock(&tpg->tv_tpg_mutex); 1778 err_dev: 1779 mutex_unlock(&vs->dev.mutex); 1780 mutex_unlock(&vhost_scsi_mutex); 1781 return ret; 1782 } 1783 1784 static int vhost_scsi_set_features(struct vhost_scsi *vs, u64 features) 1785 { 1786 struct vhost_virtqueue *vq; 1787 int i; 1788 1789 if (features & ~VHOST_SCSI_FEATURES) 1790 return -EOPNOTSUPP; 1791 1792 mutex_lock(&vs->dev.mutex); 1793 if ((features & (1 << VHOST_F_LOG_ALL)) && 1794 !vhost_log_access_ok(&vs->dev)) { 1795 mutex_unlock(&vs->dev.mutex); 1796 return -EFAULT; 1797 } 1798 1799 for (i = 0; i < VHOST_SCSI_MAX_VQ; i++) { 1800 vq = &vs->vqs[i].vq; 1801 mutex_lock(&vq->mutex); 1802 vq->acked_features = features; 1803 mutex_unlock(&vq->mutex); 1804 } 1805 mutex_unlock(&vs->dev.mutex); 1806 return 0; 1807 } 1808 1809 static int vhost_scsi_open(struct inode *inode, struct file *f) 1810 { 1811 struct vhost_scsi *vs; 1812 struct vhost_virtqueue **vqs; 1813 int r = -ENOMEM, i; 1814 1815 vs = kvzalloc(sizeof(*vs), GFP_KERNEL); 1816 if (!vs) 1817 goto err_vs; 1818 1819 vqs = kmalloc_array(VHOST_SCSI_MAX_VQ, sizeof(*vqs), GFP_KERNEL); 1820 if (!vqs) 1821 goto err_vqs; 1822 1823 vhost_work_init(&vs->vs_completion_work, vhost_scsi_complete_cmd_work); 1824 vhost_work_init(&vs->vs_event_work, vhost_scsi_evt_work); 1825 1826 vs->vs_events_nr = 0; 1827 vs->vs_events_missed = false; 1828 1829 vqs[VHOST_SCSI_VQ_CTL] = &vs->vqs[VHOST_SCSI_VQ_CTL].vq; 1830 vqs[VHOST_SCSI_VQ_EVT] = &vs->vqs[VHOST_SCSI_VQ_EVT].vq; 1831 vs->vqs[VHOST_SCSI_VQ_CTL].vq.handle_kick = vhost_scsi_ctl_handle_kick; 1832 vs->vqs[VHOST_SCSI_VQ_EVT].vq.handle_kick = vhost_scsi_evt_handle_kick; 1833 for (i = VHOST_SCSI_VQ_IO; i < VHOST_SCSI_MAX_VQ; i++) { 1834 vqs[i] = &vs->vqs[i].vq; 1835 vs->vqs[i].vq.handle_kick = vhost_scsi_handle_kick; 1836 } 1837 vhost_dev_init(&vs->dev, vqs, VHOST_SCSI_MAX_VQ, UIO_MAXIOV, 1838 VHOST_SCSI_WEIGHT, 0, true, NULL); 1839 1840 vhost_scsi_init_inflight(vs, NULL); 1841 1842 f->private_data = vs; 1843 return 0; 1844 1845 err_vqs: 1846 kvfree(vs); 1847 err_vs: 1848 return r; 1849 } 1850 1851 static int vhost_scsi_release(struct inode *inode, struct file *f) 1852 { 1853 struct vhost_scsi *vs = f->private_data; 1854 struct vhost_scsi_target t; 1855 1856 mutex_lock(&vs->dev.mutex); 1857 memcpy(t.vhost_wwpn, vs->vs_vhost_wwpn, sizeof(t.vhost_wwpn)); 1858 mutex_unlock(&vs->dev.mutex); 1859 vhost_scsi_clear_endpoint(vs, &t); 1860 vhost_dev_stop(&vs->dev); 1861 vhost_dev_cleanup(&vs->dev); 1862 /* Jobs can re-queue themselves in evt kick handler. Do extra flush. */ 1863 vhost_scsi_flush(vs); 1864 kfree(vs->dev.vqs); 1865 kvfree(vs); 1866 return 0; 1867 } 1868 1869 static long 1870 vhost_scsi_ioctl(struct file *f, 1871 unsigned int ioctl, 1872 unsigned long arg) 1873 { 1874 struct vhost_scsi *vs = f->private_data; 1875 struct vhost_scsi_target backend; 1876 void __user *argp = (void __user *)arg; 1877 u64 __user *featurep = argp; 1878 u32 __user *eventsp = argp; 1879 u32 events_missed; 1880 u64 features; 1881 int r, abi_version = VHOST_SCSI_ABI_VERSION; 1882 struct vhost_virtqueue *vq = &vs->vqs[VHOST_SCSI_VQ_EVT].vq; 1883 1884 switch (ioctl) { 1885 case VHOST_SCSI_SET_ENDPOINT: 1886 if (copy_from_user(&backend, argp, sizeof backend)) 1887 return -EFAULT; 1888 if (backend.reserved != 0) 1889 return -EOPNOTSUPP; 1890 1891 return vhost_scsi_set_endpoint(vs, &backend); 1892 case VHOST_SCSI_CLEAR_ENDPOINT: 1893 if (copy_from_user(&backend, argp, sizeof backend)) 1894 return -EFAULT; 1895 if (backend.reserved != 0) 1896 return -EOPNOTSUPP; 1897 1898 return vhost_scsi_clear_endpoint(vs, &backend); 1899 case VHOST_SCSI_GET_ABI_VERSION: 1900 if (copy_to_user(argp, &abi_version, sizeof abi_version)) 1901 return -EFAULT; 1902 return 0; 1903 case VHOST_SCSI_SET_EVENTS_MISSED: 1904 if (get_user(events_missed, eventsp)) 1905 return -EFAULT; 1906 mutex_lock(&vq->mutex); 1907 vs->vs_events_missed = events_missed; 1908 mutex_unlock(&vq->mutex); 1909 return 0; 1910 case VHOST_SCSI_GET_EVENTS_MISSED: 1911 mutex_lock(&vq->mutex); 1912 events_missed = vs->vs_events_missed; 1913 mutex_unlock(&vq->mutex); 1914 if (put_user(events_missed, eventsp)) 1915 return -EFAULT; 1916 return 0; 1917 case VHOST_GET_FEATURES: 1918 features = VHOST_SCSI_FEATURES; 1919 if (copy_to_user(featurep, &features, sizeof features)) 1920 return -EFAULT; 1921 return 0; 1922 case VHOST_SET_FEATURES: 1923 if (copy_from_user(&features, featurep, sizeof features)) 1924 return -EFAULT; 1925 return vhost_scsi_set_features(vs, features); 1926 default: 1927 mutex_lock(&vs->dev.mutex); 1928 r = vhost_dev_ioctl(&vs->dev, ioctl, argp); 1929 /* TODO: flush backend after dev ioctl. */ 1930 if (r == -ENOIOCTLCMD) 1931 r = vhost_vring_ioctl(&vs->dev, ioctl, argp); 1932 mutex_unlock(&vs->dev.mutex); 1933 return r; 1934 } 1935 } 1936 1937 static const struct file_operations vhost_scsi_fops = { 1938 .owner = THIS_MODULE, 1939 .release = vhost_scsi_release, 1940 .unlocked_ioctl = vhost_scsi_ioctl, 1941 .compat_ioctl = compat_ptr_ioctl, 1942 .open = vhost_scsi_open, 1943 .llseek = noop_llseek, 1944 }; 1945 1946 static struct miscdevice vhost_scsi_misc = { 1947 MISC_DYNAMIC_MINOR, 1948 "vhost-scsi", 1949 &vhost_scsi_fops, 1950 }; 1951 1952 static int __init vhost_scsi_register(void) 1953 { 1954 return misc_register(&vhost_scsi_misc); 1955 } 1956 1957 static void vhost_scsi_deregister(void) 1958 { 1959 misc_deregister(&vhost_scsi_misc); 1960 } 1961 1962 static char *vhost_scsi_dump_proto_id(struct vhost_scsi_tport *tport) 1963 { 1964 switch (tport->tport_proto_id) { 1965 case SCSI_PROTOCOL_SAS: 1966 return "SAS"; 1967 case SCSI_PROTOCOL_FCP: 1968 return "FCP"; 1969 case SCSI_PROTOCOL_ISCSI: 1970 return "iSCSI"; 1971 default: 1972 break; 1973 } 1974 1975 return "Unknown"; 1976 } 1977 1978 static void 1979 vhost_scsi_do_plug(struct vhost_scsi_tpg *tpg, 1980 struct se_lun *lun, bool plug) 1981 { 1982 1983 struct vhost_scsi *vs = tpg->vhost_scsi; 1984 struct vhost_virtqueue *vq; 1985 u32 reason; 1986 1987 if (!vs) 1988 return; 1989 1990 mutex_lock(&vs->dev.mutex); 1991 1992 if (plug) 1993 reason = VIRTIO_SCSI_EVT_RESET_RESCAN; 1994 else 1995 reason = VIRTIO_SCSI_EVT_RESET_REMOVED; 1996 1997 vq = &vs->vqs[VHOST_SCSI_VQ_EVT].vq; 1998 mutex_lock(&vq->mutex); 1999 if (vhost_has_feature(vq, VIRTIO_SCSI_F_HOTPLUG)) 2000 vhost_scsi_send_evt(vs, tpg, lun, 2001 VIRTIO_SCSI_T_TRANSPORT_RESET, reason); 2002 mutex_unlock(&vq->mutex); 2003 mutex_unlock(&vs->dev.mutex); 2004 } 2005 2006 static void vhost_scsi_hotplug(struct vhost_scsi_tpg *tpg, struct se_lun *lun) 2007 { 2008 vhost_scsi_do_plug(tpg, lun, true); 2009 } 2010 2011 static void vhost_scsi_hotunplug(struct vhost_scsi_tpg *tpg, struct se_lun *lun) 2012 { 2013 vhost_scsi_do_plug(tpg, lun, false); 2014 } 2015 2016 static int vhost_scsi_port_link(struct se_portal_group *se_tpg, 2017 struct se_lun *lun) 2018 { 2019 struct vhost_scsi_tpg *tpg = container_of(se_tpg, 2020 struct vhost_scsi_tpg, se_tpg); 2021 struct vhost_scsi_tmf *tmf; 2022 2023 tmf = kzalloc(sizeof(*tmf), GFP_KERNEL); 2024 if (!tmf) 2025 return -ENOMEM; 2026 INIT_LIST_HEAD(&tmf->queue_entry); 2027 vhost_work_init(&tmf->vwork, vhost_scsi_tmf_resp_work); 2028 2029 mutex_lock(&vhost_scsi_mutex); 2030 2031 mutex_lock(&tpg->tv_tpg_mutex); 2032 tpg->tv_tpg_port_count++; 2033 list_add_tail(&tmf->queue_entry, &tpg->tmf_queue); 2034 mutex_unlock(&tpg->tv_tpg_mutex); 2035 2036 vhost_scsi_hotplug(tpg, lun); 2037 2038 mutex_unlock(&vhost_scsi_mutex); 2039 2040 return 0; 2041 } 2042 2043 static void vhost_scsi_port_unlink(struct se_portal_group *se_tpg, 2044 struct se_lun *lun) 2045 { 2046 struct vhost_scsi_tpg *tpg = container_of(se_tpg, 2047 struct vhost_scsi_tpg, se_tpg); 2048 struct vhost_scsi_tmf *tmf; 2049 2050 mutex_lock(&vhost_scsi_mutex); 2051 2052 mutex_lock(&tpg->tv_tpg_mutex); 2053 tpg->tv_tpg_port_count--; 2054 tmf = list_first_entry(&tpg->tmf_queue, struct vhost_scsi_tmf, 2055 queue_entry); 2056 list_del(&tmf->queue_entry); 2057 kfree(tmf); 2058 mutex_unlock(&tpg->tv_tpg_mutex); 2059 2060 vhost_scsi_hotunplug(tpg, lun); 2061 2062 mutex_unlock(&vhost_scsi_mutex); 2063 } 2064 2065 static ssize_t vhost_scsi_tpg_attrib_fabric_prot_type_store( 2066 struct config_item *item, const char *page, size_t count) 2067 { 2068 struct se_portal_group *se_tpg = attrib_to_tpg(item); 2069 struct vhost_scsi_tpg *tpg = container_of(se_tpg, 2070 struct vhost_scsi_tpg, se_tpg); 2071 unsigned long val; 2072 int ret = kstrtoul(page, 0, &val); 2073 2074 if (ret) { 2075 pr_err("kstrtoul() returned %d for fabric_prot_type\n", ret); 2076 return ret; 2077 } 2078 if (val != 0 && val != 1 && val != 3) { 2079 pr_err("Invalid vhost_scsi fabric_prot_type: %lu\n", val); 2080 return -EINVAL; 2081 } 2082 tpg->tv_fabric_prot_type = val; 2083 2084 return count; 2085 } 2086 2087 static ssize_t vhost_scsi_tpg_attrib_fabric_prot_type_show( 2088 struct config_item *item, char *page) 2089 { 2090 struct se_portal_group *se_tpg = attrib_to_tpg(item); 2091 struct vhost_scsi_tpg *tpg = container_of(se_tpg, 2092 struct vhost_scsi_tpg, se_tpg); 2093 2094 return sprintf(page, "%d\n", tpg->tv_fabric_prot_type); 2095 } 2096 2097 CONFIGFS_ATTR(vhost_scsi_tpg_attrib_, fabric_prot_type); 2098 2099 static struct configfs_attribute *vhost_scsi_tpg_attrib_attrs[] = { 2100 &vhost_scsi_tpg_attrib_attr_fabric_prot_type, 2101 NULL, 2102 }; 2103 2104 static int vhost_scsi_make_nexus(struct vhost_scsi_tpg *tpg, 2105 const char *name) 2106 { 2107 struct vhost_scsi_nexus *tv_nexus; 2108 2109 mutex_lock(&tpg->tv_tpg_mutex); 2110 if (tpg->tpg_nexus) { 2111 mutex_unlock(&tpg->tv_tpg_mutex); 2112 pr_debug("tpg->tpg_nexus already exists\n"); 2113 return -EEXIST; 2114 } 2115 2116 tv_nexus = kzalloc(sizeof(*tv_nexus), GFP_KERNEL); 2117 if (!tv_nexus) { 2118 mutex_unlock(&tpg->tv_tpg_mutex); 2119 pr_err("Unable to allocate struct vhost_scsi_nexus\n"); 2120 return -ENOMEM; 2121 } 2122 /* 2123 * Since we are running in 'demo mode' this call with generate a 2124 * struct se_node_acl for the vhost_scsi struct se_portal_group with 2125 * the SCSI Initiator port name of the passed configfs group 'name'. 2126 */ 2127 tv_nexus->tvn_se_sess = target_setup_session(&tpg->se_tpg, 0, 0, 2128 TARGET_PROT_DIN_PASS | TARGET_PROT_DOUT_PASS, 2129 (unsigned char *)name, tv_nexus, NULL); 2130 if (IS_ERR(tv_nexus->tvn_se_sess)) { 2131 mutex_unlock(&tpg->tv_tpg_mutex); 2132 kfree(tv_nexus); 2133 return -ENOMEM; 2134 } 2135 tpg->tpg_nexus = tv_nexus; 2136 2137 mutex_unlock(&tpg->tv_tpg_mutex); 2138 return 0; 2139 } 2140 2141 static int vhost_scsi_drop_nexus(struct vhost_scsi_tpg *tpg) 2142 { 2143 struct se_session *se_sess; 2144 struct vhost_scsi_nexus *tv_nexus; 2145 2146 mutex_lock(&tpg->tv_tpg_mutex); 2147 tv_nexus = tpg->tpg_nexus; 2148 if (!tv_nexus) { 2149 mutex_unlock(&tpg->tv_tpg_mutex); 2150 return -ENODEV; 2151 } 2152 2153 se_sess = tv_nexus->tvn_se_sess; 2154 if (!se_sess) { 2155 mutex_unlock(&tpg->tv_tpg_mutex); 2156 return -ENODEV; 2157 } 2158 2159 if (tpg->tv_tpg_port_count != 0) { 2160 mutex_unlock(&tpg->tv_tpg_mutex); 2161 pr_err("Unable to remove TCM_vhost I_T Nexus with" 2162 " active TPG port count: %d\n", 2163 tpg->tv_tpg_port_count); 2164 return -EBUSY; 2165 } 2166 2167 if (tpg->tv_tpg_vhost_count != 0) { 2168 mutex_unlock(&tpg->tv_tpg_mutex); 2169 pr_err("Unable to remove TCM_vhost I_T Nexus with" 2170 " active TPG vhost count: %d\n", 2171 tpg->tv_tpg_vhost_count); 2172 return -EBUSY; 2173 } 2174 2175 pr_debug("TCM_vhost_ConfigFS: Removing I_T Nexus to emulated" 2176 " %s Initiator Port: %s\n", vhost_scsi_dump_proto_id(tpg->tport), 2177 tv_nexus->tvn_se_sess->se_node_acl->initiatorname); 2178 2179 /* 2180 * Release the SCSI I_T Nexus to the emulated vhost Target Port 2181 */ 2182 target_remove_session(se_sess); 2183 tpg->tpg_nexus = NULL; 2184 mutex_unlock(&tpg->tv_tpg_mutex); 2185 2186 kfree(tv_nexus); 2187 return 0; 2188 } 2189 2190 static ssize_t vhost_scsi_tpg_nexus_show(struct config_item *item, char *page) 2191 { 2192 struct se_portal_group *se_tpg = to_tpg(item); 2193 struct vhost_scsi_tpg *tpg = container_of(se_tpg, 2194 struct vhost_scsi_tpg, se_tpg); 2195 struct vhost_scsi_nexus *tv_nexus; 2196 ssize_t ret; 2197 2198 mutex_lock(&tpg->tv_tpg_mutex); 2199 tv_nexus = tpg->tpg_nexus; 2200 if (!tv_nexus) { 2201 mutex_unlock(&tpg->tv_tpg_mutex); 2202 return -ENODEV; 2203 } 2204 ret = snprintf(page, PAGE_SIZE, "%s\n", 2205 tv_nexus->tvn_se_sess->se_node_acl->initiatorname); 2206 mutex_unlock(&tpg->tv_tpg_mutex); 2207 2208 return ret; 2209 } 2210 2211 static ssize_t vhost_scsi_tpg_nexus_store(struct config_item *item, 2212 const char *page, size_t count) 2213 { 2214 struct se_portal_group *se_tpg = to_tpg(item); 2215 struct vhost_scsi_tpg *tpg = container_of(se_tpg, 2216 struct vhost_scsi_tpg, se_tpg); 2217 struct vhost_scsi_tport *tport_wwn = tpg->tport; 2218 unsigned char i_port[VHOST_SCSI_NAMELEN], *ptr, *port_ptr; 2219 int ret; 2220 /* 2221 * Shutdown the active I_T nexus if 'NULL' is passed.. 2222 */ 2223 if (!strncmp(page, "NULL", 4)) { 2224 ret = vhost_scsi_drop_nexus(tpg); 2225 return (!ret) ? count : ret; 2226 } 2227 /* 2228 * Otherwise make sure the passed virtual Initiator port WWN matches 2229 * the fabric protocol_id set in vhost_scsi_make_tport(), and call 2230 * vhost_scsi_make_nexus(). 2231 */ 2232 if (strlen(page) >= VHOST_SCSI_NAMELEN) { 2233 pr_err("Emulated NAA Sas Address: %s, exceeds" 2234 " max: %d\n", page, VHOST_SCSI_NAMELEN); 2235 return -EINVAL; 2236 } 2237 snprintf(&i_port[0], VHOST_SCSI_NAMELEN, "%s", page); 2238 2239 ptr = strstr(i_port, "naa."); 2240 if (ptr) { 2241 if (tport_wwn->tport_proto_id != SCSI_PROTOCOL_SAS) { 2242 pr_err("Passed SAS Initiator Port %s does not" 2243 " match target port protoid: %s\n", i_port, 2244 vhost_scsi_dump_proto_id(tport_wwn)); 2245 return -EINVAL; 2246 } 2247 port_ptr = &i_port[0]; 2248 goto check_newline; 2249 } 2250 ptr = strstr(i_port, "fc."); 2251 if (ptr) { 2252 if (tport_wwn->tport_proto_id != SCSI_PROTOCOL_FCP) { 2253 pr_err("Passed FCP Initiator Port %s does not" 2254 " match target port protoid: %s\n", i_port, 2255 vhost_scsi_dump_proto_id(tport_wwn)); 2256 return -EINVAL; 2257 } 2258 port_ptr = &i_port[3]; /* Skip over "fc." */ 2259 goto check_newline; 2260 } 2261 ptr = strstr(i_port, "iqn."); 2262 if (ptr) { 2263 if (tport_wwn->tport_proto_id != SCSI_PROTOCOL_ISCSI) { 2264 pr_err("Passed iSCSI Initiator Port %s does not" 2265 " match target port protoid: %s\n", i_port, 2266 vhost_scsi_dump_proto_id(tport_wwn)); 2267 return -EINVAL; 2268 } 2269 port_ptr = &i_port[0]; 2270 goto check_newline; 2271 } 2272 pr_err("Unable to locate prefix for emulated Initiator Port:" 2273 " %s\n", i_port); 2274 return -EINVAL; 2275 /* 2276 * Clear any trailing newline for the NAA WWN 2277 */ 2278 check_newline: 2279 if (i_port[strlen(i_port)-1] == '\n') 2280 i_port[strlen(i_port)-1] = '\0'; 2281 2282 ret = vhost_scsi_make_nexus(tpg, port_ptr); 2283 if (ret < 0) 2284 return ret; 2285 2286 return count; 2287 } 2288 2289 CONFIGFS_ATTR(vhost_scsi_tpg_, nexus); 2290 2291 static struct configfs_attribute *vhost_scsi_tpg_attrs[] = { 2292 &vhost_scsi_tpg_attr_nexus, 2293 NULL, 2294 }; 2295 2296 static struct se_portal_group * 2297 vhost_scsi_make_tpg(struct se_wwn *wwn, const char *name) 2298 { 2299 struct vhost_scsi_tport *tport = container_of(wwn, 2300 struct vhost_scsi_tport, tport_wwn); 2301 2302 struct vhost_scsi_tpg *tpg; 2303 u16 tpgt; 2304 int ret; 2305 2306 if (strstr(name, "tpgt_") != name) 2307 return ERR_PTR(-EINVAL); 2308 if (kstrtou16(name + 5, 10, &tpgt) || tpgt >= VHOST_SCSI_MAX_TARGET) 2309 return ERR_PTR(-EINVAL); 2310 2311 tpg = kzalloc(sizeof(*tpg), GFP_KERNEL); 2312 if (!tpg) { 2313 pr_err("Unable to allocate struct vhost_scsi_tpg"); 2314 return ERR_PTR(-ENOMEM); 2315 } 2316 mutex_init(&tpg->tv_tpg_mutex); 2317 INIT_LIST_HEAD(&tpg->tv_tpg_list); 2318 INIT_LIST_HEAD(&tpg->tmf_queue); 2319 tpg->tport = tport; 2320 tpg->tport_tpgt = tpgt; 2321 2322 ret = core_tpg_register(wwn, &tpg->se_tpg, tport->tport_proto_id); 2323 if (ret < 0) { 2324 kfree(tpg); 2325 return NULL; 2326 } 2327 mutex_lock(&vhost_scsi_mutex); 2328 list_add_tail(&tpg->tv_tpg_list, &vhost_scsi_list); 2329 mutex_unlock(&vhost_scsi_mutex); 2330 2331 return &tpg->se_tpg; 2332 } 2333 2334 static void vhost_scsi_drop_tpg(struct se_portal_group *se_tpg) 2335 { 2336 struct vhost_scsi_tpg *tpg = container_of(se_tpg, 2337 struct vhost_scsi_tpg, se_tpg); 2338 2339 mutex_lock(&vhost_scsi_mutex); 2340 list_del(&tpg->tv_tpg_list); 2341 mutex_unlock(&vhost_scsi_mutex); 2342 /* 2343 * Release the virtual I_T Nexus for this vhost TPG 2344 */ 2345 vhost_scsi_drop_nexus(tpg); 2346 /* 2347 * Deregister the se_tpg from TCM.. 2348 */ 2349 core_tpg_deregister(se_tpg); 2350 kfree(tpg); 2351 } 2352 2353 static struct se_wwn * 2354 vhost_scsi_make_tport(struct target_fabric_configfs *tf, 2355 struct config_group *group, 2356 const char *name) 2357 { 2358 struct vhost_scsi_tport *tport; 2359 char *ptr; 2360 u64 wwpn = 0; 2361 int off = 0; 2362 2363 /* if (vhost_scsi_parse_wwn(name, &wwpn, 1) < 0) 2364 return ERR_PTR(-EINVAL); */ 2365 2366 tport = kzalloc(sizeof(*tport), GFP_KERNEL); 2367 if (!tport) { 2368 pr_err("Unable to allocate struct vhost_scsi_tport"); 2369 return ERR_PTR(-ENOMEM); 2370 } 2371 tport->tport_wwpn = wwpn; 2372 /* 2373 * Determine the emulated Protocol Identifier and Target Port Name 2374 * based on the incoming configfs directory name. 2375 */ 2376 ptr = strstr(name, "naa."); 2377 if (ptr) { 2378 tport->tport_proto_id = SCSI_PROTOCOL_SAS; 2379 goto check_len; 2380 } 2381 ptr = strstr(name, "fc."); 2382 if (ptr) { 2383 tport->tport_proto_id = SCSI_PROTOCOL_FCP; 2384 off = 3; /* Skip over "fc." */ 2385 goto check_len; 2386 } 2387 ptr = strstr(name, "iqn."); 2388 if (ptr) { 2389 tport->tport_proto_id = SCSI_PROTOCOL_ISCSI; 2390 goto check_len; 2391 } 2392 2393 pr_err("Unable to locate prefix for emulated Target Port:" 2394 " %s\n", name); 2395 kfree(tport); 2396 return ERR_PTR(-EINVAL); 2397 2398 check_len: 2399 if (strlen(name) >= VHOST_SCSI_NAMELEN) { 2400 pr_err("Emulated %s Address: %s, exceeds" 2401 " max: %d\n", name, vhost_scsi_dump_proto_id(tport), 2402 VHOST_SCSI_NAMELEN); 2403 kfree(tport); 2404 return ERR_PTR(-EINVAL); 2405 } 2406 snprintf(&tport->tport_name[0], VHOST_SCSI_NAMELEN, "%s", &name[off]); 2407 2408 pr_debug("TCM_VHost_ConfigFS: Allocated emulated Target" 2409 " %s Address: %s\n", vhost_scsi_dump_proto_id(tport), name); 2410 2411 return &tport->tport_wwn; 2412 } 2413 2414 static void vhost_scsi_drop_tport(struct se_wwn *wwn) 2415 { 2416 struct vhost_scsi_tport *tport = container_of(wwn, 2417 struct vhost_scsi_tport, tport_wwn); 2418 2419 pr_debug("TCM_VHost_ConfigFS: Deallocating emulated Target" 2420 " %s Address: %s\n", vhost_scsi_dump_proto_id(tport), 2421 tport->tport_name); 2422 2423 kfree(tport); 2424 } 2425 2426 static ssize_t 2427 vhost_scsi_wwn_version_show(struct config_item *item, char *page) 2428 { 2429 return sprintf(page, "TCM_VHOST fabric module %s on %s/%s" 2430 "on "UTS_RELEASE"\n", VHOST_SCSI_VERSION, utsname()->sysname, 2431 utsname()->machine); 2432 } 2433 2434 CONFIGFS_ATTR_RO(vhost_scsi_wwn_, version); 2435 2436 static struct configfs_attribute *vhost_scsi_wwn_attrs[] = { 2437 &vhost_scsi_wwn_attr_version, 2438 NULL, 2439 }; 2440 2441 static const struct target_core_fabric_ops vhost_scsi_ops = { 2442 .module = THIS_MODULE, 2443 .fabric_name = "vhost", 2444 .max_data_sg_nents = VHOST_SCSI_PREALLOC_SGLS, 2445 .tpg_get_wwn = vhost_scsi_get_fabric_wwn, 2446 .tpg_get_tag = vhost_scsi_get_tpgt, 2447 .tpg_check_demo_mode = vhost_scsi_check_true, 2448 .tpg_check_demo_mode_cache = vhost_scsi_check_true, 2449 .tpg_check_demo_mode_write_protect = vhost_scsi_check_false, 2450 .tpg_check_prod_mode_write_protect = vhost_scsi_check_false, 2451 .tpg_check_prot_fabric_only = vhost_scsi_check_prot_fabric_only, 2452 .tpg_get_inst_index = vhost_scsi_tpg_get_inst_index, 2453 .release_cmd = vhost_scsi_release_cmd, 2454 .check_stop_free = vhost_scsi_check_stop_free, 2455 .sess_get_index = vhost_scsi_sess_get_index, 2456 .sess_get_initiator_sid = NULL, 2457 .write_pending = vhost_scsi_write_pending, 2458 .set_default_node_attributes = vhost_scsi_set_default_node_attrs, 2459 .get_cmd_state = vhost_scsi_get_cmd_state, 2460 .queue_data_in = vhost_scsi_queue_data_in, 2461 .queue_status = vhost_scsi_queue_status, 2462 .queue_tm_rsp = vhost_scsi_queue_tm_rsp, 2463 .aborted_task = vhost_scsi_aborted_task, 2464 /* 2465 * Setup callers for generic logic in target_core_fabric_configfs.c 2466 */ 2467 .fabric_make_wwn = vhost_scsi_make_tport, 2468 .fabric_drop_wwn = vhost_scsi_drop_tport, 2469 .fabric_make_tpg = vhost_scsi_make_tpg, 2470 .fabric_drop_tpg = vhost_scsi_drop_tpg, 2471 .fabric_post_link = vhost_scsi_port_link, 2472 .fabric_pre_unlink = vhost_scsi_port_unlink, 2473 2474 .tfc_wwn_attrs = vhost_scsi_wwn_attrs, 2475 .tfc_tpg_base_attrs = vhost_scsi_tpg_attrs, 2476 .tfc_tpg_attrib_attrs = vhost_scsi_tpg_attrib_attrs, 2477 }; 2478 2479 static int __init vhost_scsi_init(void) 2480 { 2481 int ret = -ENOMEM; 2482 2483 pr_debug("TCM_VHOST fabric module %s on %s/%s" 2484 " on "UTS_RELEASE"\n", VHOST_SCSI_VERSION, utsname()->sysname, 2485 utsname()->machine); 2486 2487 /* 2488 * Use our own dedicated workqueue for submitting I/O into 2489 * target core to avoid contention within system_wq. 2490 */ 2491 vhost_scsi_workqueue = alloc_workqueue("vhost_scsi", 0, 0); 2492 if (!vhost_scsi_workqueue) 2493 goto out; 2494 2495 ret = vhost_scsi_register(); 2496 if (ret < 0) 2497 goto out_destroy_workqueue; 2498 2499 ret = target_register_template(&vhost_scsi_ops); 2500 if (ret < 0) 2501 goto out_vhost_scsi_deregister; 2502 2503 return 0; 2504 2505 out_vhost_scsi_deregister: 2506 vhost_scsi_deregister(); 2507 out_destroy_workqueue: 2508 destroy_workqueue(vhost_scsi_workqueue); 2509 out: 2510 return ret; 2511 }; 2512 2513 static void vhost_scsi_exit(void) 2514 { 2515 target_unregister_template(&vhost_scsi_ops); 2516 vhost_scsi_deregister(); 2517 destroy_workqueue(vhost_scsi_workqueue); 2518 }; 2519 2520 MODULE_DESCRIPTION("VHOST_SCSI series fabric driver"); 2521 MODULE_ALIAS("tcm_vhost"); 2522 MODULE_LICENSE("GPL"); 2523 module_init(vhost_scsi_init); 2524 module_exit(vhost_scsi_exit); 2525