1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 3 * 4 * Copyright (c) 2003-2009 Silicon Graphics International Corp. 5 * Copyright (c) 2012 The FreeBSD Foundation 6 * Copyright (c) 2014-2017 Alexander Motin <mav@FreeBSD.org> 7 * Copyright (c) 2017 Jakub Wojciech Klama <jceel@FreeBSD.org> 8 * Copyright (c) 2018 Marcelo Araujo <araujo@FreeBSD.org> 9 * All rights reserved. 10 * 11 * Portions of this software were developed by Edward Tomasz Napierala 12 * under sponsorship from the FreeBSD Foundation. 13 * 14 * Redistribution and use in source and binary forms, with or without 15 * modification, are permitted provided that the following conditions 16 * are met: 17 * 1. Redistributions of source code must retain the above copyright 18 * notice, this list of conditions, and the following disclaimer, 19 * without modification. 20 * 2. Redistributions in binary form must reproduce at minimum a disclaimer 21 * substantially similar to the "NO WARRANTY" disclaimer below 22 * ("Disclaimer") and any redistribution must be conditioned upon 23 * including a substantially similar Disclaimer requirement for further 24 * binary redistribution. 25 * 26 * NO WARRANTY 27 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 28 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 29 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR 30 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 31 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 32 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 35 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING 36 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 37 * POSSIBILITY OF SUCH DAMAGES. 38 * 39 * $Id$ 40 */ 41 /* 42 * CAM Target Layer, a SCSI device emulation subsystem. 43 * 44 * Author: Ken Merry <ken@FreeBSD.org> 45 */ 46 47 #include <sys/param.h> 48 #include <sys/systm.h> 49 #include <sys/ctype.h> 50 #include <sys/kernel.h> 51 #include <sys/types.h> 52 #include <sys/kthread.h> 53 #include <sys/bio.h> 54 #include <sys/fcntl.h> 55 #include <sys/lock.h> 56 #include <sys/module.h> 57 #include <sys/mutex.h> 58 #include <sys/condvar.h> 59 #include <sys/malloc.h> 60 #include <sys/conf.h> 61 #include <sys/ioccom.h> 62 #include <sys/queue.h> 63 #include <sys/sbuf.h> 64 #include <sys/smp.h> 65 #include <sys/endian.h> 66 #include <sys/proc.h> 67 #include <sys/sched.h> 68 #include <sys/sysctl.h> 69 #include <sys/nv.h> 70 #include <sys/dnv.h> 71 #include <vm/uma.h> 72 73 #include <cam/cam.h> 74 #include <cam/scsi/scsi_all.h> 75 #include <cam/scsi/scsi_cd.h> 76 #include <cam/scsi/scsi_da.h> 77 #include <cam/ctl/ctl_io.h> 78 #include <cam/ctl/ctl.h> 79 #include <cam/ctl/ctl_frontend.h> 80 #include <cam/ctl/ctl_util.h> 81 #include <cam/ctl/ctl_backend.h> 82 #include <cam/ctl/ctl_ioctl.h> 83 #include <cam/ctl/ctl_ha.h> 84 #include <cam/ctl/ctl_private.h> 85 #include <cam/ctl/ctl_debug.h> 86 #include <cam/ctl/ctl_nvme_all.h> 87 #include <cam/ctl/ctl_scsi_all.h> 88 #include <cam/ctl/ctl_error.h> 89 90 struct ctl_softc *control_softc = NULL; 91 92 /* 93 * Template mode pages. 94 */ 95 96 /* 97 * Note that these are default values only. The actual values will be 98 * filled in when the user does a mode sense. 99 */ 100 const static struct scsi_da_rw_recovery_page rw_er_page_default = { 101 /*page_code*/SMS_RW_ERROR_RECOVERY_PAGE, 102 /*page_length*/sizeof(struct scsi_da_rw_recovery_page) - 2, 103 /*byte3*/SMS_RWER_AWRE|SMS_RWER_ARRE, 104 /*read_retry_count*/0, 105 /*correction_span*/0, 106 /*head_offset_count*/0, 107 /*data_strobe_offset_cnt*/0, 108 /*byte8*/SMS_RWER_LBPERE, 109 /*write_retry_count*/0, 110 /*reserved2*/0, 111 /*recovery_time_limit*/{0, 0}, 112 }; 113 114 const static struct scsi_da_rw_recovery_page rw_er_page_changeable = { 115 /*page_code*/SMS_RW_ERROR_RECOVERY_PAGE, 116 /*page_length*/sizeof(struct scsi_da_rw_recovery_page) - 2, 117 /*byte3*/SMS_RWER_PER, 118 /*read_retry_count*/0, 119 /*correction_span*/0, 120 /*head_offset_count*/0, 121 /*data_strobe_offset_cnt*/0, 122 /*byte8*/SMS_RWER_LBPERE, 123 /*write_retry_count*/0, 124 /*reserved2*/0, 125 /*recovery_time_limit*/{0, 0}, 126 }; 127 128 const static struct scsi_da_verify_recovery_page verify_er_page_default = { 129 /*page_code*/SMS_VERIFY_ERROR_RECOVERY_PAGE, 130 /*page_length*/sizeof(struct scsi_da_verify_recovery_page) - 2, 131 /*byte3*/0, 132 /*read_retry_count*/0, 133 /*reserved*/{ 0, 0, 0, 0, 0, 0 }, 134 /*recovery_time_limit*/{0, 0}, 135 }; 136 137 const static struct scsi_da_verify_recovery_page verify_er_page_changeable = { 138 /*page_code*/SMS_VERIFY_ERROR_RECOVERY_PAGE, 139 /*page_length*/sizeof(struct scsi_da_verify_recovery_page) - 2, 140 /*byte3*/SMS_VER_PER, 141 /*read_retry_count*/0, 142 /*reserved*/{ 0, 0, 0, 0, 0, 0 }, 143 /*recovery_time_limit*/{0, 0}, 144 }; 145 146 const static struct scsi_caching_page caching_page_default = { 147 /*page_code*/SMS_CACHING_PAGE, 148 /*page_length*/sizeof(struct scsi_caching_page) - 2, 149 /*flags1*/ SCP_DISC | SCP_WCE, 150 /*ret_priority*/ 0, 151 /*disable_pf_transfer_len*/ {0xff, 0xff}, 152 /*min_prefetch*/ {0, 0}, 153 /*max_prefetch*/ {0xff, 0xff}, 154 /*max_pf_ceiling*/ {0xff, 0xff}, 155 /*flags2*/ 0, 156 /*cache_segments*/ 0, 157 /*cache_seg_size*/ {0, 0}, 158 /*reserved*/ 0, 159 /*non_cache_seg_size*/ {0, 0, 0} 160 }; 161 162 const static struct scsi_caching_page caching_page_changeable = { 163 /*page_code*/SMS_CACHING_PAGE, 164 /*page_length*/sizeof(struct scsi_caching_page) - 2, 165 /*flags1*/ SCP_WCE | SCP_RCD, 166 /*ret_priority*/ 0, 167 /*disable_pf_transfer_len*/ {0, 0}, 168 /*min_prefetch*/ {0, 0}, 169 /*max_prefetch*/ {0, 0}, 170 /*max_pf_ceiling*/ {0, 0}, 171 /*flags2*/ 0, 172 /*cache_segments*/ 0, 173 /*cache_seg_size*/ {0, 0}, 174 /*reserved*/ 0, 175 /*non_cache_seg_size*/ {0, 0, 0} 176 }; 177 178 const static struct scsi_control_page control_page_default = { 179 /*page_code*/SMS_CONTROL_MODE_PAGE, 180 /*page_length*/sizeof(struct scsi_control_page) - 2, 181 /*rlec*/0, 182 /*queue_flags*/SCP_QUEUE_ALG_RESTRICTED, 183 /*eca_and_aen*/0, 184 /*flags4*/SCP_TAS, 185 /*aen_holdoff_period*/{0, 0}, 186 /*busy_timeout_period*/{0, 0}, 187 /*extended_selftest_completion_time*/{0, 0} 188 }; 189 190 const static struct scsi_control_page control_page_changeable = { 191 /*page_code*/SMS_CONTROL_MODE_PAGE, 192 /*page_length*/sizeof(struct scsi_control_page) - 2, 193 /*rlec*/SCP_DSENSE, 194 /*queue_flags*/SCP_QUEUE_ALG_MASK | SCP_NUAR, 195 /*eca_and_aen*/SCP_SWP, 196 /*flags4*/0, 197 /*aen_holdoff_period*/{0, 0}, 198 /*busy_timeout_period*/{0, 0}, 199 /*extended_selftest_completion_time*/{0, 0} 200 }; 201 202 #define CTL_CEM_LEN (sizeof(struct scsi_control_ext_page) - 4) 203 204 const static struct scsi_control_ext_page control_ext_page_default = { 205 /*page_code*/SMS_CONTROL_MODE_PAGE | SMPH_SPF, 206 /*subpage_code*/0x01, 207 /*page_length*/{CTL_CEM_LEN >> 8, CTL_CEM_LEN}, 208 /*flags*/0, 209 /*prio*/0, 210 /*max_sense*/0 211 }; 212 213 const static struct scsi_control_ext_page control_ext_page_changeable = { 214 /*page_code*/SMS_CONTROL_MODE_PAGE | SMPH_SPF, 215 /*subpage_code*/0x01, 216 /*page_length*/{CTL_CEM_LEN >> 8, CTL_CEM_LEN}, 217 /*flags*/0, 218 /*prio*/0, 219 /*max_sense*/0xff 220 }; 221 222 const static struct scsi_info_exceptions_page ie_page_default = { 223 /*page_code*/SMS_INFO_EXCEPTIONS_PAGE, 224 /*page_length*/sizeof(struct scsi_info_exceptions_page) - 2, 225 /*info_flags*/SIEP_FLAGS_EWASC, 226 /*mrie*/SIEP_MRIE_NO, 227 /*interval_timer*/{0, 0, 0, 0}, 228 /*report_count*/{0, 0, 0, 1} 229 }; 230 231 const static struct scsi_info_exceptions_page ie_page_changeable = { 232 /*page_code*/SMS_INFO_EXCEPTIONS_PAGE, 233 /*page_length*/sizeof(struct scsi_info_exceptions_page) - 2, 234 /*info_flags*/SIEP_FLAGS_EWASC | SIEP_FLAGS_DEXCPT | SIEP_FLAGS_TEST | 235 SIEP_FLAGS_LOGERR, 236 /*mrie*/0x0f, 237 /*interval_timer*/{0xff, 0xff, 0xff, 0xff}, 238 /*report_count*/{0xff, 0xff, 0xff, 0xff} 239 }; 240 241 #define CTL_LBPM_LEN (sizeof(struct ctl_logical_block_provisioning_page) - 4) 242 243 const static struct ctl_logical_block_provisioning_page lbp_page_default = {{ 244 /*page_code*/SMS_INFO_EXCEPTIONS_PAGE | SMPH_SPF, 245 /*subpage_code*/0x02, 246 /*page_length*/{CTL_LBPM_LEN >> 8, CTL_LBPM_LEN}, 247 /*flags*/0, 248 /*reserved*/{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, 249 /*descr*/{}}, 250 {{/*flags*/0, 251 /*resource*/0x01, 252 /*reserved*/{0, 0}, 253 /*count*/{0, 0, 0, 0}}, 254 {/*flags*/0, 255 /*resource*/0x02, 256 /*reserved*/{0, 0}, 257 /*count*/{0, 0, 0, 0}}, 258 {/*flags*/0, 259 /*resource*/0xf1, 260 /*reserved*/{0, 0}, 261 /*count*/{0, 0, 0, 0}}, 262 {/*flags*/0, 263 /*resource*/0xf2, 264 /*reserved*/{0, 0}, 265 /*count*/{0, 0, 0, 0}} 266 } 267 }; 268 269 const static struct ctl_logical_block_provisioning_page lbp_page_changeable = {{ 270 /*page_code*/SMS_INFO_EXCEPTIONS_PAGE | SMPH_SPF, 271 /*subpage_code*/0x02, 272 /*page_length*/{CTL_LBPM_LEN >> 8, CTL_LBPM_LEN}, 273 /*flags*/SLBPP_SITUA, 274 /*reserved*/{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, 275 /*descr*/{}}, 276 {{/*flags*/0, 277 /*resource*/0, 278 /*reserved*/{0, 0}, 279 /*count*/{0, 0, 0, 0}}, 280 {/*flags*/0, 281 /*resource*/0, 282 /*reserved*/{0, 0}, 283 /*count*/{0, 0, 0, 0}}, 284 {/*flags*/0, 285 /*resource*/0, 286 /*reserved*/{0, 0}, 287 /*count*/{0, 0, 0, 0}}, 288 {/*flags*/0, 289 /*resource*/0, 290 /*reserved*/{0, 0}, 291 /*count*/{0, 0, 0, 0}} 292 } 293 }; 294 295 const static struct scsi_cddvd_capabilities_page cddvd_page_default = { 296 /*page_code*/SMS_CDDVD_CAPS_PAGE, 297 /*page_length*/sizeof(struct scsi_cddvd_capabilities_page) - 2, 298 /*caps1*/0x3f, 299 /*caps2*/0x00, 300 /*caps3*/0xf0, 301 /*caps4*/0x00, 302 /*caps5*/0x29, 303 /*caps6*/0x00, 304 /*obsolete*/{0, 0}, 305 /*nvol_levels*/{0, 0}, 306 /*buffer_size*/{8, 0}, 307 /*obsolete2*/{0, 0}, 308 /*reserved*/0, 309 /*digital*/0, 310 /*obsolete3*/0, 311 /*copy_management*/0, 312 /*reserved2*/0, 313 /*rotation_control*/0, 314 /*cur_write_speed*/0, 315 /*num_speed_descr*/0, 316 }; 317 318 const static struct scsi_cddvd_capabilities_page cddvd_page_changeable = { 319 /*page_code*/SMS_CDDVD_CAPS_PAGE, 320 /*page_length*/sizeof(struct scsi_cddvd_capabilities_page) - 2, 321 /*caps1*/0, 322 /*caps2*/0, 323 /*caps3*/0, 324 /*caps4*/0, 325 /*caps5*/0, 326 /*caps6*/0, 327 /*obsolete*/{0, 0}, 328 /*nvol_levels*/{0, 0}, 329 /*buffer_size*/{0, 0}, 330 /*obsolete2*/{0, 0}, 331 /*reserved*/0, 332 /*digital*/0, 333 /*obsolete3*/0, 334 /*copy_management*/0, 335 /*reserved2*/0, 336 /*rotation_control*/0, 337 /*cur_write_speed*/0, 338 /*num_speed_descr*/0, 339 }; 340 341 SYSCTL_NODE(_kern_cam, OID_AUTO, ctl, CTLFLAG_RD | CTLFLAG_MPSAFE, 0, 342 "CAM Target Layer"); 343 static int worker_threads = -1; 344 SYSCTL_INT(_kern_cam_ctl, OID_AUTO, worker_threads, CTLFLAG_RDTUN, 345 &worker_threads, 1, "Number of worker threads"); 346 static int ctl_debug = CTL_DEBUG_NONE; 347 SYSCTL_INT(_kern_cam_ctl, OID_AUTO, debug, CTLFLAG_RWTUN, 348 &ctl_debug, 0, "Enabled debug flags"); 349 static int ctl_lun_map_size = 1024; 350 SYSCTL_INT(_kern_cam_ctl, OID_AUTO, lun_map_size, CTLFLAG_RWTUN, 351 &ctl_lun_map_size, 0, "Size of per-port LUN map (max LUN + 1)"); 352 #ifdef CTL_TIME_IO 353 static int ctl_time_io_secs = CTL_TIME_IO_DEFAULT_SECS; 354 SYSCTL_INT(_kern_cam_ctl, OID_AUTO, time_io_secs, CTLFLAG_RWTUN, 355 &ctl_time_io_secs, 0, "Log requests taking more seconds"); 356 #endif 357 358 /* 359 * Maximum number of LUNs we support. MUST be a power of 2. 360 */ 361 #define CTL_DEFAULT_MAX_LUNS 1024 362 static int ctl_max_luns = CTL_DEFAULT_MAX_LUNS; 363 TUNABLE_INT("kern.cam.ctl.max_luns", &ctl_max_luns); 364 SYSCTL_INT(_kern_cam_ctl, OID_AUTO, max_luns, CTLFLAG_RDTUN, 365 &ctl_max_luns, CTL_DEFAULT_MAX_LUNS, "Maximum number of LUNs"); 366 367 /* 368 * Maximum number of ports registered at one time. 369 */ 370 #define CTL_DEFAULT_MAX_PORTS 1024 371 static int ctl_max_ports = CTL_DEFAULT_MAX_PORTS; 372 TUNABLE_INT("kern.cam.ctl.max_ports", &ctl_max_ports); 373 SYSCTL_INT(_kern_cam_ctl, OID_AUTO, max_ports, CTLFLAG_RDTUN, 374 &ctl_max_ports, CTL_DEFAULT_MAX_LUNS, "Maximum number of ports"); 375 376 /* 377 * Maximum number of initiators we support. 378 */ 379 #define CTL_MAX_INITIATORS (CTL_MAX_INIT_PER_PORT * ctl_max_ports) 380 381 /* 382 * Supported pages (0x00), Serial number (0x80), Device ID (0x83), 383 * Extended INQUIRY Data (0x86), Mode Page Policy (0x87), 384 * SCSI Ports (0x88), Third-party Copy (0x8F), SCSI Feature Sets (0x92), 385 * Block limits (0xB0), Block Device Characteristics (0xB1) and 386 * Logical Block Provisioning (0xB2) 387 */ 388 #define SCSI_EVPD_NUM_SUPPORTED_PAGES 11 389 390 static void ctl_isc_event_handler(ctl_ha_channel chanel, ctl_ha_event event, 391 int param); 392 static void ctl_copy_sense_data(union ctl_ha_msg *src, union ctl_io *dest); 393 static void ctl_copy_sense_data_back(union ctl_io *src, union ctl_ha_msg *dest); 394 static int ctl_init(void); 395 static int ctl_shutdown(void); 396 static int ctl_open(struct cdev *dev, int flags, int fmt, struct thread *td); 397 static int ctl_close(struct cdev *dev, int flags, int fmt, struct thread *td); 398 static void ctl_serialize_other_sc_cmd(struct ctl_scsiio *ctsio); 399 static void ctl_ioctl_fill_ooa(struct ctl_lun *lun, uint32_t *cur_fill_num, 400 struct ctl_ooa *ooa_hdr, 401 struct ctl_ooa_entry *kern_entries); 402 static int ctl_ioctl(struct cdev *dev, u_long cmd, caddr_t addr, int flag, 403 struct thread *td); 404 static int ctl_enable_lun(struct ctl_lun *lun); 405 static int ctl_disable_lun(struct ctl_lun *lun); 406 static int ctl_free_lun(struct ctl_lun *lun); 407 408 static int ctl_do_mode_select(union ctl_io *io); 409 static int ctl_pro_preempt(struct ctl_softc *softc, struct ctl_lun *lun, 410 uint64_t res_key, uint64_t sa_res_key, 411 uint8_t type, uint32_t residx, 412 struct ctl_scsiio *ctsio, 413 struct scsi_per_res_out *cdb, 414 struct scsi_per_res_out_parms* param); 415 static void ctl_pro_preempt_other(struct ctl_lun *lun, 416 union ctl_ha_msg *msg); 417 static void ctl_hndl_per_res_out_on_other_sc(union ctl_io *io); 418 static int ctl_inquiry_evpd_supported(struct ctl_scsiio *ctsio, int alloc_len); 419 static int ctl_inquiry_evpd_serial(struct ctl_scsiio *ctsio, int alloc_len); 420 static int ctl_inquiry_evpd_devid(struct ctl_scsiio *ctsio, int alloc_len); 421 static int ctl_inquiry_evpd_eid(struct ctl_scsiio *ctsio, int alloc_len); 422 static int ctl_inquiry_evpd_mpp(struct ctl_scsiio *ctsio, int alloc_len); 423 static int ctl_inquiry_evpd_scsi_ports(struct ctl_scsiio *ctsio, 424 int alloc_len); 425 static int ctl_inquiry_evpd_sfs(struct ctl_scsiio *ctsio, int alloc_len); 426 static int ctl_inquiry_evpd_block_limits(struct ctl_scsiio *ctsio, 427 int alloc_len); 428 static int ctl_inquiry_evpd_bdc(struct ctl_scsiio *ctsio, int alloc_len); 429 static int ctl_inquiry_evpd_lbp(struct ctl_scsiio *ctsio, int alloc_len); 430 static int ctl_inquiry_evpd(struct ctl_scsiio *ctsio); 431 static int ctl_inquiry_std(struct ctl_scsiio *ctsio); 432 static int ctl_get_lba_len(union ctl_io *io, uint64_t *lba, uint64_t *len); 433 static ctl_action ctl_extent_check(union ctl_io *io1, union ctl_io *io2, 434 bool seq); 435 static ctl_action ctl_seq_check(union ctl_io *io1, union ctl_io *io2); 436 static ctl_action ctl_check_for_blockage(struct ctl_lun *lun, 437 union ctl_io *pending_io, const uint8_t *serialize_row, 438 union ctl_io *ooa_io); 439 static ctl_action ctl_check_ooa(struct ctl_lun *lun, union ctl_io *pending_io, 440 union ctl_io **starting_io); 441 static void ctl_try_unblock_io(struct ctl_lun *lun, union ctl_io *io, 442 bool skip); 443 static void ctl_try_unblock_others(struct ctl_lun *lun, union ctl_io *io, 444 bool skip); 445 static int ctl_scsiio_lun_check(struct ctl_lun *lun, 446 const struct ctl_cmd_entry *entry, 447 struct ctl_scsiio *ctsio); 448 static void ctl_failover_lun(union ctl_io *io); 449 static void ctl_scsiio_precheck(struct ctl_scsiio *ctsio); 450 static int ctl_scsiio(struct ctl_scsiio *ctsio); 451 static void ctl_nvmeio_precheck(struct ctl_nvmeio *ctnio); 452 static int ctl_nvmeio(struct ctl_nvmeio *ctnio); 453 454 static int ctl_target_reset(union ctl_io *io); 455 static void ctl_do_lun_reset(struct ctl_lun *lun, uint32_t initidx, 456 ctl_ua_type ua_type); 457 static int ctl_lun_reset(union ctl_io *io); 458 static int ctl_abort_task(union ctl_io *io); 459 static int ctl_abort_task_set(union ctl_io *io); 460 static int ctl_query_task(union ctl_io *io, int task_set); 461 static void ctl_i_t_nexus_loss(struct ctl_softc *softc, uint32_t initidx, 462 ctl_ua_type ua_type); 463 static int ctl_i_t_nexus_reset(union ctl_io *io); 464 static int ctl_query_async_event(union ctl_io *io); 465 static void ctl_run_task(union ctl_io *io); 466 #ifdef CTL_IO_DELAY 467 static void ctl_datamove_timer_wakeup(void *arg); 468 static void ctl_done_timer_wakeup(void *arg); 469 #endif /* CTL_IO_DELAY */ 470 471 static void ctl_send_datamove_done(union ctl_io *io, int have_lock); 472 static void ctl_datamove_remote_write_cb(struct ctl_ha_dt_req *rq); 473 static int ctl_datamove_remote_dm_write_cb(union ctl_io *io, bool samethr); 474 static void ctl_datamove_remote_write(union ctl_io *io); 475 static int ctl_datamove_remote_dm_read_cb(union ctl_io *io, bool samethr); 476 static void ctl_datamove_remote_read_cb(struct ctl_ha_dt_req *rq); 477 static int ctl_datamove_remote_sgl_setup(union ctl_io *io); 478 static int ctl_datamove_remote_xfer(union ctl_io *io, unsigned command, 479 ctl_ha_dt_cb callback); 480 static void ctl_datamove_remote_read(union ctl_io *io); 481 static void ctl_datamove_remote(union ctl_io *io); 482 static void ctl_process_done(union ctl_io *io); 483 static void ctl_thresh_thread(void *arg); 484 static void ctl_work_thread(void *arg); 485 static void ctl_enqueue_incoming(union ctl_io *io); 486 static void ctl_enqueue_rtr(union ctl_io *io); 487 static void ctl_enqueue_done(union ctl_io *io); 488 static void ctl_enqueue_isc(union ctl_io *io); 489 static const struct ctl_cmd_entry * 490 ctl_get_cmd_entry(struct ctl_scsiio *ctsio, int *sa); 491 static const struct ctl_cmd_entry * 492 ctl_validate_command(struct ctl_scsiio *ctsio); 493 static int ctl_cmd_applicable(uint8_t lun_type, 494 const struct ctl_cmd_entry *entry); 495 static int ctl_ha_init(void); 496 static int ctl_ha_shutdown(void); 497 498 static uint64_t ctl_get_prkey(struct ctl_lun *lun, uint32_t residx); 499 static void ctl_clr_prkey(struct ctl_lun *lun, uint32_t residx); 500 static void ctl_alloc_prkey(struct ctl_lun *lun, uint32_t residx); 501 static void ctl_set_prkey(struct ctl_lun *lun, uint32_t residx, uint64_t key); 502 503 /* 504 * Load the serialization table. This isn't very pretty, but is probably 505 * the easiest way to do it. 506 */ 507 #include "ctl_ser_table.c" 508 509 /* 510 * We only need to define open, close and ioctl routines for this driver. 511 */ 512 static struct cdevsw ctl_cdevsw = { 513 .d_version = D_VERSION, 514 .d_flags = 0, 515 .d_open = ctl_open, 516 .d_close = ctl_close, 517 .d_ioctl = ctl_ioctl, 518 .d_name = "ctl", 519 }; 520 521 MALLOC_DEFINE(M_CTL, "ctlmem", "Memory used for CTL"); 522 523 static int ctl_module_event_handler(module_t, int /*modeventtype_t*/, void *); 524 525 static moduledata_t ctl_moduledata = { 526 "ctl", 527 ctl_module_event_handler, 528 NULL 529 }; 530 531 DECLARE_MODULE(ctl, ctl_moduledata, SI_SUB_CONFIGURE, SI_ORDER_THIRD); 532 MODULE_VERSION(ctl, 1); 533 534 static void 535 ctl_be_move_done(union ctl_io *io, bool samethr) 536 { 537 switch (io->io_hdr.io_type) { 538 case CTL_IO_SCSI: 539 io->scsiio.be_move_done(io, samethr); 540 break; 541 case CTL_IO_NVME: 542 case CTL_IO_NVME_ADMIN: 543 io->nvmeio.be_move_done(io, samethr); 544 break; 545 default: 546 __assert_unreachable(); 547 } 548 } 549 550 static void 551 ctl_continue_io(union ctl_io *io) 552 { 553 switch (io->io_hdr.io_type) { 554 case CTL_IO_SCSI: 555 io->scsiio.io_cont(io); 556 break; 557 case CTL_IO_NVME: 558 case CTL_IO_NVME_ADMIN: 559 io->nvmeio.io_cont(io); 560 break; 561 default: 562 __assert_unreachable(); 563 } 564 } 565 566 static struct ctl_frontend ha_frontend = 567 { 568 .name = "ha", 569 .init = ctl_ha_init, 570 .shutdown = ctl_ha_shutdown, 571 }; 572 573 static int 574 ctl_ha_init(void) 575 { 576 struct ctl_softc *softc = control_softc; 577 578 if (ctl_pool_create(softc, "othersc", CTL_POOL_ENTRIES_OTHER_SC, 579 &softc->othersc_pool) != 0) 580 return (ENOMEM); 581 if (ctl_ha_msg_init(softc) != CTL_HA_STATUS_SUCCESS) { 582 ctl_pool_free(softc->othersc_pool); 583 return (EIO); 584 } 585 if (ctl_ha_msg_register(CTL_HA_CHAN_CTL, ctl_isc_event_handler) 586 != CTL_HA_STATUS_SUCCESS) { 587 ctl_ha_msg_destroy(softc); 588 ctl_pool_free(softc->othersc_pool); 589 return (EIO); 590 } 591 return (0); 592 }; 593 594 static int 595 ctl_ha_shutdown(void) 596 { 597 struct ctl_softc *softc = control_softc; 598 struct ctl_port *port; 599 600 ctl_ha_msg_shutdown(softc); 601 if (ctl_ha_msg_deregister(CTL_HA_CHAN_CTL) != CTL_HA_STATUS_SUCCESS) 602 return (EIO); 603 if (ctl_ha_msg_destroy(softc) != CTL_HA_STATUS_SUCCESS) 604 return (EIO); 605 ctl_pool_free(softc->othersc_pool); 606 while ((port = STAILQ_FIRST(&ha_frontend.port_list)) != NULL) { 607 ctl_port_deregister(port); 608 free(port->port_name, M_CTL); 609 free(port, M_CTL); 610 } 611 return (0); 612 }; 613 614 static void 615 ctl_ha_datamove(union ctl_io *io) 616 { 617 struct ctl_lun *lun = CTL_LUN(io); 618 struct ctl_sg_entry *sgl; 619 union ctl_ha_msg msg; 620 uint32_t sg_entries_sent; 621 int do_sg_copy, i, j; 622 623 CTL_IO_ASSERT(io, SCSI); 624 625 memset(&msg.dt, 0, sizeof(msg.dt)); 626 msg.hdr.msg_type = CTL_MSG_DATAMOVE; 627 msg.hdr.original_sc = io->io_hdr.remote_io; 628 msg.hdr.serializing_sc = io; 629 msg.hdr.nexus = io->io_hdr.nexus; 630 msg.hdr.status = io->io_hdr.status; 631 msg.dt.flags = io->io_hdr.flags; 632 633 /* 634 * We convert everything into a S/G list here. We can't 635 * pass by reference, only by value between controllers. 636 * So we can't pass a pointer to the S/G list, only as many 637 * S/G entries as we can fit in here. If it's possible for 638 * us to get more than CTL_HA_MAX_SG_ENTRIES S/G entries, 639 * then we need to break this up into multiple transfers. 640 */ 641 if (ctl_kern_sg_entries(io) == 0) { 642 msg.dt.kern_sg_entries = 1; 643 #if 0 644 if (io->io_hdr.flags & CTL_FLAG_BUS_ADDR) { 645 msg.dt.sg_list[0].addr = ctl_kern_data_ptr(io); 646 } else { 647 /* XXX KDM use busdma here! */ 648 msg.dt.sg_list[0].addr = 649 (void *)vtophys(ctl_kern_data_ptr(io)); 650 } 651 #else 652 KASSERT((io->io_hdr.flags & CTL_FLAG_BUS_ADDR) == 0, 653 ("HA does not support BUS_ADDR")); 654 msg.dt.sg_list[0].addr = ctl_kern_data_ptr(io); 655 #endif 656 msg.dt.sg_list[0].len = ctl_kern_data_len(io); 657 do_sg_copy = 0; 658 } else { 659 msg.dt.kern_sg_entries = ctl_kern_sg_entries(io); 660 do_sg_copy = 1; 661 } 662 663 msg.dt.kern_data_len = ctl_kern_data_len(io); 664 msg.dt.kern_total_len = ctl_kern_total_len(io); 665 msg.dt.kern_data_resid = ctl_kern_data_resid(io); 666 msg.dt.kern_rel_offset = ctl_kern_rel_offset(io); 667 msg.dt.sg_sequence = 0; 668 669 /* 670 * Loop until we've sent all of the S/G entries. On the 671 * other end, we'll recompose these S/G entries into one 672 * contiguous list before processing. 673 */ 674 for (sg_entries_sent = 0; sg_entries_sent < msg.dt.kern_sg_entries; 675 msg.dt.sg_sequence++) { 676 msg.dt.cur_sg_entries = MIN((sizeof(msg.dt.sg_list) / 677 sizeof(msg.dt.sg_list[0])), 678 msg.dt.kern_sg_entries - sg_entries_sent); 679 if (do_sg_copy != 0) { 680 sgl = (struct ctl_sg_entry *)ctl_kern_data_ptr(io); 681 for (i = sg_entries_sent, j = 0; 682 i < msg.dt.cur_sg_entries; i++, j++) { 683 #if 0 684 if (io->io_hdr.flags & CTL_FLAG_BUS_ADDR) { 685 msg.dt.sg_list[j].addr = sgl[i].addr; 686 } else { 687 /* XXX KDM use busdma here! */ 688 msg.dt.sg_list[j].addr = 689 (void *)vtophys(sgl[i].addr); 690 } 691 #else 692 KASSERT((io->io_hdr.flags & 693 CTL_FLAG_BUS_ADDR) == 0, 694 ("HA does not support BUS_ADDR")); 695 msg.dt.sg_list[j].addr = sgl[i].addr; 696 #endif 697 msg.dt.sg_list[j].len = sgl[i].len; 698 } 699 } 700 701 sg_entries_sent += msg.dt.cur_sg_entries; 702 msg.dt.sg_last = (sg_entries_sent >= msg.dt.kern_sg_entries); 703 if (ctl_ha_msg_send(CTL_HA_CHAN_CTL, &msg, 704 sizeof(msg.dt) - sizeof(msg.dt.sg_list) + 705 sizeof(struct ctl_sg_entry) * msg.dt.cur_sg_entries, 706 M_WAITOK) > CTL_HA_STATUS_SUCCESS) { 707 io->io_hdr.port_status = 31341; 708 ctl_datamove_done(io, true); 709 return; 710 } 711 msg.dt.sent_sg_entries = sg_entries_sent; 712 } 713 714 /* 715 * Officially handover the request from us to peer. 716 * If failover has just happened, then we must return error. 717 * If failover happen just after, then it is not our problem. 718 */ 719 if (lun) 720 mtx_lock(&lun->lun_lock); 721 if (io->io_hdr.flags & CTL_FLAG_FAILOVER) { 722 if (lun) 723 mtx_unlock(&lun->lun_lock); 724 io->io_hdr.port_status = 31342; 725 ctl_datamove_done(io, true); 726 return; 727 } 728 io->io_hdr.flags &= ~CTL_FLAG_IO_ACTIVE; 729 io->io_hdr.flags |= CTL_FLAG_DMA_INPROG; 730 if (lun) 731 mtx_unlock(&lun->lun_lock); 732 } 733 734 static void 735 ctl_ha_done(union ctl_io *io) 736 { 737 union ctl_ha_msg msg; 738 739 if (io->io_hdr.io_type == CTL_IO_SCSI) { 740 memset(&msg, 0, sizeof(msg)); 741 msg.hdr.msg_type = CTL_MSG_FINISH_IO; 742 msg.hdr.original_sc = io->io_hdr.remote_io; 743 msg.hdr.nexus = io->io_hdr.nexus; 744 msg.hdr.status = io->io_hdr.status; 745 msg.scsi.scsi_status = io->scsiio.scsi_status; 746 msg.scsi.tag_num = io->scsiio.tag_num; 747 msg.scsi.tag_type = io->scsiio.tag_type; 748 msg.scsi.sense_len = io->scsiio.sense_len; 749 memcpy(&msg.scsi.sense_data, &io->scsiio.sense_data, 750 io->scsiio.sense_len); 751 ctl_ha_msg_send(CTL_HA_CHAN_CTL, &msg, 752 sizeof(msg.scsi) - sizeof(msg.scsi.sense_data) + 753 msg.scsi.sense_len, M_WAITOK); 754 } 755 ctl_free_io(io); 756 } 757 758 static void 759 ctl_isc_handler_finish_xfer(struct ctl_softc *ctl_softc, 760 union ctl_ha_msg *msg_info) 761 { 762 struct ctl_scsiio *ctsio; 763 764 if (msg_info->hdr.original_sc == NULL) { 765 printf("%s: original_sc == NULL!\n", __func__); 766 /* XXX KDM now what? */ 767 return; 768 } 769 770 ctsio = &msg_info->hdr.original_sc->scsiio; 771 ctsio->io_hdr.flags &= ~CTL_FLAG_SENT_2OTHER_SC; 772 ctsio->io_hdr.flags |= CTL_FLAG_IO_ACTIVE; 773 ctsio->io_hdr.msg_type = CTL_MSG_FINISH_IO; 774 ctsio->io_hdr.status = msg_info->hdr.status; 775 ctsio->scsi_status = msg_info->scsi.scsi_status; 776 ctsio->sense_len = msg_info->scsi.sense_len; 777 memcpy(&ctsio->sense_data, &msg_info->scsi.sense_data, 778 msg_info->scsi.sense_len); 779 ctl_enqueue_isc((union ctl_io *)ctsio); 780 } 781 782 static void 783 ctl_isc_handler_finish_ser_only(struct ctl_softc *ctl_softc, 784 union ctl_ha_msg *msg_info) 785 { 786 struct ctl_scsiio *ctsio; 787 788 if (msg_info->hdr.serializing_sc == NULL) { 789 printf("%s: serializing_sc == NULL!\n", __func__); 790 /* XXX KDM now what? */ 791 return; 792 } 793 794 ctsio = &msg_info->hdr.serializing_sc->scsiio; 795 ctsio->io_hdr.msg_type = CTL_MSG_FINISH_IO; 796 ctl_enqueue_isc((union ctl_io *)ctsio); 797 } 798 799 void 800 ctl_isc_announce_lun(struct ctl_lun *lun) 801 { 802 struct ctl_softc *softc = lun->ctl_softc; 803 union ctl_ha_msg *msg; 804 struct ctl_ha_msg_lun_pr_key pr_key; 805 int i, k; 806 807 if (softc->ha_link != CTL_HA_LINK_ONLINE) 808 return; 809 mtx_lock(&lun->lun_lock); 810 i = sizeof(msg->lun); 811 if (lun->lun_devid) 812 i += lun->lun_devid->len; 813 i += sizeof(pr_key) * lun->pr_key_count; 814 alloc: 815 mtx_unlock(&lun->lun_lock); 816 msg = malloc(i, M_CTL, M_WAITOK); 817 mtx_lock(&lun->lun_lock); 818 k = sizeof(msg->lun); 819 if (lun->lun_devid) 820 k += lun->lun_devid->len; 821 k += sizeof(pr_key) * lun->pr_key_count; 822 if (i < k) { 823 free(msg, M_CTL); 824 i = k; 825 goto alloc; 826 } 827 bzero(&msg->lun, sizeof(msg->lun)); 828 msg->hdr.msg_type = CTL_MSG_LUN_SYNC; 829 msg->hdr.nexus.targ_lun = lun->lun; 830 msg->hdr.nexus.targ_mapped_lun = lun->lun; 831 msg->lun.flags = lun->flags; 832 msg->lun.pr_generation = lun->pr_generation; 833 msg->lun.pr_res_idx = lun->pr_res_idx; 834 msg->lun.pr_res_type = lun->pr_res_type; 835 msg->lun.pr_key_count = lun->pr_key_count; 836 i = 0; 837 if (lun->lun_devid) { 838 msg->lun.lun_devid_len = lun->lun_devid->len; 839 memcpy(&msg->lun.data[i], lun->lun_devid->data, 840 msg->lun.lun_devid_len); 841 i += msg->lun.lun_devid_len; 842 } 843 for (k = 0; k < CTL_MAX_INITIATORS; k++) { 844 if ((pr_key.pr_key = ctl_get_prkey(lun, k)) == 0) 845 continue; 846 pr_key.pr_iid = k; 847 memcpy(&msg->lun.data[i], &pr_key, sizeof(pr_key)); 848 i += sizeof(pr_key); 849 } 850 mtx_unlock(&lun->lun_lock); 851 ctl_ha_msg_send(CTL_HA_CHAN_CTL, &msg->lun, sizeof(msg->lun) + i, 852 M_WAITOK); 853 free(msg, M_CTL); 854 855 if (lun->flags & CTL_LUN_PRIMARY_SC) { 856 for (i = 0; i < CTL_NUM_MODE_PAGES; i++) { 857 ctl_isc_announce_mode(lun, -1, 858 lun->mode_pages.index[i].page_code & SMPH_PC_MASK, 859 lun->mode_pages.index[i].subpage); 860 } 861 } 862 } 863 864 void 865 ctl_isc_announce_port(struct ctl_port *port) 866 { 867 struct ctl_softc *softc = port->ctl_softc; 868 union ctl_ha_msg *msg; 869 int i; 870 871 if (port->targ_port < softc->port_min || 872 port->targ_port >= softc->port_max || 873 softc->ha_link != CTL_HA_LINK_ONLINE) 874 return; 875 i = sizeof(msg->port) + strlen(port->port_name) + 1; 876 if (port->lun_map) 877 i += port->lun_map_size * sizeof(uint32_t); 878 if (port->port_devid) 879 i += port->port_devid->len; 880 if (port->target_devid) 881 i += port->target_devid->len; 882 if (port->init_devid) 883 i += port->init_devid->len; 884 msg = malloc(i, M_CTL, M_WAITOK); 885 bzero(&msg->port, sizeof(msg->port)); 886 msg->hdr.msg_type = CTL_MSG_PORT_SYNC; 887 msg->hdr.nexus.targ_port = port->targ_port; 888 msg->port.port_type = port->port_type; 889 msg->port.physical_port = port->physical_port; 890 msg->port.virtual_port = port->virtual_port; 891 msg->port.status = port->status; 892 i = 0; 893 msg->port.name_len = sprintf(&msg->port.data[i], 894 "%d:%s", softc->ha_id, port->port_name) + 1; 895 i += msg->port.name_len; 896 if (port->lun_map) { 897 msg->port.lun_map_len = port->lun_map_size * sizeof(uint32_t); 898 memcpy(&msg->port.data[i], port->lun_map, 899 msg->port.lun_map_len); 900 i += msg->port.lun_map_len; 901 } 902 if (port->port_devid) { 903 msg->port.port_devid_len = port->port_devid->len; 904 memcpy(&msg->port.data[i], port->port_devid->data, 905 msg->port.port_devid_len); 906 i += msg->port.port_devid_len; 907 } 908 if (port->target_devid) { 909 msg->port.target_devid_len = port->target_devid->len; 910 memcpy(&msg->port.data[i], port->target_devid->data, 911 msg->port.target_devid_len); 912 i += msg->port.target_devid_len; 913 } 914 if (port->init_devid) { 915 msg->port.init_devid_len = port->init_devid->len; 916 memcpy(&msg->port.data[i], port->init_devid->data, 917 msg->port.init_devid_len); 918 i += msg->port.init_devid_len; 919 } 920 ctl_ha_msg_send(CTL_HA_CHAN_CTL, &msg->port, sizeof(msg->port) + i, 921 M_WAITOK); 922 free(msg, M_CTL); 923 } 924 925 void 926 ctl_isc_announce_iid(struct ctl_port *port, int iid) 927 { 928 struct ctl_softc *softc = port->ctl_softc; 929 union ctl_ha_msg *msg; 930 int i, l; 931 932 if (port->targ_port < softc->port_min || 933 port->targ_port >= softc->port_max || 934 softc->ha_link != CTL_HA_LINK_ONLINE) 935 return; 936 mtx_lock(&softc->ctl_lock); 937 i = sizeof(msg->iid); 938 l = 0; 939 if (port->wwpn_iid[iid].name) 940 l = strlen(port->wwpn_iid[iid].name) + 1; 941 i += l; 942 msg = malloc(i, M_CTL, M_NOWAIT); 943 if (msg == NULL) { 944 mtx_unlock(&softc->ctl_lock); 945 return; 946 } 947 bzero(&msg->iid, sizeof(msg->iid)); 948 msg->hdr.msg_type = CTL_MSG_IID_SYNC; 949 msg->hdr.nexus.targ_port = port->targ_port; 950 msg->hdr.nexus.initid = iid; 951 msg->iid.in_use = port->wwpn_iid[iid].in_use; 952 msg->iid.name_len = l; 953 msg->iid.wwpn = port->wwpn_iid[iid].wwpn; 954 if (port->wwpn_iid[iid].name) 955 strlcpy(msg->iid.data, port->wwpn_iid[iid].name, l); 956 mtx_unlock(&softc->ctl_lock); 957 ctl_ha_msg_send(CTL_HA_CHAN_CTL, &msg->iid, i, M_NOWAIT); 958 free(msg, M_CTL); 959 } 960 961 void 962 ctl_isc_announce_mode(struct ctl_lun *lun, uint32_t initidx, 963 uint8_t page, uint8_t subpage) 964 { 965 struct ctl_softc *softc = lun->ctl_softc; 966 union ctl_ha_msg *msg; 967 u_int i, l; 968 969 if (softc->ha_link != CTL_HA_LINK_ONLINE) 970 return; 971 for (i = 0; i < CTL_NUM_MODE_PAGES; i++) { 972 if ((lun->mode_pages.index[i].page_code & SMPH_PC_MASK) == 973 page && lun->mode_pages.index[i].subpage == subpage) 974 break; 975 } 976 if (i == CTL_NUM_MODE_PAGES) 977 return; 978 979 /* Don't try to replicate pages not present on this device. */ 980 if (lun->mode_pages.index[i].page_data == NULL) 981 return; 982 983 l = sizeof(msg->mode) + lun->mode_pages.index[i].page_len; 984 msg = malloc(l, M_CTL, M_WAITOK | M_ZERO); 985 msg->hdr.msg_type = CTL_MSG_MODE_SYNC; 986 msg->hdr.nexus.targ_port = initidx / CTL_MAX_INIT_PER_PORT; 987 msg->hdr.nexus.initid = initidx % CTL_MAX_INIT_PER_PORT; 988 msg->hdr.nexus.targ_lun = lun->lun; 989 msg->hdr.nexus.targ_mapped_lun = lun->lun; 990 msg->mode.page_code = page; 991 msg->mode.subpage = subpage; 992 msg->mode.page_len = lun->mode_pages.index[i].page_len; 993 memcpy(msg->mode.data, lun->mode_pages.index[i].page_data, 994 msg->mode.page_len); 995 ctl_ha_msg_send(CTL_HA_CHAN_CTL, &msg->mode, l, M_WAITOK); 996 free(msg, M_CTL); 997 } 998 999 static void 1000 ctl_isc_ha_link_up(struct ctl_softc *softc) 1001 { 1002 struct ctl_port *port; 1003 struct ctl_lun *lun; 1004 union ctl_ha_msg msg; 1005 int i; 1006 1007 /* Announce this node parameters to peer for validation. */ 1008 msg.login.msg_type = CTL_MSG_LOGIN; 1009 msg.login.version = CTL_HA_VERSION; 1010 msg.login.ha_mode = softc->ha_mode; 1011 msg.login.ha_id = softc->ha_id; 1012 msg.login.max_luns = ctl_max_luns; 1013 msg.login.max_ports = ctl_max_ports; 1014 msg.login.max_init_per_port = CTL_MAX_INIT_PER_PORT; 1015 ctl_ha_msg_send(CTL_HA_CHAN_CTL, &msg.login, sizeof(msg.login), 1016 M_WAITOK); 1017 1018 STAILQ_FOREACH(port, &softc->port_list, links) { 1019 ctl_isc_announce_port(port); 1020 for (i = 0; i < CTL_MAX_INIT_PER_PORT; i++) { 1021 if (port->wwpn_iid[i].in_use) 1022 ctl_isc_announce_iid(port, i); 1023 } 1024 } 1025 STAILQ_FOREACH(lun, &softc->lun_list, links) 1026 ctl_isc_announce_lun(lun); 1027 } 1028 1029 static void 1030 ctl_isc_ha_link_down(struct ctl_softc *softc) 1031 { 1032 struct ctl_port *port; 1033 struct ctl_lun *lun; 1034 union ctl_io *io; 1035 int i; 1036 1037 mtx_lock(&softc->ctl_lock); 1038 STAILQ_FOREACH(lun, &softc->lun_list, links) { 1039 mtx_lock(&lun->lun_lock); 1040 if (lun->flags & CTL_LUN_PEER_SC_PRIMARY) { 1041 lun->flags &= ~CTL_LUN_PEER_SC_PRIMARY; 1042 ctl_est_ua_all(lun, -1, CTL_UA_ASYM_ACC_CHANGE); 1043 } 1044 mtx_unlock(&lun->lun_lock); 1045 1046 mtx_unlock(&softc->ctl_lock); 1047 io = ctl_alloc_io(softc->othersc_pool); 1048 mtx_lock(&softc->ctl_lock); 1049 ctl_zero_io(io); 1050 io->io_hdr.msg_type = CTL_MSG_FAILOVER; 1051 io->io_hdr.nexus.targ_mapped_lun = lun->lun; 1052 ctl_enqueue_isc(io); 1053 } 1054 1055 STAILQ_FOREACH(port, &softc->port_list, links) { 1056 if (port->targ_port >= softc->port_min && 1057 port->targ_port < softc->port_max) 1058 continue; 1059 port->status &= ~CTL_PORT_STATUS_ONLINE; 1060 for (i = 0; i < CTL_MAX_INIT_PER_PORT; i++) { 1061 port->wwpn_iid[i].in_use = 0; 1062 free(port->wwpn_iid[i].name, M_CTL); 1063 port->wwpn_iid[i].name = NULL; 1064 } 1065 } 1066 mtx_unlock(&softc->ctl_lock); 1067 } 1068 1069 static void 1070 ctl_isc_ua(struct ctl_softc *softc, union ctl_ha_msg *msg, int len) 1071 { 1072 struct ctl_lun *lun; 1073 uint32_t iid; 1074 1075 if (len < sizeof(msg->ua)) { 1076 printf("%s: Received truncated message %d < %zu\n", 1077 __func__, len, sizeof(msg->ua)); 1078 ctl_ha_msg_abort(CTL_HA_CHAN_CTL); 1079 return; 1080 } 1081 1082 mtx_lock(&softc->ctl_lock); 1083 if (msg->hdr.nexus.targ_mapped_lun >= ctl_max_luns || 1084 (lun = softc->ctl_luns[msg->hdr.nexus.targ_mapped_lun]) == NULL) { 1085 mtx_unlock(&softc->ctl_lock); 1086 return; 1087 } 1088 mtx_lock(&lun->lun_lock); 1089 mtx_unlock(&softc->ctl_lock); 1090 if (msg->ua.ua_type == CTL_UA_THIN_PROV_THRES && msg->ua.ua_set) 1091 memcpy(lun->ua_tpt_info, msg->ua.ua_info, 8); 1092 iid = ctl_get_initindex(&msg->hdr.nexus); 1093 if (msg->ua.ua_all) { 1094 if (msg->ua.ua_set) 1095 ctl_est_ua_all(lun, iid, msg->ua.ua_type); 1096 else 1097 ctl_clr_ua_all(lun, iid, msg->ua.ua_type); 1098 } else { 1099 if (msg->ua.ua_set) 1100 ctl_est_ua(lun, iid, msg->ua.ua_type); 1101 else 1102 ctl_clr_ua(lun, iid, msg->ua.ua_type); 1103 } 1104 mtx_unlock(&lun->lun_lock); 1105 } 1106 1107 static void 1108 ctl_isc_lun_sync(struct ctl_softc *softc, union ctl_ha_msg *msg, int len) 1109 { 1110 struct ctl_lun *lun; 1111 struct ctl_ha_msg_lun_pr_key pr_key; 1112 int i, k; 1113 ctl_lun_flags oflags; 1114 uint32_t targ_lun; 1115 1116 if (len < offsetof(struct ctl_ha_msg_lun, data[0])) { 1117 printf("%s: Received truncated message %d < %zu\n", 1118 __func__, len, offsetof(struct ctl_ha_msg_lun, data[0])); 1119 ctl_ha_msg_abort(CTL_HA_CHAN_CTL); 1120 return; 1121 } 1122 i = msg->lun.lun_devid_len + msg->lun.pr_key_count * sizeof(pr_key); 1123 if (len < offsetof(struct ctl_ha_msg_lun, data[i])) { 1124 printf("%s: Received truncated message data %d < %zu\n", 1125 __func__, len, offsetof(struct ctl_ha_msg_lun, data[i])); 1126 ctl_ha_msg_abort(CTL_HA_CHAN_CTL); 1127 return; 1128 } 1129 1130 targ_lun = msg->hdr.nexus.targ_mapped_lun; 1131 mtx_lock(&softc->ctl_lock); 1132 if (targ_lun >= ctl_max_luns || 1133 (lun = softc->ctl_luns[targ_lun]) == NULL) { 1134 mtx_unlock(&softc->ctl_lock); 1135 return; 1136 } 1137 mtx_lock(&lun->lun_lock); 1138 mtx_unlock(&softc->ctl_lock); 1139 if (lun->flags & CTL_LUN_DISABLED) { 1140 mtx_unlock(&lun->lun_lock); 1141 return; 1142 } 1143 i = (lun->lun_devid != NULL) ? lun->lun_devid->len : 0; 1144 if (msg->lun.lun_devid_len != i || (i > 0 && 1145 memcmp(&msg->lun.data[0], lun->lun_devid->data, i) != 0)) { 1146 mtx_unlock(&lun->lun_lock); 1147 printf("%s: Received conflicting HA LUN %d\n", 1148 __func__, targ_lun); 1149 return; 1150 } else { 1151 /* Record whether peer is primary. */ 1152 oflags = lun->flags; 1153 if ((msg->lun.flags & CTL_LUN_PRIMARY_SC) && 1154 (msg->lun.flags & CTL_LUN_DISABLED) == 0) 1155 lun->flags |= CTL_LUN_PEER_SC_PRIMARY; 1156 else 1157 lun->flags &= ~CTL_LUN_PEER_SC_PRIMARY; 1158 if (oflags != lun->flags) 1159 ctl_est_ua_all(lun, -1, CTL_UA_ASYM_ACC_CHANGE); 1160 1161 /* If peer is primary and we are not -- use data */ 1162 if ((lun->flags & CTL_LUN_PRIMARY_SC) == 0 && 1163 (lun->flags & CTL_LUN_PEER_SC_PRIMARY)) { 1164 lun->pr_generation = msg->lun.pr_generation; 1165 lun->pr_res_idx = msg->lun.pr_res_idx; 1166 lun->pr_res_type = msg->lun.pr_res_type; 1167 lun->pr_key_count = msg->lun.pr_key_count; 1168 for (k = 0; k < CTL_MAX_INITIATORS; k++) 1169 ctl_clr_prkey(lun, k); 1170 for (k = 0; k < msg->lun.pr_key_count; k++) { 1171 memcpy(&pr_key, &msg->lun.data[i], 1172 sizeof(pr_key)); 1173 ctl_alloc_prkey(lun, pr_key.pr_iid); 1174 ctl_set_prkey(lun, pr_key.pr_iid, 1175 pr_key.pr_key); 1176 i += sizeof(pr_key); 1177 } 1178 } 1179 1180 mtx_unlock(&lun->lun_lock); 1181 CTL_DEBUG_PRINT(("%s: Known LUN %d, peer is %s\n", 1182 __func__, targ_lun, 1183 (msg->lun.flags & CTL_LUN_PRIMARY_SC) ? 1184 "primary" : "secondary")); 1185 1186 /* If we are primary but peer doesn't know -- notify */ 1187 if ((lun->flags & CTL_LUN_PRIMARY_SC) && 1188 (msg->lun.flags & CTL_LUN_PEER_SC_PRIMARY) == 0) 1189 ctl_isc_announce_lun(lun); 1190 } 1191 } 1192 1193 static void 1194 ctl_isc_port_sync(struct ctl_softc *softc, union ctl_ha_msg *msg, int len) 1195 { 1196 struct ctl_port *port; 1197 struct ctl_lun *lun; 1198 int i, new; 1199 1200 if (len < offsetof(struct ctl_ha_msg_port, data[0])) { 1201 printf("%s: Received truncated message %d < %zu\n", 1202 __func__, len, offsetof(struct ctl_ha_msg_port, data[0])); 1203 ctl_ha_msg_abort(CTL_HA_CHAN_CTL); 1204 return; 1205 } 1206 i = msg->port.name_len + msg->port.lun_map_len + 1207 msg->port.port_devid_len + msg->port.target_devid_len + 1208 msg->port.init_devid_len; 1209 if (len < offsetof(struct ctl_ha_msg_port, data[i])) { 1210 printf("%s: Received truncated message data %d < %zu\n", 1211 __func__, len, offsetof(struct ctl_ha_msg_port, data[i])); 1212 ctl_ha_msg_abort(CTL_HA_CHAN_CTL); 1213 return; 1214 } 1215 1216 port = softc->ctl_ports[msg->hdr.nexus.targ_port]; 1217 if (port == NULL) { 1218 CTL_DEBUG_PRINT(("%s: New port %d\n", __func__, 1219 msg->hdr.nexus.targ_port)); 1220 new = 1; 1221 port = malloc(sizeof(*port), M_CTL, M_WAITOK | M_ZERO); 1222 port->frontend = &ha_frontend; 1223 port->targ_port = msg->hdr.nexus.targ_port; 1224 port->fe_datamove = ctl_ha_datamove; 1225 port->fe_done = ctl_ha_done; 1226 } else if (port->frontend == &ha_frontend) { 1227 CTL_DEBUG_PRINT(("%s: Updated port %d\n", __func__, 1228 msg->hdr.nexus.targ_port)); 1229 new = 0; 1230 } else { 1231 printf("%s: Received conflicting HA port %d\n", 1232 __func__, msg->hdr.nexus.targ_port); 1233 return; 1234 } 1235 port->port_type = msg->port.port_type; 1236 port->physical_port = msg->port.physical_port; 1237 port->virtual_port = msg->port.virtual_port; 1238 port->status = msg->port.status; 1239 i = 0; 1240 free(port->port_name, M_CTL); 1241 port->port_name = strndup(&msg->port.data[i], msg->port.name_len, 1242 M_CTL); 1243 i += msg->port.name_len; 1244 if (msg->port.lun_map_len != 0) { 1245 if (port->lun_map == NULL || 1246 port->lun_map_size * sizeof(uint32_t) < 1247 msg->port.lun_map_len) { 1248 port->lun_map_size = 0; 1249 free(port->lun_map, M_CTL); 1250 port->lun_map = malloc(msg->port.lun_map_len, 1251 M_CTL, M_WAITOK); 1252 } 1253 memcpy(port->lun_map, &msg->port.data[i], msg->port.lun_map_len); 1254 port->lun_map_size = msg->port.lun_map_len / sizeof(uint32_t); 1255 i += msg->port.lun_map_len; 1256 } else { 1257 port->lun_map_size = 0; 1258 free(port->lun_map, M_CTL); 1259 port->lun_map = NULL; 1260 } 1261 if (msg->port.port_devid_len != 0) { 1262 if (port->port_devid == NULL || 1263 port->port_devid->len < msg->port.port_devid_len) { 1264 free(port->port_devid, M_CTL); 1265 port->port_devid = malloc(sizeof(struct ctl_devid) + 1266 msg->port.port_devid_len, M_CTL, M_WAITOK); 1267 } 1268 memcpy(port->port_devid->data, &msg->port.data[i], 1269 msg->port.port_devid_len); 1270 port->port_devid->len = msg->port.port_devid_len; 1271 i += msg->port.port_devid_len; 1272 } else { 1273 free(port->port_devid, M_CTL); 1274 port->port_devid = NULL; 1275 } 1276 if (msg->port.target_devid_len != 0) { 1277 if (port->target_devid == NULL || 1278 port->target_devid->len < msg->port.target_devid_len) { 1279 free(port->target_devid, M_CTL); 1280 port->target_devid = malloc(sizeof(struct ctl_devid) + 1281 msg->port.target_devid_len, M_CTL, M_WAITOK); 1282 } 1283 memcpy(port->target_devid->data, &msg->port.data[i], 1284 msg->port.target_devid_len); 1285 port->target_devid->len = msg->port.target_devid_len; 1286 i += msg->port.target_devid_len; 1287 } else { 1288 free(port->target_devid, M_CTL); 1289 port->target_devid = NULL; 1290 } 1291 if (msg->port.init_devid_len != 0) { 1292 if (port->init_devid == NULL || 1293 port->init_devid->len < msg->port.init_devid_len) { 1294 free(port->init_devid, M_CTL); 1295 port->init_devid = malloc(sizeof(struct ctl_devid) + 1296 msg->port.init_devid_len, M_CTL, M_WAITOK); 1297 } 1298 memcpy(port->init_devid->data, &msg->port.data[i], 1299 msg->port.init_devid_len); 1300 port->init_devid->len = msg->port.init_devid_len; 1301 i += msg->port.init_devid_len; 1302 } else { 1303 free(port->init_devid, M_CTL); 1304 port->init_devid = NULL; 1305 } 1306 if (new) { 1307 if (ctl_port_register(port) != 0) { 1308 printf("%s: ctl_port_register() failed with error\n", 1309 __func__); 1310 } 1311 } 1312 mtx_lock(&softc->ctl_lock); 1313 STAILQ_FOREACH(lun, &softc->lun_list, links) { 1314 if (ctl_lun_map_to_port(port, lun->lun) == UINT32_MAX) 1315 continue; 1316 mtx_lock(&lun->lun_lock); 1317 ctl_est_ua_all(lun, -1, CTL_UA_INQ_CHANGE); 1318 mtx_unlock(&lun->lun_lock); 1319 } 1320 mtx_unlock(&softc->ctl_lock); 1321 } 1322 1323 static void 1324 ctl_isc_iid_sync(struct ctl_softc *softc, union ctl_ha_msg *msg, int len) 1325 { 1326 struct ctl_port *port; 1327 int i, iid; 1328 1329 if (len < offsetof(struct ctl_ha_msg_iid, data[0])) { 1330 printf("%s: Received truncated message %d < %zu\n", 1331 __func__, len, offsetof(struct ctl_ha_msg_iid, data[0])); 1332 ctl_ha_msg_abort(CTL_HA_CHAN_CTL); 1333 return; 1334 } 1335 i = msg->iid.name_len; 1336 if (len < offsetof(struct ctl_ha_msg_iid, data[i])) { 1337 printf("%s: Received truncated message data %d < %zu\n", 1338 __func__, len, offsetof(struct ctl_ha_msg_iid, data[i])); 1339 ctl_ha_msg_abort(CTL_HA_CHAN_CTL); 1340 return; 1341 } 1342 1343 port = softc->ctl_ports[msg->hdr.nexus.targ_port]; 1344 if (port == NULL) { 1345 printf("%s: Received IID for unknown port %d\n", 1346 __func__, msg->hdr.nexus.targ_port); 1347 return; 1348 } 1349 iid = msg->hdr.nexus.initid; 1350 if (port->wwpn_iid[iid].in_use != 0 && 1351 msg->iid.in_use == 0) 1352 ctl_i_t_nexus_loss(softc, iid, CTL_UA_POWERON); 1353 port->wwpn_iid[iid].in_use = msg->iid.in_use; 1354 port->wwpn_iid[iid].wwpn = msg->iid.wwpn; 1355 free(port->wwpn_iid[iid].name, M_CTL); 1356 if (msg->iid.name_len) { 1357 port->wwpn_iid[iid].name = strndup(&msg->iid.data[0], 1358 msg->iid.name_len, M_CTL); 1359 } else 1360 port->wwpn_iid[iid].name = NULL; 1361 } 1362 1363 static void 1364 ctl_isc_login(struct ctl_softc *softc, union ctl_ha_msg *msg, int len) 1365 { 1366 1367 if (len < sizeof(msg->login)) { 1368 printf("%s: Received truncated message %d < %zu\n", 1369 __func__, len, sizeof(msg->login)); 1370 ctl_ha_msg_abort(CTL_HA_CHAN_CTL); 1371 return; 1372 } 1373 1374 if (msg->login.version != CTL_HA_VERSION) { 1375 printf("CTL HA peers have different versions %d != %d\n", 1376 msg->login.version, CTL_HA_VERSION); 1377 ctl_ha_msg_abort(CTL_HA_CHAN_CTL); 1378 return; 1379 } 1380 if (msg->login.ha_mode != softc->ha_mode) { 1381 printf("CTL HA peers have different ha_mode %d != %d\n", 1382 msg->login.ha_mode, softc->ha_mode); 1383 ctl_ha_msg_abort(CTL_HA_CHAN_CTL); 1384 return; 1385 } 1386 if (msg->login.ha_id == softc->ha_id) { 1387 printf("CTL HA peers have same ha_id %d\n", msg->login.ha_id); 1388 ctl_ha_msg_abort(CTL_HA_CHAN_CTL); 1389 return; 1390 } 1391 if (msg->login.max_luns != ctl_max_luns || 1392 msg->login.max_ports != ctl_max_ports || 1393 msg->login.max_init_per_port != CTL_MAX_INIT_PER_PORT) { 1394 printf("CTL HA peers have different limits\n"); 1395 ctl_ha_msg_abort(CTL_HA_CHAN_CTL); 1396 return; 1397 } 1398 } 1399 1400 static void 1401 ctl_isc_mode_sync(struct ctl_softc *softc, union ctl_ha_msg *msg, int len) 1402 { 1403 struct ctl_lun *lun; 1404 u_int i; 1405 uint32_t initidx, targ_lun; 1406 1407 if (len < offsetof(struct ctl_ha_msg_mode, data[0])) { 1408 printf("%s: Received truncated message %d < %zu\n", 1409 __func__, len, offsetof(struct ctl_ha_msg_mode, data[0])); 1410 ctl_ha_msg_abort(CTL_HA_CHAN_CTL); 1411 return; 1412 } 1413 i = msg->mode.page_len; 1414 if (len < offsetof(struct ctl_ha_msg_mode, data[i])) { 1415 printf("%s: Received truncated message data %d < %zu\n", 1416 __func__, len, offsetof(struct ctl_ha_msg_mode, data[i])); 1417 ctl_ha_msg_abort(CTL_HA_CHAN_CTL); 1418 return; 1419 } 1420 1421 targ_lun = msg->hdr.nexus.targ_mapped_lun; 1422 mtx_lock(&softc->ctl_lock); 1423 if (targ_lun >= ctl_max_luns || 1424 (lun = softc->ctl_luns[targ_lun]) == NULL) { 1425 mtx_unlock(&softc->ctl_lock); 1426 return; 1427 } 1428 mtx_lock(&lun->lun_lock); 1429 mtx_unlock(&softc->ctl_lock); 1430 if (lun->flags & CTL_LUN_DISABLED) { 1431 mtx_unlock(&lun->lun_lock); 1432 return; 1433 } 1434 for (i = 0; i < CTL_NUM_MODE_PAGES; i++) { 1435 if ((lun->mode_pages.index[i].page_code & SMPH_PC_MASK) == 1436 msg->mode.page_code && 1437 lun->mode_pages.index[i].subpage == msg->mode.subpage) 1438 break; 1439 } 1440 if (i == CTL_NUM_MODE_PAGES) { 1441 mtx_unlock(&lun->lun_lock); 1442 return; 1443 } 1444 memcpy(lun->mode_pages.index[i].page_data, msg->mode.data, 1445 min(lun->mode_pages.index[i].page_len, msg->mode.page_len)); 1446 initidx = ctl_get_initindex(&msg->hdr.nexus); 1447 if (initidx != -1) 1448 ctl_est_ua_all(lun, initidx, CTL_UA_MODE_CHANGE); 1449 mtx_unlock(&lun->lun_lock); 1450 } 1451 1452 /* 1453 * ISC (Inter Shelf Communication) event handler. Events from the HA 1454 * subsystem come in here. 1455 */ 1456 static void 1457 ctl_isc_event_handler(ctl_ha_channel channel, ctl_ha_event event, int param) 1458 { 1459 struct ctl_softc *softc = control_softc; 1460 union ctl_io *io; 1461 struct ctl_prio *presio; 1462 ctl_ha_status isc_status; 1463 1464 CTL_DEBUG_PRINT(("CTL: Isc Msg event %d\n", event)); 1465 if (event == CTL_HA_EVT_MSG_RECV) { 1466 union ctl_ha_msg *msg, msgbuf; 1467 1468 if (param > sizeof(msgbuf)) 1469 msg = malloc(param, M_CTL, M_WAITOK); 1470 else 1471 msg = &msgbuf; 1472 isc_status = ctl_ha_msg_recv(CTL_HA_CHAN_CTL, msg, param, 1473 M_WAITOK); 1474 if (isc_status != CTL_HA_STATUS_SUCCESS) { 1475 printf("%s: Error receiving message: %d\n", 1476 __func__, isc_status); 1477 if (msg != &msgbuf) 1478 free(msg, M_CTL); 1479 return; 1480 } 1481 1482 CTL_DEBUG_PRINT(("CTL: msg_type %d len %d\n", 1483 msg->hdr.msg_type, param)); 1484 switch (msg->hdr.msg_type) { 1485 case CTL_MSG_SERIALIZE: 1486 io = ctl_alloc_io(softc->othersc_pool); 1487 ctl_zero_io(io); 1488 // populate ctsio from msg 1489 io->io_hdr.io_type = CTL_IO_SCSI; 1490 io->io_hdr.msg_type = CTL_MSG_SERIALIZE; 1491 io->io_hdr.remote_io = msg->hdr.original_sc; 1492 io->io_hdr.flags |= CTL_FLAG_FROM_OTHER_SC | 1493 CTL_FLAG_IO_ACTIVE; 1494 /* 1495 * If we're in serialization-only mode, we don't 1496 * want to go through full done processing. Thus 1497 * the COPY flag. 1498 * 1499 * XXX KDM add another flag that is more specific. 1500 */ 1501 if (softc->ha_mode != CTL_HA_MODE_XFER) 1502 io->io_hdr.flags |= CTL_FLAG_INT_COPY; 1503 io->io_hdr.nexus = msg->hdr.nexus; 1504 io->scsiio.priority = msg->scsi.priority; 1505 io->scsiio.tag_num = msg->scsi.tag_num; 1506 io->scsiio.tag_type = msg->scsi.tag_type; 1507 #ifdef CTL_TIME_IO 1508 io->io_hdr.start_time = time_uptime; 1509 getbinuptime(&io->io_hdr.start_bt); 1510 #endif /* CTL_TIME_IO */ 1511 io->scsiio.cdb_len = msg->scsi.cdb_len; 1512 memcpy(io->scsiio.cdb, msg->scsi.cdb, 1513 CTL_MAX_CDBLEN); 1514 if (softc->ha_mode == CTL_HA_MODE_XFER) { 1515 const struct ctl_cmd_entry *entry; 1516 1517 entry = ctl_get_cmd_entry(&io->scsiio, NULL); 1518 io->io_hdr.flags &= ~CTL_FLAG_DATA_MASK; 1519 io->io_hdr.flags |= 1520 entry->flags & CTL_FLAG_DATA_MASK; 1521 } 1522 ctl_enqueue_isc(io); 1523 break; 1524 1525 /* Performed on the Originating SC, XFER mode only */ 1526 case CTL_MSG_DATAMOVE: { 1527 struct ctl_sg_entry *sgl; 1528 int i, j; 1529 1530 io = msg->hdr.original_sc; 1531 if (io == NULL) { 1532 printf("%s: original_sc == NULL!\n", __func__); 1533 /* XXX KDM do something here */ 1534 break; 1535 } 1536 CTL_IO_ASSERT(io, SCSI); 1537 1538 io->io_hdr.msg_type = CTL_MSG_DATAMOVE; 1539 io->io_hdr.flags |= CTL_FLAG_IO_ACTIVE; 1540 /* 1541 * Keep track of this, we need to send it back over 1542 * when the datamove is complete. 1543 */ 1544 io->io_hdr.remote_io = msg->hdr.serializing_sc; 1545 if (msg->hdr.status == CTL_SUCCESS) 1546 io->io_hdr.status = msg->hdr.status; 1547 1548 if (msg->dt.sg_sequence == 0) { 1549 #ifdef CTL_TIME_IO 1550 getbinuptime(&io->io_hdr.dma_start_bt); 1551 #endif 1552 i = msg->dt.kern_sg_entries + 1553 msg->dt.kern_data_len / 1554 CTL_HA_DATAMOVE_SEGMENT + 1; 1555 sgl = malloc(sizeof(*sgl) * i, M_CTL, 1556 M_WAITOK | M_ZERO); 1557 CTL_RSGL(io) = sgl; 1558 CTL_LSGL(io) = &sgl[msg->dt.kern_sg_entries]; 1559 1560 io->scsiio.kern_data_ptr = (uint8_t *)sgl; 1561 1562 io->scsiio.kern_sg_entries = 1563 msg->dt.kern_sg_entries; 1564 io->scsiio.rem_sg_entries = 1565 msg->dt.kern_sg_entries; 1566 io->scsiio.kern_data_len = 1567 msg->dt.kern_data_len; 1568 io->scsiio.kern_total_len = 1569 msg->dt.kern_total_len; 1570 io->scsiio.kern_data_resid = 1571 msg->dt.kern_data_resid; 1572 io->scsiio.kern_rel_offset = 1573 msg->dt.kern_rel_offset; 1574 io->io_hdr.flags &= ~CTL_FLAG_BUS_ADDR; 1575 io->io_hdr.flags |= msg->dt.flags & 1576 CTL_FLAG_BUS_ADDR; 1577 } else 1578 sgl = (struct ctl_sg_entry *) 1579 io->scsiio.kern_data_ptr; 1580 1581 for (i = msg->dt.sent_sg_entries, j = 0; 1582 i < (msg->dt.sent_sg_entries + 1583 msg->dt.cur_sg_entries); i++, j++) { 1584 sgl[i].addr = msg->dt.sg_list[j].addr; 1585 sgl[i].len = msg->dt.sg_list[j].len; 1586 } 1587 1588 /* 1589 * If this is the last piece of the I/O, we've got 1590 * the full S/G list. Queue processing in the thread. 1591 * Otherwise wait for the next piece. 1592 */ 1593 if (msg->dt.sg_last != 0) 1594 ctl_enqueue_isc(io); 1595 break; 1596 } 1597 /* Performed on the Serializing (primary) SC, XFER mode only */ 1598 case CTL_MSG_DATAMOVE_DONE: { 1599 if (msg->hdr.serializing_sc == NULL) { 1600 printf("%s: serializing_sc == NULL!\n", 1601 __func__); 1602 /* XXX KDM now what? */ 1603 break; 1604 } 1605 /* 1606 * We grab the sense information here in case 1607 * there was a failure, so we can return status 1608 * back to the initiator. 1609 */ 1610 io = msg->hdr.serializing_sc; 1611 CTL_IO_ASSERT(io, SCSI); 1612 1613 io->io_hdr.msg_type = CTL_MSG_DATAMOVE_DONE; 1614 io->io_hdr.flags &= ~CTL_FLAG_DMA_INPROG; 1615 io->io_hdr.flags |= CTL_FLAG_IO_ACTIVE; 1616 io->io_hdr.port_status = msg->scsi.port_status; 1617 io->scsiio.kern_data_resid = msg->scsi.kern_data_resid; 1618 if (msg->hdr.status != CTL_STATUS_NONE) { 1619 io->io_hdr.status = msg->hdr.status; 1620 io->scsiio.scsi_status = msg->scsi.scsi_status; 1621 io->scsiio.sense_len = msg->scsi.sense_len; 1622 memcpy(&io->scsiio.sense_data, 1623 &msg->scsi.sense_data, 1624 msg->scsi.sense_len); 1625 if (msg->hdr.status == CTL_SUCCESS) 1626 io->io_hdr.flags |= CTL_FLAG_STATUS_SENT; 1627 } 1628 ctl_enqueue_isc(io); 1629 break; 1630 } 1631 1632 /* Preformed on Originating SC, SER_ONLY mode */ 1633 case CTL_MSG_R2R: 1634 io = msg->hdr.original_sc; 1635 if (io == NULL) { 1636 printf("%s: original_sc == NULL!\n", 1637 __func__); 1638 break; 1639 } 1640 io->io_hdr.flags |= CTL_FLAG_IO_ACTIVE; 1641 io->io_hdr.msg_type = CTL_MSG_R2R; 1642 io->io_hdr.remote_io = msg->hdr.serializing_sc; 1643 ctl_enqueue_isc(io); 1644 break; 1645 1646 /* 1647 * Performed on Serializing(i.e. primary SC) SC in SER_ONLY 1648 * mode. 1649 * Performed on the Originating (i.e. secondary) SC in XFER 1650 * mode 1651 */ 1652 case CTL_MSG_FINISH_IO: 1653 if (softc->ha_mode == CTL_HA_MODE_XFER) 1654 ctl_isc_handler_finish_xfer(softc, msg); 1655 else 1656 ctl_isc_handler_finish_ser_only(softc, msg); 1657 break; 1658 1659 /* Preformed on Originating SC */ 1660 case CTL_MSG_BAD_JUJU: 1661 io = msg->hdr.original_sc; 1662 if (io == NULL) { 1663 printf("%s: Bad JUJU!, original_sc is NULL!\n", 1664 __func__); 1665 break; 1666 } 1667 ctl_copy_sense_data(msg, io); 1668 /* 1669 * IO should have already been cleaned up on other 1670 * SC so clear this flag so we won't send a message 1671 * back to finish the IO there. 1672 */ 1673 io->io_hdr.flags &= ~CTL_FLAG_SENT_2OTHER_SC; 1674 io->io_hdr.flags |= CTL_FLAG_IO_ACTIVE; 1675 1676 /* io = msg->hdr.serializing_sc; */ 1677 io->io_hdr.msg_type = CTL_MSG_BAD_JUJU; 1678 ctl_enqueue_isc(io); 1679 break; 1680 1681 /* Handle resets sent from the other side */ 1682 case CTL_MSG_MANAGE_TASKS: { 1683 struct ctl_taskio *taskio; 1684 taskio = (struct ctl_taskio *)ctl_alloc_io( 1685 softc->othersc_pool); 1686 ctl_zero_io((union ctl_io *)taskio); 1687 taskio->io_hdr.io_type = CTL_IO_TASK; 1688 taskio->io_hdr.flags |= CTL_FLAG_FROM_OTHER_SC; 1689 taskio->io_hdr.nexus = msg->hdr.nexus; 1690 taskio->task_action = msg->task.task_action; 1691 taskio->tag_num = msg->task.tag_num; 1692 taskio->tag_type = msg->task.tag_type; 1693 #ifdef CTL_TIME_IO 1694 taskio->io_hdr.start_time = time_uptime; 1695 getbinuptime(&taskio->io_hdr.start_bt); 1696 #endif /* CTL_TIME_IO */ 1697 ctl_run_task((union ctl_io *)taskio); 1698 break; 1699 } 1700 /* Persistent Reserve action which needs attention */ 1701 case CTL_MSG_PERS_ACTION: 1702 presio = (struct ctl_prio *)ctl_alloc_io( 1703 softc->othersc_pool); 1704 ctl_zero_io((union ctl_io *)presio); 1705 presio->io_hdr.msg_type = CTL_MSG_PERS_ACTION; 1706 presio->io_hdr.flags |= CTL_FLAG_FROM_OTHER_SC; 1707 presio->io_hdr.nexus = msg->hdr.nexus; 1708 presio->pr_msg = msg->pr; 1709 ctl_enqueue_isc((union ctl_io *)presio); 1710 break; 1711 case CTL_MSG_UA: 1712 ctl_isc_ua(softc, msg, param); 1713 break; 1714 case CTL_MSG_PORT_SYNC: 1715 ctl_isc_port_sync(softc, msg, param); 1716 break; 1717 case CTL_MSG_LUN_SYNC: 1718 ctl_isc_lun_sync(softc, msg, param); 1719 break; 1720 case CTL_MSG_IID_SYNC: 1721 ctl_isc_iid_sync(softc, msg, param); 1722 break; 1723 case CTL_MSG_LOGIN: 1724 ctl_isc_login(softc, msg, param); 1725 break; 1726 case CTL_MSG_MODE_SYNC: 1727 ctl_isc_mode_sync(softc, msg, param); 1728 break; 1729 default: 1730 printf("Received HA message of unknown type %d\n", 1731 msg->hdr.msg_type); 1732 ctl_ha_msg_abort(CTL_HA_CHAN_CTL); 1733 break; 1734 } 1735 if (msg != &msgbuf) 1736 free(msg, M_CTL); 1737 } else if (event == CTL_HA_EVT_LINK_CHANGE) { 1738 printf("CTL: HA link status changed from %d to %d\n", 1739 softc->ha_link, param); 1740 if (param == softc->ha_link) 1741 return; 1742 if (softc->ha_link == CTL_HA_LINK_ONLINE) { 1743 softc->ha_link = param; 1744 ctl_isc_ha_link_down(softc); 1745 } else { 1746 softc->ha_link = param; 1747 if (softc->ha_link == CTL_HA_LINK_ONLINE) 1748 ctl_isc_ha_link_up(softc); 1749 } 1750 return; 1751 } else { 1752 printf("ctl_isc_event_handler: Unknown event %d\n", event); 1753 return; 1754 } 1755 } 1756 1757 static void 1758 ctl_copy_sense_data(union ctl_ha_msg *src, union ctl_io *dest) 1759 { 1760 1761 memcpy(&dest->scsiio.sense_data, &src->scsi.sense_data, 1762 src->scsi.sense_len); 1763 dest->scsiio.scsi_status = src->scsi.scsi_status; 1764 dest->scsiio.sense_len = src->scsi.sense_len; 1765 dest->io_hdr.status = src->hdr.status; 1766 } 1767 1768 static void 1769 ctl_copy_sense_data_back(union ctl_io *src, union ctl_ha_msg *dest) 1770 { 1771 1772 memcpy(&dest->scsi.sense_data, &src->scsiio.sense_data, 1773 src->scsiio.sense_len); 1774 dest->scsi.scsi_status = src->scsiio.scsi_status; 1775 dest->scsi.sense_len = src->scsiio.sense_len; 1776 dest->hdr.status = src->io_hdr.status; 1777 } 1778 1779 void 1780 ctl_est_ua(struct ctl_lun *lun, uint32_t initidx, ctl_ua_type ua) 1781 { 1782 struct ctl_softc *softc = lun->ctl_softc; 1783 ctl_ua_type *pu; 1784 1785 if (initidx < softc->init_min || initidx >= softc->init_max) 1786 return; 1787 mtx_assert(&lun->lun_lock, MA_OWNED); 1788 pu = lun->pending_ua[initidx / CTL_MAX_INIT_PER_PORT]; 1789 if (pu == NULL) 1790 return; 1791 pu[initidx % CTL_MAX_INIT_PER_PORT] |= ua; 1792 } 1793 1794 void 1795 ctl_est_ua_port(struct ctl_lun *lun, int port, uint32_t except, ctl_ua_type ua) 1796 { 1797 int i; 1798 1799 mtx_assert(&lun->lun_lock, MA_OWNED); 1800 if (lun->pending_ua[port] == NULL) 1801 return; 1802 for (i = 0; i < CTL_MAX_INIT_PER_PORT; i++) { 1803 if (port * CTL_MAX_INIT_PER_PORT + i == except) 1804 continue; 1805 lun->pending_ua[port][i] |= ua; 1806 } 1807 } 1808 1809 void 1810 ctl_est_ua_all(struct ctl_lun *lun, uint32_t except, ctl_ua_type ua) 1811 { 1812 struct ctl_softc *softc = lun->ctl_softc; 1813 int i; 1814 1815 mtx_assert(&lun->lun_lock, MA_OWNED); 1816 for (i = softc->port_min; i < softc->port_max; i++) 1817 ctl_est_ua_port(lun, i, except, ua); 1818 } 1819 1820 void 1821 ctl_clr_ua(struct ctl_lun *lun, uint32_t initidx, ctl_ua_type ua) 1822 { 1823 struct ctl_softc *softc = lun->ctl_softc; 1824 ctl_ua_type *pu; 1825 1826 if (initidx < softc->init_min || initidx >= softc->init_max) 1827 return; 1828 mtx_assert(&lun->lun_lock, MA_OWNED); 1829 pu = lun->pending_ua[initidx / CTL_MAX_INIT_PER_PORT]; 1830 if (pu == NULL) 1831 return; 1832 pu[initidx % CTL_MAX_INIT_PER_PORT] &= ~ua; 1833 } 1834 1835 void 1836 ctl_clr_ua_all(struct ctl_lun *lun, uint32_t except, ctl_ua_type ua) 1837 { 1838 struct ctl_softc *softc = lun->ctl_softc; 1839 int i, j; 1840 1841 mtx_assert(&lun->lun_lock, MA_OWNED); 1842 for (i = softc->port_min; i < softc->port_max; i++) { 1843 if (lun->pending_ua[i] == NULL) 1844 continue; 1845 for (j = 0; j < CTL_MAX_INIT_PER_PORT; j++) { 1846 if (i * CTL_MAX_INIT_PER_PORT + j == except) 1847 continue; 1848 lun->pending_ua[i][j] &= ~ua; 1849 } 1850 } 1851 } 1852 1853 void 1854 ctl_clr_ua_allluns(struct ctl_softc *ctl_softc, uint32_t initidx, 1855 ctl_ua_type ua_type) 1856 { 1857 struct ctl_lun *lun; 1858 1859 mtx_assert(&ctl_softc->ctl_lock, MA_OWNED); 1860 STAILQ_FOREACH(lun, &ctl_softc->lun_list, links) { 1861 mtx_lock(&lun->lun_lock); 1862 ctl_clr_ua(lun, initidx, ua_type); 1863 mtx_unlock(&lun->lun_lock); 1864 } 1865 } 1866 1867 static int 1868 ctl_ha_role_sysctl(SYSCTL_HANDLER_ARGS) 1869 { 1870 struct ctl_softc *softc = (struct ctl_softc *)arg1; 1871 struct ctl_lun *lun; 1872 struct ctl_lun_req ireq; 1873 int error, value; 1874 1875 value = (softc->flags & CTL_FLAG_ACTIVE_SHELF) ? 0 : 1; 1876 error = sysctl_handle_int(oidp, &value, 0, req); 1877 if ((error != 0) || (req->newptr == NULL)) 1878 return (error); 1879 1880 mtx_lock(&softc->ctl_lock); 1881 if (value == 0) 1882 softc->flags |= CTL_FLAG_ACTIVE_SHELF; 1883 else 1884 softc->flags &= ~CTL_FLAG_ACTIVE_SHELF; 1885 STAILQ_FOREACH(lun, &softc->lun_list, links) { 1886 mtx_unlock(&softc->ctl_lock); 1887 bzero(&ireq, sizeof(ireq)); 1888 ireq.reqtype = CTL_LUNREQ_MODIFY; 1889 ireq.reqdata.modify.lun_id = lun->lun; 1890 lun->backend->ioctl(NULL, CTL_LUN_REQ, (caddr_t)&ireq, 0, 1891 curthread); 1892 if (ireq.status != CTL_LUN_OK) { 1893 printf("%s: CTL_LUNREQ_MODIFY returned %d '%s'\n", 1894 __func__, ireq.status, ireq.error_str); 1895 } 1896 mtx_lock(&softc->ctl_lock); 1897 } 1898 mtx_unlock(&softc->ctl_lock); 1899 return (0); 1900 } 1901 1902 static int 1903 ctl_init(void) 1904 { 1905 struct make_dev_args args; 1906 struct ctl_softc *softc; 1907 int i, error; 1908 1909 softc = control_softc = malloc(sizeof(*control_softc), M_DEVBUF, 1910 M_WAITOK | M_ZERO); 1911 1912 make_dev_args_init(&args); 1913 args.mda_devsw = &ctl_cdevsw; 1914 args.mda_uid = UID_ROOT; 1915 args.mda_gid = GID_OPERATOR; 1916 args.mda_mode = 0600; 1917 args.mda_si_drv1 = softc; 1918 args.mda_si_drv2 = NULL; 1919 error = make_dev_s(&args, &softc->dev, "cam/ctl"); 1920 if (error != 0) { 1921 free(softc, M_DEVBUF); 1922 control_softc = NULL; 1923 return (error); 1924 } 1925 1926 sysctl_ctx_init(&softc->sysctl_ctx); 1927 softc->sysctl_tree = SYSCTL_ADD_NODE(&softc->sysctl_ctx, 1928 SYSCTL_STATIC_CHILDREN(_kern_cam), OID_AUTO, "ctl", 1929 CTLFLAG_RD | CTLFLAG_MPSAFE, 0, "CAM Target Layer"); 1930 1931 if (softc->sysctl_tree == NULL) { 1932 printf("%s: unable to allocate sysctl tree\n", __func__); 1933 destroy_dev(softc->dev); 1934 free(softc, M_DEVBUF); 1935 control_softc = NULL; 1936 return (ENOMEM); 1937 } 1938 1939 mtx_init(&softc->ctl_lock, "CTL mutex", NULL, MTX_DEF); 1940 softc->io_zone = uma_zcreate("CTL IO", sizeof(union ctl_io), 1941 NULL, NULL, NULL, NULL, UMA_ALIGN_PTR, 0); 1942 softc->flags = 0; 1943 1944 SYSCTL_ADD_INT(&softc->sysctl_ctx, SYSCTL_CHILDREN(softc->sysctl_tree), 1945 OID_AUTO, "ha_mode", CTLFLAG_RDTUN, (int *)&softc->ha_mode, 0, 1946 "HA mode (0 - act/stby, 1 - serialize only, 2 - xfer)"); 1947 1948 if (ctl_max_luns <= 0 || powerof2(ctl_max_luns) == 0) { 1949 printf("Bad value %d for kern.cam.ctl.max_luns, must be a power of two, using %d\n", 1950 ctl_max_luns, CTL_DEFAULT_MAX_LUNS); 1951 ctl_max_luns = CTL_DEFAULT_MAX_LUNS; 1952 } 1953 softc->ctl_luns = malloc(sizeof(struct ctl_lun *) * ctl_max_luns, 1954 M_DEVBUF, M_WAITOK | M_ZERO); 1955 softc->ctl_lun_mask = malloc(sizeof(uint32_t) * 1956 ((ctl_max_luns + 31) / 32), M_DEVBUF, M_WAITOK | M_ZERO); 1957 if (ctl_max_ports <= 0 || powerof2(ctl_max_ports) == 0) { 1958 printf("Bad value %d for kern.cam.ctl.max_ports, must be a power of two, using %d\n", 1959 ctl_max_ports, CTL_DEFAULT_MAX_PORTS); 1960 ctl_max_ports = CTL_DEFAULT_MAX_PORTS; 1961 } 1962 softc->ctl_port_mask = malloc(sizeof(uint32_t) * 1963 ((ctl_max_ports + 31) / 32), M_DEVBUF, M_WAITOK | M_ZERO); 1964 softc->ctl_ports = malloc(sizeof(struct ctl_port *) * ctl_max_ports, 1965 M_DEVBUF, M_WAITOK | M_ZERO); 1966 1967 /* 1968 * In Copan's HA scheme, the "master" and "slave" roles are 1969 * figured out through the slot the controller is in. Although it 1970 * is an active/active system, someone has to be in charge. 1971 */ 1972 SYSCTL_ADD_INT(&softc->sysctl_ctx, SYSCTL_CHILDREN(softc->sysctl_tree), 1973 OID_AUTO, "ha_id", CTLFLAG_RDTUN, &softc->ha_id, 0, 1974 "HA head ID (0 - no HA)"); 1975 if (softc->ha_id == 0 || softc->ha_id > NUM_HA_SHELVES) { 1976 softc->flags |= CTL_FLAG_ACTIVE_SHELF; 1977 softc->is_single = 1; 1978 softc->port_cnt = ctl_max_ports; 1979 softc->port_min = 0; 1980 } else { 1981 softc->port_cnt = ctl_max_ports / NUM_HA_SHELVES; 1982 softc->port_min = (softc->ha_id - 1) * softc->port_cnt; 1983 } 1984 softc->port_max = softc->port_min + softc->port_cnt; 1985 softc->init_min = softc->port_min * CTL_MAX_INIT_PER_PORT; 1986 softc->init_max = softc->port_max * CTL_MAX_INIT_PER_PORT; 1987 1988 SYSCTL_ADD_INT(&softc->sysctl_ctx, SYSCTL_CHILDREN(softc->sysctl_tree), 1989 OID_AUTO, "ha_link", CTLFLAG_RD, (int *)&softc->ha_link, 0, 1990 "HA link state (0 - offline, 1 - unknown, 2 - online)"); 1991 1992 STAILQ_INIT(&softc->lun_list); 1993 STAILQ_INIT(&softc->fe_list); 1994 STAILQ_INIT(&softc->port_list); 1995 STAILQ_INIT(&softc->be_list); 1996 ctl_tpc_init(softc); 1997 1998 if (worker_threads <= 0) 1999 worker_threads = max(1, mp_ncpus / 4); 2000 if (worker_threads > CTL_MAX_THREADS) 2001 worker_threads = CTL_MAX_THREADS; 2002 2003 for (i = 0; i < worker_threads; i++) { 2004 struct ctl_thread *thr = &softc->threads[i]; 2005 2006 mtx_init(&thr->queue_lock, "CTL queue mutex", NULL, MTX_DEF); 2007 thr->ctl_softc = softc; 2008 STAILQ_INIT(&thr->incoming_queue); 2009 STAILQ_INIT(&thr->rtr_queue); 2010 STAILQ_INIT(&thr->done_queue); 2011 STAILQ_INIT(&thr->isc_queue); 2012 2013 error = kproc_kthread_add(ctl_work_thread, thr, 2014 &softc->ctl_proc, &thr->thread, 0, 0, "ctl", "work%d", i); 2015 if (error != 0) { 2016 printf("error creating CTL work thread!\n"); 2017 return (error); 2018 } 2019 } 2020 error = kproc_kthread_add(ctl_thresh_thread, softc, 2021 &softc->ctl_proc, &softc->thresh_thread, 0, 0, "ctl", "thresh"); 2022 if (error != 0) { 2023 printf("error creating CTL threshold thread!\n"); 2024 return (error); 2025 } 2026 2027 SYSCTL_ADD_PROC(&softc->sysctl_ctx,SYSCTL_CHILDREN(softc->sysctl_tree), 2028 OID_AUTO, "ha_role", 2029 CTLTYPE_INT | CTLFLAG_RWTUN | CTLFLAG_MPSAFE, 2030 softc, 0, ctl_ha_role_sysctl, "I", "HA role for this head"); 2031 2032 if (softc->is_single == 0) { 2033 if (ctl_frontend_register(&ha_frontend) != 0) 2034 softc->is_single = 1; 2035 } 2036 return (0); 2037 } 2038 2039 static int 2040 ctl_shutdown(void) 2041 { 2042 struct ctl_softc *softc = control_softc; 2043 int i; 2044 2045 if (softc->is_single == 0) 2046 ctl_frontend_deregister(&ha_frontend); 2047 2048 destroy_dev(softc->dev); 2049 2050 /* Shutdown CTL threads. */ 2051 softc->shutdown = 1; 2052 for (i = 0; i < worker_threads; i++) { 2053 struct ctl_thread *thr = &softc->threads[i]; 2054 while (thr->thread != NULL) { 2055 wakeup(thr); 2056 if (thr->thread != NULL) 2057 pause("CTL thr shutdown", 1); 2058 } 2059 mtx_destroy(&thr->queue_lock); 2060 } 2061 while (softc->thresh_thread != NULL) { 2062 wakeup(softc->thresh_thread); 2063 if (softc->thresh_thread != NULL) 2064 pause("CTL thr shutdown", 1); 2065 } 2066 2067 ctl_tpc_shutdown(softc); 2068 uma_zdestroy(softc->io_zone); 2069 mtx_destroy(&softc->ctl_lock); 2070 2071 free(softc->ctl_luns, M_DEVBUF); 2072 free(softc->ctl_lun_mask, M_DEVBUF); 2073 free(softc->ctl_port_mask, M_DEVBUF); 2074 free(softc->ctl_ports, M_DEVBUF); 2075 2076 sysctl_ctx_free(&softc->sysctl_ctx); 2077 2078 free(softc, M_DEVBUF); 2079 control_softc = NULL; 2080 return (0); 2081 } 2082 2083 static int 2084 ctl_module_event_handler(module_t mod, int what, void *arg) 2085 { 2086 2087 switch (what) { 2088 case MOD_LOAD: 2089 return (ctl_init()); 2090 case MOD_UNLOAD: 2091 return (ctl_shutdown()); 2092 default: 2093 return (EOPNOTSUPP); 2094 } 2095 } 2096 2097 /* 2098 * XXX KDM should we do some access checks here? Bump a reference count to 2099 * prevent a CTL module from being unloaded while someone has it open? 2100 */ 2101 static int 2102 ctl_open(struct cdev *dev, int flags, int fmt, struct thread *td) 2103 { 2104 return (0); 2105 } 2106 2107 static int 2108 ctl_close(struct cdev *dev, int flags, int fmt, struct thread *td) 2109 { 2110 return (0); 2111 } 2112 2113 /* 2114 * Remove an initiator by port number and initiator ID. 2115 * Returns 0 for success, -1 for failure. 2116 */ 2117 int 2118 ctl_remove_initiator(struct ctl_port *port, int iid) 2119 { 2120 struct ctl_softc *softc = port->ctl_softc; 2121 int last; 2122 2123 mtx_assert(&softc->ctl_lock, MA_NOTOWNED); 2124 2125 if (iid > CTL_MAX_INIT_PER_PORT) { 2126 printf("%s: initiator ID %u > maximun %u!\n", 2127 __func__, iid, CTL_MAX_INIT_PER_PORT); 2128 return (-1); 2129 } 2130 2131 mtx_lock(&softc->ctl_lock); 2132 last = (--port->wwpn_iid[iid].in_use == 0); 2133 port->wwpn_iid[iid].last_use = time_uptime; 2134 mtx_unlock(&softc->ctl_lock); 2135 if (last) 2136 ctl_i_t_nexus_loss(softc, iid, CTL_UA_POWERON); 2137 ctl_isc_announce_iid(port, iid); 2138 2139 return (0); 2140 } 2141 2142 /* 2143 * Add an initiator to the initiator map. 2144 * Returns iid for success, < 0 for failure. 2145 */ 2146 int 2147 ctl_add_initiator(struct ctl_port *port, int iid, uint64_t wwpn, char *name) 2148 { 2149 struct ctl_softc *softc = port->ctl_softc; 2150 time_t best_time; 2151 int i, best; 2152 2153 mtx_assert(&softc->ctl_lock, MA_NOTOWNED); 2154 2155 if (iid >= CTL_MAX_INIT_PER_PORT) { 2156 printf("%s: WWPN %#jx initiator ID %u > maximum %u!\n", 2157 __func__, wwpn, iid, CTL_MAX_INIT_PER_PORT); 2158 free(name, M_CTL); 2159 return (-1); 2160 } 2161 2162 mtx_lock(&softc->ctl_lock); 2163 2164 if (iid < 0 && (wwpn != 0 || name != NULL)) { 2165 for (i = 0; i < CTL_MAX_INIT_PER_PORT; i++) { 2166 if (wwpn != 0 && wwpn == port->wwpn_iid[i].wwpn) { 2167 iid = i; 2168 break; 2169 } 2170 if (name != NULL && port->wwpn_iid[i].name != NULL && 2171 strcmp(name, port->wwpn_iid[i].name) == 0) { 2172 iid = i; 2173 break; 2174 } 2175 } 2176 } 2177 2178 if (iid < 0) { 2179 for (i = 0; i < CTL_MAX_INIT_PER_PORT; i++) { 2180 if (port->wwpn_iid[i].in_use == 0 && 2181 port->wwpn_iid[i].wwpn == 0 && 2182 port->wwpn_iid[i].name == NULL) { 2183 iid = i; 2184 break; 2185 } 2186 } 2187 } 2188 2189 if (iid < 0) { 2190 best = -1; 2191 best_time = INT32_MAX; 2192 for (i = 0; i < CTL_MAX_INIT_PER_PORT; i++) { 2193 if (port->wwpn_iid[i].in_use == 0) { 2194 if (port->wwpn_iid[i].last_use < best_time) { 2195 best = i; 2196 best_time = port->wwpn_iid[i].last_use; 2197 } 2198 } 2199 } 2200 iid = best; 2201 } 2202 2203 if (iid < 0) { 2204 mtx_unlock(&softc->ctl_lock); 2205 free(name, M_CTL); 2206 return (-2); 2207 } 2208 2209 if (port->wwpn_iid[iid].in_use > 0 && (wwpn != 0 || name != NULL)) { 2210 /* 2211 * This is not an error yet. 2212 */ 2213 if (wwpn != 0 && wwpn == port->wwpn_iid[iid].wwpn) { 2214 #if 0 2215 printf("%s: port %d iid %u WWPN %#jx arrived" 2216 " again\n", __func__, port->targ_port, 2217 iid, (uintmax_t)wwpn); 2218 #endif 2219 goto take; 2220 } 2221 if (name != NULL && port->wwpn_iid[iid].name != NULL && 2222 strcmp(name, port->wwpn_iid[iid].name) == 0) { 2223 #if 0 2224 printf("%s: port %d iid %u name '%s' arrived" 2225 " again\n", __func__, port->targ_port, 2226 iid, name); 2227 #endif 2228 goto take; 2229 } 2230 2231 /* 2232 * This is an error, but what do we do about it? The 2233 * driver is telling us we have a new WWPN for this 2234 * initiator ID, so we pretty much need to use it. 2235 */ 2236 printf("%s: port %d iid %u WWPN %#jx '%s' arrived," 2237 " but WWPN %#jx '%s' is still at that address\n", 2238 __func__, port->targ_port, iid, wwpn, name, 2239 (uintmax_t)port->wwpn_iid[iid].wwpn, 2240 port->wwpn_iid[iid].name); 2241 } 2242 take: 2243 free(port->wwpn_iid[iid].name, M_CTL); 2244 port->wwpn_iid[iid].name = name; 2245 port->wwpn_iid[iid].wwpn = wwpn; 2246 port->wwpn_iid[iid].in_use++; 2247 mtx_unlock(&softc->ctl_lock); 2248 ctl_isc_announce_iid(port, iid); 2249 2250 return (iid); 2251 } 2252 2253 static int 2254 ctl_create_iid(struct ctl_port *port, int iid, uint8_t *buf) 2255 { 2256 int len; 2257 2258 switch (port->port_type) { 2259 case CTL_PORT_FC: 2260 { 2261 struct scsi_transportid_fcp *id = 2262 (struct scsi_transportid_fcp *)buf; 2263 if (port->wwpn_iid[iid].wwpn == 0) 2264 return (0); 2265 memset(id, 0, sizeof(*id)); 2266 id->format_protocol = SCSI_PROTO_FC; 2267 scsi_u64to8b(port->wwpn_iid[iid].wwpn, id->n_port_name); 2268 return (sizeof(*id)); 2269 } 2270 case CTL_PORT_ISCSI: 2271 { 2272 struct scsi_transportid_iscsi_port *id = 2273 (struct scsi_transportid_iscsi_port *)buf; 2274 if (port->wwpn_iid[iid].name == NULL) 2275 return (0); 2276 memset(id, 0, 256); 2277 id->format_protocol = SCSI_TRN_ISCSI_FORMAT_PORT | 2278 SCSI_PROTO_ISCSI; 2279 len = strlcpy(id->iscsi_name, port->wwpn_iid[iid].name, 252) + 1; 2280 len = roundup2(min(len, 252), 4); 2281 scsi_ulto2b(len, id->additional_length); 2282 return (sizeof(*id) + len); 2283 } 2284 case CTL_PORT_SAS: 2285 { 2286 struct scsi_transportid_sas *id = 2287 (struct scsi_transportid_sas *)buf; 2288 if (port->wwpn_iid[iid].wwpn == 0) 2289 return (0); 2290 memset(id, 0, sizeof(*id)); 2291 id->format_protocol = SCSI_PROTO_SAS; 2292 scsi_u64to8b(port->wwpn_iid[iid].wwpn, id->sas_address); 2293 return (sizeof(*id)); 2294 } 2295 default: 2296 { 2297 struct scsi_transportid_spi *id = 2298 (struct scsi_transportid_spi *)buf; 2299 memset(id, 0, sizeof(*id)); 2300 id->format_protocol = SCSI_PROTO_SPI; 2301 scsi_ulto2b(iid, id->scsi_addr); 2302 scsi_ulto2b(port->targ_port, id->rel_trgt_port_id); 2303 return (sizeof(*id)); 2304 } 2305 } 2306 } 2307 2308 /* 2309 * Serialize a command that went down the "wrong" side, and so was sent to 2310 * this controller for execution. The logic is a little different than the 2311 * standard case in ctl_scsiio_precheck(). Errors in this case need to get 2312 * sent back to the other side, but in the success case, we execute the 2313 * command on this side (XFER mode) or tell the other side to execute it 2314 * (SER_ONLY mode). 2315 */ 2316 static void 2317 ctl_serialize_other_sc_cmd(struct ctl_scsiio *ctsio) 2318 { 2319 struct ctl_softc *softc = CTL_SOFTC(ctsio); 2320 struct ctl_port *port = CTL_PORT(ctsio); 2321 union ctl_ha_msg msg_info; 2322 struct ctl_lun *lun; 2323 const struct ctl_cmd_entry *entry; 2324 union ctl_io *bio; 2325 uint32_t targ_lun; 2326 2327 targ_lun = ctsio->io_hdr.nexus.targ_mapped_lun; 2328 2329 /* Make sure that we know about this port. */ 2330 if (port == NULL || (port->status & CTL_PORT_STATUS_ONLINE) == 0) { 2331 ctl_set_internal_failure(ctsio, /*sks_valid*/ 0, 2332 /*retry_count*/ 1); 2333 goto badjuju; 2334 } 2335 2336 /* Make sure that we know about this LUN. */ 2337 mtx_lock(&softc->ctl_lock); 2338 if (targ_lun >= ctl_max_luns || 2339 (lun = softc->ctl_luns[targ_lun]) == NULL) { 2340 mtx_unlock(&softc->ctl_lock); 2341 2342 /* 2343 * The other node would not send this request to us unless 2344 * received announce that we are primary node for this LUN. 2345 * If this LUN does not exist now, it is probably result of 2346 * a race, so respond to initiator in the most opaque way. 2347 */ 2348 ctl_set_busy(ctsio); 2349 goto badjuju; 2350 } 2351 mtx_lock(&lun->lun_lock); 2352 mtx_unlock(&softc->ctl_lock); 2353 2354 /* 2355 * If the LUN is invalid, pretend that it doesn't exist. 2356 * It will go away as soon as all pending I/Os completed. 2357 */ 2358 if (lun->flags & CTL_LUN_DISABLED) { 2359 mtx_unlock(&lun->lun_lock); 2360 ctl_set_busy(ctsio); 2361 goto badjuju; 2362 } 2363 2364 entry = ctl_get_cmd_entry(ctsio, NULL); 2365 ctsio->seridx = entry->seridx; 2366 if (ctl_scsiio_lun_check(lun, entry, ctsio) != 0) { 2367 mtx_unlock(&lun->lun_lock); 2368 goto badjuju; 2369 } 2370 2371 CTL_LUN(ctsio) = lun; 2372 CTL_BACKEND_LUN(ctsio) = lun->be_lun; 2373 2374 /* 2375 * Every I/O goes into the OOA queue for a 2376 * particular LUN, and stays there until completion. 2377 */ 2378 #ifdef CTL_TIME_IO 2379 if (LIST_EMPTY(&lun->ooa_queue)) 2380 lun->idle_time += getsbinuptime() - lun->last_busy; 2381 #endif 2382 LIST_INSERT_HEAD(&lun->ooa_queue, &ctsio->io_hdr, ooa_links); 2383 2384 bio = (union ctl_io *)LIST_NEXT(&ctsio->io_hdr, ooa_links); 2385 switch (ctl_check_ooa(lun, (union ctl_io *)ctsio, &bio)) { 2386 case CTL_ACTION_PASS: 2387 case CTL_ACTION_SKIP: 2388 if (softc->ha_mode == CTL_HA_MODE_XFER) { 2389 ctsio->io_hdr.flags |= CTL_FLAG_IS_WAS_ON_RTR; 2390 ctl_enqueue_rtr((union ctl_io *)ctsio); 2391 mtx_unlock(&lun->lun_lock); 2392 } else { 2393 ctsio->io_hdr.flags &= ~CTL_FLAG_IO_ACTIVE; 2394 mtx_unlock(&lun->lun_lock); 2395 2396 /* send msg back to other side */ 2397 msg_info.hdr.original_sc = ctsio->io_hdr.remote_io; 2398 msg_info.hdr.serializing_sc = (union ctl_io *)ctsio; 2399 msg_info.hdr.msg_type = CTL_MSG_R2R; 2400 ctl_ha_msg_send(CTL_HA_CHAN_CTL, &msg_info, 2401 sizeof(msg_info.hdr), M_WAITOK); 2402 } 2403 break; 2404 case CTL_ACTION_BLOCK: 2405 ctsio->io_hdr.blocker = bio; 2406 TAILQ_INSERT_TAIL(&bio->io_hdr.blocked_queue, &ctsio->io_hdr, 2407 blocked_links); 2408 mtx_unlock(&lun->lun_lock); 2409 break; 2410 case CTL_ACTION_OVERLAP: 2411 LIST_REMOVE(&ctsio->io_hdr, ooa_links); 2412 mtx_unlock(&lun->lun_lock); 2413 ctl_set_overlapped_cmd(ctsio); 2414 goto badjuju; 2415 case CTL_ACTION_OVERLAP_TAG: 2416 LIST_REMOVE(&ctsio->io_hdr, ooa_links); 2417 mtx_unlock(&lun->lun_lock); 2418 ctl_set_overlapped_tag(ctsio, ctsio->tag_num & 0xff); 2419 badjuju: 2420 ctl_copy_sense_data_back((union ctl_io *)ctsio, &msg_info); 2421 msg_info.hdr.original_sc = ctsio->io_hdr.remote_io; 2422 msg_info.hdr.serializing_sc = NULL; 2423 msg_info.hdr.msg_type = CTL_MSG_BAD_JUJU; 2424 ctl_ha_msg_send(CTL_HA_CHAN_CTL, &msg_info, 2425 sizeof(msg_info.scsi), M_WAITOK); 2426 ctl_free_io((union ctl_io *)ctsio); 2427 break; 2428 default: 2429 __assert_unreachable(); 2430 } 2431 } 2432 2433 /* 2434 * Returns 0 for success, errno for failure. 2435 */ 2436 static void 2437 ctl_ioctl_fill_ooa(struct ctl_lun *lun, uint32_t *cur_fill_num, 2438 struct ctl_ooa *ooa_hdr, struct ctl_ooa_entry *kern_entries) 2439 { 2440 struct ctl_io_hdr *ioh; 2441 2442 mtx_lock(&lun->lun_lock); 2443 ioh = LIST_FIRST(&lun->ooa_queue); 2444 if (ioh == NULL) { 2445 mtx_unlock(&lun->lun_lock); 2446 return; 2447 } 2448 while (LIST_NEXT(ioh, ooa_links) != NULL) 2449 ioh = LIST_NEXT(ioh, ooa_links); 2450 for ( ; ioh; ioh = LIST_PREV(ioh, &lun->ooa_queue, ctl_io_hdr, ooa_links)) { 2451 union ctl_io *io = (union ctl_io *)ioh; 2452 struct ctl_ooa_entry *entry; 2453 2454 CTL_IO_ASSERT(io, SCSI); 2455 2456 /* 2457 * If we've got more than we can fit, just count the 2458 * remaining entries. 2459 */ 2460 if (*cur_fill_num >= ooa_hdr->alloc_num) { 2461 (*cur_fill_num)++; 2462 continue; 2463 } 2464 2465 entry = &kern_entries[*cur_fill_num]; 2466 2467 entry->tag_num = io->scsiio.tag_num; 2468 entry->tag_type = io->scsiio.tag_type; 2469 entry->lun_num = lun->lun; 2470 #ifdef CTL_TIME_IO 2471 entry->start_bt = io->io_hdr.start_bt; 2472 #endif 2473 bcopy(io->scsiio.cdb, entry->cdb, io->scsiio.cdb_len); 2474 entry->cdb_len = io->scsiio.cdb_len; 2475 if (io->io_hdr.blocker != NULL) 2476 entry->cmd_flags |= CTL_OOACMD_FLAG_BLOCKED; 2477 2478 if (io->io_hdr.flags & CTL_FLAG_DMA_INPROG) 2479 entry->cmd_flags |= CTL_OOACMD_FLAG_DMA; 2480 2481 if (io->io_hdr.flags & CTL_FLAG_ABORT) 2482 entry->cmd_flags |= CTL_OOACMD_FLAG_ABORT; 2483 2484 if (io->io_hdr.flags & CTL_FLAG_IS_WAS_ON_RTR) 2485 entry->cmd_flags |= CTL_OOACMD_FLAG_RTR; 2486 2487 if (io->io_hdr.flags & CTL_FLAG_DMA_QUEUED) 2488 entry->cmd_flags |= CTL_OOACMD_FLAG_DMA_QUEUED; 2489 2490 if (io->io_hdr.flags & CTL_FLAG_STATUS_QUEUED) 2491 entry->cmd_flags |= CTL_OOACMD_FLAG_STATUS_QUEUED; 2492 2493 if (io->io_hdr.flags & CTL_FLAG_STATUS_SENT) 2494 entry->cmd_flags |= CTL_OOACMD_FLAG_STATUS_SENT; 2495 (*cur_fill_num)++; 2496 } 2497 mtx_unlock(&lun->lun_lock); 2498 } 2499 2500 /* 2501 * Escape characters that are illegal or not recommended in XML. 2502 */ 2503 int 2504 ctl_sbuf_printf_esc(struct sbuf *sb, char *str, int size) 2505 { 2506 char *end = str + size; 2507 int retval; 2508 2509 retval = 0; 2510 2511 for (; *str && str < end; str++) { 2512 switch (*str) { 2513 case '&': 2514 retval = sbuf_cat(sb, "&"); 2515 break; 2516 case '>': 2517 retval = sbuf_cat(sb, ">"); 2518 break; 2519 case '<': 2520 retval = sbuf_cat(sb, "<"); 2521 break; 2522 default: 2523 retval = sbuf_putc(sb, *str); 2524 break; 2525 } 2526 2527 if (retval != 0) 2528 break; 2529 } 2530 2531 return (retval); 2532 } 2533 2534 static void 2535 ctl_id_sbuf(struct ctl_devid *id, struct sbuf *sb) 2536 { 2537 struct scsi_vpd_id_descriptor *desc; 2538 int i; 2539 2540 if (id == NULL || id->len < 4) 2541 return; 2542 desc = (struct scsi_vpd_id_descriptor *)id->data; 2543 switch (desc->id_type & SVPD_ID_TYPE_MASK) { 2544 case SVPD_ID_TYPE_T10: 2545 sbuf_cat(sb, "t10."); 2546 break; 2547 case SVPD_ID_TYPE_EUI64: 2548 sbuf_cat(sb, "eui."); 2549 break; 2550 case SVPD_ID_TYPE_NAA: 2551 sbuf_cat(sb, "naa."); 2552 break; 2553 case SVPD_ID_TYPE_SCSI_NAME: 2554 break; 2555 } 2556 switch (desc->proto_codeset & SVPD_ID_CODESET_MASK) { 2557 case SVPD_ID_CODESET_BINARY: 2558 for (i = 0; i < desc->length; i++) 2559 sbuf_printf(sb, "%02x", desc->identifier[i]); 2560 break; 2561 case SVPD_ID_CODESET_ASCII: 2562 sbuf_printf(sb, "%.*s", (int)desc->length, 2563 (char *)desc->identifier); 2564 break; 2565 case SVPD_ID_CODESET_UTF8: 2566 sbuf_cat(sb, (char *)desc->identifier); 2567 break; 2568 } 2569 } 2570 2571 static int 2572 ctl_ioctl(struct cdev *dev, u_long cmd, caddr_t addr, int flag, 2573 struct thread *td) 2574 { 2575 struct ctl_softc *softc = dev->si_drv1; 2576 struct ctl_port *port; 2577 struct ctl_lun *lun; 2578 int retval; 2579 2580 retval = 0; 2581 2582 switch (cmd) { 2583 case CTL_IO: 2584 retval = ctl_ioctl_io(dev, cmd, addr, flag, td); 2585 break; 2586 case CTL_ENABLE_PORT: 2587 case CTL_DISABLE_PORT: 2588 case CTL_SET_PORT_WWNS: { 2589 struct ctl_port *port; 2590 struct ctl_port_entry *entry; 2591 2592 entry = (struct ctl_port_entry *)addr; 2593 2594 mtx_lock(&softc->ctl_lock); 2595 STAILQ_FOREACH(port, &softc->port_list, links) { 2596 int action, done; 2597 2598 if (port->targ_port < softc->port_min || 2599 port->targ_port >= softc->port_max) 2600 continue; 2601 2602 action = 0; 2603 done = 0; 2604 if ((entry->port_type == CTL_PORT_NONE) 2605 && (entry->targ_port == port->targ_port)) { 2606 /* 2607 * If the user only wants to enable or 2608 * disable or set WWNs on a specific port, 2609 * do the operation and we're done. 2610 */ 2611 action = 1; 2612 done = 1; 2613 } else if (entry->port_type & port->port_type) { 2614 /* 2615 * Compare the user's type mask with the 2616 * particular frontend type to see if we 2617 * have a match. 2618 */ 2619 action = 1; 2620 done = 0; 2621 2622 /* 2623 * Make sure the user isn't trying to set 2624 * WWNs on multiple ports at the same time. 2625 */ 2626 if (cmd == CTL_SET_PORT_WWNS) { 2627 printf("%s: Can't set WWNs on " 2628 "multiple ports\n", __func__); 2629 retval = EINVAL; 2630 break; 2631 } 2632 } 2633 if (action == 0) 2634 continue; 2635 2636 /* 2637 * XXX KDM we have to drop the lock here, because 2638 * the online/offline operations can potentially 2639 * block. We need to reference count the frontends 2640 * so they can't go away, 2641 */ 2642 if (cmd == CTL_ENABLE_PORT) { 2643 mtx_unlock(&softc->ctl_lock); 2644 ctl_port_online(port); 2645 mtx_lock(&softc->ctl_lock); 2646 } else if (cmd == CTL_DISABLE_PORT) { 2647 mtx_unlock(&softc->ctl_lock); 2648 ctl_port_offline(port); 2649 mtx_lock(&softc->ctl_lock); 2650 } else if (cmd == CTL_SET_PORT_WWNS) { 2651 ctl_port_set_wwns(port, 2652 (entry->flags & CTL_PORT_WWNN_VALID) ? 2653 1 : 0, entry->wwnn, 2654 (entry->flags & CTL_PORT_WWPN_VALID) ? 2655 1 : 0, entry->wwpn); 2656 } 2657 if (done != 0) 2658 break; 2659 } 2660 mtx_unlock(&softc->ctl_lock); 2661 break; 2662 } 2663 case CTL_GET_OOA: { 2664 struct ctl_ooa *ooa_hdr; 2665 struct ctl_ooa_entry *entries; 2666 uint32_t cur_fill_num; 2667 2668 ooa_hdr = (struct ctl_ooa *)addr; 2669 2670 if ((ooa_hdr->alloc_len == 0) 2671 || (ooa_hdr->alloc_num == 0)) { 2672 printf("%s: CTL_GET_OOA: alloc len %u and alloc num %u " 2673 "must be non-zero\n", __func__, 2674 ooa_hdr->alloc_len, ooa_hdr->alloc_num); 2675 retval = EINVAL; 2676 break; 2677 } 2678 2679 if (ooa_hdr->alloc_len != (ooa_hdr->alloc_num * 2680 sizeof(struct ctl_ooa_entry))) { 2681 printf("%s: CTL_GET_OOA: alloc len %u must be alloc " 2682 "num %d * sizeof(struct ctl_ooa_entry) %zd\n", 2683 __func__, ooa_hdr->alloc_len, 2684 ooa_hdr->alloc_num,sizeof(struct ctl_ooa_entry)); 2685 retval = EINVAL; 2686 break; 2687 } 2688 2689 entries = malloc(ooa_hdr->alloc_len, M_CTL, M_WAITOK | M_ZERO); 2690 2691 mtx_lock(&softc->ctl_lock); 2692 if ((ooa_hdr->flags & CTL_OOA_FLAG_ALL_LUNS) == 0 && 2693 (ooa_hdr->lun_num >= ctl_max_luns || 2694 softc->ctl_luns[ooa_hdr->lun_num] == NULL)) { 2695 mtx_unlock(&softc->ctl_lock); 2696 free(entries, M_CTL); 2697 printf("%s: CTL_GET_OOA: invalid LUN %ju\n", 2698 __func__, (uintmax_t)ooa_hdr->lun_num); 2699 retval = EINVAL; 2700 break; 2701 } 2702 2703 cur_fill_num = 0; 2704 2705 if (ooa_hdr->flags & CTL_OOA_FLAG_ALL_LUNS) { 2706 STAILQ_FOREACH(lun, &softc->lun_list, links) { 2707 ctl_ioctl_fill_ooa(lun, &cur_fill_num, 2708 ooa_hdr, entries); 2709 } 2710 } else { 2711 lun = softc->ctl_luns[ooa_hdr->lun_num]; 2712 ctl_ioctl_fill_ooa(lun, &cur_fill_num, ooa_hdr, 2713 entries); 2714 } 2715 mtx_unlock(&softc->ctl_lock); 2716 2717 ooa_hdr->fill_num = min(cur_fill_num, ooa_hdr->alloc_num); 2718 ooa_hdr->fill_len = ooa_hdr->fill_num * 2719 sizeof(struct ctl_ooa_entry); 2720 retval = copyout(entries, ooa_hdr->entries, ooa_hdr->fill_len); 2721 if (retval != 0) { 2722 printf("%s: error copying out %d bytes for OOA dump\n", 2723 __func__, ooa_hdr->fill_len); 2724 } 2725 2726 getbinuptime(&ooa_hdr->cur_bt); 2727 2728 if (cur_fill_num > ooa_hdr->alloc_num) { 2729 ooa_hdr->dropped_num = cur_fill_num -ooa_hdr->alloc_num; 2730 ooa_hdr->status = CTL_OOA_NEED_MORE_SPACE; 2731 } else { 2732 ooa_hdr->dropped_num = 0; 2733 ooa_hdr->status = CTL_OOA_OK; 2734 } 2735 2736 free(entries, M_CTL); 2737 break; 2738 } 2739 case CTL_DELAY_IO: { 2740 struct ctl_io_delay_info *delay_info; 2741 2742 delay_info = (struct ctl_io_delay_info *)addr; 2743 2744 #ifdef CTL_IO_DELAY 2745 mtx_lock(&softc->ctl_lock); 2746 if (delay_info->lun_id >= ctl_max_luns || 2747 (lun = softc->ctl_luns[delay_info->lun_id]) == NULL) { 2748 mtx_unlock(&softc->ctl_lock); 2749 delay_info->status = CTL_DELAY_STATUS_INVALID_LUN; 2750 break; 2751 } 2752 mtx_lock(&lun->lun_lock); 2753 mtx_unlock(&softc->ctl_lock); 2754 delay_info->status = CTL_DELAY_STATUS_OK; 2755 switch (delay_info->delay_type) { 2756 case CTL_DELAY_TYPE_CONT: 2757 case CTL_DELAY_TYPE_ONESHOT: 2758 break; 2759 default: 2760 delay_info->status = CTL_DELAY_STATUS_INVALID_TYPE; 2761 break; 2762 } 2763 switch (delay_info->delay_loc) { 2764 case CTL_DELAY_LOC_DATAMOVE: 2765 lun->delay_info.datamove_type = delay_info->delay_type; 2766 lun->delay_info.datamove_delay = delay_info->delay_secs; 2767 break; 2768 case CTL_DELAY_LOC_DONE: 2769 lun->delay_info.done_type = delay_info->delay_type; 2770 lun->delay_info.done_delay = delay_info->delay_secs; 2771 break; 2772 default: 2773 delay_info->status = CTL_DELAY_STATUS_INVALID_LOC; 2774 break; 2775 } 2776 mtx_unlock(&lun->lun_lock); 2777 #else 2778 delay_info->status = CTL_DELAY_STATUS_NOT_IMPLEMENTED; 2779 #endif /* CTL_IO_DELAY */ 2780 break; 2781 } 2782 case CTL_ERROR_INJECT: { 2783 struct ctl_error_desc *err_desc, *new_err_desc; 2784 2785 err_desc = (struct ctl_error_desc *)addr; 2786 2787 new_err_desc = malloc(sizeof(*new_err_desc), M_CTL, 2788 M_WAITOK | M_ZERO); 2789 bcopy(err_desc, new_err_desc, sizeof(*new_err_desc)); 2790 2791 mtx_lock(&softc->ctl_lock); 2792 if (err_desc->lun_id >= ctl_max_luns || 2793 (lun = softc->ctl_luns[err_desc->lun_id]) == NULL) { 2794 mtx_unlock(&softc->ctl_lock); 2795 free(new_err_desc, M_CTL); 2796 printf("%s: CTL_ERROR_INJECT: invalid LUN %ju\n", 2797 __func__, (uintmax_t)err_desc->lun_id); 2798 retval = EINVAL; 2799 break; 2800 } 2801 mtx_lock(&lun->lun_lock); 2802 mtx_unlock(&softc->ctl_lock); 2803 2804 /* 2805 * We could do some checking here to verify the validity 2806 * of the request, but given the complexity of error 2807 * injection requests, the checking logic would be fairly 2808 * complex. 2809 * 2810 * For now, if the request is invalid, it just won't get 2811 * executed and might get deleted. 2812 */ 2813 STAILQ_INSERT_TAIL(&lun->error_list, new_err_desc, links); 2814 2815 /* 2816 * XXX KDM check to make sure the serial number is unique, 2817 * in case we somehow manage to wrap. That shouldn't 2818 * happen for a very long time, but it's the right thing to 2819 * do. 2820 */ 2821 new_err_desc->serial = lun->error_serial; 2822 err_desc->serial = lun->error_serial; 2823 lun->error_serial++; 2824 2825 mtx_unlock(&lun->lun_lock); 2826 break; 2827 } 2828 case CTL_ERROR_INJECT_DELETE: { 2829 struct ctl_error_desc *delete_desc, *desc, *desc2; 2830 int delete_done; 2831 2832 delete_desc = (struct ctl_error_desc *)addr; 2833 delete_done = 0; 2834 2835 mtx_lock(&softc->ctl_lock); 2836 if (delete_desc->lun_id >= ctl_max_luns || 2837 (lun = softc->ctl_luns[delete_desc->lun_id]) == NULL) { 2838 mtx_unlock(&softc->ctl_lock); 2839 printf("%s: CTL_ERROR_INJECT_DELETE: invalid LUN %ju\n", 2840 __func__, (uintmax_t)delete_desc->lun_id); 2841 retval = EINVAL; 2842 break; 2843 } 2844 mtx_lock(&lun->lun_lock); 2845 mtx_unlock(&softc->ctl_lock); 2846 STAILQ_FOREACH_SAFE(desc, &lun->error_list, links, desc2) { 2847 if (desc->serial != delete_desc->serial) 2848 continue; 2849 2850 STAILQ_REMOVE(&lun->error_list, desc, ctl_error_desc, 2851 links); 2852 free(desc, M_CTL); 2853 delete_done = 1; 2854 } 2855 mtx_unlock(&lun->lun_lock); 2856 if (delete_done == 0) { 2857 printf("%s: CTL_ERROR_INJECT_DELETE: can't find " 2858 "error serial %ju on LUN %u\n", __func__, 2859 delete_desc->serial, delete_desc->lun_id); 2860 retval = EINVAL; 2861 break; 2862 } 2863 break; 2864 } 2865 case CTL_DUMP_STRUCTS: { 2866 int j, k; 2867 struct ctl_port *port; 2868 struct ctl_frontend *fe; 2869 2870 mtx_lock(&softc->ctl_lock); 2871 printf("CTL Persistent Reservation information start:\n"); 2872 STAILQ_FOREACH(lun, &softc->lun_list, links) { 2873 mtx_lock(&lun->lun_lock); 2874 if ((lun->flags & CTL_LUN_DISABLED) != 0) { 2875 mtx_unlock(&lun->lun_lock); 2876 continue; 2877 } 2878 2879 for (j = 0; j < ctl_max_ports; j++) { 2880 if (lun->pr_keys[j] == NULL) 2881 continue; 2882 for (k = 0; k < CTL_MAX_INIT_PER_PORT; k++){ 2883 if (lun->pr_keys[j][k] == 0) 2884 continue; 2885 printf(" LUN %ju port %d iid %d key " 2886 "%#jx\n", lun->lun, j, k, 2887 (uintmax_t)lun->pr_keys[j][k]); 2888 } 2889 } 2890 mtx_unlock(&lun->lun_lock); 2891 } 2892 printf("CTL Persistent Reservation information end\n"); 2893 printf("CTL Ports:\n"); 2894 STAILQ_FOREACH(port, &softc->port_list, links) { 2895 printf(" Port %d '%s' Frontend '%s' Type %u pp %d vp %d WWNN " 2896 "%#jx WWPN %#jx\n", port->targ_port, port->port_name, 2897 port->frontend->name, port->port_type, 2898 port->physical_port, port->virtual_port, 2899 (uintmax_t)port->wwnn, (uintmax_t)port->wwpn); 2900 for (j = 0; j < CTL_MAX_INIT_PER_PORT; j++) { 2901 if (port->wwpn_iid[j].in_use == 0 && 2902 port->wwpn_iid[j].wwpn == 0 && 2903 port->wwpn_iid[j].name == NULL) 2904 continue; 2905 2906 printf(" iid %u use %d WWPN %#jx '%s'\n", 2907 j, port->wwpn_iid[j].in_use, 2908 (uintmax_t)port->wwpn_iid[j].wwpn, 2909 port->wwpn_iid[j].name); 2910 } 2911 } 2912 printf("CTL Port information end\n"); 2913 mtx_unlock(&softc->ctl_lock); 2914 /* 2915 * XXX KDM calling this without a lock. We'd likely want 2916 * to drop the lock before calling the frontend's dump 2917 * routine anyway. 2918 */ 2919 printf("CTL Frontends:\n"); 2920 STAILQ_FOREACH(fe, &softc->fe_list, links) { 2921 printf(" Frontend '%s'\n", fe->name); 2922 if (fe->fe_dump != NULL) 2923 fe->fe_dump(); 2924 } 2925 printf("CTL Frontend information end\n"); 2926 break; 2927 } 2928 case CTL_LUN_REQ: { 2929 struct ctl_lun_req *lun_req; 2930 struct ctl_backend_driver *backend; 2931 void *packed; 2932 nvlist_t *tmp_args_nvl; 2933 size_t packed_len; 2934 2935 lun_req = (struct ctl_lun_req *)addr; 2936 tmp_args_nvl = lun_req->args_nvl; 2937 2938 backend = ctl_backend_find(lun_req->backend); 2939 if (backend == NULL) { 2940 lun_req->status = CTL_LUN_ERROR; 2941 snprintf(lun_req->error_str, 2942 sizeof(lun_req->error_str), 2943 "Backend \"%s\" not found.", 2944 lun_req->backend); 2945 break; 2946 } 2947 2948 if (lun_req->args != NULL) { 2949 if (lun_req->args_len > CTL_MAX_ARGS_LEN) { 2950 lun_req->status = CTL_LUN_ERROR; 2951 snprintf(lun_req->error_str, sizeof(lun_req->error_str), 2952 "Too big args."); 2953 break; 2954 } 2955 packed = malloc(lun_req->args_len, M_CTL, M_WAITOK); 2956 if (copyin(lun_req->args, packed, lun_req->args_len) != 0) { 2957 free(packed, M_CTL); 2958 lun_req->status = CTL_LUN_ERROR; 2959 snprintf(lun_req->error_str, sizeof(lun_req->error_str), 2960 "Cannot copyin args."); 2961 break; 2962 } 2963 lun_req->args_nvl = nvlist_unpack(packed, 2964 lun_req->args_len, 0); 2965 free(packed, M_CTL); 2966 2967 if (lun_req->args_nvl == NULL) { 2968 lun_req->status = CTL_LUN_ERROR; 2969 snprintf(lun_req->error_str, sizeof(lun_req->error_str), 2970 "Cannot unpack args nvlist."); 2971 break; 2972 } 2973 } else 2974 lun_req->args_nvl = nvlist_create(0); 2975 2976 lun_req->result_nvl = NULL; 2977 retval = backend->ioctl(dev, cmd, addr, flag, td); 2978 nvlist_destroy(lun_req->args_nvl); 2979 lun_req->args_nvl = tmp_args_nvl; 2980 2981 if (lun_req->result_nvl != NULL) { 2982 if (lun_req->result != NULL) { 2983 packed = nvlist_pack(lun_req->result_nvl, 2984 &packed_len); 2985 if (packed == NULL) { 2986 lun_req->status = CTL_LUN_ERROR; 2987 snprintf(lun_req->error_str, 2988 sizeof(lun_req->error_str), 2989 "Cannot pack result nvlist."); 2990 break; 2991 } 2992 2993 if (packed_len > lun_req->result_len) { 2994 lun_req->status = CTL_LUN_ERROR; 2995 snprintf(lun_req->error_str, 2996 sizeof(lun_req->error_str), 2997 "Result nvlist too large."); 2998 free(packed, M_NVLIST); 2999 break; 3000 } 3001 3002 if (copyout(packed, lun_req->result, packed_len)) { 3003 lun_req->status = CTL_LUN_ERROR; 3004 snprintf(lun_req->error_str, 3005 sizeof(lun_req->error_str), 3006 "Cannot copyout() the result."); 3007 free(packed, M_NVLIST); 3008 break; 3009 } 3010 3011 lun_req->result_len = packed_len; 3012 free(packed, M_NVLIST); 3013 } 3014 3015 nvlist_destroy(lun_req->result_nvl); 3016 } 3017 break; 3018 } 3019 case CTL_LUN_LIST: { 3020 struct sbuf *sb; 3021 struct ctl_lun_list *list; 3022 const char *name, *value; 3023 void *cookie; 3024 int type; 3025 3026 list = (struct ctl_lun_list *)addr; 3027 3028 /* 3029 * Allocate a fixed length sbuf here, based on the length 3030 * of the user's buffer. We could allocate an auto-extending 3031 * buffer, and then tell the user how much larger our 3032 * amount of data is than his buffer, but that presents 3033 * some problems: 3034 * 3035 * 1. The sbuf(9) routines use a blocking malloc, and so 3036 * we can't hold a lock while calling them with an 3037 * auto-extending buffer. 3038 * 3039 * 2. There is not currently a LUN reference counting 3040 * mechanism, outside of outstanding transactions on 3041 * the LUN's OOA queue. So a LUN could go away on us 3042 * while we're getting the LUN number, backend-specific 3043 * information, etc. Thus, given the way things 3044 * currently work, we need to hold the CTL lock while 3045 * grabbing LUN information. 3046 * 3047 * So, from the user's standpoint, the best thing to do is 3048 * allocate what he thinks is a reasonable buffer length, 3049 * and then if he gets a CTL_LUN_LIST_NEED_MORE_SPACE error, 3050 * double the buffer length and try again. (And repeat 3051 * that until he succeeds.) 3052 */ 3053 sb = sbuf_new(NULL, NULL, list->alloc_len, SBUF_FIXEDLEN); 3054 if (sb == NULL) { 3055 list->status = CTL_LUN_LIST_ERROR; 3056 snprintf(list->error_str, sizeof(list->error_str), 3057 "Unable to allocate %d bytes for LUN list", 3058 list->alloc_len); 3059 break; 3060 } 3061 3062 sbuf_cat(sb, "<ctllunlist>\n"); 3063 3064 mtx_lock(&softc->ctl_lock); 3065 STAILQ_FOREACH(lun, &softc->lun_list, links) { 3066 mtx_lock(&lun->lun_lock); 3067 retval = sbuf_printf(sb, "<lun id=\"%ju\">\n", 3068 (uintmax_t)lun->lun); 3069 3070 /* 3071 * Bail out as soon as we see that we've overfilled 3072 * the buffer. 3073 */ 3074 if (retval != 0) 3075 break; 3076 3077 retval = sbuf_printf(sb, "\t<backend_type>%s" 3078 "</backend_type>\n", 3079 (lun->backend == NULL) ? "none" : 3080 lun->backend->name); 3081 3082 if (retval != 0) 3083 break; 3084 3085 retval = sbuf_printf(sb, "\t<lun_type>%d</lun_type>\n", 3086 lun->be_lun->lun_type); 3087 3088 if (retval != 0) 3089 break; 3090 3091 if (lun->backend == NULL) { 3092 retval = sbuf_cat(sb, "</lun>\n"); 3093 if (retval != 0) 3094 break; 3095 continue; 3096 } 3097 3098 retval = sbuf_printf(sb, "\t<size>%ju</size>\n", 3099 (lun->be_lun->maxlba > 0) ? 3100 lun->be_lun->maxlba + 1 : 0); 3101 3102 if (retval != 0) 3103 break; 3104 3105 retval = sbuf_printf(sb, "\t<blocksize>%u</blocksize>\n", 3106 lun->be_lun->blocksize); 3107 3108 if (retval != 0) 3109 break; 3110 3111 retval = sbuf_cat(sb, "\t<serial_number>"); 3112 3113 if (retval != 0) 3114 break; 3115 3116 retval = ctl_sbuf_printf_esc(sb, 3117 lun->be_lun->serial_num, 3118 sizeof(lun->be_lun->serial_num)); 3119 3120 if (retval != 0) 3121 break; 3122 3123 retval = sbuf_cat(sb, "</serial_number>\n"); 3124 3125 if (retval != 0) 3126 break; 3127 3128 retval = sbuf_cat(sb, "\t<device_id>"); 3129 3130 if (retval != 0) 3131 break; 3132 3133 retval = ctl_sbuf_printf_esc(sb, 3134 lun->be_lun->device_id, 3135 sizeof(lun->be_lun->device_id)); 3136 3137 if (retval != 0) 3138 break; 3139 3140 retval = sbuf_cat(sb, "</device_id>\n"); 3141 3142 if (retval != 0) 3143 break; 3144 3145 if (lun->backend->lun_info != NULL) { 3146 retval = lun->backend->lun_info(lun->be_lun, sb); 3147 if (retval != 0) 3148 break; 3149 } 3150 3151 cookie = NULL; 3152 while ((name = nvlist_next(lun->be_lun->options, &type, 3153 &cookie)) != NULL) { 3154 sbuf_printf(sb, "\t<%s>", name); 3155 3156 if (type == NV_TYPE_STRING) { 3157 value = dnvlist_get_string( 3158 lun->be_lun->options, name, NULL); 3159 if (value != NULL) 3160 sbuf_cat(sb, value); 3161 } 3162 3163 sbuf_printf(sb, "</%s>\n", name); 3164 } 3165 3166 retval = sbuf_cat(sb, "</lun>\n"); 3167 3168 if (retval != 0) 3169 break; 3170 mtx_unlock(&lun->lun_lock); 3171 } 3172 if (lun != NULL) 3173 mtx_unlock(&lun->lun_lock); 3174 mtx_unlock(&softc->ctl_lock); 3175 3176 if ((retval != 0) 3177 || ((retval = sbuf_cat(sb, "</ctllunlist>\n")) != 0)) { 3178 retval = 0; 3179 sbuf_delete(sb); 3180 list->status = CTL_LUN_LIST_NEED_MORE_SPACE; 3181 snprintf(list->error_str, sizeof(list->error_str), 3182 "Out of space, %d bytes is too small", 3183 list->alloc_len); 3184 break; 3185 } 3186 3187 sbuf_finish(sb); 3188 3189 retval = copyout(sbuf_data(sb), list->lun_xml, 3190 sbuf_len(sb) + 1); 3191 3192 list->fill_len = sbuf_len(sb) + 1; 3193 list->status = CTL_LUN_LIST_OK; 3194 sbuf_delete(sb); 3195 break; 3196 } 3197 case CTL_ISCSI: { 3198 struct ctl_iscsi *ci; 3199 struct ctl_frontend *fe; 3200 3201 ci = (struct ctl_iscsi *)addr; 3202 3203 fe = ctl_frontend_find("iscsi"); 3204 if (fe == NULL) { 3205 ci->status = CTL_ISCSI_ERROR; 3206 snprintf(ci->error_str, sizeof(ci->error_str), 3207 "Frontend \"iscsi\" not found."); 3208 break; 3209 } 3210 3211 retval = fe->ioctl(dev, cmd, addr, flag, td); 3212 break; 3213 } 3214 case CTL_NVMF: { 3215 struct ctl_nvmf *cn; 3216 struct ctl_frontend *fe; 3217 3218 cn = (struct ctl_nvmf *)addr; 3219 3220 fe = ctl_frontend_find("nvmf"); 3221 if (fe == NULL) { 3222 cn->status = CTL_NVMF_ERROR; 3223 snprintf(cn->error_str, sizeof(cn->error_str), 3224 "Frontend \"nvmf\" not found."); 3225 break; 3226 } 3227 3228 retval = fe->ioctl(dev, cmd, addr, flag, td); 3229 break; 3230 } 3231 case CTL_PORT_REQ: { 3232 struct ctl_req *req; 3233 struct ctl_frontend *fe; 3234 void *packed; 3235 nvlist_t *tmp_args_nvl; 3236 size_t packed_len; 3237 3238 req = (struct ctl_req *)addr; 3239 tmp_args_nvl = req->args_nvl; 3240 3241 fe = ctl_frontend_find(req->driver); 3242 if (fe == NULL) { 3243 req->status = CTL_LUN_ERROR; 3244 snprintf(req->error_str, sizeof(req->error_str), 3245 "Frontend \"%s\" not found.", req->driver); 3246 break; 3247 } 3248 3249 if (req->args != NULL) { 3250 if (req->args_len > CTL_MAX_ARGS_LEN) { 3251 req->status = CTL_LUN_ERROR; 3252 snprintf(req->error_str, sizeof(req->error_str), 3253 "Too big args."); 3254 break; 3255 } 3256 packed = malloc(req->args_len, M_CTL, M_WAITOK); 3257 if (copyin(req->args, packed, req->args_len) != 0) { 3258 free(packed, M_CTL); 3259 req->status = CTL_LUN_ERROR; 3260 snprintf(req->error_str, sizeof(req->error_str), 3261 "Cannot copyin args."); 3262 break; 3263 } 3264 req->args_nvl = nvlist_unpack(packed, 3265 req->args_len, 0); 3266 free(packed, M_CTL); 3267 3268 if (req->args_nvl == NULL) { 3269 req->status = CTL_LUN_ERROR; 3270 snprintf(req->error_str, sizeof(req->error_str), 3271 "Cannot unpack args nvlist."); 3272 break; 3273 } 3274 } else 3275 req->args_nvl = nvlist_create(0); 3276 3277 req->result_nvl = NULL; 3278 if (fe->ioctl) 3279 retval = fe->ioctl(dev, cmd, addr, flag, td); 3280 else 3281 retval = ENODEV; 3282 3283 nvlist_destroy(req->args_nvl); 3284 req->args_nvl = tmp_args_nvl; 3285 3286 if (req->result_nvl != NULL) { 3287 if (req->result != NULL) { 3288 packed = nvlist_pack(req->result_nvl, 3289 &packed_len); 3290 if (packed == NULL) { 3291 req->status = CTL_LUN_ERROR; 3292 snprintf(req->error_str, 3293 sizeof(req->error_str), 3294 "Cannot pack result nvlist."); 3295 break; 3296 } 3297 3298 if (packed_len > req->result_len) { 3299 req->status = CTL_LUN_ERROR; 3300 snprintf(req->error_str, 3301 sizeof(req->error_str), 3302 "Result nvlist too large."); 3303 free(packed, M_NVLIST); 3304 break; 3305 } 3306 3307 if (copyout(packed, req->result, packed_len)) { 3308 req->status = CTL_LUN_ERROR; 3309 snprintf(req->error_str, 3310 sizeof(req->error_str), 3311 "Cannot copyout() the result."); 3312 free(packed, M_NVLIST); 3313 break; 3314 } 3315 3316 req->result_len = packed_len; 3317 free(packed, M_NVLIST); 3318 } 3319 3320 nvlist_destroy(req->result_nvl); 3321 } 3322 break; 3323 } 3324 case CTL_PORT_LIST: { 3325 struct sbuf *sb; 3326 struct ctl_port *port; 3327 struct ctl_lun_list *list; 3328 const char *name, *value; 3329 void *cookie; 3330 int j, type; 3331 uint32_t plun; 3332 3333 list = (struct ctl_lun_list *)addr; 3334 3335 sb = sbuf_new(NULL, NULL, list->alloc_len, SBUF_FIXEDLEN); 3336 if (sb == NULL) { 3337 list->status = CTL_LUN_LIST_ERROR; 3338 snprintf(list->error_str, sizeof(list->error_str), 3339 "Unable to allocate %d bytes for LUN list", 3340 list->alloc_len); 3341 break; 3342 } 3343 3344 sbuf_cat(sb, "<ctlportlist>\n"); 3345 3346 mtx_lock(&softc->ctl_lock); 3347 STAILQ_FOREACH(port, &softc->port_list, links) { 3348 retval = sbuf_printf(sb, "<targ_port id=\"%ju\">\n", 3349 (uintmax_t)port->targ_port); 3350 3351 /* 3352 * Bail out as soon as we see that we've overfilled 3353 * the buffer. 3354 */ 3355 if (retval != 0) 3356 break; 3357 3358 retval = sbuf_printf(sb, "\t<frontend_type>%s" 3359 "</frontend_type>\n", port->frontend->name); 3360 if (retval != 0) 3361 break; 3362 3363 retval = sbuf_printf(sb, "\t<port_type>%d</port_type>\n", 3364 port->port_type); 3365 if (retval != 0) 3366 break; 3367 3368 retval = sbuf_printf(sb, "\t<online>%s</online>\n", 3369 (port->status & CTL_PORT_STATUS_ONLINE) ? "YES" : "NO"); 3370 if (retval != 0) 3371 break; 3372 3373 retval = sbuf_printf(sb, "\t<port_name>%s</port_name>\n", 3374 port->port_name); 3375 if (retval != 0) 3376 break; 3377 3378 retval = sbuf_printf(sb, "\t<physical_port>%d</physical_port>\n", 3379 port->physical_port); 3380 if (retval != 0) 3381 break; 3382 3383 retval = sbuf_printf(sb, "\t<virtual_port>%d</virtual_port>\n", 3384 port->virtual_port); 3385 if (retval != 0) 3386 break; 3387 3388 if (port->target_devid != NULL) { 3389 sbuf_cat(sb, "\t<target>"); 3390 ctl_id_sbuf(port->target_devid, sb); 3391 sbuf_cat(sb, "</target>\n"); 3392 } 3393 3394 if (port->port_devid != NULL) { 3395 sbuf_cat(sb, "\t<port>"); 3396 ctl_id_sbuf(port->port_devid, sb); 3397 sbuf_cat(sb, "</port>\n"); 3398 } 3399 3400 if (port->port_info != NULL) { 3401 retval = port->port_info(port->onoff_arg, sb); 3402 if (retval != 0) 3403 break; 3404 } 3405 3406 cookie = NULL; 3407 while ((name = nvlist_next(port->options, &type, 3408 &cookie)) != NULL) { 3409 sbuf_printf(sb, "\t<%s>", name); 3410 3411 if (type == NV_TYPE_STRING) { 3412 value = dnvlist_get_string(port->options, 3413 name, NULL); 3414 if (value != NULL) 3415 sbuf_printf(sb, "%s", value); 3416 } 3417 3418 sbuf_printf(sb, "</%s>\n", name); 3419 } 3420 3421 if (port->lun_map != NULL) { 3422 sbuf_cat(sb, "\t<lun_map>on</lun_map>\n"); 3423 for (j = 0; j < port->lun_map_size; j++) { 3424 plun = ctl_lun_map_from_port(port, j); 3425 if (plun == UINT32_MAX) 3426 continue; 3427 sbuf_printf(sb, 3428 "\t<lun id=\"%u\">%u</lun>\n", 3429 j, plun); 3430 } 3431 } 3432 3433 for (j = 0; j < CTL_MAX_INIT_PER_PORT; j++) { 3434 if (port->wwpn_iid[j].in_use == 0 || 3435 (port->wwpn_iid[j].wwpn == 0 && 3436 port->wwpn_iid[j].name == NULL)) 3437 continue; 3438 3439 if (port->wwpn_iid[j].name != NULL) 3440 retval = sbuf_printf(sb, 3441 "\t<initiator id=\"%u\">%s</initiator>\n", 3442 j, port->wwpn_iid[j].name); 3443 else 3444 retval = sbuf_printf(sb, 3445 "\t<initiator id=\"%u\">naa.%08jx</initiator>\n", 3446 j, port->wwpn_iid[j].wwpn); 3447 if (retval != 0) 3448 break; 3449 } 3450 if (retval != 0) 3451 break; 3452 3453 retval = sbuf_cat(sb, "</targ_port>\n"); 3454 if (retval != 0) 3455 break; 3456 } 3457 mtx_unlock(&softc->ctl_lock); 3458 3459 if ((retval != 0) 3460 || ((retval = sbuf_cat(sb, "</ctlportlist>\n")) != 0)) { 3461 retval = 0; 3462 sbuf_delete(sb); 3463 list->status = CTL_LUN_LIST_NEED_MORE_SPACE; 3464 snprintf(list->error_str, sizeof(list->error_str), 3465 "Out of space, %d bytes is too small", 3466 list->alloc_len); 3467 break; 3468 } 3469 3470 sbuf_finish(sb); 3471 3472 retval = copyout(sbuf_data(sb), list->lun_xml, 3473 sbuf_len(sb) + 1); 3474 3475 list->fill_len = sbuf_len(sb) + 1; 3476 list->status = CTL_LUN_LIST_OK; 3477 sbuf_delete(sb); 3478 break; 3479 } 3480 case CTL_LUN_MAP: { 3481 struct ctl_lun_map *lm = (struct ctl_lun_map *)addr; 3482 struct ctl_port *port; 3483 3484 mtx_lock(&softc->ctl_lock); 3485 if (lm->port < softc->port_min || 3486 lm->port >= softc->port_max || 3487 (port = softc->ctl_ports[lm->port]) == NULL) { 3488 mtx_unlock(&softc->ctl_lock); 3489 return (ENXIO); 3490 } 3491 if (port->status & CTL_PORT_STATUS_ONLINE) { 3492 STAILQ_FOREACH(lun, &softc->lun_list, links) { 3493 if (ctl_lun_map_to_port(port, lun->lun) == 3494 UINT32_MAX) 3495 continue; 3496 mtx_lock(&lun->lun_lock); 3497 ctl_est_ua_port(lun, lm->port, -1, 3498 CTL_UA_LUN_CHANGE); 3499 mtx_unlock(&lun->lun_lock); 3500 } 3501 } 3502 mtx_unlock(&softc->ctl_lock); // XXX: port_enable sleeps 3503 if (lm->plun != UINT32_MAX) { 3504 if (lm->lun == UINT32_MAX) 3505 retval = ctl_lun_map_unset(port, lm->plun); 3506 else if (lm->lun < ctl_max_luns && 3507 softc->ctl_luns[lm->lun] != NULL) 3508 retval = ctl_lun_map_set(port, lm->plun, lm->lun); 3509 else 3510 return (ENXIO); 3511 } else { 3512 if (lm->lun == UINT32_MAX) 3513 retval = ctl_lun_map_deinit(port); 3514 else 3515 retval = ctl_lun_map_init(port); 3516 } 3517 if (port->status & CTL_PORT_STATUS_ONLINE) 3518 ctl_isc_announce_port(port); 3519 break; 3520 } 3521 case CTL_GET_LUN_STATS: { 3522 struct ctl_get_io_stats *stats = (struct ctl_get_io_stats *)addr; 3523 int i; 3524 3525 /* 3526 * XXX KDM no locking here. If the LUN list changes, 3527 * things can blow up. 3528 */ 3529 i = 0; 3530 stats->status = CTL_SS_OK; 3531 stats->fill_len = 0; 3532 STAILQ_FOREACH(lun, &softc->lun_list, links) { 3533 if (lun->lun < stats->first_item) 3534 continue; 3535 if (stats->fill_len + sizeof(lun->stats) > 3536 stats->alloc_len) { 3537 stats->status = CTL_SS_NEED_MORE_SPACE; 3538 break; 3539 } 3540 retval = copyout(&lun->stats, &stats->stats[i++], 3541 sizeof(lun->stats)); 3542 if (retval != 0) 3543 break; 3544 stats->fill_len += sizeof(lun->stats); 3545 } 3546 stats->num_items = softc->num_luns; 3547 stats->flags = CTL_STATS_FLAG_NONE; 3548 #ifdef CTL_TIME_IO 3549 stats->flags |= CTL_STATS_FLAG_TIME_VALID; 3550 #endif 3551 getnanouptime(&stats->timestamp); 3552 break; 3553 } 3554 case CTL_GET_PORT_STATS: { 3555 struct ctl_get_io_stats *stats = (struct ctl_get_io_stats *)addr; 3556 int i; 3557 3558 /* 3559 * XXX KDM no locking here. If the LUN list changes, 3560 * things can blow up. 3561 */ 3562 i = 0; 3563 stats->status = CTL_SS_OK; 3564 stats->fill_len = 0; 3565 STAILQ_FOREACH(port, &softc->port_list, links) { 3566 if (port->targ_port < stats->first_item) 3567 continue; 3568 if (stats->fill_len + sizeof(port->stats) > 3569 stats->alloc_len) { 3570 stats->status = CTL_SS_NEED_MORE_SPACE; 3571 break; 3572 } 3573 retval = copyout(&port->stats, &stats->stats[i++], 3574 sizeof(port->stats)); 3575 if (retval != 0) 3576 break; 3577 stats->fill_len += sizeof(port->stats); 3578 } 3579 stats->num_items = softc->num_ports; 3580 stats->flags = CTL_STATS_FLAG_NONE; 3581 #ifdef CTL_TIME_IO 3582 stats->flags |= CTL_STATS_FLAG_TIME_VALID; 3583 #endif 3584 getnanouptime(&stats->timestamp); 3585 break; 3586 } 3587 default: { 3588 /* XXX KDM should we fix this? */ 3589 #if 0 3590 struct ctl_backend_driver *backend; 3591 unsigned int type; 3592 int found; 3593 3594 found = 0; 3595 3596 /* 3597 * We encode the backend type as the ioctl type for backend 3598 * ioctls. So parse it out here, and then search for a 3599 * backend of this type. 3600 */ 3601 type = _IOC_TYPE(cmd); 3602 3603 STAILQ_FOREACH(backend, &softc->be_list, links) { 3604 if (backend->type == type) { 3605 found = 1; 3606 break; 3607 } 3608 } 3609 if (found == 0) { 3610 printf("ctl: unknown ioctl command %#lx or backend " 3611 "%d\n", cmd, type); 3612 retval = EINVAL; 3613 break; 3614 } 3615 retval = backend->ioctl(dev, cmd, addr, flag, td); 3616 #endif 3617 retval = ENOTTY; 3618 break; 3619 } 3620 } 3621 return (retval); 3622 } 3623 3624 uint32_t 3625 ctl_get_initindex(struct ctl_nexus *nexus) 3626 { 3627 return (nexus->initid + (nexus->targ_port * CTL_MAX_INIT_PER_PORT)); 3628 } 3629 3630 int 3631 ctl_lun_map_init(struct ctl_port *port) 3632 { 3633 struct ctl_softc *softc = port->ctl_softc; 3634 struct ctl_lun *lun; 3635 int size = ctl_lun_map_size; 3636 uint32_t i; 3637 3638 if (port->lun_map == NULL || port->lun_map_size < size) { 3639 port->lun_map_size = 0; 3640 free(port->lun_map, M_CTL); 3641 port->lun_map = malloc(size * sizeof(uint32_t), 3642 M_CTL, M_NOWAIT); 3643 } 3644 if (port->lun_map == NULL) 3645 return (ENOMEM); 3646 for (i = 0; i < size; i++) 3647 port->lun_map[i] = UINT32_MAX; 3648 port->lun_map_size = size; 3649 if (port->status & CTL_PORT_STATUS_ONLINE) { 3650 if (port->lun_disable != NULL) { 3651 STAILQ_FOREACH(lun, &softc->lun_list, links) 3652 port->lun_disable(port->targ_lun_arg, lun->lun); 3653 } 3654 ctl_isc_announce_port(port); 3655 } 3656 return (0); 3657 } 3658 3659 int 3660 ctl_lun_map_deinit(struct ctl_port *port) 3661 { 3662 struct ctl_softc *softc = port->ctl_softc; 3663 struct ctl_lun *lun; 3664 3665 if (port->lun_map == NULL) 3666 return (0); 3667 port->lun_map_size = 0; 3668 free(port->lun_map, M_CTL); 3669 port->lun_map = NULL; 3670 if (port->status & CTL_PORT_STATUS_ONLINE) { 3671 if (port->lun_enable != NULL) { 3672 STAILQ_FOREACH(lun, &softc->lun_list, links) 3673 port->lun_enable(port->targ_lun_arg, lun->lun); 3674 } 3675 ctl_isc_announce_port(port); 3676 } 3677 return (0); 3678 } 3679 3680 int 3681 ctl_lun_map_set(struct ctl_port *port, uint32_t plun, uint32_t glun) 3682 { 3683 int status; 3684 uint32_t old; 3685 3686 if (port->lun_map == NULL) { 3687 status = ctl_lun_map_init(port); 3688 if (status != 0) 3689 return (status); 3690 } 3691 if (plun >= port->lun_map_size) 3692 return (EINVAL); 3693 old = port->lun_map[plun]; 3694 port->lun_map[plun] = glun; 3695 if ((port->status & CTL_PORT_STATUS_ONLINE) && old == UINT32_MAX) { 3696 if (port->lun_enable != NULL) 3697 port->lun_enable(port->targ_lun_arg, plun); 3698 ctl_isc_announce_port(port); 3699 } 3700 return (0); 3701 } 3702 3703 int 3704 ctl_lun_map_unset(struct ctl_port *port, uint32_t plun) 3705 { 3706 uint32_t old; 3707 3708 if (port->lun_map == NULL || plun >= port->lun_map_size) 3709 return (0); 3710 old = port->lun_map[plun]; 3711 port->lun_map[plun] = UINT32_MAX; 3712 if ((port->status & CTL_PORT_STATUS_ONLINE) && old != UINT32_MAX) { 3713 if (port->lun_disable != NULL) 3714 port->lun_disable(port->targ_lun_arg, plun); 3715 ctl_isc_announce_port(port); 3716 } 3717 return (0); 3718 } 3719 3720 uint32_t 3721 ctl_lun_map_from_port(struct ctl_port *port, uint32_t lun_id) 3722 { 3723 3724 if (port == NULL) 3725 return (UINT32_MAX); 3726 if (port->lun_map == NULL) 3727 return (lun_id); 3728 if (lun_id > port->lun_map_size) 3729 return (UINT32_MAX); 3730 return (port->lun_map[lun_id]); 3731 } 3732 3733 uint32_t 3734 ctl_lun_map_to_port(struct ctl_port *port, uint32_t lun_id) 3735 { 3736 uint32_t i; 3737 3738 if (port == NULL) 3739 return (UINT32_MAX); 3740 if (port->lun_map == NULL) 3741 return (lun_id); 3742 for (i = 0; i < port->lun_map_size; i++) { 3743 if (port->lun_map[i] == lun_id) 3744 return (i); 3745 } 3746 return (UINT32_MAX); 3747 } 3748 3749 uint32_t 3750 ctl_decode_lun(uint64_t encoded) 3751 { 3752 uint8_t lun[8]; 3753 uint32_t result = 0xffffffff; 3754 3755 be64enc(lun, encoded); 3756 switch (lun[0] & RPL_LUNDATA_ATYP_MASK) { 3757 case RPL_LUNDATA_ATYP_PERIPH: 3758 if ((lun[0] & 0x3f) == 0 && lun[2] == 0 && lun[3] == 0 && 3759 lun[4] == 0 && lun[5] == 0 && lun[6] == 0 && lun[7] == 0) 3760 result = lun[1]; 3761 break; 3762 case RPL_LUNDATA_ATYP_FLAT: 3763 if (lun[2] == 0 && lun[3] == 0 && lun[4] == 0 && lun[5] == 0 && 3764 lun[6] == 0 && lun[7] == 0) 3765 result = ((lun[0] & 0x3f) << 8) + lun[1]; 3766 break; 3767 case RPL_LUNDATA_ATYP_EXTLUN: 3768 switch (lun[0] & RPL_LUNDATA_EXT_EAM_MASK) { 3769 case 0x02: 3770 switch (lun[0] & RPL_LUNDATA_EXT_LEN_MASK) { 3771 case 0x00: 3772 result = lun[1]; 3773 break; 3774 case 0x10: 3775 result = (lun[1] << 16) + (lun[2] << 8) + 3776 lun[3]; 3777 break; 3778 case 0x20: 3779 if (lun[1] == 0 && lun[6] == 0 && lun[7] == 0) 3780 result = (lun[2] << 24) + 3781 (lun[3] << 16) + (lun[4] << 8) + 3782 lun[5]; 3783 break; 3784 } 3785 break; 3786 case RPL_LUNDATA_EXT_EAM_NOT_SPEC: 3787 result = 0xffffffff; 3788 break; 3789 } 3790 break; 3791 } 3792 return (result); 3793 } 3794 3795 uint64_t 3796 ctl_encode_lun(uint32_t decoded) 3797 { 3798 uint64_t l = decoded; 3799 3800 if (l <= 0xff) 3801 return (((uint64_t)RPL_LUNDATA_ATYP_PERIPH << 56) | (l << 48)); 3802 if (l <= 0x3fff) 3803 return (((uint64_t)RPL_LUNDATA_ATYP_FLAT << 56) | (l << 48)); 3804 if (l <= 0xffffff) 3805 return (((uint64_t)(RPL_LUNDATA_ATYP_EXTLUN | 0x12) << 56) | 3806 (l << 32)); 3807 return ((((uint64_t)RPL_LUNDATA_ATYP_EXTLUN | 0x22) << 56) | (l << 16)); 3808 } 3809 3810 int 3811 ctl_ffz(uint32_t *mask, uint32_t first, uint32_t last) 3812 { 3813 int i; 3814 3815 for (i = first; i < last; i++) { 3816 if ((mask[i / 32] & (1 << (i % 32))) == 0) 3817 return (i); 3818 } 3819 return (-1); 3820 } 3821 3822 int 3823 ctl_set_mask(uint32_t *mask, uint32_t bit) 3824 { 3825 uint32_t chunk, piece; 3826 3827 chunk = bit >> 5; 3828 piece = bit % (sizeof(uint32_t) * 8); 3829 3830 if ((mask[chunk] & (1 << piece)) != 0) 3831 return (-1); 3832 else 3833 mask[chunk] |= (1 << piece); 3834 3835 return (0); 3836 } 3837 3838 int 3839 ctl_clear_mask(uint32_t *mask, uint32_t bit) 3840 { 3841 uint32_t chunk, piece; 3842 3843 chunk = bit >> 5; 3844 piece = bit % (sizeof(uint32_t) * 8); 3845 3846 if ((mask[chunk] & (1 << piece)) == 0) 3847 return (-1); 3848 else 3849 mask[chunk] &= ~(1 << piece); 3850 3851 return (0); 3852 } 3853 3854 int 3855 ctl_is_set(uint32_t *mask, uint32_t bit) 3856 { 3857 uint32_t chunk, piece; 3858 3859 chunk = bit >> 5; 3860 piece = bit % (sizeof(uint32_t) * 8); 3861 3862 if ((mask[chunk] & (1 << piece)) == 0) 3863 return (0); 3864 else 3865 return (1); 3866 } 3867 3868 static uint64_t 3869 ctl_get_prkey(struct ctl_lun *lun, uint32_t residx) 3870 { 3871 uint64_t *t; 3872 3873 t = lun->pr_keys[residx/CTL_MAX_INIT_PER_PORT]; 3874 if (t == NULL) 3875 return (0); 3876 return (t[residx % CTL_MAX_INIT_PER_PORT]); 3877 } 3878 3879 static void 3880 ctl_clr_prkey(struct ctl_lun *lun, uint32_t residx) 3881 { 3882 uint64_t *t; 3883 3884 t = lun->pr_keys[residx/CTL_MAX_INIT_PER_PORT]; 3885 if (t == NULL) 3886 return; 3887 t[residx % CTL_MAX_INIT_PER_PORT] = 0; 3888 } 3889 3890 static void 3891 ctl_alloc_prkey(struct ctl_lun *lun, uint32_t residx) 3892 { 3893 uint64_t *p; 3894 u_int i; 3895 3896 i = residx/CTL_MAX_INIT_PER_PORT; 3897 if (lun->pr_keys[i] != NULL) 3898 return; 3899 mtx_unlock(&lun->lun_lock); 3900 p = malloc(sizeof(uint64_t) * CTL_MAX_INIT_PER_PORT, M_CTL, 3901 M_WAITOK | M_ZERO); 3902 mtx_lock(&lun->lun_lock); 3903 if (lun->pr_keys[i] == NULL) 3904 lun->pr_keys[i] = p; 3905 else 3906 free(p, M_CTL); 3907 } 3908 3909 static void 3910 ctl_set_prkey(struct ctl_lun *lun, uint32_t residx, uint64_t key) 3911 { 3912 uint64_t *t; 3913 3914 t = lun->pr_keys[residx/CTL_MAX_INIT_PER_PORT]; 3915 KASSERT(t != NULL, ("prkey %d is not allocated", residx)); 3916 t[residx % CTL_MAX_INIT_PER_PORT] = key; 3917 } 3918 3919 /* 3920 * ctl_softc, pool_name, total_ctl_io are passed in. 3921 * npool is passed out. 3922 */ 3923 int 3924 ctl_pool_create(struct ctl_softc *ctl_softc, const char *pool_name, 3925 uint32_t total_ctl_io, void **npool) 3926 { 3927 struct ctl_io_pool *pool; 3928 3929 pool = (struct ctl_io_pool *)malloc(sizeof(*pool), M_CTL, 3930 M_NOWAIT | M_ZERO); 3931 if (pool == NULL) 3932 return (ENOMEM); 3933 3934 snprintf(pool->name, sizeof(pool->name), "CTL IO %s", pool_name); 3935 pool->ctl_softc = ctl_softc; 3936 #ifdef IO_POOLS 3937 pool->zone = uma_zsecond_create(pool->name, NULL, 3938 NULL, NULL, NULL, ctl_softc->io_zone); 3939 /* uma_prealloc(pool->zone, total_ctl_io); */ 3940 #else 3941 pool->zone = ctl_softc->io_zone; 3942 #endif 3943 3944 *npool = pool; 3945 return (0); 3946 } 3947 3948 void 3949 ctl_pool_free(struct ctl_io_pool *pool) 3950 { 3951 3952 if (pool == NULL) 3953 return; 3954 3955 #ifdef IO_POOLS 3956 uma_zdestroy(pool->zone); 3957 #endif 3958 free(pool, M_CTL); 3959 } 3960 3961 union ctl_io * 3962 ctl_alloc_io(void *pool_ref) 3963 { 3964 struct ctl_io_pool *pool = (struct ctl_io_pool *)pool_ref; 3965 union ctl_io *io; 3966 3967 io = uma_zalloc(pool->zone, M_WAITOK); 3968 if (io != NULL) { 3969 io->io_hdr.pool = pool_ref; 3970 CTL_SOFTC(io) = pool->ctl_softc; 3971 TAILQ_INIT(&io->io_hdr.blocked_queue); 3972 } 3973 return (io); 3974 } 3975 3976 union ctl_io * 3977 ctl_alloc_io_nowait(void *pool_ref) 3978 { 3979 struct ctl_io_pool *pool = (struct ctl_io_pool *)pool_ref; 3980 union ctl_io *io; 3981 3982 io = uma_zalloc(pool->zone, M_NOWAIT); 3983 if (io != NULL) { 3984 io->io_hdr.pool = pool_ref; 3985 CTL_SOFTC(io) = pool->ctl_softc; 3986 TAILQ_INIT(&io->io_hdr.blocked_queue); 3987 } 3988 return (io); 3989 } 3990 3991 void 3992 ctl_free_io(union ctl_io *io) 3993 { 3994 struct ctl_io_pool *pool; 3995 3996 if (io == NULL) 3997 return; 3998 3999 pool = (struct ctl_io_pool *)io->io_hdr.pool; 4000 uma_zfree(pool->zone, io); 4001 } 4002 4003 void 4004 ctl_zero_io(union ctl_io *io) 4005 { 4006 struct ctl_io_pool *pool; 4007 4008 if (io == NULL) 4009 return; 4010 4011 /* 4012 * May need to preserve linked list pointers at some point too. 4013 */ 4014 pool = io->io_hdr.pool; 4015 memset(io, 0, sizeof(*io)); 4016 io->io_hdr.pool = pool; 4017 CTL_SOFTC(io) = pool->ctl_softc; 4018 TAILQ_INIT(&io->io_hdr.blocked_queue); 4019 } 4020 4021 int 4022 ctl_expand_number(const char *buf, uint64_t *num) 4023 { 4024 char *endptr; 4025 uint64_t number; 4026 unsigned shift; 4027 4028 number = strtoq(buf, &endptr, 0); 4029 4030 switch (tolower((unsigned char)*endptr)) { 4031 case 'e': 4032 shift = 60; 4033 break; 4034 case 'p': 4035 shift = 50; 4036 break; 4037 case 't': 4038 shift = 40; 4039 break; 4040 case 'g': 4041 shift = 30; 4042 break; 4043 case 'm': 4044 shift = 20; 4045 break; 4046 case 'k': 4047 shift = 10; 4048 break; 4049 case 'b': 4050 case '\0': /* No unit. */ 4051 *num = number; 4052 return (0); 4053 default: 4054 /* Unrecognized unit. */ 4055 return (-1); 4056 } 4057 4058 if ((number << shift) >> shift != number) { 4059 /* Overflow */ 4060 return (-1); 4061 } 4062 *num = number << shift; 4063 return (0); 4064 } 4065 4066 /* 4067 * This routine could be used in the future to load default and/or saved 4068 * mode page parameters for a particuar lun. 4069 */ 4070 static int 4071 ctl_init_page_index(struct ctl_lun *lun) 4072 { 4073 int i, page_code; 4074 struct ctl_page_index *page_index; 4075 const char *value; 4076 uint64_t ival; 4077 4078 memcpy(&lun->mode_pages.index, page_index_template, 4079 sizeof(page_index_template)); 4080 4081 for (i = 0; i < CTL_NUM_MODE_PAGES; i++) { 4082 page_index = &lun->mode_pages.index[i]; 4083 if (lun->be_lun->lun_type == T_DIRECT && 4084 (page_index->page_flags & CTL_PAGE_FLAG_DIRECT) == 0) 4085 continue; 4086 if (lun->be_lun->lun_type == T_PROCESSOR && 4087 (page_index->page_flags & CTL_PAGE_FLAG_PROC) == 0) 4088 continue; 4089 if (lun->be_lun->lun_type == T_CDROM && 4090 (page_index->page_flags & CTL_PAGE_FLAG_CDROM) == 0) 4091 continue; 4092 4093 page_code = page_index->page_code & SMPH_PC_MASK; 4094 switch (page_code) { 4095 case SMS_RW_ERROR_RECOVERY_PAGE: { 4096 KASSERT(page_index->subpage == SMS_SUBPAGE_PAGE_0, 4097 ("subpage %#x for page %#x is incorrect!", 4098 page_index->subpage, page_code)); 4099 memcpy(&lun->mode_pages.rw_er_page[CTL_PAGE_CURRENT], 4100 &rw_er_page_default, 4101 sizeof(rw_er_page_default)); 4102 memcpy(&lun->mode_pages.rw_er_page[CTL_PAGE_CHANGEABLE], 4103 &rw_er_page_changeable, 4104 sizeof(rw_er_page_changeable)); 4105 memcpy(&lun->mode_pages.rw_er_page[CTL_PAGE_DEFAULT], 4106 &rw_er_page_default, 4107 sizeof(rw_er_page_default)); 4108 memcpy(&lun->mode_pages.rw_er_page[CTL_PAGE_SAVED], 4109 &rw_er_page_default, 4110 sizeof(rw_er_page_default)); 4111 page_index->page_data = 4112 (uint8_t *)lun->mode_pages.rw_er_page; 4113 break; 4114 } 4115 case SMS_VERIFY_ERROR_RECOVERY_PAGE: { 4116 KASSERT(page_index->subpage == SMS_SUBPAGE_PAGE_0, 4117 ("subpage %#x for page %#x is incorrect!", 4118 page_index->subpage, page_code)); 4119 memcpy(&lun->mode_pages.verify_er_page[CTL_PAGE_CURRENT], 4120 &verify_er_page_default, 4121 sizeof(verify_er_page_default)); 4122 memcpy(&lun->mode_pages.verify_er_page[CTL_PAGE_CHANGEABLE], 4123 &verify_er_page_changeable, 4124 sizeof(verify_er_page_changeable)); 4125 memcpy(&lun->mode_pages.verify_er_page[CTL_PAGE_DEFAULT], 4126 &verify_er_page_default, 4127 sizeof(verify_er_page_default)); 4128 memcpy(&lun->mode_pages.verify_er_page[CTL_PAGE_SAVED], 4129 &verify_er_page_default, 4130 sizeof(verify_er_page_default)); 4131 page_index->page_data = 4132 (uint8_t *)lun->mode_pages.verify_er_page; 4133 break; 4134 } 4135 case SMS_CACHING_PAGE: { 4136 struct scsi_caching_page *caching_page; 4137 4138 KASSERT(page_index->subpage == SMS_SUBPAGE_PAGE_0, 4139 ("subpage %#x for page %#x is incorrect!", 4140 page_index->subpage, page_code)); 4141 memcpy(&lun->mode_pages.caching_page[CTL_PAGE_DEFAULT], 4142 &caching_page_default, 4143 sizeof(caching_page_default)); 4144 memcpy(&lun->mode_pages.caching_page[ 4145 CTL_PAGE_CHANGEABLE], &caching_page_changeable, 4146 sizeof(caching_page_changeable)); 4147 memcpy(&lun->mode_pages.caching_page[CTL_PAGE_SAVED], 4148 &caching_page_default, 4149 sizeof(caching_page_default)); 4150 caching_page = &lun->mode_pages.caching_page[ 4151 CTL_PAGE_SAVED]; 4152 value = dnvlist_get_string(lun->be_lun->options, 4153 "writecache", NULL); 4154 if (value != NULL && strcmp(value, "off") == 0) 4155 caching_page->flags1 &= ~SCP_WCE; 4156 value = dnvlist_get_string(lun->be_lun->options, 4157 "readcache", NULL); 4158 if (value != NULL && strcmp(value, "off") == 0) 4159 caching_page->flags1 |= SCP_RCD; 4160 memcpy(&lun->mode_pages.caching_page[CTL_PAGE_CURRENT], 4161 &lun->mode_pages.caching_page[CTL_PAGE_SAVED], 4162 sizeof(caching_page_default)); 4163 page_index->page_data = 4164 (uint8_t *)lun->mode_pages.caching_page; 4165 break; 4166 } 4167 case SMS_CONTROL_MODE_PAGE: { 4168 switch (page_index->subpage) { 4169 case SMS_SUBPAGE_PAGE_0: { 4170 struct scsi_control_page *control_page; 4171 4172 memcpy(&lun->mode_pages.control_page[ 4173 CTL_PAGE_DEFAULT], 4174 &control_page_default, 4175 sizeof(control_page_default)); 4176 memcpy(&lun->mode_pages.control_page[ 4177 CTL_PAGE_CHANGEABLE], 4178 &control_page_changeable, 4179 sizeof(control_page_changeable)); 4180 memcpy(&lun->mode_pages.control_page[ 4181 CTL_PAGE_SAVED], 4182 &control_page_default, 4183 sizeof(control_page_default)); 4184 control_page = &lun->mode_pages.control_page[ 4185 CTL_PAGE_SAVED]; 4186 value = dnvlist_get_string(lun->be_lun->options, 4187 "reordering", NULL); 4188 if (value != NULL && 4189 strcmp(value, "unrestricted") == 0) { 4190 control_page->queue_flags &= 4191 ~SCP_QUEUE_ALG_MASK; 4192 control_page->queue_flags |= 4193 SCP_QUEUE_ALG_UNRESTRICTED; 4194 } 4195 memcpy(&lun->mode_pages.control_page[ 4196 CTL_PAGE_CURRENT], 4197 &lun->mode_pages.control_page[ 4198 CTL_PAGE_SAVED], 4199 sizeof(control_page_default)); 4200 page_index->page_data = 4201 (uint8_t *)lun->mode_pages.control_page; 4202 break; 4203 } 4204 case 0x01: 4205 memcpy(&lun->mode_pages.control_ext_page[ 4206 CTL_PAGE_DEFAULT], 4207 &control_ext_page_default, 4208 sizeof(control_ext_page_default)); 4209 memcpy(&lun->mode_pages.control_ext_page[ 4210 CTL_PAGE_CHANGEABLE], 4211 &control_ext_page_changeable, 4212 sizeof(control_ext_page_changeable)); 4213 memcpy(&lun->mode_pages.control_ext_page[ 4214 CTL_PAGE_SAVED], 4215 &control_ext_page_default, 4216 sizeof(control_ext_page_default)); 4217 memcpy(&lun->mode_pages.control_ext_page[ 4218 CTL_PAGE_CURRENT], 4219 &lun->mode_pages.control_ext_page[ 4220 CTL_PAGE_SAVED], 4221 sizeof(control_ext_page_default)); 4222 page_index->page_data = 4223 (uint8_t *)lun->mode_pages.control_ext_page; 4224 break; 4225 default: 4226 panic("subpage %#x for page %#x is incorrect!", 4227 page_index->subpage, page_code); 4228 } 4229 break; 4230 } 4231 case SMS_INFO_EXCEPTIONS_PAGE: { 4232 switch (page_index->subpage) { 4233 case SMS_SUBPAGE_PAGE_0: 4234 memcpy(&lun->mode_pages.ie_page[CTL_PAGE_CURRENT], 4235 &ie_page_default, 4236 sizeof(ie_page_default)); 4237 memcpy(&lun->mode_pages.ie_page[ 4238 CTL_PAGE_CHANGEABLE], &ie_page_changeable, 4239 sizeof(ie_page_changeable)); 4240 memcpy(&lun->mode_pages.ie_page[CTL_PAGE_DEFAULT], 4241 &ie_page_default, 4242 sizeof(ie_page_default)); 4243 memcpy(&lun->mode_pages.ie_page[CTL_PAGE_SAVED], 4244 &ie_page_default, 4245 sizeof(ie_page_default)); 4246 page_index->page_data = 4247 (uint8_t *)lun->mode_pages.ie_page; 4248 break; 4249 case 0x02: { 4250 struct ctl_logical_block_provisioning_page *page; 4251 4252 memcpy(&lun->mode_pages.lbp_page[CTL_PAGE_DEFAULT], 4253 &lbp_page_default, 4254 sizeof(lbp_page_default)); 4255 memcpy(&lun->mode_pages.lbp_page[ 4256 CTL_PAGE_CHANGEABLE], &lbp_page_changeable, 4257 sizeof(lbp_page_changeable)); 4258 memcpy(&lun->mode_pages.lbp_page[CTL_PAGE_SAVED], 4259 &lbp_page_default, 4260 sizeof(lbp_page_default)); 4261 page = &lun->mode_pages.lbp_page[CTL_PAGE_SAVED]; 4262 value = dnvlist_get_string(lun->be_lun->options, 4263 "avail-threshold", NULL); 4264 if (value != NULL && 4265 ctl_expand_number(value, &ival) == 0) { 4266 page->descr[0].flags |= SLBPPD_ENABLED | 4267 SLBPPD_ARMING_DEC; 4268 if (lun->be_lun->blocksize) 4269 ival /= lun->be_lun->blocksize; 4270 else 4271 ival /= 512; 4272 scsi_ulto4b(ival >> CTL_LBP_EXPONENT, 4273 page->descr[0].count); 4274 } 4275 value = dnvlist_get_string(lun->be_lun->options, 4276 "used-threshold", NULL); 4277 if (value != NULL && 4278 ctl_expand_number(value, &ival) == 0) { 4279 page->descr[1].flags |= SLBPPD_ENABLED | 4280 SLBPPD_ARMING_INC; 4281 if (lun->be_lun->blocksize) 4282 ival /= lun->be_lun->blocksize; 4283 else 4284 ival /= 512; 4285 scsi_ulto4b(ival >> CTL_LBP_EXPONENT, 4286 page->descr[1].count); 4287 } 4288 value = dnvlist_get_string(lun->be_lun->options, 4289 "pool-avail-threshold", NULL); 4290 if (value != NULL && 4291 ctl_expand_number(value, &ival) == 0) { 4292 page->descr[2].flags |= SLBPPD_ENABLED | 4293 SLBPPD_ARMING_DEC; 4294 if (lun->be_lun->blocksize) 4295 ival /= lun->be_lun->blocksize; 4296 else 4297 ival /= 512; 4298 scsi_ulto4b(ival >> CTL_LBP_EXPONENT, 4299 page->descr[2].count); 4300 } 4301 value = dnvlist_get_string(lun->be_lun->options, 4302 "pool-used-threshold", NULL); 4303 if (value != NULL && 4304 ctl_expand_number(value, &ival) == 0) { 4305 page->descr[3].flags |= SLBPPD_ENABLED | 4306 SLBPPD_ARMING_INC; 4307 if (lun->be_lun->blocksize) 4308 ival /= lun->be_lun->blocksize; 4309 else 4310 ival /= 512; 4311 scsi_ulto4b(ival >> CTL_LBP_EXPONENT, 4312 page->descr[3].count); 4313 } 4314 memcpy(&lun->mode_pages.lbp_page[CTL_PAGE_CURRENT], 4315 &lun->mode_pages.lbp_page[CTL_PAGE_SAVED], 4316 sizeof(lbp_page_default)); 4317 page_index->page_data = 4318 (uint8_t *)lun->mode_pages.lbp_page; 4319 break; 4320 } 4321 default: 4322 panic("subpage %#x for page %#x is incorrect!", 4323 page_index->subpage, page_code); 4324 } 4325 break; 4326 } 4327 case SMS_CDDVD_CAPS_PAGE:{ 4328 KASSERT(page_index->subpage == SMS_SUBPAGE_PAGE_0, 4329 ("subpage %#x for page %#x is incorrect!", 4330 page_index->subpage, page_code)); 4331 memcpy(&lun->mode_pages.cddvd_page[CTL_PAGE_DEFAULT], 4332 &cddvd_page_default, 4333 sizeof(cddvd_page_default)); 4334 memcpy(&lun->mode_pages.cddvd_page[ 4335 CTL_PAGE_CHANGEABLE], &cddvd_page_changeable, 4336 sizeof(cddvd_page_changeable)); 4337 memcpy(&lun->mode_pages.cddvd_page[CTL_PAGE_SAVED], 4338 &cddvd_page_default, 4339 sizeof(cddvd_page_default)); 4340 memcpy(&lun->mode_pages.cddvd_page[CTL_PAGE_CURRENT], 4341 &lun->mode_pages.cddvd_page[CTL_PAGE_SAVED], 4342 sizeof(cddvd_page_default)); 4343 page_index->page_data = 4344 (uint8_t *)lun->mode_pages.cddvd_page; 4345 break; 4346 } 4347 default: 4348 panic("invalid page code value %#x", page_code); 4349 } 4350 } 4351 4352 return (CTL_RETVAL_COMPLETE); 4353 } 4354 4355 static int 4356 ctl_init_log_page_index(struct ctl_lun *lun) 4357 { 4358 struct ctl_page_index *page_index; 4359 int i, j, k, prev; 4360 4361 memcpy(&lun->log_pages.index, log_page_index_template, 4362 sizeof(log_page_index_template)); 4363 4364 prev = -1; 4365 for (i = 0, j = 0, k = 0; i < CTL_NUM_LOG_PAGES; i++) { 4366 page_index = &lun->log_pages.index[i]; 4367 if (lun->be_lun->lun_type == T_DIRECT && 4368 (page_index->page_flags & CTL_PAGE_FLAG_DIRECT) == 0) 4369 continue; 4370 if (lun->be_lun->lun_type == T_PROCESSOR && 4371 (page_index->page_flags & CTL_PAGE_FLAG_PROC) == 0) 4372 continue; 4373 if (lun->be_lun->lun_type == T_CDROM && 4374 (page_index->page_flags & CTL_PAGE_FLAG_CDROM) == 0) 4375 continue; 4376 4377 if (page_index->page_code == SLS_LOGICAL_BLOCK_PROVISIONING && 4378 lun->backend->lun_attr == NULL) 4379 continue; 4380 4381 if (page_index->page_code != prev) { 4382 lun->log_pages.pages_page[j] = page_index->page_code; 4383 prev = page_index->page_code; 4384 j++; 4385 } 4386 lun->log_pages.subpages_page[k*2] = page_index->page_code; 4387 lun->log_pages.subpages_page[k*2+1] = page_index->subpage; 4388 k++; 4389 } 4390 lun->log_pages.index[0].page_data = &lun->log_pages.pages_page[0]; 4391 lun->log_pages.index[0].page_len = j; 4392 lun->log_pages.index[1].page_data = &lun->log_pages.subpages_page[0]; 4393 lun->log_pages.index[1].page_len = k * 2; 4394 lun->log_pages.index[2].page_data = (uint8_t *)&lun->log_pages.temp_page; 4395 lun->log_pages.index[2].page_len = sizeof(lun->log_pages.temp_page); 4396 lun->log_pages.index[3].page_data = &lun->log_pages.lbp_page[0]; 4397 lun->log_pages.index[3].page_len = 12*CTL_NUM_LBP_PARAMS; 4398 lun->log_pages.index[4].page_data = (uint8_t *)&lun->log_pages.stat_page; 4399 lun->log_pages.index[4].page_len = sizeof(lun->log_pages.stat_page); 4400 lun->log_pages.index[5].page_data = (uint8_t *)&lun->log_pages.ie_page; 4401 lun->log_pages.index[5].page_len = sizeof(lun->log_pages.ie_page); 4402 4403 return (CTL_RETVAL_COMPLETE); 4404 } 4405 4406 static int 4407 hex2bin(const char *str, uint8_t *buf, int buf_size) 4408 { 4409 int i; 4410 u_char c; 4411 4412 memset(buf, 0, buf_size); 4413 while (isspace(str[0])) 4414 str++; 4415 if (str[0] == '0' && (str[1] == 'x' || str[1] == 'X')) 4416 str += 2; 4417 buf_size *= 2; 4418 for (i = 0; str[i] != 0 && i < buf_size; i++) { 4419 while (str[i] == '-') /* Skip dashes in UUIDs. */ 4420 str++; 4421 c = str[i]; 4422 if (isdigit(c)) 4423 c -= '0'; 4424 else if (isalpha(c)) 4425 c -= isupper(c) ? 'A' - 10 : 'a' - 10; 4426 else 4427 break; 4428 if (c >= 16) 4429 break; 4430 if ((i & 1) == 0) 4431 buf[i / 2] |= (c << 4); 4432 else 4433 buf[i / 2] |= c; 4434 } 4435 return ((i + 1) / 2); 4436 } 4437 4438 /* 4439 * Add LUN. 4440 * 4441 * Returns 0 for success, non-zero (errno) for failure. 4442 */ 4443 int 4444 ctl_add_lun(struct ctl_be_lun *be_lun) 4445 { 4446 struct ctl_softc *ctl_softc = control_softc; 4447 struct ctl_lun *nlun, *lun; 4448 struct scsi_vpd_id_descriptor *desc; 4449 struct scsi_vpd_id_t10 *t10id; 4450 const char *eui, *naa, *scsiname, *uuid, *vendor, *value; 4451 int lun_number; 4452 int devidlen, idlen1, idlen2 = 0, len; 4453 4454 /* 4455 * We support only Direct Access, CD-ROM or Processor LUN types. 4456 */ 4457 switch (be_lun->lun_type) { 4458 case T_DIRECT: 4459 case T_PROCESSOR: 4460 case T_CDROM: 4461 break; 4462 case T_SEQUENTIAL: 4463 case T_CHANGER: 4464 default: 4465 return (EINVAL); 4466 } 4467 lun = malloc(sizeof(*lun), M_CTL, M_WAITOK | M_ZERO); 4468 4469 lun->pending_sense = malloc(sizeof(struct scsi_sense_data *) * 4470 ctl_max_ports, M_DEVBUF, M_WAITOK | M_ZERO); 4471 lun->pending_ua = malloc(sizeof(ctl_ua_type *) * ctl_max_ports, 4472 M_DEVBUF, M_WAITOK | M_ZERO); 4473 lun->pr_keys = malloc(sizeof(uint64_t *) * ctl_max_ports, 4474 M_DEVBUF, M_WAITOK | M_ZERO); 4475 4476 /* Generate LUN ID. */ 4477 devidlen = max(CTL_DEVID_MIN_LEN, 4478 strnlen(be_lun->device_id, CTL_DEVID_LEN)); 4479 idlen1 = sizeof(*t10id) + devidlen; 4480 len = sizeof(struct scsi_vpd_id_descriptor) + idlen1; 4481 scsiname = dnvlist_get_string(be_lun->options, "scsiname", NULL); 4482 if (scsiname != NULL) { 4483 idlen2 = roundup2(strlen(scsiname) + 1, 4); 4484 len += sizeof(struct scsi_vpd_id_descriptor) + idlen2; 4485 } 4486 eui = dnvlist_get_string(be_lun->options, "eui", NULL); 4487 if (eui != NULL) { 4488 len += sizeof(struct scsi_vpd_id_descriptor) + 16; 4489 } 4490 naa = dnvlist_get_string(be_lun->options, "naa", NULL); 4491 if (naa != NULL) { 4492 len += sizeof(struct scsi_vpd_id_descriptor) + 16; 4493 } 4494 uuid = dnvlist_get_string(be_lun->options, "uuid", NULL); 4495 if (uuid != NULL) { 4496 len += sizeof(struct scsi_vpd_id_descriptor) + 18; 4497 } 4498 lun->lun_devid = malloc(sizeof(struct ctl_devid) + len, 4499 M_CTL, M_WAITOK | M_ZERO); 4500 desc = (struct scsi_vpd_id_descriptor *)lun->lun_devid->data; 4501 desc->proto_codeset = SVPD_ID_CODESET_ASCII; 4502 desc->id_type = SVPD_ID_PIV | SVPD_ID_ASSOC_LUN | SVPD_ID_TYPE_T10; 4503 desc->length = idlen1; 4504 t10id = (struct scsi_vpd_id_t10 *)&desc->identifier[0]; 4505 memset(t10id->vendor, ' ', sizeof(t10id->vendor)); 4506 if ((vendor = dnvlist_get_string(be_lun->options, "vendor", NULL)) == NULL) { 4507 strncpy((char *)t10id->vendor, CTL_VENDOR, sizeof(t10id->vendor)); 4508 } else { 4509 strncpy(t10id->vendor, vendor, 4510 min(sizeof(t10id->vendor), strlen(vendor))); 4511 } 4512 strncpy((char *)t10id->vendor_spec_id, 4513 (char *)be_lun->device_id, devidlen); 4514 if (scsiname != NULL) { 4515 desc = (struct scsi_vpd_id_descriptor *)(&desc->identifier[0] + 4516 desc->length); 4517 desc->proto_codeset = SVPD_ID_CODESET_UTF8; 4518 desc->id_type = SVPD_ID_PIV | SVPD_ID_ASSOC_LUN | 4519 SVPD_ID_TYPE_SCSI_NAME; 4520 desc->length = idlen2; 4521 strlcpy(desc->identifier, scsiname, idlen2); 4522 } 4523 if (eui != NULL) { 4524 desc = (struct scsi_vpd_id_descriptor *)(&desc->identifier[0] + 4525 desc->length); 4526 desc->proto_codeset = SVPD_ID_CODESET_BINARY; 4527 desc->id_type = SVPD_ID_PIV | SVPD_ID_ASSOC_LUN | 4528 SVPD_ID_TYPE_EUI64; 4529 desc->length = hex2bin(eui, desc->identifier, 16); 4530 desc->length = desc->length > 12 ? 16 : 4531 (desc->length > 8 ? 12 : 8); 4532 len -= 16 - desc->length; 4533 } 4534 if (naa != NULL) { 4535 desc = (struct scsi_vpd_id_descriptor *)(&desc->identifier[0] + 4536 desc->length); 4537 desc->proto_codeset = SVPD_ID_CODESET_BINARY; 4538 desc->id_type = SVPD_ID_PIV | SVPD_ID_ASSOC_LUN | 4539 SVPD_ID_TYPE_NAA; 4540 desc->length = hex2bin(naa, desc->identifier, 16); 4541 desc->length = desc->length > 8 ? 16 : 8; 4542 len -= 16 - desc->length; 4543 } 4544 if (uuid != NULL) { 4545 desc = (struct scsi_vpd_id_descriptor *)(&desc->identifier[0] + 4546 desc->length); 4547 desc->proto_codeset = SVPD_ID_CODESET_BINARY; 4548 desc->id_type = SVPD_ID_PIV | SVPD_ID_ASSOC_LUN | 4549 SVPD_ID_TYPE_UUID; 4550 desc->identifier[0] = 0x10; 4551 hex2bin(uuid, &desc->identifier[2], 16); 4552 desc->length = 18; 4553 } 4554 lun->lun_devid->len = len; 4555 4556 mtx_lock(&ctl_softc->ctl_lock); 4557 /* 4558 * See if the caller requested a particular LUN number. If so, see 4559 * if it is available. Otherwise, allocate the first available LUN. 4560 */ 4561 if (be_lun->flags & CTL_LUN_FLAG_ID_REQ) { 4562 if ((be_lun->req_lun_id > (ctl_max_luns - 1)) 4563 || (ctl_is_set(ctl_softc->ctl_lun_mask, be_lun->req_lun_id))) { 4564 mtx_unlock(&ctl_softc->ctl_lock); 4565 if (be_lun->req_lun_id > (ctl_max_luns - 1)) { 4566 printf("ctl: requested LUN ID %d is higher " 4567 "than ctl_max_luns - 1 (%d)\n", 4568 be_lun->req_lun_id, ctl_max_luns - 1); 4569 } else { 4570 /* 4571 * XXX KDM return an error, or just assign 4572 * another LUN ID in this case?? 4573 */ 4574 printf("ctl: requested LUN ID %d is already " 4575 "in use\n", be_lun->req_lun_id); 4576 } 4577 fail: 4578 free(lun->lun_devid, M_CTL); 4579 free(lun, M_CTL); 4580 return (ENOSPC); 4581 } 4582 lun_number = be_lun->req_lun_id; 4583 } else { 4584 lun_number = ctl_ffz(ctl_softc->ctl_lun_mask, 0, ctl_max_luns); 4585 if (lun_number == -1) { 4586 mtx_unlock(&ctl_softc->ctl_lock); 4587 printf("ctl: can't allocate LUN, out of LUNs\n"); 4588 goto fail; 4589 } 4590 } 4591 ctl_set_mask(ctl_softc->ctl_lun_mask, lun_number); 4592 mtx_unlock(&ctl_softc->ctl_lock); 4593 4594 mtx_init(&lun->lun_lock, "CTL LUN", NULL, MTX_DEF); 4595 lun->lun = lun_number; 4596 lun->be_lun = be_lun; 4597 /* 4598 * The processor LUN is always enabled. Disk LUNs come on line 4599 * disabled, and must be enabled by the backend. 4600 */ 4601 lun->flags |= CTL_LUN_DISABLED; 4602 lun->backend = be_lun->be; 4603 be_lun->ctl_lun = lun; 4604 be_lun->lun_id = lun_number; 4605 if (be_lun->flags & CTL_LUN_FLAG_EJECTED) 4606 lun->flags |= CTL_LUN_EJECTED; 4607 if (be_lun->flags & CTL_LUN_FLAG_NO_MEDIA) 4608 lun->flags |= CTL_LUN_NO_MEDIA; 4609 if (be_lun->flags & CTL_LUN_FLAG_STOPPED) 4610 lun->flags |= CTL_LUN_STOPPED; 4611 4612 if (be_lun->flags & CTL_LUN_FLAG_PRIMARY) 4613 lun->flags |= CTL_LUN_PRIMARY_SC; 4614 4615 value = dnvlist_get_string(be_lun->options, "removable", NULL); 4616 if (value != NULL) { 4617 if (strcmp(value, "on") == 0) 4618 lun->flags |= CTL_LUN_REMOVABLE; 4619 } else if (be_lun->lun_type == T_CDROM) 4620 lun->flags |= CTL_LUN_REMOVABLE; 4621 4622 lun->ctl_softc = ctl_softc; 4623 #ifdef CTL_TIME_IO 4624 lun->last_busy = getsbinuptime(); 4625 #endif 4626 LIST_INIT(&lun->ooa_queue); 4627 STAILQ_INIT(&lun->error_list); 4628 lun->ie_reported = 1; 4629 callout_init_mtx(&lun->ie_callout, &lun->lun_lock, 0); 4630 ctl_tpc_lun_init(lun); 4631 if (lun->flags & CTL_LUN_REMOVABLE) { 4632 lun->prevent = malloc((CTL_MAX_INITIATORS + 31) / 32 * 4, 4633 M_CTL, M_WAITOK); 4634 } 4635 4636 /* 4637 * Initialize the mode and log page index. 4638 */ 4639 ctl_init_page_index(lun); 4640 ctl_init_log_page_index(lun); 4641 4642 /* Setup statistics gathering */ 4643 lun->stats.item = lun_number; 4644 4645 /* 4646 * Now, before we insert this lun on the lun list, set the lun 4647 * inventory changed UA for all other luns. 4648 */ 4649 mtx_lock(&ctl_softc->ctl_lock); 4650 STAILQ_FOREACH(nlun, &ctl_softc->lun_list, links) { 4651 mtx_lock(&nlun->lun_lock); 4652 ctl_est_ua_all(nlun, -1, CTL_UA_LUN_CHANGE); 4653 mtx_unlock(&nlun->lun_lock); 4654 } 4655 STAILQ_INSERT_TAIL(&ctl_softc->lun_list, lun, links); 4656 ctl_softc->ctl_luns[lun_number] = lun; 4657 ctl_softc->num_luns++; 4658 mtx_unlock(&ctl_softc->ctl_lock); 4659 4660 /* 4661 * We successfully added the LUN, attempt to enable it. 4662 */ 4663 if (ctl_enable_lun(lun) != 0) { 4664 printf("%s: ctl_enable_lun() failed!\n", __func__); 4665 mtx_lock(&ctl_softc->ctl_lock); 4666 STAILQ_REMOVE(&ctl_softc->lun_list, lun, ctl_lun, links); 4667 ctl_clear_mask(ctl_softc->ctl_lun_mask, lun_number); 4668 ctl_softc->ctl_luns[lun_number] = NULL; 4669 ctl_softc->num_luns--; 4670 mtx_unlock(&ctl_softc->ctl_lock); 4671 free(lun->lun_devid, M_CTL); 4672 free(lun, M_CTL); 4673 return (EIO); 4674 } 4675 4676 return (0); 4677 } 4678 4679 /* 4680 * Free LUN that has no active requests. 4681 */ 4682 static int 4683 ctl_free_lun(struct ctl_lun *lun) 4684 { 4685 struct ctl_softc *softc = lun->ctl_softc; 4686 struct ctl_lun *nlun; 4687 int i; 4688 4689 KASSERT(LIST_EMPTY(&lun->ooa_queue), 4690 ("Freeing a LUN %p with outstanding I/O!\n", lun)); 4691 4692 mtx_lock(&softc->ctl_lock); 4693 STAILQ_REMOVE(&softc->lun_list, lun, ctl_lun, links); 4694 ctl_clear_mask(softc->ctl_lun_mask, lun->lun); 4695 softc->ctl_luns[lun->lun] = NULL; 4696 softc->num_luns--; 4697 STAILQ_FOREACH(nlun, &softc->lun_list, links) { 4698 mtx_lock(&nlun->lun_lock); 4699 ctl_est_ua_all(nlun, -1, CTL_UA_LUN_CHANGE); 4700 mtx_unlock(&nlun->lun_lock); 4701 } 4702 mtx_unlock(&softc->ctl_lock); 4703 4704 /* 4705 * Tell the backend to free resources, if this LUN has a backend. 4706 */ 4707 lun->be_lun->lun_shutdown(lun->be_lun); 4708 4709 lun->ie_reportcnt = UINT32_MAX; 4710 callout_drain(&lun->ie_callout); 4711 ctl_tpc_lun_shutdown(lun); 4712 mtx_destroy(&lun->lun_lock); 4713 free(lun->lun_devid, M_CTL); 4714 for (i = 0; i < ctl_max_ports; i++) 4715 free(lun->pending_ua[i], M_CTL); 4716 free(lun->pending_ua, M_DEVBUF); 4717 for (i = 0; i < ctl_max_ports; i++) 4718 free(lun->pr_keys[i], M_CTL); 4719 free(lun->pr_keys, M_DEVBUF); 4720 free(lun->write_buffer, M_CTL); 4721 free(lun->prevent, M_CTL); 4722 free(lun, M_CTL); 4723 4724 return (0); 4725 } 4726 4727 static int 4728 ctl_enable_lun(struct ctl_lun *lun) 4729 { 4730 struct ctl_softc *softc; 4731 struct ctl_port *port, *nport; 4732 int retval; 4733 4734 softc = lun->ctl_softc; 4735 4736 mtx_lock(&softc->ctl_lock); 4737 mtx_lock(&lun->lun_lock); 4738 KASSERT((lun->flags & CTL_LUN_DISABLED) != 0, 4739 ("%s: LUN not disabled", __func__)); 4740 lun->flags &= ~CTL_LUN_DISABLED; 4741 mtx_unlock(&lun->lun_lock); 4742 4743 STAILQ_FOREACH_SAFE(port, &softc->port_list, links, nport) { 4744 if ((port->status & CTL_PORT_STATUS_ONLINE) == 0 || 4745 port->lun_map != NULL || port->lun_enable == NULL) 4746 continue; 4747 4748 /* 4749 * Drop the lock while we call the FETD's enable routine. 4750 * This can lead to a callback into CTL (at least in the 4751 * case of the internal initiator frontend. 4752 */ 4753 mtx_unlock(&softc->ctl_lock); 4754 retval = port->lun_enable(port->targ_lun_arg, lun->lun); 4755 mtx_lock(&softc->ctl_lock); 4756 if (retval != 0) { 4757 printf("%s: FETD %s port %d returned error " 4758 "%d for lun_enable on lun %jd\n", 4759 __func__, port->port_name, port->targ_port, 4760 retval, (intmax_t)lun->lun); 4761 } 4762 } 4763 4764 mtx_unlock(&softc->ctl_lock); 4765 ctl_isc_announce_lun(lun); 4766 4767 return (0); 4768 } 4769 4770 static int 4771 ctl_disable_lun(struct ctl_lun *lun) 4772 { 4773 struct ctl_softc *softc; 4774 struct ctl_port *port; 4775 int retval; 4776 4777 softc = lun->ctl_softc; 4778 4779 mtx_lock(&softc->ctl_lock); 4780 mtx_lock(&lun->lun_lock); 4781 KASSERT((lun->flags & CTL_LUN_DISABLED) == 0, 4782 ("%s: LUN not enabled", __func__)); 4783 lun->flags |= CTL_LUN_DISABLED; 4784 mtx_unlock(&lun->lun_lock); 4785 4786 STAILQ_FOREACH(port, &softc->port_list, links) { 4787 if ((port->status & CTL_PORT_STATUS_ONLINE) == 0 || 4788 port->lun_map != NULL || port->lun_disable == NULL) 4789 continue; 4790 4791 /* 4792 * Drop the lock before we call the frontend's disable 4793 * routine, to avoid lock order reversals. 4794 * 4795 * XXX KDM what happens if the frontend list changes while 4796 * we're traversing it? It's unlikely, but should be handled. 4797 */ 4798 mtx_unlock(&softc->ctl_lock); 4799 retval = port->lun_disable(port->targ_lun_arg, lun->lun); 4800 mtx_lock(&softc->ctl_lock); 4801 if (retval != 0) { 4802 printf("%s: FETD %s port %d returned error " 4803 "%d for lun_disable on lun %jd\n", 4804 __func__, port->port_name, port->targ_port, 4805 retval, (intmax_t)lun->lun); 4806 } 4807 } 4808 4809 mtx_unlock(&softc->ctl_lock); 4810 ctl_isc_announce_lun(lun); 4811 4812 return (0); 4813 } 4814 4815 int 4816 ctl_start_lun(struct ctl_be_lun *be_lun) 4817 { 4818 struct ctl_lun *lun = (struct ctl_lun *)be_lun->ctl_lun; 4819 4820 mtx_lock(&lun->lun_lock); 4821 lun->flags &= ~CTL_LUN_STOPPED; 4822 mtx_unlock(&lun->lun_lock); 4823 return (0); 4824 } 4825 4826 int 4827 ctl_stop_lun(struct ctl_be_lun *be_lun) 4828 { 4829 struct ctl_lun *lun = (struct ctl_lun *)be_lun->ctl_lun; 4830 4831 mtx_lock(&lun->lun_lock); 4832 lun->flags |= CTL_LUN_STOPPED; 4833 mtx_unlock(&lun->lun_lock); 4834 return (0); 4835 } 4836 4837 int 4838 ctl_lun_no_media(struct ctl_be_lun *be_lun) 4839 { 4840 struct ctl_lun *lun = (struct ctl_lun *)be_lun->ctl_lun; 4841 4842 mtx_lock(&lun->lun_lock); 4843 lun->flags |= CTL_LUN_NO_MEDIA; 4844 mtx_unlock(&lun->lun_lock); 4845 return (0); 4846 } 4847 4848 int 4849 ctl_lun_has_media(struct ctl_be_lun *be_lun) 4850 { 4851 struct ctl_lun *lun = (struct ctl_lun *)be_lun->ctl_lun; 4852 union ctl_ha_msg msg; 4853 4854 mtx_lock(&lun->lun_lock); 4855 lun->flags &= ~(CTL_LUN_NO_MEDIA | CTL_LUN_EJECTED); 4856 if (lun->flags & CTL_LUN_REMOVABLE) 4857 ctl_est_ua_all(lun, -1, CTL_UA_MEDIUM_CHANGE); 4858 mtx_unlock(&lun->lun_lock); 4859 if ((lun->flags & CTL_LUN_REMOVABLE) && 4860 lun->ctl_softc->ha_mode == CTL_HA_MODE_XFER) { 4861 bzero(&msg.ua, sizeof(msg.ua)); 4862 msg.hdr.msg_type = CTL_MSG_UA; 4863 msg.hdr.nexus.initid = -1; 4864 msg.hdr.nexus.targ_port = -1; 4865 msg.hdr.nexus.targ_lun = lun->lun; 4866 msg.hdr.nexus.targ_mapped_lun = lun->lun; 4867 msg.ua.ua_all = 1; 4868 msg.ua.ua_set = 1; 4869 msg.ua.ua_type = CTL_UA_MEDIUM_CHANGE; 4870 ctl_ha_msg_send(CTL_HA_CHAN_CTL, &msg, sizeof(msg.ua), 4871 M_WAITOK); 4872 } 4873 return (0); 4874 } 4875 4876 int 4877 ctl_lun_ejected(struct ctl_be_lun *be_lun) 4878 { 4879 struct ctl_lun *lun = (struct ctl_lun *)be_lun->ctl_lun; 4880 4881 mtx_lock(&lun->lun_lock); 4882 lun->flags |= CTL_LUN_EJECTED; 4883 mtx_unlock(&lun->lun_lock); 4884 return (0); 4885 } 4886 4887 int 4888 ctl_lun_primary(struct ctl_be_lun *be_lun) 4889 { 4890 struct ctl_lun *lun = (struct ctl_lun *)be_lun->ctl_lun; 4891 4892 mtx_lock(&lun->lun_lock); 4893 lun->flags |= CTL_LUN_PRIMARY_SC; 4894 ctl_est_ua_all(lun, -1, CTL_UA_ASYM_ACC_CHANGE); 4895 mtx_unlock(&lun->lun_lock); 4896 ctl_isc_announce_lun(lun); 4897 return (0); 4898 } 4899 4900 int 4901 ctl_lun_secondary(struct ctl_be_lun *be_lun) 4902 { 4903 struct ctl_lun *lun = (struct ctl_lun *)be_lun->ctl_lun; 4904 4905 mtx_lock(&lun->lun_lock); 4906 lun->flags &= ~CTL_LUN_PRIMARY_SC; 4907 ctl_est_ua_all(lun, -1, CTL_UA_ASYM_ACC_CHANGE); 4908 mtx_unlock(&lun->lun_lock); 4909 ctl_isc_announce_lun(lun); 4910 return (0); 4911 } 4912 4913 /* 4914 * Remove LUN. If there are active requests, wait for completion. 4915 * 4916 * Returns 0 for success, non-zero (errno) for failure. 4917 * Completion is reported to backed via the lun_shutdown() method. 4918 */ 4919 int 4920 ctl_remove_lun(struct ctl_be_lun *be_lun) 4921 { 4922 struct ctl_lun *lun; 4923 4924 lun = (struct ctl_lun *)be_lun->ctl_lun; 4925 4926 ctl_disable_lun(lun); 4927 4928 mtx_lock(&lun->lun_lock); 4929 lun->flags |= CTL_LUN_INVALID; 4930 4931 /* 4932 * If there is nothing in the OOA queue, go ahead and free the LUN. 4933 * If we have something in the OOA queue, we'll free it when the 4934 * last I/O completes. 4935 */ 4936 if (LIST_EMPTY(&lun->ooa_queue)) { 4937 mtx_unlock(&lun->lun_lock); 4938 ctl_free_lun(lun); 4939 } else 4940 mtx_unlock(&lun->lun_lock); 4941 4942 return (0); 4943 } 4944 4945 void 4946 ctl_lun_capacity_changed(struct ctl_be_lun *be_lun) 4947 { 4948 struct ctl_lun *lun = (struct ctl_lun *)be_lun->ctl_lun; 4949 union ctl_ha_msg msg; 4950 4951 mtx_lock(&lun->lun_lock); 4952 ctl_est_ua_all(lun, -1, CTL_UA_CAPACITY_CHANGE); 4953 mtx_unlock(&lun->lun_lock); 4954 if (lun->ctl_softc->ha_mode == CTL_HA_MODE_XFER) { 4955 /* Send msg to other side. */ 4956 bzero(&msg.ua, sizeof(msg.ua)); 4957 msg.hdr.msg_type = CTL_MSG_UA; 4958 msg.hdr.nexus.initid = -1; 4959 msg.hdr.nexus.targ_port = -1; 4960 msg.hdr.nexus.targ_lun = lun->lun; 4961 msg.hdr.nexus.targ_mapped_lun = lun->lun; 4962 msg.ua.ua_all = 1; 4963 msg.ua.ua_set = 1; 4964 msg.ua.ua_type = CTL_UA_CAPACITY_CHANGE; 4965 ctl_ha_msg_send(CTL_HA_CHAN_CTL, &msg, sizeof(msg.ua), 4966 M_WAITOK); 4967 } 4968 } 4969 4970 void 4971 ctl_lun_nsdata_ids(struct ctl_be_lun *be_lun, 4972 struct nvme_namespace_data *nsdata) 4973 { 4974 struct ctl_lun *lun = (struct ctl_lun *)be_lun->ctl_lun; 4975 struct scsi_vpd_id_descriptor *idd; 4976 4977 if (lun->lun_devid == NULL) 4978 return; 4979 4980 idd = scsi_get_devid_desc((struct scsi_vpd_id_descriptor *) 4981 lun->lun_devid->data, lun->lun_devid->len, scsi_devid_is_lun_naa); 4982 if (idd != NULL) { 4983 if (idd->length == 16) { 4984 memcpy(nsdata->nguid, idd->identifier, 16); 4985 return; 4986 } 4987 if (idd->length == 8) { 4988 memcpy(nsdata->eui64, idd->identifier, 8); 4989 return; 4990 } 4991 } 4992 4993 idd = scsi_get_devid_desc((struct scsi_vpd_id_descriptor *) 4994 lun->lun_devid->data, lun->lun_devid->len, scsi_devid_is_lun_eui64); 4995 if (idd != NULL) { 4996 if (idd->length == 8) { 4997 memcpy(nsdata->eui64, idd->identifier, 8); 4998 return; 4999 } 5000 } 5001 } 5002 5003 void 5004 ctl_lun_nvme_ids(struct ctl_be_lun *be_lun, void *data) 5005 { 5006 struct ctl_lun *lun = (struct ctl_lun *)be_lun->ctl_lun; 5007 struct scsi_vpd_id_descriptor *naa, *eui64, *uuid; 5008 char *p; 5009 5010 memset(data, 0, 4096); 5011 5012 if (lun->lun_devid == NULL) 5013 return; 5014 5015 naa = scsi_get_devid_desc((struct scsi_vpd_id_descriptor *) 5016 lun->lun_devid->data, lun->lun_devid->len, scsi_devid_is_lun_naa); 5017 eui64 = scsi_get_devid_desc((struct scsi_vpd_id_descriptor *) 5018 lun->lun_devid->data, lun->lun_devid->len, scsi_devid_is_lun_eui64); 5019 uuid = scsi_get_devid_desc((struct scsi_vpd_id_descriptor *) 5020 lun->lun_devid->data, lun->lun_devid->len, scsi_devid_is_lun_uuid); 5021 5022 p = data; 5023 5024 /* EUI64 */ 5025 if ((naa != NULL && naa->length == 8) || eui64 != NULL) { 5026 *p++ = 1; 5027 *p++ = 8; 5028 p += 2; 5029 if (naa != NULL && naa->length == 8) 5030 memcpy(p, naa->identifier, 8); 5031 else 5032 memcpy(p, eui64->identifier, 8); 5033 p += 8; 5034 } 5035 5036 /* NGUID */ 5037 if (naa != NULL && naa->length == 16) { 5038 *p++ = 1; 5039 *p++ = 16; 5040 p += 2; 5041 memcpy(p, naa->identifier, 16); 5042 p += 16; 5043 } 5044 5045 /* UUID */ 5046 if (uuid != NULL) { 5047 *p++ = 1; 5048 *p++ = uuid->length; 5049 p += 2; 5050 memcpy(p, uuid->identifier, uuid->length); 5051 p += uuid->length; 5052 } 5053 } 5054 5055 /* 5056 * Backend "memory move is complete" callback for requests that never 5057 * make it down to say RAIDCore's configuration code. 5058 */ 5059 int 5060 ctl_config_move_done(union ctl_io *io, bool samethr) 5061 { 5062 int retval; 5063 5064 CTL_DEBUG_PRINT(("ctl_config_move_done\n")); 5065 5066 if (ctl_debug & CTL_DEBUG_CDB_DATA) 5067 ctl_data_print(io); 5068 if (((io->io_hdr.flags & CTL_FLAG_DATA_MASK) == CTL_FLAG_DATA_IN) || 5069 ((io->io_hdr.status & CTL_STATUS_MASK) != CTL_STATUS_NONE && 5070 (io->io_hdr.status & CTL_STATUS_MASK) != CTL_SUCCESS) || 5071 ((io->io_hdr.flags & CTL_FLAG_ABORT) != 0)) { 5072 /* 5073 * XXX KDM just assuming a single pointer here, and not a 5074 * S/G list. If we start using S/G lists for config data, 5075 * we'll need to know how to clean them up here as well. 5076 */ 5077 if (io->io_hdr.flags & CTL_FLAG_ALLOCATED) 5078 free(ctl_kern_data_ptr(io), M_CTL); 5079 ctl_done(io); 5080 retval = CTL_RETVAL_COMPLETE; 5081 } else { 5082 /* 5083 * XXX KDM now we need to continue data movement. Some 5084 * options: 5085 * - call ctl_scsiio() again? We don't do this for data 5086 * writes, because for those at least we know ahead of 5087 * time where the write will go and how long it is. For 5088 * config writes, though, that information is largely 5089 * contained within the write itself, thus we need to 5090 * parse out the data again. 5091 * 5092 * - Call some other function once the data is in? 5093 */ 5094 5095 /* 5096 * XXX KDM call ctl_scsiio() again for now, and check flag 5097 * bits to see whether we're allocated or not. 5098 */ 5099 switch (io->io_hdr.io_type) { 5100 case CTL_IO_SCSI: 5101 retval = ctl_scsiio(&io->scsiio); 5102 break; 5103 case CTL_IO_NVME: 5104 case CTL_IO_NVME_ADMIN: 5105 retval = ctl_nvmeio(&io->nvmeio); 5106 break; 5107 default: 5108 __assert_unreachable(); 5109 } 5110 } 5111 return (retval); 5112 } 5113 5114 /* 5115 * This gets called by a backend driver when it is done with a 5116 * data_submit method. 5117 */ 5118 void 5119 ctl_data_submit_done(union ctl_io *io) 5120 { 5121 /* 5122 * If the IO_CONT flag is set, we need to call the supplied 5123 * function to continue processing the I/O, instead of completing 5124 * the I/O just yet. 5125 * 5126 * If there is an error, though, we don't want to keep processing. 5127 * Instead, just send status back to the initiator. 5128 */ 5129 if ((io->io_hdr.flags & CTL_FLAG_IO_CONT) && 5130 (io->io_hdr.flags & CTL_FLAG_ABORT) == 0 && 5131 ((io->io_hdr.status & CTL_STATUS_MASK) == CTL_STATUS_NONE || 5132 (io->io_hdr.status & CTL_STATUS_MASK) == CTL_SUCCESS)) { 5133 ctl_continue_io(io); 5134 return; 5135 } 5136 ctl_done(io); 5137 } 5138 5139 /* 5140 * This gets called by a backend driver when it is done with a 5141 * configuration write. 5142 */ 5143 void 5144 ctl_config_write_done(union ctl_io *io) 5145 { 5146 uint8_t *buf; 5147 5148 /* 5149 * If the IO_CONT flag is set, we need to call the supplied 5150 * function to continue processing the I/O, instead of completing 5151 * the I/O just yet. 5152 * 5153 * If there is an error, though, we don't want to keep processing. 5154 * Instead, just send status back to the initiator. 5155 */ 5156 if ((io->io_hdr.flags & CTL_FLAG_IO_CONT) && 5157 (io->io_hdr.flags & CTL_FLAG_ABORT) == 0 && 5158 ((io->io_hdr.status & CTL_STATUS_MASK) == CTL_STATUS_NONE || 5159 (io->io_hdr.status & CTL_STATUS_MASK) == CTL_SUCCESS)) { 5160 ctl_continue_io(io); 5161 return; 5162 } 5163 /* 5164 * Since a configuration write can be done for commands that actually 5165 * have data allocated, like write buffer, and commands that have 5166 * no data, like start/stop unit, we need to check here. 5167 */ 5168 if (io->io_hdr.flags & CTL_FLAG_ALLOCATED) 5169 buf = ctl_kern_data_ptr(io); 5170 else 5171 buf = NULL; 5172 ctl_done(io); 5173 if (buf) 5174 free(buf, M_CTL); 5175 } 5176 5177 void 5178 ctl_config_read_done(union ctl_io *io) 5179 { 5180 uint8_t *buf; 5181 5182 /* 5183 * If there is some error -- we are done, skip data transfer. 5184 */ 5185 if ((io->io_hdr.flags & CTL_FLAG_ABORT) != 0 || 5186 ((io->io_hdr.status & CTL_STATUS_MASK) != CTL_STATUS_NONE && 5187 (io->io_hdr.status & CTL_STATUS_MASK) != CTL_SUCCESS)) { 5188 if (io->io_hdr.flags & CTL_FLAG_ALLOCATED) 5189 buf = ctl_kern_data_ptr(io); 5190 else 5191 buf = NULL; 5192 ctl_done(io); 5193 if (buf) 5194 free(buf, M_CTL); 5195 return; 5196 } 5197 5198 /* 5199 * If the IO_CONT flag is set, we need to call the supplied 5200 * function to continue processing the I/O, instead of completing 5201 * the I/O just yet. 5202 */ 5203 if (io->io_hdr.flags & CTL_FLAG_IO_CONT) { 5204 ctl_continue_io(io); 5205 return; 5206 } 5207 5208 ctl_datamove(io); 5209 } 5210 5211 /* 5212 * SCSI release command. 5213 */ 5214 int 5215 ctl_scsi_release(struct ctl_scsiio *ctsio) 5216 { 5217 struct ctl_lun *lun = CTL_LUN(ctsio); 5218 uint32_t residx; 5219 5220 CTL_DEBUG_PRINT(("ctl_scsi_release\n")); 5221 5222 residx = ctl_get_initindex(&ctsio->io_hdr.nexus); 5223 5224 /* 5225 * XXX KDM right now, we only support LUN reservation. We don't 5226 * support 3rd party reservations, or extent reservations, which 5227 * might actually need the parameter list. If we've gotten this 5228 * far, we've got a LUN reservation. Anything else got kicked out 5229 * above. So, according to SPC, ignore the length. 5230 */ 5231 5232 mtx_lock(&lun->lun_lock); 5233 5234 /* 5235 * According to SPC, it is not an error for an intiator to attempt 5236 * to release a reservation on a LUN that isn't reserved, or that 5237 * is reserved by another initiator. The reservation can only be 5238 * released, though, by the initiator who made it or by one of 5239 * several reset type events. 5240 */ 5241 if ((lun->flags & CTL_LUN_RESERVED) && (lun->res_idx == residx)) 5242 lun->flags &= ~CTL_LUN_RESERVED; 5243 5244 mtx_unlock(&lun->lun_lock); 5245 5246 ctl_set_success(ctsio); 5247 ctl_done((union ctl_io *)ctsio); 5248 return (CTL_RETVAL_COMPLETE); 5249 } 5250 5251 int 5252 ctl_scsi_reserve(struct ctl_scsiio *ctsio) 5253 { 5254 struct ctl_lun *lun = CTL_LUN(ctsio); 5255 uint32_t residx; 5256 5257 CTL_DEBUG_PRINT(("ctl_reserve\n")); 5258 5259 residx = ctl_get_initindex(&ctsio->io_hdr.nexus); 5260 5261 /* 5262 * XXX KDM right now, we only support LUN reservation. We don't 5263 * support 3rd party reservations, or extent reservations, which 5264 * might actually need the parameter list. If we've gotten this 5265 * far, we've got a LUN reservation. Anything else got kicked out 5266 * above. So, according to SPC, ignore the length. 5267 */ 5268 5269 mtx_lock(&lun->lun_lock); 5270 if ((lun->flags & CTL_LUN_RESERVED) && (lun->res_idx != residx)) { 5271 ctl_set_reservation_conflict(ctsio); 5272 goto bailout; 5273 } 5274 5275 /* SPC-3 exceptions to SPC-2 RESERVE and RELEASE behavior. */ 5276 if (lun->flags & CTL_LUN_PR_RESERVED) { 5277 ctl_set_success(ctsio); 5278 goto bailout; 5279 } 5280 5281 lun->flags |= CTL_LUN_RESERVED; 5282 lun->res_idx = residx; 5283 ctl_set_success(ctsio); 5284 5285 bailout: 5286 mtx_unlock(&lun->lun_lock); 5287 ctl_done((union ctl_io *)ctsio); 5288 return (CTL_RETVAL_COMPLETE); 5289 } 5290 5291 int 5292 ctl_start_stop(struct ctl_scsiio *ctsio) 5293 { 5294 struct ctl_lun *lun = CTL_LUN(ctsio); 5295 struct scsi_start_stop_unit *cdb; 5296 int retval; 5297 5298 CTL_DEBUG_PRINT(("ctl_start_stop\n")); 5299 5300 cdb = (struct scsi_start_stop_unit *)ctsio->cdb; 5301 5302 if ((cdb->how & SSS_PC_MASK) == 0) { 5303 if ((lun->flags & CTL_LUN_PR_RESERVED) && 5304 (cdb->how & SSS_START) == 0) { 5305 uint32_t residx; 5306 5307 residx = ctl_get_initindex(&ctsio->io_hdr.nexus); 5308 if (ctl_get_prkey(lun, residx) == 0 || 5309 (lun->pr_res_idx != residx && lun->pr_res_type < 4)) { 5310 ctl_set_reservation_conflict(ctsio); 5311 ctl_done((union ctl_io *)ctsio); 5312 return (CTL_RETVAL_COMPLETE); 5313 } 5314 } 5315 5316 if ((cdb->how & SSS_LOEJ) && 5317 (lun->flags & CTL_LUN_REMOVABLE) == 0) { 5318 ctl_set_invalid_field(ctsio, 5319 /*sks_valid*/ 1, 5320 /*command*/ 1, 5321 /*field*/ 4, 5322 /*bit_valid*/ 1, 5323 /*bit*/ 1); 5324 ctl_done((union ctl_io *)ctsio); 5325 return (CTL_RETVAL_COMPLETE); 5326 } 5327 5328 if ((cdb->how & SSS_START) == 0 && (cdb->how & SSS_LOEJ) && 5329 lun->prevent_count > 0) { 5330 /* "Medium removal prevented" */ 5331 ctl_set_sense(ctsio, /*current_error*/ 1, 5332 /*sense_key*/(lun->flags & CTL_LUN_NO_MEDIA) ? 5333 SSD_KEY_NOT_READY : SSD_KEY_ILLEGAL_REQUEST, 5334 /*asc*/ 0x53, /*ascq*/ 0x02, SSD_ELEM_NONE); 5335 ctl_done((union ctl_io *)ctsio); 5336 return (CTL_RETVAL_COMPLETE); 5337 } 5338 } 5339 5340 retval = lun->backend->config_write((union ctl_io *)ctsio); 5341 return (retval); 5342 } 5343 5344 int 5345 ctl_prevent_allow(struct ctl_scsiio *ctsio) 5346 { 5347 struct ctl_lun *lun = CTL_LUN(ctsio); 5348 struct scsi_prevent *cdb; 5349 int retval; 5350 uint32_t initidx; 5351 5352 CTL_DEBUG_PRINT(("ctl_prevent_allow\n")); 5353 5354 cdb = (struct scsi_prevent *)ctsio->cdb; 5355 5356 if ((lun->flags & CTL_LUN_REMOVABLE) == 0 || lun->prevent == NULL) { 5357 ctl_set_invalid_opcode(ctsio); 5358 ctl_done((union ctl_io *)ctsio); 5359 return (CTL_RETVAL_COMPLETE); 5360 } 5361 5362 initidx = ctl_get_initindex(&ctsio->io_hdr.nexus); 5363 mtx_lock(&lun->lun_lock); 5364 if ((cdb->how & PR_PREVENT) && 5365 ctl_is_set(lun->prevent, initidx) == 0) { 5366 ctl_set_mask(lun->prevent, initidx); 5367 lun->prevent_count++; 5368 } else if ((cdb->how & PR_PREVENT) == 0 && 5369 ctl_is_set(lun->prevent, initidx)) { 5370 ctl_clear_mask(lun->prevent, initidx); 5371 lun->prevent_count--; 5372 } 5373 mtx_unlock(&lun->lun_lock); 5374 retval = lun->backend->config_write((union ctl_io *)ctsio); 5375 return (retval); 5376 } 5377 5378 /* 5379 * We support the SYNCHRONIZE CACHE command (10 and 16 byte versions), but 5380 * we don't really do anything with the LBA and length fields if the user 5381 * passes them in. Instead we'll just flush out the cache for the entire 5382 * LUN. 5383 */ 5384 int 5385 ctl_sync_cache(struct ctl_scsiio *ctsio) 5386 { 5387 struct ctl_lun *lun = CTL_LUN(ctsio); 5388 struct ctl_lba_len_flags *lbalen; 5389 uint64_t starting_lba; 5390 uint32_t block_count; 5391 int retval; 5392 uint8_t byte2; 5393 5394 CTL_DEBUG_PRINT(("ctl_sync_cache\n")); 5395 5396 retval = 0; 5397 5398 switch (ctsio->cdb[0]) { 5399 case SYNCHRONIZE_CACHE: { 5400 struct scsi_sync_cache *cdb; 5401 cdb = (struct scsi_sync_cache *)ctsio->cdb; 5402 5403 starting_lba = scsi_4btoul(cdb->begin_lba); 5404 block_count = scsi_2btoul(cdb->lb_count); 5405 byte2 = cdb->byte2; 5406 break; 5407 } 5408 case SYNCHRONIZE_CACHE_16: { 5409 struct scsi_sync_cache_16 *cdb; 5410 cdb = (struct scsi_sync_cache_16 *)ctsio->cdb; 5411 5412 starting_lba = scsi_8btou64(cdb->begin_lba); 5413 block_count = scsi_4btoul(cdb->lb_count); 5414 byte2 = cdb->byte2; 5415 break; 5416 } 5417 default: 5418 ctl_set_invalid_opcode(ctsio); 5419 ctl_done((union ctl_io *)ctsio); 5420 goto bailout; 5421 break; /* NOTREACHED */ 5422 } 5423 5424 /* 5425 * We check the LBA and length, but don't do anything with them. 5426 * A SYNCHRONIZE CACHE will cause the entire cache for this lun to 5427 * get flushed. This check will just help satisfy anyone who wants 5428 * to see an error for an out of range LBA. 5429 */ 5430 if ((starting_lba + block_count) > (lun->be_lun->maxlba + 1)) { 5431 ctl_set_lba_out_of_range(ctsio, 5432 MAX(starting_lba, lun->be_lun->maxlba + 1)); 5433 ctl_done((union ctl_io *)ctsio); 5434 goto bailout; 5435 } 5436 5437 lbalen = (struct ctl_lba_len_flags *)&ctsio->io_hdr.ctl_private[CTL_PRIV_LBA_LEN]; 5438 lbalen->lba = starting_lba; 5439 lbalen->len = block_count; 5440 lbalen->flags = byte2; 5441 retval = lun->backend->config_write((union ctl_io *)ctsio); 5442 5443 bailout: 5444 return (retval); 5445 } 5446 5447 int 5448 ctl_format(struct ctl_scsiio *ctsio) 5449 { 5450 struct scsi_format *cdb; 5451 int length, defect_list_len; 5452 5453 CTL_DEBUG_PRINT(("ctl_format\n")); 5454 5455 cdb = (struct scsi_format *)ctsio->cdb; 5456 5457 length = 0; 5458 if (cdb->byte2 & SF_FMTDATA) { 5459 if (cdb->byte2 & SF_LONGLIST) 5460 length = sizeof(struct scsi_format_header_long); 5461 else 5462 length = sizeof(struct scsi_format_header_short); 5463 } 5464 5465 if (((ctsio->io_hdr.flags & CTL_FLAG_ALLOCATED) == 0) 5466 && (length > 0)) { 5467 ctsio->kern_data_ptr = malloc(length, M_CTL, M_WAITOK); 5468 ctsio->kern_data_len = length; 5469 ctsio->kern_total_len = length; 5470 ctsio->kern_rel_offset = 0; 5471 ctsio->kern_sg_entries = 0; 5472 ctsio->io_hdr.flags |= CTL_FLAG_ALLOCATED; 5473 ctsio->be_move_done = ctl_config_move_done; 5474 ctl_datamove((union ctl_io *)ctsio); 5475 5476 return (CTL_RETVAL_COMPLETE); 5477 } 5478 5479 defect_list_len = 0; 5480 5481 if (cdb->byte2 & SF_FMTDATA) { 5482 if (cdb->byte2 & SF_LONGLIST) { 5483 struct scsi_format_header_long *header; 5484 5485 header = (struct scsi_format_header_long *) 5486 ctsio->kern_data_ptr; 5487 5488 defect_list_len = scsi_4btoul(header->defect_list_len); 5489 if (defect_list_len != 0) { 5490 ctl_set_invalid_field(ctsio, 5491 /*sks_valid*/ 1, 5492 /*command*/ 0, 5493 /*field*/ 2, 5494 /*bit_valid*/ 0, 5495 /*bit*/ 0); 5496 goto bailout; 5497 } 5498 } else { 5499 struct scsi_format_header_short *header; 5500 5501 header = (struct scsi_format_header_short *) 5502 ctsio->kern_data_ptr; 5503 5504 defect_list_len = scsi_2btoul(header->defect_list_len); 5505 if (defect_list_len != 0) { 5506 ctl_set_invalid_field(ctsio, 5507 /*sks_valid*/ 1, 5508 /*command*/ 0, 5509 /*field*/ 2, 5510 /*bit_valid*/ 0, 5511 /*bit*/ 0); 5512 goto bailout; 5513 } 5514 } 5515 } 5516 5517 ctl_set_success(ctsio); 5518 bailout: 5519 5520 if (ctsio->io_hdr.flags & CTL_FLAG_ALLOCATED) { 5521 free(ctsio->kern_data_ptr, M_CTL); 5522 ctsio->io_hdr.flags &= ~CTL_FLAG_ALLOCATED; 5523 } 5524 5525 ctl_done((union ctl_io *)ctsio); 5526 return (CTL_RETVAL_COMPLETE); 5527 } 5528 5529 int 5530 ctl_read_buffer(struct ctl_scsiio *ctsio) 5531 { 5532 struct ctl_lun *lun = CTL_LUN(ctsio); 5533 uint64_t buffer_offset; 5534 uint32_t len; 5535 uint8_t byte2; 5536 static uint8_t descr[4]; 5537 static uint8_t echo_descr[4] = { 0 }; 5538 5539 CTL_DEBUG_PRINT(("ctl_read_buffer\n")); 5540 5541 switch (ctsio->cdb[0]) { 5542 case READ_BUFFER: { 5543 struct scsi_read_buffer *cdb; 5544 5545 cdb = (struct scsi_read_buffer *)ctsio->cdb; 5546 buffer_offset = scsi_3btoul(cdb->offset); 5547 len = scsi_3btoul(cdb->length); 5548 byte2 = cdb->byte2; 5549 break; 5550 } 5551 case READ_BUFFER_16: { 5552 struct scsi_read_buffer_16 *cdb; 5553 5554 cdb = (struct scsi_read_buffer_16 *)ctsio->cdb; 5555 buffer_offset = scsi_8btou64(cdb->offset); 5556 len = scsi_4btoul(cdb->length); 5557 byte2 = cdb->byte2; 5558 break; 5559 } 5560 default: /* This shouldn't happen. */ 5561 ctl_set_invalid_opcode(ctsio); 5562 ctl_done((union ctl_io *)ctsio); 5563 return (CTL_RETVAL_COMPLETE); 5564 } 5565 5566 if (buffer_offset > CTL_WRITE_BUFFER_SIZE || 5567 buffer_offset + len > CTL_WRITE_BUFFER_SIZE) { 5568 ctl_set_invalid_field(ctsio, 5569 /*sks_valid*/ 1, 5570 /*command*/ 1, 5571 /*field*/ 6, 5572 /*bit_valid*/ 0, 5573 /*bit*/ 0); 5574 ctl_done((union ctl_io *)ctsio); 5575 return (CTL_RETVAL_COMPLETE); 5576 } 5577 5578 if ((byte2 & RWB_MODE) == RWB_MODE_DESCR) { 5579 descr[0] = 0; 5580 scsi_ulto3b(CTL_WRITE_BUFFER_SIZE, &descr[1]); 5581 ctsio->kern_data_ptr = descr; 5582 len = min(len, sizeof(descr)); 5583 } else if ((byte2 & RWB_MODE) == RWB_MODE_ECHO_DESCR) { 5584 ctsio->kern_data_ptr = echo_descr; 5585 len = min(len, sizeof(echo_descr)); 5586 } else { 5587 if (lun->write_buffer == NULL) { 5588 lun->write_buffer = malloc(CTL_WRITE_BUFFER_SIZE, 5589 M_CTL, M_WAITOK); 5590 } 5591 ctsio->kern_data_ptr = lun->write_buffer + buffer_offset; 5592 } 5593 ctsio->kern_data_len = len; 5594 ctsio->kern_total_len = len; 5595 ctsio->kern_rel_offset = 0; 5596 ctsio->kern_sg_entries = 0; 5597 ctl_set_success(ctsio); 5598 ctsio->be_move_done = ctl_config_move_done; 5599 ctl_datamove((union ctl_io *)ctsio); 5600 return (CTL_RETVAL_COMPLETE); 5601 } 5602 5603 int 5604 ctl_write_buffer(struct ctl_scsiio *ctsio) 5605 { 5606 struct ctl_lun *lun = CTL_LUN(ctsio); 5607 struct scsi_write_buffer *cdb; 5608 int buffer_offset, len; 5609 5610 CTL_DEBUG_PRINT(("ctl_write_buffer\n")); 5611 5612 cdb = (struct scsi_write_buffer *)ctsio->cdb; 5613 5614 len = scsi_3btoul(cdb->length); 5615 buffer_offset = scsi_3btoul(cdb->offset); 5616 5617 if (buffer_offset + len > CTL_WRITE_BUFFER_SIZE) { 5618 ctl_set_invalid_field(ctsio, 5619 /*sks_valid*/ 1, 5620 /*command*/ 1, 5621 /*field*/ 6, 5622 /*bit_valid*/ 0, 5623 /*bit*/ 0); 5624 ctl_done((union ctl_io *)ctsio); 5625 return (CTL_RETVAL_COMPLETE); 5626 } 5627 5628 /* 5629 * If we've got a kernel request that hasn't been malloced yet, 5630 * malloc it and tell the caller the data buffer is here. 5631 */ 5632 if ((ctsio->io_hdr.flags & CTL_FLAG_ALLOCATED) == 0) { 5633 if (lun->write_buffer == NULL) { 5634 lun->write_buffer = malloc(CTL_WRITE_BUFFER_SIZE, 5635 M_CTL, M_WAITOK); 5636 } 5637 ctsio->kern_data_ptr = lun->write_buffer + buffer_offset; 5638 ctsio->kern_data_len = len; 5639 ctsio->kern_total_len = len; 5640 ctsio->kern_rel_offset = 0; 5641 ctsio->kern_sg_entries = 0; 5642 ctsio->io_hdr.flags |= CTL_FLAG_ALLOCATED; 5643 ctsio->be_move_done = ctl_config_move_done; 5644 ctl_datamove((union ctl_io *)ctsio); 5645 5646 return (CTL_RETVAL_COMPLETE); 5647 } 5648 5649 ctl_set_success(ctsio); 5650 ctl_done((union ctl_io *)ctsio); 5651 return (CTL_RETVAL_COMPLETE); 5652 } 5653 5654 static int 5655 ctl_write_same_cont(union ctl_io *io) 5656 { 5657 struct ctl_lun *lun = CTL_LUN(io); 5658 struct ctl_scsiio *ctsio; 5659 struct ctl_lba_len_flags *lbalen; 5660 int retval; 5661 5662 CTL_IO_ASSERT(io, SCSI); 5663 5664 ctsio = &io->scsiio; 5665 ctsio->io_hdr.status = CTL_STATUS_NONE; 5666 lbalen = (struct ctl_lba_len_flags *) 5667 &ctsio->io_hdr.ctl_private[CTL_PRIV_LBA_LEN]; 5668 lbalen->lba += lbalen->len; 5669 if ((lun->be_lun->maxlba + 1) - lbalen->lba <= UINT32_MAX) { 5670 ctsio->io_hdr.flags &= ~CTL_FLAG_IO_CONT; 5671 lbalen->len = (lun->be_lun->maxlba + 1) - lbalen->lba; 5672 } 5673 5674 CTL_DEBUG_PRINT(("ctl_write_same_cont: calling config_write()\n")); 5675 retval = lun->backend->config_write((union ctl_io *)ctsio); 5676 return (retval); 5677 } 5678 5679 int 5680 ctl_write_same(struct ctl_scsiio *ctsio) 5681 { 5682 struct ctl_lun *lun = CTL_LUN(ctsio); 5683 struct ctl_lba_len_flags *lbalen; 5684 const char *val; 5685 uint64_t lba, ival; 5686 uint32_t num_blocks; 5687 int len, retval; 5688 uint8_t byte2; 5689 5690 CTL_DEBUG_PRINT(("ctl_write_same\n")); 5691 5692 switch (ctsio->cdb[0]) { 5693 case WRITE_SAME_10: { 5694 struct scsi_write_same_10 *cdb; 5695 5696 cdb = (struct scsi_write_same_10 *)ctsio->cdb; 5697 5698 lba = scsi_4btoul(cdb->addr); 5699 num_blocks = scsi_2btoul(cdb->length); 5700 byte2 = cdb->byte2; 5701 break; 5702 } 5703 case WRITE_SAME_16: { 5704 struct scsi_write_same_16 *cdb; 5705 5706 cdb = (struct scsi_write_same_16 *)ctsio->cdb; 5707 5708 lba = scsi_8btou64(cdb->addr); 5709 num_blocks = scsi_4btoul(cdb->length); 5710 byte2 = cdb->byte2; 5711 break; 5712 } 5713 default: 5714 /* 5715 * We got a command we don't support. This shouldn't 5716 * happen, commands should be filtered out above us. 5717 */ 5718 ctl_set_invalid_opcode(ctsio); 5719 ctl_done((union ctl_io *)ctsio); 5720 5721 return (CTL_RETVAL_COMPLETE); 5722 break; /* NOTREACHED */ 5723 } 5724 5725 /* ANCHOR flag can be used only together with UNMAP */ 5726 if ((byte2 & SWS_UNMAP) == 0 && (byte2 & SWS_ANCHOR) != 0) { 5727 ctl_set_invalid_field(ctsio, /*sks_valid*/ 1, 5728 /*command*/ 1, /*field*/ 1, /*bit_valid*/ 1, /*bit*/ 0); 5729 ctl_done((union ctl_io *)ctsio); 5730 return (CTL_RETVAL_COMPLETE); 5731 } 5732 5733 /* 5734 * The first check is to make sure we're in bounds, the second 5735 * check is to catch wrap-around problems. If the lba + num blocks 5736 * is less than the lba, then we've wrapped around and the block 5737 * range is invalid anyway. 5738 */ 5739 if (((lba + num_blocks) > (lun->be_lun->maxlba + 1)) 5740 || ((lba + num_blocks) < lba)) { 5741 ctl_set_lba_out_of_range(ctsio, 5742 MAX(lba, lun->be_lun->maxlba + 1)); 5743 ctl_done((union ctl_io *)ctsio); 5744 return (CTL_RETVAL_COMPLETE); 5745 } 5746 5747 /* Zero number of blocks means "to the last logical block" */ 5748 if (num_blocks == 0) { 5749 ival = UINT64_MAX; 5750 val = dnvlist_get_string(lun->be_lun->options, 5751 "write_same_max_lba", NULL); 5752 if (val != NULL) 5753 ctl_expand_number(val, &ival); 5754 if ((lun->be_lun->maxlba + 1) - lba > ival) { 5755 ctl_set_invalid_field(ctsio, 5756 /*sks_valid*/ 1, /*command*/ 1, 5757 /*field*/ ctsio->cdb[0] == WRITE_SAME_10 ? 7 : 10, 5758 /*bit_valid*/ 0, /*bit*/ 0); 5759 ctl_done((union ctl_io *)ctsio); 5760 return (CTL_RETVAL_COMPLETE); 5761 } 5762 if ((lun->be_lun->maxlba + 1) - lba > UINT32_MAX) { 5763 ctsio->io_hdr.flags |= CTL_FLAG_IO_CONT; 5764 ctsio->io_cont = ctl_write_same_cont; 5765 num_blocks = 1 << 31; 5766 } else 5767 num_blocks = (lun->be_lun->maxlba + 1) - lba; 5768 } 5769 5770 len = lun->be_lun->blocksize; 5771 5772 /* 5773 * If we've got a kernel request that hasn't been malloced yet, 5774 * malloc it and tell the caller the data buffer is here. 5775 */ 5776 if ((byte2 & SWS_NDOB) == 0 && 5777 (ctsio->io_hdr.flags & CTL_FLAG_ALLOCATED) == 0) { 5778 ctsio->kern_data_ptr = malloc(len, M_CTL, M_WAITOK); 5779 ctsio->kern_data_len = len; 5780 ctsio->kern_total_len = len; 5781 ctsio->kern_rel_offset = 0; 5782 ctsio->kern_sg_entries = 0; 5783 ctsio->io_hdr.flags |= CTL_FLAG_ALLOCATED; 5784 ctsio->be_move_done = ctl_config_move_done; 5785 ctl_datamove((union ctl_io *)ctsio); 5786 5787 return (CTL_RETVAL_COMPLETE); 5788 } 5789 5790 lbalen = (struct ctl_lba_len_flags *)&ctsio->io_hdr.ctl_private[CTL_PRIV_LBA_LEN]; 5791 lbalen->lba = lba; 5792 lbalen->len = num_blocks; 5793 lbalen->flags = byte2; 5794 retval = lun->backend->config_write((union ctl_io *)ctsio); 5795 5796 return (retval); 5797 } 5798 5799 int 5800 ctl_unmap(struct ctl_scsiio *ctsio) 5801 { 5802 struct ctl_lun *lun = CTL_LUN(ctsio); 5803 struct scsi_unmap *cdb; 5804 struct ctl_ptr_len_flags *ptrlen; 5805 struct scsi_unmap_header *hdr; 5806 struct scsi_unmap_desc *buf, *end, *endnz, *range; 5807 uint64_t lba; 5808 uint32_t num_blocks; 5809 int len, retval; 5810 uint8_t byte2; 5811 5812 CTL_DEBUG_PRINT(("ctl_unmap\n")); 5813 5814 cdb = (struct scsi_unmap *)ctsio->cdb; 5815 len = scsi_2btoul(cdb->length); 5816 byte2 = cdb->byte2; 5817 5818 /* 5819 * If we've got a kernel request that hasn't been malloced yet, 5820 * malloc it and tell the caller the data buffer is here. 5821 */ 5822 if ((ctsio->io_hdr.flags & CTL_FLAG_ALLOCATED) == 0) { 5823 ctsio->kern_data_ptr = malloc(len, M_CTL, M_WAITOK); 5824 ctsio->kern_data_len = len; 5825 ctsio->kern_total_len = len; 5826 ctsio->kern_rel_offset = 0; 5827 ctsio->kern_sg_entries = 0; 5828 ctsio->io_hdr.flags |= CTL_FLAG_ALLOCATED; 5829 ctsio->be_move_done = ctl_config_move_done; 5830 ctl_datamove((union ctl_io *)ctsio); 5831 5832 return (CTL_RETVAL_COMPLETE); 5833 } 5834 5835 len = ctsio->kern_total_len - ctsio->kern_data_resid; 5836 hdr = (struct scsi_unmap_header *)ctsio->kern_data_ptr; 5837 if (len < sizeof (*hdr) || 5838 len < (scsi_2btoul(hdr->length) + sizeof(hdr->length)) || 5839 len < (scsi_2btoul(hdr->desc_length) + sizeof (*hdr)) || 5840 scsi_2btoul(hdr->desc_length) % sizeof(*buf) != 0) { 5841 ctl_set_invalid_field(ctsio, 5842 /*sks_valid*/ 0, 5843 /*command*/ 0, 5844 /*field*/ 0, 5845 /*bit_valid*/ 0, 5846 /*bit*/ 0); 5847 goto done; 5848 } 5849 len = scsi_2btoul(hdr->desc_length); 5850 buf = (struct scsi_unmap_desc *)(hdr + 1); 5851 end = buf + len / sizeof(*buf); 5852 5853 endnz = buf; 5854 for (range = buf; range < end; range++) { 5855 lba = scsi_8btou64(range->lba); 5856 num_blocks = scsi_4btoul(range->length); 5857 if (((lba + num_blocks) > (lun->be_lun->maxlba + 1)) 5858 || ((lba + num_blocks) < lba)) { 5859 ctl_set_lba_out_of_range(ctsio, 5860 MAX(lba, lun->be_lun->maxlba + 1)); 5861 ctl_done((union ctl_io *)ctsio); 5862 return (CTL_RETVAL_COMPLETE); 5863 } 5864 if (num_blocks != 0) 5865 endnz = range + 1; 5866 } 5867 5868 /* 5869 * Block backend can not handle zero last range. 5870 * Filter it out and return if there is nothing left. 5871 */ 5872 len = (uint8_t *)endnz - (uint8_t *)buf; 5873 if (len == 0) { 5874 ctl_set_success(ctsio); 5875 goto done; 5876 } 5877 5878 mtx_lock(&lun->lun_lock); 5879 ptrlen = (struct ctl_ptr_len_flags *) 5880 &ctsio->io_hdr.ctl_private[CTL_PRIV_LBA_LEN]; 5881 ptrlen->ptr = (void *)buf; 5882 ptrlen->len = len; 5883 ptrlen->flags = byte2; 5884 ctl_try_unblock_others(lun, (union ctl_io *)ctsio, FALSE); 5885 mtx_unlock(&lun->lun_lock); 5886 5887 retval = lun->backend->config_write((union ctl_io *)ctsio); 5888 return (retval); 5889 5890 done: 5891 if (ctsio->io_hdr.flags & CTL_FLAG_ALLOCATED) { 5892 free(ctsio->kern_data_ptr, M_CTL); 5893 ctsio->io_hdr.flags &= ~CTL_FLAG_ALLOCATED; 5894 } 5895 ctl_done((union ctl_io *)ctsio); 5896 return (CTL_RETVAL_COMPLETE); 5897 } 5898 5899 int 5900 ctl_default_page_handler(struct ctl_scsiio *ctsio, 5901 struct ctl_page_index *page_index, uint8_t *page_ptr) 5902 { 5903 struct ctl_lun *lun = CTL_LUN(ctsio); 5904 uint8_t *current_cp; 5905 int set_ua; 5906 uint32_t initidx; 5907 5908 initidx = ctl_get_initindex(&ctsio->io_hdr.nexus); 5909 set_ua = 0; 5910 5911 current_cp = (page_index->page_data + (page_index->page_len * 5912 CTL_PAGE_CURRENT)); 5913 5914 mtx_lock(&lun->lun_lock); 5915 if (memcmp(current_cp, page_ptr, page_index->page_len)) { 5916 memcpy(current_cp, page_ptr, page_index->page_len); 5917 set_ua = 1; 5918 } 5919 if (set_ua != 0) 5920 ctl_est_ua_all(lun, initidx, CTL_UA_MODE_CHANGE); 5921 mtx_unlock(&lun->lun_lock); 5922 if (set_ua) { 5923 ctl_isc_announce_mode(lun, 5924 ctl_get_initindex(&ctsio->io_hdr.nexus), 5925 page_index->page_code, page_index->subpage); 5926 } 5927 return (CTL_RETVAL_COMPLETE); 5928 } 5929 5930 static void 5931 ctl_ie_timer(void *arg) 5932 { 5933 struct ctl_lun *lun = arg; 5934 uint64_t t; 5935 5936 if (lun->ie_asc == 0) 5937 return; 5938 5939 if (lun->MODE_IE.mrie == SIEP_MRIE_UA) 5940 ctl_est_ua_all(lun, -1, CTL_UA_IE); 5941 else 5942 lun->ie_reported = 0; 5943 5944 if (lun->ie_reportcnt < scsi_4btoul(lun->MODE_IE.report_count)) { 5945 lun->ie_reportcnt++; 5946 t = scsi_4btoul(lun->MODE_IE.interval_timer); 5947 if (t == 0 || t == UINT32_MAX) 5948 t = 3000; /* 5 min */ 5949 callout_schedule_sbt(&lun->ie_callout, SBT_1S / 10 * t, 5950 SBT_1S / 10, 0); 5951 } 5952 } 5953 5954 int 5955 ctl_ie_page_handler(struct ctl_scsiio *ctsio, 5956 struct ctl_page_index *page_index, uint8_t *page_ptr) 5957 { 5958 struct ctl_lun *lun = CTL_LUN(ctsio); 5959 struct scsi_info_exceptions_page *pg; 5960 uint64_t t; 5961 5962 (void)ctl_default_page_handler(ctsio, page_index, page_ptr); 5963 5964 pg = (struct scsi_info_exceptions_page *)page_ptr; 5965 mtx_lock(&lun->lun_lock); 5966 if (pg->info_flags & SIEP_FLAGS_TEST) { 5967 lun->ie_asc = 0x5d; 5968 lun->ie_ascq = 0xff; 5969 if (pg->mrie == SIEP_MRIE_UA) { 5970 ctl_est_ua_all(lun, -1, CTL_UA_IE); 5971 lun->ie_reported = 1; 5972 } else { 5973 ctl_clr_ua_all(lun, -1, CTL_UA_IE); 5974 lun->ie_reported = -1; 5975 } 5976 lun->ie_reportcnt = 1; 5977 if (lun->ie_reportcnt < scsi_4btoul(pg->report_count)) { 5978 lun->ie_reportcnt++; 5979 t = scsi_4btoul(pg->interval_timer); 5980 if (t == 0 || t == UINT32_MAX) 5981 t = 3000; /* 5 min */ 5982 callout_reset_sbt(&lun->ie_callout, SBT_1S / 10 * t, 5983 SBT_1S / 10, ctl_ie_timer, lun, 0); 5984 } 5985 } else { 5986 lun->ie_asc = 0; 5987 lun->ie_ascq = 0; 5988 lun->ie_reported = 1; 5989 ctl_clr_ua_all(lun, -1, CTL_UA_IE); 5990 lun->ie_reportcnt = UINT32_MAX; 5991 callout_stop(&lun->ie_callout); 5992 } 5993 mtx_unlock(&lun->lun_lock); 5994 return (CTL_RETVAL_COMPLETE); 5995 } 5996 5997 static int 5998 ctl_do_mode_select(union ctl_io *io) 5999 { 6000 struct ctl_lun *lun = CTL_LUN(io); 6001 struct scsi_mode_page_header *page_header; 6002 struct ctl_page_index *page_index; 6003 struct ctl_scsiio *ctsio; 6004 int page_len, page_len_offset, page_len_size; 6005 union ctl_modepage_info *modepage_info; 6006 uint16_t *len_left, *len_used; 6007 int retval, i; 6008 6009 CTL_IO_ASSERT(io, SCSI); 6010 6011 ctsio = &io->scsiio; 6012 page_index = NULL; 6013 page_len = 0; 6014 6015 modepage_info = (union ctl_modepage_info *) 6016 ctsio->io_hdr.ctl_private[CTL_PRIV_MODEPAGE].bytes; 6017 len_left = &modepage_info->header.len_left; 6018 len_used = &modepage_info->header.len_used; 6019 6020 do_next_page: 6021 6022 page_header = (struct scsi_mode_page_header *) 6023 (ctsio->kern_data_ptr + *len_used); 6024 6025 if (*len_left == 0) { 6026 free(ctsio->kern_data_ptr, M_CTL); 6027 ctl_set_success(ctsio); 6028 ctl_done((union ctl_io *)ctsio); 6029 return (CTL_RETVAL_COMPLETE); 6030 } else if (*len_left < sizeof(struct scsi_mode_page_header)) { 6031 free(ctsio->kern_data_ptr, M_CTL); 6032 ctl_set_param_len_error(ctsio); 6033 ctl_done((union ctl_io *)ctsio); 6034 return (CTL_RETVAL_COMPLETE); 6035 6036 } else if ((page_header->page_code & SMPH_SPF) 6037 && (*len_left < sizeof(struct scsi_mode_page_header_sp))) { 6038 free(ctsio->kern_data_ptr, M_CTL); 6039 ctl_set_param_len_error(ctsio); 6040 ctl_done((union ctl_io *)ctsio); 6041 return (CTL_RETVAL_COMPLETE); 6042 } 6043 6044 /* 6045 * XXX KDM should we do something with the block descriptor? 6046 */ 6047 for (i = 0; i < CTL_NUM_MODE_PAGES; i++) { 6048 page_index = &lun->mode_pages.index[i]; 6049 if (lun->be_lun->lun_type == T_DIRECT && 6050 (page_index->page_flags & CTL_PAGE_FLAG_DIRECT) == 0) 6051 continue; 6052 if (lun->be_lun->lun_type == T_PROCESSOR && 6053 (page_index->page_flags & CTL_PAGE_FLAG_PROC) == 0) 6054 continue; 6055 if (lun->be_lun->lun_type == T_CDROM && 6056 (page_index->page_flags & CTL_PAGE_FLAG_CDROM) == 0) 6057 continue; 6058 6059 if ((page_index->page_code & SMPH_PC_MASK) != 6060 (page_header->page_code & SMPH_PC_MASK)) 6061 continue; 6062 6063 /* 6064 * If neither page has a subpage code, then we've got a 6065 * match. 6066 */ 6067 if (((page_index->page_code & SMPH_SPF) == 0) 6068 && ((page_header->page_code & SMPH_SPF) == 0)) { 6069 page_len = page_header->page_length; 6070 break; 6071 } 6072 6073 /* 6074 * If both pages have subpages, then the subpage numbers 6075 * have to match. 6076 */ 6077 if ((page_index->page_code & SMPH_SPF) 6078 && (page_header->page_code & SMPH_SPF)) { 6079 struct scsi_mode_page_header_sp *sph; 6080 6081 sph = (struct scsi_mode_page_header_sp *)page_header; 6082 if (page_index->subpage == sph->subpage) { 6083 page_len = scsi_2btoul(sph->page_length); 6084 break; 6085 } 6086 } 6087 } 6088 6089 /* 6090 * If we couldn't find the page, or if we don't have a mode select 6091 * handler for it, send back an error to the user. 6092 */ 6093 if ((i >= CTL_NUM_MODE_PAGES) 6094 || (page_index->select_handler == NULL)) { 6095 ctl_set_invalid_field(ctsio, 6096 /*sks_valid*/ 1, 6097 /*command*/ 0, 6098 /*field*/ *len_used, 6099 /*bit_valid*/ 0, 6100 /*bit*/ 0); 6101 free(ctsio->kern_data_ptr, M_CTL); 6102 ctl_done((union ctl_io *)ctsio); 6103 return (CTL_RETVAL_COMPLETE); 6104 } 6105 6106 if (page_index->page_code & SMPH_SPF) { 6107 page_len_offset = 2; 6108 page_len_size = 2; 6109 } else { 6110 page_len_size = 1; 6111 page_len_offset = 1; 6112 } 6113 6114 /* 6115 * If the length the initiator gives us isn't the one we specify in 6116 * the mode page header, or if they didn't specify enough data in 6117 * the CDB to avoid truncating this page, kick out the request. 6118 */ 6119 if (page_len != page_index->page_len - page_len_offset - page_len_size) { 6120 ctl_set_invalid_field(ctsio, 6121 /*sks_valid*/ 1, 6122 /*command*/ 0, 6123 /*field*/ *len_used + page_len_offset, 6124 /*bit_valid*/ 0, 6125 /*bit*/ 0); 6126 free(ctsio->kern_data_ptr, M_CTL); 6127 ctl_done((union ctl_io *)ctsio); 6128 return (CTL_RETVAL_COMPLETE); 6129 } 6130 if (*len_left < page_index->page_len) { 6131 free(ctsio->kern_data_ptr, M_CTL); 6132 ctl_set_param_len_error(ctsio); 6133 ctl_done((union ctl_io *)ctsio); 6134 return (CTL_RETVAL_COMPLETE); 6135 } 6136 6137 /* 6138 * Run through the mode page, checking to make sure that the bits 6139 * the user changed are actually legal for him to change. 6140 */ 6141 for (i = 0; i < page_index->page_len; i++) { 6142 uint8_t *user_byte, *change_mask, *current_byte; 6143 int bad_bit; 6144 int j; 6145 6146 user_byte = (uint8_t *)page_header + i; 6147 change_mask = page_index->page_data + 6148 (page_index->page_len * CTL_PAGE_CHANGEABLE) + i; 6149 current_byte = page_index->page_data + 6150 (page_index->page_len * CTL_PAGE_CURRENT) + i; 6151 6152 /* 6153 * Check to see whether the user set any bits in this byte 6154 * that he is not allowed to set. 6155 */ 6156 if ((*user_byte & ~(*change_mask)) == 6157 (*current_byte & ~(*change_mask))) 6158 continue; 6159 6160 /* 6161 * Go through bit by bit to determine which one is illegal. 6162 */ 6163 bad_bit = 0; 6164 for (j = 7; j >= 0; j--) { 6165 if ((((1 << i) & ~(*change_mask)) & *user_byte) != 6166 (((1 << i) & ~(*change_mask)) & *current_byte)) { 6167 bad_bit = i; 6168 break; 6169 } 6170 } 6171 ctl_set_invalid_field(ctsio, 6172 /*sks_valid*/ 1, 6173 /*command*/ 0, 6174 /*field*/ *len_used + i, 6175 /*bit_valid*/ 1, 6176 /*bit*/ bad_bit); 6177 free(ctsio->kern_data_ptr, M_CTL); 6178 ctl_done((union ctl_io *)ctsio); 6179 return (CTL_RETVAL_COMPLETE); 6180 } 6181 6182 /* 6183 * Decrement these before we call the page handler, since we may 6184 * end up getting called back one way or another before the handler 6185 * returns to this context. 6186 */ 6187 *len_left -= page_index->page_len; 6188 *len_used += page_index->page_len; 6189 6190 retval = page_index->select_handler(ctsio, page_index, 6191 (uint8_t *)page_header); 6192 6193 /* 6194 * If the page handler returns CTL_RETVAL_QUEUED, then we need to 6195 * wait until this queued command completes to finish processing 6196 * the mode page. If it returns anything other than 6197 * CTL_RETVAL_COMPLETE (e.g. CTL_RETVAL_ERROR), then it should have 6198 * already set the sense information, freed the data pointer, and 6199 * completed the io for us. 6200 */ 6201 if (retval != CTL_RETVAL_COMPLETE) 6202 goto bailout_no_done; 6203 6204 /* 6205 * If the initiator sent us more than one page, parse the next one. 6206 */ 6207 if (*len_left > 0) 6208 goto do_next_page; 6209 6210 ctl_set_success(ctsio); 6211 free(ctsio->kern_data_ptr, M_CTL); 6212 ctl_done((union ctl_io *)ctsio); 6213 6214 bailout_no_done: 6215 6216 return (CTL_RETVAL_COMPLETE); 6217 6218 } 6219 6220 int 6221 ctl_mode_select(struct ctl_scsiio *ctsio) 6222 { 6223 struct ctl_lun *lun = CTL_LUN(ctsio); 6224 union ctl_modepage_info *modepage_info; 6225 int bd_len, i, header_size, param_len, rtd; 6226 uint32_t initidx; 6227 6228 initidx = ctl_get_initindex(&ctsio->io_hdr.nexus); 6229 switch (ctsio->cdb[0]) { 6230 case MODE_SELECT_6: { 6231 struct scsi_mode_select_6 *cdb; 6232 6233 cdb = (struct scsi_mode_select_6 *)ctsio->cdb; 6234 6235 rtd = (cdb->byte2 & SMS_RTD) ? 1 : 0; 6236 param_len = cdb->length; 6237 header_size = sizeof(struct scsi_mode_header_6); 6238 break; 6239 } 6240 case MODE_SELECT_10: { 6241 struct scsi_mode_select_10 *cdb; 6242 6243 cdb = (struct scsi_mode_select_10 *)ctsio->cdb; 6244 6245 rtd = (cdb->byte2 & SMS_RTD) ? 1 : 0; 6246 param_len = scsi_2btoul(cdb->length); 6247 header_size = sizeof(struct scsi_mode_header_10); 6248 break; 6249 } 6250 default: 6251 ctl_set_invalid_opcode(ctsio); 6252 ctl_done((union ctl_io *)ctsio); 6253 return (CTL_RETVAL_COMPLETE); 6254 } 6255 6256 if (rtd) { 6257 if (param_len != 0) { 6258 ctl_set_invalid_field(ctsio, /*sks_valid*/ 0, 6259 /*command*/ 1, /*field*/ 0, 6260 /*bit_valid*/ 0, /*bit*/ 0); 6261 ctl_done((union ctl_io *)ctsio); 6262 return (CTL_RETVAL_COMPLETE); 6263 } 6264 6265 /* Revert to defaults. */ 6266 ctl_init_page_index(lun); 6267 mtx_lock(&lun->lun_lock); 6268 ctl_est_ua_all(lun, initidx, CTL_UA_MODE_CHANGE); 6269 mtx_unlock(&lun->lun_lock); 6270 for (i = 0; i < CTL_NUM_MODE_PAGES; i++) { 6271 ctl_isc_announce_mode(lun, -1, 6272 lun->mode_pages.index[i].page_code & SMPH_PC_MASK, 6273 lun->mode_pages.index[i].subpage); 6274 } 6275 ctl_set_success(ctsio); 6276 ctl_done((union ctl_io *)ctsio); 6277 return (CTL_RETVAL_COMPLETE); 6278 } 6279 6280 /* 6281 * From SPC-3: 6282 * "A parameter list length of zero indicates that the Data-Out Buffer 6283 * shall be empty. This condition shall not be considered as an error." 6284 */ 6285 if (param_len == 0) { 6286 ctl_set_success(ctsio); 6287 ctl_done((union ctl_io *)ctsio); 6288 return (CTL_RETVAL_COMPLETE); 6289 } 6290 6291 /* 6292 * Since we'll hit this the first time through, prior to 6293 * allocation, we don't need to free a data buffer here. 6294 */ 6295 if (param_len < header_size) { 6296 ctl_set_param_len_error(ctsio); 6297 ctl_done((union ctl_io *)ctsio); 6298 return (CTL_RETVAL_COMPLETE); 6299 } 6300 6301 /* 6302 * Allocate the data buffer and grab the user's data. In theory, 6303 * we shouldn't have to sanity check the parameter list length here 6304 * because the maximum size is 64K. We should be able to malloc 6305 * that much without too many problems. 6306 */ 6307 if ((ctsio->io_hdr.flags & CTL_FLAG_ALLOCATED) == 0) { 6308 ctsio->kern_data_ptr = malloc(param_len, M_CTL, M_WAITOK); 6309 ctsio->kern_data_len = param_len; 6310 ctsio->kern_total_len = param_len; 6311 ctsio->kern_rel_offset = 0; 6312 ctsio->kern_sg_entries = 0; 6313 ctsio->io_hdr.flags |= CTL_FLAG_ALLOCATED; 6314 ctsio->be_move_done = ctl_config_move_done; 6315 ctl_datamove((union ctl_io *)ctsio); 6316 6317 return (CTL_RETVAL_COMPLETE); 6318 } 6319 6320 switch (ctsio->cdb[0]) { 6321 case MODE_SELECT_6: { 6322 struct scsi_mode_header_6 *mh6; 6323 6324 mh6 = (struct scsi_mode_header_6 *)ctsio->kern_data_ptr; 6325 bd_len = mh6->blk_desc_len; 6326 break; 6327 } 6328 case MODE_SELECT_10: { 6329 struct scsi_mode_header_10 *mh10; 6330 6331 mh10 = (struct scsi_mode_header_10 *)ctsio->kern_data_ptr; 6332 bd_len = scsi_2btoul(mh10->blk_desc_len); 6333 break; 6334 } 6335 default: 6336 panic("%s: Invalid CDB type %#x", __func__, ctsio->cdb[0]); 6337 } 6338 6339 if (param_len < (header_size + bd_len)) { 6340 free(ctsio->kern_data_ptr, M_CTL); 6341 ctl_set_param_len_error(ctsio); 6342 ctl_done((union ctl_io *)ctsio); 6343 return (CTL_RETVAL_COMPLETE); 6344 } 6345 6346 /* 6347 * Set the IO_CONT flag, so that if this I/O gets passed to 6348 * ctl_config_write_done(), it'll get passed back to 6349 * ctl_do_mode_select() for further processing, or completion if 6350 * we're all done. 6351 */ 6352 ctsio->io_hdr.flags |= CTL_FLAG_IO_CONT; 6353 ctsio->io_cont = ctl_do_mode_select; 6354 6355 modepage_info = (union ctl_modepage_info *) 6356 ctsio->io_hdr.ctl_private[CTL_PRIV_MODEPAGE].bytes; 6357 memset(modepage_info, 0, sizeof(*modepage_info)); 6358 modepage_info->header.len_left = param_len - header_size - bd_len; 6359 modepage_info->header.len_used = header_size + bd_len; 6360 6361 return (ctl_do_mode_select((union ctl_io *)ctsio)); 6362 } 6363 6364 int 6365 ctl_mode_sense(struct ctl_scsiio *ctsio) 6366 { 6367 struct ctl_lun *lun = CTL_LUN(ctsio); 6368 int pc, page_code, llba, subpage; 6369 int alloc_len, page_len, header_len, bd_len, total_len; 6370 void *block_desc; 6371 struct ctl_page_index *page_index; 6372 6373 llba = 0; 6374 6375 CTL_DEBUG_PRINT(("ctl_mode_sense\n")); 6376 6377 switch (ctsio->cdb[0]) { 6378 case MODE_SENSE_6: { 6379 struct scsi_mode_sense_6 *cdb; 6380 6381 cdb = (struct scsi_mode_sense_6 *)ctsio->cdb; 6382 6383 header_len = sizeof(struct scsi_mode_hdr_6); 6384 if (cdb->byte2 & SMS_DBD) 6385 bd_len = 0; 6386 else 6387 bd_len = sizeof(struct scsi_mode_block_descr); 6388 header_len += bd_len; 6389 6390 pc = (cdb->page & SMS_PAGE_CTRL_MASK) >> 6; 6391 page_code = cdb->page & SMS_PAGE_CODE; 6392 subpage = cdb->subpage; 6393 alloc_len = cdb->length; 6394 break; 6395 } 6396 case MODE_SENSE_10: { 6397 struct scsi_mode_sense_10 *cdb; 6398 6399 cdb = (struct scsi_mode_sense_10 *)ctsio->cdb; 6400 6401 header_len = sizeof(struct scsi_mode_hdr_10); 6402 if (cdb->byte2 & SMS_DBD) { 6403 bd_len = 0; 6404 } else if (lun->be_lun->lun_type == T_DIRECT) { 6405 if (cdb->byte2 & SMS10_LLBAA) { 6406 llba = 1; 6407 bd_len = sizeof(struct scsi_mode_block_descr_dlong); 6408 } else 6409 bd_len = sizeof(struct scsi_mode_block_descr_dshort); 6410 } else 6411 bd_len = sizeof(struct scsi_mode_block_descr); 6412 header_len += bd_len; 6413 6414 pc = (cdb->page & SMS_PAGE_CTRL_MASK) >> 6; 6415 page_code = cdb->page & SMS_PAGE_CODE; 6416 subpage = cdb->subpage; 6417 alloc_len = scsi_2btoul(cdb->length); 6418 break; 6419 } 6420 default: 6421 ctl_set_invalid_opcode(ctsio); 6422 ctl_done((union ctl_io *)ctsio); 6423 return (CTL_RETVAL_COMPLETE); 6424 break; /* NOTREACHED */ 6425 } 6426 6427 /* 6428 * We have to make a first pass through to calculate the size of 6429 * the pages that match the user's query. Then we allocate enough 6430 * memory to hold it, and actually copy the data into the buffer. 6431 */ 6432 switch (page_code) { 6433 case SMS_ALL_PAGES_PAGE: { 6434 u_int i; 6435 6436 page_len = 0; 6437 6438 /* 6439 * At the moment, values other than 0 and 0xff here are 6440 * reserved according to SPC-3. 6441 */ 6442 if ((subpage != SMS_SUBPAGE_PAGE_0) 6443 && (subpage != SMS_SUBPAGE_ALL)) { 6444 ctl_set_invalid_field(ctsio, 6445 /*sks_valid*/ 1, 6446 /*command*/ 1, 6447 /*field*/ 3, 6448 /*bit_valid*/ 0, 6449 /*bit*/ 0); 6450 ctl_done((union ctl_io *)ctsio); 6451 return (CTL_RETVAL_COMPLETE); 6452 } 6453 6454 for (i = 0; i < CTL_NUM_MODE_PAGES; i++) { 6455 page_index = &lun->mode_pages.index[i]; 6456 6457 /* Make sure the page is supported for this dev type */ 6458 if (lun->be_lun->lun_type == T_DIRECT && 6459 (page_index->page_flags & CTL_PAGE_FLAG_DIRECT) == 0) 6460 continue; 6461 if (lun->be_lun->lun_type == T_PROCESSOR && 6462 (page_index->page_flags & CTL_PAGE_FLAG_PROC) == 0) 6463 continue; 6464 if (lun->be_lun->lun_type == T_CDROM && 6465 (page_index->page_flags & CTL_PAGE_FLAG_CDROM) == 0) 6466 continue; 6467 6468 /* 6469 * We don't use this subpage if the user didn't 6470 * request all subpages. 6471 */ 6472 if ((page_index->subpage != 0) 6473 && (subpage == SMS_SUBPAGE_PAGE_0)) 6474 continue; 6475 6476 page_len += page_index->page_len; 6477 } 6478 break; 6479 } 6480 default: { 6481 u_int i; 6482 6483 page_len = 0; 6484 6485 for (i = 0; i < CTL_NUM_MODE_PAGES; i++) { 6486 page_index = &lun->mode_pages.index[i]; 6487 6488 /* Make sure the page is supported for this dev type */ 6489 if (lun->be_lun->lun_type == T_DIRECT && 6490 (page_index->page_flags & CTL_PAGE_FLAG_DIRECT) == 0) 6491 continue; 6492 if (lun->be_lun->lun_type == T_PROCESSOR && 6493 (page_index->page_flags & CTL_PAGE_FLAG_PROC) == 0) 6494 continue; 6495 if (lun->be_lun->lun_type == T_CDROM && 6496 (page_index->page_flags & CTL_PAGE_FLAG_CDROM) == 0) 6497 continue; 6498 6499 /* Look for the right page code */ 6500 if ((page_index->page_code & SMPH_PC_MASK) != page_code) 6501 continue; 6502 6503 /* Look for the right subpage or the subpage wildcard*/ 6504 if ((page_index->subpage != subpage) 6505 && (subpage != SMS_SUBPAGE_ALL)) 6506 continue; 6507 6508 page_len += page_index->page_len; 6509 } 6510 6511 if (page_len == 0) { 6512 ctl_set_invalid_field(ctsio, 6513 /*sks_valid*/ 1, 6514 /*command*/ 1, 6515 /*field*/ 2, 6516 /*bit_valid*/ 1, 6517 /*bit*/ 5); 6518 ctl_done((union ctl_io *)ctsio); 6519 return (CTL_RETVAL_COMPLETE); 6520 } 6521 break; 6522 } 6523 } 6524 6525 total_len = header_len + page_len; 6526 6527 ctsio->kern_data_ptr = malloc(total_len, M_CTL, M_WAITOK | M_ZERO); 6528 ctsio->kern_sg_entries = 0; 6529 ctsio->kern_rel_offset = 0; 6530 ctsio->kern_data_len = min(total_len, alloc_len); 6531 ctsio->kern_total_len = ctsio->kern_data_len; 6532 6533 switch (ctsio->cdb[0]) { 6534 case MODE_SENSE_6: { 6535 struct scsi_mode_hdr_6 *header; 6536 6537 header = (struct scsi_mode_hdr_6 *)ctsio->kern_data_ptr; 6538 6539 header->datalen = MIN(total_len - 1, 254); 6540 if (lun->be_lun->lun_type == T_DIRECT) { 6541 header->dev_specific = 0x10; /* DPOFUA */ 6542 if ((lun->be_lun->flags & CTL_LUN_FLAG_READONLY) || 6543 (lun->MODE_CTRL.eca_and_aen & SCP_SWP) != 0) 6544 header->dev_specific |= 0x80; /* WP */ 6545 } 6546 header->block_descr_len = bd_len; 6547 block_desc = &header[1]; 6548 break; 6549 } 6550 case MODE_SENSE_10: { 6551 struct scsi_mode_hdr_10 *header; 6552 int datalen; 6553 6554 header = (struct scsi_mode_hdr_10 *)ctsio->kern_data_ptr; 6555 6556 datalen = MIN(total_len - 2, 65533); 6557 scsi_ulto2b(datalen, header->datalen); 6558 if (lun->be_lun->lun_type == T_DIRECT) { 6559 header->dev_specific = 0x10; /* DPOFUA */ 6560 if ((lun->be_lun->flags & CTL_LUN_FLAG_READONLY) || 6561 (lun->MODE_CTRL.eca_and_aen & SCP_SWP) != 0) 6562 header->dev_specific |= 0x80; /* WP */ 6563 } 6564 if (llba) 6565 header->flags |= SMH_LONGLBA; 6566 scsi_ulto2b(bd_len, header->block_descr_len); 6567 block_desc = &header[1]; 6568 break; 6569 } 6570 default: 6571 panic("%s: Invalid CDB type %#x", __func__, ctsio->cdb[0]); 6572 } 6573 6574 /* 6575 * If we've got a disk, use its blocksize in the block 6576 * descriptor. Otherwise, just set it to 0. 6577 */ 6578 if (bd_len > 0) { 6579 if (lun->be_lun->lun_type == T_DIRECT) { 6580 if (llba) { 6581 struct scsi_mode_block_descr_dlong *bd = block_desc; 6582 if (lun->be_lun->maxlba != 0) 6583 scsi_u64to8b(lun->be_lun->maxlba + 1, 6584 bd->num_blocks); 6585 scsi_ulto4b(lun->be_lun->blocksize, 6586 bd->block_len); 6587 } else { 6588 struct scsi_mode_block_descr_dshort *bd = block_desc; 6589 if (lun->be_lun->maxlba != 0) 6590 scsi_ulto4b(MIN(lun->be_lun->maxlba+1, 6591 UINT32_MAX), bd->num_blocks); 6592 scsi_ulto3b(lun->be_lun->blocksize, 6593 bd->block_len); 6594 } 6595 } else { 6596 struct scsi_mode_block_descr *bd = block_desc; 6597 scsi_ulto3b(0, bd->block_len); 6598 } 6599 } 6600 6601 switch (page_code) { 6602 case SMS_ALL_PAGES_PAGE: { 6603 int i, data_used; 6604 6605 data_used = header_len; 6606 for (i = 0; i < CTL_NUM_MODE_PAGES; i++) { 6607 struct ctl_page_index *page_index; 6608 6609 page_index = &lun->mode_pages.index[i]; 6610 if (lun->be_lun->lun_type == T_DIRECT && 6611 (page_index->page_flags & CTL_PAGE_FLAG_DIRECT) == 0) 6612 continue; 6613 if (lun->be_lun->lun_type == T_PROCESSOR && 6614 (page_index->page_flags & CTL_PAGE_FLAG_PROC) == 0) 6615 continue; 6616 if (lun->be_lun->lun_type == T_CDROM && 6617 (page_index->page_flags & CTL_PAGE_FLAG_CDROM) == 0) 6618 continue; 6619 6620 /* 6621 * We don't use this subpage if the user didn't 6622 * request all subpages. We already checked (above) 6623 * to make sure the user only specified a subpage 6624 * of 0 or 0xff in the SMS_ALL_PAGES_PAGE case. 6625 */ 6626 if ((page_index->subpage != 0) 6627 && (subpage == SMS_SUBPAGE_PAGE_0)) 6628 continue; 6629 6630 /* 6631 * Call the handler, if it exists, to update the 6632 * page to the latest values. 6633 */ 6634 if (page_index->sense_handler != NULL) 6635 page_index->sense_handler(ctsio, page_index,pc); 6636 6637 memcpy(ctsio->kern_data_ptr + data_used, 6638 page_index->page_data + 6639 (page_index->page_len * pc), 6640 page_index->page_len); 6641 data_used += page_index->page_len; 6642 } 6643 break; 6644 } 6645 default: { 6646 int i, data_used; 6647 6648 data_used = header_len; 6649 6650 for (i = 0; i < CTL_NUM_MODE_PAGES; i++) { 6651 struct ctl_page_index *page_index; 6652 6653 page_index = &lun->mode_pages.index[i]; 6654 6655 /* Look for the right page code */ 6656 if ((page_index->page_code & SMPH_PC_MASK) != page_code) 6657 continue; 6658 6659 /* Look for the right subpage or the subpage wildcard*/ 6660 if ((page_index->subpage != subpage) 6661 && (subpage != SMS_SUBPAGE_ALL)) 6662 continue; 6663 6664 /* Make sure the page is supported for this dev type */ 6665 if (lun->be_lun->lun_type == T_DIRECT && 6666 (page_index->page_flags & CTL_PAGE_FLAG_DIRECT) == 0) 6667 continue; 6668 if (lun->be_lun->lun_type == T_PROCESSOR && 6669 (page_index->page_flags & CTL_PAGE_FLAG_PROC) == 0) 6670 continue; 6671 if (lun->be_lun->lun_type == T_CDROM && 6672 (page_index->page_flags & CTL_PAGE_FLAG_CDROM) == 0) 6673 continue; 6674 6675 /* 6676 * Call the handler, if it exists, to update the 6677 * page to the latest values. 6678 */ 6679 if (page_index->sense_handler != NULL) 6680 page_index->sense_handler(ctsio, page_index,pc); 6681 6682 memcpy(ctsio->kern_data_ptr + data_used, 6683 page_index->page_data + 6684 (page_index->page_len * pc), 6685 page_index->page_len); 6686 data_used += page_index->page_len; 6687 } 6688 break; 6689 } 6690 } 6691 6692 ctl_set_success(ctsio); 6693 ctsio->io_hdr.flags |= CTL_FLAG_ALLOCATED; 6694 ctsio->be_move_done = ctl_config_move_done; 6695 ctl_datamove((union ctl_io *)ctsio); 6696 return (CTL_RETVAL_COMPLETE); 6697 } 6698 6699 int 6700 ctl_temp_log_sense_handler(struct ctl_scsiio *ctsio, 6701 struct ctl_page_index *page_index, 6702 int pc) 6703 { 6704 struct ctl_lun *lun = CTL_LUN(ctsio); 6705 struct scsi_log_temperature *data; 6706 const char *value; 6707 6708 data = (struct scsi_log_temperature *)page_index->page_data; 6709 6710 scsi_ulto2b(SLP_TEMPERATURE, data->hdr.param_code); 6711 data->hdr.param_control = SLP_LBIN; 6712 data->hdr.param_len = sizeof(struct scsi_log_temperature) - 6713 sizeof(struct scsi_log_param_header); 6714 if ((value = dnvlist_get_string(lun->be_lun->options, "temperature", 6715 NULL)) != NULL) 6716 data->temperature = strtol(value, NULL, 0); 6717 else 6718 data->temperature = 0xff; 6719 data++; 6720 6721 scsi_ulto2b(SLP_REFTEMPERATURE, data->hdr.param_code); 6722 data->hdr.param_control = SLP_LBIN; 6723 data->hdr.param_len = sizeof(struct scsi_log_temperature) - 6724 sizeof(struct scsi_log_param_header); 6725 if ((value = dnvlist_get_string(lun->be_lun->options, "reftemperature", 6726 NULL)) != NULL) 6727 data->temperature = strtol(value, NULL, 0); 6728 else 6729 data->temperature = 0xff; 6730 return (0); 6731 } 6732 6733 int 6734 ctl_lbp_log_sense_handler(struct ctl_scsiio *ctsio, 6735 struct ctl_page_index *page_index, 6736 int pc) 6737 { 6738 struct ctl_lun *lun = CTL_LUN(ctsio); 6739 struct scsi_log_param_header *phdr; 6740 uint8_t *data; 6741 uint64_t val; 6742 6743 data = page_index->page_data; 6744 6745 if (lun->backend->lun_attr != NULL && 6746 (val = lun->backend->lun_attr(lun->be_lun, "blocksavail")) 6747 != UINT64_MAX) { 6748 phdr = (struct scsi_log_param_header *)data; 6749 scsi_ulto2b(0x0001, phdr->param_code); 6750 phdr->param_control = SLP_LBIN | SLP_LP; 6751 phdr->param_len = 8; 6752 data = (uint8_t *)(phdr + 1); 6753 scsi_ulto4b(val >> CTL_LBP_EXPONENT, data); 6754 data[4] = 0x02; /* per-pool */ 6755 data += phdr->param_len; 6756 } 6757 6758 if (lun->backend->lun_attr != NULL && 6759 (val = lun->backend->lun_attr(lun->be_lun, "blocksused")) 6760 != UINT64_MAX) { 6761 phdr = (struct scsi_log_param_header *)data; 6762 scsi_ulto2b(0x0002, phdr->param_code); 6763 phdr->param_control = SLP_LBIN | SLP_LP; 6764 phdr->param_len = 8; 6765 data = (uint8_t *)(phdr + 1); 6766 scsi_ulto4b(val >> CTL_LBP_EXPONENT, data); 6767 data[4] = 0x01; /* per-LUN */ 6768 data += phdr->param_len; 6769 } 6770 6771 if (lun->backend->lun_attr != NULL && 6772 (val = lun->backend->lun_attr(lun->be_lun, "poolblocksavail")) 6773 != UINT64_MAX) { 6774 phdr = (struct scsi_log_param_header *)data; 6775 scsi_ulto2b(0x00f1, phdr->param_code); 6776 phdr->param_control = SLP_LBIN | SLP_LP; 6777 phdr->param_len = 8; 6778 data = (uint8_t *)(phdr + 1); 6779 scsi_ulto4b(val >> CTL_LBP_EXPONENT, data); 6780 data[4] = 0x02; /* per-pool */ 6781 data += phdr->param_len; 6782 } 6783 6784 if (lun->backend->lun_attr != NULL && 6785 (val = lun->backend->lun_attr(lun->be_lun, "poolblocksused")) 6786 != UINT64_MAX) { 6787 phdr = (struct scsi_log_param_header *)data; 6788 scsi_ulto2b(0x00f2, phdr->param_code); 6789 phdr->param_control = SLP_LBIN | SLP_LP; 6790 phdr->param_len = 8; 6791 data = (uint8_t *)(phdr + 1); 6792 scsi_ulto4b(val >> CTL_LBP_EXPONENT, data); 6793 data[4] = 0x02; /* per-pool */ 6794 data += phdr->param_len; 6795 } 6796 6797 page_index->page_len = data - page_index->page_data; 6798 return (0); 6799 } 6800 6801 int 6802 ctl_sap_log_sense_handler(struct ctl_scsiio *ctsio, 6803 struct ctl_page_index *page_index, 6804 int pc) 6805 { 6806 struct ctl_lun *lun = CTL_LUN(ctsio); 6807 struct stat_page *data; 6808 struct bintime *t; 6809 6810 data = (struct stat_page *)page_index->page_data; 6811 6812 scsi_ulto2b(SLP_SAP, data->sap.hdr.param_code); 6813 data->sap.hdr.param_control = SLP_LBIN; 6814 data->sap.hdr.param_len = sizeof(struct scsi_log_stat_and_perf) - 6815 sizeof(struct scsi_log_param_header); 6816 scsi_u64to8b(lun->stats.operations[CTL_STATS_READ], 6817 data->sap.read_num); 6818 scsi_u64to8b(lun->stats.operations[CTL_STATS_WRITE], 6819 data->sap.write_num); 6820 if (lun->be_lun->blocksize > 0) { 6821 scsi_u64to8b(lun->stats.bytes[CTL_STATS_WRITE] / 6822 lun->be_lun->blocksize, data->sap.recvieved_lba); 6823 scsi_u64to8b(lun->stats.bytes[CTL_STATS_READ] / 6824 lun->be_lun->blocksize, data->sap.transmitted_lba); 6825 } 6826 t = &lun->stats.time[CTL_STATS_READ]; 6827 scsi_u64to8b((uint64_t)t->sec * 1000 + t->frac / (UINT64_MAX / 1000), 6828 data->sap.read_int); 6829 t = &lun->stats.time[CTL_STATS_WRITE]; 6830 scsi_u64to8b((uint64_t)t->sec * 1000 + t->frac / (UINT64_MAX / 1000), 6831 data->sap.write_int); 6832 scsi_u64to8b(0, data->sap.weighted_num); 6833 scsi_u64to8b(0, data->sap.weighted_int); 6834 scsi_ulto2b(SLP_IT, data->it.hdr.param_code); 6835 data->it.hdr.param_control = SLP_LBIN; 6836 data->it.hdr.param_len = sizeof(struct scsi_log_idle_time) - 6837 sizeof(struct scsi_log_param_header); 6838 #ifdef CTL_TIME_IO 6839 scsi_u64to8b(lun->idle_time / SBT_1MS, data->it.idle_int); 6840 #endif 6841 scsi_ulto2b(SLP_TI, data->ti.hdr.param_code); 6842 data->it.hdr.param_control = SLP_LBIN; 6843 data->ti.hdr.param_len = sizeof(struct scsi_log_time_interval) - 6844 sizeof(struct scsi_log_param_header); 6845 scsi_ulto4b(3, data->ti.exponent); 6846 scsi_ulto4b(1, data->ti.integer); 6847 return (0); 6848 } 6849 6850 int 6851 ctl_ie_log_sense_handler(struct ctl_scsiio *ctsio, 6852 struct ctl_page_index *page_index, 6853 int pc) 6854 { 6855 struct ctl_lun *lun = CTL_LUN(ctsio); 6856 struct scsi_log_informational_exceptions *data; 6857 const char *value; 6858 6859 data = (struct scsi_log_informational_exceptions *)page_index->page_data; 6860 6861 scsi_ulto2b(SLP_IE_GEN, data->hdr.param_code); 6862 data->hdr.param_control = SLP_LBIN; 6863 data->hdr.param_len = sizeof(struct scsi_log_informational_exceptions) - 6864 sizeof(struct scsi_log_param_header); 6865 data->ie_asc = lun->ie_asc; 6866 data->ie_ascq = lun->ie_ascq; 6867 if ((value = dnvlist_get_string(lun->be_lun->options, "temperature", 6868 NULL)) != NULL) 6869 data->temperature = strtol(value, NULL, 0); 6870 else 6871 data->temperature = 0xff; 6872 return (0); 6873 } 6874 6875 int 6876 ctl_log_sense(struct ctl_scsiio *ctsio) 6877 { 6878 struct ctl_lun *lun = CTL_LUN(ctsio); 6879 int i, pc, page_code, subpage; 6880 int alloc_len, total_len; 6881 struct ctl_page_index *page_index; 6882 struct scsi_log_sense *cdb; 6883 struct scsi_log_header *header; 6884 6885 CTL_DEBUG_PRINT(("ctl_log_sense\n")); 6886 6887 cdb = (struct scsi_log_sense *)ctsio->cdb; 6888 pc = (cdb->page & SLS_PAGE_CTRL_MASK) >> 6; 6889 page_code = cdb->page & SLS_PAGE_CODE; 6890 subpage = cdb->subpage; 6891 alloc_len = scsi_2btoul(cdb->length); 6892 6893 page_index = NULL; 6894 for (i = 0; i < CTL_NUM_LOG_PAGES; i++) { 6895 page_index = &lun->log_pages.index[i]; 6896 6897 /* Look for the right page code */ 6898 if ((page_index->page_code & SL_PAGE_CODE) != page_code) 6899 continue; 6900 6901 /* Look for the right subpage or the subpage wildcard*/ 6902 if (page_index->subpage != subpage) 6903 continue; 6904 6905 break; 6906 } 6907 if (i >= CTL_NUM_LOG_PAGES) { 6908 ctl_set_invalid_field(ctsio, 6909 /*sks_valid*/ 1, 6910 /*command*/ 1, 6911 /*field*/ 2, 6912 /*bit_valid*/ 0, 6913 /*bit*/ 0); 6914 ctl_done((union ctl_io *)ctsio); 6915 return (CTL_RETVAL_COMPLETE); 6916 } 6917 6918 total_len = sizeof(struct scsi_log_header) + page_index->page_len; 6919 6920 ctsio->kern_data_ptr = malloc(total_len, M_CTL, M_WAITOK | M_ZERO); 6921 ctsio->kern_sg_entries = 0; 6922 ctsio->kern_rel_offset = 0; 6923 ctsio->kern_data_len = min(total_len, alloc_len); 6924 ctsio->kern_total_len = ctsio->kern_data_len; 6925 6926 header = (struct scsi_log_header *)ctsio->kern_data_ptr; 6927 header->page = page_index->page_code; 6928 if (page_index->page_code == SLS_LOGICAL_BLOCK_PROVISIONING) 6929 header->page |= SL_DS; 6930 if (page_index->subpage) { 6931 header->page |= SL_SPF; 6932 header->subpage = page_index->subpage; 6933 } 6934 scsi_ulto2b(page_index->page_len, header->datalen); 6935 6936 /* 6937 * Call the handler, if it exists, to update the 6938 * page to the latest values. 6939 */ 6940 if (page_index->sense_handler != NULL) 6941 page_index->sense_handler(ctsio, page_index, pc); 6942 6943 memcpy(header + 1, page_index->page_data, page_index->page_len); 6944 6945 ctl_set_success(ctsio); 6946 ctsio->io_hdr.flags |= CTL_FLAG_ALLOCATED; 6947 ctsio->be_move_done = ctl_config_move_done; 6948 ctl_datamove((union ctl_io *)ctsio); 6949 return (CTL_RETVAL_COMPLETE); 6950 } 6951 6952 int 6953 ctl_read_capacity(struct ctl_scsiio *ctsio) 6954 { 6955 struct ctl_lun *lun = CTL_LUN(ctsio); 6956 struct scsi_read_capacity *cdb; 6957 struct scsi_read_capacity_data *data; 6958 uint32_t lba; 6959 6960 CTL_DEBUG_PRINT(("ctl_read_capacity\n")); 6961 6962 cdb = (struct scsi_read_capacity *)ctsio->cdb; 6963 6964 lba = scsi_4btoul(cdb->addr); 6965 if (((cdb->pmi & SRC_PMI) == 0) 6966 && (lba != 0)) { 6967 ctl_set_invalid_field(/*ctsio*/ ctsio, 6968 /*sks_valid*/ 1, 6969 /*command*/ 1, 6970 /*field*/ 2, 6971 /*bit_valid*/ 0, 6972 /*bit*/ 0); 6973 ctl_done((union ctl_io *)ctsio); 6974 return (CTL_RETVAL_COMPLETE); 6975 } 6976 6977 ctsio->kern_data_ptr = malloc(sizeof(*data), M_CTL, M_WAITOK | M_ZERO); 6978 data = (struct scsi_read_capacity_data *)ctsio->kern_data_ptr; 6979 ctsio->kern_data_len = sizeof(*data); 6980 ctsio->kern_total_len = sizeof(*data); 6981 ctsio->kern_rel_offset = 0; 6982 ctsio->kern_sg_entries = 0; 6983 6984 /* 6985 * If the maximum LBA is greater than 0xfffffffe, the user must 6986 * issue a SERVICE ACTION IN (16) command, with the read capacity 6987 * serivce action set. 6988 */ 6989 if (lun->be_lun->maxlba > 0xfffffffe) 6990 scsi_ulto4b(0xffffffff, data->addr); 6991 else 6992 scsi_ulto4b(lun->be_lun->maxlba, data->addr); 6993 6994 /* 6995 * XXX KDM this may not be 512 bytes... 6996 */ 6997 scsi_ulto4b(lun->be_lun->blocksize, data->length); 6998 6999 ctl_set_success(ctsio); 7000 ctsio->io_hdr.flags |= CTL_FLAG_ALLOCATED; 7001 ctsio->be_move_done = ctl_config_move_done; 7002 ctl_datamove((union ctl_io *)ctsio); 7003 return (CTL_RETVAL_COMPLETE); 7004 } 7005 7006 int 7007 ctl_read_capacity_16(struct ctl_scsiio *ctsio) 7008 { 7009 struct ctl_lun *lun = CTL_LUN(ctsio); 7010 struct scsi_read_capacity_16 *cdb; 7011 struct scsi_read_capacity_data_long *data; 7012 uint64_t lba; 7013 uint32_t alloc_len; 7014 7015 CTL_DEBUG_PRINT(("ctl_read_capacity_16\n")); 7016 7017 cdb = (struct scsi_read_capacity_16 *)ctsio->cdb; 7018 7019 alloc_len = scsi_4btoul(cdb->alloc_len); 7020 lba = scsi_8btou64(cdb->addr); 7021 7022 if ((cdb->reladr & SRC16_PMI) 7023 && (lba != 0)) { 7024 ctl_set_invalid_field(/*ctsio*/ ctsio, 7025 /*sks_valid*/ 1, 7026 /*command*/ 1, 7027 /*field*/ 2, 7028 /*bit_valid*/ 0, 7029 /*bit*/ 0); 7030 ctl_done((union ctl_io *)ctsio); 7031 return (CTL_RETVAL_COMPLETE); 7032 } 7033 7034 ctsio->kern_data_ptr = malloc(sizeof(*data), M_CTL, M_WAITOK | M_ZERO); 7035 data = (struct scsi_read_capacity_data_long *)ctsio->kern_data_ptr; 7036 ctsio->kern_rel_offset = 0; 7037 ctsio->kern_sg_entries = 0; 7038 ctsio->kern_data_len = min(sizeof(*data), alloc_len); 7039 ctsio->kern_total_len = ctsio->kern_data_len; 7040 7041 scsi_u64to8b(lun->be_lun->maxlba, data->addr); 7042 /* XXX KDM this may not be 512 bytes... */ 7043 scsi_ulto4b(lun->be_lun->blocksize, data->length); 7044 data->prot_lbppbe = lun->be_lun->pblockexp & SRC16_LBPPBE; 7045 scsi_ulto2b(lun->be_lun->pblockoff & SRC16_LALBA_A, data->lalba_lbp); 7046 if (lun->be_lun->flags & CTL_LUN_FLAG_UNMAP) 7047 data->lalba_lbp[0] |= SRC16_LBPME | SRC16_LBPRZ; 7048 7049 ctl_set_success(ctsio); 7050 ctsio->io_hdr.flags |= CTL_FLAG_ALLOCATED; 7051 ctsio->be_move_done = ctl_config_move_done; 7052 ctl_datamove((union ctl_io *)ctsio); 7053 return (CTL_RETVAL_COMPLETE); 7054 } 7055 7056 int 7057 ctl_get_lba_status(struct ctl_scsiio *ctsio) 7058 { 7059 struct ctl_lun *lun = CTL_LUN(ctsio); 7060 struct scsi_get_lba_status *cdb; 7061 struct scsi_get_lba_status_data *data; 7062 struct ctl_lba_len_flags *lbalen; 7063 uint64_t lba; 7064 uint32_t alloc_len, total_len; 7065 int retval; 7066 7067 CTL_DEBUG_PRINT(("ctl_get_lba_status\n")); 7068 7069 cdb = (struct scsi_get_lba_status *)ctsio->cdb; 7070 lba = scsi_8btou64(cdb->addr); 7071 alloc_len = scsi_4btoul(cdb->alloc_len); 7072 7073 if (lba > lun->be_lun->maxlba) { 7074 ctl_set_lba_out_of_range(ctsio, lba); 7075 ctl_done((union ctl_io *)ctsio); 7076 return (CTL_RETVAL_COMPLETE); 7077 } 7078 7079 total_len = sizeof(*data) + sizeof(data->descr[0]); 7080 ctsio->kern_data_ptr = malloc(total_len, M_CTL, M_WAITOK | M_ZERO); 7081 data = (struct scsi_get_lba_status_data *)ctsio->kern_data_ptr; 7082 ctsio->kern_rel_offset = 0; 7083 ctsio->kern_sg_entries = 0; 7084 ctsio->kern_data_len = min(total_len, alloc_len); 7085 ctsio->kern_total_len = ctsio->kern_data_len; 7086 7087 /* Fill dummy data in case backend can't tell anything. */ 7088 scsi_ulto4b(4 + sizeof(data->descr[0]), data->length); 7089 scsi_u64to8b(lba, data->descr[0].addr); 7090 scsi_ulto4b(MIN(UINT32_MAX, lun->be_lun->maxlba + 1 - lba), 7091 data->descr[0].length); 7092 data->descr[0].status = 0; /* Mapped or unknown. */ 7093 7094 ctl_set_success(ctsio); 7095 ctsio->io_hdr.flags |= CTL_FLAG_ALLOCATED; 7096 ctsio->be_move_done = ctl_config_move_done; 7097 7098 lbalen = (struct ctl_lba_len_flags *)&ctsio->io_hdr.ctl_private[CTL_PRIV_LBA_LEN]; 7099 lbalen->lba = lba; 7100 lbalen->len = total_len; 7101 lbalen->flags = 0; 7102 retval = lun->backend->config_read((union ctl_io *)ctsio); 7103 return (retval); 7104 } 7105 7106 int 7107 ctl_read_defect(struct ctl_scsiio *ctsio) 7108 { 7109 struct scsi_read_defect_data_10 *ccb10; 7110 struct scsi_read_defect_data_12 *ccb12; 7111 struct scsi_read_defect_data_hdr_10 *data10; 7112 struct scsi_read_defect_data_hdr_12 *data12; 7113 uint32_t alloc_len, data_len; 7114 uint8_t format; 7115 7116 CTL_DEBUG_PRINT(("ctl_read_defect\n")); 7117 7118 if (ctsio->cdb[0] == READ_DEFECT_DATA_10) { 7119 ccb10 = (struct scsi_read_defect_data_10 *)&ctsio->cdb; 7120 format = ccb10->format; 7121 alloc_len = scsi_2btoul(ccb10->alloc_length); 7122 data_len = sizeof(*data10); 7123 } else { 7124 ccb12 = (struct scsi_read_defect_data_12 *)&ctsio->cdb; 7125 format = ccb12->format; 7126 alloc_len = scsi_4btoul(ccb12->alloc_length); 7127 data_len = sizeof(*data12); 7128 } 7129 if (alloc_len == 0) { 7130 ctl_set_success(ctsio); 7131 ctl_done((union ctl_io *)ctsio); 7132 return (CTL_RETVAL_COMPLETE); 7133 } 7134 7135 ctsio->kern_data_ptr = malloc(data_len, M_CTL, M_WAITOK | M_ZERO); 7136 ctsio->kern_rel_offset = 0; 7137 ctsio->kern_sg_entries = 0; 7138 ctsio->kern_data_len = min(data_len, alloc_len); 7139 ctsio->kern_total_len = ctsio->kern_data_len; 7140 7141 if (ctsio->cdb[0] == READ_DEFECT_DATA_10) { 7142 data10 = (struct scsi_read_defect_data_hdr_10 *) 7143 ctsio->kern_data_ptr; 7144 data10->format = format; 7145 scsi_ulto2b(0, data10->length); 7146 } else { 7147 data12 = (struct scsi_read_defect_data_hdr_12 *) 7148 ctsio->kern_data_ptr; 7149 data12->format = format; 7150 scsi_ulto2b(0, data12->generation); 7151 scsi_ulto4b(0, data12->length); 7152 } 7153 7154 ctl_set_success(ctsio); 7155 ctsio->io_hdr.flags |= CTL_FLAG_ALLOCATED; 7156 ctsio->be_move_done = ctl_config_move_done; 7157 ctl_datamove((union ctl_io *)ctsio); 7158 return (CTL_RETVAL_COMPLETE); 7159 } 7160 7161 int 7162 ctl_report_ident_info(struct ctl_scsiio *ctsio) 7163 { 7164 struct ctl_lun *lun = CTL_LUN(ctsio); 7165 struct scsi_report_ident_info *cdb; 7166 struct scsi_report_ident_info_data *rii_ptr; 7167 struct scsi_report_ident_info_descr *riid_ptr; 7168 const char *oii, *otii; 7169 int retval, alloc_len, total_len = 0, len = 0; 7170 7171 CTL_DEBUG_PRINT(("ctl_report_ident_info\n")); 7172 7173 cdb = (struct scsi_report_ident_info *)ctsio->cdb; 7174 retval = CTL_RETVAL_COMPLETE; 7175 7176 total_len = sizeof(struct scsi_report_ident_info_data); 7177 switch (cdb->type) { 7178 case RII_LUII: 7179 oii = dnvlist_get_string(lun->be_lun->options, 7180 "ident_info", NULL); 7181 if (oii) 7182 len = strlen(oii); /* Approximately */ 7183 break; 7184 case RII_LUTII: 7185 otii = dnvlist_get_string(lun->be_lun->options, 7186 "text_ident_info", NULL); 7187 if (otii) 7188 len = strlen(otii) + 1; /* NULL-terminated */ 7189 break; 7190 case RII_IIS: 7191 len = 2 * sizeof(struct scsi_report_ident_info_descr); 7192 break; 7193 default: 7194 ctl_set_invalid_field(/*ctsio*/ ctsio, 7195 /*sks_valid*/ 1, 7196 /*command*/ 1, 7197 /*field*/ 11, 7198 /*bit_valid*/ 1, 7199 /*bit*/ 2); 7200 ctl_done((union ctl_io *)ctsio); 7201 return(retval); 7202 } 7203 total_len += len; 7204 alloc_len = scsi_4btoul(cdb->length); 7205 7206 ctsio->kern_data_ptr = malloc(total_len, M_CTL, M_WAITOK | M_ZERO); 7207 ctsio->kern_sg_entries = 0; 7208 ctsio->kern_rel_offset = 0; 7209 ctsio->kern_data_len = min(total_len, alloc_len); 7210 ctsio->kern_total_len = ctsio->kern_data_len; 7211 7212 rii_ptr = (struct scsi_report_ident_info_data *)ctsio->kern_data_ptr; 7213 switch (cdb->type) { 7214 case RII_LUII: 7215 if (oii) { 7216 if (oii[0] == '0' && oii[1] == 'x') 7217 len = hex2bin(oii, (uint8_t *)(rii_ptr + 1), len); 7218 else 7219 strncpy((uint8_t *)(rii_ptr + 1), oii, len); 7220 } 7221 break; 7222 case RII_LUTII: 7223 if (otii) 7224 strlcpy((uint8_t *)(rii_ptr + 1), otii, len); 7225 break; 7226 case RII_IIS: 7227 riid_ptr = (struct scsi_report_ident_info_descr *)(rii_ptr + 1); 7228 riid_ptr->type = RII_LUII; 7229 scsi_ulto2b(0xffff, riid_ptr->length); 7230 riid_ptr++; 7231 riid_ptr->type = RII_LUTII; 7232 scsi_ulto2b(0xffff, riid_ptr->length); 7233 } 7234 scsi_ulto2b(len, rii_ptr->length); 7235 7236 ctl_set_success(ctsio); 7237 ctsio->io_hdr.flags |= CTL_FLAG_ALLOCATED; 7238 ctsio->be_move_done = ctl_config_move_done; 7239 ctl_datamove((union ctl_io *)ctsio); 7240 return(retval); 7241 } 7242 7243 int 7244 ctl_report_tagret_port_groups(struct ctl_scsiio *ctsio) 7245 { 7246 struct ctl_softc *softc = CTL_SOFTC(ctsio); 7247 struct ctl_lun *lun = CTL_LUN(ctsio); 7248 struct scsi_maintenance_in *cdb; 7249 int retval; 7250 int alloc_len, ext, total_len = 0, g, pc, pg, ts, os; 7251 int num_ha_groups, num_target_ports, shared_group; 7252 struct ctl_port *port; 7253 struct scsi_target_group_data *rtg_ptr; 7254 struct scsi_target_group_data_extended *rtg_ext_ptr; 7255 struct scsi_target_port_group_descriptor *tpg_desc; 7256 7257 CTL_DEBUG_PRINT(("ctl_report_tagret_port_groups\n")); 7258 7259 cdb = (struct scsi_maintenance_in *)ctsio->cdb; 7260 retval = CTL_RETVAL_COMPLETE; 7261 7262 switch (cdb->byte2 & STG_PDF_MASK) { 7263 case STG_PDF_LENGTH: 7264 ext = 0; 7265 break; 7266 case STG_PDF_EXTENDED: 7267 ext = 1; 7268 break; 7269 default: 7270 ctl_set_invalid_field(/*ctsio*/ ctsio, 7271 /*sks_valid*/ 1, 7272 /*command*/ 1, 7273 /*field*/ 2, 7274 /*bit_valid*/ 1, 7275 /*bit*/ 5); 7276 ctl_done((union ctl_io *)ctsio); 7277 return(retval); 7278 } 7279 7280 num_target_ports = 0; 7281 shared_group = (softc->is_single != 0); 7282 mtx_lock(&softc->ctl_lock); 7283 STAILQ_FOREACH(port, &softc->port_list, links) { 7284 if ((port->status & CTL_PORT_STATUS_ONLINE) == 0) 7285 continue; 7286 if (ctl_lun_map_to_port(port, lun->lun) == UINT32_MAX) 7287 continue; 7288 num_target_ports++; 7289 if (port->status & CTL_PORT_STATUS_HA_SHARED) 7290 shared_group = 1; 7291 } 7292 mtx_unlock(&softc->ctl_lock); 7293 num_ha_groups = (softc->is_single) ? 0 : NUM_HA_SHELVES; 7294 7295 if (ext) 7296 total_len = sizeof(struct scsi_target_group_data_extended); 7297 else 7298 total_len = sizeof(struct scsi_target_group_data); 7299 total_len += sizeof(struct scsi_target_port_group_descriptor) * 7300 (shared_group + num_ha_groups) + 7301 sizeof(struct scsi_target_port_descriptor) * num_target_ports; 7302 7303 alloc_len = scsi_4btoul(cdb->length); 7304 7305 ctsio->kern_data_ptr = malloc(total_len, M_CTL, M_WAITOK | M_ZERO); 7306 ctsio->kern_sg_entries = 0; 7307 ctsio->kern_rel_offset = 0; 7308 ctsio->kern_data_len = min(total_len, alloc_len); 7309 ctsio->kern_total_len = ctsio->kern_data_len; 7310 7311 if (ext) { 7312 rtg_ext_ptr = (struct scsi_target_group_data_extended *) 7313 ctsio->kern_data_ptr; 7314 scsi_ulto4b(total_len - 4, rtg_ext_ptr->length); 7315 rtg_ext_ptr->format_type = 0x10; 7316 rtg_ext_ptr->implicit_transition_time = 0; 7317 tpg_desc = &rtg_ext_ptr->groups[0]; 7318 } else { 7319 rtg_ptr = (struct scsi_target_group_data *) 7320 ctsio->kern_data_ptr; 7321 scsi_ulto4b(total_len - 4, rtg_ptr->length); 7322 tpg_desc = &rtg_ptr->groups[0]; 7323 } 7324 7325 mtx_lock(&softc->ctl_lock); 7326 pg = softc->port_min / softc->port_cnt; 7327 if (lun->flags & (CTL_LUN_PRIMARY_SC | CTL_LUN_PEER_SC_PRIMARY)) { 7328 /* Some shelf is known to be primary. */ 7329 if (softc->ha_link == CTL_HA_LINK_OFFLINE) 7330 os = TPG_ASYMMETRIC_ACCESS_UNAVAILABLE; 7331 else if (softc->ha_link == CTL_HA_LINK_UNKNOWN) 7332 os = TPG_ASYMMETRIC_ACCESS_TRANSITIONING; 7333 else if (softc->ha_mode == CTL_HA_MODE_ACT_STBY) 7334 os = TPG_ASYMMETRIC_ACCESS_STANDBY; 7335 else 7336 os = TPG_ASYMMETRIC_ACCESS_NONOPTIMIZED; 7337 if (lun->flags & CTL_LUN_PRIMARY_SC) { 7338 ts = TPG_ASYMMETRIC_ACCESS_OPTIMIZED; 7339 } else { 7340 ts = os; 7341 os = TPG_ASYMMETRIC_ACCESS_OPTIMIZED; 7342 } 7343 } else { 7344 /* No known primary shelf. */ 7345 if (softc->ha_link == CTL_HA_LINK_OFFLINE) { 7346 ts = TPG_ASYMMETRIC_ACCESS_UNAVAILABLE; 7347 os = TPG_ASYMMETRIC_ACCESS_OPTIMIZED; 7348 } else if (softc->ha_link == CTL_HA_LINK_UNKNOWN) { 7349 ts = TPG_ASYMMETRIC_ACCESS_TRANSITIONING; 7350 os = TPG_ASYMMETRIC_ACCESS_OPTIMIZED; 7351 } else { 7352 ts = os = TPG_ASYMMETRIC_ACCESS_TRANSITIONING; 7353 } 7354 } 7355 if (shared_group) { 7356 tpg_desc->pref_state = ts; 7357 tpg_desc->support = TPG_AO_SUP | TPG_AN_SUP | TPG_S_SUP | 7358 TPG_U_SUP | TPG_T_SUP; 7359 scsi_ulto2b(1, tpg_desc->target_port_group); 7360 tpg_desc->status = TPG_IMPLICIT; 7361 pc = 0; 7362 STAILQ_FOREACH(port, &softc->port_list, links) { 7363 if ((port->status & CTL_PORT_STATUS_ONLINE) == 0) 7364 continue; 7365 if (!softc->is_single && 7366 (port->status & CTL_PORT_STATUS_HA_SHARED) == 0) 7367 continue; 7368 if (ctl_lun_map_to_port(port, lun->lun) == UINT32_MAX) 7369 continue; 7370 scsi_ulto2b(port->targ_port, tpg_desc->descriptors[pc]. 7371 relative_target_port_identifier); 7372 pc++; 7373 } 7374 tpg_desc->target_port_count = pc; 7375 tpg_desc = (struct scsi_target_port_group_descriptor *) 7376 &tpg_desc->descriptors[pc]; 7377 } 7378 for (g = 0; g < num_ha_groups; g++) { 7379 tpg_desc->pref_state = (g == pg) ? ts : os; 7380 tpg_desc->support = TPG_AO_SUP | TPG_AN_SUP | TPG_S_SUP | 7381 TPG_U_SUP | TPG_T_SUP; 7382 scsi_ulto2b(2 + g, tpg_desc->target_port_group); 7383 tpg_desc->status = TPG_IMPLICIT; 7384 pc = 0; 7385 STAILQ_FOREACH(port, &softc->port_list, links) { 7386 if (port->targ_port < g * softc->port_cnt || 7387 port->targ_port >= (g + 1) * softc->port_cnt) 7388 continue; 7389 if ((port->status & CTL_PORT_STATUS_ONLINE) == 0) 7390 continue; 7391 if (port->status & CTL_PORT_STATUS_HA_SHARED) 7392 continue; 7393 if (ctl_lun_map_to_port(port, lun->lun) == UINT32_MAX) 7394 continue; 7395 scsi_ulto2b(port->targ_port, tpg_desc->descriptors[pc]. 7396 relative_target_port_identifier); 7397 pc++; 7398 } 7399 tpg_desc->target_port_count = pc; 7400 tpg_desc = (struct scsi_target_port_group_descriptor *) 7401 &tpg_desc->descriptors[pc]; 7402 } 7403 mtx_unlock(&softc->ctl_lock); 7404 7405 ctl_set_success(ctsio); 7406 ctsio->io_hdr.flags |= CTL_FLAG_ALLOCATED; 7407 ctsio->be_move_done = ctl_config_move_done; 7408 ctl_datamove((union ctl_io *)ctsio); 7409 return(retval); 7410 } 7411 7412 int 7413 ctl_report_supported_opcodes(struct ctl_scsiio *ctsio) 7414 { 7415 struct ctl_lun *lun = CTL_LUN(ctsio); 7416 struct scsi_report_supported_opcodes *cdb; 7417 const struct ctl_cmd_entry *entry, *sentry; 7418 struct scsi_report_supported_opcodes_all *all; 7419 struct scsi_report_supported_opcodes_descr *descr; 7420 struct scsi_report_supported_opcodes_one *one; 7421 int retval; 7422 int alloc_len, total_len; 7423 int opcode, service_action, i, j, num; 7424 7425 CTL_DEBUG_PRINT(("ctl_report_supported_opcodes\n")); 7426 7427 cdb = (struct scsi_report_supported_opcodes *)ctsio->cdb; 7428 retval = CTL_RETVAL_COMPLETE; 7429 7430 opcode = cdb->requested_opcode; 7431 service_action = scsi_2btoul(cdb->requested_service_action); 7432 switch (cdb->options & RSO_OPTIONS_MASK) { 7433 case RSO_OPTIONS_ALL: 7434 num = 0; 7435 for (i = 0; i < 256; i++) { 7436 entry = &ctl_cmd_table[i]; 7437 if (entry->flags & CTL_CMD_FLAG_SA5) { 7438 for (j = 0; j < 32; j++) { 7439 sentry = &((const struct ctl_cmd_entry *) 7440 entry->execute)[j]; 7441 if (ctl_cmd_applicable( 7442 lun->be_lun->lun_type, sentry)) 7443 num++; 7444 } 7445 } else { 7446 if (ctl_cmd_applicable(lun->be_lun->lun_type, 7447 entry)) 7448 num++; 7449 } 7450 } 7451 total_len = sizeof(struct scsi_report_supported_opcodes_all) + 7452 num * sizeof(struct scsi_report_supported_opcodes_descr); 7453 break; 7454 case RSO_OPTIONS_OC: 7455 if (ctl_cmd_table[opcode].flags & CTL_CMD_FLAG_SA5) { 7456 ctl_set_invalid_field(/*ctsio*/ ctsio, 7457 /*sks_valid*/ 1, 7458 /*command*/ 1, 7459 /*field*/ 2, 7460 /*bit_valid*/ 1, 7461 /*bit*/ 2); 7462 ctl_done((union ctl_io *)ctsio); 7463 return (CTL_RETVAL_COMPLETE); 7464 } 7465 total_len = sizeof(struct scsi_report_supported_opcodes_one) + 32; 7466 break; 7467 case RSO_OPTIONS_OC_SA: 7468 if ((ctl_cmd_table[opcode].flags & CTL_CMD_FLAG_SA5) == 0 || 7469 service_action >= 32) { 7470 ctl_set_invalid_field(/*ctsio*/ ctsio, 7471 /*sks_valid*/ 1, 7472 /*command*/ 1, 7473 /*field*/ 2, 7474 /*bit_valid*/ 1, 7475 /*bit*/ 2); 7476 ctl_done((union ctl_io *)ctsio); 7477 return (CTL_RETVAL_COMPLETE); 7478 } 7479 /* FALLTHROUGH */ 7480 case RSO_OPTIONS_OC_ASA: 7481 total_len = sizeof(struct scsi_report_supported_opcodes_one) + 32; 7482 break; 7483 default: 7484 ctl_set_invalid_field(/*ctsio*/ ctsio, 7485 /*sks_valid*/ 1, 7486 /*command*/ 1, 7487 /*field*/ 2, 7488 /*bit_valid*/ 1, 7489 /*bit*/ 2); 7490 ctl_done((union ctl_io *)ctsio); 7491 return (CTL_RETVAL_COMPLETE); 7492 } 7493 7494 alloc_len = scsi_4btoul(cdb->length); 7495 7496 ctsio->kern_data_ptr = malloc(total_len, M_CTL, M_WAITOK | M_ZERO); 7497 ctsio->kern_sg_entries = 0; 7498 ctsio->kern_rel_offset = 0; 7499 ctsio->kern_data_len = min(total_len, alloc_len); 7500 ctsio->kern_total_len = ctsio->kern_data_len; 7501 7502 switch (cdb->options & RSO_OPTIONS_MASK) { 7503 case RSO_OPTIONS_ALL: 7504 all = (struct scsi_report_supported_opcodes_all *) 7505 ctsio->kern_data_ptr; 7506 num = 0; 7507 for (i = 0; i < 256; i++) { 7508 entry = &ctl_cmd_table[i]; 7509 if (entry->flags & CTL_CMD_FLAG_SA5) { 7510 for (j = 0; j < 32; j++) { 7511 sentry = &((const struct ctl_cmd_entry *) 7512 entry->execute)[j]; 7513 if (!ctl_cmd_applicable( 7514 lun->be_lun->lun_type, sentry)) 7515 continue; 7516 descr = &all->descr[num++]; 7517 descr->opcode = i; 7518 scsi_ulto2b(j, descr->service_action); 7519 descr->flags = RSO_SERVACTV; 7520 scsi_ulto2b(sentry->length, 7521 descr->cdb_length); 7522 } 7523 } else { 7524 if (!ctl_cmd_applicable(lun->be_lun->lun_type, 7525 entry)) 7526 continue; 7527 descr = &all->descr[num++]; 7528 descr->opcode = i; 7529 scsi_ulto2b(0, descr->service_action); 7530 descr->flags = 0; 7531 scsi_ulto2b(entry->length, descr->cdb_length); 7532 } 7533 } 7534 scsi_ulto4b( 7535 num * sizeof(struct scsi_report_supported_opcodes_descr), 7536 all->length); 7537 break; 7538 case RSO_OPTIONS_OC: 7539 one = (struct scsi_report_supported_opcodes_one *) 7540 ctsio->kern_data_ptr; 7541 entry = &ctl_cmd_table[opcode]; 7542 goto fill_one; 7543 case RSO_OPTIONS_OC_SA: 7544 one = (struct scsi_report_supported_opcodes_one *) 7545 ctsio->kern_data_ptr; 7546 entry = &ctl_cmd_table[opcode]; 7547 entry = &((const struct ctl_cmd_entry *) 7548 entry->execute)[service_action]; 7549 fill_one: 7550 if (ctl_cmd_applicable(lun->be_lun->lun_type, entry)) { 7551 one->support = 3; 7552 scsi_ulto2b(entry->length, one->cdb_length); 7553 one->cdb_usage[0] = opcode; 7554 memcpy(&one->cdb_usage[1], entry->usage, 7555 entry->length - 1); 7556 } else 7557 one->support = 1; 7558 break; 7559 case RSO_OPTIONS_OC_ASA: 7560 one = (struct scsi_report_supported_opcodes_one *) 7561 ctsio->kern_data_ptr; 7562 entry = &ctl_cmd_table[opcode]; 7563 if (entry->flags & CTL_CMD_FLAG_SA5) { 7564 entry = &((const struct ctl_cmd_entry *) 7565 entry->execute)[service_action]; 7566 } else if (service_action != 0) { 7567 one->support = 1; 7568 break; 7569 } 7570 goto fill_one; 7571 } 7572 7573 ctl_set_success(ctsio); 7574 ctsio->io_hdr.flags |= CTL_FLAG_ALLOCATED; 7575 ctsio->be_move_done = ctl_config_move_done; 7576 ctl_datamove((union ctl_io *)ctsio); 7577 return(retval); 7578 } 7579 7580 int 7581 ctl_report_supported_tmf(struct ctl_scsiio *ctsio) 7582 { 7583 struct scsi_report_supported_tmf *cdb; 7584 struct scsi_report_supported_tmf_ext_data *data; 7585 int retval; 7586 int alloc_len, total_len; 7587 7588 CTL_DEBUG_PRINT(("ctl_report_supported_tmf\n")); 7589 7590 cdb = (struct scsi_report_supported_tmf *)ctsio->cdb; 7591 7592 retval = CTL_RETVAL_COMPLETE; 7593 7594 if (cdb->options & RST_REPD) 7595 total_len = sizeof(struct scsi_report_supported_tmf_ext_data); 7596 else 7597 total_len = sizeof(struct scsi_report_supported_tmf_data); 7598 alloc_len = scsi_4btoul(cdb->length); 7599 7600 ctsio->kern_data_ptr = malloc(total_len, M_CTL, M_WAITOK | M_ZERO); 7601 ctsio->kern_sg_entries = 0; 7602 ctsio->kern_rel_offset = 0; 7603 ctsio->kern_data_len = min(total_len, alloc_len); 7604 ctsio->kern_total_len = ctsio->kern_data_len; 7605 7606 data = (struct scsi_report_supported_tmf_ext_data *)ctsio->kern_data_ptr; 7607 data->byte1 |= RST_ATS | RST_ATSS | RST_CTSS | RST_LURS | RST_QTS | 7608 RST_TRS; 7609 data->byte2 |= RST_QAES | RST_QTSS | RST_ITNRS; 7610 data->length = total_len - 4; 7611 7612 ctl_set_success(ctsio); 7613 ctsio->io_hdr.flags |= CTL_FLAG_ALLOCATED; 7614 ctsio->be_move_done = ctl_config_move_done; 7615 ctl_datamove((union ctl_io *)ctsio); 7616 return (retval); 7617 } 7618 7619 int 7620 ctl_report_timestamp(struct ctl_scsiio *ctsio) 7621 { 7622 struct scsi_report_timestamp *cdb; 7623 struct scsi_report_timestamp_data *data; 7624 struct timeval tv; 7625 int64_t timestamp; 7626 int retval; 7627 int alloc_len, total_len; 7628 7629 CTL_DEBUG_PRINT(("ctl_report_timestamp\n")); 7630 7631 cdb = (struct scsi_report_timestamp *)ctsio->cdb; 7632 7633 retval = CTL_RETVAL_COMPLETE; 7634 7635 total_len = sizeof(struct scsi_report_timestamp_data); 7636 alloc_len = scsi_4btoul(cdb->length); 7637 7638 ctsio->kern_data_ptr = malloc(total_len, M_CTL, M_WAITOK | M_ZERO); 7639 ctsio->kern_sg_entries = 0; 7640 ctsio->kern_rel_offset = 0; 7641 ctsio->kern_data_len = min(total_len, alloc_len); 7642 ctsio->kern_total_len = ctsio->kern_data_len; 7643 7644 data = (struct scsi_report_timestamp_data *)ctsio->kern_data_ptr; 7645 scsi_ulto2b(sizeof(*data) - 2, data->length); 7646 data->origin = RTS_ORIG_OUTSIDE; 7647 getmicrotime(&tv); 7648 timestamp = (int64_t)tv.tv_sec * 1000 + tv.tv_usec / 1000; 7649 scsi_ulto4b(timestamp >> 16, data->timestamp); 7650 scsi_ulto2b(timestamp & 0xffff, &data->timestamp[4]); 7651 7652 ctl_set_success(ctsio); 7653 ctsio->io_hdr.flags |= CTL_FLAG_ALLOCATED; 7654 ctsio->be_move_done = ctl_config_move_done; 7655 ctl_datamove((union ctl_io *)ctsio); 7656 return (retval); 7657 } 7658 7659 int 7660 ctl_persistent_reserve_in(struct ctl_scsiio *ctsio) 7661 { 7662 struct ctl_softc *softc = CTL_SOFTC(ctsio); 7663 struct ctl_lun *lun = CTL_LUN(ctsio); 7664 struct scsi_per_res_in *cdb; 7665 int alloc_len, total_len = 0; 7666 /* struct scsi_per_res_in_rsrv in_data; */ 7667 uint64_t key; 7668 7669 CTL_DEBUG_PRINT(("ctl_persistent_reserve_in\n")); 7670 7671 cdb = (struct scsi_per_res_in *)ctsio->cdb; 7672 7673 alloc_len = scsi_2btoul(cdb->length); 7674 7675 retry: 7676 mtx_lock(&lun->lun_lock); 7677 switch (cdb->action) { 7678 case SPRI_RK: /* read keys */ 7679 total_len = sizeof(struct scsi_per_res_in_keys) + 7680 lun->pr_key_count * 7681 sizeof(struct scsi_per_res_key); 7682 break; 7683 case SPRI_RR: /* read reservation */ 7684 if (lun->flags & CTL_LUN_PR_RESERVED) 7685 total_len = sizeof(struct scsi_per_res_in_rsrv); 7686 else 7687 total_len = sizeof(struct scsi_per_res_in_header); 7688 break; 7689 case SPRI_RC: /* report capabilities */ 7690 total_len = sizeof(struct scsi_per_res_cap); 7691 break; 7692 case SPRI_RS: /* read full status */ 7693 total_len = sizeof(struct scsi_per_res_in_header) + 7694 (sizeof(struct scsi_per_res_in_full_desc) + 256) * 7695 lun->pr_key_count; 7696 break; 7697 default: 7698 panic("%s: Invalid PR type %#x", __func__, cdb->action); 7699 } 7700 mtx_unlock(&lun->lun_lock); 7701 7702 ctsio->kern_data_ptr = malloc(total_len, M_CTL, M_WAITOK | M_ZERO); 7703 ctsio->kern_rel_offset = 0; 7704 ctsio->kern_sg_entries = 0; 7705 ctsio->kern_data_len = min(total_len, alloc_len); 7706 ctsio->kern_total_len = ctsio->kern_data_len; 7707 7708 mtx_lock(&lun->lun_lock); 7709 switch (cdb->action) { 7710 case SPRI_RK: { // read keys 7711 struct scsi_per_res_in_keys *res_keys; 7712 int i, key_count; 7713 7714 res_keys = (struct scsi_per_res_in_keys*)ctsio->kern_data_ptr; 7715 7716 /* 7717 * We had to drop the lock to allocate our buffer, which 7718 * leaves time for someone to come in with another 7719 * persistent reservation. (That is unlikely, though, 7720 * since this should be the only persistent reservation 7721 * command active right now.) 7722 */ 7723 if (total_len != (sizeof(struct scsi_per_res_in_keys) + 7724 (lun->pr_key_count * 7725 sizeof(struct scsi_per_res_key)))){ 7726 mtx_unlock(&lun->lun_lock); 7727 free(ctsio->kern_data_ptr, M_CTL); 7728 printf("%s: reservation length changed, retrying\n", 7729 __func__); 7730 goto retry; 7731 } 7732 7733 scsi_ulto4b(lun->pr_generation, res_keys->header.generation); 7734 7735 scsi_ulto4b(sizeof(struct scsi_per_res_key) * 7736 lun->pr_key_count, res_keys->header.length); 7737 7738 for (i = 0, key_count = 0; i < CTL_MAX_INITIATORS; i++) { 7739 if ((key = ctl_get_prkey(lun, i)) == 0) 7740 continue; 7741 7742 /* 7743 * We used lun->pr_key_count to calculate the 7744 * size to allocate. If it turns out the number of 7745 * initiators with the registered flag set is 7746 * larger than that (i.e. they haven't been kept in 7747 * sync), we've got a problem. 7748 */ 7749 if (key_count >= lun->pr_key_count) { 7750 key_count++; 7751 continue; 7752 } 7753 scsi_u64to8b(key, res_keys->keys[key_count].key); 7754 key_count++; 7755 } 7756 break; 7757 } 7758 case SPRI_RR: { // read reservation 7759 struct scsi_per_res_in_rsrv *res; 7760 int tmp_len, header_only; 7761 7762 res = (struct scsi_per_res_in_rsrv *)ctsio->kern_data_ptr; 7763 7764 scsi_ulto4b(lun->pr_generation, res->header.generation); 7765 7766 if (lun->flags & CTL_LUN_PR_RESERVED) 7767 { 7768 tmp_len = sizeof(struct scsi_per_res_in_rsrv); 7769 scsi_ulto4b(sizeof(struct scsi_per_res_in_rsrv_data), 7770 res->header.length); 7771 header_only = 0; 7772 } else { 7773 tmp_len = sizeof(struct scsi_per_res_in_header); 7774 scsi_ulto4b(0, res->header.length); 7775 header_only = 1; 7776 } 7777 7778 /* 7779 * We had to drop the lock to allocate our buffer, which 7780 * leaves time for someone to come in with another 7781 * persistent reservation. (That is unlikely, though, 7782 * since this should be the only persistent reservation 7783 * command active right now.) 7784 */ 7785 if (tmp_len != total_len) { 7786 mtx_unlock(&lun->lun_lock); 7787 free(ctsio->kern_data_ptr, M_CTL); 7788 printf("%s: reservation status changed, retrying\n", 7789 __func__); 7790 goto retry; 7791 } 7792 7793 /* 7794 * No reservation held, so we're done. 7795 */ 7796 if (header_only != 0) 7797 break; 7798 7799 /* 7800 * If the registration is an All Registrants type, the key 7801 * is 0, since it doesn't really matter. 7802 */ 7803 if (lun->pr_res_idx != CTL_PR_ALL_REGISTRANTS) { 7804 scsi_u64to8b(ctl_get_prkey(lun, lun->pr_res_idx), 7805 res->data.reservation); 7806 } 7807 res->data.scopetype = lun->pr_res_type; 7808 break; 7809 } 7810 case SPRI_RC: //report capabilities 7811 { 7812 struct scsi_per_res_cap *res_cap; 7813 uint16_t type_mask; 7814 7815 res_cap = (struct scsi_per_res_cap *)ctsio->kern_data_ptr; 7816 scsi_ulto2b(sizeof(*res_cap), res_cap->length); 7817 res_cap->flags1 = SPRI_CRH; 7818 res_cap->flags2 = SPRI_TMV | SPRI_ALLOW_5; 7819 type_mask = SPRI_TM_WR_EX_AR | 7820 SPRI_TM_EX_AC_RO | 7821 SPRI_TM_WR_EX_RO | 7822 SPRI_TM_EX_AC | 7823 SPRI_TM_WR_EX | 7824 SPRI_TM_EX_AC_AR; 7825 scsi_ulto2b(type_mask, res_cap->type_mask); 7826 break; 7827 } 7828 case SPRI_RS: { // read full status 7829 struct scsi_per_res_in_full *res_status; 7830 struct scsi_per_res_in_full_desc *res_desc; 7831 struct ctl_port *port; 7832 int i, len; 7833 7834 res_status = (struct scsi_per_res_in_full*)ctsio->kern_data_ptr; 7835 7836 /* 7837 * We had to drop the lock to allocate our buffer, which 7838 * leaves time for someone to come in with another 7839 * persistent reservation. (That is unlikely, though, 7840 * since this should be the only persistent reservation 7841 * command active right now.) 7842 */ 7843 if (total_len < (sizeof(struct scsi_per_res_in_header) + 7844 (sizeof(struct scsi_per_res_in_full_desc) + 256) * 7845 lun->pr_key_count)){ 7846 mtx_unlock(&lun->lun_lock); 7847 free(ctsio->kern_data_ptr, M_CTL); 7848 printf("%s: reservation length changed, retrying\n", 7849 __func__); 7850 goto retry; 7851 } 7852 7853 scsi_ulto4b(lun->pr_generation, res_status->header.generation); 7854 7855 res_desc = &res_status->desc[0]; 7856 for (i = 0; i < CTL_MAX_INITIATORS; i++) { 7857 if ((key = ctl_get_prkey(lun, i)) == 0) 7858 continue; 7859 7860 scsi_u64to8b(key, res_desc->res_key.key); 7861 if ((lun->flags & CTL_LUN_PR_RESERVED) && 7862 (lun->pr_res_idx == i || 7863 lun->pr_res_idx == CTL_PR_ALL_REGISTRANTS)) { 7864 res_desc->flags = SPRI_FULL_R_HOLDER; 7865 res_desc->scopetype = lun->pr_res_type; 7866 } 7867 scsi_ulto2b(i / CTL_MAX_INIT_PER_PORT, 7868 res_desc->rel_trgt_port_id); 7869 len = 0; 7870 port = softc->ctl_ports[i / CTL_MAX_INIT_PER_PORT]; 7871 if (port != NULL) 7872 len = ctl_create_iid(port, 7873 i % CTL_MAX_INIT_PER_PORT, 7874 res_desc->transport_id); 7875 scsi_ulto4b(len, res_desc->additional_length); 7876 res_desc = (struct scsi_per_res_in_full_desc *) 7877 &res_desc->transport_id[len]; 7878 } 7879 scsi_ulto4b((uint8_t *)res_desc - (uint8_t *)&res_status->desc[0], 7880 res_status->header.length); 7881 break; 7882 } 7883 default: 7884 panic("%s: Invalid PR type %#x", __func__, cdb->action); 7885 } 7886 mtx_unlock(&lun->lun_lock); 7887 7888 ctl_set_success(ctsio); 7889 ctsio->io_hdr.flags |= CTL_FLAG_ALLOCATED; 7890 ctsio->be_move_done = ctl_config_move_done; 7891 ctl_datamove((union ctl_io *)ctsio); 7892 return (CTL_RETVAL_COMPLETE); 7893 } 7894 7895 /* 7896 * Returns 0 if ctl_persistent_reserve_out() should continue, non-zero if 7897 * it should return. 7898 */ 7899 static int 7900 ctl_pro_preempt(struct ctl_softc *softc, struct ctl_lun *lun, uint64_t res_key, 7901 uint64_t sa_res_key, uint8_t type, uint32_t residx, 7902 struct ctl_scsiio *ctsio, struct scsi_per_res_out *cdb, 7903 struct scsi_per_res_out_parms* param) 7904 { 7905 union ctl_ha_msg persis_io; 7906 int i; 7907 7908 mtx_lock(&lun->lun_lock); 7909 if (sa_res_key == 0) { 7910 if (lun->pr_res_idx == CTL_PR_ALL_REGISTRANTS) { 7911 /* validate scope and type */ 7912 if ((cdb->scope_type & SPR_SCOPE_MASK) != 7913 SPR_LU_SCOPE) { 7914 mtx_unlock(&lun->lun_lock); 7915 ctl_set_invalid_field(/*ctsio*/ ctsio, 7916 /*sks_valid*/ 1, 7917 /*command*/ 1, 7918 /*field*/ 2, 7919 /*bit_valid*/ 1, 7920 /*bit*/ 4); 7921 ctl_done((union ctl_io *)ctsio); 7922 return (1); 7923 } 7924 7925 if (type>8 || type==2 || type==4 || type==0) { 7926 mtx_unlock(&lun->lun_lock); 7927 ctl_set_invalid_field(/*ctsio*/ ctsio, 7928 /*sks_valid*/ 1, 7929 /*command*/ 1, 7930 /*field*/ 2, 7931 /*bit_valid*/ 1, 7932 /*bit*/ 0); 7933 ctl_done((union ctl_io *)ctsio); 7934 return (1); 7935 } 7936 7937 /* 7938 * Unregister everybody else and build UA for 7939 * them 7940 */ 7941 for(i = 0; i < CTL_MAX_INITIATORS; i++) { 7942 if (i == residx || ctl_get_prkey(lun, i) == 0) 7943 continue; 7944 7945 ctl_clr_prkey(lun, i); 7946 ctl_est_ua(lun, i, CTL_UA_REG_PREEMPT); 7947 } 7948 lun->pr_key_count = 1; 7949 lun->pr_res_type = type; 7950 if (lun->pr_res_type != SPR_TYPE_WR_EX_AR && 7951 lun->pr_res_type != SPR_TYPE_EX_AC_AR) 7952 lun->pr_res_idx = residx; 7953 lun->pr_generation++; 7954 mtx_unlock(&lun->lun_lock); 7955 7956 /* send msg to other side */ 7957 persis_io.hdr.nexus = ctsio->io_hdr.nexus; 7958 persis_io.hdr.msg_type = CTL_MSG_PERS_ACTION; 7959 persis_io.pr.pr_info.action = CTL_PR_PREEMPT; 7960 persis_io.pr.pr_info.residx = lun->pr_res_idx; 7961 persis_io.pr.pr_info.res_type = type; 7962 memcpy(persis_io.pr.pr_info.sa_res_key, 7963 param->serv_act_res_key, 7964 sizeof(param->serv_act_res_key)); 7965 ctl_ha_msg_send(CTL_HA_CHAN_CTL, &persis_io, 7966 sizeof(persis_io.pr), M_WAITOK); 7967 } else { 7968 /* not all registrants */ 7969 mtx_unlock(&lun->lun_lock); 7970 free(ctsio->kern_data_ptr, M_CTL); 7971 ctl_set_invalid_field(ctsio, 7972 /*sks_valid*/ 1, 7973 /*command*/ 0, 7974 /*field*/ 8, 7975 /*bit_valid*/ 0, 7976 /*bit*/ 0); 7977 ctl_done((union ctl_io *)ctsio); 7978 return (1); 7979 } 7980 } else if (lun->pr_res_idx == CTL_PR_ALL_REGISTRANTS 7981 || !(lun->flags & CTL_LUN_PR_RESERVED)) { 7982 int found = 0; 7983 7984 if (res_key == sa_res_key) { 7985 /* special case */ 7986 /* 7987 * The spec implies this is not good but doesn't 7988 * say what to do. There are two choices either 7989 * generate a res conflict or check condition 7990 * with illegal field in parameter data. Since 7991 * that is what is done when the sa_res_key is 7992 * zero I'll take that approach since this has 7993 * to do with the sa_res_key. 7994 */ 7995 mtx_unlock(&lun->lun_lock); 7996 free(ctsio->kern_data_ptr, M_CTL); 7997 ctl_set_invalid_field(ctsio, 7998 /*sks_valid*/ 1, 7999 /*command*/ 0, 8000 /*field*/ 8, 8001 /*bit_valid*/ 0, 8002 /*bit*/ 0); 8003 ctl_done((union ctl_io *)ctsio); 8004 return (1); 8005 } 8006 8007 for (i = 0; i < CTL_MAX_INITIATORS; i++) { 8008 if (ctl_get_prkey(lun, i) != sa_res_key) 8009 continue; 8010 8011 found = 1; 8012 ctl_clr_prkey(lun, i); 8013 lun->pr_key_count--; 8014 ctl_est_ua(lun, i, CTL_UA_REG_PREEMPT); 8015 } 8016 if (!found) { 8017 mtx_unlock(&lun->lun_lock); 8018 free(ctsio->kern_data_ptr, M_CTL); 8019 ctl_set_reservation_conflict(ctsio); 8020 ctl_done((union ctl_io *)ctsio); 8021 return (CTL_RETVAL_COMPLETE); 8022 } 8023 lun->pr_generation++; 8024 mtx_unlock(&lun->lun_lock); 8025 8026 /* send msg to other side */ 8027 persis_io.hdr.nexus = ctsio->io_hdr.nexus; 8028 persis_io.hdr.msg_type = CTL_MSG_PERS_ACTION; 8029 persis_io.pr.pr_info.action = CTL_PR_PREEMPT; 8030 persis_io.pr.pr_info.residx = lun->pr_res_idx; 8031 persis_io.pr.pr_info.res_type = type; 8032 memcpy(persis_io.pr.pr_info.sa_res_key, 8033 param->serv_act_res_key, 8034 sizeof(param->serv_act_res_key)); 8035 ctl_ha_msg_send(CTL_HA_CHAN_CTL, &persis_io, 8036 sizeof(persis_io.pr), M_WAITOK); 8037 } else { 8038 /* Reserved but not all registrants */ 8039 /* sa_res_key is res holder */ 8040 if (sa_res_key == ctl_get_prkey(lun, lun->pr_res_idx)) { 8041 /* validate scope and type */ 8042 if ((cdb->scope_type & SPR_SCOPE_MASK) != 8043 SPR_LU_SCOPE) { 8044 mtx_unlock(&lun->lun_lock); 8045 ctl_set_invalid_field(/*ctsio*/ ctsio, 8046 /*sks_valid*/ 1, 8047 /*command*/ 1, 8048 /*field*/ 2, 8049 /*bit_valid*/ 1, 8050 /*bit*/ 4); 8051 ctl_done((union ctl_io *)ctsio); 8052 return (1); 8053 } 8054 8055 if (type>8 || type==2 || type==4 || type==0) { 8056 mtx_unlock(&lun->lun_lock); 8057 ctl_set_invalid_field(/*ctsio*/ ctsio, 8058 /*sks_valid*/ 1, 8059 /*command*/ 1, 8060 /*field*/ 2, 8061 /*bit_valid*/ 1, 8062 /*bit*/ 0); 8063 ctl_done((union ctl_io *)ctsio); 8064 return (1); 8065 } 8066 8067 /* 8068 * Do the following: 8069 * if sa_res_key != res_key remove all 8070 * registrants w/sa_res_key and generate UA 8071 * for these registrants(Registrations 8072 * Preempted) if it wasn't an exclusive 8073 * reservation generate UA(Reservations 8074 * Preempted) for all other registered nexuses 8075 * if the type has changed. Establish the new 8076 * reservation and holder. If res_key and 8077 * sa_res_key are the same do the above 8078 * except don't unregister the res holder. 8079 */ 8080 8081 for(i = 0; i < CTL_MAX_INITIATORS; i++) { 8082 if (i == residx || ctl_get_prkey(lun, i) == 0) 8083 continue; 8084 8085 if (sa_res_key == ctl_get_prkey(lun, i)) { 8086 ctl_clr_prkey(lun, i); 8087 lun->pr_key_count--; 8088 ctl_est_ua(lun, i, CTL_UA_REG_PREEMPT); 8089 } else if (type != lun->pr_res_type && 8090 (lun->pr_res_type == SPR_TYPE_WR_EX_RO || 8091 lun->pr_res_type == SPR_TYPE_EX_AC_RO)) { 8092 ctl_est_ua(lun, i, CTL_UA_RES_RELEASE); 8093 } 8094 } 8095 lun->pr_res_type = type; 8096 if (lun->pr_res_type != SPR_TYPE_WR_EX_AR && 8097 lun->pr_res_type != SPR_TYPE_EX_AC_AR) 8098 lun->pr_res_idx = residx; 8099 else 8100 lun->pr_res_idx = CTL_PR_ALL_REGISTRANTS; 8101 lun->pr_generation++; 8102 mtx_unlock(&lun->lun_lock); 8103 8104 persis_io.hdr.nexus = ctsio->io_hdr.nexus; 8105 persis_io.hdr.msg_type = CTL_MSG_PERS_ACTION; 8106 persis_io.pr.pr_info.action = CTL_PR_PREEMPT; 8107 persis_io.pr.pr_info.residx = lun->pr_res_idx; 8108 persis_io.pr.pr_info.res_type = type; 8109 memcpy(persis_io.pr.pr_info.sa_res_key, 8110 param->serv_act_res_key, 8111 sizeof(param->serv_act_res_key)); 8112 ctl_ha_msg_send(CTL_HA_CHAN_CTL, &persis_io, 8113 sizeof(persis_io.pr), M_WAITOK); 8114 } else { 8115 /* 8116 * sa_res_key is not the res holder just 8117 * remove registrants 8118 */ 8119 int found=0; 8120 8121 for (i = 0; i < CTL_MAX_INITIATORS; i++) { 8122 if (sa_res_key != ctl_get_prkey(lun, i)) 8123 continue; 8124 8125 found = 1; 8126 ctl_clr_prkey(lun, i); 8127 lun->pr_key_count--; 8128 ctl_est_ua(lun, i, CTL_UA_REG_PREEMPT); 8129 } 8130 8131 if (!found) { 8132 mtx_unlock(&lun->lun_lock); 8133 free(ctsio->kern_data_ptr, M_CTL); 8134 ctl_set_reservation_conflict(ctsio); 8135 ctl_done((union ctl_io *)ctsio); 8136 return (1); 8137 } 8138 lun->pr_generation++; 8139 mtx_unlock(&lun->lun_lock); 8140 8141 persis_io.hdr.nexus = ctsio->io_hdr.nexus; 8142 persis_io.hdr.msg_type = CTL_MSG_PERS_ACTION; 8143 persis_io.pr.pr_info.action = CTL_PR_PREEMPT; 8144 persis_io.pr.pr_info.residx = lun->pr_res_idx; 8145 persis_io.pr.pr_info.res_type = type; 8146 memcpy(persis_io.pr.pr_info.sa_res_key, 8147 param->serv_act_res_key, 8148 sizeof(param->serv_act_res_key)); 8149 ctl_ha_msg_send(CTL_HA_CHAN_CTL, &persis_io, 8150 sizeof(persis_io.pr), M_WAITOK); 8151 } 8152 } 8153 return (0); 8154 } 8155 8156 static void 8157 ctl_pro_preempt_other(struct ctl_lun *lun, union ctl_ha_msg *msg) 8158 { 8159 uint64_t sa_res_key; 8160 int i; 8161 8162 sa_res_key = scsi_8btou64(msg->pr.pr_info.sa_res_key); 8163 8164 if (lun->pr_res_idx == CTL_PR_ALL_REGISTRANTS 8165 || lun->pr_res_idx == CTL_PR_NO_RESERVATION 8166 || sa_res_key != ctl_get_prkey(lun, lun->pr_res_idx)) { 8167 if (sa_res_key == 0) { 8168 /* 8169 * Unregister everybody else and build UA for 8170 * them 8171 */ 8172 for(i = 0; i < CTL_MAX_INITIATORS; i++) { 8173 if (i == msg->pr.pr_info.residx || 8174 ctl_get_prkey(lun, i) == 0) 8175 continue; 8176 8177 ctl_clr_prkey(lun, i); 8178 ctl_est_ua(lun, i, CTL_UA_REG_PREEMPT); 8179 } 8180 8181 lun->pr_key_count = 1; 8182 lun->pr_res_type = msg->pr.pr_info.res_type; 8183 if (lun->pr_res_type != SPR_TYPE_WR_EX_AR && 8184 lun->pr_res_type != SPR_TYPE_EX_AC_AR) 8185 lun->pr_res_idx = msg->pr.pr_info.residx; 8186 } else { 8187 for (i = 0; i < CTL_MAX_INITIATORS; i++) { 8188 if (sa_res_key == ctl_get_prkey(lun, i)) 8189 continue; 8190 8191 ctl_clr_prkey(lun, i); 8192 lun->pr_key_count--; 8193 ctl_est_ua(lun, i, CTL_UA_REG_PREEMPT); 8194 } 8195 } 8196 } else { 8197 for (i = 0; i < CTL_MAX_INITIATORS; i++) { 8198 if (i == msg->pr.pr_info.residx || 8199 ctl_get_prkey(lun, i) == 0) 8200 continue; 8201 8202 if (sa_res_key == ctl_get_prkey(lun, i)) { 8203 ctl_clr_prkey(lun, i); 8204 lun->pr_key_count--; 8205 ctl_est_ua(lun, i, CTL_UA_REG_PREEMPT); 8206 } else if (msg->pr.pr_info.res_type != lun->pr_res_type 8207 && (lun->pr_res_type == SPR_TYPE_WR_EX_RO || 8208 lun->pr_res_type == SPR_TYPE_EX_AC_RO)) { 8209 ctl_est_ua(lun, i, CTL_UA_RES_RELEASE); 8210 } 8211 } 8212 lun->pr_res_type = msg->pr.pr_info.res_type; 8213 if (lun->pr_res_type != SPR_TYPE_WR_EX_AR && 8214 lun->pr_res_type != SPR_TYPE_EX_AC_AR) 8215 lun->pr_res_idx = msg->pr.pr_info.residx; 8216 else 8217 lun->pr_res_idx = CTL_PR_ALL_REGISTRANTS; 8218 } 8219 lun->pr_generation++; 8220 8221 } 8222 8223 int 8224 ctl_persistent_reserve_out(struct ctl_scsiio *ctsio) 8225 { 8226 struct ctl_softc *softc = CTL_SOFTC(ctsio); 8227 struct ctl_lun *lun = CTL_LUN(ctsio); 8228 int retval; 8229 uint32_t param_len; 8230 struct scsi_per_res_out *cdb; 8231 struct scsi_per_res_out_parms* param; 8232 uint32_t residx; 8233 uint64_t res_key, sa_res_key, key; 8234 uint8_t type; 8235 union ctl_ha_msg persis_io; 8236 int i; 8237 8238 CTL_DEBUG_PRINT(("ctl_persistent_reserve_out\n")); 8239 8240 cdb = (struct scsi_per_res_out *)ctsio->cdb; 8241 retval = CTL_RETVAL_COMPLETE; 8242 8243 /* 8244 * We only support whole-LUN scope. The scope & type are ignored for 8245 * register, register and ignore existing key and clear. 8246 * We sometimes ignore scope and type on preempts too!! 8247 * Verify reservation type here as well. 8248 */ 8249 type = cdb->scope_type & SPR_TYPE_MASK; 8250 if ((cdb->action == SPRO_RESERVE) 8251 || (cdb->action == SPRO_RELEASE)) { 8252 if ((cdb->scope_type & SPR_SCOPE_MASK) != SPR_LU_SCOPE) { 8253 ctl_set_invalid_field(/*ctsio*/ ctsio, 8254 /*sks_valid*/ 1, 8255 /*command*/ 1, 8256 /*field*/ 2, 8257 /*bit_valid*/ 1, 8258 /*bit*/ 4); 8259 ctl_done((union ctl_io *)ctsio); 8260 return (CTL_RETVAL_COMPLETE); 8261 } 8262 8263 if (type>8 || type==2 || type==4 || type==0) { 8264 ctl_set_invalid_field(/*ctsio*/ ctsio, 8265 /*sks_valid*/ 1, 8266 /*command*/ 1, 8267 /*field*/ 2, 8268 /*bit_valid*/ 1, 8269 /*bit*/ 0); 8270 ctl_done((union ctl_io *)ctsio); 8271 return (CTL_RETVAL_COMPLETE); 8272 } 8273 } 8274 8275 param_len = scsi_4btoul(cdb->length); 8276 8277 if ((ctsio->io_hdr.flags & CTL_FLAG_ALLOCATED) == 0) { 8278 ctsio->kern_data_ptr = malloc(param_len, M_CTL, M_WAITOK); 8279 ctsio->kern_data_len = param_len; 8280 ctsio->kern_total_len = param_len; 8281 ctsio->kern_rel_offset = 0; 8282 ctsio->kern_sg_entries = 0; 8283 ctsio->io_hdr.flags |= CTL_FLAG_ALLOCATED; 8284 ctsio->be_move_done = ctl_config_move_done; 8285 ctl_datamove((union ctl_io *)ctsio); 8286 8287 return (CTL_RETVAL_COMPLETE); 8288 } 8289 8290 param = (struct scsi_per_res_out_parms *)ctsio->kern_data_ptr; 8291 8292 residx = ctl_get_initindex(&ctsio->io_hdr.nexus); 8293 res_key = scsi_8btou64(param->res_key.key); 8294 sa_res_key = scsi_8btou64(param->serv_act_res_key); 8295 8296 /* 8297 * Validate the reservation key here except for SPRO_REG_IGNO 8298 * This must be done for all other service actions 8299 */ 8300 if ((cdb->action & SPRO_ACTION_MASK) != SPRO_REG_IGNO) { 8301 mtx_lock(&lun->lun_lock); 8302 if ((key = ctl_get_prkey(lun, residx)) != 0) { 8303 if (res_key != key) { 8304 /* 8305 * The current key passed in doesn't match 8306 * the one the initiator previously 8307 * registered. 8308 */ 8309 mtx_unlock(&lun->lun_lock); 8310 free(ctsio->kern_data_ptr, M_CTL); 8311 ctl_set_reservation_conflict(ctsio); 8312 ctl_done((union ctl_io *)ctsio); 8313 return (CTL_RETVAL_COMPLETE); 8314 } 8315 } else if ((cdb->action & SPRO_ACTION_MASK) != SPRO_REGISTER) { 8316 /* 8317 * We are not registered 8318 */ 8319 mtx_unlock(&lun->lun_lock); 8320 free(ctsio->kern_data_ptr, M_CTL); 8321 ctl_set_reservation_conflict(ctsio); 8322 ctl_done((union ctl_io *)ctsio); 8323 return (CTL_RETVAL_COMPLETE); 8324 } else if (res_key != 0) { 8325 /* 8326 * We are not registered and trying to register but 8327 * the register key isn't zero. 8328 */ 8329 mtx_unlock(&lun->lun_lock); 8330 free(ctsio->kern_data_ptr, M_CTL); 8331 ctl_set_reservation_conflict(ctsio); 8332 ctl_done((union ctl_io *)ctsio); 8333 return (CTL_RETVAL_COMPLETE); 8334 } 8335 mtx_unlock(&lun->lun_lock); 8336 } 8337 8338 switch (cdb->action & SPRO_ACTION_MASK) { 8339 case SPRO_REGISTER: 8340 case SPRO_REG_IGNO: { 8341 /* 8342 * We don't support any of these options, as we report in 8343 * the read capabilities request (see 8344 * ctl_persistent_reserve_in(), above). 8345 */ 8346 if ((param->flags & SPR_SPEC_I_PT) 8347 || (param->flags & SPR_ALL_TG_PT) 8348 || (param->flags & SPR_APTPL)) { 8349 int bit_ptr; 8350 8351 if (param->flags & SPR_APTPL) 8352 bit_ptr = 0; 8353 else if (param->flags & SPR_ALL_TG_PT) 8354 bit_ptr = 2; 8355 else /* SPR_SPEC_I_PT */ 8356 bit_ptr = 3; 8357 8358 free(ctsio->kern_data_ptr, M_CTL); 8359 ctl_set_invalid_field(ctsio, 8360 /*sks_valid*/ 1, 8361 /*command*/ 0, 8362 /*field*/ 20, 8363 /*bit_valid*/ 1, 8364 /*bit*/ bit_ptr); 8365 ctl_done((union ctl_io *)ctsio); 8366 return (CTL_RETVAL_COMPLETE); 8367 } 8368 8369 mtx_lock(&lun->lun_lock); 8370 8371 /* 8372 * The initiator wants to clear the 8373 * key/unregister. 8374 */ 8375 if (sa_res_key == 0) { 8376 if ((res_key == 0 8377 && (cdb->action & SPRO_ACTION_MASK) == SPRO_REGISTER) 8378 || ((cdb->action & SPRO_ACTION_MASK) == SPRO_REG_IGNO 8379 && ctl_get_prkey(lun, residx) == 0)) { 8380 mtx_unlock(&lun->lun_lock); 8381 goto done; 8382 } 8383 8384 ctl_clr_prkey(lun, residx); 8385 lun->pr_key_count--; 8386 8387 if (residx == lun->pr_res_idx) { 8388 lun->flags &= ~CTL_LUN_PR_RESERVED; 8389 lun->pr_res_idx = CTL_PR_NO_RESERVATION; 8390 8391 if ((lun->pr_res_type == SPR_TYPE_WR_EX_RO || 8392 lun->pr_res_type == SPR_TYPE_EX_AC_RO) && 8393 lun->pr_key_count) { 8394 /* 8395 * If the reservation is a registrants 8396 * only type we need to generate a UA 8397 * for other registered inits. The 8398 * sense code should be RESERVATIONS 8399 * RELEASED 8400 */ 8401 8402 for (i = softc->init_min; i < softc->init_max; i++){ 8403 if (ctl_get_prkey(lun, i) == 0) 8404 continue; 8405 ctl_est_ua(lun, i, 8406 CTL_UA_RES_RELEASE); 8407 } 8408 } 8409 lun->pr_res_type = 0; 8410 } else if (lun->pr_res_idx == CTL_PR_ALL_REGISTRANTS) { 8411 if (lun->pr_key_count==0) { 8412 lun->flags &= ~CTL_LUN_PR_RESERVED; 8413 lun->pr_res_type = 0; 8414 lun->pr_res_idx = CTL_PR_NO_RESERVATION; 8415 } 8416 } 8417 lun->pr_generation++; 8418 mtx_unlock(&lun->lun_lock); 8419 8420 persis_io.hdr.nexus = ctsio->io_hdr.nexus; 8421 persis_io.hdr.msg_type = CTL_MSG_PERS_ACTION; 8422 persis_io.pr.pr_info.action = CTL_PR_UNREG_KEY; 8423 persis_io.pr.pr_info.residx = residx; 8424 ctl_ha_msg_send(CTL_HA_CHAN_CTL, &persis_io, 8425 sizeof(persis_io.pr), M_WAITOK); 8426 } else /* sa_res_key != 0 */ { 8427 /* 8428 * If we aren't registered currently then increment 8429 * the key count and set the registered flag. 8430 */ 8431 ctl_alloc_prkey(lun, residx); 8432 if (ctl_get_prkey(lun, residx) == 0) 8433 lun->pr_key_count++; 8434 ctl_set_prkey(lun, residx, sa_res_key); 8435 lun->pr_generation++; 8436 mtx_unlock(&lun->lun_lock); 8437 8438 persis_io.hdr.nexus = ctsio->io_hdr.nexus; 8439 persis_io.hdr.msg_type = CTL_MSG_PERS_ACTION; 8440 persis_io.pr.pr_info.action = CTL_PR_REG_KEY; 8441 persis_io.pr.pr_info.residx = residx; 8442 memcpy(persis_io.pr.pr_info.sa_res_key, 8443 param->serv_act_res_key, 8444 sizeof(param->serv_act_res_key)); 8445 ctl_ha_msg_send(CTL_HA_CHAN_CTL, &persis_io, 8446 sizeof(persis_io.pr), M_WAITOK); 8447 } 8448 8449 break; 8450 } 8451 case SPRO_RESERVE: 8452 mtx_lock(&lun->lun_lock); 8453 if (lun->flags & CTL_LUN_PR_RESERVED) { 8454 /* 8455 * if this isn't the reservation holder and it's 8456 * not a "all registrants" type or if the type is 8457 * different then we have a conflict 8458 */ 8459 if ((lun->pr_res_idx != residx 8460 && lun->pr_res_idx != CTL_PR_ALL_REGISTRANTS) 8461 || lun->pr_res_type != type) { 8462 mtx_unlock(&lun->lun_lock); 8463 free(ctsio->kern_data_ptr, M_CTL); 8464 ctl_set_reservation_conflict(ctsio); 8465 ctl_done((union ctl_io *)ctsio); 8466 return (CTL_RETVAL_COMPLETE); 8467 } 8468 mtx_unlock(&lun->lun_lock); 8469 } else /* create a reservation */ { 8470 /* 8471 * If it's not an "all registrants" type record 8472 * reservation holder 8473 */ 8474 if (type != SPR_TYPE_WR_EX_AR 8475 && type != SPR_TYPE_EX_AC_AR) 8476 lun->pr_res_idx = residx; /* Res holder */ 8477 else 8478 lun->pr_res_idx = CTL_PR_ALL_REGISTRANTS; 8479 8480 lun->flags |= CTL_LUN_PR_RESERVED; 8481 lun->pr_res_type = type; 8482 8483 mtx_unlock(&lun->lun_lock); 8484 8485 /* send msg to other side */ 8486 persis_io.hdr.nexus = ctsio->io_hdr.nexus; 8487 persis_io.hdr.msg_type = CTL_MSG_PERS_ACTION; 8488 persis_io.pr.pr_info.action = CTL_PR_RESERVE; 8489 persis_io.pr.pr_info.residx = lun->pr_res_idx; 8490 persis_io.pr.pr_info.res_type = type; 8491 ctl_ha_msg_send(CTL_HA_CHAN_CTL, &persis_io, 8492 sizeof(persis_io.pr), M_WAITOK); 8493 } 8494 break; 8495 8496 case SPRO_RELEASE: 8497 mtx_lock(&lun->lun_lock); 8498 if ((lun->flags & CTL_LUN_PR_RESERVED) == 0) { 8499 /* No reservation exists return good status */ 8500 mtx_unlock(&lun->lun_lock); 8501 goto done; 8502 } 8503 /* 8504 * Is this nexus a reservation holder? 8505 */ 8506 if (lun->pr_res_idx != residx 8507 && lun->pr_res_idx != CTL_PR_ALL_REGISTRANTS) { 8508 /* 8509 * not a res holder return good status but 8510 * do nothing 8511 */ 8512 mtx_unlock(&lun->lun_lock); 8513 goto done; 8514 } 8515 8516 if (lun->pr_res_type != type) { 8517 mtx_unlock(&lun->lun_lock); 8518 free(ctsio->kern_data_ptr, M_CTL); 8519 ctl_set_illegal_pr_release(ctsio); 8520 ctl_done((union ctl_io *)ctsio); 8521 return (CTL_RETVAL_COMPLETE); 8522 } 8523 8524 /* okay to release */ 8525 lun->flags &= ~CTL_LUN_PR_RESERVED; 8526 lun->pr_res_idx = CTL_PR_NO_RESERVATION; 8527 lun->pr_res_type = 0; 8528 8529 /* 8530 * If this isn't an exclusive access reservation and NUAR 8531 * is not set, generate UA for all other registrants. 8532 */ 8533 if (type != SPR_TYPE_EX_AC && type != SPR_TYPE_WR_EX && 8534 (lun->MODE_CTRL.queue_flags & SCP_NUAR) == 0) { 8535 for (i = softc->init_min; i < softc->init_max; i++) { 8536 if (i == residx || ctl_get_prkey(lun, i) == 0) 8537 continue; 8538 ctl_est_ua(lun, i, CTL_UA_RES_RELEASE); 8539 } 8540 } 8541 mtx_unlock(&lun->lun_lock); 8542 8543 /* Send msg to other side */ 8544 persis_io.hdr.nexus = ctsio->io_hdr.nexus; 8545 persis_io.hdr.msg_type = CTL_MSG_PERS_ACTION; 8546 persis_io.pr.pr_info.action = CTL_PR_RELEASE; 8547 ctl_ha_msg_send(CTL_HA_CHAN_CTL, &persis_io, 8548 sizeof(persis_io.pr), M_WAITOK); 8549 break; 8550 8551 case SPRO_CLEAR: 8552 /* send msg to other side */ 8553 8554 mtx_lock(&lun->lun_lock); 8555 lun->flags &= ~CTL_LUN_PR_RESERVED; 8556 lun->pr_res_type = 0; 8557 lun->pr_key_count = 0; 8558 lun->pr_res_idx = CTL_PR_NO_RESERVATION; 8559 8560 ctl_clr_prkey(lun, residx); 8561 for (i = 0; i < CTL_MAX_INITIATORS; i++) 8562 if (ctl_get_prkey(lun, i) != 0) { 8563 ctl_clr_prkey(lun, i); 8564 ctl_est_ua(lun, i, CTL_UA_REG_PREEMPT); 8565 } 8566 lun->pr_generation++; 8567 mtx_unlock(&lun->lun_lock); 8568 8569 persis_io.hdr.nexus = ctsio->io_hdr.nexus; 8570 persis_io.hdr.msg_type = CTL_MSG_PERS_ACTION; 8571 persis_io.pr.pr_info.action = CTL_PR_CLEAR; 8572 ctl_ha_msg_send(CTL_HA_CHAN_CTL, &persis_io, 8573 sizeof(persis_io.pr), M_WAITOK); 8574 break; 8575 8576 case SPRO_PREEMPT: 8577 case SPRO_PRE_ABO: { 8578 int nretval; 8579 8580 nretval = ctl_pro_preempt(softc, lun, res_key, sa_res_key, type, 8581 residx, ctsio, cdb, param); 8582 if (nretval != 0) 8583 return (CTL_RETVAL_COMPLETE); 8584 break; 8585 } 8586 default: 8587 panic("%s: Invalid PR type %#x", __func__, cdb->action); 8588 } 8589 8590 done: 8591 free(ctsio->kern_data_ptr, M_CTL); 8592 ctl_set_success(ctsio); 8593 ctl_done((union ctl_io *)ctsio); 8594 8595 return (retval); 8596 } 8597 8598 /* 8599 * This routine is for handling a message from the other SC pertaining to 8600 * persistent reserve out. All the error checking will have been done 8601 * so only performing the action need be done here to keep the two 8602 * in sync. 8603 */ 8604 static void 8605 ctl_hndl_per_res_out_on_other_sc(union ctl_io *io) 8606 { 8607 struct ctl_softc *softc = CTL_SOFTC(io); 8608 union ctl_ha_msg *msg = (union ctl_ha_msg *)&io->presio.pr_msg; 8609 struct ctl_lun *lun; 8610 int i; 8611 uint32_t residx, targ_lun; 8612 8613 targ_lun = msg->hdr.nexus.targ_mapped_lun; 8614 mtx_lock(&softc->ctl_lock); 8615 if (targ_lun >= ctl_max_luns || 8616 (lun = softc->ctl_luns[targ_lun]) == NULL) { 8617 mtx_unlock(&softc->ctl_lock); 8618 return; 8619 } 8620 mtx_lock(&lun->lun_lock); 8621 mtx_unlock(&softc->ctl_lock); 8622 if (lun->flags & CTL_LUN_DISABLED) { 8623 mtx_unlock(&lun->lun_lock); 8624 return; 8625 } 8626 residx = ctl_get_initindex(&msg->hdr.nexus); 8627 switch(msg->pr.pr_info.action) { 8628 case CTL_PR_REG_KEY: 8629 ctl_alloc_prkey(lun, msg->pr.pr_info.residx); 8630 if (ctl_get_prkey(lun, msg->pr.pr_info.residx) == 0) 8631 lun->pr_key_count++; 8632 ctl_set_prkey(lun, msg->pr.pr_info.residx, 8633 scsi_8btou64(msg->pr.pr_info.sa_res_key)); 8634 lun->pr_generation++; 8635 break; 8636 8637 case CTL_PR_UNREG_KEY: 8638 ctl_clr_prkey(lun, msg->pr.pr_info.residx); 8639 lun->pr_key_count--; 8640 8641 /* XXX Need to see if the reservation has been released */ 8642 /* if so do we need to generate UA? */ 8643 if (msg->pr.pr_info.residx == lun->pr_res_idx) { 8644 lun->flags &= ~CTL_LUN_PR_RESERVED; 8645 lun->pr_res_idx = CTL_PR_NO_RESERVATION; 8646 8647 if ((lun->pr_res_type == SPR_TYPE_WR_EX_RO || 8648 lun->pr_res_type == SPR_TYPE_EX_AC_RO) && 8649 lun->pr_key_count) { 8650 /* 8651 * If the reservation is a registrants 8652 * only type we need to generate a UA 8653 * for other registered inits. The 8654 * sense code should be RESERVATIONS 8655 * RELEASED 8656 */ 8657 8658 for (i = softc->init_min; i < softc->init_max; i++) { 8659 if (ctl_get_prkey(lun, i) == 0) 8660 continue; 8661 8662 ctl_est_ua(lun, i, CTL_UA_RES_RELEASE); 8663 } 8664 } 8665 lun->pr_res_type = 0; 8666 } else if (lun->pr_res_idx == CTL_PR_ALL_REGISTRANTS) { 8667 if (lun->pr_key_count==0) { 8668 lun->flags &= ~CTL_LUN_PR_RESERVED; 8669 lun->pr_res_type = 0; 8670 lun->pr_res_idx = CTL_PR_NO_RESERVATION; 8671 } 8672 } 8673 lun->pr_generation++; 8674 break; 8675 8676 case CTL_PR_RESERVE: 8677 lun->flags |= CTL_LUN_PR_RESERVED; 8678 lun->pr_res_type = msg->pr.pr_info.res_type; 8679 lun->pr_res_idx = msg->pr.pr_info.residx; 8680 8681 break; 8682 8683 case CTL_PR_RELEASE: 8684 /* 8685 * If this isn't an exclusive access reservation and NUAR 8686 * is not set, generate UA for all other registrants. 8687 */ 8688 if (lun->pr_res_type != SPR_TYPE_EX_AC && 8689 lun->pr_res_type != SPR_TYPE_WR_EX && 8690 (lun->MODE_CTRL.queue_flags & SCP_NUAR) == 0) { 8691 for (i = softc->init_min; i < softc->init_max; i++) { 8692 if (i == residx || ctl_get_prkey(lun, i) == 0) 8693 continue; 8694 ctl_est_ua(lun, i, CTL_UA_RES_RELEASE); 8695 } 8696 } 8697 8698 lun->flags &= ~CTL_LUN_PR_RESERVED; 8699 lun->pr_res_idx = CTL_PR_NO_RESERVATION; 8700 lun->pr_res_type = 0; 8701 break; 8702 8703 case CTL_PR_PREEMPT: 8704 ctl_pro_preempt_other(lun, msg); 8705 break; 8706 case CTL_PR_CLEAR: 8707 lun->flags &= ~CTL_LUN_PR_RESERVED; 8708 lun->pr_res_type = 0; 8709 lun->pr_key_count = 0; 8710 lun->pr_res_idx = CTL_PR_NO_RESERVATION; 8711 8712 for (i=0; i < CTL_MAX_INITIATORS; i++) { 8713 if (ctl_get_prkey(lun, i) == 0) 8714 continue; 8715 ctl_clr_prkey(lun, i); 8716 ctl_est_ua(lun, i, CTL_UA_REG_PREEMPT); 8717 } 8718 lun->pr_generation++; 8719 break; 8720 } 8721 8722 mtx_unlock(&lun->lun_lock); 8723 } 8724 8725 int 8726 ctl_read_write(struct ctl_scsiio *ctsio) 8727 { 8728 struct ctl_lun *lun = CTL_LUN(ctsio); 8729 struct ctl_lba_len_flags *lbalen; 8730 uint64_t lba; 8731 uint32_t num_blocks; 8732 int flags, retval; 8733 int isread; 8734 8735 CTL_DEBUG_PRINT(("ctl_read_write: command: %#x\n", ctsio->cdb[0])); 8736 8737 flags = 0; 8738 isread = ctsio->cdb[0] == READ_6 || ctsio->cdb[0] == READ_10 8739 || ctsio->cdb[0] == READ_12 || ctsio->cdb[0] == READ_16; 8740 switch (ctsio->cdb[0]) { 8741 case READ_6: 8742 case WRITE_6: { 8743 struct scsi_rw_6 *cdb; 8744 8745 cdb = (struct scsi_rw_6 *)ctsio->cdb; 8746 8747 lba = scsi_3btoul(cdb->addr); 8748 /* only 5 bits are valid in the most significant address byte */ 8749 lba &= 0x1fffff; 8750 num_blocks = cdb->length; 8751 /* 8752 * This is correct according to SBC-2. 8753 */ 8754 if (num_blocks == 0) 8755 num_blocks = 256; 8756 break; 8757 } 8758 case READ_10: 8759 case WRITE_10: { 8760 struct scsi_rw_10 *cdb; 8761 8762 cdb = (struct scsi_rw_10 *)ctsio->cdb; 8763 if (cdb->byte2 & SRW10_FUA) 8764 flags |= CTL_LLF_FUA; 8765 if (cdb->byte2 & SRW10_DPO) 8766 flags |= CTL_LLF_DPO; 8767 lba = scsi_4btoul(cdb->addr); 8768 num_blocks = scsi_2btoul(cdb->length); 8769 break; 8770 } 8771 case WRITE_VERIFY_10: { 8772 struct scsi_write_verify_10 *cdb; 8773 8774 cdb = (struct scsi_write_verify_10 *)ctsio->cdb; 8775 flags |= CTL_LLF_FUA; 8776 if (cdb->byte2 & SWV_DPO) 8777 flags |= CTL_LLF_DPO; 8778 lba = scsi_4btoul(cdb->addr); 8779 num_blocks = scsi_2btoul(cdb->length); 8780 break; 8781 } 8782 case READ_12: 8783 case WRITE_12: { 8784 struct scsi_rw_12 *cdb; 8785 8786 cdb = (struct scsi_rw_12 *)ctsio->cdb; 8787 if (cdb->byte2 & SRW12_FUA) 8788 flags |= CTL_LLF_FUA; 8789 if (cdb->byte2 & SRW12_DPO) 8790 flags |= CTL_LLF_DPO; 8791 lba = scsi_4btoul(cdb->addr); 8792 num_blocks = scsi_4btoul(cdb->length); 8793 break; 8794 } 8795 case WRITE_VERIFY_12: { 8796 struct scsi_write_verify_12 *cdb; 8797 8798 cdb = (struct scsi_write_verify_12 *)ctsio->cdb; 8799 flags |= CTL_LLF_FUA; 8800 if (cdb->byte2 & SWV_DPO) 8801 flags |= CTL_LLF_DPO; 8802 lba = scsi_4btoul(cdb->addr); 8803 num_blocks = scsi_4btoul(cdb->length); 8804 break; 8805 } 8806 case READ_16: 8807 case WRITE_16: { 8808 struct scsi_rw_16 *cdb; 8809 8810 cdb = (struct scsi_rw_16 *)ctsio->cdb; 8811 if (cdb->byte2 & SRW12_FUA) 8812 flags |= CTL_LLF_FUA; 8813 if (cdb->byte2 & SRW12_DPO) 8814 flags |= CTL_LLF_DPO; 8815 lba = scsi_8btou64(cdb->addr); 8816 num_blocks = scsi_4btoul(cdb->length); 8817 break; 8818 } 8819 case WRITE_ATOMIC_16: { 8820 struct scsi_write_atomic_16 *cdb; 8821 8822 if (lun->be_lun->atomicblock == 0) { 8823 ctl_set_invalid_opcode(ctsio); 8824 ctl_done((union ctl_io *)ctsio); 8825 return (CTL_RETVAL_COMPLETE); 8826 } 8827 8828 cdb = (struct scsi_write_atomic_16 *)ctsio->cdb; 8829 if (cdb->byte2 & SRW12_FUA) 8830 flags |= CTL_LLF_FUA; 8831 if (cdb->byte2 & SRW12_DPO) 8832 flags |= CTL_LLF_DPO; 8833 lba = scsi_8btou64(cdb->addr); 8834 num_blocks = scsi_2btoul(cdb->length); 8835 if (num_blocks > lun->be_lun->atomicblock) { 8836 ctl_set_invalid_field(ctsio, /*sks_valid*/ 1, 8837 /*command*/ 1, /*field*/ 12, /*bit_valid*/ 0, 8838 /*bit*/ 0); 8839 ctl_done((union ctl_io *)ctsio); 8840 return (CTL_RETVAL_COMPLETE); 8841 } 8842 break; 8843 } 8844 case WRITE_VERIFY_16: { 8845 struct scsi_write_verify_16 *cdb; 8846 8847 cdb = (struct scsi_write_verify_16 *)ctsio->cdb; 8848 flags |= CTL_LLF_FUA; 8849 if (cdb->byte2 & SWV_DPO) 8850 flags |= CTL_LLF_DPO; 8851 lba = scsi_8btou64(cdb->addr); 8852 num_blocks = scsi_4btoul(cdb->length); 8853 break; 8854 } 8855 default: 8856 /* 8857 * We got a command we don't support. This shouldn't 8858 * happen, commands should be filtered out above us. 8859 */ 8860 ctl_set_invalid_opcode(ctsio); 8861 ctl_done((union ctl_io *)ctsio); 8862 8863 return (CTL_RETVAL_COMPLETE); 8864 break; /* NOTREACHED */ 8865 } 8866 8867 /* 8868 * The first check is to make sure we're in bounds, the second 8869 * check is to catch wrap-around problems. If the lba + num blocks 8870 * is less than the lba, then we've wrapped around and the block 8871 * range is invalid anyway. 8872 */ 8873 if (((lba + num_blocks) > (lun->be_lun->maxlba + 1)) 8874 || ((lba + num_blocks) < lba)) { 8875 ctl_set_lba_out_of_range(ctsio, 8876 MAX(lba, lun->be_lun->maxlba + 1)); 8877 ctl_done((union ctl_io *)ctsio); 8878 return (CTL_RETVAL_COMPLETE); 8879 } 8880 8881 /* 8882 * According to SBC-3, a transfer length of 0 is not an error. 8883 * Note that this cannot happen with WRITE(6) or READ(6), since 0 8884 * translates to 256 blocks for those commands. 8885 */ 8886 if (num_blocks == 0) { 8887 ctl_set_success(ctsio); 8888 ctl_done((union ctl_io *)ctsio); 8889 return (CTL_RETVAL_COMPLETE); 8890 } 8891 8892 /* Set FUA and/or DPO if caches are disabled. */ 8893 if (isread) { 8894 if ((lun->MODE_CACHING.flags1 & SCP_RCD) != 0) 8895 flags |= CTL_LLF_FUA | CTL_LLF_DPO; 8896 } else { 8897 if ((lun->MODE_CACHING.flags1 & SCP_WCE) == 0) 8898 flags |= CTL_LLF_FUA; 8899 } 8900 8901 lbalen = (struct ctl_lba_len_flags *) 8902 &ctsio->io_hdr.ctl_private[CTL_PRIV_LBA_LEN]; 8903 lbalen->lba = lba; 8904 lbalen->len = num_blocks; 8905 lbalen->flags = (isread ? CTL_LLF_READ : CTL_LLF_WRITE) | flags; 8906 8907 ctsio->kern_total_len = num_blocks * lun->be_lun->blocksize; 8908 ctsio->kern_rel_offset = 0; 8909 8910 CTL_DEBUG_PRINT(("ctl_read_write: calling data_submit()\n")); 8911 8912 retval = lun->backend->data_submit((union ctl_io *)ctsio); 8913 return (retval); 8914 } 8915 8916 static int 8917 ctl_cnw_cont(union ctl_io *io) 8918 { 8919 struct ctl_lun *lun = CTL_LUN(io); 8920 struct ctl_scsiio *ctsio; 8921 struct ctl_lba_len_flags *lbalen; 8922 int retval; 8923 8924 CTL_IO_ASSERT(io, SCSI); 8925 8926 ctsio = &io->scsiio; 8927 ctsio->io_hdr.status = CTL_STATUS_NONE; 8928 ctsio->io_hdr.flags &= ~CTL_FLAG_IO_CONT; 8929 lbalen = (struct ctl_lba_len_flags *) 8930 &ctsio->io_hdr.ctl_private[CTL_PRIV_LBA_LEN]; 8931 lbalen->flags &= ~CTL_LLF_COMPARE; 8932 lbalen->flags |= CTL_LLF_WRITE; 8933 8934 CTL_DEBUG_PRINT(("ctl_cnw_cont: calling data_submit()\n")); 8935 retval = lun->backend->data_submit((union ctl_io *)ctsio); 8936 return (retval); 8937 } 8938 8939 int 8940 ctl_cnw(struct ctl_scsiio *ctsio) 8941 { 8942 struct ctl_lun *lun = CTL_LUN(ctsio); 8943 struct ctl_lba_len_flags *lbalen; 8944 uint64_t lba; 8945 uint32_t num_blocks; 8946 int flags, retval; 8947 8948 CTL_DEBUG_PRINT(("ctl_cnw: command: %#x\n", ctsio->cdb[0])); 8949 8950 flags = 0; 8951 switch (ctsio->cdb[0]) { 8952 case COMPARE_AND_WRITE: { 8953 struct scsi_compare_and_write *cdb; 8954 8955 cdb = (struct scsi_compare_and_write *)ctsio->cdb; 8956 if (cdb->byte2 & SRW10_FUA) 8957 flags |= CTL_LLF_FUA; 8958 if (cdb->byte2 & SRW10_DPO) 8959 flags |= CTL_LLF_DPO; 8960 lba = scsi_8btou64(cdb->addr); 8961 num_blocks = cdb->length; 8962 break; 8963 } 8964 default: 8965 /* 8966 * We got a command we don't support. This shouldn't 8967 * happen, commands should be filtered out above us. 8968 */ 8969 ctl_set_invalid_opcode(ctsio); 8970 ctl_done((union ctl_io *)ctsio); 8971 8972 return (CTL_RETVAL_COMPLETE); 8973 break; /* NOTREACHED */ 8974 } 8975 8976 /* 8977 * The first check is to make sure we're in bounds, the second 8978 * check is to catch wrap-around problems. If the lba + num blocks 8979 * is less than the lba, then we've wrapped around and the block 8980 * range is invalid anyway. 8981 */ 8982 if (((lba + num_blocks) > (lun->be_lun->maxlba + 1)) 8983 || ((lba + num_blocks) < lba)) { 8984 ctl_set_lba_out_of_range(ctsio, 8985 MAX(lba, lun->be_lun->maxlba + 1)); 8986 ctl_done((union ctl_io *)ctsio); 8987 return (CTL_RETVAL_COMPLETE); 8988 } 8989 8990 /* 8991 * According to SBC-3, a transfer length of 0 is not an error. 8992 */ 8993 if (num_blocks == 0) { 8994 ctl_set_success(ctsio); 8995 ctl_done((union ctl_io *)ctsio); 8996 return (CTL_RETVAL_COMPLETE); 8997 } 8998 8999 /* Set FUA if write cache is disabled. */ 9000 if ((lun->MODE_CACHING.flags1 & SCP_WCE) == 0) 9001 flags |= CTL_LLF_FUA; 9002 9003 ctsio->kern_total_len = 2 * num_blocks * lun->be_lun->blocksize; 9004 ctsio->kern_rel_offset = 0; 9005 9006 /* 9007 * Set the IO_CONT flag, so that if this I/O gets passed to 9008 * ctl_data_submit_done(), it'll get passed back to 9009 * ctl_ctl_cnw_cont() for further processing. 9010 */ 9011 ctsio->io_hdr.flags |= CTL_FLAG_IO_CONT; 9012 ctsio->io_cont = ctl_cnw_cont; 9013 9014 lbalen = (struct ctl_lba_len_flags *) 9015 &ctsio->io_hdr.ctl_private[CTL_PRIV_LBA_LEN]; 9016 lbalen->lba = lba; 9017 lbalen->len = num_blocks; 9018 lbalen->flags = CTL_LLF_COMPARE | flags; 9019 9020 CTL_DEBUG_PRINT(("ctl_cnw: calling data_submit()\n")); 9021 retval = lun->backend->data_submit((union ctl_io *)ctsio); 9022 return (retval); 9023 } 9024 9025 int 9026 ctl_verify(struct ctl_scsiio *ctsio) 9027 { 9028 struct ctl_lun *lun = CTL_LUN(ctsio); 9029 struct ctl_lba_len_flags *lbalen; 9030 uint64_t lba; 9031 uint32_t num_blocks; 9032 int bytchk, flags; 9033 int retval; 9034 9035 CTL_DEBUG_PRINT(("ctl_verify: command: %#x\n", ctsio->cdb[0])); 9036 9037 bytchk = 0; 9038 flags = CTL_LLF_FUA; 9039 switch (ctsio->cdb[0]) { 9040 case VERIFY_10: { 9041 struct scsi_verify_10 *cdb; 9042 9043 cdb = (struct scsi_verify_10 *)ctsio->cdb; 9044 if (cdb->byte2 & SVFY_BYTCHK) 9045 bytchk = 1; 9046 if (cdb->byte2 & SVFY_DPO) 9047 flags |= CTL_LLF_DPO; 9048 lba = scsi_4btoul(cdb->addr); 9049 num_blocks = scsi_2btoul(cdb->length); 9050 break; 9051 } 9052 case VERIFY_12: { 9053 struct scsi_verify_12 *cdb; 9054 9055 cdb = (struct scsi_verify_12 *)ctsio->cdb; 9056 if (cdb->byte2 & SVFY_BYTCHK) 9057 bytchk = 1; 9058 if (cdb->byte2 & SVFY_DPO) 9059 flags |= CTL_LLF_DPO; 9060 lba = scsi_4btoul(cdb->addr); 9061 num_blocks = scsi_4btoul(cdb->length); 9062 break; 9063 } 9064 case VERIFY_16: { 9065 struct scsi_rw_16 *cdb; 9066 9067 cdb = (struct scsi_rw_16 *)ctsio->cdb; 9068 if (cdb->byte2 & SVFY_BYTCHK) 9069 bytchk = 1; 9070 if (cdb->byte2 & SVFY_DPO) 9071 flags |= CTL_LLF_DPO; 9072 lba = scsi_8btou64(cdb->addr); 9073 num_blocks = scsi_4btoul(cdb->length); 9074 break; 9075 } 9076 default: 9077 /* 9078 * We got a command we don't support. This shouldn't 9079 * happen, commands should be filtered out above us. 9080 */ 9081 ctl_set_invalid_opcode(ctsio); 9082 ctl_done((union ctl_io *)ctsio); 9083 return (CTL_RETVAL_COMPLETE); 9084 } 9085 9086 /* 9087 * The first check is to make sure we're in bounds, the second 9088 * check is to catch wrap-around problems. If the lba + num blocks 9089 * is less than the lba, then we've wrapped around and the block 9090 * range is invalid anyway. 9091 */ 9092 if (((lba + num_blocks) > (lun->be_lun->maxlba + 1)) 9093 || ((lba + num_blocks) < lba)) { 9094 ctl_set_lba_out_of_range(ctsio, 9095 MAX(lba, lun->be_lun->maxlba + 1)); 9096 ctl_done((union ctl_io *)ctsio); 9097 return (CTL_RETVAL_COMPLETE); 9098 } 9099 9100 /* 9101 * According to SBC-3, a transfer length of 0 is not an error. 9102 */ 9103 if (num_blocks == 0) { 9104 ctl_set_success(ctsio); 9105 ctl_done((union ctl_io *)ctsio); 9106 return (CTL_RETVAL_COMPLETE); 9107 } 9108 9109 lbalen = (struct ctl_lba_len_flags *) 9110 &ctsio->io_hdr.ctl_private[CTL_PRIV_LBA_LEN]; 9111 lbalen->lba = lba; 9112 lbalen->len = num_blocks; 9113 if (bytchk) { 9114 lbalen->flags = CTL_LLF_COMPARE | flags; 9115 ctsio->kern_total_len = num_blocks * lun->be_lun->blocksize; 9116 } else { 9117 lbalen->flags = CTL_LLF_VERIFY | flags; 9118 ctsio->kern_total_len = 0; 9119 } 9120 ctsio->kern_rel_offset = 0; 9121 9122 CTL_DEBUG_PRINT(("ctl_verify: calling data_submit()\n")); 9123 retval = lun->backend->data_submit((union ctl_io *)ctsio); 9124 return (retval); 9125 } 9126 9127 int 9128 ctl_report_luns(struct ctl_scsiio *ctsio) 9129 { 9130 struct ctl_softc *softc = CTL_SOFTC(ctsio); 9131 struct ctl_port *port = CTL_PORT(ctsio); 9132 struct ctl_lun *lun, *request_lun = CTL_LUN(ctsio); 9133 struct scsi_report_luns *cdb; 9134 struct scsi_report_luns_data *lun_data; 9135 int num_filled, num_luns, num_port_luns, retval; 9136 uint32_t alloc_len, lun_datalen; 9137 uint32_t initidx, targ_lun_id, lun_id; 9138 9139 retval = CTL_RETVAL_COMPLETE; 9140 cdb = (struct scsi_report_luns *)ctsio->cdb; 9141 9142 CTL_DEBUG_PRINT(("ctl_report_luns\n")); 9143 9144 num_luns = 0; 9145 num_port_luns = port->lun_map ? port->lun_map_size : ctl_max_luns; 9146 mtx_lock(&softc->ctl_lock); 9147 for (targ_lun_id = 0; targ_lun_id < num_port_luns; targ_lun_id++) { 9148 if (ctl_lun_map_from_port(port, targ_lun_id) != UINT32_MAX) 9149 num_luns++; 9150 } 9151 mtx_unlock(&softc->ctl_lock); 9152 9153 switch (cdb->select_report) { 9154 case RPL_REPORT_DEFAULT: 9155 case RPL_REPORT_ALL: 9156 case RPL_REPORT_NONSUBSID: 9157 break; 9158 case RPL_REPORT_WELLKNOWN: 9159 case RPL_REPORT_ADMIN: 9160 case RPL_REPORT_CONGLOM: 9161 num_luns = 0; 9162 break; 9163 default: 9164 ctl_set_invalid_field(ctsio, 9165 /*sks_valid*/ 1, 9166 /*command*/ 1, 9167 /*field*/ 2, 9168 /*bit_valid*/ 0, 9169 /*bit*/ 0); 9170 ctl_done((union ctl_io *)ctsio); 9171 return (retval); 9172 break; /* NOTREACHED */ 9173 } 9174 9175 alloc_len = scsi_4btoul(cdb->length); 9176 /* 9177 * The initiator has to allocate at least 16 bytes for this request, 9178 * so he can at least get the header and the first LUN. Otherwise 9179 * we reject the request (per SPC-3 rev 14, section 6.21). 9180 */ 9181 if (alloc_len < (sizeof(struct scsi_report_luns_data) + 9182 sizeof(struct scsi_report_luns_lundata))) { 9183 ctl_set_invalid_field(ctsio, 9184 /*sks_valid*/ 1, 9185 /*command*/ 1, 9186 /*field*/ 6, 9187 /*bit_valid*/ 0, 9188 /*bit*/ 0); 9189 ctl_done((union ctl_io *)ctsio); 9190 return (retval); 9191 } 9192 9193 lun_datalen = sizeof(*lun_data) + 9194 (num_luns * sizeof(struct scsi_report_luns_lundata)); 9195 9196 ctsio->kern_data_ptr = malloc(lun_datalen, M_CTL, M_WAITOK | M_ZERO); 9197 lun_data = (struct scsi_report_luns_data *)ctsio->kern_data_ptr; 9198 ctsio->kern_sg_entries = 0; 9199 9200 initidx = ctl_get_initindex(&ctsio->io_hdr.nexus); 9201 9202 mtx_lock(&softc->ctl_lock); 9203 for (targ_lun_id = 0, num_filled = 0; 9204 targ_lun_id < num_port_luns && num_filled < num_luns; 9205 targ_lun_id++) { 9206 lun_id = ctl_lun_map_from_port(port, targ_lun_id); 9207 if (lun_id == UINT32_MAX) 9208 continue; 9209 lun = softc->ctl_luns[lun_id]; 9210 if (lun == NULL) 9211 continue; 9212 9213 be64enc(lun_data->luns[num_filled++].lundata, 9214 ctl_encode_lun(targ_lun_id)); 9215 9216 /* 9217 * According to SPC-3, rev 14 section 6.21: 9218 * 9219 * "The execution of a REPORT LUNS command to any valid and 9220 * installed logical unit shall clear the REPORTED LUNS DATA 9221 * HAS CHANGED unit attention condition for all logical 9222 * units of that target with respect to the requesting 9223 * initiator. A valid and installed logical unit is one 9224 * having a PERIPHERAL QUALIFIER of 000b in the standard 9225 * INQUIRY data (see 6.4.2)." 9226 * 9227 * If request_lun is NULL, the LUN this report luns command 9228 * was issued to is either disabled or doesn't exist. In that 9229 * case, we shouldn't clear any pending lun change unit 9230 * attention. 9231 */ 9232 if (request_lun != NULL) { 9233 mtx_lock(&lun->lun_lock); 9234 ctl_clr_ua(lun, initidx, CTL_UA_LUN_CHANGE); 9235 mtx_unlock(&lun->lun_lock); 9236 } 9237 } 9238 mtx_unlock(&softc->ctl_lock); 9239 9240 /* 9241 * It's quite possible that we've returned fewer LUNs than we allocated 9242 * space for. Trim it. 9243 */ 9244 lun_datalen = sizeof(*lun_data) + 9245 (num_filled * sizeof(struct scsi_report_luns_lundata)); 9246 ctsio->kern_rel_offset = 0; 9247 ctsio->kern_sg_entries = 0; 9248 ctsio->kern_data_len = min(lun_datalen, alloc_len); 9249 ctsio->kern_total_len = ctsio->kern_data_len; 9250 9251 /* 9252 * We set this to the actual data length, regardless of how much 9253 * space we actually have to return results. If the user looks at 9254 * this value, he'll know whether or not he allocated enough space 9255 * and reissue the command if necessary. We don't support well 9256 * known logical units, so if the user asks for that, return none. 9257 */ 9258 scsi_ulto4b(lun_datalen - 8, lun_data->length); 9259 9260 /* 9261 * We can only return SCSI_STATUS_CHECK_COND when we can't satisfy 9262 * this request. 9263 */ 9264 ctl_set_success(ctsio); 9265 ctsio->io_hdr.flags |= CTL_FLAG_ALLOCATED; 9266 ctsio->be_move_done = ctl_config_move_done; 9267 ctl_datamove((union ctl_io *)ctsio); 9268 return (retval); 9269 } 9270 9271 int 9272 ctl_request_sense(struct ctl_scsiio *ctsio) 9273 { 9274 struct ctl_softc *softc = CTL_SOFTC(ctsio); 9275 struct ctl_lun *lun = CTL_LUN(ctsio); 9276 struct scsi_request_sense *cdb; 9277 struct scsi_sense_data *sense_ptr, *ps; 9278 uint32_t initidx; 9279 int have_error; 9280 u_int sense_len = SSD_FULL_SIZE; 9281 scsi_sense_data_type sense_format; 9282 ctl_ua_type ua_type; 9283 uint8_t asc = 0, ascq = 0; 9284 9285 cdb = (struct scsi_request_sense *)ctsio->cdb; 9286 9287 CTL_DEBUG_PRINT(("ctl_request_sense\n")); 9288 9289 /* 9290 * Determine which sense format the user wants. 9291 */ 9292 if (cdb->byte2 & SRS_DESC) 9293 sense_format = SSD_TYPE_DESC; 9294 else 9295 sense_format = SSD_TYPE_FIXED; 9296 9297 ctsio->kern_data_ptr = malloc(sizeof(*sense_ptr), M_CTL, M_WAITOK); 9298 sense_ptr = (struct scsi_sense_data *)ctsio->kern_data_ptr; 9299 ctsio->kern_sg_entries = 0; 9300 ctsio->kern_rel_offset = 0; 9301 ctsio->kern_data_len = ctsio->kern_total_len = 9302 MIN(cdb->length, sizeof(*sense_ptr)); 9303 9304 /* 9305 * If we don't have a LUN, we don't have any pending sense. 9306 */ 9307 if (lun == NULL || 9308 ((lun->flags & CTL_LUN_PRIMARY_SC) == 0 && 9309 softc->ha_link < CTL_HA_LINK_UNKNOWN)) { 9310 /* "Logical unit not supported" */ 9311 ctl_set_sense_data(sense_ptr, &sense_len, NULL, sense_format, 9312 /*current_error*/ 1, 9313 /*sense_key*/ SSD_KEY_ILLEGAL_REQUEST, 9314 /*asc*/ 0x25, 9315 /*ascq*/ 0x00, 9316 SSD_ELEM_NONE); 9317 goto send; 9318 } 9319 9320 have_error = 0; 9321 initidx = ctl_get_initindex(&ctsio->io_hdr.nexus); 9322 /* 9323 * Check for pending sense, and then for pending unit attentions. 9324 * Pending sense gets returned first, then pending unit attentions. 9325 */ 9326 mtx_lock(&lun->lun_lock); 9327 ps = lun->pending_sense[initidx / CTL_MAX_INIT_PER_PORT]; 9328 if (ps != NULL) 9329 ps += initidx % CTL_MAX_INIT_PER_PORT; 9330 if (ps != NULL && ps->error_code != 0) { 9331 scsi_sense_data_type stored_format; 9332 9333 /* 9334 * Check to see which sense format was used for the stored 9335 * sense data. 9336 */ 9337 stored_format = scsi_sense_type(ps); 9338 9339 /* 9340 * If the user requested a different sense format than the 9341 * one we stored, then we need to convert it to the other 9342 * format. If we're going from descriptor to fixed format 9343 * sense data, we may lose things in translation, depending 9344 * on what options were used. 9345 * 9346 * If the stored format is SSD_TYPE_NONE (i.e. invalid), 9347 * for some reason we'll just copy it out as-is. 9348 */ 9349 if ((stored_format == SSD_TYPE_FIXED) 9350 && (sense_format == SSD_TYPE_DESC)) 9351 ctl_sense_to_desc((struct scsi_sense_data_fixed *) 9352 ps, (struct scsi_sense_data_desc *)sense_ptr); 9353 else if ((stored_format == SSD_TYPE_DESC) 9354 && (sense_format == SSD_TYPE_FIXED)) 9355 ctl_sense_to_fixed((struct scsi_sense_data_desc *) 9356 ps, (struct scsi_sense_data_fixed *)sense_ptr); 9357 else 9358 memcpy(sense_ptr, ps, sizeof(*sense_ptr)); 9359 9360 ps->error_code = 0; 9361 have_error = 1; 9362 } else { 9363 ua_type = ctl_build_ua(lun, initidx, sense_ptr, &sense_len, 9364 sense_format); 9365 if (ua_type != CTL_UA_NONE) 9366 have_error = 1; 9367 } 9368 if (have_error == 0) { 9369 /* 9370 * Report informational exception if have one and allowed. 9371 */ 9372 if (lun->MODE_IE.mrie != SIEP_MRIE_NO) { 9373 asc = lun->ie_asc; 9374 ascq = lun->ie_ascq; 9375 } 9376 ctl_set_sense_data(sense_ptr, &sense_len, lun, sense_format, 9377 /*current_error*/ 1, 9378 /*sense_key*/ SSD_KEY_NO_SENSE, 9379 /*asc*/ asc, 9380 /*ascq*/ ascq, 9381 SSD_ELEM_NONE); 9382 } 9383 mtx_unlock(&lun->lun_lock); 9384 9385 send: 9386 /* 9387 * We report the SCSI status as OK, since the status of the command 9388 * itself is OK. We're reporting sense as parameter data. 9389 */ 9390 ctl_set_success(ctsio); 9391 ctsio->io_hdr.flags |= CTL_FLAG_ALLOCATED; 9392 ctsio->be_move_done = ctl_config_move_done; 9393 ctl_datamove((union ctl_io *)ctsio); 9394 return (CTL_RETVAL_COMPLETE); 9395 } 9396 9397 int 9398 ctl_tur(struct ctl_scsiio *ctsio) 9399 { 9400 9401 CTL_DEBUG_PRINT(("ctl_tur\n")); 9402 9403 ctl_set_success(ctsio); 9404 ctl_done((union ctl_io *)ctsio); 9405 9406 return (CTL_RETVAL_COMPLETE); 9407 } 9408 9409 /* 9410 * SCSI VPD page 0x00, the Supported VPD Pages page. 9411 */ 9412 static int 9413 ctl_inquiry_evpd_supported(struct ctl_scsiio *ctsio, int alloc_len) 9414 { 9415 struct ctl_lun *lun = CTL_LUN(ctsio); 9416 struct scsi_vpd_supported_pages *pages; 9417 int sup_page_size; 9418 int p; 9419 9420 sup_page_size = sizeof(struct scsi_vpd_supported_pages) * 9421 SCSI_EVPD_NUM_SUPPORTED_PAGES; 9422 ctsio->kern_data_ptr = malloc(sup_page_size, M_CTL, M_WAITOK | M_ZERO); 9423 pages = (struct scsi_vpd_supported_pages *)ctsio->kern_data_ptr; 9424 ctsio->kern_rel_offset = 0; 9425 ctsio->kern_sg_entries = 0; 9426 ctsio->kern_data_len = min(sup_page_size, alloc_len); 9427 ctsio->kern_total_len = ctsio->kern_data_len; 9428 9429 /* 9430 * The control device is always connected. The disk device, on the 9431 * other hand, may not be online all the time. Need to change this 9432 * to figure out whether the disk device is actually online or not. 9433 */ 9434 if (lun != NULL) 9435 pages->device = (SID_QUAL_LU_CONNECTED << 5) | 9436 lun->be_lun->lun_type; 9437 else 9438 pages->device = (SID_QUAL_LU_OFFLINE << 5) | T_DIRECT; 9439 9440 p = 0; 9441 /* Supported VPD pages */ 9442 pages->page_list[p++] = SVPD_SUPPORTED_PAGES; 9443 /* Serial Number */ 9444 pages->page_list[p++] = SVPD_UNIT_SERIAL_NUMBER; 9445 /* Device Identification */ 9446 pages->page_list[p++] = SVPD_DEVICE_ID; 9447 /* Extended INQUIRY Data */ 9448 pages->page_list[p++] = SVPD_EXTENDED_INQUIRY_DATA; 9449 /* Mode Page Policy */ 9450 pages->page_list[p++] = SVPD_MODE_PAGE_POLICY; 9451 /* SCSI Ports */ 9452 pages->page_list[p++] = SVPD_SCSI_PORTS; 9453 /* Third-party Copy */ 9454 pages->page_list[p++] = SVPD_SCSI_TPC; 9455 /* SCSI Feature Sets */ 9456 pages->page_list[p++] = SVPD_SCSI_SFS; 9457 if (lun != NULL && lun->be_lun->lun_type == T_DIRECT) { 9458 /* Block limits */ 9459 pages->page_list[p++] = SVPD_BLOCK_LIMITS; 9460 /* Block Device Characteristics */ 9461 pages->page_list[p++] = SVPD_BDC; 9462 /* Logical Block Provisioning */ 9463 pages->page_list[p++] = SVPD_LBP; 9464 } 9465 pages->length = p; 9466 9467 ctl_set_success(ctsio); 9468 ctsio->io_hdr.flags |= CTL_FLAG_ALLOCATED; 9469 ctsio->be_move_done = ctl_config_move_done; 9470 ctl_datamove((union ctl_io *)ctsio); 9471 return (CTL_RETVAL_COMPLETE); 9472 } 9473 9474 /* 9475 * SCSI VPD page 0x80, the Unit Serial Number page. 9476 */ 9477 static int 9478 ctl_inquiry_evpd_serial(struct ctl_scsiio *ctsio, int alloc_len) 9479 { 9480 struct ctl_lun *lun = CTL_LUN(ctsio); 9481 struct scsi_vpd_unit_serial_number *sn_ptr; 9482 int data_len; 9483 9484 data_len = 4 + CTL_SN_LEN; 9485 ctsio->kern_data_ptr = malloc(data_len, M_CTL, M_WAITOK | M_ZERO); 9486 sn_ptr = (struct scsi_vpd_unit_serial_number *)ctsio->kern_data_ptr; 9487 ctsio->kern_rel_offset = 0; 9488 ctsio->kern_sg_entries = 0; 9489 ctsio->kern_data_len = min(data_len, alloc_len); 9490 ctsio->kern_total_len = ctsio->kern_data_len; 9491 9492 /* 9493 * The control device is always connected. The disk device, on the 9494 * other hand, may not be online all the time. Need to change this 9495 * to figure out whether the disk device is actually online or not. 9496 */ 9497 if (lun != NULL) 9498 sn_ptr->device = (SID_QUAL_LU_CONNECTED << 5) | 9499 lun->be_lun->lun_type; 9500 else 9501 sn_ptr->device = (SID_QUAL_LU_OFFLINE << 5) | T_DIRECT; 9502 9503 sn_ptr->page_code = SVPD_UNIT_SERIAL_NUMBER; 9504 sn_ptr->length = CTL_SN_LEN; 9505 /* 9506 * If we don't have a LUN, we just leave the serial number as 9507 * all spaces. 9508 */ 9509 if (lun != NULL) { 9510 strncpy((char *)sn_ptr->serial_num, 9511 (char *)lun->be_lun->serial_num, CTL_SN_LEN); 9512 } else 9513 memset(sn_ptr->serial_num, 0x20, CTL_SN_LEN); 9514 9515 ctl_set_success(ctsio); 9516 ctsio->io_hdr.flags |= CTL_FLAG_ALLOCATED; 9517 ctsio->be_move_done = ctl_config_move_done; 9518 ctl_datamove((union ctl_io *)ctsio); 9519 return (CTL_RETVAL_COMPLETE); 9520 } 9521 9522 /* 9523 * SCSI VPD page 0x86, the Extended INQUIRY Data page. 9524 */ 9525 static int 9526 ctl_inquiry_evpd_eid(struct ctl_scsiio *ctsio, int alloc_len) 9527 { 9528 struct ctl_lun *lun = CTL_LUN(ctsio); 9529 struct scsi_vpd_extended_inquiry_data *eid_ptr; 9530 int data_len; 9531 9532 data_len = sizeof(struct scsi_vpd_extended_inquiry_data); 9533 ctsio->kern_data_ptr = malloc(data_len, M_CTL, M_WAITOK | M_ZERO); 9534 eid_ptr = (struct scsi_vpd_extended_inquiry_data *)ctsio->kern_data_ptr; 9535 ctsio->kern_sg_entries = 0; 9536 ctsio->kern_rel_offset = 0; 9537 ctsio->kern_data_len = min(data_len, alloc_len); 9538 ctsio->kern_total_len = ctsio->kern_data_len; 9539 9540 /* 9541 * The control device is always connected. The disk device, on the 9542 * other hand, may not be online all the time. 9543 */ 9544 if (lun != NULL) 9545 eid_ptr->device = (SID_QUAL_LU_CONNECTED << 5) | 9546 lun->be_lun->lun_type; 9547 else 9548 eid_ptr->device = (SID_QUAL_LU_OFFLINE << 5) | T_DIRECT; 9549 eid_ptr->page_code = SVPD_EXTENDED_INQUIRY_DATA; 9550 scsi_ulto2b(data_len - 4, eid_ptr->page_length); 9551 /* 9552 * We support head of queue, ordered and simple tags. 9553 */ 9554 eid_ptr->flags2 = SVPD_EID_HEADSUP | SVPD_EID_ORDSUP | SVPD_EID_SIMPSUP; 9555 /* 9556 * Volatile cache supported. 9557 */ 9558 eid_ptr->flags3 = SVPD_EID_V_SUP; 9559 9560 /* 9561 * This means that we clear the REPORTED LUNS DATA HAS CHANGED unit 9562 * attention for a particular IT nexus on all LUNs once we report 9563 * it to that nexus once. This bit is required as of SPC-4. 9564 */ 9565 eid_ptr->flags4 = SVPD_EID_LUICLR; 9566 9567 /* 9568 * We support revert to defaults (RTD) bit in MODE SELECT. 9569 */ 9570 eid_ptr->flags5 = SVPD_EID_RTD_SUP; 9571 9572 /* 9573 * XXX KDM in order to correctly answer this, we would need 9574 * information from the SIM to determine how much sense data it 9575 * can send. So this would really be a path inquiry field, most 9576 * likely. This can be set to a maximum of 252 according to SPC-4, 9577 * but the hardware may or may not be able to support that much. 9578 * 0 just means that the maximum sense data length is not reported. 9579 */ 9580 eid_ptr->max_sense_length = 0; 9581 9582 ctl_set_success(ctsio); 9583 ctsio->io_hdr.flags |= CTL_FLAG_ALLOCATED; 9584 ctsio->be_move_done = ctl_config_move_done; 9585 ctl_datamove((union ctl_io *)ctsio); 9586 return (CTL_RETVAL_COMPLETE); 9587 } 9588 9589 static int 9590 ctl_inquiry_evpd_mpp(struct ctl_scsiio *ctsio, int alloc_len) 9591 { 9592 struct ctl_lun *lun = CTL_LUN(ctsio); 9593 struct scsi_vpd_mode_page_policy *mpp_ptr; 9594 int data_len; 9595 9596 data_len = sizeof(struct scsi_vpd_mode_page_policy) + 9597 sizeof(struct scsi_vpd_mode_page_policy_descr); 9598 9599 ctsio->kern_data_ptr = malloc(data_len, M_CTL, M_WAITOK | M_ZERO); 9600 mpp_ptr = (struct scsi_vpd_mode_page_policy *)ctsio->kern_data_ptr; 9601 ctsio->kern_rel_offset = 0; 9602 ctsio->kern_sg_entries = 0; 9603 ctsio->kern_data_len = min(data_len, alloc_len); 9604 ctsio->kern_total_len = ctsio->kern_data_len; 9605 9606 /* 9607 * The control device is always connected. The disk device, on the 9608 * other hand, may not be online all the time. 9609 */ 9610 if (lun != NULL) 9611 mpp_ptr->device = (SID_QUAL_LU_CONNECTED << 5) | 9612 lun->be_lun->lun_type; 9613 else 9614 mpp_ptr->device = (SID_QUAL_LU_OFFLINE << 5) | T_DIRECT; 9615 mpp_ptr->page_code = SVPD_MODE_PAGE_POLICY; 9616 scsi_ulto2b(data_len - 4, mpp_ptr->page_length); 9617 mpp_ptr->descr[0].page_code = 0x3f; 9618 mpp_ptr->descr[0].subpage_code = 0xff; 9619 mpp_ptr->descr[0].policy = SVPD_MPP_SHARED; 9620 9621 ctl_set_success(ctsio); 9622 ctsio->io_hdr.flags |= CTL_FLAG_ALLOCATED; 9623 ctsio->be_move_done = ctl_config_move_done; 9624 ctl_datamove((union ctl_io *)ctsio); 9625 return (CTL_RETVAL_COMPLETE); 9626 } 9627 9628 /* 9629 * SCSI VPD page 0x83, the Device Identification page. 9630 */ 9631 static int 9632 ctl_inquiry_evpd_devid(struct ctl_scsiio *ctsio, int alloc_len) 9633 { 9634 struct ctl_softc *softc = CTL_SOFTC(ctsio); 9635 struct ctl_port *port = CTL_PORT(ctsio); 9636 struct ctl_lun *lun = CTL_LUN(ctsio); 9637 struct scsi_vpd_device_id *devid_ptr; 9638 struct scsi_vpd_id_descriptor *desc; 9639 int data_len, g; 9640 uint8_t proto; 9641 9642 data_len = sizeof(struct scsi_vpd_device_id) + 9643 sizeof(struct scsi_vpd_id_descriptor) + 9644 sizeof(struct scsi_vpd_id_rel_trgt_port_id) + 9645 sizeof(struct scsi_vpd_id_descriptor) + 9646 sizeof(struct scsi_vpd_id_trgt_port_grp_id); 9647 if (lun && lun->lun_devid) 9648 data_len += lun->lun_devid->len; 9649 if (port && port->port_devid) 9650 data_len += port->port_devid->len; 9651 if (port && port->target_devid) 9652 data_len += port->target_devid->len; 9653 9654 ctsio->kern_data_ptr = malloc(data_len, M_CTL, M_WAITOK | M_ZERO); 9655 devid_ptr = (struct scsi_vpd_device_id *)ctsio->kern_data_ptr; 9656 ctsio->kern_sg_entries = 0; 9657 ctsio->kern_rel_offset = 0; 9658 ctsio->kern_sg_entries = 0; 9659 ctsio->kern_data_len = min(data_len, alloc_len); 9660 ctsio->kern_total_len = ctsio->kern_data_len; 9661 9662 /* 9663 * The control device is always connected. The disk device, on the 9664 * other hand, may not be online all the time. 9665 */ 9666 if (lun != NULL) 9667 devid_ptr->device = (SID_QUAL_LU_CONNECTED << 5) | 9668 lun->be_lun->lun_type; 9669 else 9670 devid_ptr->device = (SID_QUAL_LU_OFFLINE << 5) | T_DIRECT; 9671 devid_ptr->page_code = SVPD_DEVICE_ID; 9672 scsi_ulto2b(data_len - 4, devid_ptr->length); 9673 9674 if (port && port->port_type == CTL_PORT_FC) 9675 proto = SCSI_PROTO_FC << 4; 9676 else if (port && port->port_type == CTL_PORT_SAS) 9677 proto = SCSI_PROTO_SAS << 4; 9678 else if (port && port->port_type == CTL_PORT_ISCSI) 9679 proto = SCSI_PROTO_ISCSI << 4; 9680 else 9681 proto = SCSI_PROTO_SPI << 4; 9682 desc = (struct scsi_vpd_id_descriptor *)devid_ptr->desc_list; 9683 9684 /* 9685 * We're using a LUN association here. i.e., this device ID is a 9686 * per-LUN identifier. 9687 */ 9688 if (lun && lun->lun_devid) { 9689 memcpy(desc, lun->lun_devid->data, lun->lun_devid->len); 9690 desc = (struct scsi_vpd_id_descriptor *)((uint8_t *)desc + 9691 lun->lun_devid->len); 9692 } 9693 9694 /* 9695 * This is for the WWPN which is a port association. 9696 */ 9697 if (port && port->port_devid) { 9698 memcpy(desc, port->port_devid->data, port->port_devid->len); 9699 desc = (struct scsi_vpd_id_descriptor *)((uint8_t *)desc + 9700 port->port_devid->len); 9701 } 9702 9703 /* 9704 * This is for the Relative Target Port(type 4h) identifier 9705 */ 9706 desc->proto_codeset = proto | SVPD_ID_CODESET_BINARY; 9707 desc->id_type = SVPD_ID_PIV | SVPD_ID_ASSOC_PORT | 9708 SVPD_ID_TYPE_RELTARG; 9709 desc->length = 4; 9710 scsi_ulto2b(ctsio->io_hdr.nexus.targ_port, &desc->identifier[2]); 9711 desc = (struct scsi_vpd_id_descriptor *)(&desc->identifier[0] + 9712 sizeof(struct scsi_vpd_id_rel_trgt_port_id)); 9713 9714 /* 9715 * This is for the Target Port Group(type 5h) identifier 9716 */ 9717 desc->proto_codeset = proto | SVPD_ID_CODESET_BINARY; 9718 desc->id_type = SVPD_ID_PIV | SVPD_ID_ASSOC_PORT | 9719 SVPD_ID_TYPE_TPORTGRP; 9720 desc->length = 4; 9721 if (softc->is_single || 9722 (port && port->status & CTL_PORT_STATUS_HA_SHARED)) 9723 g = 1; 9724 else 9725 g = 2 + ctsio->io_hdr.nexus.targ_port / softc->port_cnt; 9726 scsi_ulto2b(g, &desc->identifier[2]); 9727 desc = (struct scsi_vpd_id_descriptor *)(&desc->identifier[0] + 9728 sizeof(struct scsi_vpd_id_trgt_port_grp_id)); 9729 9730 /* 9731 * This is for the Target identifier 9732 */ 9733 if (port && port->target_devid) { 9734 memcpy(desc, port->target_devid->data, port->target_devid->len); 9735 } 9736 9737 ctl_set_success(ctsio); 9738 ctsio->io_hdr.flags |= CTL_FLAG_ALLOCATED; 9739 ctsio->be_move_done = ctl_config_move_done; 9740 ctl_datamove((union ctl_io *)ctsio); 9741 return (CTL_RETVAL_COMPLETE); 9742 } 9743 9744 static int 9745 ctl_inquiry_evpd_scsi_ports(struct ctl_scsiio *ctsio, int alloc_len) 9746 { 9747 struct ctl_softc *softc = CTL_SOFTC(ctsio); 9748 struct ctl_lun *lun = CTL_LUN(ctsio); 9749 struct scsi_vpd_scsi_ports *sp; 9750 struct scsi_vpd_port_designation *pd; 9751 struct scsi_vpd_port_designation_cont *pdc; 9752 struct ctl_port *port; 9753 int data_len, num_target_ports, iid_len, id_len; 9754 9755 num_target_ports = 0; 9756 iid_len = 0; 9757 id_len = 0; 9758 mtx_lock(&softc->ctl_lock); 9759 STAILQ_FOREACH(port, &softc->port_list, links) { 9760 if ((port->status & CTL_PORT_STATUS_ONLINE) == 0) 9761 continue; 9762 if (lun != NULL && 9763 ctl_lun_map_to_port(port, lun->lun) == UINT32_MAX) 9764 continue; 9765 num_target_ports++; 9766 if (port->init_devid) 9767 iid_len += port->init_devid->len; 9768 if (port->port_devid) 9769 id_len += port->port_devid->len; 9770 } 9771 mtx_unlock(&softc->ctl_lock); 9772 9773 data_len = sizeof(struct scsi_vpd_scsi_ports) + 9774 num_target_ports * (sizeof(struct scsi_vpd_port_designation) + 9775 sizeof(struct scsi_vpd_port_designation_cont)) + iid_len + id_len; 9776 ctsio->kern_data_ptr = malloc(data_len, M_CTL, M_WAITOK | M_ZERO); 9777 sp = (struct scsi_vpd_scsi_ports *)ctsio->kern_data_ptr; 9778 ctsio->kern_sg_entries = 0; 9779 ctsio->kern_rel_offset = 0; 9780 ctsio->kern_sg_entries = 0; 9781 ctsio->kern_data_len = min(data_len, alloc_len); 9782 ctsio->kern_total_len = ctsio->kern_data_len; 9783 9784 /* 9785 * The control device is always connected. The disk device, on the 9786 * other hand, may not be online all the time. Need to change this 9787 * to figure out whether the disk device is actually online or not. 9788 */ 9789 if (lun != NULL) 9790 sp->device = (SID_QUAL_LU_CONNECTED << 5) | 9791 lun->be_lun->lun_type; 9792 else 9793 sp->device = (SID_QUAL_LU_OFFLINE << 5) | T_DIRECT; 9794 9795 sp->page_code = SVPD_SCSI_PORTS; 9796 scsi_ulto2b(data_len - sizeof(struct scsi_vpd_scsi_ports), 9797 sp->page_length); 9798 pd = &sp->design[0]; 9799 9800 mtx_lock(&softc->ctl_lock); 9801 STAILQ_FOREACH(port, &softc->port_list, links) { 9802 if ((port->status & CTL_PORT_STATUS_ONLINE) == 0) 9803 continue; 9804 if (lun != NULL && 9805 ctl_lun_map_to_port(port, lun->lun) == UINT32_MAX) 9806 continue; 9807 scsi_ulto2b(port->targ_port, pd->relative_port_id); 9808 if (port->init_devid) { 9809 iid_len = port->init_devid->len; 9810 memcpy(pd->initiator_transportid, 9811 port->init_devid->data, port->init_devid->len); 9812 } else 9813 iid_len = 0; 9814 scsi_ulto2b(iid_len, pd->initiator_transportid_length); 9815 pdc = (struct scsi_vpd_port_designation_cont *) 9816 (&pd->initiator_transportid[iid_len]); 9817 if (port->port_devid) { 9818 id_len = port->port_devid->len; 9819 memcpy(pdc->target_port_descriptors, 9820 port->port_devid->data, port->port_devid->len); 9821 } else 9822 id_len = 0; 9823 scsi_ulto2b(id_len, pdc->target_port_descriptors_length); 9824 pd = (struct scsi_vpd_port_designation *) 9825 ((uint8_t *)pdc->target_port_descriptors + id_len); 9826 } 9827 mtx_unlock(&softc->ctl_lock); 9828 9829 ctl_set_success(ctsio); 9830 ctsio->io_hdr.flags |= CTL_FLAG_ALLOCATED; 9831 ctsio->be_move_done = ctl_config_move_done; 9832 ctl_datamove((union ctl_io *)ctsio); 9833 return (CTL_RETVAL_COMPLETE); 9834 } 9835 9836 static int 9837 ctl_inquiry_evpd_sfs(struct ctl_scsiio *ctsio, int alloc_len) 9838 { 9839 struct ctl_lun *lun = CTL_LUN(ctsio); 9840 struct scsi_vpd_sfs *sfs_ptr; 9841 int sfs_page_size, n; 9842 9843 sfs_page_size = sizeof(*sfs_ptr) + 5 * 2; 9844 ctsio->kern_data_ptr = malloc(sfs_page_size, M_CTL, M_WAITOK | M_ZERO); 9845 sfs_ptr = (struct scsi_vpd_sfs *)ctsio->kern_data_ptr; 9846 ctsio->kern_sg_entries = 0; 9847 ctsio->kern_rel_offset = 0; 9848 ctsio->kern_sg_entries = 0; 9849 ctsio->kern_data_len = min(sfs_page_size, alloc_len); 9850 ctsio->kern_total_len = ctsio->kern_data_len; 9851 9852 /* 9853 * The control device is always connected. The disk device, on the 9854 * other hand, may not be online all the time. Need to change this 9855 * to figure out whether the disk device is actually online or not. 9856 */ 9857 if (lun != NULL) 9858 sfs_ptr->device = (SID_QUAL_LU_CONNECTED << 5) | 9859 lun->be_lun->lun_type; 9860 else 9861 sfs_ptr->device = (SID_QUAL_LU_OFFLINE << 5) | T_DIRECT; 9862 9863 sfs_ptr->page_code = SVPD_SCSI_SFS; 9864 n = 0; 9865 /* Discovery 2016 */ 9866 scsi_ulto2b(0x0001, &sfs_ptr->codes[2 * n++]); 9867 if (lun != NULL && lun->be_lun->lun_type == T_DIRECT) { 9868 /* SBC Base 2016 */ 9869 scsi_ulto2b(0x0101, &sfs_ptr->codes[2 * n++]); 9870 /* SBC Base 2010 */ 9871 scsi_ulto2b(0x0102, &sfs_ptr->codes[2 * n++]); 9872 if (lun->be_lun->flags & CTL_LUN_FLAG_UNMAP) { 9873 /* Basic Provisioning 2016 */ 9874 scsi_ulto2b(0x0103, &sfs_ptr->codes[2 * n++]); 9875 } 9876 /* Drive Maintenance 2016 */ 9877 //scsi_ulto2b(0x0104, &sfs_ptr->codes[2 * n++]); 9878 } 9879 scsi_ulto2b(4 + 2 * n, sfs_ptr->page_length); 9880 9881 ctl_set_success(ctsio); 9882 ctsio->io_hdr.flags |= CTL_FLAG_ALLOCATED; 9883 ctsio->be_move_done = ctl_config_move_done; 9884 ctl_datamove((union ctl_io *)ctsio); 9885 return (CTL_RETVAL_COMPLETE); 9886 } 9887 9888 static int 9889 ctl_inquiry_evpd_block_limits(struct ctl_scsiio *ctsio, int alloc_len) 9890 { 9891 struct ctl_lun *lun = CTL_LUN(ctsio); 9892 struct scsi_vpd_block_limits *bl_ptr; 9893 const char *val; 9894 uint64_t ival; 9895 9896 ctsio->kern_data_ptr = malloc(sizeof(*bl_ptr), M_CTL, M_WAITOK | M_ZERO); 9897 bl_ptr = (struct scsi_vpd_block_limits *)ctsio->kern_data_ptr; 9898 ctsio->kern_sg_entries = 0; 9899 ctsio->kern_rel_offset = 0; 9900 ctsio->kern_sg_entries = 0; 9901 ctsio->kern_data_len = min(sizeof(*bl_ptr), alloc_len); 9902 ctsio->kern_total_len = ctsio->kern_data_len; 9903 9904 /* 9905 * The control device is always connected. The disk device, on the 9906 * other hand, may not be online all the time. Need to change this 9907 * to figure out whether the disk device is actually online or not. 9908 */ 9909 if (lun != NULL) 9910 bl_ptr->device = (SID_QUAL_LU_CONNECTED << 5) | 9911 lun->be_lun->lun_type; 9912 else 9913 bl_ptr->device = (SID_QUAL_LU_OFFLINE << 5) | T_DIRECT; 9914 9915 bl_ptr->page_code = SVPD_BLOCK_LIMITS; 9916 scsi_ulto2b(sizeof(*bl_ptr) - 4, bl_ptr->page_length); 9917 bl_ptr->max_cmp_write_len = 0xff; 9918 scsi_ulto4b(0xffffffff, bl_ptr->max_txfer_len); 9919 if (lun != NULL) { 9920 scsi_ulto4b(lun->be_lun->opttxferlen, bl_ptr->opt_txfer_len); 9921 if (lun->be_lun->flags & CTL_LUN_FLAG_UNMAP) { 9922 ival = 0xffffffff; 9923 val = dnvlist_get_string(lun->be_lun->options, 9924 "unmap_max_lba", NULL); 9925 if (val != NULL) 9926 ctl_expand_number(val, &ival); 9927 scsi_ulto4b(ival, bl_ptr->max_unmap_lba_cnt); 9928 ival = 0xffffffff; 9929 val = dnvlist_get_string(lun->be_lun->options, 9930 "unmap_max_descr", NULL); 9931 if (val != NULL) 9932 ctl_expand_number(val, &ival); 9933 scsi_ulto4b(ival, bl_ptr->max_unmap_blk_cnt); 9934 if (lun->be_lun->ublockexp != 0) { 9935 scsi_ulto4b((1 << lun->be_lun->ublockexp), 9936 bl_ptr->opt_unmap_grain); 9937 scsi_ulto4b(0x80000000 | lun->be_lun->ublockoff, 9938 bl_ptr->unmap_grain_align); 9939 } 9940 } 9941 scsi_ulto4b(lun->be_lun->atomicblock, 9942 bl_ptr->max_atomic_transfer_length); 9943 scsi_ulto4b(0, bl_ptr->atomic_alignment); 9944 scsi_ulto4b(0, bl_ptr->atomic_transfer_length_granularity); 9945 scsi_ulto4b(0, bl_ptr->max_atomic_transfer_length_with_atomic_boundary); 9946 scsi_ulto4b(0, bl_ptr->max_atomic_boundary_size); 9947 ival = UINT64_MAX; 9948 val = dnvlist_get_string(lun->be_lun->options, 9949 "write_same_max_lba", NULL); 9950 if (val != NULL) 9951 ctl_expand_number(val, &ival); 9952 scsi_u64to8b(ival, bl_ptr->max_write_same_length); 9953 if (lun->be_lun->maxlba + 1 > ival) 9954 bl_ptr->flags |= SVPD_BL_WSNZ; 9955 } 9956 9957 ctl_set_success(ctsio); 9958 ctsio->io_hdr.flags |= CTL_FLAG_ALLOCATED; 9959 ctsio->be_move_done = ctl_config_move_done; 9960 ctl_datamove((union ctl_io *)ctsio); 9961 return (CTL_RETVAL_COMPLETE); 9962 } 9963 9964 static int 9965 ctl_inquiry_evpd_bdc(struct ctl_scsiio *ctsio, int alloc_len) 9966 { 9967 struct ctl_lun *lun = CTL_LUN(ctsio); 9968 struct scsi_vpd_block_device_characteristics *bdc_ptr; 9969 const char *value; 9970 u_int i; 9971 9972 ctsio->kern_data_ptr = malloc(sizeof(*bdc_ptr), M_CTL, M_WAITOK | M_ZERO); 9973 bdc_ptr = (struct scsi_vpd_block_device_characteristics *)ctsio->kern_data_ptr; 9974 ctsio->kern_sg_entries = 0; 9975 ctsio->kern_rel_offset = 0; 9976 ctsio->kern_data_len = min(sizeof(*bdc_ptr), alloc_len); 9977 ctsio->kern_total_len = ctsio->kern_data_len; 9978 9979 /* 9980 * The control device is always connected. The disk device, on the 9981 * other hand, may not be online all the time. Need to change this 9982 * to figure out whether the disk device is actually online or not. 9983 */ 9984 if (lun != NULL) 9985 bdc_ptr->device = (SID_QUAL_LU_CONNECTED << 5) | 9986 lun->be_lun->lun_type; 9987 else 9988 bdc_ptr->device = (SID_QUAL_LU_OFFLINE << 5) | T_DIRECT; 9989 bdc_ptr->page_code = SVPD_BDC; 9990 scsi_ulto2b(sizeof(*bdc_ptr) - 4, bdc_ptr->page_length); 9991 if (lun != NULL && 9992 (value = dnvlist_get_string(lun->be_lun->options, "rpm", NULL)) != NULL) 9993 i = strtol(value, NULL, 0); 9994 else 9995 i = CTL_DEFAULT_ROTATION_RATE; 9996 scsi_ulto2b(i, bdc_ptr->medium_rotation_rate); 9997 if (lun != NULL && 9998 (value = dnvlist_get_string(lun->be_lun->options, "formfactor", NULL)) != NULL) 9999 i = strtol(value, NULL, 0); 10000 else 10001 i = 0; 10002 bdc_ptr->wab_wac_ff = (i & 0x0f); 10003 bdc_ptr->flags = SVPD_RBWZ | SVPD_FUAB | SVPD_VBULS; 10004 10005 ctl_set_success(ctsio); 10006 ctsio->io_hdr.flags |= CTL_FLAG_ALLOCATED; 10007 ctsio->be_move_done = ctl_config_move_done; 10008 ctl_datamove((union ctl_io *)ctsio); 10009 return (CTL_RETVAL_COMPLETE); 10010 } 10011 10012 static int 10013 ctl_inquiry_evpd_lbp(struct ctl_scsiio *ctsio, int alloc_len) 10014 { 10015 struct ctl_lun *lun = CTL_LUN(ctsio); 10016 struct scsi_vpd_logical_block_prov *lbp_ptr; 10017 const char *value; 10018 10019 ctsio->kern_data_ptr = malloc(sizeof(*lbp_ptr), M_CTL, M_WAITOK | M_ZERO); 10020 lbp_ptr = (struct scsi_vpd_logical_block_prov *)ctsio->kern_data_ptr; 10021 ctsio->kern_sg_entries = 0; 10022 ctsio->kern_rel_offset = 0; 10023 ctsio->kern_data_len = min(sizeof(*lbp_ptr), alloc_len); 10024 ctsio->kern_total_len = ctsio->kern_data_len; 10025 10026 /* 10027 * The control device is always connected. The disk device, on the 10028 * other hand, may not be online all the time. Need to change this 10029 * to figure out whether the disk device is actually online or not. 10030 */ 10031 if (lun != NULL) 10032 lbp_ptr->device = (SID_QUAL_LU_CONNECTED << 5) | 10033 lun->be_lun->lun_type; 10034 else 10035 lbp_ptr->device = (SID_QUAL_LU_OFFLINE << 5) | T_DIRECT; 10036 10037 lbp_ptr->page_code = SVPD_LBP; 10038 scsi_ulto2b(sizeof(*lbp_ptr) - 4, lbp_ptr->page_length); 10039 lbp_ptr->threshold_exponent = CTL_LBP_EXPONENT; 10040 if (lun != NULL && lun->be_lun->flags & CTL_LUN_FLAG_UNMAP) { 10041 lbp_ptr->flags = SVPD_LBP_UNMAP | SVPD_LBP_WS16 | 10042 SVPD_LBP_WS10 | SVPD_LBP_RZ | SVPD_LBP_ANC_SUP; 10043 value = dnvlist_get_string(lun->be_lun->options, 10044 "provisioning_type", NULL); 10045 if (value != NULL) { 10046 if (strcmp(value, "resource") == 0) 10047 lbp_ptr->prov_type = SVPD_LBP_RESOURCE; 10048 else if (strcmp(value, "thin") == 0) 10049 lbp_ptr->prov_type = SVPD_LBP_THIN; 10050 } else 10051 lbp_ptr->prov_type = SVPD_LBP_THIN; 10052 } 10053 10054 ctl_set_success(ctsio); 10055 ctsio->io_hdr.flags |= CTL_FLAG_ALLOCATED; 10056 ctsio->be_move_done = ctl_config_move_done; 10057 ctl_datamove((union ctl_io *)ctsio); 10058 return (CTL_RETVAL_COMPLETE); 10059 } 10060 10061 /* 10062 * INQUIRY with the EVPD bit set. 10063 */ 10064 static int 10065 ctl_inquiry_evpd(struct ctl_scsiio *ctsio) 10066 { 10067 struct ctl_lun *lun = CTL_LUN(ctsio); 10068 struct scsi_inquiry *cdb; 10069 int alloc_len, retval; 10070 10071 cdb = (struct scsi_inquiry *)ctsio->cdb; 10072 alloc_len = scsi_2btoul(cdb->length); 10073 10074 switch (cdb->page_code) { 10075 case SVPD_SUPPORTED_PAGES: 10076 retval = ctl_inquiry_evpd_supported(ctsio, alloc_len); 10077 break; 10078 case SVPD_UNIT_SERIAL_NUMBER: 10079 retval = ctl_inquiry_evpd_serial(ctsio, alloc_len); 10080 break; 10081 case SVPD_DEVICE_ID: 10082 retval = ctl_inquiry_evpd_devid(ctsio, alloc_len); 10083 break; 10084 case SVPD_EXTENDED_INQUIRY_DATA: 10085 retval = ctl_inquiry_evpd_eid(ctsio, alloc_len); 10086 break; 10087 case SVPD_MODE_PAGE_POLICY: 10088 retval = ctl_inquiry_evpd_mpp(ctsio, alloc_len); 10089 break; 10090 case SVPD_SCSI_PORTS: 10091 retval = ctl_inquiry_evpd_scsi_ports(ctsio, alloc_len); 10092 break; 10093 case SVPD_SCSI_TPC: 10094 retval = ctl_inquiry_evpd_tpc(ctsio, alloc_len); 10095 break; 10096 case SVPD_SCSI_SFS: 10097 retval = ctl_inquiry_evpd_sfs(ctsio, alloc_len); 10098 break; 10099 case SVPD_BLOCK_LIMITS: 10100 if (lun == NULL || lun->be_lun->lun_type != T_DIRECT) 10101 goto err; 10102 retval = ctl_inquiry_evpd_block_limits(ctsio, alloc_len); 10103 break; 10104 case SVPD_BDC: 10105 if (lun == NULL || lun->be_lun->lun_type != T_DIRECT) 10106 goto err; 10107 retval = ctl_inquiry_evpd_bdc(ctsio, alloc_len); 10108 break; 10109 case SVPD_LBP: 10110 if (lun == NULL || lun->be_lun->lun_type != T_DIRECT) 10111 goto err; 10112 retval = ctl_inquiry_evpd_lbp(ctsio, alloc_len); 10113 break; 10114 default: 10115 err: 10116 ctl_set_invalid_field(ctsio, 10117 /*sks_valid*/ 1, 10118 /*command*/ 1, 10119 /*field*/ 2, 10120 /*bit_valid*/ 0, 10121 /*bit*/ 0); 10122 ctl_done((union ctl_io *)ctsio); 10123 retval = CTL_RETVAL_COMPLETE; 10124 break; 10125 } 10126 10127 return (retval); 10128 } 10129 10130 /* 10131 * Standard INQUIRY data. 10132 */ 10133 static int 10134 ctl_inquiry_std(struct ctl_scsiio *ctsio) 10135 { 10136 struct ctl_softc *softc = CTL_SOFTC(ctsio); 10137 struct ctl_port *port = CTL_PORT(ctsio); 10138 struct ctl_lun *lun = CTL_LUN(ctsio); 10139 struct scsi_inquiry_data *inq_ptr; 10140 struct scsi_inquiry *cdb; 10141 const char *val; 10142 uint32_t alloc_len, data_len; 10143 ctl_port_type port_type; 10144 10145 port_type = port->port_type; 10146 if (port_type == CTL_PORT_IOCTL || port_type == CTL_PORT_INTERNAL) 10147 port_type = CTL_PORT_SCSI; 10148 10149 cdb = (struct scsi_inquiry *)ctsio->cdb; 10150 alloc_len = scsi_2btoul(cdb->length); 10151 10152 /* 10153 * We malloc the full inquiry data size here and fill it 10154 * in. If the user only asks for less, we'll give him 10155 * that much. 10156 */ 10157 data_len = offsetof(struct scsi_inquiry_data, vendor_specific1); 10158 ctsio->kern_data_ptr = malloc(data_len, M_CTL, M_WAITOK | M_ZERO); 10159 inq_ptr = (struct scsi_inquiry_data *)ctsio->kern_data_ptr; 10160 ctsio->kern_sg_entries = 0; 10161 ctsio->kern_rel_offset = 0; 10162 ctsio->kern_data_len = min(data_len, alloc_len); 10163 ctsio->kern_total_len = ctsio->kern_data_len; 10164 10165 if (lun != NULL) { 10166 if ((lun->flags & CTL_LUN_PRIMARY_SC) || 10167 softc->ha_link >= CTL_HA_LINK_UNKNOWN) { 10168 inq_ptr->device = (SID_QUAL_LU_CONNECTED << 5) | 10169 lun->be_lun->lun_type; 10170 } else { 10171 inq_ptr->device = (SID_QUAL_LU_OFFLINE << 5) | 10172 lun->be_lun->lun_type; 10173 } 10174 if (lun->flags & CTL_LUN_REMOVABLE) 10175 inq_ptr->dev_qual2 |= SID_RMB; 10176 } else 10177 inq_ptr->device = (SID_QUAL_BAD_LU << 5) | T_NODEVICE; 10178 10179 /* RMB in byte 2 is 0 */ 10180 inq_ptr->version = SCSI_REV_SPC5; 10181 10182 /* 10183 * According to SAM-3, even if a device only supports a single 10184 * level of LUN addressing, it should still set the HISUP bit: 10185 * 10186 * 4.9.1 Logical unit numbers overview 10187 * 10188 * All logical unit number formats described in this standard are 10189 * hierarchical in structure even when only a single level in that 10190 * hierarchy is used. The HISUP bit shall be set to one in the 10191 * standard INQUIRY data (see SPC-2) when any logical unit number 10192 * format described in this standard is used. Non-hierarchical 10193 * formats are outside the scope of this standard. 10194 * 10195 * Therefore we set the HiSup bit here. 10196 * 10197 * The response format is 2, per SPC-3. 10198 */ 10199 inq_ptr->response_format = SID_HiSup | 2; 10200 10201 inq_ptr->additional_length = data_len - 10202 (offsetof(struct scsi_inquiry_data, additional_length) + 1); 10203 CTL_DEBUG_PRINT(("additional_length = %d\n", 10204 inq_ptr->additional_length)); 10205 10206 inq_ptr->spc3_flags = SPC3_SID_3PC | SPC3_SID_TPGS_IMPLICIT; 10207 if (port_type == CTL_PORT_SCSI) 10208 inq_ptr->spc2_flags = SPC2_SID_ADDR16; 10209 inq_ptr->spc2_flags |= SPC2_SID_MultiP; 10210 inq_ptr->flags = SID_CmdQue; 10211 if (port_type == CTL_PORT_SCSI) 10212 inq_ptr->flags |= SID_WBus16 | SID_Sync; 10213 10214 /* 10215 * Per SPC-3, unused bytes in ASCII strings are filled with spaces. 10216 * We have 8 bytes for the vendor name, and 16 bytes for the device 10217 * name and 4 bytes for the revision. 10218 */ 10219 if (lun == NULL || (val = dnvlist_get_string(lun->be_lun->options, 10220 "vendor", NULL)) == NULL) { 10221 strncpy(inq_ptr->vendor, CTL_VENDOR, sizeof(inq_ptr->vendor)); 10222 } else { 10223 memset(inq_ptr->vendor, ' ', sizeof(inq_ptr->vendor)); 10224 strncpy(inq_ptr->vendor, val, 10225 min(sizeof(inq_ptr->vendor), strlen(val))); 10226 } 10227 if (lun == NULL) { 10228 strncpy(inq_ptr->product, CTL_DIRECT_PRODUCT, 10229 sizeof(inq_ptr->product)); 10230 } else if ((val = dnvlist_get_string(lun->be_lun->options, "product", 10231 NULL)) == NULL) { 10232 switch (lun->be_lun->lun_type) { 10233 case T_DIRECT: 10234 strncpy(inq_ptr->product, CTL_DIRECT_PRODUCT, 10235 sizeof(inq_ptr->product)); 10236 break; 10237 case T_PROCESSOR: 10238 strncpy(inq_ptr->product, CTL_PROCESSOR_PRODUCT, 10239 sizeof(inq_ptr->product)); 10240 break; 10241 case T_CDROM: 10242 strncpy(inq_ptr->product, CTL_CDROM_PRODUCT, 10243 sizeof(inq_ptr->product)); 10244 break; 10245 default: 10246 strncpy(inq_ptr->product, CTL_UNKNOWN_PRODUCT, 10247 sizeof(inq_ptr->product)); 10248 break; 10249 } 10250 } else { 10251 memset(inq_ptr->product, ' ', sizeof(inq_ptr->product)); 10252 strncpy(inq_ptr->product, val, 10253 min(sizeof(inq_ptr->product), strlen(val))); 10254 } 10255 10256 /* 10257 * XXX make this a macro somewhere so it automatically gets 10258 * incremented when we make changes. 10259 */ 10260 if (lun == NULL || (val = dnvlist_get_string(lun->be_lun->options, 10261 "revision", NULL)) == NULL) { 10262 strncpy(inq_ptr->revision, "0001", sizeof(inq_ptr->revision)); 10263 } else { 10264 memset(inq_ptr->revision, ' ', sizeof(inq_ptr->revision)); 10265 strncpy(inq_ptr->revision, val, 10266 min(sizeof(inq_ptr->revision), strlen(val))); 10267 } 10268 10269 /* 10270 * For parallel SCSI, we support double transition and single 10271 * transition clocking. We also support QAS (Quick Arbitration 10272 * and Selection) and Information Unit transfers on both the 10273 * control and array devices. 10274 */ 10275 if (port_type == CTL_PORT_SCSI) 10276 inq_ptr->spi3data = SID_SPI_CLOCK_DT_ST | SID_SPI_QAS | 10277 SID_SPI_IUS; 10278 10279 /* SAM-6 (no version claimed) */ 10280 scsi_ulto2b(0x00C0, inq_ptr->version1); 10281 /* SPC-5 (no version claimed) */ 10282 scsi_ulto2b(0x05C0, inq_ptr->version2); 10283 if (port_type == CTL_PORT_FC) { 10284 /* FCP-2 ANSI INCITS.350:2003 */ 10285 scsi_ulto2b(0x0917, inq_ptr->version3); 10286 } else if (port_type == CTL_PORT_SCSI) { 10287 /* SPI-4 ANSI INCITS.362:200x */ 10288 scsi_ulto2b(0x0B56, inq_ptr->version3); 10289 } else if (port_type == CTL_PORT_ISCSI) { 10290 /* iSCSI (no version claimed) */ 10291 scsi_ulto2b(0x0960, inq_ptr->version3); 10292 } else if (port_type == CTL_PORT_SAS) { 10293 /* SAS (no version claimed) */ 10294 scsi_ulto2b(0x0BE0, inq_ptr->version3); 10295 } else if (port_type == CTL_PORT_UMASS) { 10296 /* USB Mass Storage Class Bulk-Only Transport, Revision 1.0 */ 10297 scsi_ulto2b(0x1730, inq_ptr->version3); 10298 } 10299 10300 if (lun == NULL) { 10301 /* SBC-4 (no version claimed) */ 10302 scsi_ulto2b(0x0600, inq_ptr->version4); 10303 } else { 10304 switch (lun->be_lun->lun_type) { 10305 case T_DIRECT: 10306 /* SBC-4 (no version claimed) */ 10307 scsi_ulto2b(0x0600, inq_ptr->version4); 10308 break; 10309 case T_PROCESSOR: 10310 break; 10311 case T_CDROM: 10312 /* MMC-6 (no version claimed) */ 10313 scsi_ulto2b(0x04E0, inq_ptr->version4); 10314 break; 10315 default: 10316 break; 10317 } 10318 } 10319 10320 ctl_set_success(ctsio); 10321 ctsio->io_hdr.flags |= CTL_FLAG_ALLOCATED; 10322 ctsio->be_move_done = ctl_config_move_done; 10323 ctl_datamove((union ctl_io *)ctsio); 10324 return (CTL_RETVAL_COMPLETE); 10325 } 10326 10327 int 10328 ctl_inquiry(struct ctl_scsiio *ctsio) 10329 { 10330 struct scsi_inquiry *cdb; 10331 int retval; 10332 10333 CTL_DEBUG_PRINT(("ctl_inquiry\n")); 10334 10335 cdb = (struct scsi_inquiry *)ctsio->cdb; 10336 if (cdb->byte2 & SI_EVPD) 10337 retval = ctl_inquiry_evpd(ctsio); 10338 else if (cdb->page_code == 0) 10339 retval = ctl_inquiry_std(ctsio); 10340 else { 10341 ctl_set_invalid_field(ctsio, 10342 /*sks_valid*/ 1, 10343 /*command*/ 1, 10344 /*field*/ 2, 10345 /*bit_valid*/ 0, 10346 /*bit*/ 0); 10347 ctl_done((union ctl_io *)ctsio); 10348 return (CTL_RETVAL_COMPLETE); 10349 } 10350 10351 return (retval); 10352 } 10353 10354 int 10355 ctl_get_config(struct ctl_scsiio *ctsio) 10356 { 10357 struct ctl_lun *lun = CTL_LUN(ctsio); 10358 struct scsi_get_config_header *hdr; 10359 struct scsi_get_config_feature *feature; 10360 struct scsi_get_config *cdb; 10361 uint32_t alloc_len, data_len; 10362 int rt, starting; 10363 10364 cdb = (struct scsi_get_config *)ctsio->cdb; 10365 rt = (cdb->rt & SGC_RT_MASK); 10366 starting = scsi_2btoul(cdb->starting_feature); 10367 alloc_len = scsi_2btoul(cdb->length); 10368 10369 data_len = sizeof(struct scsi_get_config_header) + 10370 sizeof(struct scsi_get_config_feature) + 8 + 10371 sizeof(struct scsi_get_config_feature) + 8 + 10372 sizeof(struct scsi_get_config_feature) + 4 + 10373 sizeof(struct scsi_get_config_feature) + 4 + 10374 sizeof(struct scsi_get_config_feature) + 8 + 10375 sizeof(struct scsi_get_config_feature) + 10376 sizeof(struct scsi_get_config_feature) + 4 + 10377 sizeof(struct scsi_get_config_feature) + 4 + 10378 sizeof(struct scsi_get_config_feature) + 4 + 10379 sizeof(struct scsi_get_config_feature) + 4 + 10380 sizeof(struct scsi_get_config_feature) + 4 + 10381 sizeof(struct scsi_get_config_feature) + 4; 10382 ctsio->kern_data_ptr = malloc(data_len, M_CTL, M_WAITOK | M_ZERO); 10383 ctsio->kern_sg_entries = 0; 10384 ctsio->kern_rel_offset = 0; 10385 10386 hdr = (struct scsi_get_config_header *)ctsio->kern_data_ptr; 10387 if (lun->flags & CTL_LUN_NO_MEDIA) 10388 scsi_ulto2b(0x0000, hdr->current_profile); 10389 else 10390 scsi_ulto2b(0x0010, hdr->current_profile); 10391 feature = (struct scsi_get_config_feature *)(hdr + 1); 10392 10393 if (starting > 0x003b) 10394 goto done; 10395 if (starting > 0x003a) 10396 goto f3b; 10397 if (starting > 0x002b) 10398 goto f3a; 10399 if (starting > 0x002a) 10400 goto f2b; 10401 if (starting > 0x001f) 10402 goto f2a; 10403 if (starting > 0x001e) 10404 goto f1f; 10405 if (starting > 0x001d) 10406 goto f1e; 10407 if (starting > 0x0010) 10408 goto f1d; 10409 if (starting > 0x0003) 10410 goto f10; 10411 if (starting > 0x0002) 10412 goto f3; 10413 if (starting > 0x0001) 10414 goto f2; 10415 if (starting > 0x0000) 10416 goto f1; 10417 10418 /* Profile List */ 10419 scsi_ulto2b(0x0000, feature->feature_code); 10420 feature->flags = SGC_F_PERSISTENT | SGC_F_CURRENT; 10421 feature->add_length = 8; 10422 scsi_ulto2b(0x0008, &feature->feature_data[0]); /* CD-ROM */ 10423 feature->feature_data[2] = 0x00; 10424 scsi_ulto2b(0x0010, &feature->feature_data[4]); /* DVD-ROM */ 10425 feature->feature_data[6] = 0x01; 10426 feature = (struct scsi_get_config_feature *) 10427 &feature->feature_data[feature->add_length]; 10428 10429 f1: /* Core */ 10430 scsi_ulto2b(0x0001, feature->feature_code); 10431 feature->flags = 0x08 | SGC_F_PERSISTENT | SGC_F_CURRENT; 10432 feature->add_length = 8; 10433 scsi_ulto4b(0x00000000, &feature->feature_data[0]); 10434 feature->feature_data[4] = 0x03; 10435 feature = (struct scsi_get_config_feature *) 10436 &feature->feature_data[feature->add_length]; 10437 10438 f2: /* Morphing */ 10439 scsi_ulto2b(0x0002, feature->feature_code); 10440 feature->flags = 0x04 | SGC_F_PERSISTENT | SGC_F_CURRENT; 10441 feature->add_length = 4; 10442 feature->feature_data[0] = 0x02; 10443 feature = (struct scsi_get_config_feature *) 10444 &feature->feature_data[feature->add_length]; 10445 10446 f3: /* Removable Medium */ 10447 scsi_ulto2b(0x0003, feature->feature_code); 10448 feature->flags = 0x04 | SGC_F_PERSISTENT | SGC_F_CURRENT; 10449 feature->add_length = 4; 10450 feature->feature_data[0] = 0x39; 10451 feature = (struct scsi_get_config_feature *) 10452 &feature->feature_data[feature->add_length]; 10453 10454 if (rt == SGC_RT_CURRENT && (lun->flags & CTL_LUN_NO_MEDIA)) 10455 goto done; 10456 10457 f10: /* Random Read */ 10458 scsi_ulto2b(0x0010, feature->feature_code); 10459 feature->flags = 0x00; 10460 if ((lun->flags & CTL_LUN_NO_MEDIA) == 0) 10461 feature->flags |= SGC_F_CURRENT; 10462 feature->add_length = 8; 10463 scsi_ulto4b(lun->be_lun->blocksize, &feature->feature_data[0]); 10464 scsi_ulto2b(1, &feature->feature_data[4]); 10465 feature->feature_data[6] = 0x00; 10466 feature = (struct scsi_get_config_feature *) 10467 &feature->feature_data[feature->add_length]; 10468 10469 f1d: /* Multi-Read */ 10470 scsi_ulto2b(0x001D, feature->feature_code); 10471 feature->flags = 0x00; 10472 if ((lun->flags & CTL_LUN_NO_MEDIA) == 0) 10473 feature->flags |= SGC_F_CURRENT; 10474 feature->add_length = 0; 10475 feature = (struct scsi_get_config_feature *) 10476 &feature->feature_data[feature->add_length]; 10477 10478 f1e: /* CD Read */ 10479 scsi_ulto2b(0x001E, feature->feature_code); 10480 feature->flags = 0x00; 10481 if ((lun->flags & CTL_LUN_NO_MEDIA) == 0) 10482 feature->flags |= SGC_F_CURRENT; 10483 feature->add_length = 4; 10484 feature->feature_data[0] = 0x00; 10485 feature = (struct scsi_get_config_feature *) 10486 &feature->feature_data[feature->add_length]; 10487 10488 f1f: /* DVD Read */ 10489 scsi_ulto2b(0x001F, feature->feature_code); 10490 feature->flags = 0x08; 10491 if ((lun->flags & CTL_LUN_NO_MEDIA) == 0) 10492 feature->flags |= SGC_F_CURRENT; 10493 feature->add_length = 4; 10494 feature->feature_data[0] = 0x01; 10495 feature->feature_data[2] = 0x03; 10496 feature = (struct scsi_get_config_feature *) 10497 &feature->feature_data[feature->add_length]; 10498 10499 f2a: /* DVD+RW */ 10500 scsi_ulto2b(0x002A, feature->feature_code); 10501 feature->flags = 0x04; 10502 if ((lun->flags & CTL_LUN_NO_MEDIA) == 0) 10503 feature->flags |= SGC_F_CURRENT; 10504 feature->add_length = 4; 10505 feature->feature_data[0] = 0x00; 10506 feature->feature_data[1] = 0x00; 10507 feature = (struct scsi_get_config_feature *) 10508 &feature->feature_data[feature->add_length]; 10509 10510 f2b: /* DVD+R */ 10511 scsi_ulto2b(0x002B, feature->feature_code); 10512 feature->flags = 0x00; 10513 if ((lun->flags & CTL_LUN_NO_MEDIA) == 0) 10514 feature->flags |= SGC_F_CURRENT; 10515 feature->add_length = 4; 10516 feature->feature_data[0] = 0x00; 10517 feature = (struct scsi_get_config_feature *) 10518 &feature->feature_data[feature->add_length]; 10519 10520 f3a: /* DVD+RW Dual Layer */ 10521 scsi_ulto2b(0x003A, feature->feature_code); 10522 feature->flags = 0x00; 10523 if ((lun->flags & CTL_LUN_NO_MEDIA) == 0) 10524 feature->flags |= SGC_F_CURRENT; 10525 feature->add_length = 4; 10526 feature->feature_data[0] = 0x00; 10527 feature->feature_data[1] = 0x00; 10528 feature = (struct scsi_get_config_feature *) 10529 &feature->feature_data[feature->add_length]; 10530 10531 f3b: /* DVD+R Dual Layer */ 10532 scsi_ulto2b(0x003B, feature->feature_code); 10533 feature->flags = 0x00; 10534 if ((lun->flags & CTL_LUN_NO_MEDIA) == 0) 10535 feature->flags |= SGC_F_CURRENT; 10536 feature->add_length = 4; 10537 feature->feature_data[0] = 0x00; 10538 feature = (struct scsi_get_config_feature *) 10539 &feature->feature_data[feature->add_length]; 10540 10541 done: 10542 data_len = (uint8_t *)feature - (uint8_t *)hdr; 10543 if (rt == SGC_RT_SPECIFIC && data_len > 4) { 10544 feature = (struct scsi_get_config_feature *)(hdr + 1); 10545 if (scsi_2btoul(feature->feature_code) == starting) 10546 feature = (struct scsi_get_config_feature *) 10547 &feature->feature_data[feature->add_length]; 10548 data_len = (uint8_t *)feature - (uint8_t *)hdr; 10549 } 10550 scsi_ulto4b(data_len - 4, hdr->data_length); 10551 ctsio->kern_data_len = min(data_len, alloc_len); 10552 ctsio->kern_total_len = ctsio->kern_data_len; 10553 10554 ctl_set_success(ctsio); 10555 ctsio->io_hdr.flags |= CTL_FLAG_ALLOCATED; 10556 ctsio->be_move_done = ctl_config_move_done; 10557 ctl_datamove((union ctl_io *)ctsio); 10558 return (CTL_RETVAL_COMPLETE); 10559 } 10560 10561 int 10562 ctl_get_event_status(struct ctl_scsiio *ctsio) 10563 { 10564 struct scsi_get_event_status_header *hdr; 10565 struct scsi_get_event_status *cdb; 10566 uint32_t alloc_len, data_len; 10567 10568 cdb = (struct scsi_get_event_status *)ctsio->cdb; 10569 if ((cdb->byte2 & SGESN_POLLED) == 0) { 10570 ctl_set_invalid_field(ctsio, /*sks_valid*/ 1, /*command*/ 1, 10571 /*field*/ 1, /*bit_valid*/ 1, /*bit*/ 0); 10572 ctl_done((union ctl_io *)ctsio); 10573 return (CTL_RETVAL_COMPLETE); 10574 } 10575 alloc_len = scsi_2btoul(cdb->length); 10576 10577 data_len = sizeof(struct scsi_get_event_status_header); 10578 ctsio->kern_data_ptr = malloc(data_len, M_CTL, M_WAITOK | M_ZERO); 10579 ctsio->kern_sg_entries = 0; 10580 ctsio->kern_rel_offset = 0; 10581 ctsio->kern_data_len = min(data_len, alloc_len); 10582 ctsio->kern_total_len = ctsio->kern_data_len; 10583 10584 hdr = (struct scsi_get_event_status_header *)ctsio->kern_data_ptr; 10585 scsi_ulto2b(0, hdr->descr_length); 10586 hdr->nea_class = SGESN_NEA; 10587 hdr->supported_class = 0; 10588 10589 ctl_set_success(ctsio); 10590 ctsio->io_hdr.flags |= CTL_FLAG_ALLOCATED; 10591 ctsio->be_move_done = ctl_config_move_done; 10592 ctl_datamove((union ctl_io *)ctsio); 10593 return (CTL_RETVAL_COMPLETE); 10594 } 10595 10596 int 10597 ctl_mechanism_status(struct ctl_scsiio *ctsio) 10598 { 10599 struct scsi_mechanism_status_header *hdr; 10600 struct scsi_mechanism_status *cdb; 10601 uint32_t alloc_len, data_len; 10602 10603 cdb = (struct scsi_mechanism_status *)ctsio->cdb; 10604 alloc_len = scsi_2btoul(cdb->length); 10605 10606 data_len = sizeof(struct scsi_mechanism_status_header); 10607 ctsio->kern_data_ptr = malloc(data_len, M_CTL, M_WAITOK | M_ZERO); 10608 ctsio->kern_sg_entries = 0; 10609 ctsio->kern_rel_offset = 0; 10610 ctsio->kern_data_len = min(data_len, alloc_len); 10611 ctsio->kern_total_len = ctsio->kern_data_len; 10612 10613 hdr = (struct scsi_mechanism_status_header *)ctsio->kern_data_ptr; 10614 hdr->state1 = 0x00; 10615 hdr->state2 = 0xe0; 10616 scsi_ulto3b(0, hdr->lba); 10617 hdr->slots_num = 0; 10618 scsi_ulto2b(0, hdr->slots_length); 10619 10620 ctl_set_success(ctsio); 10621 ctsio->io_hdr.flags |= CTL_FLAG_ALLOCATED; 10622 ctsio->be_move_done = ctl_config_move_done; 10623 ctl_datamove((union ctl_io *)ctsio); 10624 return (CTL_RETVAL_COMPLETE); 10625 } 10626 10627 static void 10628 ctl_ultomsf(uint32_t lba, uint8_t *buf) 10629 { 10630 10631 lba += 150; 10632 buf[0] = 0; 10633 buf[1] = bin2bcd((lba / 75) / 60); 10634 buf[2] = bin2bcd((lba / 75) % 60); 10635 buf[3] = bin2bcd(lba % 75); 10636 } 10637 10638 int 10639 ctl_read_toc(struct ctl_scsiio *ctsio) 10640 { 10641 struct ctl_lun *lun = CTL_LUN(ctsio); 10642 struct scsi_read_toc_hdr *hdr; 10643 struct scsi_read_toc_type01_descr *descr; 10644 struct scsi_read_toc *cdb; 10645 uint32_t alloc_len, data_len; 10646 int format, msf; 10647 10648 cdb = (struct scsi_read_toc *)ctsio->cdb; 10649 msf = (cdb->byte2 & CD_MSF) != 0; 10650 format = cdb->format; 10651 alloc_len = scsi_2btoul(cdb->data_len); 10652 10653 data_len = sizeof(struct scsi_read_toc_hdr); 10654 if (format == 0) 10655 data_len += 2 * sizeof(struct scsi_read_toc_type01_descr); 10656 else 10657 data_len += sizeof(struct scsi_read_toc_type01_descr); 10658 ctsio->kern_data_ptr = malloc(data_len, M_CTL, M_WAITOK | M_ZERO); 10659 ctsio->kern_sg_entries = 0; 10660 ctsio->kern_rel_offset = 0; 10661 ctsio->kern_data_len = min(data_len, alloc_len); 10662 ctsio->kern_total_len = ctsio->kern_data_len; 10663 10664 hdr = (struct scsi_read_toc_hdr *)ctsio->kern_data_ptr; 10665 if (format == 0) { 10666 scsi_ulto2b(0x12, hdr->data_length); 10667 hdr->first = 1; 10668 hdr->last = 1; 10669 descr = (struct scsi_read_toc_type01_descr *)(hdr + 1); 10670 descr->addr_ctl = 0x14; 10671 descr->track_number = 1; 10672 if (msf) 10673 ctl_ultomsf(0, descr->track_start); 10674 else 10675 scsi_ulto4b(0, descr->track_start); 10676 descr++; 10677 descr->addr_ctl = 0x14; 10678 descr->track_number = 0xaa; 10679 if (msf) 10680 ctl_ultomsf(lun->be_lun->maxlba+1, descr->track_start); 10681 else 10682 scsi_ulto4b(lun->be_lun->maxlba+1, descr->track_start); 10683 } else { 10684 scsi_ulto2b(0x0a, hdr->data_length); 10685 hdr->first = 1; 10686 hdr->last = 1; 10687 descr = (struct scsi_read_toc_type01_descr *)(hdr + 1); 10688 descr->addr_ctl = 0x14; 10689 descr->track_number = 1; 10690 if (msf) 10691 ctl_ultomsf(0, descr->track_start); 10692 else 10693 scsi_ulto4b(0, descr->track_start); 10694 } 10695 10696 ctl_set_success(ctsio); 10697 ctsio->io_hdr.flags |= CTL_FLAG_ALLOCATED; 10698 ctsio->be_move_done = ctl_config_move_done; 10699 ctl_datamove((union ctl_io *)ctsio); 10700 return (CTL_RETVAL_COMPLETE); 10701 } 10702 10703 /* 10704 * For NVMe commands, parse the LBA and length. 10705 */ 10706 static bool 10707 ctl_nvme_get_lba_len(struct ctl_nvmeio *ctnio, uint64_t *lba, uint32_t *len) 10708 { 10709 CTL_IO_ASSERT(ctnio, NVME); 10710 10711 switch (ctnio->cmd.opc) { 10712 case NVME_OPC_WRITE: 10713 case NVME_OPC_READ: 10714 case NVME_OPC_WRITE_UNCORRECTABLE: 10715 case NVME_OPC_COMPARE: 10716 case NVME_OPC_WRITE_ZEROES: 10717 case NVME_OPC_VERIFY: 10718 *lba = (uint64_t)le32toh(ctnio->cmd.cdw11) << 32 | 10719 le32toh(ctnio->cmd.cdw10); 10720 *len = (le32toh(ctnio->cmd.cdw12) & 0xffff) + 1; 10721 return (true); 10722 default: 10723 *lba = 0; 10724 *len = 0; 10725 return (false); 10726 } 10727 } 10728 10729 static bool 10730 ctl_nvme_fua(struct ctl_nvmeio *ctnio) 10731 { 10732 return ((le32toh(ctnio->cmd.cdw12) & (1U << 30)) != 0); 10733 } 10734 10735 int 10736 ctl_nvme_identify(struct ctl_nvmeio *ctnio) 10737 { 10738 struct ctl_lun *lun = CTL_LUN(ctnio); 10739 size_t len; 10740 int retval; 10741 uint8_t cns; 10742 10743 CTL_DEBUG_PRINT(("ctl_nvme_identify\n")); 10744 10745 CTL_IO_ASSERT(ctnio, NVME_ADMIN); 10746 MPASS(ctnio->cmd.opc == NVME_OPC_IDENTIFY); 10747 10748 /* 10749 * The data buffer for Identify is always 4096 bytes, see 10750 * 5.51.1 in NVMe base specification 1.4. 10751 */ 10752 len = 4096; 10753 10754 ctnio->kern_data_ptr = malloc(len, M_CTL, M_WAITOK); 10755 ctnio->kern_data_len = len; 10756 ctnio->kern_total_len = len; 10757 ctnio->kern_rel_offset = 0; 10758 ctnio->kern_sg_entries = 0; 10759 10760 ctl_nvme_set_success(ctnio); 10761 ctnio->io_hdr.flags |= CTL_FLAG_ALLOCATED; 10762 ctnio->be_move_done = ctl_config_move_done; 10763 10764 /* 10765 * If we don't have a LUN, return an empty result for CNS == 0. 10766 */ 10767 if (lun == NULL) { 10768 cns = le32toh(ctnio->cmd.cdw10) & 0xff; 10769 switch (cns) { 10770 case 0: 10771 memset(ctnio->kern_data_ptr, 0, len); 10772 ctl_datamove((union ctl_io *)ctnio); 10773 break; 10774 default: 10775 ctl_nvme_set_invalid_field(ctnio); 10776 break; 10777 } 10778 return (CTL_RETVAL_COMPLETE); 10779 } 10780 10781 retval = lun->backend->config_read((union ctl_io *)ctnio); 10782 return (retval); 10783 } 10784 10785 int 10786 ctl_nvme_flush(struct ctl_nvmeio *ctnio) 10787 { 10788 struct ctl_lun *lun = CTL_LUN(ctnio); 10789 int retval; 10790 10791 CTL_DEBUG_PRINT(("ctl_nvme_flush\n")); 10792 10793 CTL_IO_ASSERT(ctnio, NVME); 10794 MPASS(ctnio->cmd.opc == NVME_OPC_FLUSH); 10795 10796 /* 10797 * NVMe flushes always flush the entire namespace, not an LBA 10798 * range. 10799 */ 10800 retval = lun->backend->config_write((union ctl_io *)ctnio); 10801 10802 return (retval); 10803 } 10804 10805 int 10806 ctl_nvme_read_write(struct ctl_nvmeio *ctnio) 10807 { 10808 struct ctl_lun *lun = CTL_LUN(ctnio); 10809 struct ctl_lba_len_flags *lbalen; 10810 uint64_t lba; 10811 uint32_t num_blocks; 10812 int flags, retval; 10813 bool isread; 10814 10815 CTL_DEBUG_PRINT(("ctl_nvme_read_write: command: %#x\n", 10816 ctnio->cmd.opc)); 10817 10818 CTL_IO_ASSERT(ctnio, NVME); 10819 MPASS(ctnio->cmd.opc == NVME_OPC_WRITE || 10820 ctnio->cmd.opc == NVME_OPC_READ); 10821 10822 flags = 0; 10823 isread = ctnio->cmd.opc == NVME_OPC_READ; 10824 ctl_nvme_get_lba_len(ctnio, &lba, &num_blocks); 10825 10826 /* 10827 * The first check is to make sure we're in bounds, the second 10828 * check is to catch wrap-around problems. If the lba + num blocks 10829 * is less than the lba, then we've wrapped around and the block 10830 * range is invalid anyway. 10831 */ 10832 if (((lba + num_blocks) > (lun->be_lun->maxlba + 1)) 10833 || ((lba + num_blocks) < lba)) { 10834 ctl_nvme_set_lba_out_of_range(ctnio); 10835 ctl_done((union ctl_io *)ctnio); 10836 return (CTL_RETVAL_COMPLETE); 10837 } 10838 10839 /* 10840 * Set FUA and/or DPO if caches are disabled. 10841 * 10842 * For a read this may not be quite correct for the block 10843 * backend as any earlier writes to the LBA range should be 10844 * flushed to backing store as part of the read. 10845 */ 10846 if (ctl_nvme_fua(ctnio)) { 10847 flags |= CTL_LLF_FUA; 10848 if (isread) 10849 flags |= CTL_LLF_DPO; 10850 } 10851 10852 lbalen = (struct ctl_lba_len_flags *) 10853 &ctnio->io_hdr.ctl_private[CTL_PRIV_LBA_LEN]; 10854 lbalen->lba = lba; 10855 lbalen->len = num_blocks; 10856 lbalen->flags = (isread ? CTL_LLF_READ : CTL_LLF_WRITE) | flags; 10857 10858 ctnio->kern_total_len = num_blocks * lun->be_lun->blocksize; 10859 ctnio->kern_rel_offset = 0; 10860 10861 CTL_DEBUG_PRINT(("ctl_nvme_read_write: calling data_submit()\n")); 10862 10863 retval = lun->backend->data_submit((union ctl_io *)ctnio); 10864 return (retval); 10865 } 10866 10867 int 10868 ctl_nvme_write_uncorrectable(struct ctl_nvmeio *ctnio) 10869 { 10870 struct ctl_lun *lun = CTL_LUN(ctnio); 10871 struct ctl_lba_len_flags *lbalen; 10872 uint64_t lba; 10873 uint32_t num_blocks; 10874 int retval; 10875 10876 CTL_DEBUG_PRINT(("ctl_nvme_write_uncorrectable\n")); 10877 10878 CTL_IO_ASSERT(ctnio, NVME); 10879 MPASS(ctnio->cmd.opc == NVME_OPC_WRITE_UNCORRECTABLE); 10880 10881 ctl_nvme_get_lba_len(ctnio, &lba, &num_blocks); 10882 10883 /* 10884 * The first check is to make sure we're in bounds, the second 10885 * check is to catch wrap-around problems. If the lba + num blocks 10886 * is less than the lba, then we've wrapped around and the block 10887 * range is invalid anyway. 10888 */ 10889 if (((lba + num_blocks) > (lun->be_lun->maxlba + 1)) 10890 || ((lba + num_blocks) < lba)) { 10891 ctl_nvme_set_lba_out_of_range(ctnio); 10892 ctl_done((union ctl_io *)ctnio); 10893 return (CTL_RETVAL_COMPLETE); 10894 } 10895 10896 lbalen = (struct ctl_lba_len_flags *) 10897 &ctnio->io_hdr.ctl_private[CTL_PRIV_LBA_LEN]; 10898 lbalen->lba = lba; 10899 lbalen->len = num_blocks; 10900 lbalen->flags = 0; 10901 retval = lun->backend->config_write((union ctl_io *)ctnio); 10902 10903 return (retval); 10904 } 10905 10906 int 10907 ctl_nvme_compare(struct ctl_nvmeio *ctnio) 10908 { 10909 struct ctl_lun *lun = CTL_LUN(ctnio); 10910 struct ctl_lba_len_flags *lbalen; 10911 uint64_t lba; 10912 uint32_t num_blocks; 10913 int flags; 10914 int retval; 10915 10916 CTL_DEBUG_PRINT(("ctl_nvme_compare\n")); 10917 10918 CTL_IO_ASSERT(ctnio, NVME); 10919 MPASS(ctnio->cmd.opc == NVME_OPC_COMPARE); 10920 10921 flags = 0; 10922 ctl_nvme_get_lba_len(ctnio, &lba, &num_blocks); 10923 if (ctl_nvme_fua(ctnio)) 10924 flags |= CTL_LLF_FUA; 10925 10926 /* 10927 * The first check is to make sure we're in bounds, the second 10928 * check is to catch wrap-around problems. If the lba + num blocks 10929 * is less than the lba, then we've wrapped around and the block 10930 * range is invalid anyway. 10931 */ 10932 if (((lba + num_blocks) > (lun->be_lun->maxlba + 1)) 10933 || ((lba + num_blocks) < lba)) { 10934 ctl_nvme_set_lba_out_of_range(ctnio); 10935 ctl_done((union ctl_io *)ctnio); 10936 return (CTL_RETVAL_COMPLETE); 10937 } 10938 10939 lbalen = (struct ctl_lba_len_flags *) 10940 &ctnio->io_hdr.ctl_private[CTL_PRIV_LBA_LEN]; 10941 lbalen->lba = lba; 10942 lbalen->len = num_blocks; 10943 lbalen->flags = CTL_LLF_COMPARE | flags; 10944 ctnio->kern_total_len = num_blocks * lun->be_lun->blocksize; 10945 ctnio->kern_rel_offset = 0; 10946 10947 CTL_DEBUG_PRINT(("ctl_nvme_compare: calling data_submit()\n")); 10948 retval = lun->backend->data_submit((union ctl_io *)ctnio); 10949 return (retval); 10950 } 10951 10952 int 10953 ctl_nvme_write_zeroes(struct ctl_nvmeio *ctnio) 10954 { 10955 struct ctl_lun *lun = CTL_LUN(ctnio); 10956 struct ctl_lba_len_flags *lbalen; 10957 uint64_t lba; 10958 uint32_t num_blocks; 10959 int retval; 10960 10961 CTL_DEBUG_PRINT(("ctl_nvme_write_zeroes\n")); 10962 10963 CTL_IO_ASSERT(ctnio, NVME); 10964 MPASS(ctnio->cmd.opc == NVME_OPC_WRITE_ZEROES); 10965 10966 ctl_nvme_get_lba_len(ctnio, &lba, &num_blocks); 10967 10968 /* 10969 * The first check is to make sure we're in bounds, the second 10970 * check is to catch wrap-around problems. If the lba + num blocks 10971 * is less than the lba, then we've wrapped around and the block 10972 * range is invalid anyway. 10973 */ 10974 if (((lba + num_blocks) > (lun->be_lun->maxlba + 1)) 10975 || ((lba + num_blocks) < lba)) { 10976 ctl_nvme_set_lba_out_of_range(ctnio); 10977 ctl_done((union ctl_io *)ctnio); 10978 return (CTL_RETVAL_COMPLETE); 10979 } 10980 10981 lbalen = (struct ctl_lba_len_flags *) 10982 &ctnio->io_hdr.ctl_private[CTL_PRIV_LBA_LEN]; 10983 lbalen->lba = lba; 10984 lbalen->len = num_blocks; 10985 lbalen->flags = 0; 10986 retval = lun->backend->config_write((union ctl_io *)ctnio); 10987 10988 return (retval); 10989 } 10990 10991 int 10992 ctl_nvme_dataset_management(struct ctl_nvmeio *ctnio) 10993 { 10994 struct ctl_lun *lun = CTL_LUN(ctnio); 10995 struct nvme_dsm_range *r; 10996 uint64_t lba; 10997 uint32_t len, num_blocks; 10998 u_int i, ranges; 10999 int retval; 11000 11001 CTL_DEBUG_PRINT(("ctl_nvme_dataset_management\n")); 11002 11003 CTL_IO_ASSERT(ctnio, NVME); 11004 MPASS(ctnio->cmd.opc == NVME_OPC_DATASET_MANAGEMENT); 11005 11006 ranges = le32toh(ctnio->cmd.cdw10) & 0xff; 11007 len = ranges * sizeof(struct nvme_dsm_range); 11008 11009 /* 11010 * If we've got a kernel request that hasn't been malloced yet, 11011 * malloc it and tell the caller the data buffer is here. 11012 */ 11013 if ((ctnio->io_hdr.flags & CTL_FLAG_ALLOCATED) == 0) { 11014 ctnio->kern_data_ptr = malloc(len, M_CTL, M_WAITOK); 11015 ctnio->kern_data_len = len; 11016 ctnio->kern_total_len = len; 11017 ctnio->kern_rel_offset = 0; 11018 ctnio->kern_sg_entries = 0; 11019 ctnio->io_hdr.flags |= CTL_FLAG_ALLOCATED; 11020 ctnio->be_move_done = ctl_config_move_done; 11021 ctl_datamove((union ctl_io *)ctnio); 11022 11023 return (CTL_RETVAL_COMPLETE); 11024 } 11025 11026 /* 11027 * Require a flat buffer of the correct size. 11028 */ 11029 if (ctnio->kern_sg_entries > 0 || 11030 ctnio->kern_total_len - ctnio->kern_data_resid != len) 11031 return (CTL_RETVAL_ERROR); 11032 11033 /* 11034 * Verify that none of the ranges are out of bounds. 11035 */ 11036 r = (struct nvme_dsm_range *)ctnio->kern_data_ptr; 11037 for (i = 0; i < ranges; i++) { 11038 lba = le64toh(r[i].starting_lba); 11039 num_blocks = le32toh(r[i].length); 11040 if (((lba + num_blocks) > (lun->be_lun->maxlba + 1)) 11041 || ((lba + num_blocks) < lba)) { 11042 ctl_nvme_set_lba_out_of_range(ctnio); 11043 ctl_done((union ctl_io *)ctnio); 11044 return (CTL_RETVAL_COMPLETE); 11045 } 11046 } 11047 11048 CTL_DEBUG_PRINT(("ctl_nvme_dataset_management: calling config_write()\n")); 11049 retval = lun->backend->config_write((union ctl_io *)ctnio); 11050 return (retval); 11051 } 11052 11053 int 11054 ctl_nvme_verify(struct ctl_nvmeio *ctnio) 11055 { 11056 struct ctl_lun *lun = CTL_LUN(ctnio); 11057 struct ctl_lba_len_flags *lbalen; 11058 uint64_t lba; 11059 uint32_t num_blocks; 11060 int flags; 11061 int retval; 11062 11063 CTL_DEBUG_PRINT(("ctl_nvme_verify\n")); 11064 11065 CTL_IO_ASSERT(ctnio, NVME); 11066 MPASS(ctnio->cmd.opc == NVME_OPC_VERIFY); 11067 11068 flags = 0; 11069 ctl_nvme_get_lba_len(ctnio, &lba, &num_blocks); 11070 if (ctl_nvme_fua(ctnio)) 11071 flags |= CTL_LLF_FUA; 11072 11073 /* 11074 * The first check is to make sure we're in bounds, the second 11075 * check is to catch wrap-around problems. If the lba + num blocks 11076 * is less than the lba, then we've wrapped around and the block 11077 * range is invalid anyway. 11078 */ 11079 if (((lba + num_blocks) > (lun->be_lun->maxlba + 1)) 11080 || ((lba + num_blocks) < lba)) { 11081 ctl_nvme_set_lba_out_of_range(ctnio); 11082 ctl_done((union ctl_io *)ctnio); 11083 return (CTL_RETVAL_COMPLETE); 11084 } 11085 11086 lbalen = (struct ctl_lba_len_flags *) 11087 &ctnio->io_hdr.ctl_private[CTL_PRIV_LBA_LEN]; 11088 lbalen->lba = lba; 11089 lbalen->len = num_blocks; 11090 lbalen->flags = CTL_LLF_VERIFY | flags; 11091 ctnio->kern_total_len = 0; 11092 ctnio->kern_rel_offset = 0; 11093 11094 CTL_DEBUG_PRINT(("ctl_nvme_verify: calling data_submit()\n")); 11095 retval = lun->backend->data_submit((union ctl_io *)ctnio); 11096 return (retval); 11097 } 11098 11099 static const struct ctl_nvme_cmd_entry * 11100 ctl_nvme_get_cmd_entry(struct ctl_nvmeio *ctnio) 11101 { 11102 const struct ctl_nvme_cmd_entry *entry; 11103 11104 switch (ctnio->io_hdr.io_type) { 11105 case CTL_IO_NVME: 11106 entry = &nvme_nvm_cmd_table[ctnio->cmd.opc]; 11107 break; 11108 case CTL_IO_NVME_ADMIN: 11109 entry = &nvme_admin_cmd_table[ctnio->cmd.opc]; 11110 break; 11111 default: 11112 __assert_unreachable(); 11113 } 11114 return (entry); 11115 } 11116 11117 static const struct ctl_nvme_cmd_entry * 11118 ctl_nvme_validate_command(struct ctl_nvmeio *ctnio) 11119 { 11120 const struct ctl_nvme_cmd_entry *entry; 11121 11122 entry = ctl_nvme_get_cmd_entry(ctnio); 11123 if (entry->execute == NULL) { 11124 ctl_nvme_set_invalid_opcode(ctnio); 11125 ctl_done((union ctl_io *)ctnio); 11126 return (NULL); 11127 } 11128 11129 /* Validate fused commands. */ 11130 switch (NVMEV(NVME_CMD_FUSE, ctnio->cmd.fuse)) { 11131 case NVME_FUSE_NORMAL: 11132 break; 11133 case NVME_FUSE_FIRST: 11134 if (ctnio->io_hdr.io_type != CTL_IO_NVME || 11135 ctnio->cmd.opc != NVME_OPC_COMPARE) { 11136 ctl_nvme_set_invalid_field(ctnio); 11137 ctl_done((union ctl_io *)ctnio); 11138 return (NULL); 11139 } 11140 break; 11141 case NVME_FUSE_SECOND: 11142 if (ctnio->io_hdr.io_type != CTL_IO_NVME || 11143 ctnio->cmd.opc != NVME_OPC_COMPARE) { 11144 ctl_nvme_set_invalid_field(ctnio); 11145 ctl_done((union ctl_io *)ctnio); 11146 return (NULL); 11147 } 11148 break; 11149 default: 11150 ctl_nvme_set_invalid_field(ctnio); 11151 ctl_done((union ctl_io *)ctnio); 11152 return (NULL); 11153 } 11154 11155 return (entry); 11156 } 11157 11158 /* 11159 * This is a simpler version of ctl_scsiio_lun_check that fails 11160 * requests on a LUN without active media. 11161 * 11162 * Returns true if the command has been completed with an error. 11163 */ 11164 static bool 11165 ctl_nvmeio_lun_check(struct ctl_lun *lun, 11166 const struct ctl_nvme_cmd_entry *entry, struct ctl_nvmeio *ctnio) 11167 { 11168 mtx_assert(&lun->lun_lock, MA_OWNED); 11169 11170 if ((entry->flags & CTL_CMD_FLAG_OK_ON_NO_MEDIA) == 0) { 11171 if ((lun->flags & (CTL_LUN_EJECTED | CTL_LUN_NO_MEDIA | 11172 CTL_LUN_STOPPED)) != 0) { 11173 ctl_nvme_set_namespace_not_ready(ctnio); 11174 return (true); 11175 } 11176 } 11177 11178 return (false); 11179 } 11180 11181 /* 11182 * Check for blockage against the OOA (Order Of Arrival) queue. 11183 * Assumptions: 11184 * - pending_io is generally either incoming, or on the blocked queue 11185 * - starting I/O is the I/O we want to start the check with. 11186 */ 11187 static ctl_action 11188 ctl_nvme_check_ooa(struct ctl_lun *lun, union ctl_io *pending_io, 11189 union ctl_io **starting_io, union ctl_io **aborted_io) 11190 { 11191 union ctl_io *ooa_io = *starting_io; 11192 11193 CTL_IO_ASSERT(pending_io, NVME, NVME_ADMIN); 11194 11195 mtx_assert(&lun->lun_lock, MA_OWNED); 11196 11197 *aborted_io = NULL; 11198 11199 /* 11200 * Aborted commands are not going to be executed and may even 11201 * not report completion, so we don't care about their order. 11202 * Let them complete ASAP to clean the OOA queue. 11203 */ 11204 if (__predict_false(pending_io->io_hdr.flags & CTL_FLAG_ABORT)) 11205 return (CTL_ACTION_PASS); 11206 11207 /* 11208 * NVMe has rather simple command ordering requirements. In 11209 * particular, there is no requirement on the controller to 11210 * enforce a specific order for overlapping LBAs. The only 11211 * constraint is that fused operations (Compare and Write), 11212 * must be completed as a unit. 11213 * 11214 * To support fused operations, the following strategy is used: 11215 * - the first half of a fused command is not enqueued to rtr 11216 * until the second half is enqueued 11217 * - the second half of a fused command blocks on the first 11218 * half of a fuse command 11219 * - subsequent commands block on the second half of the 11220 * fused command 11221 */ 11222 11223 /* 11224 * Is the previously submitted command the first half of a 11225 * fused operation? 11226 */ 11227 if (ooa_io != NULL && 11228 NVMEV(NVME_CMD_FUSE, ooa_io->nvmeio.cmd.fuse) == NVME_FUSE_FIRST) { 11229 /* 11230 * If this is the second half, enqueue the first half 11231 * and block the second half on the first half. 11232 */ 11233 if (NVMEV(NVME_CMD_FUSE, pending_io->nvmeio.cmd.fuse) == 11234 NVME_FUSE_SECOND) { 11235 /* 11236 * XXX: Do we need to wait for other rtr requests 11237 * to drain so this is truly atomic? 11238 */ 11239 return (CTL_ACTION_FUSED); 11240 } 11241 11242 /* Abort the first half. */ 11243 ctl_nvme_set_missing_fused_command(&ooa_io->nvmeio); 11244 *aborted_io = ooa_io; 11245 } else { 11246 switch (NVMEV(NVME_CMD_FUSE, pending_io->nvmeio.cmd.fuse)) { 11247 case NVME_FUSE_FIRST: 11248 /* First half, wait for the second half. */ 11249 return (CTL_ACTION_SKIP); 11250 case NVME_FUSE_SECOND: 11251 /* Second half without a matching first half, abort. */ 11252 ctl_nvme_set_missing_fused_command(&pending_io->nvmeio); 11253 *aborted_io = pending_io; 11254 return (CTL_ACTION_SKIP); 11255 } 11256 } 11257 11258 /* 11259 * Scan the OOA queue looking for the most recent second half 11260 * of a fused op. 11261 */ 11262 for (; ooa_io != NULL; 11263 ooa_io = (union ctl_io *)LIST_NEXT(&ooa_io->io_hdr, ooa_links)) { 11264 if (NVMEV(NVME_CMD_FUSE, ooa_io->nvmeio.cmd.fuse) == 11265 NVME_FUSE_SECOND) { 11266 *starting_io = ooa_io; 11267 return (CTL_ACTION_BLOCK); 11268 } 11269 } 11270 11271 *starting_io = NULL; 11272 return (CTL_ACTION_PASS); 11273 } 11274 11275 static void 11276 ctl_nvmeio_precheck(struct ctl_nvmeio *ctnio) 11277 { 11278 struct ctl_softc *softc = CTL_SOFTC(ctnio); 11279 struct ctl_lun *lun; 11280 const struct ctl_nvme_cmd_entry *entry; 11281 union ctl_io *bio, *aborted_io; 11282 uint32_t targ_lun; 11283 11284 lun = NULL; 11285 targ_lun = ctnio->io_hdr.nexus.targ_mapped_lun; 11286 if (targ_lun < ctl_max_luns) 11287 lun = softc->ctl_luns[targ_lun]; 11288 if (lun != NULL) { 11289 /* 11290 * If the LUN is invalid, pretend that it doesn't exist. 11291 * It will go away as soon as all pending I/O has been 11292 * completed. 11293 */ 11294 mtx_lock(&lun->lun_lock); 11295 if (lun->flags & CTL_LUN_DISABLED) { 11296 mtx_unlock(&lun->lun_lock); 11297 lun = NULL; 11298 } 11299 } 11300 CTL_LUN(ctnio) = lun; 11301 if (lun != NULL) { 11302 CTL_BACKEND_LUN(ctnio) = lun->be_lun; 11303 11304 /* 11305 * Every I/O goes into the OOA queue for a particular LUN, 11306 * and stays there until completion. 11307 */ 11308 #ifdef CTL_TIME_IO 11309 if (LIST_EMPTY(&lun->ooa_queue)) 11310 lun->idle_time += getsbinuptime() - lun->last_busy; 11311 #endif 11312 LIST_INSERT_HEAD(&lun->ooa_queue, &ctnio->io_hdr, ooa_links); 11313 } 11314 11315 /* Get command entry and return error if it is unsupported. */ 11316 entry = ctl_nvme_validate_command(ctnio); 11317 if (entry == NULL) { 11318 if (lun) 11319 mtx_unlock(&lun->lun_lock); 11320 return; 11321 } 11322 11323 ctnio->io_hdr.flags &= ~CTL_FLAG_DATA_MASK; 11324 ctnio->io_hdr.flags |= entry->flags & CTL_FLAG_DATA_MASK; 11325 11326 /* All NVMe commands other than IDENTIFY require a LUN. */ 11327 if (lun == NULL) { 11328 if (entry->flags & CTL_CMD_FLAG_OK_ON_NO_LUN) { 11329 ctnio->io_hdr.flags |= CTL_FLAG_IS_WAS_ON_RTR; 11330 ctl_enqueue_rtr((union ctl_io *)ctnio); 11331 return; 11332 } 11333 11334 ctl_nvme_set_invalid_namespace(ctnio); 11335 ctl_done((union ctl_io *)ctnio); 11336 CTL_DEBUG_PRINT(("ctl_nvmeio_precheck: bailing out due to invalid LUN\n")); 11337 return; 11338 } else { 11339 /* 11340 * NVMe namespaces can only be backed by T_DIRECT LUNs. 11341 */ 11342 if (lun->be_lun->lun_type != T_DIRECT) { 11343 mtx_unlock(&lun->lun_lock); 11344 ctl_nvme_set_invalid_namespace(ctnio); 11345 ctl_done((union ctl_io *)ctnio); 11346 return; 11347 } 11348 } 11349 11350 if (ctl_nvmeio_lun_check(lun, entry, ctnio) != 0) { 11351 mtx_unlock(&lun->lun_lock); 11352 ctl_done((union ctl_io *)ctnio); 11353 return; 11354 } 11355 11356 bio = (union ctl_io *)LIST_NEXT(&ctnio->io_hdr, ooa_links); 11357 switch (ctl_nvme_check_ooa(lun, (union ctl_io *)ctnio, &bio, 11358 &aborted_io)) { 11359 case CTL_ACTION_PASS: 11360 ctnio->io_hdr.flags |= CTL_FLAG_IS_WAS_ON_RTR; 11361 mtx_unlock(&lun->lun_lock); 11362 ctl_enqueue_rtr((union ctl_io *)ctnio); 11363 break; 11364 case CTL_ACTION_FUSED: 11365 /* Block the second half on the first half. */ 11366 ctnio->io_hdr.blocker = bio; 11367 TAILQ_INSERT_TAIL(&bio->io_hdr.blocked_queue, &ctnio->io_hdr, 11368 blocked_links); 11369 11370 /* Pass the first half. */ 11371 bio->io_hdr.flags |= CTL_FLAG_IS_WAS_ON_RTR; 11372 mtx_unlock(&lun->lun_lock); 11373 ctl_enqueue_rtr(bio); 11374 break; 11375 case CTL_ACTION_SKIP: 11376 mtx_unlock(&lun->lun_lock); 11377 break; 11378 case CTL_ACTION_BLOCK: 11379 ctnio->io_hdr.blocker = bio; 11380 TAILQ_INSERT_TAIL(&bio->io_hdr.blocked_queue, &ctnio->io_hdr, 11381 blocked_links); 11382 mtx_unlock(&lun->lun_lock); 11383 break; 11384 default: 11385 __assert_unreachable(); 11386 } 11387 if (aborted_io != NULL) 11388 ctl_done(aborted_io); 11389 } 11390 11391 static int 11392 ctl_nvmeio(struct ctl_nvmeio *ctnio) 11393 { 11394 const struct ctl_nvme_cmd_entry *entry; 11395 int retval; 11396 11397 CTL_DEBUG_PRINT(("ctl_nvmeio %s opc=%02X\n", 11398 ctnio->io_hdr.io_type == CTL_IO_NVME ? "nvm" : "admin", 11399 ctnio->cmd.opc)); 11400 11401 entry = ctl_nvme_get_cmd_entry(ctnio); 11402 MPASS(entry != NULL); 11403 11404 /* 11405 * If this I/O has been aborted, just send it straight to 11406 * ctl_done() without executing it. 11407 */ 11408 if (ctnio->io_hdr.flags & CTL_FLAG_ABORT) { 11409 ctl_done((union ctl_io *)ctnio); 11410 return (CTL_RETVAL_COMPLETE); 11411 } 11412 11413 /* 11414 * All the checks should have been handled by ctl_nvmeio_precheck(). 11415 * We should be clear now to just execute the I/O. 11416 */ 11417 retval = entry->execute(ctnio); 11418 11419 return (retval); 11420 } 11421 11422 /* 11423 * For known CDB types, parse the LBA and length. 11424 */ 11425 static int 11426 ctl_get_lba_len(union ctl_io *io, uint64_t *lba, uint64_t *len) 11427 { 11428 11429 CTL_IO_ASSERT(io, SCSI); 11430 11431 switch (io->scsiio.cdb[0]) { 11432 case COMPARE_AND_WRITE: { 11433 struct scsi_compare_and_write *cdb; 11434 11435 cdb = (struct scsi_compare_and_write *)io->scsiio.cdb; 11436 11437 *lba = scsi_8btou64(cdb->addr); 11438 *len = cdb->length; 11439 break; 11440 } 11441 case READ_6: 11442 case WRITE_6: { 11443 struct scsi_rw_6 *cdb; 11444 11445 cdb = (struct scsi_rw_6 *)io->scsiio.cdb; 11446 11447 *lba = scsi_3btoul(cdb->addr); 11448 /* only 5 bits are valid in the most significant address byte */ 11449 *lba &= 0x1fffff; 11450 *len = cdb->length; 11451 break; 11452 } 11453 case READ_10: 11454 case WRITE_10: { 11455 struct scsi_rw_10 *cdb; 11456 11457 cdb = (struct scsi_rw_10 *)io->scsiio.cdb; 11458 11459 *lba = scsi_4btoul(cdb->addr); 11460 *len = scsi_2btoul(cdb->length); 11461 break; 11462 } 11463 case WRITE_VERIFY_10: { 11464 struct scsi_write_verify_10 *cdb; 11465 11466 cdb = (struct scsi_write_verify_10 *)io->scsiio.cdb; 11467 11468 *lba = scsi_4btoul(cdb->addr); 11469 *len = scsi_2btoul(cdb->length); 11470 break; 11471 } 11472 case READ_12: 11473 case WRITE_12: { 11474 struct scsi_rw_12 *cdb; 11475 11476 cdb = (struct scsi_rw_12 *)io->scsiio.cdb; 11477 11478 *lba = scsi_4btoul(cdb->addr); 11479 *len = scsi_4btoul(cdb->length); 11480 break; 11481 } 11482 case WRITE_VERIFY_12: { 11483 struct scsi_write_verify_12 *cdb; 11484 11485 cdb = (struct scsi_write_verify_12 *)io->scsiio.cdb; 11486 11487 *lba = scsi_4btoul(cdb->addr); 11488 *len = scsi_4btoul(cdb->length); 11489 break; 11490 } 11491 case READ_16: 11492 case WRITE_16: { 11493 struct scsi_rw_16 *cdb; 11494 11495 cdb = (struct scsi_rw_16 *)io->scsiio.cdb; 11496 11497 *lba = scsi_8btou64(cdb->addr); 11498 *len = scsi_4btoul(cdb->length); 11499 break; 11500 } 11501 case WRITE_ATOMIC_16: { 11502 struct scsi_write_atomic_16 *cdb; 11503 11504 cdb = (struct scsi_write_atomic_16 *)io->scsiio.cdb; 11505 11506 *lba = scsi_8btou64(cdb->addr); 11507 *len = scsi_2btoul(cdb->length); 11508 break; 11509 } 11510 case WRITE_VERIFY_16: { 11511 struct scsi_write_verify_16 *cdb; 11512 11513 cdb = (struct scsi_write_verify_16 *)io->scsiio.cdb; 11514 11515 *lba = scsi_8btou64(cdb->addr); 11516 *len = scsi_4btoul(cdb->length); 11517 break; 11518 } 11519 case WRITE_SAME_10: { 11520 struct scsi_write_same_10 *cdb; 11521 11522 cdb = (struct scsi_write_same_10 *)io->scsiio.cdb; 11523 11524 *lba = scsi_4btoul(cdb->addr); 11525 *len = scsi_2btoul(cdb->length); 11526 break; 11527 } 11528 case WRITE_SAME_16: { 11529 struct scsi_write_same_16 *cdb; 11530 11531 cdb = (struct scsi_write_same_16 *)io->scsiio.cdb; 11532 11533 *lba = scsi_8btou64(cdb->addr); 11534 *len = scsi_4btoul(cdb->length); 11535 break; 11536 } 11537 case VERIFY_10: { 11538 struct scsi_verify_10 *cdb; 11539 11540 cdb = (struct scsi_verify_10 *)io->scsiio.cdb; 11541 11542 *lba = scsi_4btoul(cdb->addr); 11543 *len = scsi_2btoul(cdb->length); 11544 break; 11545 } 11546 case VERIFY_12: { 11547 struct scsi_verify_12 *cdb; 11548 11549 cdb = (struct scsi_verify_12 *)io->scsiio.cdb; 11550 11551 *lba = scsi_4btoul(cdb->addr); 11552 *len = scsi_4btoul(cdb->length); 11553 break; 11554 } 11555 case VERIFY_16: { 11556 struct scsi_verify_16 *cdb; 11557 11558 cdb = (struct scsi_verify_16 *)io->scsiio.cdb; 11559 11560 *lba = scsi_8btou64(cdb->addr); 11561 *len = scsi_4btoul(cdb->length); 11562 break; 11563 } 11564 case UNMAP: { 11565 *lba = 0; 11566 *len = UINT64_MAX; 11567 break; 11568 } 11569 case SERVICE_ACTION_IN: { /* GET LBA STATUS */ 11570 struct scsi_get_lba_status *cdb; 11571 11572 cdb = (struct scsi_get_lba_status *)io->scsiio.cdb; 11573 *lba = scsi_8btou64(cdb->addr); 11574 *len = UINT32_MAX; 11575 break; 11576 } 11577 default: 11578 *lba = 0; 11579 *len = UINT64_MAX; 11580 return (1); 11581 } 11582 11583 return (0); 11584 } 11585 11586 static ctl_action 11587 ctl_extent_check_lba(uint64_t lba1, uint64_t len1, uint64_t lba2, uint64_t len2, 11588 bool seq) 11589 { 11590 uint64_t endlba1, endlba2; 11591 11592 endlba1 = lba1 + len1 - (seq ? 0 : 1); 11593 endlba2 = lba2 + len2 - 1; 11594 11595 if ((endlba1 < lba2) || (endlba2 < lba1)) 11596 return (CTL_ACTION_PASS); 11597 else 11598 return (CTL_ACTION_BLOCK); 11599 } 11600 11601 static int 11602 ctl_extent_check_unmap(union ctl_io *io, uint64_t lba2, uint64_t len2) 11603 { 11604 struct ctl_ptr_len_flags *ptrlen; 11605 struct scsi_unmap_desc *buf, *end, *range; 11606 uint64_t lba; 11607 uint32_t len; 11608 11609 CTL_IO_ASSERT(io, SCSI); 11610 11611 /* If not UNMAP -- go other way. */ 11612 if (io->scsiio.cdb[0] != UNMAP) 11613 return (CTL_ACTION_SKIP); 11614 11615 /* If UNMAP without data -- block and wait for data. */ 11616 ptrlen = (struct ctl_ptr_len_flags *) 11617 &io->io_hdr.ctl_private[CTL_PRIV_LBA_LEN]; 11618 if ((io->io_hdr.flags & CTL_FLAG_ALLOCATED) == 0 || 11619 ptrlen->ptr == NULL) 11620 return (CTL_ACTION_BLOCK); 11621 11622 /* UNMAP with data -- check for collision. */ 11623 buf = (struct scsi_unmap_desc *)ptrlen->ptr; 11624 end = buf + ptrlen->len / sizeof(*buf); 11625 for (range = buf; range < end; range++) { 11626 lba = scsi_8btou64(range->lba); 11627 len = scsi_4btoul(range->length); 11628 if ((lba < lba2 + len2) && (lba + len > lba2)) 11629 return (CTL_ACTION_BLOCK); 11630 } 11631 return (CTL_ACTION_PASS); 11632 } 11633 11634 static ctl_action 11635 ctl_extent_check(union ctl_io *io1, union ctl_io *io2, bool seq) 11636 { 11637 uint64_t lba1, lba2; 11638 uint64_t len1, len2; 11639 int retval; 11640 11641 retval = ctl_get_lba_len(io2, &lba2, &len2); 11642 KASSERT(retval == 0, ("ctl_get_lba_len() error")); 11643 11644 retval = ctl_extent_check_unmap(io1, lba2, len2); 11645 if (retval != CTL_ACTION_SKIP) 11646 return (retval); 11647 11648 retval = ctl_get_lba_len(io1, &lba1, &len1); 11649 KASSERT(retval == 0, ("ctl_get_lba_len() error")); 11650 11651 if (seq && (io1->io_hdr.flags & CTL_FLAG_SERSEQ_DONE)) 11652 seq = FALSE; 11653 return (ctl_extent_check_lba(lba1, len1, lba2, len2, seq)); 11654 } 11655 11656 static ctl_action 11657 ctl_seq_check(union ctl_io *io1, union ctl_io *io2) 11658 { 11659 uint64_t lba1, lba2; 11660 uint64_t len1, len2; 11661 int retval __diagused; 11662 11663 if (io1->io_hdr.flags & CTL_FLAG_SERSEQ_DONE) 11664 return (CTL_ACTION_PASS); 11665 retval = ctl_get_lba_len(io1, &lba1, &len1); 11666 KASSERT(retval == 0, ("ctl_get_lba_len() error")); 11667 retval = ctl_get_lba_len(io2, &lba2, &len2); 11668 KASSERT(retval == 0, ("ctl_get_lba_len() error")); 11669 11670 if (lba1 + len1 == lba2) 11671 return (CTL_ACTION_BLOCK); 11672 return (CTL_ACTION_PASS); 11673 } 11674 11675 static ctl_action 11676 ctl_check_for_blockage(struct ctl_lun *lun, union ctl_io *pending_io, 11677 const uint8_t *serialize_row, union ctl_io *ooa_io) 11678 { 11679 CTL_IO_ASSERT(pending_io, SCSI); 11680 CTL_IO_ASSERT(ooa_io, SCSI); 11681 11682 /* 11683 * The initiator attempted multiple untagged commands at the same 11684 * time. Can't do that. 11685 */ 11686 if (__predict_false(pending_io->scsiio.tag_type == CTL_TAG_UNTAGGED) 11687 && __predict_false(ooa_io->scsiio.tag_type == CTL_TAG_UNTAGGED) 11688 && ((pending_io->io_hdr.nexus.targ_port == 11689 ooa_io->io_hdr.nexus.targ_port) 11690 && (pending_io->io_hdr.nexus.initid == 11691 ooa_io->io_hdr.nexus.initid)) 11692 && ((ooa_io->io_hdr.flags & (CTL_FLAG_ABORT | 11693 CTL_FLAG_STATUS_SENT)) == 0)) 11694 return (CTL_ACTION_OVERLAP); 11695 11696 /* 11697 * The initiator attempted to send multiple tagged commands with 11698 * the same ID. (It's fine if different initiators have the same 11699 * tag ID.) 11700 * 11701 * Even if all of those conditions are true, we don't kill the I/O 11702 * if the command ahead of us has been aborted. We won't end up 11703 * sending it to the FETD, and it's perfectly legal to resend a 11704 * command with the same tag number as long as the previous 11705 * instance of this tag number has been aborted somehow. 11706 */ 11707 if (__predict_true(pending_io->scsiio.tag_type != CTL_TAG_UNTAGGED) 11708 && __predict_true(ooa_io->scsiio.tag_type != CTL_TAG_UNTAGGED) 11709 && __predict_false(pending_io->scsiio.tag_num == ooa_io->scsiio.tag_num) 11710 && ((pending_io->io_hdr.nexus.targ_port == 11711 ooa_io->io_hdr.nexus.targ_port) 11712 && (pending_io->io_hdr.nexus.initid == 11713 ooa_io->io_hdr.nexus.initid)) 11714 && ((ooa_io->io_hdr.flags & (CTL_FLAG_ABORT | 11715 CTL_FLAG_STATUS_SENT)) == 0)) 11716 return (CTL_ACTION_OVERLAP_TAG); 11717 11718 /* 11719 * If we get a head of queue tag, SAM-3 says that we should 11720 * immediately execute it. 11721 * 11722 * What happens if this command would normally block for some other 11723 * reason? e.g. a request sense with a head of queue tag 11724 * immediately after a write. Normally that would block, but this 11725 * will result in its getting executed immediately... 11726 * 11727 * We currently return "pass" instead of "skip", so we'll end up 11728 * going through the rest of the queue to check for overlapped tags. 11729 * 11730 * XXX KDM check for other types of blockage first?? 11731 */ 11732 if (__predict_false(pending_io->scsiio.tag_type == CTL_TAG_HEAD_OF_QUEUE)) 11733 return (CTL_ACTION_PASS); 11734 11735 /* 11736 * Simple tags get blocked until all head of queue and ordered tags 11737 * ahead of them have completed. I'm lumping untagged commands in 11738 * with simple tags here. XXX KDM is that the right thing to do? 11739 */ 11740 if (__predict_false(ooa_io->scsiio.tag_type == CTL_TAG_ORDERED) || 11741 __predict_false(ooa_io->scsiio.tag_type == CTL_TAG_HEAD_OF_QUEUE)) 11742 return (CTL_ACTION_BLOCK); 11743 11744 /* Unsupported command in OOA queue. */ 11745 if (__predict_false(ooa_io->scsiio.seridx == CTL_SERIDX_INVLD)) 11746 return (CTL_ACTION_PASS); 11747 11748 switch (serialize_row[ooa_io->scsiio.seridx]) { 11749 case CTL_SER_SEQ: 11750 if (lun->be_lun->serseq != CTL_LUN_SERSEQ_OFF) 11751 return (ctl_seq_check(ooa_io, pending_io)); 11752 /* FALLTHROUGH */ 11753 case CTL_SER_PASS: 11754 return (CTL_ACTION_PASS); 11755 case CTL_SER_EXTENTOPT: 11756 if ((lun->MODE_CTRL.queue_flags & SCP_QUEUE_ALG_MASK) == 11757 SCP_QUEUE_ALG_UNRESTRICTED) 11758 return (CTL_ACTION_PASS); 11759 /* FALLTHROUGH */ 11760 case CTL_SER_EXTENT: 11761 return (ctl_extent_check(ooa_io, pending_io, 11762 (lun->be_lun->serseq == CTL_LUN_SERSEQ_ON))); 11763 case CTL_SER_BLOCKOPT: 11764 if ((lun->MODE_CTRL.queue_flags & SCP_QUEUE_ALG_MASK) == 11765 SCP_QUEUE_ALG_UNRESTRICTED) 11766 return (CTL_ACTION_PASS); 11767 /* FALLTHROUGH */ 11768 case CTL_SER_BLOCK: 11769 return (CTL_ACTION_BLOCK); 11770 default: 11771 __assert_unreachable(); 11772 } 11773 } 11774 11775 /* 11776 * Check for blockage or overlaps against the OOA (Order Of Arrival) queue. 11777 * Assumptions: 11778 * - pending_io is generally either incoming, or on the blocked queue 11779 * - starting I/O is the I/O we want to start the check with. 11780 */ 11781 static ctl_action 11782 ctl_check_ooa(struct ctl_lun *lun, union ctl_io *pending_io, 11783 union ctl_io **starting_io) 11784 { 11785 union ctl_io *ooa_io = *starting_io; 11786 const uint8_t *serialize_row; 11787 ctl_action action; 11788 11789 CTL_IO_ASSERT(pending_io, SCSI); 11790 11791 mtx_assert(&lun->lun_lock, MA_OWNED); 11792 11793 /* 11794 * Aborted commands are not going to be executed and may even 11795 * not report completion, so we don't care about their order. 11796 * Let them complete ASAP to clean the OOA queue. 11797 */ 11798 if (__predict_false(pending_io->io_hdr.flags & CTL_FLAG_ABORT)) 11799 return (CTL_ACTION_SKIP); 11800 11801 /* 11802 * Ordered tags have to block until all items ahead of them have 11803 * completed. If we get called with an ordered tag, we always 11804 * block, if something else is ahead of us in the queue. 11805 */ 11806 if ((pending_io->scsiio.tag_type == CTL_TAG_ORDERED) && 11807 (ooa_io != NULL)) 11808 return (CTL_ACTION_BLOCK); 11809 11810 serialize_row = ctl_serialize_table[pending_io->scsiio.seridx]; 11811 11812 /* 11813 * Run back along the OOA queue, starting with the current 11814 * blocked I/O and going through every I/O before it on the 11815 * queue. If starting_io is NULL, we'll just end up returning 11816 * CTL_ACTION_PASS. 11817 */ 11818 for (; ooa_io != NULL; 11819 ooa_io = (union ctl_io *)LIST_NEXT(&ooa_io->io_hdr, ooa_links)) { 11820 action = ctl_check_for_blockage(lun, pending_io, serialize_row, 11821 ooa_io); 11822 if (action != CTL_ACTION_PASS) { 11823 *starting_io = ooa_io; 11824 return (action); 11825 } 11826 } 11827 11828 *starting_io = NULL; 11829 return (CTL_ACTION_PASS); 11830 } 11831 11832 /* 11833 * Try to unblock the specified I/O. 11834 * 11835 * skip parameter allows explicitly skip present blocker of the I/O, 11836 * starting from the previous one on OOA queue. It can be used when 11837 * we know for sure that the blocker I/O does no longer count. 11838 */ 11839 static void 11840 ctl_scsi_try_unblock_io(struct ctl_lun *lun, union ctl_io *io, bool skip) 11841 { 11842 struct ctl_softc *softc = lun->ctl_softc; 11843 union ctl_io *bio, *obio; 11844 const struct ctl_cmd_entry *entry; 11845 union ctl_ha_msg msg_info; 11846 ctl_action action; 11847 11848 CTL_IO_ASSERT(io, SCSI); 11849 11850 mtx_assert(&lun->lun_lock, MA_OWNED); 11851 11852 if (io->io_hdr.blocker == NULL) 11853 return; 11854 11855 obio = bio = io->io_hdr.blocker; 11856 if (skip) 11857 bio = (union ctl_io *)LIST_NEXT(&bio->io_hdr, ooa_links); 11858 action = ctl_check_ooa(lun, io, &bio); 11859 if (action == CTL_ACTION_BLOCK) { 11860 /* Still blocked, but may be by different I/O now. */ 11861 if (bio != obio) { 11862 TAILQ_REMOVE(&obio->io_hdr.blocked_queue, 11863 &io->io_hdr, blocked_links); 11864 TAILQ_INSERT_TAIL(&bio->io_hdr.blocked_queue, 11865 &io->io_hdr, blocked_links); 11866 io->io_hdr.blocker = bio; 11867 } 11868 return; 11869 } 11870 11871 /* No longer blocked, one way or another. */ 11872 TAILQ_REMOVE(&obio->io_hdr.blocked_queue, &io->io_hdr, blocked_links); 11873 io->io_hdr.blocker = NULL; 11874 11875 switch (action) { 11876 case CTL_ACTION_PASS: 11877 case CTL_ACTION_SKIP: 11878 11879 /* Serializing commands from the other SC retire there. */ 11880 if ((io->io_hdr.flags & CTL_FLAG_FROM_OTHER_SC) && 11881 (softc->ha_mode != CTL_HA_MODE_XFER)) { 11882 io->io_hdr.flags &= ~CTL_FLAG_IO_ACTIVE; 11883 msg_info.hdr.original_sc = io->io_hdr.remote_io; 11884 msg_info.hdr.serializing_sc = io; 11885 msg_info.hdr.msg_type = CTL_MSG_R2R; 11886 ctl_ha_msg_send(CTL_HA_CHAN_CTL, &msg_info, 11887 sizeof(msg_info.hdr), M_NOWAIT); 11888 break; 11889 } 11890 11891 /* 11892 * Check this I/O for LUN state changes that may have happened 11893 * while this command was blocked. The LUN state may have been 11894 * changed by a command ahead of us in the queue. 11895 */ 11896 entry = ctl_get_cmd_entry(&io->scsiio, NULL); 11897 if (ctl_scsiio_lun_check(lun, entry, &io->scsiio) != 0) { 11898 ctl_done(io); 11899 break; 11900 } 11901 11902 io->io_hdr.flags |= CTL_FLAG_IS_WAS_ON_RTR; 11903 ctl_enqueue_rtr(io); 11904 break; 11905 default: 11906 __assert_unreachable(); 11907 case CTL_ACTION_OVERLAP: 11908 ctl_set_overlapped_cmd(&io->scsiio); 11909 goto error; 11910 case CTL_ACTION_OVERLAP_TAG: 11911 ctl_set_overlapped_tag(&io->scsiio, 11912 io->scsiio.tag_num & 0xff); 11913 error: 11914 /* Serializing commands from the other SC are done here. */ 11915 if ((io->io_hdr.flags & CTL_FLAG_FROM_OTHER_SC) && 11916 (softc->ha_mode != CTL_HA_MODE_XFER)) { 11917 ctl_try_unblock_others(lun, io, TRUE); 11918 LIST_REMOVE(&io->io_hdr, ooa_links); 11919 11920 ctl_copy_sense_data_back(io, &msg_info); 11921 msg_info.hdr.original_sc = io->io_hdr.remote_io; 11922 msg_info.hdr.serializing_sc = NULL; 11923 msg_info.hdr.msg_type = CTL_MSG_BAD_JUJU; 11924 ctl_ha_msg_send(CTL_HA_CHAN_CTL, &msg_info, 11925 sizeof(msg_info.scsi), M_WAITOK); 11926 ctl_free_io(io); 11927 break; 11928 } 11929 11930 ctl_done(io); 11931 break; 11932 } 11933 } 11934 11935 static void 11936 ctl_nvme_try_unblock_io(struct ctl_lun *lun, union ctl_io *io, bool skip) 11937 { 11938 union ctl_io *bio; 11939 const struct ctl_nvme_cmd_entry *entry; 11940 11941 CTL_IO_ASSERT(io, NVME, NVME_ADMIN); 11942 11943 mtx_assert(&lun->lun_lock, MA_OWNED); 11944 11945 if (io->io_hdr.blocker == NULL) 11946 return; 11947 11948 /* 11949 * If this is the second half of a fused operation, it should 11950 * be the only io on the blocked list. If the first half 11951 * failed, complete the second half with an appropriate error. 11952 */ 11953 bio = io->io_hdr.blocker; 11954 if (NVMEV(NVME_CMD_FUSE, io->nvmeio.cmd.fuse) == NVME_FUSE_SECOND) { 11955 MPASS(io == 11956 (union ctl_io *)TAILQ_FIRST(&bio->io_hdr.blocked_queue)); 11957 MPASS(TAILQ_NEXT(&io->io_hdr, blocked_links) == NULL); 11958 11959 TAILQ_REMOVE(&bio->io_hdr.blocked_queue, &io->io_hdr, 11960 blocked_links); 11961 if (bio->io_hdr.status != CTL_SUCCESS) { 11962 ctl_nvme_set_failed_fused_command(&io->nvmeio); 11963 ctl_done(io); 11964 return; 11965 } 11966 } else { 11967 /* 11968 * This must be a command that was blocked on the 11969 * second half of a fused operation. 11970 */ 11971 MPASS(NVMEV(NVME_CMD_FUSE, bio->nvmeio.cmd.fuse) == 11972 NVME_FUSE_SECOND); 11973 TAILQ_REMOVE(&bio->io_hdr.blocked_queue, &io->io_hdr, 11974 blocked_links); 11975 } 11976 11977 entry = ctl_nvme_get_cmd_entry(&io->nvmeio); 11978 if (ctl_nvmeio_lun_check(lun, entry, &io->nvmeio) != 0) { 11979 ctl_done(io); 11980 return; 11981 } 11982 11983 io->io_hdr.flags |= CTL_FLAG_IS_WAS_ON_RTR; 11984 ctl_enqueue_rtr(io); 11985 } 11986 11987 static void 11988 ctl_try_unblock_io(struct ctl_lun *lun, union ctl_io *io, bool skip) 11989 { 11990 switch (io->io_hdr.io_type) { 11991 case CTL_IO_SCSI: 11992 return (ctl_scsi_try_unblock_io(lun, io, skip)); 11993 case CTL_IO_NVME: 11994 case CTL_IO_NVME_ADMIN: 11995 return (ctl_nvme_try_unblock_io(lun, io, skip)); 11996 default: 11997 __assert_unreachable(); 11998 } 11999 } 12000 12001 /* 12002 * Try to unblock I/Os blocked by the specified I/O. 12003 * 12004 * skip parameter allows explicitly skip the specified I/O as blocker, 12005 * starting from the previous one on the OOA queue. It can be used when 12006 * we know for sure that the specified I/O does no longer count (done). 12007 * It has to be still on OOA queue though so that we know where to start. 12008 */ 12009 static void 12010 ctl_try_unblock_others(struct ctl_lun *lun, union ctl_io *bio, bool skip) 12011 { 12012 union ctl_io *io, *next_io; 12013 12014 mtx_assert(&lun->lun_lock, MA_OWNED); 12015 12016 for (io = (union ctl_io *)TAILQ_FIRST(&bio->io_hdr.blocked_queue); 12017 io != NULL; io = next_io) { 12018 next_io = (union ctl_io *)TAILQ_NEXT(&io->io_hdr, blocked_links); 12019 12020 KASSERT(io->io_hdr.blocker != NULL, 12021 ("I/O %p on blocked list without blocker", io)); 12022 ctl_try_unblock_io(lun, io, skip); 12023 } 12024 KASSERT(!skip || TAILQ_EMPTY(&bio->io_hdr.blocked_queue), 12025 ("blocked_queue is not empty after skipping %p", bio)); 12026 } 12027 12028 /* 12029 * This routine (with one exception) checks LUN flags that can be set by 12030 * commands ahead of us in the OOA queue. These flags have to be checked 12031 * when a command initially comes in, and when we pull a command off the 12032 * blocked queue and are preparing to execute it. The reason we have to 12033 * check these flags for commands on the blocked queue is that the LUN 12034 * state may have been changed by a command ahead of us while we're on the 12035 * blocked queue. 12036 * 12037 * Ordering is somewhat important with these checks, so please pay 12038 * careful attention to the placement of any new checks. 12039 */ 12040 static int 12041 ctl_scsiio_lun_check(struct ctl_lun *lun, 12042 const struct ctl_cmd_entry *entry, struct ctl_scsiio *ctsio) 12043 { 12044 struct ctl_softc *softc = lun->ctl_softc; 12045 int retval; 12046 uint32_t residx; 12047 12048 retval = 0; 12049 12050 mtx_assert(&lun->lun_lock, MA_OWNED); 12051 12052 /* 12053 * If this shelf is a secondary shelf controller, we may have to 12054 * reject some commands disallowed by HA mode and link state. 12055 */ 12056 if ((lun->flags & CTL_LUN_PRIMARY_SC) == 0) { 12057 if (softc->ha_link == CTL_HA_LINK_OFFLINE && 12058 (entry->flags & CTL_CMD_FLAG_OK_ON_UNAVAIL) == 0) { 12059 ctl_set_lun_unavail(ctsio); 12060 retval = 1; 12061 goto bailout; 12062 } 12063 if ((lun->flags & CTL_LUN_PEER_SC_PRIMARY) == 0 && 12064 (entry->flags & CTL_CMD_FLAG_OK_ON_UNAVAIL) == 0) { 12065 ctl_set_lun_transit(ctsio); 12066 retval = 1; 12067 goto bailout; 12068 } 12069 if (softc->ha_mode == CTL_HA_MODE_ACT_STBY && 12070 (entry->flags & CTL_CMD_FLAG_OK_ON_STANDBY) == 0) { 12071 ctl_set_lun_standby(ctsio); 12072 retval = 1; 12073 goto bailout; 12074 } 12075 12076 /* The rest of checks are only done on executing side */ 12077 if (softc->ha_mode == CTL_HA_MODE_XFER) 12078 goto bailout; 12079 } 12080 12081 if (entry->pattern & CTL_LUN_PAT_WRITE) { 12082 if (lun->be_lun->flags & CTL_LUN_FLAG_READONLY) { 12083 ctl_set_hw_write_protected(ctsio); 12084 retval = 1; 12085 goto bailout; 12086 } 12087 if ((lun->MODE_CTRL.eca_and_aen & SCP_SWP) != 0) { 12088 ctl_set_sense(ctsio, /*current_error*/ 1, 12089 /*sense_key*/ SSD_KEY_DATA_PROTECT, 12090 /*asc*/ 0x27, /*ascq*/ 0x02, SSD_ELEM_NONE); 12091 retval = 1; 12092 goto bailout; 12093 } 12094 } 12095 12096 /* 12097 * Check for a reservation conflict. If this command isn't allowed 12098 * even on reserved LUNs, and if this initiator isn't the one who 12099 * reserved us, reject the command with a reservation conflict. 12100 */ 12101 residx = ctl_get_initindex(&ctsio->io_hdr.nexus); 12102 if ((lun->flags & CTL_LUN_RESERVED) 12103 && ((entry->flags & CTL_CMD_FLAG_ALLOW_ON_RESV) == 0)) { 12104 if (lun->res_idx != residx) { 12105 ctl_set_reservation_conflict(ctsio); 12106 retval = 1; 12107 goto bailout; 12108 } 12109 } 12110 12111 if ((lun->flags & CTL_LUN_PR_RESERVED) == 0 || 12112 (entry->flags & CTL_CMD_FLAG_ALLOW_ON_PR_RESV)) { 12113 /* No reservation or command is allowed. */; 12114 } else if ((entry->flags & CTL_CMD_FLAG_ALLOW_ON_PR_WRESV) && 12115 (lun->pr_res_type == SPR_TYPE_WR_EX || 12116 lun->pr_res_type == SPR_TYPE_WR_EX_RO || 12117 lun->pr_res_type == SPR_TYPE_WR_EX_AR)) { 12118 /* The command is allowed for Write Exclusive resv. */; 12119 } else { 12120 /* 12121 * if we aren't registered or it's a res holder type 12122 * reservation and this isn't the res holder then set a 12123 * conflict. 12124 */ 12125 if (ctl_get_prkey(lun, residx) == 0 || 12126 (residx != lun->pr_res_idx && lun->pr_res_type < 4)) { 12127 ctl_set_reservation_conflict(ctsio); 12128 retval = 1; 12129 goto bailout; 12130 } 12131 } 12132 12133 if ((entry->flags & CTL_CMD_FLAG_OK_ON_NO_MEDIA) == 0) { 12134 if (lun->flags & CTL_LUN_EJECTED) 12135 ctl_set_lun_ejected(ctsio); 12136 else if (lun->flags & CTL_LUN_NO_MEDIA) { 12137 if (lun->flags & CTL_LUN_REMOVABLE) 12138 ctl_set_lun_no_media(ctsio); 12139 else 12140 ctl_set_lun_int_reqd(ctsio); 12141 } else if (lun->flags & CTL_LUN_STOPPED) 12142 ctl_set_lun_stopped(ctsio); 12143 else 12144 goto bailout; 12145 retval = 1; 12146 goto bailout; 12147 } 12148 12149 bailout: 12150 return (retval); 12151 } 12152 12153 static void 12154 ctl_failover_io(union ctl_io *io, int have_lock) 12155 { 12156 CTL_IO_ASSERT(io, SCSI); 12157 12158 ctl_set_busy(&io->scsiio); 12159 ctl_done(io); 12160 } 12161 12162 static void 12163 ctl_failover_lun(union ctl_io *rio) 12164 { 12165 struct ctl_softc *softc = CTL_SOFTC(rio); 12166 struct ctl_lun *lun; 12167 struct ctl_io_hdr *io, *next_io; 12168 uint32_t targ_lun; 12169 12170 targ_lun = rio->io_hdr.nexus.targ_mapped_lun; 12171 CTL_DEBUG_PRINT(("FAILOVER for lun %u\n", targ_lun)); 12172 12173 /* Find and lock the LUN. */ 12174 mtx_lock(&softc->ctl_lock); 12175 if (targ_lun > ctl_max_luns || 12176 (lun = softc->ctl_luns[targ_lun]) == NULL) { 12177 mtx_unlock(&softc->ctl_lock); 12178 return; 12179 } 12180 mtx_lock(&lun->lun_lock); 12181 mtx_unlock(&softc->ctl_lock); 12182 if (lun->flags & CTL_LUN_DISABLED) { 12183 mtx_unlock(&lun->lun_lock); 12184 return; 12185 } 12186 12187 if (softc->ha_mode == CTL_HA_MODE_XFER) { 12188 LIST_FOREACH_SAFE(io, &lun->ooa_queue, ooa_links, next_io) { 12189 /* We are master */ 12190 if (io->flags & CTL_FLAG_FROM_OTHER_SC) { 12191 if (io->flags & CTL_FLAG_IO_ACTIVE) { 12192 io->flags |= CTL_FLAG_ABORT | 12193 CTL_FLAG_FAILOVER; 12194 ctl_try_unblock_io(lun, 12195 (union ctl_io *)io, FALSE); 12196 } else { /* This can be only due to DATAMOVE */ 12197 io->msg_type = CTL_MSG_DATAMOVE_DONE; 12198 io->flags &= ~CTL_FLAG_DMA_INPROG; 12199 io->flags |= CTL_FLAG_IO_ACTIVE; 12200 io->port_status = 31340; 12201 ctl_enqueue_isc((union ctl_io *)io); 12202 } 12203 } else 12204 /* We are slave */ 12205 if (io->flags & CTL_FLAG_SENT_2OTHER_SC) { 12206 io->flags &= ~CTL_FLAG_SENT_2OTHER_SC; 12207 if (io->flags & CTL_FLAG_IO_ACTIVE) { 12208 io->flags |= CTL_FLAG_FAILOVER; 12209 } else { 12210 ctl_set_busy(&((union ctl_io *)io)-> 12211 scsiio); 12212 ctl_done((union ctl_io *)io); 12213 } 12214 } 12215 } 12216 } else { /* SERIALIZE modes */ 12217 LIST_FOREACH_SAFE(io, &lun->ooa_queue, ooa_links, next_io) { 12218 /* We are master */ 12219 if (io->flags & CTL_FLAG_FROM_OTHER_SC) { 12220 if (io->blocker != NULL) { 12221 TAILQ_REMOVE(&io->blocker->io_hdr.blocked_queue, 12222 io, blocked_links); 12223 io->blocker = NULL; 12224 } 12225 ctl_try_unblock_others(lun, (union ctl_io *)io, 12226 TRUE); 12227 LIST_REMOVE(io, ooa_links); 12228 ctl_free_io((union ctl_io *)io); 12229 } else 12230 /* We are slave */ 12231 if (io->flags & CTL_FLAG_SENT_2OTHER_SC) { 12232 io->flags &= ~CTL_FLAG_SENT_2OTHER_SC; 12233 if (!(io->flags & CTL_FLAG_IO_ACTIVE)) { 12234 ctl_set_busy(&((union ctl_io *)io)-> 12235 scsiio); 12236 ctl_done((union ctl_io *)io); 12237 } 12238 } 12239 } 12240 } 12241 mtx_unlock(&lun->lun_lock); 12242 } 12243 12244 static void 12245 ctl_scsiio_precheck(struct ctl_scsiio *ctsio) 12246 { 12247 struct ctl_softc *softc = CTL_SOFTC(ctsio); 12248 struct ctl_lun *lun; 12249 const struct ctl_cmd_entry *entry; 12250 union ctl_io *bio; 12251 uint32_t initidx, targ_lun; 12252 12253 lun = NULL; 12254 targ_lun = ctsio->io_hdr.nexus.targ_mapped_lun; 12255 if (targ_lun < ctl_max_luns) 12256 lun = softc->ctl_luns[targ_lun]; 12257 if (lun) { 12258 /* 12259 * If the LUN is invalid, pretend that it doesn't exist. 12260 * It will go away as soon as all pending I/O has been 12261 * completed. 12262 */ 12263 mtx_lock(&lun->lun_lock); 12264 if (lun->flags & CTL_LUN_DISABLED) { 12265 mtx_unlock(&lun->lun_lock); 12266 lun = NULL; 12267 } 12268 } 12269 CTL_LUN(ctsio) = lun; 12270 if (lun) { 12271 CTL_BACKEND_LUN(ctsio) = lun->be_lun; 12272 12273 /* 12274 * Every I/O goes into the OOA queue for a particular LUN, 12275 * and stays there until completion. 12276 */ 12277 #ifdef CTL_TIME_IO 12278 if (LIST_EMPTY(&lun->ooa_queue)) 12279 lun->idle_time += getsbinuptime() - lun->last_busy; 12280 #endif 12281 LIST_INSERT_HEAD(&lun->ooa_queue, &ctsio->io_hdr, ooa_links); 12282 } 12283 12284 /* Get command entry and return error if it is unsuppotyed. */ 12285 entry = ctl_validate_command(ctsio); 12286 if (entry == NULL) { 12287 if (lun) 12288 mtx_unlock(&lun->lun_lock); 12289 return; 12290 } 12291 12292 ctsio->io_hdr.flags &= ~CTL_FLAG_DATA_MASK; 12293 ctsio->io_hdr.flags |= entry->flags & CTL_FLAG_DATA_MASK; 12294 12295 /* 12296 * Check to see whether we can send this command to LUNs that don't 12297 * exist. This should pretty much only be the case for inquiry 12298 * and request sense. Further checks, below, really require having 12299 * a LUN, so we can't really check the command anymore. Just put 12300 * it on the rtr queue. 12301 */ 12302 if (lun == NULL) { 12303 if (entry->flags & CTL_CMD_FLAG_OK_ON_NO_LUN) { 12304 ctsio->io_hdr.flags |= CTL_FLAG_IS_WAS_ON_RTR; 12305 ctl_enqueue_rtr((union ctl_io *)ctsio); 12306 return; 12307 } 12308 12309 ctl_set_unsupported_lun(ctsio); 12310 ctl_done((union ctl_io *)ctsio); 12311 CTL_DEBUG_PRINT(("ctl_scsiio_precheck: bailing out due to invalid LUN\n")); 12312 return; 12313 } else { 12314 /* 12315 * Make sure we support this particular command on this LUN. 12316 * e.g., we don't support writes to the control LUN. 12317 */ 12318 if (!ctl_cmd_applicable(lun->be_lun->lun_type, entry)) { 12319 mtx_unlock(&lun->lun_lock); 12320 ctl_set_invalid_opcode(ctsio); 12321 ctl_done((union ctl_io *)ctsio); 12322 return; 12323 } 12324 } 12325 12326 initidx = ctl_get_initindex(&ctsio->io_hdr.nexus); 12327 12328 /* 12329 * If we've got a request sense, it'll clear the contingent 12330 * allegiance condition. Otherwise, if we have a CA condition for 12331 * this initiator, clear it, because it sent down a command other 12332 * than request sense. 12333 */ 12334 if (ctsio->cdb[0] != REQUEST_SENSE) { 12335 struct scsi_sense_data *ps; 12336 12337 ps = lun->pending_sense[initidx / CTL_MAX_INIT_PER_PORT]; 12338 if (ps != NULL) 12339 ps[initidx % CTL_MAX_INIT_PER_PORT].error_code = 0; 12340 } 12341 12342 /* 12343 * If the command has this flag set, it handles its own unit 12344 * attention reporting, we shouldn't do anything. Otherwise we 12345 * check for any pending unit attentions, and send them back to the 12346 * initiator. We only do this when a command initially comes in, 12347 * not when we pull it off the blocked queue. 12348 * 12349 * According to SAM-3, section 5.3.2, the order that things get 12350 * presented back to the host is basically unit attentions caused 12351 * by some sort of reset event, busy status, reservation conflicts 12352 * or task set full, and finally any other status. 12353 * 12354 * One issue here is that some of the unit attentions we report 12355 * don't fall into the "reset" category (e.g. "reported luns data 12356 * has changed"). So reporting it here, before the reservation 12357 * check, may be technically wrong. I guess the only thing to do 12358 * would be to check for and report the reset events here, and then 12359 * check for the other unit attention types after we check for a 12360 * reservation conflict. 12361 * 12362 * XXX KDM need to fix this 12363 */ 12364 if ((entry->flags & CTL_CMD_FLAG_NO_SENSE) == 0) { 12365 ctl_ua_type ua_type; 12366 u_int sense_len = 0; 12367 12368 ua_type = ctl_build_ua(lun, initidx, &ctsio->sense_data, 12369 &sense_len, SSD_TYPE_NONE); 12370 if (ua_type != CTL_UA_NONE) { 12371 mtx_unlock(&lun->lun_lock); 12372 ctsio->scsi_status = SCSI_STATUS_CHECK_COND; 12373 ctsio->io_hdr.status = CTL_SCSI_ERROR | CTL_AUTOSENSE; 12374 ctsio->sense_len = sense_len; 12375 ctl_done((union ctl_io *)ctsio); 12376 return; 12377 } 12378 } 12379 12380 if (ctl_scsiio_lun_check(lun, entry, ctsio) != 0) { 12381 mtx_unlock(&lun->lun_lock); 12382 ctl_done((union ctl_io *)ctsio); 12383 return; 12384 } 12385 12386 /* 12387 * XXX CHD this is where we want to send IO to other side if 12388 * this LUN is secondary on this SC. We will need to make a copy 12389 * of the IO and flag the IO on this side as SENT_2OTHER and the flag 12390 * the copy we send as FROM_OTHER. 12391 * We also need to stuff the address of the original IO so we can 12392 * find it easily. Something similar will need be done on the other 12393 * side so when we are done we can find the copy. 12394 */ 12395 if ((lun->flags & CTL_LUN_PRIMARY_SC) == 0 && 12396 (lun->flags & CTL_LUN_PEER_SC_PRIMARY) != 0 && 12397 (entry->flags & CTL_CMD_FLAG_RUN_HERE) == 0) { 12398 union ctl_ha_msg msg_info; 12399 int isc_retval; 12400 12401 ctsio->io_hdr.flags |= CTL_FLAG_SENT_2OTHER_SC; 12402 ctsio->io_hdr.flags &= ~CTL_FLAG_IO_ACTIVE; 12403 mtx_unlock(&lun->lun_lock); 12404 12405 msg_info.hdr.msg_type = CTL_MSG_SERIALIZE; 12406 msg_info.hdr.original_sc = (union ctl_io *)ctsio; 12407 msg_info.hdr.serializing_sc = NULL; 12408 msg_info.hdr.nexus = ctsio->io_hdr.nexus; 12409 msg_info.scsi.tag_num = ctsio->tag_num; 12410 msg_info.scsi.tag_type = ctsio->tag_type; 12411 memcpy(msg_info.scsi.cdb, ctsio->cdb, CTL_MAX_CDBLEN); 12412 msg_info.scsi.cdb_len = ctsio->cdb_len; 12413 msg_info.scsi.priority = ctsio->priority; 12414 12415 if ((isc_retval = ctl_ha_msg_send(CTL_HA_CHAN_CTL, &msg_info, 12416 sizeof(msg_info.scsi) - sizeof(msg_info.scsi.sense_data), 12417 M_WAITOK)) > CTL_HA_STATUS_SUCCESS) { 12418 ctsio->io_hdr.flags &= ~CTL_FLAG_SENT_2OTHER_SC; 12419 ctsio->io_hdr.flags |= CTL_FLAG_IO_ACTIVE; 12420 ctl_set_busy(ctsio); 12421 ctl_done((union ctl_io *)ctsio); 12422 return; 12423 } 12424 return; 12425 } 12426 12427 bio = (union ctl_io *)LIST_NEXT(&ctsio->io_hdr, ooa_links); 12428 switch (ctl_check_ooa(lun, (union ctl_io *)ctsio, &bio)) { 12429 case CTL_ACTION_PASS: 12430 case CTL_ACTION_SKIP: 12431 ctsio->io_hdr.flags |= CTL_FLAG_IS_WAS_ON_RTR; 12432 mtx_unlock(&lun->lun_lock); 12433 ctl_enqueue_rtr((union ctl_io *)ctsio); 12434 break; 12435 case CTL_ACTION_BLOCK: 12436 ctsio->io_hdr.blocker = bio; 12437 TAILQ_INSERT_TAIL(&bio->io_hdr.blocked_queue, &ctsio->io_hdr, 12438 blocked_links); 12439 mtx_unlock(&lun->lun_lock); 12440 break; 12441 case CTL_ACTION_OVERLAP: 12442 mtx_unlock(&lun->lun_lock); 12443 ctl_set_overlapped_cmd(ctsio); 12444 ctl_done((union ctl_io *)ctsio); 12445 break; 12446 case CTL_ACTION_OVERLAP_TAG: 12447 mtx_unlock(&lun->lun_lock); 12448 ctl_set_overlapped_tag(ctsio, ctsio->tag_num & 0xff); 12449 ctl_done((union ctl_io *)ctsio); 12450 break; 12451 default: 12452 __assert_unreachable(); 12453 } 12454 } 12455 12456 const struct ctl_cmd_entry * 12457 ctl_get_cmd_entry(struct ctl_scsiio *ctsio, int *sa) 12458 { 12459 const struct ctl_cmd_entry *entry; 12460 int service_action; 12461 12462 entry = &ctl_cmd_table[ctsio->cdb[0]]; 12463 if (sa) 12464 *sa = ((entry->flags & CTL_CMD_FLAG_SA5) != 0); 12465 if (entry->flags & CTL_CMD_FLAG_SA5) { 12466 service_action = ctsio->cdb[1] & SERVICE_ACTION_MASK; 12467 entry = &((const struct ctl_cmd_entry *) 12468 entry->execute)[service_action]; 12469 } 12470 return (entry); 12471 } 12472 12473 const struct ctl_cmd_entry * 12474 ctl_validate_command(struct ctl_scsiio *ctsio) 12475 { 12476 const struct ctl_cmd_entry *entry; 12477 int i, sa; 12478 uint8_t diff; 12479 12480 entry = ctl_get_cmd_entry(ctsio, &sa); 12481 ctsio->seridx = entry->seridx; 12482 if (entry->execute == NULL) { 12483 if (sa) 12484 ctl_set_invalid_field(ctsio, 12485 /*sks_valid*/ 1, 12486 /*command*/ 1, 12487 /*field*/ 1, 12488 /*bit_valid*/ 1, 12489 /*bit*/ 4); 12490 else 12491 ctl_set_invalid_opcode(ctsio); 12492 ctl_done((union ctl_io *)ctsio); 12493 return (NULL); 12494 } 12495 KASSERT(entry->length > 0, 12496 ("Not defined length for command 0x%02x/0x%02x", 12497 ctsio->cdb[0], ctsio->cdb[1])); 12498 for (i = 1; i < entry->length; i++) { 12499 diff = ctsio->cdb[i] & ~entry->usage[i - 1]; 12500 if (diff == 0) 12501 continue; 12502 ctl_set_invalid_field(ctsio, 12503 /*sks_valid*/ 1, 12504 /*command*/ 1, 12505 /*field*/ i, 12506 /*bit_valid*/ 1, 12507 /*bit*/ fls(diff) - 1); 12508 ctl_done((union ctl_io *)ctsio); 12509 return (NULL); 12510 } 12511 return (entry); 12512 } 12513 12514 static int 12515 ctl_cmd_applicable(uint8_t lun_type, const struct ctl_cmd_entry *entry) 12516 { 12517 12518 switch (lun_type) { 12519 case T_DIRECT: 12520 if ((entry->flags & CTL_CMD_FLAG_OK_ON_DIRECT) == 0) 12521 return (0); 12522 break; 12523 case T_PROCESSOR: 12524 if ((entry->flags & CTL_CMD_FLAG_OK_ON_PROC) == 0) 12525 return (0); 12526 break; 12527 case T_CDROM: 12528 if ((entry->flags & CTL_CMD_FLAG_OK_ON_CDROM) == 0) 12529 return (0); 12530 break; 12531 default: 12532 return (0); 12533 } 12534 return (1); 12535 } 12536 12537 static int 12538 ctl_scsiio(struct ctl_scsiio *ctsio) 12539 { 12540 int retval; 12541 const struct ctl_cmd_entry *entry; 12542 12543 retval = CTL_RETVAL_COMPLETE; 12544 12545 CTL_DEBUG_PRINT(("ctl_scsiio cdb[0]=%02X\n", ctsio->cdb[0])); 12546 12547 entry = ctl_get_cmd_entry(ctsio, NULL); 12548 12549 /* 12550 * If this I/O has been aborted, just send it straight to 12551 * ctl_done() without executing it. 12552 */ 12553 if (ctsio->io_hdr.flags & CTL_FLAG_ABORT) { 12554 ctl_done((union ctl_io *)ctsio); 12555 goto bailout; 12556 } 12557 12558 /* 12559 * All the checks should have been handled by ctl_scsiio_precheck(). 12560 * We should be clear now to just execute the I/O. 12561 */ 12562 retval = entry->execute(ctsio); 12563 12564 bailout: 12565 return (retval); 12566 } 12567 12568 static int 12569 ctl_target_reset(union ctl_io *io) 12570 { 12571 struct ctl_softc *softc = CTL_SOFTC(io); 12572 struct ctl_port *port = CTL_PORT(io); 12573 struct ctl_lun *lun; 12574 uint32_t initidx; 12575 ctl_ua_type ua_type; 12576 12577 if (!(io->io_hdr.flags & CTL_FLAG_FROM_OTHER_SC)) { 12578 union ctl_ha_msg msg_info; 12579 12580 msg_info.hdr.nexus = io->io_hdr.nexus; 12581 msg_info.task.task_action = io->taskio.task_action; 12582 msg_info.hdr.msg_type = CTL_MSG_MANAGE_TASKS; 12583 msg_info.hdr.original_sc = NULL; 12584 msg_info.hdr.serializing_sc = NULL; 12585 ctl_ha_msg_send(CTL_HA_CHAN_CTL, &msg_info, 12586 sizeof(msg_info.task), M_WAITOK); 12587 } 12588 12589 initidx = ctl_get_initindex(&io->io_hdr.nexus); 12590 if (io->taskio.task_action == CTL_TASK_TARGET_RESET) 12591 ua_type = CTL_UA_TARG_RESET; 12592 else 12593 ua_type = CTL_UA_BUS_RESET; 12594 mtx_lock(&softc->ctl_lock); 12595 STAILQ_FOREACH(lun, &softc->lun_list, links) { 12596 if (port != NULL && 12597 ctl_lun_map_to_port(port, lun->lun) == UINT32_MAX) 12598 continue; 12599 ctl_do_lun_reset(lun, initidx, ua_type); 12600 } 12601 mtx_unlock(&softc->ctl_lock); 12602 io->taskio.task_status = CTL_TASK_FUNCTION_COMPLETE; 12603 return (0); 12604 } 12605 12606 /* 12607 * The LUN should always be set. The I/O is optional, and is used to 12608 * distinguish between I/Os sent by this initiator, and by other 12609 * initiators. We set unit attention for initiators other than this one. 12610 * SAM-3 is vague on this point. It does say that a unit attention should 12611 * be established for other initiators when a LUN is reset (see section 12612 * 5.7.3), but it doesn't specifically say that the unit attention should 12613 * be established for this particular initiator when a LUN is reset. Here 12614 * is the relevant text, from SAM-3 rev 8: 12615 * 12616 * 5.7.2 When a SCSI initiator port aborts its own tasks 12617 * 12618 * When a SCSI initiator port causes its own task(s) to be aborted, no 12619 * notification that the task(s) have been aborted shall be returned to 12620 * the SCSI initiator port other than the completion response for the 12621 * command or task management function action that caused the task(s) to 12622 * be aborted and notification(s) associated with related effects of the 12623 * action (e.g., a reset unit attention condition). 12624 * 12625 * XXX KDM for now, we're setting unit attention for all initiators. 12626 */ 12627 static void 12628 ctl_do_lun_reset(struct ctl_lun *lun, uint32_t initidx, ctl_ua_type ua_type) 12629 { 12630 struct ctl_io_hdr *xioh; 12631 int i; 12632 12633 mtx_lock(&lun->lun_lock); 12634 /* Abort tasks. */ 12635 LIST_FOREACH(xioh, &lun->ooa_queue, ooa_links) { 12636 xioh->flags |= CTL_FLAG_ABORT | CTL_FLAG_ABORT_STATUS; 12637 ctl_try_unblock_io(lun, (union ctl_io *)xioh, FALSE); 12638 } 12639 /* Clear CA. */ 12640 for (i = 0; i < ctl_max_ports; i++) { 12641 free(lun->pending_sense[i], M_CTL); 12642 lun->pending_sense[i] = NULL; 12643 } 12644 /* Clear reservation. */ 12645 lun->flags &= ~CTL_LUN_RESERVED; 12646 /* Clear prevent media removal. */ 12647 if (lun->prevent) { 12648 for (i = 0; i < CTL_MAX_INITIATORS; i++) 12649 ctl_clear_mask(lun->prevent, i); 12650 lun->prevent_count = 0; 12651 } 12652 /* Clear TPC status */ 12653 ctl_tpc_lun_clear(lun, -1); 12654 /* Establish UA. */ 12655 #if 0 12656 ctl_est_ua_all(lun, initidx, ua_type); 12657 #else 12658 ctl_est_ua_all(lun, -1, ua_type); 12659 #endif 12660 mtx_unlock(&lun->lun_lock); 12661 } 12662 12663 static int 12664 ctl_lun_reset(union ctl_io *io) 12665 { 12666 struct ctl_softc *softc = CTL_SOFTC(io); 12667 struct ctl_lun *lun; 12668 uint32_t targ_lun, initidx; 12669 12670 targ_lun = io->io_hdr.nexus.targ_mapped_lun; 12671 initidx = ctl_get_initindex(&io->io_hdr.nexus); 12672 mtx_lock(&softc->ctl_lock); 12673 if (targ_lun >= ctl_max_luns || 12674 (lun = softc->ctl_luns[targ_lun]) == NULL) { 12675 mtx_unlock(&softc->ctl_lock); 12676 io->taskio.task_status = CTL_TASK_LUN_DOES_NOT_EXIST; 12677 return (1); 12678 } 12679 ctl_do_lun_reset(lun, initidx, CTL_UA_LUN_RESET); 12680 mtx_unlock(&softc->ctl_lock); 12681 io->taskio.task_status = CTL_TASK_FUNCTION_COMPLETE; 12682 12683 if ((io->io_hdr.flags & CTL_FLAG_FROM_OTHER_SC) == 0) { 12684 union ctl_ha_msg msg_info; 12685 12686 msg_info.hdr.msg_type = CTL_MSG_MANAGE_TASKS; 12687 msg_info.hdr.nexus = io->io_hdr.nexus; 12688 msg_info.task.task_action = CTL_TASK_LUN_RESET; 12689 msg_info.hdr.original_sc = NULL; 12690 msg_info.hdr.serializing_sc = NULL; 12691 ctl_ha_msg_send(CTL_HA_CHAN_CTL, &msg_info, 12692 sizeof(msg_info.task), M_WAITOK); 12693 } 12694 return (0); 12695 } 12696 12697 static void 12698 ctl_abort_tasks_lun(struct ctl_lun *lun, uint32_t targ_port, uint32_t init_id, 12699 int other_sc) 12700 { 12701 struct ctl_io_hdr *xioh; 12702 12703 mtx_assert(&lun->lun_lock, MA_OWNED); 12704 12705 /* 12706 * Run through the OOA queue and attempt to find the given I/O. 12707 * The target port, initiator ID, tag type and tag number have to 12708 * match the values that we got from the initiator. If we have an 12709 * untagged command to abort, simply abort the first untagged command 12710 * we come to. We only allow one untagged command at a time of course. 12711 */ 12712 LIST_FOREACH(xioh, &lun->ooa_queue, ooa_links) { 12713 union ctl_io *xio = (union ctl_io *)xioh; 12714 12715 if ((targ_port == UINT32_MAX || 12716 targ_port == xioh->nexus.targ_port) && 12717 (init_id == UINT32_MAX || 12718 init_id == xioh->nexus.initid)) { 12719 if (targ_port != xioh->nexus.targ_port || 12720 init_id != xioh->nexus.initid) 12721 xioh->flags |= CTL_FLAG_ABORT_STATUS; 12722 xioh->flags |= CTL_FLAG_ABORT; 12723 if (!other_sc && !(lun->flags & CTL_LUN_PRIMARY_SC)) { 12724 union ctl_ha_msg msg_info; 12725 12726 CTL_IO_ASSERT(xio, SCSI); 12727 msg_info.hdr.nexus = xioh->nexus; 12728 msg_info.task.task_action = CTL_TASK_ABORT_TASK; 12729 msg_info.task.tag_num = xio->scsiio.tag_num; 12730 msg_info.task.tag_type = xio->scsiio.tag_type; 12731 msg_info.hdr.msg_type = CTL_MSG_MANAGE_TASKS; 12732 msg_info.hdr.original_sc = NULL; 12733 msg_info.hdr.serializing_sc = NULL; 12734 ctl_ha_msg_send(CTL_HA_CHAN_CTL, &msg_info, 12735 sizeof(msg_info.task), M_NOWAIT); 12736 } 12737 ctl_try_unblock_io(lun, xio, FALSE); 12738 } 12739 } 12740 } 12741 12742 static int 12743 ctl_abort_task_set(union ctl_io *io) 12744 { 12745 struct ctl_softc *softc = CTL_SOFTC(io); 12746 struct ctl_lun *lun; 12747 uint32_t targ_lun; 12748 12749 /* 12750 * Look up the LUN. 12751 */ 12752 targ_lun = io->io_hdr.nexus.targ_mapped_lun; 12753 mtx_lock(&softc->ctl_lock); 12754 if (targ_lun >= ctl_max_luns || 12755 (lun = softc->ctl_luns[targ_lun]) == NULL) { 12756 mtx_unlock(&softc->ctl_lock); 12757 io->taskio.task_status = CTL_TASK_LUN_DOES_NOT_EXIST; 12758 return (1); 12759 } 12760 12761 mtx_lock(&lun->lun_lock); 12762 mtx_unlock(&softc->ctl_lock); 12763 if (io->taskio.task_action == CTL_TASK_ABORT_TASK_SET) { 12764 ctl_abort_tasks_lun(lun, io->io_hdr.nexus.targ_port, 12765 io->io_hdr.nexus.initid, 12766 (io->io_hdr.flags & CTL_FLAG_FROM_OTHER_SC) != 0); 12767 } else { /* CTL_TASK_CLEAR_TASK_SET */ 12768 ctl_abort_tasks_lun(lun, UINT32_MAX, UINT32_MAX, 12769 (io->io_hdr.flags & CTL_FLAG_FROM_OTHER_SC) != 0); 12770 } 12771 mtx_unlock(&lun->lun_lock); 12772 io->taskio.task_status = CTL_TASK_FUNCTION_COMPLETE; 12773 return (0); 12774 } 12775 12776 static void 12777 ctl_i_t_nexus_loss(struct ctl_softc *softc, uint32_t initidx, 12778 ctl_ua_type ua_type) 12779 { 12780 struct ctl_lun *lun; 12781 struct scsi_sense_data *ps; 12782 uint32_t p, i; 12783 12784 p = initidx / CTL_MAX_INIT_PER_PORT; 12785 i = initidx % CTL_MAX_INIT_PER_PORT; 12786 mtx_lock(&softc->ctl_lock); 12787 STAILQ_FOREACH(lun, &softc->lun_list, links) { 12788 mtx_lock(&lun->lun_lock); 12789 /* Abort tasks. */ 12790 ctl_abort_tasks_lun(lun, p, i, 1); 12791 /* Clear CA. */ 12792 ps = lun->pending_sense[p]; 12793 if (ps != NULL) 12794 ps[i].error_code = 0; 12795 /* Clear reservation. */ 12796 if ((lun->flags & CTL_LUN_RESERVED) && (lun->res_idx == initidx)) 12797 lun->flags &= ~CTL_LUN_RESERVED; 12798 /* Clear prevent media removal. */ 12799 if (lun->prevent && ctl_is_set(lun->prevent, initidx)) { 12800 ctl_clear_mask(lun->prevent, initidx); 12801 lun->prevent_count--; 12802 } 12803 /* Clear TPC status */ 12804 ctl_tpc_lun_clear(lun, initidx); 12805 /* Establish UA. */ 12806 ctl_est_ua(lun, initidx, ua_type); 12807 mtx_unlock(&lun->lun_lock); 12808 } 12809 mtx_unlock(&softc->ctl_lock); 12810 } 12811 12812 static int 12813 ctl_i_t_nexus_reset(union ctl_io *io) 12814 { 12815 struct ctl_softc *softc = CTL_SOFTC(io); 12816 uint32_t initidx; 12817 12818 if (!(io->io_hdr.flags & CTL_FLAG_FROM_OTHER_SC)) { 12819 union ctl_ha_msg msg_info; 12820 12821 msg_info.hdr.nexus = io->io_hdr.nexus; 12822 msg_info.task.task_action = CTL_TASK_I_T_NEXUS_RESET; 12823 msg_info.hdr.msg_type = CTL_MSG_MANAGE_TASKS; 12824 msg_info.hdr.original_sc = NULL; 12825 msg_info.hdr.serializing_sc = NULL; 12826 ctl_ha_msg_send(CTL_HA_CHAN_CTL, &msg_info, 12827 sizeof(msg_info.task), M_WAITOK); 12828 } 12829 12830 initidx = ctl_get_initindex(&io->io_hdr.nexus); 12831 ctl_i_t_nexus_loss(softc, initidx, CTL_UA_I_T_NEXUS_LOSS); 12832 io->taskio.task_status = CTL_TASK_FUNCTION_COMPLETE; 12833 return (0); 12834 } 12835 12836 static int 12837 ctl_abort_task(union ctl_io *io) 12838 { 12839 struct ctl_softc *softc = CTL_SOFTC(io); 12840 struct ctl_io_hdr *xioh; 12841 struct ctl_lun *lun; 12842 uint32_t targ_lun; 12843 12844 /* 12845 * Look up the LUN. 12846 */ 12847 targ_lun = io->io_hdr.nexus.targ_mapped_lun; 12848 mtx_lock(&softc->ctl_lock); 12849 if (targ_lun >= ctl_max_luns || 12850 (lun = softc->ctl_luns[targ_lun]) == NULL) { 12851 mtx_unlock(&softc->ctl_lock); 12852 io->taskio.task_status = CTL_TASK_LUN_DOES_NOT_EXIST; 12853 return (1); 12854 } 12855 12856 mtx_lock(&lun->lun_lock); 12857 mtx_unlock(&softc->ctl_lock); 12858 /* 12859 * Run through the OOA queue and attempt to find the given I/O. 12860 * The target port, initiator ID, tag type and tag number have to 12861 * match the values that we got from the initiator. If we have an 12862 * untagged command to abort, simply abort the first untagged command 12863 * we come to. We only allow one untagged command at a time of course. 12864 */ 12865 LIST_FOREACH(xioh, &lun->ooa_queue, ooa_links) { 12866 union ctl_io *xio = (union ctl_io *)xioh; 12867 12868 CTL_IO_ASSERT(xio, SCSI); 12869 if ((xioh->nexus.targ_port != io->io_hdr.nexus.targ_port) 12870 || (xioh->nexus.initid != io->io_hdr.nexus.initid) 12871 || (xioh->flags & CTL_FLAG_ABORT)) 12872 continue; 12873 12874 /* 12875 * If the abort says that the task is untagged, the 12876 * task in the queue must be untagged. Otherwise, 12877 * we just check to see whether the tag numbers 12878 * match. This is because the QLogic firmware 12879 * doesn't pass back the tag type in an abort 12880 * request. 12881 */ 12882 #if 0 12883 if (((xio->scsiio.tag_type == CTL_TAG_UNTAGGED) 12884 && (io->taskio.tag_type == CTL_TAG_UNTAGGED)) 12885 || (xio->scsiio.tag_num == io->taskio.tag_num)) { 12886 #else 12887 /* 12888 * XXX KDM we've got problems with FC, because it 12889 * doesn't send down a tag type with aborts. So we 12890 * can only really go by the tag number... 12891 * This may cause problems with parallel SCSI. 12892 * Need to figure that out!! 12893 */ 12894 if (xio->scsiio.tag_num == io->taskio.tag_num) { 12895 #endif 12896 xioh->flags |= CTL_FLAG_ABORT; 12897 if ((io->io_hdr.flags & CTL_FLAG_FROM_OTHER_SC) == 0 && 12898 !(lun->flags & CTL_LUN_PRIMARY_SC)) { 12899 union ctl_ha_msg msg_info; 12900 12901 msg_info.hdr.nexus = io->io_hdr.nexus; 12902 msg_info.task.task_action = CTL_TASK_ABORT_TASK; 12903 msg_info.task.tag_num = io->taskio.tag_num; 12904 msg_info.task.tag_type = io->taskio.tag_type; 12905 msg_info.hdr.msg_type = CTL_MSG_MANAGE_TASKS; 12906 msg_info.hdr.original_sc = NULL; 12907 msg_info.hdr.serializing_sc = NULL; 12908 ctl_ha_msg_send(CTL_HA_CHAN_CTL, &msg_info, 12909 sizeof(msg_info.task), M_NOWAIT); 12910 } 12911 ctl_try_unblock_io(lun, xio, FALSE); 12912 } 12913 } 12914 mtx_unlock(&lun->lun_lock); 12915 io->taskio.task_status = CTL_TASK_FUNCTION_COMPLETE; 12916 return (0); 12917 } 12918 12919 static int 12920 ctl_query_task(union ctl_io *io, int task_set) 12921 { 12922 struct ctl_softc *softc = CTL_SOFTC(io); 12923 struct ctl_io_hdr *xioh; 12924 struct ctl_lun *lun; 12925 int found = 0; 12926 uint32_t targ_lun; 12927 12928 targ_lun = io->io_hdr.nexus.targ_mapped_lun; 12929 mtx_lock(&softc->ctl_lock); 12930 if (targ_lun >= ctl_max_luns || 12931 (lun = softc->ctl_luns[targ_lun]) == NULL) { 12932 mtx_unlock(&softc->ctl_lock); 12933 io->taskio.task_status = CTL_TASK_LUN_DOES_NOT_EXIST; 12934 return (1); 12935 } 12936 mtx_lock(&lun->lun_lock); 12937 mtx_unlock(&softc->ctl_lock); 12938 LIST_FOREACH(xioh, &lun->ooa_queue, ooa_links) { 12939 union ctl_io *xio = (union ctl_io *)xioh; 12940 12941 CTL_IO_ASSERT(xio, SCSI); 12942 if ((xioh->nexus.targ_port != io->io_hdr.nexus.targ_port) 12943 || (xioh->nexus.initid != io->io_hdr.nexus.initid) 12944 || (xioh->flags & CTL_FLAG_ABORT)) 12945 continue; 12946 12947 if (task_set || xio->scsiio.tag_num == io->taskio.tag_num) { 12948 found = 1; 12949 break; 12950 } 12951 } 12952 mtx_unlock(&lun->lun_lock); 12953 if (found) 12954 io->taskio.task_status = CTL_TASK_FUNCTION_SUCCEEDED; 12955 else 12956 io->taskio.task_status = CTL_TASK_FUNCTION_COMPLETE; 12957 return (0); 12958 } 12959 12960 static int 12961 ctl_query_async_event(union ctl_io *io) 12962 { 12963 struct ctl_softc *softc = CTL_SOFTC(io); 12964 struct ctl_lun *lun; 12965 ctl_ua_type ua; 12966 uint32_t targ_lun, initidx; 12967 12968 targ_lun = io->io_hdr.nexus.targ_mapped_lun; 12969 mtx_lock(&softc->ctl_lock); 12970 if (targ_lun >= ctl_max_luns || 12971 (lun = softc->ctl_luns[targ_lun]) == NULL) { 12972 mtx_unlock(&softc->ctl_lock); 12973 io->taskio.task_status = CTL_TASK_LUN_DOES_NOT_EXIST; 12974 return (1); 12975 } 12976 mtx_lock(&lun->lun_lock); 12977 mtx_unlock(&softc->ctl_lock); 12978 initidx = ctl_get_initindex(&io->io_hdr.nexus); 12979 ua = ctl_build_qae(lun, initidx, io->taskio.task_resp); 12980 mtx_unlock(&lun->lun_lock); 12981 if (ua != CTL_UA_NONE) 12982 io->taskio.task_status = CTL_TASK_FUNCTION_SUCCEEDED; 12983 else 12984 io->taskio.task_status = CTL_TASK_FUNCTION_COMPLETE; 12985 return (0); 12986 } 12987 12988 static void 12989 ctl_run_task(union ctl_io *io) 12990 { 12991 int retval = 1; 12992 12993 CTL_DEBUG_PRINT(("ctl_run_task\n")); 12994 KASSERT(io->io_hdr.io_type == CTL_IO_TASK, 12995 ("ctl_run_task: Unextected io_type %d\n", io->io_hdr.io_type)); 12996 io->taskio.task_status = CTL_TASK_FUNCTION_NOT_SUPPORTED; 12997 bzero(io->taskio.task_resp, sizeof(io->taskio.task_resp)); 12998 switch (io->taskio.task_action) { 12999 case CTL_TASK_ABORT_TASK: 13000 retval = ctl_abort_task(io); 13001 break; 13002 case CTL_TASK_ABORT_TASK_SET: 13003 case CTL_TASK_CLEAR_TASK_SET: 13004 retval = ctl_abort_task_set(io); 13005 break; 13006 case CTL_TASK_CLEAR_ACA: 13007 break; 13008 case CTL_TASK_I_T_NEXUS_RESET: 13009 retval = ctl_i_t_nexus_reset(io); 13010 break; 13011 case CTL_TASK_LUN_RESET: 13012 retval = ctl_lun_reset(io); 13013 break; 13014 case CTL_TASK_TARGET_RESET: 13015 case CTL_TASK_BUS_RESET: 13016 retval = ctl_target_reset(io); 13017 break; 13018 case CTL_TASK_PORT_LOGIN: 13019 break; 13020 case CTL_TASK_PORT_LOGOUT: 13021 break; 13022 case CTL_TASK_QUERY_TASK: 13023 retval = ctl_query_task(io, 0); 13024 break; 13025 case CTL_TASK_QUERY_TASK_SET: 13026 retval = ctl_query_task(io, 1); 13027 break; 13028 case CTL_TASK_QUERY_ASYNC_EVENT: 13029 retval = ctl_query_async_event(io); 13030 break; 13031 default: 13032 printf("%s: got unknown task management event %d\n", 13033 __func__, io->taskio.task_action); 13034 break; 13035 } 13036 if (retval == 0) 13037 io->io_hdr.status = CTL_SUCCESS; 13038 else 13039 io->io_hdr.status = CTL_ERROR; 13040 ctl_done(io); 13041 } 13042 13043 /* 13044 * For HA operation. Handle commands that come in from the other 13045 * controller. 13046 */ 13047 static void 13048 ctl_handle_isc(union ctl_io *io) 13049 { 13050 struct ctl_softc *softc = CTL_SOFTC(io); 13051 struct ctl_lun *lun; 13052 const struct ctl_cmd_entry *entry; 13053 uint32_t targ_lun; 13054 13055 CTL_IO_ASSERT(io, SCSI); 13056 13057 targ_lun = io->io_hdr.nexus.targ_mapped_lun; 13058 switch (io->io_hdr.msg_type) { 13059 case CTL_MSG_SERIALIZE: 13060 ctl_serialize_other_sc_cmd(&io->scsiio); 13061 break; 13062 case CTL_MSG_R2R: /* Only used in SER_ONLY mode. */ 13063 entry = ctl_get_cmd_entry(&io->scsiio, NULL); 13064 if (targ_lun >= ctl_max_luns || 13065 (lun = softc->ctl_luns[targ_lun]) == NULL) { 13066 ctl_done(io); 13067 break; 13068 } 13069 mtx_lock(&lun->lun_lock); 13070 if (ctl_scsiio_lun_check(lun, entry, &io->scsiio) != 0) { 13071 mtx_unlock(&lun->lun_lock); 13072 ctl_done(io); 13073 break; 13074 } 13075 io->io_hdr.flags |= CTL_FLAG_IS_WAS_ON_RTR; 13076 mtx_unlock(&lun->lun_lock); 13077 ctl_enqueue_rtr(io); 13078 break; 13079 case CTL_MSG_FINISH_IO: 13080 if (softc->ha_mode == CTL_HA_MODE_XFER) { 13081 ctl_done(io); 13082 break; 13083 } 13084 if (targ_lun >= ctl_max_luns || 13085 (lun = softc->ctl_luns[targ_lun]) == NULL) { 13086 ctl_free_io(io); 13087 break; 13088 } 13089 mtx_lock(&lun->lun_lock); 13090 ctl_try_unblock_others(lun, io, TRUE); 13091 LIST_REMOVE(&io->io_hdr, ooa_links); 13092 mtx_unlock(&lun->lun_lock); 13093 ctl_free_io(io); 13094 break; 13095 case CTL_MSG_PERS_ACTION: 13096 ctl_hndl_per_res_out_on_other_sc(io); 13097 ctl_free_io(io); 13098 break; 13099 case CTL_MSG_BAD_JUJU: 13100 ctl_done(io); 13101 break; 13102 case CTL_MSG_DATAMOVE: /* Only used in XFER mode */ 13103 ctl_datamove_remote(io); 13104 break; 13105 case CTL_MSG_DATAMOVE_DONE: /* Only used in XFER mode */ 13106 ctl_datamove_done(io, false); 13107 break; 13108 case CTL_MSG_FAILOVER: 13109 ctl_failover_lun(io); 13110 ctl_free_io(io); 13111 break; 13112 default: 13113 printf("%s: Invalid message type %d\n", 13114 __func__, io->io_hdr.msg_type); 13115 ctl_free_io(io); 13116 break; 13117 } 13118 13119 } 13120 13121 /* 13122 * Returns the match type in the case of a match, or CTL_LUN_PAT_NONE if 13123 * there is no match. 13124 */ 13125 static ctl_lun_error_pattern 13126 ctl_cmd_pattern_match(struct ctl_scsiio *ctsio, struct ctl_error_desc *desc) 13127 { 13128 const struct ctl_cmd_entry *entry; 13129 ctl_lun_error_pattern filtered_pattern, pattern; 13130 13131 pattern = desc->error_pattern; 13132 13133 /* 13134 * XXX KDM we need more data passed into this function to match a 13135 * custom pattern, and we actually need to implement custom pattern 13136 * matching. 13137 */ 13138 if (pattern & CTL_LUN_PAT_CMD) 13139 return (CTL_LUN_PAT_CMD); 13140 13141 if ((pattern & CTL_LUN_PAT_MASK) == CTL_LUN_PAT_ANY) 13142 return (CTL_LUN_PAT_ANY); 13143 13144 entry = ctl_get_cmd_entry(ctsio, NULL); 13145 13146 filtered_pattern = entry->pattern & pattern; 13147 13148 /* 13149 * If the user requested specific flags in the pattern (e.g. 13150 * CTL_LUN_PAT_RANGE), make sure the command supports all of those 13151 * flags. 13152 * 13153 * If the user did not specify any flags, it doesn't matter whether 13154 * or not the command supports the flags. 13155 */ 13156 if ((filtered_pattern & ~CTL_LUN_PAT_MASK) != 13157 (pattern & ~CTL_LUN_PAT_MASK)) 13158 return (CTL_LUN_PAT_NONE); 13159 13160 /* 13161 * If the user asked for a range check, see if the requested LBA 13162 * range overlaps with this command's LBA range. 13163 */ 13164 if (filtered_pattern & CTL_LUN_PAT_RANGE) { 13165 uint64_t lba1; 13166 uint64_t len1; 13167 ctl_action action; 13168 int retval; 13169 13170 retval = ctl_get_lba_len((union ctl_io *)ctsio, &lba1, &len1); 13171 if (retval != 0) 13172 return (CTL_LUN_PAT_NONE); 13173 13174 action = ctl_extent_check_lba(lba1, len1, desc->lba_range.lba, 13175 desc->lba_range.len, FALSE); 13176 /* 13177 * A "pass" means that the LBA ranges don't overlap, so 13178 * this doesn't match the user's range criteria. 13179 */ 13180 if (action == CTL_ACTION_PASS) 13181 return (CTL_LUN_PAT_NONE); 13182 } 13183 13184 return (filtered_pattern); 13185 } 13186 13187 static void 13188 ctl_inject_error(struct ctl_lun *lun, union ctl_io *io) 13189 { 13190 struct ctl_error_desc *desc, *desc2; 13191 13192 CTL_IO_ASSERT(io, SCSI); 13193 13194 mtx_assert(&lun->lun_lock, MA_OWNED); 13195 13196 STAILQ_FOREACH_SAFE(desc, &lun->error_list, links, desc2) { 13197 ctl_lun_error_pattern pattern; 13198 /* 13199 * Check to see whether this particular command matches 13200 * the pattern in the descriptor. 13201 */ 13202 pattern = ctl_cmd_pattern_match(&io->scsiio, desc); 13203 if ((pattern & CTL_LUN_PAT_MASK) == CTL_LUN_PAT_NONE) 13204 continue; 13205 13206 switch (desc->lun_error & CTL_LUN_INJ_TYPE) { 13207 case CTL_LUN_INJ_ABORTED: 13208 ctl_set_aborted(&io->scsiio); 13209 break; 13210 case CTL_LUN_INJ_MEDIUM_ERR: 13211 ctl_set_medium_error(&io->scsiio, 13212 (io->io_hdr.flags & CTL_FLAG_DATA_MASK) != 13213 CTL_FLAG_DATA_OUT); 13214 break; 13215 case CTL_LUN_INJ_UA: 13216 /* 29h/00h POWER ON, RESET, OR BUS DEVICE RESET 13217 * OCCURRED */ 13218 ctl_set_ua(&io->scsiio, 0x29, 0x00); 13219 break; 13220 case CTL_LUN_INJ_CUSTOM: 13221 /* 13222 * We're assuming the user knows what he is doing. 13223 * Just copy the sense information without doing 13224 * checks. 13225 */ 13226 bcopy(&desc->custom_sense, &io->scsiio.sense_data, 13227 MIN(sizeof(desc->custom_sense), 13228 sizeof(io->scsiio.sense_data))); 13229 io->scsiio.scsi_status = SCSI_STATUS_CHECK_COND; 13230 io->scsiio.sense_len = SSD_FULL_SIZE; 13231 io->io_hdr.status = CTL_SCSI_ERROR | CTL_AUTOSENSE; 13232 break; 13233 case CTL_LUN_INJ_NONE: 13234 default: 13235 /* 13236 * If this is an error injection type we don't know 13237 * about, clear the continuous flag (if it is set) 13238 * so it will get deleted below. 13239 */ 13240 desc->lun_error &= ~CTL_LUN_INJ_CONTINUOUS; 13241 break; 13242 } 13243 /* 13244 * By default, each error injection action is a one-shot 13245 */ 13246 if (desc->lun_error & CTL_LUN_INJ_CONTINUOUS) 13247 continue; 13248 13249 STAILQ_REMOVE(&lun->error_list, desc, ctl_error_desc, links); 13250 13251 free(desc, M_CTL); 13252 } 13253 } 13254 13255 #ifdef CTL_IO_DELAY 13256 static void 13257 ctl_datamove_timer_wakeup(void *arg) 13258 { 13259 union ctl_io *io; 13260 13261 io = (union ctl_io *)arg; 13262 13263 ctl_datamove(io); 13264 } 13265 #endif /* CTL_IO_DELAY */ 13266 13267 static void 13268 ctl_datamove_done_process(union ctl_io *io) 13269 { 13270 #ifdef CTL_TIME_IO 13271 struct bintime cur_bt; 13272 13273 getbinuptime(&cur_bt); 13274 bintime_sub(&cur_bt, &io->io_hdr.dma_start_bt); 13275 bintime_add(&io->io_hdr.dma_bt, &cur_bt); 13276 #endif 13277 io->io_hdr.num_dmas++; 13278 13279 if ((io->io_hdr.port_status != 0) && 13280 ((io->io_hdr.status & CTL_STATUS_MASK) == CTL_STATUS_NONE || 13281 (io->io_hdr.status & CTL_STATUS_MASK) == CTL_SUCCESS)) { 13282 switch (io->io_hdr.io_type) { 13283 case CTL_IO_SCSI: 13284 ctl_set_internal_failure(&io->scsiio, /*sks_valid*/ 1, 13285 /*retry_count*/ io->io_hdr.port_status); 13286 break; 13287 case CTL_IO_NVME: 13288 case CTL_IO_NVME_ADMIN: 13289 if (io->io_hdr.flags & CTL_FLAG_ABORT) 13290 ctl_nvme_set_command_aborted(&io->nvmeio); 13291 else 13292 ctl_nvme_set_data_transfer_error(&io->nvmeio); 13293 break; 13294 default: 13295 __assert_unreachable(); 13296 } 13297 } else if (ctl_kern_data_resid(io) != 0 && 13298 (io->io_hdr.flags & CTL_FLAG_DATA_MASK) == CTL_FLAG_DATA_OUT && 13299 ((io->io_hdr.status & CTL_STATUS_MASK) == CTL_STATUS_NONE || 13300 (io->io_hdr.status & CTL_STATUS_MASK) == CTL_SUCCESS)) { 13301 switch (io->io_hdr.io_type) { 13302 case CTL_IO_SCSI: 13303 ctl_set_invalid_field_ciu(&io->scsiio); 13304 break; 13305 case CTL_IO_NVME: 13306 case CTL_IO_NVME_ADMIN: 13307 ctl_nvme_set_data_transfer_error(&io->nvmeio); 13308 break; 13309 default: 13310 __assert_unreachable(); 13311 } 13312 } else if (ctl_debug & CTL_DEBUG_CDB_DATA) 13313 ctl_data_print(io); 13314 } 13315 13316 void 13317 ctl_datamove_done(union ctl_io *io, bool samethr) 13318 { 13319 13320 ctl_datamove_done_process(io); 13321 ctl_be_move_done(io, samethr); 13322 } 13323 13324 void 13325 ctl_datamove(union ctl_io *io) 13326 { 13327 void (*fe_datamove)(union ctl_io *io); 13328 13329 mtx_assert(&((struct ctl_softc *)CTL_SOFTC(io))->ctl_lock, MA_NOTOWNED); 13330 13331 CTL_DEBUG_PRINT(("ctl_datamove\n")); 13332 13333 /* No data transferred yet. Frontend must update this when done. */ 13334 ctl_set_kern_data_resid(io, ctl_kern_data_len(io)); 13335 13336 #ifdef CTL_TIME_IO 13337 getbinuptime(&io->io_hdr.dma_start_bt); 13338 #endif /* CTL_TIME_IO */ 13339 13340 #ifdef CTL_IO_DELAY 13341 if (io->io_hdr.flags & CTL_FLAG_DELAY_DONE) { 13342 io->io_hdr.flags &= ~CTL_FLAG_DELAY_DONE; 13343 } else { 13344 struct ctl_lun *lun; 13345 13346 lun = CTL_LUN(io); 13347 if ((lun != NULL) 13348 && (lun->delay_info.datamove_delay > 0)) { 13349 callout_init(&io->io_hdr.delay_callout, /*mpsafe*/ 1); 13350 io->io_hdr.flags |= CTL_FLAG_DELAY_DONE; 13351 callout_reset(&io->io_hdr.delay_callout, 13352 lun->delay_info.datamove_delay * hz, 13353 ctl_datamove_timer_wakeup, io); 13354 if (lun->delay_info.datamove_type == 13355 CTL_DELAY_TYPE_ONESHOT) 13356 lun->delay_info.datamove_delay = 0; 13357 return; 13358 } 13359 } 13360 #endif 13361 13362 /* 13363 * This command has been aborted. Set the port status, so we fail 13364 * the data move. 13365 */ 13366 if (io->io_hdr.flags & CTL_FLAG_ABORT) { 13367 switch (io->io_hdr.io_type) { 13368 case CTL_IO_SCSI: 13369 printf("ctl_datamove: tag 0x%jx on (%u:%u:%u) aborted\n", 13370 io->scsiio.tag_num, io->io_hdr.nexus.initid, 13371 io->io_hdr.nexus.targ_port, 13372 io->io_hdr.nexus.targ_lun); 13373 break; 13374 case CTL_IO_NVME: 13375 case CTL_IO_NVME_ADMIN: 13376 printf("ctl_datamove: CID 0x%x on (%u:%u:%u) aborted\n", 13377 le16toh(io->nvmeio.cmd.cid), 13378 io->io_hdr.nexus.initid, io->io_hdr.nexus.targ_port, 13379 io->io_hdr.nexus.targ_lun); 13380 break; 13381 default: 13382 __assert_unreachable(); 13383 } 13384 io->io_hdr.port_status = 31337; 13385 ctl_datamove_done_process(io); 13386 ctl_be_move_done(io, true); 13387 return; 13388 } 13389 13390 /* Don't confuse frontend with zero length data move. */ 13391 if (ctl_kern_data_len(io) == 0) { 13392 ctl_datamove_done_process(io); 13393 ctl_be_move_done(io, true); 13394 return; 13395 } 13396 13397 fe_datamove = CTL_PORT(io)->fe_datamove; 13398 fe_datamove(io); 13399 } 13400 13401 static void 13402 ctl_send_datamove_done(union ctl_io *io, int have_lock) 13403 { 13404 union ctl_ha_msg msg; 13405 #ifdef CTL_TIME_IO 13406 struct bintime cur_bt; 13407 #endif 13408 13409 CTL_IO_ASSERT(io, SCSI); 13410 13411 memset(&msg, 0, sizeof(msg)); 13412 msg.hdr.msg_type = CTL_MSG_DATAMOVE_DONE; 13413 msg.hdr.original_sc = io; 13414 msg.hdr.serializing_sc = io->io_hdr.remote_io; 13415 msg.hdr.nexus = io->io_hdr.nexus; 13416 msg.hdr.status = io->io_hdr.status; 13417 msg.scsi.kern_data_resid = io->scsiio.kern_data_resid; 13418 msg.scsi.tag_num = io->scsiio.tag_num; 13419 msg.scsi.tag_type = io->scsiio.tag_type; 13420 msg.scsi.scsi_status = io->scsiio.scsi_status; 13421 memcpy(&msg.scsi.sense_data, &io->scsiio.sense_data, 13422 io->scsiio.sense_len); 13423 msg.scsi.sense_len = io->scsiio.sense_len; 13424 msg.scsi.port_status = io->io_hdr.port_status; 13425 io->io_hdr.flags &= ~CTL_FLAG_IO_ACTIVE; 13426 if (io->io_hdr.flags & CTL_FLAG_FAILOVER) { 13427 ctl_failover_io(io, /*have_lock*/ have_lock); 13428 return; 13429 } 13430 ctl_ha_msg_send(CTL_HA_CHAN_CTL, &msg, 13431 sizeof(msg.scsi) - sizeof(msg.scsi.sense_data) + 13432 msg.scsi.sense_len, M_WAITOK); 13433 13434 #ifdef CTL_TIME_IO 13435 getbinuptime(&cur_bt); 13436 bintime_sub(&cur_bt, &io->io_hdr.dma_start_bt); 13437 bintime_add(&io->io_hdr.dma_bt, &cur_bt); 13438 #endif 13439 io->io_hdr.num_dmas++; 13440 } 13441 13442 /* 13443 * The DMA to the remote side is done, now we need to tell the other side 13444 * we're done so it can continue with its data movement. 13445 */ 13446 static void 13447 ctl_datamove_remote_write_cb(struct ctl_ha_dt_req *rq) 13448 { 13449 union ctl_io *io; 13450 uint32_t i; 13451 13452 io = rq->context; 13453 CTL_IO_ASSERT(io, SCSI); 13454 13455 if (rq->ret != CTL_HA_STATUS_SUCCESS) { 13456 printf("%s: ISC DMA write failed with error %d", __func__, 13457 rq->ret); 13458 ctl_set_internal_failure(&io->scsiio, 13459 /*sks_valid*/ 1, 13460 /*retry_count*/ rq->ret); 13461 } 13462 13463 ctl_dt_req_free(rq); 13464 13465 for (i = 0; i < io->scsiio.kern_sg_entries; i++) 13466 free(CTL_LSGLT(io)[i].addr, M_CTL); 13467 free(CTL_RSGL(io), M_CTL); 13468 CTL_RSGL(io) = NULL; 13469 CTL_LSGL(io) = NULL; 13470 13471 /* 13472 * The data is in local and remote memory, so now we need to send 13473 * status (good or back) back to the other side. 13474 */ 13475 ctl_send_datamove_done(io, /*have_lock*/ 0); 13476 } 13477 13478 /* 13479 * We've moved the data from the host/controller into local memory. Now we 13480 * need to push it over to the remote controller's memory. 13481 */ 13482 static int 13483 ctl_datamove_remote_dm_write_cb(union ctl_io *io, bool samethr) 13484 { 13485 int retval; 13486 13487 retval = ctl_datamove_remote_xfer(io, CTL_HA_DT_CMD_WRITE, 13488 ctl_datamove_remote_write_cb); 13489 return (retval); 13490 } 13491 13492 static void 13493 ctl_datamove_remote_write(union ctl_io *io) 13494 { 13495 int retval; 13496 void (*fe_datamove)(union ctl_io *io); 13497 13498 CTL_IO_ASSERT(io, SCSI); 13499 13500 /* 13501 * - Get the data from the host/HBA into local memory. 13502 * - DMA memory from the local controller to the remote controller. 13503 * - Send status back to the remote controller. 13504 */ 13505 13506 retval = ctl_datamove_remote_sgl_setup(io); 13507 if (retval != 0) 13508 return; 13509 13510 /* Switch the pointer over so the FETD knows what to do */ 13511 io->scsiio.kern_data_ptr = (uint8_t *)CTL_LSGL(io); 13512 13513 /* 13514 * Use a custom move done callback, since we need to send completion 13515 * back to the other controller, not to the backend on this side. 13516 */ 13517 io->scsiio.be_move_done = ctl_datamove_remote_dm_write_cb; 13518 13519 fe_datamove = CTL_PORT(io)->fe_datamove; 13520 fe_datamove(io); 13521 } 13522 13523 static int 13524 ctl_datamove_remote_dm_read_cb(union ctl_io *io, bool samethr) 13525 { 13526 uint32_t i; 13527 13528 CTL_IO_ASSERT(io, SCSI); 13529 13530 for (i = 0; i < io->scsiio.kern_sg_entries; i++) 13531 free(CTL_LSGLT(io)[i].addr, M_CTL); 13532 free(CTL_RSGL(io), M_CTL); 13533 CTL_RSGL(io) = NULL; 13534 CTL_LSGL(io) = NULL; 13535 13536 /* 13537 * The read is done, now we need to send status (good or bad) back 13538 * to the other side. 13539 */ 13540 ctl_send_datamove_done(io, /*have_lock*/ 0); 13541 13542 return (0); 13543 } 13544 13545 static void 13546 ctl_datamove_remote_read_cb(struct ctl_ha_dt_req *rq) 13547 { 13548 union ctl_io *io; 13549 void (*fe_datamove)(union ctl_io *io); 13550 13551 io = rq->context; 13552 CTL_IO_ASSERT(io, SCSI); 13553 13554 if (rq->ret != CTL_HA_STATUS_SUCCESS) { 13555 printf("%s: ISC DMA read failed with error %d\n", __func__, 13556 rq->ret); 13557 ctl_set_internal_failure(&io->scsiio, 13558 /*sks_valid*/ 1, 13559 /*retry_count*/ rq->ret); 13560 } 13561 13562 ctl_dt_req_free(rq); 13563 13564 /* Switch the pointer over so the FETD knows what to do */ 13565 io->scsiio.kern_data_ptr = (uint8_t *)CTL_LSGL(io); 13566 13567 /* 13568 * Use a custom move done callback, since we need to send completion 13569 * back to the other controller, not to the backend on this side. 13570 */ 13571 io->scsiio.be_move_done = ctl_datamove_remote_dm_read_cb; 13572 13573 /* XXX KDM add checks like the ones in ctl_datamove? */ 13574 13575 fe_datamove = CTL_PORT(io)->fe_datamove; 13576 fe_datamove(io); 13577 } 13578 13579 static int 13580 ctl_datamove_remote_sgl_setup(union ctl_io *io) 13581 { 13582 struct ctl_sg_entry *local_sglist; 13583 uint32_t len_to_go; 13584 int retval; 13585 int i; 13586 13587 CTL_IO_ASSERT(io, SCSI); 13588 13589 retval = 0; 13590 local_sglist = CTL_LSGL(io); 13591 len_to_go = io->scsiio.kern_data_len; 13592 13593 /* 13594 * The difficult thing here is that the size of the various 13595 * S/G segments may be different than the size from the 13596 * remote controller. That'll make it harder when DMAing 13597 * the data back to the other side. 13598 */ 13599 for (i = 0; len_to_go > 0; i++) { 13600 local_sglist[i].len = MIN(len_to_go, CTL_HA_DATAMOVE_SEGMENT); 13601 local_sglist[i].addr = 13602 malloc(local_sglist[i].len, M_CTL, M_WAITOK); 13603 13604 len_to_go -= local_sglist[i].len; 13605 } 13606 /* 13607 * Reset the number of S/G entries accordingly. The original 13608 * number of S/G entries is available in rem_sg_entries. 13609 */ 13610 io->scsiio.kern_sg_entries = i; 13611 13612 return (retval); 13613 } 13614 13615 static int 13616 ctl_datamove_remote_xfer(union ctl_io *io, unsigned command, 13617 ctl_ha_dt_cb callback) 13618 { 13619 struct ctl_ha_dt_req *rq; 13620 struct ctl_sg_entry *remote_sglist, *local_sglist; 13621 uint32_t local_used, remote_used, total_used; 13622 int i, j, isc_ret; 13623 13624 rq = ctl_dt_req_alloc(); 13625 13626 CTL_IO_ASSERT(io, SCSI); 13627 13628 /* 13629 * If we failed to allocate the request, and if the DMA didn't fail 13630 * anyway, set busy status. This is just a resource allocation 13631 * failure. 13632 */ 13633 if ((rq == NULL) 13634 && ((io->io_hdr.status & CTL_STATUS_MASK) != CTL_STATUS_NONE && 13635 (io->io_hdr.status & CTL_STATUS_MASK) != CTL_SUCCESS)) 13636 ctl_set_busy(&io->scsiio); 13637 13638 if ((io->io_hdr.status & CTL_STATUS_MASK) != CTL_STATUS_NONE && 13639 (io->io_hdr.status & CTL_STATUS_MASK) != CTL_SUCCESS) { 13640 if (rq != NULL) 13641 ctl_dt_req_free(rq); 13642 13643 /* 13644 * The data move failed. We need to return status back 13645 * to the other controller. No point in trying to DMA 13646 * data to the remote controller. 13647 */ 13648 13649 ctl_send_datamove_done(io, /*have_lock*/ 0); 13650 13651 return (1); 13652 } 13653 13654 local_sglist = CTL_LSGL(io); 13655 remote_sglist = CTL_RSGL(io); 13656 local_used = 0; 13657 remote_used = 0; 13658 total_used = 0; 13659 13660 /* 13661 * Pull/push the data over the wire from/to the other controller. 13662 * This takes into account the possibility that the local and 13663 * remote sglists may not be identical in terms of the size of 13664 * the elements and the number of elements. 13665 * 13666 * One fundamental assumption here is that the length allocated for 13667 * both the local and remote sglists is identical. Otherwise, we've 13668 * essentially got a coding error of some sort. 13669 */ 13670 isc_ret = CTL_HA_STATUS_SUCCESS; 13671 for (i = 0, j = 0; total_used < io->scsiio.kern_data_len; ) { 13672 uint32_t cur_len; 13673 uint8_t *tmp_ptr; 13674 13675 rq->command = command; 13676 rq->context = io; 13677 13678 /* 13679 * Both pointers should be aligned. But it is possible 13680 * that the allocation length is not. They should both 13681 * also have enough slack left over at the end, though, 13682 * to round up to the next 8 byte boundary. 13683 */ 13684 cur_len = MIN(local_sglist[i].len - local_used, 13685 remote_sglist[j].len - remote_used); 13686 rq->size = cur_len; 13687 13688 tmp_ptr = (uint8_t *)local_sglist[i].addr; 13689 tmp_ptr += local_used; 13690 13691 #if 0 13692 /* Use physical addresses when talking to ISC hardware */ 13693 if ((io->io_hdr.flags & CTL_FLAG_BUS_ADDR) == 0) { 13694 /* XXX KDM use busdma */ 13695 rq->local = vtophys(tmp_ptr); 13696 } else 13697 rq->local = tmp_ptr; 13698 #else 13699 KASSERT((io->io_hdr.flags & CTL_FLAG_BUS_ADDR) == 0, 13700 ("HA does not support BUS_ADDR")); 13701 rq->local = tmp_ptr; 13702 #endif 13703 13704 tmp_ptr = (uint8_t *)remote_sglist[j].addr; 13705 tmp_ptr += remote_used; 13706 rq->remote = tmp_ptr; 13707 13708 rq->callback = NULL; 13709 13710 local_used += cur_len; 13711 if (local_used >= local_sglist[i].len) { 13712 i++; 13713 local_used = 0; 13714 } 13715 13716 remote_used += cur_len; 13717 if (remote_used >= remote_sglist[j].len) { 13718 j++; 13719 remote_used = 0; 13720 } 13721 total_used += cur_len; 13722 13723 if (total_used >= io->scsiio.kern_data_len) 13724 rq->callback = callback; 13725 13726 isc_ret = ctl_dt_single(rq); 13727 if (isc_ret > CTL_HA_STATUS_SUCCESS) 13728 break; 13729 } 13730 if (isc_ret != CTL_HA_STATUS_WAIT) { 13731 rq->ret = isc_ret; 13732 callback(rq); 13733 } 13734 13735 return (0); 13736 } 13737 13738 static void 13739 ctl_datamove_remote_read(union ctl_io *io) 13740 { 13741 int retval; 13742 uint32_t i; 13743 13744 /* 13745 * This will send an error to the other controller in the case of a 13746 * failure. 13747 */ 13748 retval = ctl_datamove_remote_sgl_setup(io); 13749 if (retval != 0) 13750 return; 13751 13752 retval = ctl_datamove_remote_xfer(io, CTL_HA_DT_CMD_READ, 13753 ctl_datamove_remote_read_cb); 13754 if (retval != 0) { 13755 /* 13756 * Make sure we free memory if there was an error.. The 13757 * ctl_datamove_remote_xfer() function will send the 13758 * datamove done message, or call the callback with an 13759 * error if there is a problem. 13760 */ 13761 for (i = 0; i < ctl_kern_sg_entries(io); i++) 13762 free(CTL_LSGLT(io)[i].addr, M_CTL); 13763 free(CTL_RSGL(io), M_CTL); 13764 CTL_RSGL(io) = NULL; 13765 CTL_LSGL(io) = NULL; 13766 } 13767 } 13768 13769 /* 13770 * Process a datamove request from the other controller. This is used for 13771 * XFER mode only, not SER_ONLY mode. For writes, we DMA into local memory 13772 * first. Once that is complete, the data gets DMAed into the remote 13773 * controller's memory. For reads, we DMA from the remote controller's 13774 * memory into our memory first, and then move it out to the FETD. 13775 */ 13776 static void 13777 ctl_datamove_remote(union ctl_io *io) 13778 { 13779 CTL_IO_ASSERT(io, SCSI); 13780 13781 mtx_assert(&((struct ctl_softc *)CTL_SOFTC(io))->ctl_lock, MA_NOTOWNED); 13782 13783 if (io->io_hdr.flags & CTL_FLAG_FAILOVER) { 13784 ctl_failover_io(io, /*have_lock*/ 0); 13785 return; 13786 } 13787 13788 /* 13789 * Note that we look for an aborted I/O here, but don't do some of 13790 * the other checks that ctl_datamove() normally does. 13791 * We don't need to run the datamove delay code, since that should 13792 * have been done if need be on the other controller. 13793 */ 13794 if (io->io_hdr.flags & CTL_FLAG_ABORT) { 13795 printf("%s: tag 0x%jx on (%u:%u:%u) aborted\n", __func__, 13796 io->scsiio.tag_num, io->io_hdr.nexus.initid, 13797 io->io_hdr.nexus.targ_port, 13798 io->io_hdr.nexus.targ_lun); 13799 io->io_hdr.port_status = 31338; 13800 ctl_send_datamove_done(io, /*have_lock*/ 0); 13801 return; 13802 } 13803 13804 if ((io->io_hdr.flags & CTL_FLAG_DATA_MASK) == CTL_FLAG_DATA_OUT) 13805 ctl_datamove_remote_write(io); 13806 else if ((io->io_hdr.flags & CTL_FLAG_DATA_MASK) == CTL_FLAG_DATA_IN) 13807 ctl_datamove_remote_read(io); 13808 else { 13809 io->io_hdr.port_status = 31339; 13810 ctl_send_datamove_done(io, /*have_lock*/ 0); 13811 } 13812 } 13813 13814 static void 13815 ctl_process_done(union ctl_io *io) 13816 { 13817 struct ctl_softc *softc = CTL_SOFTC(io); 13818 struct ctl_port *port = CTL_PORT(io); 13819 struct ctl_lun *lun = CTL_LUN(io); 13820 void (*fe_done)(union ctl_io *io); 13821 union ctl_ha_msg msg; 13822 13823 CTL_DEBUG_PRINT(("ctl_process_done\n")); 13824 fe_done = port->fe_done; 13825 13826 #ifdef CTL_TIME_IO 13827 if ((time_uptime - io->io_hdr.start_time) > ctl_time_io_secs) { 13828 char str[256]; 13829 char path_str[64]; 13830 struct sbuf sb; 13831 13832 ctl_scsi_path_string(&io->io_hdr, path_str, sizeof(path_str)); 13833 sbuf_new(&sb, str, sizeof(str), SBUF_FIXEDLEN); 13834 13835 ctl_io_sbuf(io, &sb); 13836 sbuf_cat(&sb, path_str); 13837 sbuf_printf(&sb, "ctl_process_done: %jd seconds\n", 13838 (intmax_t)time_uptime - io->io_hdr.start_time); 13839 sbuf_finish(&sb); 13840 printf("%s", sbuf_data(&sb)); 13841 } 13842 #endif /* CTL_TIME_IO */ 13843 13844 switch (io->io_hdr.io_type) { 13845 case CTL_IO_SCSI: 13846 case CTL_IO_NVME: 13847 case CTL_IO_NVME_ADMIN: 13848 break; 13849 case CTL_IO_TASK: 13850 if (ctl_debug & CTL_DEBUG_INFO) 13851 ctl_io_error_print(io, NULL); 13852 fe_done(io); 13853 return; 13854 default: 13855 panic("%s: Invalid CTL I/O type %d\n", 13856 __func__, io->io_hdr.io_type); 13857 } 13858 13859 if (lun == NULL) { 13860 CTL_DEBUG_PRINT(("NULL LUN for lun %d\n", 13861 io->io_hdr.nexus.targ_mapped_lun)); 13862 goto bailout; 13863 } 13864 13865 mtx_lock(&lun->lun_lock); 13866 13867 /* 13868 * Check to see if we have any informational exception and status 13869 * of this command can be modified to report it in form of either 13870 * RECOVERED ERROR or NO SENSE, depending on MRIE mode page field. 13871 */ 13872 if (lun->ie_reported == 0 && lun->ie_asc != 0 && 13873 io->io_hdr.status == CTL_SUCCESS && 13874 (io->io_hdr.flags & CTL_FLAG_STATUS_SENT) == 0) { 13875 uint8_t mrie = lun->MODE_IE.mrie; 13876 uint8_t per = ((lun->MODE_RWER.byte3 & SMS_RWER_PER) || 13877 (lun->MODE_VER.byte3 & SMS_VER_PER)); 13878 13879 CTL_IO_ASSERT(io, SCSI); 13880 if (((mrie == SIEP_MRIE_REC_COND && per) || 13881 mrie == SIEP_MRIE_REC_UNCOND || 13882 mrie == SIEP_MRIE_NO_SENSE) && 13883 (ctl_get_cmd_entry(&io->scsiio, NULL)->flags & 13884 CTL_CMD_FLAG_NO_SENSE) == 0) { 13885 ctl_set_sense(&io->scsiio, 13886 /*current_error*/ 1, 13887 /*sense_key*/ (mrie == SIEP_MRIE_NO_SENSE) ? 13888 SSD_KEY_NO_SENSE : SSD_KEY_RECOVERED_ERROR, 13889 /*asc*/ lun->ie_asc, 13890 /*ascq*/ lun->ie_ascq, 13891 SSD_ELEM_NONE); 13892 lun->ie_reported = 1; 13893 } 13894 } else if (lun->ie_reported < 0) 13895 lun->ie_reported = 0; 13896 13897 /* 13898 * Check to see if we have any errors to inject here. We only 13899 * inject errors for commands that don't already have errors set. 13900 */ 13901 if (!STAILQ_EMPTY(&lun->error_list) && 13902 ((io->io_hdr.status & CTL_STATUS_MASK) == CTL_SUCCESS) && 13903 ((io->io_hdr.flags & CTL_FLAG_STATUS_SENT) == 0)) 13904 ctl_inject_error(lun, io); 13905 13906 /* 13907 * XXX KDM how do we treat commands that aren't completed 13908 * successfully? 13909 * 13910 * XXX KDM should we also track I/O latency? 13911 */ 13912 if ((io->io_hdr.status & CTL_STATUS_MASK) == CTL_SUCCESS && 13913 (io->io_hdr.io_type == CTL_IO_SCSI || 13914 io->io_hdr.io_type == CTL_IO_NVME || 13915 io->io_hdr.io_type == CTL_IO_NVME_ADMIN)) { 13916 int type; 13917 #ifdef CTL_TIME_IO 13918 struct bintime bt; 13919 13920 getbinuptime(&bt); 13921 bintime_sub(&bt, &io->io_hdr.start_bt); 13922 #endif 13923 if ((io->io_hdr.flags & CTL_FLAG_DATA_MASK) == 13924 CTL_FLAG_DATA_IN) 13925 type = CTL_STATS_READ; 13926 else if ((io->io_hdr.flags & CTL_FLAG_DATA_MASK) == 13927 CTL_FLAG_DATA_OUT) 13928 type = CTL_STATS_WRITE; 13929 else 13930 type = CTL_STATS_NO_IO; 13931 13932 lun->stats.bytes[type] += ctl_kern_total_len(io); 13933 lun->stats.operations[type] ++; 13934 lun->stats.dmas[type] += io->io_hdr.num_dmas; 13935 #ifdef CTL_TIME_IO 13936 bintime_add(&lun->stats.dma_time[type], &io->io_hdr.dma_bt); 13937 bintime_add(&lun->stats.time[type], &bt); 13938 #endif 13939 13940 mtx_lock(&port->port_lock); 13941 port->stats.bytes[type] += ctl_kern_total_len(io); 13942 port->stats.operations[type] ++; 13943 port->stats.dmas[type] += io->io_hdr.num_dmas; 13944 #ifdef CTL_TIME_IO 13945 bintime_add(&port->stats.dma_time[type], &io->io_hdr.dma_bt); 13946 bintime_add(&port->stats.time[type], &bt); 13947 #endif 13948 mtx_unlock(&port->port_lock); 13949 } 13950 13951 /* 13952 * Run through the blocked queue of this I/O and see if anything 13953 * can be unblocked, now that this I/O is done and will be removed. 13954 * We need to do it before removal to have OOA position to start. 13955 */ 13956 ctl_try_unblock_others(lun, io, TRUE); 13957 13958 /* 13959 * Remove this from the OOA queue. 13960 */ 13961 LIST_REMOVE(&io->io_hdr, ooa_links); 13962 #ifdef CTL_TIME_IO 13963 if (LIST_EMPTY(&lun->ooa_queue)) 13964 lun->last_busy = getsbinuptime(); 13965 #endif 13966 13967 /* 13968 * If the LUN has been invalidated, free it if there is nothing 13969 * left on its OOA queue. 13970 */ 13971 if ((lun->flags & CTL_LUN_INVALID) 13972 && LIST_EMPTY(&lun->ooa_queue)) { 13973 mtx_unlock(&lun->lun_lock); 13974 ctl_free_lun(lun); 13975 } else 13976 mtx_unlock(&lun->lun_lock); 13977 13978 bailout: 13979 13980 /* 13981 * If this command has been aborted, make sure we set the status 13982 * properly. The FETD is responsible for freeing the I/O and doing 13983 * whatever it needs to do to clean up its state. 13984 */ 13985 if (io->io_hdr.flags & CTL_FLAG_ABORT) { 13986 switch (io->io_hdr.io_type) { 13987 case CTL_IO_SCSI: 13988 ctl_set_task_aborted(&io->scsiio); 13989 break; 13990 case CTL_IO_NVME: 13991 case CTL_IO_NVME_ADMIN: 13992 ctl_nvme_set_command_aborted(&io->nvmeio); 13993 break; 13994 default: 13995 __assert_unreachable(); 13996 } 13997 } 13998 13999 /* 14000 * If enabled, print command error status. 14001 */ 14002 if ((io->io_hdr.status & CTL_STATUS_MASK) != CTL_SUCCESS && 14003 (ctl_debug & CTL_DEBUG_INFO) != 0) 14004 ctl_io_error_print(io, NULL); 14005 14006 /* 14007 * Tell the FETD or the other shelf controller we're done with this 14008 * command. Note that only SCSI commands get to this point. Task 14009 * management commands are completed above. 14010 */ 14011 if ((softc->ha_mode != CTL_HA_MODE_XFER) && 14012 (io->io_hdr.flags & CTL_FLAG_SENT_2OTHER_SC)) { 14013 memset(&msg, 0, sizeof(msg)); 14014 msg.hdr.msg_type = CTL_MSG_FINISH_IO; 14015 msg.hdr.serializing_sc = io->io_hdr.remote_io; 14016 msg.hdr.nexus = io->io_hdr.nexus; 14017 ctl_ha_msg_send(CTL_HA_CHAN_CTL, &msg, 14018 sizeof(msg.scsi) - sizeof(msg.scsi.sense_data), 14019 M_WAITOK); 14020 } 14021 14022 fe_done(io); 14023 } 14024 14025 /* 14026 * Front end should call this if it doesn't do autosense. When the request 14027 * sense comes back in from the initiator, we'll dequeue this and send it. 14028 */ 14029 int 14030 ctl_queue_sense(union ctl_io *io) 14031 { 14032 struct ctl_softc *softc = CTL_SOFTC(io); 14033 struct ctl_port *port = CTL_PORT(io); 14034 struct ctl_lun *lun; 14035 struct scsi_sense_data *ps; 14036 uint32_t initidx, p, targ_lun; 14037 14038 CTL_DEBUG_PRINT(("ctl_queue_sense\n")); 14039 CTL_IO_ASSERT(io, SCSI); 14040 14041 targ_lun = ctl_lun_map_from_port(port, io->io_hdr.nexus.targ_lun); 14042 14043 /* 14044 * LUN lookup will likely move to the ctl_work_thread() once we 14045 * have our new queueing infrastructure (that doesn't put things on 14046 * a per-LUN queue initially). That is so that we can handle 14047 * things like an INQUIRY to a LUN that we don't have enabled. We 14048 * can't deal with that right now. 14049 * If we don't have a LUN for this, just toss the sense information. 14050 */ 14051 mtx_lock(&softc->ctl_lock); 14052 if (targ_lun >= ctl_max_luns || 14053 (lun = softc->ctl_luns[targ_lun]) == NULL) { 14054 mtx_unlock(&softc->ctl_lock); 14055 goto bailout; 14056 } 14057 mtx_lock(&lun->lun_lock); 14058 mtx_unlock(&softc->ctl_lock); 14059 14060 initidx = ctl_get_initindex(&io->io_hdr.nexus); 14061 p = initidx / CTL_MAX_INIT_PER_PORT; 14062 if (lun->pending_sense[p] == NULL) { 14063 lun->pending_sense[p] = malloc(sizeof(*ps) * CTL_MAX_INIT_PER_PORT, 14064 M_CTL, M_NOWAIT | M_ZERO); 14065 } 14066 if ((ps = lun->pending_sense[p]) != NULL) { 14067 ps += initidx % CTL_MAX_INIT_PER_PORT; 14068 memset(ps, 0, sizeof(*ps)); 14069 memcpy(ps, &io->scsiio.sense_data, io->scsiio.sense_len); 14070 } 14071 mtx_unlock(&lun->lun_lock); 14072 14073 bailout: 14074 ctl_free_io(io); 14075 return (CTL_RETVAL_COMPLETE); 14076 } 14077 14078 /* 14079 * Primary command inlet from frontend ports. All SCSI and task I/O 14080 * requests must go through this function. 14081 */ 14082 int 14083 ctl_queue(union ctl_io *io) 14084 { 14085 struct ctl_port *port = CTL_PORT(io); 14086 14087 switch (io->io_hdr.io_type) { 14088 case CTL_IO_SCSI: 14089 case CTL_IO_TASK: 14090 CTL_DEBUG_PRINT(("ctl_queue cdb[0]=%02X\n", io->scsiio.cdb[0])); 14091 break; 14092 case CTL_IO_NVME: 14093 CTL_DEBUG_PRINT(("ctl_queue nvme nvm cmd=%02X\n", 14094 io->nvmeio.cmd.opc)); 14095 break; 14096 case CTL_IO_NVME_ADMIN: 14097 CTL_DEBUG_PRINT(("ctl_queue nvme admin cmd=%02X\n", 14098 io->nvmeio.cmd.opc)); 14099 break; 14100 default: 14101 break; 14102 } 14103 14104 #ifdef CTL_TIME_IO 14105 io->io_hdr.start_time = time_uptime; 14106 getbinuptime(&io->io_hdr.start_bt); 14107 #endif /* CTL_TIME_IO */ 14108 14109 /* Map FE-specific LUN ID into global one. */ 14110 io->io_hdr.nexus.targ_mapped_lun = 14111 ctl_lun_map_from_port(port, io->io_hdr.nexus.targ_lun); 14112 14113 switch (io->io_hdr.io_type) { 14114 case CTL_IO_SCSI: 14115 case CTL_IO_TASK: 14116 case CTL_IO_NVME: 14117 case CTL_IO_NVME_ADMIN: 14118 if (ctl_debug & CTL_DEBUG_CDB) 14119 ctl_io_print(io); 14120 ctl_enqueue_incoming(io); 14121 break; 14122 default: 14123 printf("ctl_queue: unknown I/O type %d\n", io->io_hdr.io_type); 14124 return (EINVAL); 14125 } 14126 14127 return (CTL_RETVAL_COMPLETE); 14128 } 14129 14130 int 14131 ctl_run(union ctl_io *io) 14132 { 14133 struct ctl_port *port = CTL_PORT(io); 14134 14135 CTL_DEBUG_PRINT(("ctl_run cdb[0]=%02X\n", io->scsiio.cdb[0])); 14136 14137 #ifdef CTL_TIME_IO 14138 io->io_hdr.start_time = time_uptime; 14139 getbinuptime(&io->io_hdr.start_bt); 14140 #endif /* CTL_TIME_IO */ 14141 14142 /* Map FE-specific LUN ID into global one. */ 14143 io->io_hdr.nexus.targ_mapped_lun = 14144 ctl_lun_map_from_port(port, io->io_hdr.nexus.targ_lun); 14145 14146 switch (io->io_hdr.io_type) { 14147 case CTL_IO_SCSI: 14148 if (ctl_debug & CTL_DEBUG_CDB) 14149 ctl_io_print(io); 14150 ctl_scsiio_precheck(&io->scsiio); 14151 break; 14152 case CTL_IO_TASK: 14153 if (ctl_debug & CTL_DEBUG_CDB) 14154 ctl_io_print(io); 14155 ctl_run_task(io); 14156 break; 14157 case CTL_IO_NVME: 14158 case CTL_IO_NVME_ADMIN: 14159 if (ctl_debug & CTL_DEBUG_CDB) 14160 ctl_io_print(io); 14161 ctl_nvmeio_precheck(&io->nvmeio); 14162 break; 14163 default: 14164 printf("ctl_run: unknown I/O type %d\n", io->io_hdr.io_type); 14165 return (EINVAL); 14166 } 14167 14168 return (CTL_RETVAL_COMPLETE); 14169 } 14170 14171 #ifdef CTL_IO_DELAY 14172 static void 14173 ctl_done_timer_wakeup(void *arg) 14174 { 14175 union ctl_io *io; 14176 14177 io = (union ctl_io *)arg; 14178 ctl_done(io); 14179 } 14180 #endif /* CTL_IO_DELAY */ 14181 14182 void 14183 ctl_serseq_done(union ctl_io *io) 14184 { 14185 struct ctl_lun *lun = CTL_LUN(io); 14186 14187 /* This is racy, but should not be a problem. */ 14188 if (!TAILQ_EMPTY(&io->io_hdr.blocked_queue)) { 14189 mtx_lock(&lun->lun_lock); 14190 io->io_hdr.flags |= CTL_FLAG_SERSEQ_DONE; 14191 ctl_try_unblock_others(lun, io, FALSE); 14192 mtx_unlock(&lun->lun_lock); 14193 } else 14194 io->io_hdr.flags |= CTL_FLAG_SERSEQ_DONE; 14195 } 14196 14197 void 14198 ctl_done(union ctl_io *io) 14199 { 14200 14201 /* 14202 * Enable this to catch duplicate completion issues. 14203 */ 14204 #if 0 14205 if (io->io_hdr.flags & CTL_FLAG_ALREADY_DONE) { 14206 switch (io->io_hdr.io_type) { 14207 case CTL_IO_SCSI: 14208 case CTL_IO_TASK: 14209 printf("%s: type %d msg %d cdb %x iptl: " 14210 "%u:%u:%u tag 0x%04lx " 14211 "flag %#x status %x\n", 14212 __func__, 14213 io->io_hdr.io_type, 14214 io->io_hdr.msg_type, 14215 io->scsiio.cdb[0], 14216 io->io_hdr.nexus.initid, 14217 io->io_hdr.nexus.targ_port, 14218 io->io_hdr.nexus.targ_lun, 14219 (io->io_hdr.io_type == CTL_IO_TASK) ? 14220 io->taskio.tag_num : 14221 io->scsiio.tag_num, 14222 io->io_hdr.flags, 14223 io->io_hdr.status); 14224 break; 14225 case CTL_IO_NVME: 14226 case CTL_IO_NVME_ADMIN: 14227 printf("%s: type %d msg %d opc %x iptl: " 14228 "%u:%u:%u cid 0x%04x " 14229 "flag %#x status %x\n", 14230 __func__, 14231 io->io_hdr.io_type, 14232 io->io_hdr.msg_type, 14233 io->nvmeio.cmd.opc, 14234 io->io_hdr.nexus.initid, 14235 io->io_hdr.nexus.targ_port, 14236 io->io_hdr.nexus.targ_lun, 14237 io->nvmeio.cmd.cid, 14238 io->io_hdr.flags, 14239 io->io_hdr.status); 14240 break; 14241 default: 14242 printf("%s: type %d msg %d iptl: " 14243 "%u:%u:%u flag %#x status %x\n", 14244 __func__, 14245 io->io_hdr.io_type, 14246 io->io_hdr.msg_type, 14247 io->io_hdr.nexus.initid, 14248 io->io_hdr.nexus.targ_port, 14249 io->io_hdr.nexus.targ_lun, 14250 io->io_hdr.flags, 14251 io->io_hdr.status); 14252 break; 14253 } 14254 } else 14255 io->io_hdr.flags |= CTL_FLAG_ALREADY_DONE; 14256 #endif 14257 14258 /* 14259 * This is an internal copy of an I/O, and should not go through 14260 * the normal done processing logic. 14261 */ 14262 if (io->io_hdr.flags & CTL_FLAG_INT_COPY) 14263 return; 14264 14265 #ifdef CTL_IO_DELAY 14266 if (io->io_hdr.flags & CTL_FLAG_DELAY_DONE) { 14267 io->io_hdr.flags &= ~CTL_FLAG_DELAY_DONE; 14268 } else { 14269 struct ctl_lun *lun = CTL_LUN(io); 14270 14271 if ((lun != NULL) 14272 && (lun->delay_info.done_delay > 0)) { 14273 callout_init(&io->io_hdr.delay_callout, /*mpsafe*/ 1); 14274 io->io_hdr.flags |= CTL_FLAG_DELAY_DONE; 14275 callout_reset(&io->io_hdr.delay_callout, 14276 lun->delay_info.done_delay * hz, 14277 ctl_done_timer_wakeup, io); 14278 if (lun->delay_info.done_type == CTL_DELAY_TYPE_ONESHOT) 14279 lun->delay_info.done_delay = 0; 14280 return; 14281 } 14282 } 14283 #endif /* CTL_IO_DELAY */ 14284 14285 ctl_enqueue_done(io); 14286 } 14287 14288 static void 14289 ctl_work_thread(void *arg) 14290 { 14291 struct ctl_thread *thr = (struct ctl_thread *)arg; 14292 struct ctl_softc *softc = thr->ctl_softc; 14293 union ctl_io *io; 14294 int retval; 14295 14296 CTL_DEBUG_PRINT(("ctl_work_thread starting\n")); 14297 thread_lock(curthread); 14298 sched_prio(curthread, PUSER - 1); 14299 thread_unlock(curthread); 14300 14301 while (!softc->shutdown) { 14302 /* 14303 * We handle the queues in this order: 14304 * - ISC 14305 * - done queue (to free up resources, unblock other commands) 14306 * - incoming queue 14307 * - RtR queue 14308 * 14309 * If those queues are empty, we break out of the loop and 14310 * go to sleep. 14311 */ 14312 mtx_lock(&thr->queue_lock); 14313 io = (union ctl_io *)STAILQ_FIRST(&thr->isc_queue); 14314 if (io != NULL) { 14315 STAILQ_REMOVE_HEAD(&thr->isc_queue, links); 14316 mtx_unlock(&thr->queue_lock); 14317 ctl_handle_isc(io); 14318 continue; 14319 } 14320 io = (union ctl_io *)STAILQ_FIRST(&thr->done_queue); 14321 if (io != NULL) { 14322 STAILQ_REMOVE_HEAD(&thr->done_queue, links); 14323 /* clear any blocked commands, call fe_done */ 14324 mtx_unlock(&thr->queue_lock); 14325 ctl_process_done(io); 14326 continue; 14327 } 14328 io = (union ctl_io *)STAILQ_FIRST(&thr->incoming_queue); 14329 if (io != NULL) { 14330 STAILQ_REMOVE_HEAD(&thr->incoming_queue, links); 14331 mtx_unlock(&thr->queue_lock); 14332 switch (io->io_hdr.io_type) { 14333 case CTL_IO_TASK: 14334 ctl_run_task(io); 14335 break; 14336 case CTL_IO_SCSI: 14337 ctl_scsiio_precheck(&io->scsiio); 14338 break; 14339 case CTL_IO_NVME: 14340 case CTL_IO_NVME_ADMIN: 14341 ctl_nvmeio_precheck(&io->nvmeio); 14342 break; 14343 default: 14344 __assert_unreachable(); 14345 } 14346 continue; 14347 } 14348 io = (union ctl_io *)STAILQ_FIRST(&thr->rtr_queue); 14349 if (io != NULL) { 14350 STAILQ_REMOVE_HEAD(&thr->rtr_queue, links); 14351 mtx_unlock(&thr->queue_lock); 14352 switch (io->io_hdr.io_type) { 14353 case CTL_IO_SCSI: 14354 retval = ctl_scsiio(&io->scsiio); 14355 if (retval != CTL_RETVAL_COMPLETE) 14356 CTL_DEBUG_PRINT(("ctl_scsiio failed\n")); 14357 break; 14358 case CTL_IO_NVME: 14359 case CTL_IO_NVME_ADMIN: 14360 retval = ctl_nvmeio(&io->nvmeio); 14361 if (retval != CTL_RETVAL_COMPLETE) 14362 CTL_DEBUG_PRINT(("ctl_nvmeio failed\n")); 14363 break; 14364 default: 14365 __assert_unreachable(); 14366 } 14367 continue; 14368 } 14369 14370 /* Sleep until we have something to do. */ 14371 mtx_sleep(thr, &thr->queue_lock, PDROP, "-", 0); 14372 } 14373 thr->thread = NULL; 14374 kthread_exit(); 14375 } 14376 14377 static void 14378 ctl_thresh_thread(void *arg) 14379 { 14380 struct ctl_softc *softc = (struct ctl_softc *)arg; 14381 struct ctl_lun *lun; 14382 struct ctl_logical_block_provisioning_page *page; 14383 const char *attr; 14384 union ctl_ha_msg msg; 14385 uint64_t thres, val; 14386 int i, e, set; 14387 14388 CTL_DEBUG_PRINT(("ctl_thresh_thread starting\n")); 14389 thread_lock(curthread); 14390 sched_prio(curthread, PUSER - 1); 14391 thread_unlock(curthread); 14392 14393 while (!softc->shutdown) { 14394 mtx_lock(&softc->ctl_lock); 14395 STAILQ_FOREACH(lun, &softc->lun_list, links) { 14396 if ((lun->flags & CTL_LUN_DISABLED) || 14397 (lun->flags & CTL_LUN_NO_MEDIA) || 14398 lun->backend->lun_attr == NULL) 14399 continue; 14400 if ((lun->flags & CTL_LUN_PRIMARY_SC) == 0 && 14401 softc->ha_mode == CTL_HA_MODE_XFER) 14402 continue; 14403 if ((lun->MODE_RWER.byte8 & SMS_RWER_LBPERE) == 0) 14404 continue; 14405 e = 0; 14406 page = &lun->MODE_LBP; 14407 for (i = 0; i < CTL_NUM_LBP_THRESH; i++) { 14408 if ((page->descr[i].flags & SLBPPD_ENABLED) == 0) 14409 continue; 14410 thres = scsi_4btoul(page->descr[i].count); 14411 thres <<= CTL_LBP_EXPONENT; 14412 switch (page->descr[i].resource) { 14413 case 0x01: 14414 attr = "blocksavail"; 14415 break; 14416 case 0x02: 14417 attr = "blocksused"; 14418 break; 14419 case 0xf1: 14420 attr = "poolblocksavail"; 14421 break; 14422 case 0xf2: 14423 attr = "poolblocksused"; 14424 break; 14425 default: 14426 continue; 14427 } 14428 mtx_unlock(&softc->ctl_lock); // XXX 14429 val = lun->backend->lun_attr(lun->be_lun, attr); 14430 mtx_lock(&softc->ctl_lock); 14431 if (val == UINT64_MAX) 14432 continue; 14433 if ((page->descr[i].flags & SLBPPD_ARMING_MASK) 14434 == SLBPPD_ARMING_INC) 14435 e = (val >= thres); 14436 else 14437 e = (val <= thres); 14438 if (e) 14439 break; 14440 } 14441 mtx_lock(&lun->lun_lock); 14442 if (e) { 14443 scsi_u64to8b((uint8_t *)&page->descr[i] - 14444 (uint8_t *)page, lun->ua_tpt_info); 14445 if (lun->lasttpt == 0 || 14446 time_uptime - lun->lasttpt >= CTL_LBP_UA_PERIOD) { 14447 lun->lasttpt = time_uptime; 14448 ctl_est_ua_all(lun, -1, CTL_UA_THIN_PROV_THRES); 14449 set = 1; 14450 } else 14451 set = 0; 14452 } else { 14453 lun->lasttpt = 0; 14454 ctl_clr_ua_all(lun, -1, CTL_UA_THIN_PROV_THRES); 14455 set = -1; 14456 } 14457 mtx_unlock(&lun->lun_lock); 14458 if (set != 0 && 14459 lun->ctl_softc->ha_mode == CTL_HA_MODE_XFER) { 14460 /* Send msg to other side. */ 14461 bzero(&msg.ua, sizeof(msg.ua)); 14462 msg.hdr.msg_type = CTL_MSG_UA; 14463 msg.hdr.nexus.initid = -1; 14464 msg.hdr.nexus.targ_port = -1; 14465 msg.hdr.nexus.targ_lun = lun->lun; 14466 msg.hdr.nexus.targ_mapped_lun = lun->lun; 14467 msg.ua.ua_all = 1; 14468 msg.ua.ua_set = (set > 0); 14469 msg.ua.ua_type = CTL_UA_THIN_PROV_THRES; 14470 memcpy(msg.ua.ua_info, lun->ua_tpt_info, 8); 14471 mtx_unlock(&softc->ctl_lock); // XXX 14472 ctl_ha_msg_send(CTL_HA_CHAN_CTL, &msg, 14473 sizeof(msg.ua), M_WAITOK); 14474 mtx_lock(&softc->ctl_lock); 14475 } 14476 } 14477 mtx_sleep(&softc->thresh_thread, &softc->ctl_lock, 14478 PDROP, "-", CTL_LBP_PERIOD * hz); 14479 } 14480 softc->thresh_thread = NULL; 14481 kthread_exit(); 14482 } 14483 14484 static void 14485 ctl_enqueue_incoming(union ctl_io *io) 14486 { 14487 struct ctl_softc *softc = CTL_SOFTC(io); 14488 struct ctl_thread *thr; 14489 u_int idx; 14490 14491 idx = (io->io_hdr.nexus.targ_port * 127 + 14492 io->io_hdr.nexus.initid) % worker_threads; 14493 thr = &softc->threads[idx]; 14494 mtx_lock(&thr->queue_lock); 14495 STAILQ_INSERT_TAIL(&thr->incoming_queue, &io->io_hdr, links); 14496 mtx_unlock(&thr->queue_lock); 14497 wakeup(thr); 14498 } 14499 14500 static void 14501 ctl_enqueue_rtr(union ctl_io *io) 14502 { 14503 struct ctl_softc *softc = CTL_SOFTC(io); 14504 struct ctl_thread *thr; 14505 14506 thr = &softc->threads[io->io_hdr.nexus.targ_mapped_lun % worker_threads]; 14507 mtx_lock(&thr->queue_lock); 14508 STAILQ_INSERT_TAIL(&thr->rtr_queue, &io->io_hdr, links); 14509 mtx_unlock(&thr->queue_lock); 14510 wakeup(thr); 14511 } 14512 14513 static void 14514 ctl_enqueue_done(union ctl_io *io) 14515 { 14516 struct ctl_softc *softc = CTL_SOFTC(io); 14517 struct ctl_thread *thr; 14518 14519 thr = &softc->threads[io->io_hdr.nexus.targ_mapped_lun % worker_threads]; 14520 mtx_lock(&thr->queue_lock); 14521 STAILQ_INSERT_TAIL(&thr->done_queue, &io->io_hdr, links); 14522 mtx_unlock(&thr->queue_lock); 14523 wakeup(thr); 14524 } 14525 14526 static void 14527 ctl_enqueue_isc(union ctl_io *io) 14528 { 14529 struct ctl_softc *softc = CTL_SOFTC(io); 14530 struct ctl_thread *thr; 14531 14532 thr = &softc->threads[io->io_hdr.nexus.targ_mapped_lun % worker_threads]; 14533 mtx_lock(&thr->queue_lock); 14534 STAILQ_INSERT_TAIL(&thr->isc_queue, &io->io_hdr, links); 14535 mtx_unlock(&thr->queue_lock); 14536 wakeup(thr); 14537 } 14538 14539 /* 14540 * vim: ts=8 14541 */ 14542