xref: /freebsd/sys/cam/scsi/scsi_pass.c (revision f0a75d274af375d15b97b830966b99a02b7db911)
1 /*-
2  * Copyright (c) 1997, 1998, 2000 Justin T. Gibbs.
3  * Copyright (c) 1997, 1998, 1999 Kenneth D. Merry.
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions, and the following disclaimer,
11  *    without modification, immediately at the beginning of the file.
12  * 2. The name of the author may not be used to endorse or promote products
13  *    derived from this software without specific prior written permission.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
19  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25  * SUCH DAMAGE.
26  */
27 
28 #include <sys/cdefs.h>
29 __FBSDID("$FreeBSD$");
30 
31 #include <sys/param.h>
32 #include <sys/systm.h>
33 #include <sys/kernel.h>
34 #include <sys/types.h>
35 #include <sys/bio.h>
36 #include <sys/malloc.h>
37 #include <sys/fcntl.h>
38 #include <sys/conf.h>
39 #include <sys/errno.h>
40 #include <sys/devicestat.h>
41 #include <sys/proc.h>
42 
43 #include <cam/cam.h>
44 #include <cam/cam_ccb.h>
45 #include <cam/cam_periph.h>
46 #include <cam/cam_queue.h>
47 #include <cam/cam_xpt_periph.h>
48 #include <cam/cam_debug.h>
49 
50 #include <cam/scsi/scsi_all.h>
51 #include <cam/scsi/scsi_pass.h>
52 
53 typedef enum {
54 	PASS_FLAG_OPEN			= 0x01,
55 	PASS_FLAG_LOCKED		= 0x02,
56 	PASS_FLAG_INVALID		= 0x04
57 } pass_flags;
58 
59 typedef enum {
60 	PASS_STATE_NORMAL
61 } pass_state;
62 
63 typedef enum {
64 	PASS_CCB_BUFFER_IO,
65 	PASS_CCB_WAITING
66 } pass_ccb_types;
67 
68 #define ccb_type	ppriv_field0
69 #define ccb_bp		ppriv_ptr1
70 
71 struct pass_softc {
72 	pass_state		state;
73 	pass_flags		flags;
74 	u_int8_t		pd_type;
75 	union ccb		saved_ccb;
76 	struct devstat		*device_stats;
77 	struct cdev *dev;
78 };
79 
80 
81 static	d_open_t	passopen;
82 static	d_close_t	passclose;
83 static	d_ioctl_t	passioctl;
84 
85 static	periph_init_t	passinit;
86 static	periph_ctor_t	passregister;
87 static	periph_oninv_t	passoninvalidate;
88 static	periph_dtor_t	passcleanup;
89 static	periph_start_t	passstart;
90 static	void		passasync(void *callback_arg, u_int32_t code,
91 				  struct cam_path *path, void *arg);
92 static	void		passdone(struct cam_periph *periph,
93 				 union ccb *done_ccb);
94 static	int		passerror(union ccb *ccb, u_int32_t cam_flags,
95 				  u_int32_t sense_flags);
96 static 	int		passsendccb(struct cam_periph *periph, union ccb *ccb,
97 				    union ccb *inccb);
98 
99 static struct periph_driver passdriver =
100 {
101 	passinit, "pass",
102 	TAILQ_HEAD_INITIALIZER(passdriver.units), /* generation */ 0
103 };
104 
105 PERIPHDRIVER_DECLARE(pass, passdriver);
106 
107 static struct cdevsw pass_cdevsw = {
108 	.d_version =	D_VERSION,
109 	.d_flags =	D_NEEDGIANT,
110 	.d_open =	passopen,
111 	.d_close =	passclose,
112 	.d_ioctl =	passioctl,
113 	.d_name =	"pass",
114 };
115 
116 static void
117 passinit(void)
118 {
119 	cam_status status;
120 	struct cam_path *path;
121 
122 	/*
123 	 * Install a global async callback.  This callback will
124 	 * receive async callbacks like "new device found".
125 	 */
126 	status = xpt_create_path(&path, /*periph*/NULL, CAM_XPT_PATH_ID,
127 				 CAM_TARGET_WILDCARD, CAM_LUN_WILDCARD);
128 
129 	if (status == CAM_REQ_CMP) {
130 		struct ccb_setasync csa;
131 
132                 xpt_setup_ccb(&csa.ccb_h, path, /*priority*/5);
133                 csa.ccb_h.func_code = XPT_SASYNC_CB;
134                 csa.event_enable = AC_FOUND_DEVICE;
135                 csa.callback = passasync;
136                 csa.callback_arg = NULL;
137                 xpt_action((union ccb *)&csa);
138 		status = csa.ccb_h.status;
139                 xpt_free_path(path);
140         }
141 
142 	if (status != CAM_REQ_CMP) {
143 		printf("pass: Failed to attach master async callback "
144 		       "due to status 0x%x!\n", status);
145 	}
146 
147 }
148 
149 static void
150 passoninvalidate(struct cam_periph *periph)
151 {
152 	struct pass_softc *softc;
153 	struct ccb_setasync csa;
154 
155 	softc = (struct pass_softc *)periph->softc;
156 
157 	/*
158 	 * De-register any async callbacks.
159 	 */
160 	xpt_setup_ccb(&csa.ccb_h, periph->path,
161 		      /* priority */ 5);
162 	csa.ccb_h.func_code = XPT_SASYNC_CB;
163 	csa.event_enable = 0;
164 	csa.callback = passasync;
165 	csa.callback_arg = periph;
166 	xpt_action((union ccb *)&csa);
167 
168 	softc->flags |= PASS_FLAG_INVALID;
169 
170 	/*
171 	 * XXX Return all queued I/O with ENXIO.
172 	 * XXX Handle any transactions queued to the card
173 	 *     with XPT_ABORT_CCB.
174 	 */
175 
176 	if (bootverbose) {
177 		xpt_print(periph->path, "lost device\n");
178 	}
179 
180 }
181 
182 static void
183 passcleanup(struct cam_periph *periph)
184 {
185 	struct pass_softc *softc;
186 
187 	softc = (struct pass_softc *)periph->softc;
188 
189 	devstat_remove_entry(softc->device_stats);
190 
191 	destroy_dev(softc->dev);
192 
193 	if (bootverbose) {
194 		xpt_print(periph->path, "removing device entry\n");
195 	}
196 	free(softc, M_DEVBUF);
197 }
198 
199 static void
200 passasync(void *callback_arg, u_int32_t code,
201 	  struct cam_path *path, void *arg)
202 {
203 	struct cam_periph *periph;
204 
205 	periph = (struct cam_periph *)callback_arg;
206 
207 	switch (code) {
208 	case AC_FOUND_DEVICE:
209 	{
210 		struct ccb_getdev *cgd;
211 		cam_status status;
212 
213 		cgd = (struct ccb_getdev *)arg;
214 		if (cgd == NULL)
215 			break;
216 
217 		/*
218 		 * Allocate a peripheral instance for
219 		 * this device and start the probe
220 		 * process.
221 		 */
222 		status = cam_periph_alloc(passregister, passoninvalidate,
223 					  passcleanup, passstart, "pass",
224 					  CAM_PERIPH_BIO, cgd->ccb_h.path,
225 					  passasync, AC_FOUND_DEVICE, cgd);
226 
227 		if (status != CAM_REQ_CMP
228 		 && status != CAM_REQ_INPROG) {
229 			const struct cam_status_entry *entry;
230 
231 			entry = cam_fetch_status_entry(status);
232 
233 			printf("passasync: Unable to attach new device "
234 			       "due to status %#x: %s\n", status, entry ?
235 			       entry->status_text : "Unknown");
236 		}
237 
238 		break;
239 	}
240 	default:
241 		cam_periph_async(periph, code, path, arg);
242 		break;
243 	}
244 }
245 
246 static cam_status
247 passregister(struct cam_periph *periph, void *arg)
248 {
249 	struct pass_softc *softc;
250 	struct ccb_setasync csa;
251 	struct ccb_getdev *cgd;
252 	int    no_tags;
253 
254 	cgd = (struct ccb_getdev *)arg;
255 	if (periph == NULL) {
256 		printf("passregister: periph was NULL!!\n");
257 		return(CAM_REQ_CMP_ERR);
258 	}
259 
260 	if (cgd == NULL) {
261 		printf("passregister: no getdev CCB, can't register device\n");
262 		return(CAM_REQ_CMP_ERR);
263 	}
264 
265 	softc = (struct pass_softc *)malloc(sizeof(*softc),
266 					    M_DEVBUF, M_NOWAIT);
267 
268 	if (softc == NULL) {
269 		printf("passregister: Unable to probe new device. "
270 		       "Unable to allocate softc\n");
271 		return(CAM_REQ_CMP_ERR);
272 	}
273 
274 	bzero(softc, sizeof(*softc));
275 	softc->state = PASS_STATE_NORMAL;
276 	softc->pd_type = SID_TYPE(&cgd->inq_data);
277 
278 	periph->softc = softc;
279 
280 	/*
281 	 * We pass in 0 for a blocksize, since we don't
282 	 * know what the blocksize of this device is, if
283 	 * it even has a blocksize.
284 	 */
285 	no_tags = (cgd->inq_data.flags & SID_CmdQue) == 0;
286 	softc->device_stats = devstat_new_entry("pass",
287 			  unit2minor(periph->unit_number), 0,
288 			  DEVSTAT_NO_BLOCKSIZE
289 			  | (no_tags ? DEVSTAT_NO_ORDERED_TAGS : 0),
290 			  softc->pd_type |
291 			  DEVSTAT_TYPE_IF_SCSI |
292 			  DEVSTAT_TYPE_PASS,
293 			  DEVSTAT_PRIORITY_PASS);
294 
295 	/* Register the device */
296 	softc->dev = make_dev(&pass_cdevsw, unit2minor(periph->unit_number),
297 			      UID_ROOT, GID_OPERATOR, 0600, "%s%d",
298 			      periph->periph_name, periph->unit_number);
299 	softc->dev->si_drv1 = periph;
300 
301 	/*
302 	 * Add an async callback so that we get
303 	 * notified if this device goes away.
304 	 */
305 	xpt_setup_ccb(&csa.ccb_h, periph->path, /* priority */ 5);
306 	csa.ccb_h.func_code = XPT_SASYNC_CB;
307 	csa.event_enable = AC_LOST_DEVICE;
308 	csa.callback = passasync;
309 	csa.callback_arg = periph;
310 	xpt_action((union ccb *)&csa);
311 
312 	if (bootverbose)
313 		xpt_announce_periph(periph, NULL);
314 
315 	return(CAM_REQ_CMP);
316 }
317 
318 static int
319 passopen(struct cdev *dev, int flags, int fmt, struct thread *td)
320 {
321 	struct cam_periph *periph;
322 	struct pass_softc *softc;
323 	int error;
324 	int s;
325 
326 	error = 0; /* default to no error */
327 
328 	periph = (struct cam_periph *)dev->si_drv1;
329 	if (periph == NULL)
330 		return (ENXIO);
331 
332 	softc = (struct pass_softc *)periph->softc;
333 
334 	s = splsoftcam();
335 	if (softc->flags & PASS_FLAG_INVALID) {
336 		splx(s);
337 		return(ENXIO);
338 	}
339 
340 	/*
341 	 * Don't allow access when we're running at a high securelevel.
342 	 */
343 	error = securelevel_gt(td->td_ucred, 1);
344 	if (error) {
345 		splx(s);
346 		return(error);
347 	}
348 
349 	/*
350 	 * Only allow read-write access.
351 	 */
352 	if (((flags & FWRITE) == 0) || ((flags & FREAD) == 0)) {
353 		splx(s);
354 		return(EPERM);
355 	}
356 
357 	/*
358 	 * We don't allow nonblocking access.
359 	 */
360 	if ((flags & O_NONBLOCK) != 0) {
361 		xpt_print(periph->path, "can't do nonblocking access\n");
362 		splx(s);
363 		return(EINVAL);
364 	}
365 
366 	if ((error = cam_periph_lock(periph, PRIBIO | PCATCH)) != 0) {
367 		splx(s);
368 		return (error);
369 	}
370 
371 	splx(s);
372 
373 	if ((softc->flags & PASS_FLAG_OPEN) == 0) {
374 		if (cam_periph_acquire(periph) != CAM_REQ_CMP)
375 			return(ENXIO);
376 		softc->flags |= PASS_FLAG_OPEN;
377 	}
378 
379 	cam_periph_unlock(periph);
380 
381 	return (error);
382 }
383 
384 static int
385 passclose(struct cdev *dev, int flag, int fmt, struct thread *td)
386 {
387 	struct 	cam_periph *periph;
388 	struct	pass_softc *softc;
389 	int	error;
390 
391 	periph = (struct cam_periph *)dev->si_drv1;
392 	if (periph == NULL)
393 		return (ENXIO);
394 
395 	softc = (struct pass_softc *)periph->softc;
396 
397 	if ((error = cam_periph_lock(periph, PRIBIO)) != 0)
398 		return (error);
399 
400 	softc->flags &= ~PASS_FLAG_OPEN;
401 
402 	cam_periph_unlock(periph);
403 	cam_periph_release(periph);
404 
405 	return (0);
406 }
407 
408 static void
409 passstart(struct cam_periph *periph, union ccb *start_ccb)
410 {
411 	struct pass_softc *softc;
412 	int s;
413 
414 	softc = (struct pass_softc *)periph->softc;
415 
416 	switch (softc->state) {
417 	case PASS_STATE_NORMAL:
418 		s = splbio();
419 		start_ccb->ccb_h.ccb_type = PASS_CCB_WAITING;
420 		SLIST_INSERT_HEAD(&periph->ccb_list, &start_ccb->ccb_h,
421 				  periph_links.sle);
422 		periph->immediate_priority = CAM_PRIORITY_NONE;
423 		splx(s);
424 		wakeup(&periph->ccb_list);
425 		break;
426 	}
427 }
428 
429 static void
430 passdone(struct cam_periph *periph, union ccb *done_ccb)
431 {
432 	struct pass_softc *softc;
433 	struct ccb_scsiio *csio;
434 
435 	softc = (struct pass_softc *)periph->softc;
436 	csio = &done_ccb->csio;
437 	switch (csio->ccb_h.ccb_type) {
438 	case PASS_CCB_WAITING:
439 		/* Caller will release the CCB */
440 		wakeup(&done_ccb->ccb_h.cbfcnp);
441 		return;
442 	}
443 	xpt_release_ccb(done_ccb);
444 }
445 
446 static int
447 passioctl(struct cdev *dev, u_long cmd, caddr_t addr, int flag, struct thread *td)
448 {
449 	struct	cam_periph *periph;
450 	struct	pass_softc *softc;
451 	int	error;
452 
453 	periph = (struct cam_periph *)dev->si_drv1;
454 	if (periph == NULL)
455 		return(ENXIO);
456 
457 	softc = (struct pass_softc *)periph->softc;
458 
459 	error = 0;
460 
461 	switch (cmd) {
462 
463 	case CAMIOCOMMAND:
464 	{
465 		union ccb *inccb;
466 		union ccb *ccb;
467 		int ccb_malloced;
468 
469 		inccb = (union ccb *)addr;
470 
471 		/*
472 		 * Some CCB types, like scan bus and scan lun can only go
473 		 * through the transport layer device.
474 		 */
475 		if (inccb->ccb_h.func_code & XPT_FC_XPT_ONLY) {
476 			xpt_print(periph->path, "CCB function code %#x is "
477 			    "restricted to the XPT device\n",
478 			    inccb->ccb_h.func_code);
479 			error = ENODEV;
480 			break;
481 		}
482 
483 		/*
484 		 * Non-immediate CCBs need a CCB from the per-device pool
485 		 * of CCBs, which is scheduled by the transport layer.
486 		 * Immediate CCBs and user-supplied CCBs should just be
487 		 * malloced.
488 		 */
489 		if ((inccb->ccb_h.func_code & XPT_FC_QUEUED)
490 		 && ((inccb->ccb_h.func_code & XPT_FC_USER_CCB) == 0)) {
491 			ccb = cam_periph_getccb(periph,
492 						inccb->ccb_h.pinfo.priority);
493 			ccb_malloced = 0;
494 		} else {
495 			ccb = xpt_alloc_ccb();
496 
497 			if (ccb != NULL)
498 				xpt_setup_ccb(&ccb->ccb_h, periph->path,
499 					      inccb->ccb_h.pinfo.priority);
500 			ccb_malloced = 1;
501 		}
502 
503 		if (ccb == NULL) {
504 			xpt_print(periph->path, "unable to allocate CCB\n");
505 			error = ENOMEM;
506 			break;
507 		}
508 
509 		error = passsendccb(periph, ccb, inccb);
510 
511 		if (ccb_malloced)
512 			xpt_free_ccb(ccb);
513 		else
514 			xpt_release_ccb(ccb);
515 
516 		break;
517 	}
518 	default:
519 		error = cam_periph_ioctl(periph, cmd, addr, passerror);
520 		break;
521 	}
522 
523 	return(error);
524 }
525 
526 /*
527  * Generally, "ccb" should be the CCB supplied by the kernel.  "inccb"
528  * should be the CCB that is copied in from the user.
529  */
530 static int
531 passsendccb(struct cam_periph *periph, union ccb *ccb, union ccb *inccb)
532 {
533 	struct pass_softc *softc;
534 	struct cam_periph_map_info mapinfo;
535 	int error, need_unmap;
536 
537 	softc = (struct pass_softc *)periph->softc;
538 
539 	need_unmap = 0;
540 
541 	/*
542 	 * There are some fields in the CCB header that need to be
543 	 * preserved, the rest we get from the user.
544 	 */
545 	xpt_merge_ccb(ccb, inccb);
546 
547 	/*
548 	 * There's no way for the user to have a completion
549 	 * function, so we put our own completion function in here.
550 	 */
551 	ccb->ccb_h.cbfcnp = passdone;
552 
553 	/*
554 	 * We only attempt to map the user memory into kernel space
555 	 * if they haven't passed in a physical memory pointer,
556 	 * and if there is actually an I/O operation to perform.
557 	 * Right now cam_periph_mapmem() only supports SCSI and device
558 	 * match CCBs.  For the SCSI CCBs, we only pass the CCB in if
559 	 * there's actually data to map.  cam_periph_mapmem() will do the
560 	 * right thing, even if there isn't data to map, but since CCBs
561 	 * without data are a reasonably common occurance (e.g. test unit
562 	 * ready), it will save a few cycles if we check for it here.
563 	 */
564 	if (((ccb->ccb_h.flags & CAM_DATA_PHYS) == 0)
565 	 && (((ccb->ccb_h.func_code == XPT_SCSI_IO)
566 	    && ((ccb->ccb_h.flags & CAM_DIR_MASK) != CAM_DIR_NONE))
567 	  || (ccb->ccb_h.func_code == XPT_DEV_MATCH))) {
568 
569 		bzero(&mapinfo, sizeof(mapinfo));
570 
571 		error = cam_periph_mapmem(ccb, &mapinfo);
572 
573 		/*
574 		 * cam_periph_mapmem returned an error, we can't continue.
575 		 * Return the error to the user.
576 		 */
577 		if (error)
578 			return(error);
579 
580 		/*
581 		 * We successfully mapped the memory in, so we need to
582 		 * unmap it when the transaction is done.
583 		 */
584 		need_unmap = 1;
585 	}
586 
587 	/*
588 	 * If the user wants us to perform any error recovery, then honor
589 	 * that request.  Otherwise, it's up to the user to perform any
590 	 * error recovery.
591 	 */
592 	error = cam_periph_runccb(ccb,
593 				  (ccb->ccb_h.flags & CAM_PASS_ERR_RECOVER) ?
594 				  passerror : NULL,
595 				  /* cam_flags */ CAM_RETRY_SELTO,
596 				  /* sense_flags */SF_RETRY_UA,
597 				  softc->device_stats);
598 
599 	if (need_unmap != 0)
600 		cam_periph_unmapmem(ccb, &mapinfo);
601 
602 	ccb->ccb_h.cbfcnp = NULL;
603 	ccb->ccb_h.periph_priv = inccb->ccb_h.periph_priv;
604 	bcopy(ccb, inccb, sizeof(union ccb));
605 
606 	return(error);
607 }
608 
609 static int
610 passerror(union ccb *ccb, u_int32_t cam_flags, u_int32_t sense_flags)
611 {
612 	struct cam_periph *periph;
613 	struct pass_softc *softc;
614 
615 	periph = xpt_path_periph(ccb->ccb_h.path);
616 	softc = (struct pass_softc *)periph->softc;
617 
618 	return(cam_periph_error(ccb, cam_flags, sense_flags,
619 				 &softc->saved_ccb));
620 }
621