1 /*
2  *  History:
3  *  Started: Aug 9 by Lawrence Foard (entropy@world.std.com),
4  *           to allow user process control of SCSI devices.
5  *  Development Sponsored by Killy Corp. NY NY
6  *
7  * Original driver (sg.c):
8  *        Copyright (C) 1992 Lawrence Foard
9  * Version 2 and 3 extensions to driver:
10  *        Copyright (C) 1998 - 2014 Douglas Gilbert
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2, or (at your option)
15  * any later version.
16  *
17  */
18 
19 static int sg_version_num = 30536;	/* 2 digits for each component */
20 #define SG_VERSION_STR "3.5.36"
21 
22 /*
23  *  D. P. Gilbert (dgilbert@interlog.com), notes:
24  *      - scsi logging is available via SCSI_LOG_TIMEOUT macros. First
25  *        the kernel/module needs to be built with CONFIG_SCSI_LOGGING
26  *        (otherwise the macros compile to empty statements).
27  *
28  */
29 #include <linux/module.h>
30 
31 #include <linux/fs.h>
32 #include <linux/kernel.h>
33 #include <linux/sched.h>
34 #include <linux/string.h>
35 #include <linux/mm.h>
36 #include <linux/errno.h>
37 #include <linux/mtio.h>
38 #include <linux/ioctl.h>
39 #include <linux/slab.h>
40 #include <linux/fcntl.h>
41 #include <linux/init.h>
42 #include <linux/poll.h>
43 #include <linux/moduleparam.h>
44 #include <linux/cdev.h>
45 #include <linux/idr.h>
46 #include <linux/seq_file.h>
47 #include <linux/blkdev.h>
48 #include <linux/delay.h>
49 #include <linux/blktrace_api.h>
50 #include <linux/mutex.h>
51 #include <linux/atomic.h>
52 #include <linux/ratelimit.h>
53 #include <linux/uio.h>
54 
55 #include "scsi.h"
56 #include <scsi/scsi_dbg.h>
57 #include <scsi/scsi_host.h>
58 #include <scsi/scsi_driver.h>
59 #include <scsi/scsi_ioctl.h>
60 #include <scsi/sg.h>
61 
62 #include "scsi_logging.h"
63 
64 #ifdef CONFIG_SCSI_PROC_FS
65 #include <linux/proc_fs.h>
66 static char *sg_version_date = "20140603";
67 
68 static int sg_proc_init(void);
69 static void sg_proc_cleanup(void);
70 #endif
71 
72 #define SG_ALLOW_DIO_DEF 0
73 
74 #define SG_MAX_DEVS 32768
75 
76 /* SG_MAX_CDB_SIZE should be 260 (spc4r37 section 3.1.30) however the type
77  * of sg_io_hdr::cmd_len can only represent 255. All SCSI commands greater
78  * than 16 bytes are "variable length" whose length is a multiple of 4
79  */
80 #define SG_MAX_CDB_SIZE 252
81 
82 /*
83  * Suppose you want to calculate the formula muldiv(x,m,d)=int(x * m / d)
84  * Then when using 32 bit integers x * m may overflow during the calculation.
85  * Replacing muldiv(x) by muldiv(x)=((x % d) * m) / d + int(x / d) * m
86  * calculates the same, but prevents the overflow when both m and d
87  * are "small" numbers (like HZ and USER_HZ).
88  * Of course an overflow is inavoidable if the result of muldiv doesn't fit
89  * in 32 bits.
90  */
91 #define MULDIV(X,MUL,DIV) ((((X % DIV) * MUL) / DIV) + ((X / DIV) * MUL))
92 
93 #define SG_DEFAULT_TIMEOUT MULDIV(SG_DEFAULT_TIMEOUT_USER, HZ, USER_HZ)
94 
95 int sg_big_buff = SG_DEF_RESERVED_SIZE;
96 /* N.B. This variable is readable and writeable via
97    /proc/scsi/sg/def_reserved_size . Each time sg_open() is called a buffer
98    of this size (or less if there is not enough memory) will be reserved
99    for use by this file descriptor. [Deprecated usage: this variable is also
100    readable via /proc/sys/kernel/sg-big-buff if the sg driver is built into
101    the kernel (i.e. it is not a module).] */
102 static int def_reserved_size = -1;	/* picks up init parameter */
103 static int sg_allow_dio = SG_ALLOW_DIO_DEF;
104 
105 static int scatter_elem_sz = SG_SCATTER_SZ;
106 static int scatter_elem_sz_prev = SG_SCATTER_SZ;
107 
108 #define SG_SECTOR_SZ 512
109 
110 static int sg_add_device(struct device *, struct class_interface *);
111 static void sg_remove_device(struct device *, struct class_interface *);
112 
113 static DEFINE_IDR(sg_index_idr);
114 static DEFINE_RWLOCK(sg_index_lock);	/* Also used to lock
115 							   file descriptor list for device */
116 
117 static struct class_interface sg_interface = {
118 	.add_dev        = sg_add_device,
119 	.remove_dev     = sg_remove_device,
120 };
121 
122 typedef struct sg_scatter_hold { /* holding area for scsi scatter gather info */
123 	unsigned short k_use_sg; /* Count of kernel scatter-gather pieces */
124 	unsigned sglist_len; /* size of malloc'd scatter-gather list ++ */
125 	unsigned bufflen;	/* Size of (aggregate) data buffer */
126 	struct page **pages;
127 	int page_order;
128 	char dio_in_use;	/* 0->indirect IO (or mmap), 1->dio */
129 	unsigned char cmd_opcode; /* first byte of command */
130 } Sg_scatter_hold;
131 
132 struct sg_device;		/* forward declarations */
133 struct sg_fd;
134 
135 typedef struct sg_request {	/* SG_MAX_QUEUE requests outstanding per file */
136 	struct sg_request *nextrp;	/* NULL -> tail request (slist) */
137 	struct sg_fd *parentfp;	/* NULL -> not in use */
138 	Sg_scatter_hold data;	/* hold buffer, perhaps scatter list */
139 	sg_io_hdr_t header;	/* scsi command+info, see <scsi/sg.h> */
140 	unsigned char sense_b[SCSI_SENSE_BUFFERSIZE];
141 	char res_used;		/* 1 -> using reserve buffer, 0 -> not ... */
142 	char orphan;		/* 1 -> drop on sight, 0 -> normal */
143 	char sg_io_owned;	/* 1 -> packet belongs to SG_IO */
144 	/* done protected by rq_list_lock */
145 	char done;		/* 0->before bh, 1->before read, 2->read */
146 	struct request *rq;
147 	struct bio *bio;
148 	struct execute_work ew;
149 } Sg_request;
150 
151 typedef struct sg_fd {		/* holds the state of a file descriptor */
152 	struct list_head sfd_siblings;  /* protected by device's sfd_lock */
153 	struct sg_device *parentdp;	/* owning device */
154 	wait_queue_head_t read_wait;	/* queue read until command done */
155 	rwlock_t rq_list_lock;	/* protect access to list in req_arr */
156 	int timeout;		/* defaults to SG_DEFAULT_TIMEOUT      */
157 	int timeout_user;	/* defaults to SG_DEFAULT_TIMEOUT_USER */
158 	Sg_scatter_hold reserve;	/* buffer held for this file descriptor */
159 	unsigned save_scat_len;	/* original length of trunc. scat. element */
160 	Sg_request *headrp;	/* head of request slist, NULL->empty */
161 	struct fasync_struct *async_qp;	/* used by asynchronous notification */
162 	Sg_request req_arr[SG_MAX_QUEUE];	/* used as singly-linked list */
163 	char low_dma;		/* as in parent but possibly overridden to 1 */
164 	char force_packid;	/* 1 -> pack_id input to read(), 0 -> ignored */
165 	char cmd_q;		/* 1 -> allow command queuing, 0 -> don't */
166 	unsigned char next_cmd_len; /* 0: automatic, >0: use on next write() */
167 	char keep_orphan;	/* 0 -> drop orphan (def), 1 -> keep for read() */
168 	char mmap_called;	/* 0 -> mmap() never called on this fd */
169 	struct kref f_ref;
170 	struct execute_work ew;
171 } Sg_fd;
172 
173 typedef struct sg_device { /* holds the state of each scsi generic device */
174 	struct scsi_device *device;
175 	wait_queue_head_t open_wait;    /* queue open() when O_EXCL present */
176 	struct mutex open_rel_lock;     /* held when in open() or release() */
177 	int sg_tablesize;	/* adapter's max scatter-gather table size */
178 	u32 index;		/* device index number */
179 	struct list_head sfds;
180 	rwlock_t sfd_lock;      /* protect access to sfd list */
181 	atomic_t detaching;     /* 0->device usable, 1->device detaching */
182 	bool exclude;		/* 1->open(O_EXCL) succeeded and is active */
183 	int open_cnt;		/* count of opens (perhaps < num(sfds) ) */
184 	char sgdebug;		/* 0->off, 1->sense, 9->dump dev, 10-> all devs */
185 	struct gendisk *disk;
186 	struct cdev * cdev;	/* char_dev [sysfs: /sys/cdev/major/sg<n>] */
187 	struct kref d_ref;
188 } Sg_device;
189 
190 /* tasklet or soft irq callback */
191 static void sg_rq_end_io(struct request *rq, int uptodate);
192 static int sg_start_req(Sg_request *srp, unsigned char *cmd);
193 static int sg_finish_rem_req(Sg_request * srp);
194 static int sg_build_indirect(Sg_scatter_hold * schp, Sg_fd * sfp, int buff_size);
195 static ssize_t sg_new_read(Sg_fd * sfp, char __user *buf, size_t count,
196 			   Sg_request * srp);
197 static ssize_t sg_new_write(Sg_fd *sfp, struct file *file,
198 			const char __user *buf, size_t count, int blocking,
199 			int read_only, int sg_io_owned, Sg_request **o_srp);
200 static int sg_common_write(Sg_fd * sfp, Sg_request * srp,
201 			   unsigned char *cmnd, int timeout, int blocking);
202 static int sg_read_oxfer(Sg_request * srp, char __user *outp, int num_read_xfer);
203 static void sg_remove_scat(Sg_fd * sfp, Sg_scatter_hold * schp);
204 static void sg_build_reserve(Sg_fd * sfp, int req_size);
205 static void sg_link_reserve(Sg_fd * sfp, Sg_request * srp, int size);
206 static void sg_unlink_reserve(Sg_fd * sfp, Sg_request * srp);
207 static Sg_fd *sg_add_sfp(Sg_device * sdp);
208 static void sg_remove_sfp(struct kref *);
209 static Sg_request *sg_get_rq_mark(Sg_fd * sfp, int pack_id);
210 static Sg_request *sg_add_request(Sg_fd * sfp);
211 static int sg_remove_request(Sg_fd * sfp, Sg_request * srp);
212 static int sg_res_in_use(Sg_fd * sfp);
213 static Sg_device *sg_get_dev(int dev);
214 static void sg_device_destroy(struct kref *kref);
215 
216 #define SZ_SG_HEADER sizeof(struct sg_header)
217 #define SZ_SG_IO_HDR sizeof(sg_io_hdr_t)
218 #define SZ_SG_IOVEC sizeof(sg_iovec_t)
219 #define SZ_SG_REQ_INFO sizeof(sg_req_info_t)
220 
221 #define sg_printk(prefix, sdp, fmt, a...) \
222 	sdev_prefix_printk(prefix, (sdp)->device,		\
223 			   (sdp)->disk->disk_name, fmt, ##a)
224 
sg_allow_access(struct file * filp,unsigned char * cmd)225 static int sg_allow_access(struct file *filp, unsigned char *cmd)
226 {
227 	struct sg_fd *sfp = filp->private_data;
228 
229 	if (sfp->parentdp->device->type == TYPE_SCANNER)
230 		return 0;
231 
232 	return blk_verify_command(cmd, filp->f_mode & FMODE_WRITE);
233 }
234 
235 static int
open_wait(Sg_device * sdp,int flags)236 open_wait(Sg_device *sdp, int flags)
237 {
238 	int retval = 0;
239 
240 	if (flags & O_EXCL) {
241 		while (sdp->open_cnt > 0) {
242 			mutex_unlock(&sdp->open_rel_lock);
243 			retval = wait_event_interruptible(sdp->open_wait,
244 					(atomic_read(&sdp->detaching) ||
245 					 !sdp->open_cnt));
246 			mutex_lock(&sdp->open_rel_lock);
247 
248 			if (retval) /* -ERESTARTSYS */
249 				return retval;
250 			if (atomic_read(&sdp->detaching))
251 				return -ENODEV;
252 		}
253 	} else {
254 		while (sdp->exclude) {
255 			mutex_unlock(&sdp->open_rel_lock);
256 			retval = wait_event_interruptible(sdp->open_wait,
257 					(atomic_read(&sdp->detaching) ||
258 					 !sdp->exclude));
259 			mutex_lock(&sdp->open_rel_lock);
260 
261 			if (retval) /* -ERESTARTSYS */
262 				return retval;
263 			if (atomic_read(&sdp->detaching))
264 				return -ENODEV;
265 		}
266 	}
267 
268 	return retval;
269 }
270 
271 /* Returns 0 on success, else a negated errno value */
272 static int
sg_open(struct inode * inode,struct file * filp)273 sg_open(struct inode *inode, struct file *filp)
274 {
275 	int dev = iminor(inode);
276 	int flags = filp->f_flags;
277 	struct request_queue *q;
278 	Sg_device *sdp;
279 	Sg_fd *sfp;
280 	int retval;
281 
282 	nonseekable_open(inode, filp);
283 	if ((flags & O_EXCL) && (O_RDONLY == (flags & O_ACCMODE)))
284 		return -EPERM; /* Can't lock it with read only access */
285 	sdp = sg_get_dev(dev);
286 	if (IS_ERR(sdp))
287 		return PTR_ERR(sdp);
288 
289 	SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
290 				      "sg_open: flags=0x%x\n", flags));
291 
292 	/* This driver's module count bumped by fops_get in <linux/fs.h> */
293 	/* Prevent the device driver from vanishing while we sleep */
294 	retval = scsi_device_get(sdp->device);
295 	if (retval)
296 		goto sg_put;
297 
298 	retval = scsi_autopm_get_device(sdp->device);
299 	if (retval)
300 		goto sdp_put;
301 
302 	/* scsi_block_when_processing_errors() may block so bypass
303 	 * check if O_NONBLOCK. Permits SCSI commands to be issued
304 	 * during error recovery. Tread carefully. */
305 	if (!((flags & O_NONBLOCK) ||
306 	      scsi_block_when_processing_errors(sdp->device))) {
307 		retval = -ENXIO;
308 		/* we are in error recovery for this device */
309 		goto error_out;
310 	}
311 
312 	mutex_lock(&sdp->open_rel_lock);
313 	if (flags & O_NONBLOCK) {
314 		if (flags & O_EXCL) {
315 			if (sdp->open_cnt > 0) {
316 				retval = -EBUSY;
317 				goto error_mutex_locked;
318 			}
319 		} else {
320 			if (sdp->exclude) {
321 				retval = -EBUSY;
322 				goto error_mutex_locked;
323 			}
324 		}
325 	} else {
326 		retval = open_wait(sdp, flags);
327 		if (retval) /* -ERESTARTSYS or -ENODEV */
328 			goto error_mutex_locked;
329 	}
330 
331 	/* N.B. at this point we are holding the open_rel_lock */
332 	if (flags & O_EXCL)
333 		sdp->exclude = true;
334 
335 	if (sdp->open_cnt < 1) {  /* no existing opens */
336 		sdp->sgdebug = 0;
337 		q = sdp->device->request_queue;
338 		sdp->sg_tablesize = queue_max_segments(q);
339 	}
340 	sfp = sg_add_sfp(sdp);
341 	if (IS_ERR(sfp)) {
342 		retval = PTR_ERR(sfp);
343 		goto out_undo;
344 	}
345 
346 	filp->private_data = sfp;
347 	sdp->open_cnt++;
348 	mutex_unlock(&sdp->open_rel_lock);
349 
350 	retval = 0;
351 sg_put:
352 	kref_put(&sdp->d_ref, sg_device_destroy);
353 	return retval;
354 
355 out_undo:
356 	if (flags & O_EXCL) {
357 		sdp->exclude = false;   /* undo if error */
358 		wake_up_interruptible(&sdp->open_wait);
359 	}
360 error_mutex_locked:
361 	mutex_unlock(&sdp->open_rel_lock);
362 error_out:
363 	scsi_autopm_put_device(sdp->device);
364 sdp_put:
365 	scsi_device_put(sdp->device);
366 	goto sg_put;
367 }
368 
369 /* Release resources associated with a successful sg_open()
370  * Returns 0 on success, else a negated errno value */
371 static int
sg_release(struct inode * inode,struct file * filp)372 sg_release(struct inode *inode, struct file *filp)
373 {
374 	Sg_device *sdp;
375 	Sg_fd *sfp;
376 
377 	if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
378 		return -ENXIO;
379 	SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp, "sg_release\n"));
380 
381 	mutex_lock(&sdp->open_rel_lock);
382 	scsi_autopm_put_device(sdp->device);
383 	kref_put(&sfp->f_ref, sg_remove_sfp);
384 	sdp->open_cnt--;
385 
386 	/* possibly many open()s waiting on exlude clearing, start many;
387 	 * only open(O_EXCL)s wait on 0==open_cnt so only start one */
388 	if (sdp->exclude) {
389 		sdp->exclude = false;
390 		wake_up_interruptible_all(&sdp->open_wait);
391 	} else if (0 == sdp->open_cnt) {
392 		wake_up_interruptible(&sdp->open_wait);
393 	}
394 	mutex_unlock(&sdp->open_rel_lock);
395 	return 0;
396 }
397 
398 static ssize_t
sg_read(struct file * filp,char __user * buf,size_t count,loff_t * ppos)399 sg_read(struct file *filp, char __user *buf, size_t count, loff_t * ppos)
400 {
401 	Sg_device *sdp;
402 	Sg_fd *sfp;
403 	Sg_request *srp;
404 	int req_pack_id = -1;
405 	sg_io_hdr_t *hp;
406 	struct sg_header *old_hdr = NULL;
407 	int retval = 0;
408 
409 	if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
410 		return -ENXIO;
411 	SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
412 				      "sg_read: count=%d\n", (int) count));
413 
414 	if (!access_ok(VERIFY_WRITE, buf, count))
415 		return -EFAULT;
416 	if (sfp->force_packid && (count >= SZ_SG_HEADER)) {
417 		old_hdr = kmalloc(SZ_SG_HEADER, GFP_KERNEL);
418 		if (!old_hdr)
419 			return -ENOMEM;
420 		if (__copy_from_user(old_hdr, buf, SZ_SG_HEADER)) {
421 			retval = -EFAULT;
422 			goto free_old_hdr;
423 		}
424 		if (old_hdr->reply_len < 0) {
425 			if (count >= SZ_SG_IO_HDR) {
426 				sg_io_hdr_t *new_hdr;
427 				new_hdr = kmalloc(SZ_SG_IO_HDR, GFP_KERNEL);
428 				if (!new_hdr) {
429 					retval = -ENOMEM;
430 					goto free_old_hdr;
431 				}
432 				retval =__copy_from_user
433 				    (new_hdr, buf, SZ_SG_IO_HDR);
434 				req_pack_id = new_hdr->pack_id;
435 				kfree(new_hdr);
436 				if (retval) {
437 					retval = -EFAULT;
438 					goto free_old_hdr;
439 				}
440 			}
441 		} else
442 			req_pack_id = old_hdr->pack_id;
443 	}
444 	srp = sg_get_rq_mark(sfp, req_pack_id);
445 	if (!srp) {		/* now wait on packet to arrive */
446 		if (atomic_read(&sdp->detaching)) {
447 			retval = -ENODEV;
448 			goto free_old_hdr;
449 		}
450 		if (filp->f_flags & O_NONBLOCK) {
451 			retval = -EAGAIN;
452 			goto free_old_hdr;
453 		}
454 		retval = wait_event_interruptible(sfp->read_wait,
455 			(atomic_read(&sdp->detaching) ||
456 			(srp = sg_get_rq_mark(sfp, req_pack_id))));
457 		if (atomic_read(&sdp->detaching)) {
458 			retval = -ENODEV;
459 			goto free_old_hdr;
460 		}
461 		if (retval) {
462 			/* -ERESTARTSYS as signal hit process */
463 			goto free_old_hdr;
464 		}
465 	}
466 	if (srp->header.interface_id != '\0') {
467 		retval = sg_new_read(sfp, buf, count, srp);
468 		goto free_old_hdr;
469 	}
470 
471 	hp = &srp->header;
472 	if (old_hdr == NULL) {
473 		old_hdr = kmalloc(SZ_SG_HEADER, GFP_KERNEL);
474 		if (! old_hdr) {
475 			retval = -ENOMEM;
476 			goto free_old_hdr;
477 		}
478 	}
479 	memset(old_hdr, 0, SZ_SG_HEADER);
480 	old_hdr->reply_len = (int) hp->timeout;
481 	old_hdr->pack_len = old_hdr->reply_len; /* old, strange behaviour */
482 	old_hdr->pack_id = hp->pack_id;
483 	old_hdr->twelve_byte =
484 	    ((srp->data.cmd_opcode >= 0xc0) && (12 == hp->cmd_len)) ? 1 : 0;
485 	old_hdr->target_status = hp->masked_status;
486 	old_hdr->host_status = hp->host_status;
487 	old_hdr->driver_status = hp->driver_status;
488 	if ((CHECK_CONDITION & hp->masked_status) ||
489 	    (DRIVER_SENSE & hp->driver_status))
490 		memcpy(old_hdr->sense_buffer, srp->sense_b,
491 		       sizeof (old_hdr->sense_buffer));
492 	switch (hp->host_status) {
493 	/* This setup of 'result' is for backward compatibility and is best
494 	   ignored by the user who should use target, host + driver status */
495 	case DID_OK:
496 	case DID_PASSTHROUGH:
497 	case DID_SOFT_ERROR:
498 		old_hdr->result = 0;
499 		break;
500 	case DID_NO_CONNECT:
501 	case DID_BUS_BUSY:
502 	case DID_TIME_OUT:
503 		old_hdr->result = EBUSY;
504 		break;
505 	case DID_BAD_TARGET:
506 	case DID_ABORT:
507 	case DID_PARITY:
508 	case DID_RESET:
509 	case DID_BAD_INTR:
510 		old_hdr->result = EIO;
511 		break;
512 	case DID_ERROR:
513 		old_hdr->result = (srp->sense_b[0] == 0 &&
514 				  hp->masked_status == GOOD) ? 0 : EIO;
515 		break;
516 	default:
517 		old_hdr->result = EIO;
518 		break;
519 	}
520 
521 	/* Now copy the result back to the user buffer.  */
522 	if (count >= SZ_SG_HEADER) {
523 		if (__copy_to_user(buf, old_hdr, SZ_SG_HEADER)) {
524 			retval = -EFAULT;
525 			goto free_old_hdr;
526 		}
527 		buf += SZ_SG_HEADER;
528 		if (count > old_hdr->reply_len)
529 			count = old_hdr->reply_len;
530 		if (count > SZ_SG_HEADER) {
531 			if (sg_read_oxfer(srp, buf, count - SZ_SG_HEADER)) {
532 				retval = -EFAULT;
533 				goto free_old_hdr;
534 			}
535 		}
536 	} else
537 		count = (old_hdr->result == 0) ? 0 : -EIO;
538 	sg_finish_rem_req(srp);
539 	retval = count;
540 free_old_hdr:
541 	kfree(old_hdr);
542 	return retval;
543 }
544 
545 static ssize_t
sg_new_read(Sg_fd * sfp,char __user * buf,size_t count,Sg_request * srp)546 sg_new_read(Sg_fd * sfp, char __user *buf, size_t count, Sg_request * srp)
547 {
548 	sg_io_hdr_t *hp = &srp->header;
549 	int err = 0, err2;
550 	int len;
551 
552 	if (count < SZ_SG_IO_HDR) {
553 		err = -EINVAL;
554 		goto err_out;
555 	}
556 	hp->sb_len_wr = 0;
557 	if ((hp->mx_sb_len > 0) && hp->sbp) {
558 		if ((CHECK_CONDITION & hp->masked_status) ||
559 		    (DRIVER_SENSE & hp->driver_status)) {
560 			int sb_len = SCSI_SENSE_BUFFERSIZE;
561 			sb_len = (hp->mx_sb_len > sb_len) ? sb_len : hp->mx_sb_len;
562 			len = 8 + (int) srp->sense_b[7];	/* Additional sense length field */
563 			len = (len > sb_len) ? sb_len : len;
564 			if (copy_to_user(hp->sbp, srp->sense_b, len)) {
565 				err = -EFAULT;
566 				goto err_out;
567 			}
568 			hp->sb_len_wr = len;
569 		}
570 	}
571 	if (hp->masked_status || hp->host_status || hp->driver_status)
572 		hp->info |= SG_INFO_CHECK;
573 	if (copy_to_user(buf, hp, SZ_SG_IO_HDR)) {
574 		err = -EFAULT;
575 		goto err_out;
576 	}
577 err_out:
578 	err2 = sg_finish_rem_req(srp);
579 	return err ? : err2 ? : count;
580 }
581 
582 static ssize_t
sg_write(struct file * filp,const char __user * buf,size_t count,loff_t * ppos)583 sg_write(struct file *filp, const char __user *buf, size_t count, loff_t * ppos)
584 {
585 	int mxsize, cmd_size, k;
586 	int input_size, blocking;
587 	unsigned char opcode;
588 	Sg_device *sdp;
589 	Sg_fd *sfp;
590 	Sg_request *srp;
591 	struct sg_header old_hdr;
592 	sg_io_hdr_t *hp;
593 	unsigned char cmnd[SG_MAX_CDB_SIZE];
594 
595 	if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
596 		return -ENXIO;
597 	SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
598 				      "sg_write: count=%d\n", (int) count));
599 	if (atomic_read(&sdp->detaching))
600 		return -ENODEV;
601 	if (!((filp->f_flags & O_NONBLOCK) ||
602 	      scsi_block_when_processing_errors(sdp->device)))
603 		return -ENXIO;
604 
605 	if (!access_ok(VERIFY_READ, buf, count))
606 		return -EFAULT;	/* protects following copy_from_user()s + get_user()s */
607 	if (count < SZ_SG_HEADER)
608 		return -EIO;
609 	if (__copy_from_user(&old_hdr, buf, SZ_SG_HEADER))
610 		return -EFAULT;
611 	blocking = !(filp->f_flags & O_NONBLOCK);
612 	if (old_hdr.reply_len < 0)
613 		return sg_new_write(sfp, filp, buf, count,
614 				    blocking, 0, 0, NULL);
615 	if (count < (SZ_SG_HEADER + 6))
616 		return -EIO;	/* The minimum scsi command length is 6 bytes. */
617 
618 	if (!(srp = sg_add_request(sfp))) {
619 		SCSI_LOG_TIMEOUT(1, sg_printk(KERN_INFO, sdp,
620 					      "sg_write: queue full\n"));
621 		return -EDOM;
622 	}
623 	buf += SZ_SG_HEADER;
624 	__get_user(opcode, buf);
625 	if (sfp->next_cmd_len > 0) {
626 		cmd_size = sfp->next_cmd_len;
627 		sfp->next_cmd_len = 0;	/* reset so only this write() effected */
628 	} else {
629 		cmd_size = COMMAND_SIZE(opcode);	/* based on SCSI command group */
630 		if ((opcode >= 0xc0) && old_hdr.twelve_byte)
631 			cmd_size = 12;
632 	}
633 	SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sdp,
634 		"sg_write:   scsi opcode=0x%02x, cmd_size=%d\n", (int) opcode, cmd_size));
635 /* Determine buffer size.  */
636 	input_size = count - cmd_size;
637 	mxsize = (input_size > old_hdr.reply_len) ? input_size : old_hdr.reply_len;
638 	mxsize -= SZ_SG_HEADER;
639 	input_size -= SZ_SG_HEADER;
640 	if (input_size < 0) {
641 		sg_remove_request(sfp, srp);
642 		return -EIO;	/* User did not pass enough bytes for this command. */
643 	}
644 	hp = &srp->header;
645 	hp->interface_id = '\0';	/* indicator of old interface tunnelled */
646 	hp->cmd_len = (unsigned char) cmd_size;
647 	hp->iovec_count = 0;
648 	hp->mx_sb_len = 0;
649 	if (input_size > 0)
650 		hp->dxfer_direction = (old_hdr.reply_len > SZ_SG_HEADER) ?
651 		    SG_DXFER_TO_FROM_DEV : SG_DXFER_TO_DEV;
652 	else
653 		hp->dxfer_direction = (mxsize > 0) ? SG_DXFER_FROM_DEV : SG_DXFER_NONE;
654 	hp->dxfer_len = mxsize;
655 	if ((hp->dxfer_direction == SG_DXFER_TO_DEV) ||
656 	    (hp->dxfer_direction == SG_DXFER_TO_FROM_DEV))
657 		hp->dxferp = (char __user *)buf + cmd_size;
658 	else
659 		hp->dxferp = NULL;
660 	hp->sbp = NULL;
661 	hp->timeout = old_hdr.reply_len;	/* structure abuse ... */
662 	hp->flags = input_size;	/* structure abuse ... */
663 	hp->pack_id = old_hdr.pack_id;
664 	hp->usr_ptr = NULL;
665 	if (__copy_from_user(cmnd, buf, cmd_size))
666 		return -EFAULT;
667 	/*
668 	 * SG_DXFER_TO_FROM_DEV is functionally equivalent to SG_DXFER_FROM_DEV,
669 	 * but is is possible that the app intended SG_DXFER_TO_DEV, because there
670 	 * is a non-zero input_size, so emit a warning.
671 	 */
672 	if (hp->dxfer_direction == SG_DXFER_TO_FROM_DEV) {
673 		static char cmd[TASK_COMM_LEN];
674 		if (strcmp(current->comm, cmd)) {
675 			printk_ratelimited(KERN_WARNING
676 					   "sg_write: data in/out %d/%d bytes "
677 					   "for SCSI command 0x%x-- guessing "
678 					   "data in;\n   program %s not setting "
679 					   "count and/or reply_len properly\n",
680 					   old_hdr.reply_len - (int)SZ_SG_HEADER,
681 					   input_size, (unsigned int) cmnd[0],
682 					   current->comm);
683 			strcpy(cmd, current->comm);
684 		}
685 	}
686 	k = sg_common_write(sfp, srp, cmnd, sfp->timeout, blocking);
687 	return (k < 0) ? k : count;
688 }
689 
690 static ssize_t
sg_new_write(Sg_fd * sfp,struct file * file,const char __user * buf,size_t count,int blocking,int read_only,int sg_io_owned,Sg_request ** o_srp)691 sg_new_write(Sg_fd *sfp, struct file *file, const char __user *buf,
692 		 size_t count, int blocking, int read_only, int sg_io_owned,
693 		 Sg_request **o_srp)
694 {
695 	int k;
696 	Sg_request *srp;
697 	sg_io_hdr_t *hp;
698 	unsigned char cmnd[SG_MAX_CDB_SIZE];
699 	int timeout;
700 	unsigned long ul_timeout;
701 
702 	if (count < SZ_SG_IO_HDR)
703 		return -EINVAL;
704 	if (!access_ok(VERIFY_READ, buf, count))
705 		return -EFAULT; /* protects following copy_from_user()s + get_user()s */
706 
707 	sfp->cmd_q = 1;	/* when sg_io_hdr seen, set command queuing on */
708 	if (!(srp = sg_add_request(sfp))) {
709 		SCSI_LOG_TIMEOUT(1, sg_printk(KERN_INFO, sfp->parentdp,
710 					      "sg_new_write: queue full\n"));
711 		return -EDOM;
712 	}
713 	srp->sg_io_owned = sg_io_owned;
714 	hp = &srp->header;
715 	if (__copy_from_user(hp, buf, SZ_SG_IO_HDR)) {
716 		sg_remove_request(sfp, srp);
717 		return -EFAULT;
718 	}
719 	if (hp->interface_id != 'S') {
720 		sg_remove_request(sfp, srp);
721 		return -ENOSYS;
722 	}
723 	if (hp->flags & SG_FLAG_MMAP_IO) {
724 		if (hp->dxfer_len > sfp->reserve.bufflen) {
725 			sg_remove_request(sfp, srp);
726 			return -ENOMEM;	/* MMAP_IO size must fit in reserve buffer */
727 		}
728 		if (hp->flags & SG_FLAG_DIRECT_IO) {
729 			sg_remove_request(sfp, srp);
730 			return -EINVAL;	/* either MMAP_IO or DIRECT_IO (not both) */
731 		}
732 		if (sg_res_in_use(sfp)) {
733 			sg_remove_request(sfp, srp);
734 			return -EBUSY;	/* reserve buffer already being used */
735 		}
736 	}
737 	ul_timeout = msecs_to_jiffies(srp->header.timeout);
738 	timeout = (ul_timeout < INT_MAX) ? ul_timeout : INT_MAX;
739 	if ((!hp->cmdp) || (hp->cmd_len < 6) || (hp->cmd_len > sizeof (cmnd))) {
740 		sg_remove_request(sfp, srp);
741 		return -EMSGSIZE;
742 	}
743 	if (!access_ok(VERIFY_READ, hp->cmdp, hp->cmd_len)) {
744 		sg_remove_request(sfp, srp);
745 		return -EFAULT;	/* protects following copy_from_user()s + get_user()s */
746 	}
747 	if (__copy_from_user(cmnd, hp->cmdp, hp->cmd_len)) {
748 		sg_remove_request(sfp, srp);
749 		return -EFAULT;
750 	}
751 	if (read_only && sg_allow_access(file, cmnd)) {
752 		sg_remove_request(sfp, srp);
753 		return -EPERM;
754 	}
755 	k = sg_common_write(sfp, srp, cmnd, timeout, blocking);
756 	if (k < 0)
757 		return k;
758 	if (o_srp)
759 		*o_srp = srp;
760 	return count;
761 }
762 
763 static int
sg_common_write(Sg_fd * sfp,Sg_request * srp,unsigned char * cmnd,int timeout,int blocking)764 sg_common_write(Sg_fd * sfp, Sg_request * srp,
765 		unsigned char *cmnd, int timeout, int blocking)
766 {
767 	int k, at_head;
768 	Sg_device *sdp = sfp->parentdp;
769 	sg_io_hdr_t *hp = &srp->header;
770 
771 	srp->data.cmd_opcode = cmnd[0];	/* hold opcode of command */
772 	hp->status = 0;
773 	hp->masked_status = 0;
774 	hp->msg_status = 0;
775 	hp->info = 0;
776 	hp->host_status = 0;
777 	hp->driver_status = 0;
778 	hp->resid = 0;
779 	SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
780 			"sg_common_write:  scsi opcode=0x%02x, cmd_size=%d\n",
781 			(int) cmnd[0], (int) hp->cmd_len));
782 
783 	k = sg_start_req(srp, cmnd);
784 	if (k) {
785 		SCSI_LOG_TIMEOUT(1, sg_printk(KERN_INFO, sfp->parentdp,
786 			"sg_common_write: start_req err=%d\n", k));
787 		sg_finish_rem_req(srp);
788 		return k;	/* probably out of space --> ENOMEM */
789 	}
790 	if (atomic_read(&sdp->detaching)) {
791 		if (srp->bio)
792 			blk_end_request_all(srp->rq, -EIO);
793 		sg_finish_rem_req(srp);
794 		return -ENODEV;
795 	}
796 
797 	hp->duration = jiffies_to_msecs(jiffies);
798 	if (hp->interface_id != '\0' &&	/* v3 (or later) interface */
799 	    (SG_FLAG_Q_AT_TAIL & hp->flags))
800 		at_head = 0;
801 	else
802 		at_head = 1;
803 
804 	srp->rq->timeout = timeout;
805 	kref_get(&sfp->f_ref); /* sg_rq_end_io() does kref_put(). */
806 	blk_execute_rq_nowait(sdp->device->request_queue, sdp->disk,
807 			      srp->rq, at_head, sg_rq_end_io);
808 	return 0;
809 }
810 
srp_done(Sg_fd * sfp,Sg_request * srp)811 static int srp_done(Sg_fd *sfp, Sg_request *srp)
812 {
813 	unsigned long flags;
814 	int ret;
815 
816 	read_lock_irqsave(&sfp->rq_list_lock, flags);
817 	ret = srp->done;
818 	read_unlock_irqrestore(&sfp->rq_list_lock, flags);
819 	return ret;
820 }
821 
max_sectors_bytes(struct request_queue * q)822 static int max_sectors_bytes(struct request_queue *q)
823 {
824 	unsigned int max_sectors = queue_max_sectors(q);
825 
826 	max_sectors = min_t(unsigned int, max_sectors, INT_MAX >> 9);
827 
828 	return max_sectors << 9;
829 }
830 
831 static long
sg_ioctl(struct file * filp,unsigned int cmd_in,unsigned long arg)832 sg_ioctl(struct file *filp, unsigned int cmd_in, unsigned long arg)
833 {
834 	void __user *p = (void __user *)arg;
835 	int __user *ip = p;
836 	int result, val, read_only;
837 	Sg_device *sdp;
838 	Sg_fd *sfp;
839 	Sg_request *srp;
840 	unsigned long iflags;
841 
842 	if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
843 		return -ENXIO;
844 
845 	SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
846 				   "sg_ioctl: cmd=0x%x\n", (int) cmd_in));
847 	read_only = (O_RDWR != (filp->f_flags & O_ACCMODE));
848 
849 	switch (cmd_in) {
850 	case SG_IO:
851 		if (atomic_read(&sdp->detaching))
852 			return -ENODEV;
853 		if (!scsi_block_when_processing_errors(sdp->device))
854 			return -ENXIO;
855 		if (!access_ok(VERIFY_WRITE, p, SZ_SG_IO_HDR))
856 			return -EFAULT;
857 		result = sg_new_write(sfp, filp, p, SZ_SG_IO_HDR,
858 				 1, read_only, 1, &srp);
859 		if (result < 0)
860 			return result;
861 		result = wait_event_interruptible(sfp->read_wait,
862 			(srp_done(sfp, srp) || atomic_read(&sdp->detaching)));
863 		if (atomic_read(&sdp->detaching))
864 			return -ENODEV;
865 		write_lock_irq(&sfp->rq_list_lock);
866 		if (srp->done) {
867 			srp->done = 2;
868 			write_unlock_irq(&sfp->rq_list_lock);
869 			result = sg_new_read(sfp, p, SZ_SG_IO_HDR, srp);
870 			return (result < 0) ? result : 0;
871 		}
872 		srp->orphan = 1;
873 		write_unlock_irq(&sfp->rq_list_lock);
874 		return result;	/* -ERESTARTSYS because signal hit process */
875 	case SG_SET_TIMEOUT:
876 		result = get_user(val, ip);
877 		if (result)
878 			return result;
879 		if (val < 0)
880 			return -EIO;
881 		if (val >= MULDIV (INT_MAX, USER_HZ, HZ))
882 		    val = MULDIV (INT_MAX, USER_HZ, HZ);
883 		sfp->timeout_user = val;
884 		sfp->timeout = MULDIV (val, HZ, USER_HZ);
885 
886 		return 0;
887 	case SG_GET_TIMEOUT:	/* N.B. User receives timeout as return value */
888 				/* strange ..., for backward compatibility */
889 		return sfp->timeout_user;
890 	case SG_SET_FORCE_LOW_DMA:
891 		result = get_user(val, ip);
892 		if (result)
893 			return result;
894 		if (val) {
895 			sfp->low_dma = 1;
896 			if ((0 == sfp->low_dma) && (0 == sg_res_in_use(sfp))) {
897 				val = (int) sfp->reserve.bufflen;
898 				sg_remove_scat(sfp, &sfp->reserve);
899 				sg_build_reserve(sfp, val);
900 			}
901 		} else {
902 			if (atomic_read(&sdp->detaching))
903 				return -ENODEV;
904 			sfp->low_dma = sdp->device->host->unchecked_isa_dma;
905 		}
906 		return 0;
907 	case SG_GET_LOW_DMA:
908 		return put_user((int) sfp->low_dma, ip);
909 	case SG_GET_SCSI_ID:
910 		if (!access_ok(VERIFY_WRITE, p, sizeof (sg_scsi_id_t)))
911 			return -EFAULT;
912 		else {
913 			sg_scsi_id_t __user *sg_idp = p;
914 
915 			if (atomic_read(&sdp->detaching))
916 				return -ENODEV;
917 			__put_user((int) sdp->device->host->host_no,
918 				   &sg_idp->host_no);
919 			__put_user((int) sdp->device->channel,
920 				   &sg_idp->channel);
921 			__put_user((int) sdp->device->id, &sg_idp->scsi_id);
922 			__put_user((int) sdp->device->lun, &sg_idp->lun);
923 			__put_user((int) sdp->device->type, &sg_idp->scsi_type);
924 			__put_user((short) sdp->device->host->cmd_per_lun,
925 				   &sg_idp->h_cmd_per_lun);
926 			__put_user((short) sdp->device->queue_depth,
927 				   &sg_idp->d_queue_depth);
928 			__put_user(0, &sg_idp->unused[0]);
929 			__put_user(0, &sg_idp->unused[1]);
930 			return 0;
931 		}
932 	case SG_SET_FORCE_PACK_ID:
933 		result = get_user(val, ip);
934 		if (result)
935 			return result;
936 		sfp->force_packid = val ? 1 : 0;
937 		return 0;
938 	case SG_GET_PACK_ID:
939 		if (!access_ok(VERIFY_WRITE, ip, sizeof (int)))
940 			return -EFAULT;
941 		read_lock_irqsave(&sfp->rq_list_lock, iflags);
942 		for (srp = sfp->headrp; srp; srp = srp->nextrp) {
943 			if ((1 == srp->done) && (!srp->sg_io_owned)) {
944 				read_unlock_irqrestore(&sfp->rq_list_lock,
945 						       iflags);
946 				__put_user(srp->header.pack_id, ip);
947 				return 0;
948 			}
949 		}
950 		read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
951 		__put_user(-1, ip);
952 		return 0;
953 	case SG_GET_NUM_WAITING:
954 		read_lock_irqsave(&sfp->rq_list_lock, iflags);
955 		for (val = 0, srp = sfp->headrp; srp; srp = srp->nextrp) {
956 			if ((1 == srp->done) && (!srp->sg_io_owned))
957 				++val;
958 		}
959 		read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
960 		return put_user(val, ip);
961 	case SG_GET_SG_TABLESIZE:
962 		return put_user(sdp->sg_tablesize, ip);
963 	case SG_SET_RESERVED_SIZE:
964 		result = get_user(val, ip);
965 		if (result)
966 			return result;
967                 if (val < 0)
968                         return -EINVAL;
969 		val = min_t(int, val,
970 			    max_sectors_bytes(sdp->device->request_queue));
971 		if (val != sfp->reserve.bufflen) {
972 			if (sg_res_in_use(sfp) || sfp->mmap_called)
973 				return -EBUSY;
974 			sg_remove_scat(sfp, &sfp->reserve);
975 			sg_build_reserve(sfp, val);
976 		}
977 		return 0;
978 	case SG_GET_RESERVED_SIZE:
979 		val = min_t(int, sfp->reserve.bufflen,
980 			    max_sectors_bytes(sdp->device->request_queue));
981 		return put_user(val, ip);
982 	case SG_SET_COMMAND_Q:
983 		result = get_user(val, ip);
984 		if (result)
985 			return result;
986 		sfp->cmd_q = val ? 1 : 0;
987 		return 0;
988 	case SG_GET_COMMAND_Q:
989 		return put_user((int) sfp->cmd_q, ip);
990 	case SG_SET_KEEP_ORPHAN:
991 		result = get_user(val, ip);
992 		if (result)
993 			return result;
994 		sfp->keep_orphan = val;
995 		return 0;
996 	case SG_GET_KEEP_ORPHAN:
997 		return put_user((int) sfp->keep_orphan, ip);
998 	case SG_NEXT_CMD_LEN:
999 		result = get_user(val, ip);
1000 		if (result)
1001 			return result;
1002 		sfp->next_cmd_len = (val > 0) ? val : 0;
1003 		return 0;
1004 	case SG_GET_VERSION_NUM:
1005 		return put_user(sg_version_num, ip);
1006 	case SG_GET_ACCESS_COUNT:
1007 		/* faked - we don't have a real access count anymore */
1008 		val = (sdp->device ? 1 : 0);
1009 		return put_user(val, ip);
1010 	case SG_GET_REQUEST_TABLE:
1011 		if (!access_ok(VERIFY_WRITE, p, SZ_SG_REQ_INFO * SG_MAX_QUEUE))
1012 			return -EFAULT;
1013 		else {
1014 			sg_req_info_t *rinfo;
1015 			unsigned int ms;
1016 
1017 			rinfo = kmalloc(SZ_SG_REQ_INFO * SG_MAX_QUEUE,
1018 								GFP_KERNEL);
1019 			if (!rinfo)
1020 				return -ENOMEM;
1021 			read_lock_irqsave(&sfp->rq_list_lock, iflags);
1022 			for (srp = sfp->headrp, val = 0; val < SG_MAX_QUEUE;
1023 			     ++val, srp = srp ? srp->nextrp : srp) {
1024 				memset(&rinfo[val], 0, SZ_SG_REQ_INFO);
1025 				if (srp) {
1026 					rinfo[val].req_state = srp->done + 1;
1027 					rinfo[val].problem =
1028 					    srp->header.masked_status &
1029 					    srp->header.host_status &
1030 					    srp->header.driver_status;
1031 					if (srp->done)
1032 						rinfo[val].duration =
1033 							srp->header.duration;
1034 					else {
1035 						ms = jiffies_to_msecs(jiffies);
1036 						rinfo[val].duration =
1037 						    (ms > srp->header.duration) ?
1038 						    (ms - srp->header.duration) : 0;
1039 					}
1040 					rinfo[val].orphan = srp->orphan;
1041 					rinfo[val].sg_io_owned =
1042 							srp->sg_io_owned;
1043 					rinfo[val].pack_id =
1044 							srp->header.pack_id;
1045 					rinfo[val].usr_ptr =
1046 							srp->header.usr_ptr;
1047 				}
1048 			}
1049 			read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1050 			result = __copy_to_user(p, rinfo,
1051 						SZ_SG_REQ_INFO * SG_MAX_QUEUE);
1052 			result = result ? -EFAULT : 0;
1053 			kfree(rinfo);
1054 			return result;
1055 		}
1056 	case SG_EMULATED_HOST:
1057 		if (atomic_read(&sdp->detaching))
1058 			return -ENODEV;
1059 		return put_user(sdp->device->host->hostt->emulated, ip);
1060 	case SCSI_IOCTL_SEND_COMMAND:
1061 		if (atomic_read(&sdp->detaching))
1062 			return -ENODEV;
1063 		if (read_only) {
1064 			unsigned char opcode = WRITE_6;
1065 			Scsi_Ioctl_Command __user *siocp = p;
1066 
1067 			if (copy_from_user(&opcode, siocp->data, 1))
1068 				return -EFAULT;
1069 			if (sg_allow_access(filp, &opcode))
1070 				return -EPERM;
1071 		}
1072 		return sg_scsi_ioctl(sdp->device->request_queue, NULL, filp->f_mode, p);
1073 	case SG_SET_DEBUG:
1074 		result = get_user(val, ip);
1075 		if (result)
1076 			return result;
1077 		sdp->sgdebug = (char) val;
1078 		return 0;
1079 	case BLKSECTGET:
1080 		return put_user(max_sectors_bytes(sdp->device->request_queue),
1081 				ip);
1082 	case BLKTRACESETUP:
1083 		return blk_trace_setup(sdp->device->request_queue,
1084 				       sdp->disk->disk_name,
1085 				       MKDEV(SCSI_GENERIC_MAJOR, sdp->index),
1086 				       NULL,
1087 				       (char *)arg);
1088 	case BLKTRACESTART:
1089 		return blk_trace_startstop(sdp->device->request_queue, 1);
1090 	case BLKTRACESTOP:
1091 		return blk_trace_startstop(sdp->device->request_queue, 0);
1092 	case BLKTRACETEARDOWN:
1093 		return blk_trace_remove(sdp->device->request_queue);
1094 	case SCSI_IOCTL_GET_IDLUN:
1095 	case SCSI_IOCTL_GET_BUS_NUMBER:
1096 	case SCSI_IOCTL_PROBE_HOST:
1097 	case SG_GET_TRANSFORM:
1098 	case SG_SCSI_RESET:
1099 		if (atomic_read(&sdp->detaching))
1100 			return -ENODEV;
1101 		break;
1102 	default:
1103 		if (read_only)
1104 			return -EPERM;	/* don't know so take safe approach */
1105 		break;
1106 	}
1107 
1108 	result = scsi_ioctl_block_when_processing_errors(sdp->device,
1109 			cmd_in, filp->f_flags & O_NDELAY);
1110 	if (result)
1111 		return result;
1112 	return scsi_ioctl(sdp->device, cmd_in, p);
1113 }
1114 
1115 #ifdef CONFIG_COMPAT
sg_compat_ioctl(struct file * filp,unsigned int cmd_in,unsigned long arg)1116 static long sg_compat_ioctl(struct file *filp, unsigned int cmd_in, unsigned long arg)
1117 {
1118 	Sg_device *sdp;
1119 	Sg_fd *sfp;
1120 	struct scsi_device *sdev;
1121 
1122 	if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
1123 		return -ENXIO;
1124 
1125 	sdev = sdp->device;
1126 	if (sdev->host->hostt->compat_ioctl) {
1127 		int ret;
1128 
1129 		ret = sdev->host->hostt->compat_ioctl(sdev, cmd_in, (void __user *)arg);
1130 
1131 		return ret;
1132 	}
1133 
1134 	return -ENOIOCTLCMD;
1135 }
1136 #endif
1137 
1138 static unsigned int
sg_poll(struct file * filp,poll_table * wait)1139 sg_poll(struct file *filp, poll_table * wait)
1140 {
1141 	unsigned int res = 0;
1142 	Sg_device *sdp;
1143 	Sg_fd *sfp;
1144 	Sg_request *srp;
1145 	int count = 0;
1146 	unsigned long iflags;
1147 
1148 	sfp = filp->private_data;
1149 	if (!sfp)
1150 		return POLLERR;
1151 	sdp = sfp->parentdp;
1152 	if (!sdp)
1153 		return POLLERR;
1154 	poll_wait(filp, &sfp->read_wait, wait);
1155 	read_lock_irqsave(&sfp->rq_list_lock, iflags);
1156 	for (srp = sfp->headrp; srp; srp = srp->nextrp) {
1157 		/* if any read waiting, flag it */
1158 		if ((0 == res) && (1 == srp->done) && (!srp->sg_io_owned))
1159 			res = POLLIN | POLLRDNORM;
1160 		++count;
1161 	}
1162 	read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1163 
1164 	if (atomic_read(&sdp->detaching))
1165 		res |= POLLHUP;
1166 	else if (!sfp->cmd_q) {
1167 		if (0 == count)
1168 			res |= POLLOUT | POLLWRNORM;
1169 	} else if (count < SG_MAX_QUEUE)
1170 		res |= POLLOUT | POLLWRNORM;
1171 	SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
1172 				      "sg_poll: res=0x%x\n", (int) res));
1173 	return res;
1174 }
1175 
1176 static int
sg_fasync(int fd,struct file * filp,int mode)1177 sg_fasync(int fd, struct file *filp, int mode)
1178 {
1179 	Sg_device *sdp;
1180 	Sg_fd *sfp;
1181 
1182 	if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
1183 		return -ENXIO;
1184 	SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
1185 				      "sg_fasync: mode=%d\n", mode));
1186 
1187 	return fasync_helper(fd, filp, mode, &sfp->async_qp);
1188 }
1189 
1190 static int
sg_vma_fault(struct vm_area_struct * vma,struct vm_fault * vmf)1191 sg_vma_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1192 {
1193 	Sg_fd *sfp;
1194 	unsigned long offset, len, sa;
1195 	Sg_scatter_hold *rsv_schp;
1196 	int k, length;
1197 
1198 	if ((NULL == vma) || (!(sfp = (Sg_fd *) vma->vm_private_data)))
1199 		return VM_FAULT_SIGBUS;
1200 	rsv_schp = &sfp->reserve;
1201 	offset = vmf->pgoff << PAGE_SHIFT;
1202 	if (offset >= rsv_schp->bufflen)
1203 		return VM_FAULT_SIGBUS;
1204 	SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sfp->parentdp,
1205 				      "sg_vma_fault: offset=%lu, scatg=%d\n",
1206 				      offset, rsv_schp->k_use_sg));
1207 	sa = vma->vm_start;
1208 	length = 1 << (PAGE_SHIFT + rsv_schp->page_order);
1209 	for (k = 0; k < rsv_schp->k_use_sg && sa < vma->vm_end; k++) {
1210 		len = vma->vm_end - sa;
1211 		len = (len < length) ? len : length;
1212 		if (offset < len) {
1213 			struct page *page = nth_page(rsv_schp->pages[k],
1214 						     offset >> PAGE_SHIFT);
1215 			get_page(page);	/* increment page count */
1216 			vmf->page = page;
1217 			return 0; /* success */
1218 		}
1219 		sa += len;
1220 		offset -= len;
1221 	}
1222 
1223 	return VM_FAULT_SIGBUS;
1224 }
1225 
1226 static const struct vm_operations_struct sg_mmap_vm_ops = {
1227 	.fault = sg_vma_fault,
1228 };
1229 
1230 static int
sg_mmap(struct file * filp,struct vm_area_struct * vma)1231 sg_mmap(struct file *filp, struct vm_area_struct *vma)
1232 {
1233 	Sg_fd *sfp;
1234 	unsigned long req_sz, len, sa;
1235 	Sg_scatter_hold *rsv_schp;
1236 	int k, length;
1237 
1238 	if ((!filp) || (!vma) || (!(sfp = (Sg_fd *) filp->private_data)))
1239 		return -ENXIO;
1240 	req_sz = vma->vm_end - vma->vm_start;
1241 	SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sfp->parentdp,
1242 				      "sg_mmap starting, vm_start=%p, len=%d\n",
1243 				      (void *) vma->vm_start, (int) req_sz));
1244 	if (vma->vm_pgoff)
1245 		return -EINVAL;	/* want no offset */
1246 	rsv_schp = &sfp->reserve;
1247 	if (req_sz > rsv_schp->bufflen)
1248 		return -ENOMEM;	/* cannot map more than reserved buffer */
1249 
1250 	sa = vma->vm_start;
1251 	length = 1 << (PAGE_SHIFT + rsv_schp->page_order);
1252 	for (k = 0; k < rsv_schp->k_use_sg && sa < vma->vm_end; k++) {
1253 		len = vma->vm_end - sa;
1254 		len = (len < length) ? len : length;
1255 		sa += len;
1256 	}
1257 
1258 	sfp->mmap_called = 1;
1259 	vma->vm_flags |= VM_IO | VM_DONTEXPAND | VM_DONTDUMP;
1260 	vma->vm_private_data = sfp;
1261 	vma->vm_ops = &sg_mmap_vm_ops;
1262 	return 0;
1263 }
1264 
1265 static void
sg_rq_end_io_usercontext(struct work_struct * work)1266 sg_rq_end_io_usercontext(struct work_struct *work)
1267 {
1268 	struct sg_request *srp = container_of(work, struct sg_request, ew.work);
1269 	struct sg_fd *sfp = srp->parentfp;
1270 
1271 	sg_finish_rem_req(srp);
1272 	kref_put(&sfp->f_ref, sg_remove_sfp);
1273 }
1274 
1275 /*
1276  * This function is a "bottom half" handler that is called by the mid
1277  * level when a command is completed (or has failed).
1278  */
1279 static void
sg_rq_end_io(struct request * rq,int uptodate)1280 sg_rq_end_io(struct request *rq, int uptodate)
1281 {
1282 	struct sg_request *srp = rq->end_io_data;
1283 	Sg_device *sdp;
1284 	Sg_fd *sfp;
1285 	unsigned long iflags;
1286 	unsigned int ms;
1287 	char *sense;
1288 	int result, resid, done = 1;
1289 
1290 	if (WARN_ON(srp->done != 0))
1291 		return;
1292 
1293 	sfp = srp->parentfp;
1294 	if (WARN_ON(sfp == NULL))
1295 		return;
1296 
1297 	sdp = sfp->parentdp;
1298 	if (unlikely(atomic_read(&sdp->detaching)))
1299 		pr_info("%s: device detaching\n", __func__);
1300 
1301 	sense = rq->sense;
1302 	result = rq->errors;
1303 	resid = rq->resid_len;
1304 
1305 	SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sdp,
1306 				      "sg_cmd_done: pack_id=%d, res=0x%x\n",
1307 				      srp->header.pack_id, result));
1308 	srp->header.resid = resid;
1309 	ms = jiffies_to_msecs(jiffies);
1310 	srp->header.duration = (ms > srp->header.duration) ?
1311 				(ms - srp->header.duration) : 0;
1312 	if (0 != result) {
1313 		struct scsi_sense_hdr sshdr;
1314 
1315 		srp->header.status = 0xff & result;
1316 		srp->header.masked_status = status_byte(result);
1317 		srp->header.msg_status = msg_byte(result);
1318 		srp->header.host_status = host_byte(result);
1319 		srp->header.driver_status = driver_byte(result);
1320 		if ((sdp->sgdebug > 0) &&
1321 		    ((CHECK_CONDITION == srp->header.masked_status) ||
1322 		     (COMMAND_TERMINATED == srp->header.masked_status)))
1323 			__scsi_print_sense(sdp->device, __func__, sense,
1324 					   SCSI_SENSE_BUFFERSIZE);
1325 
1326 		/* Following if statement is a patch supplied by Eric Youngdale */
1327 		if (driver_byte(result) != 0
1328 		    && scsi_normalize_sense(sense, SCSI_SENSE_BUFFERSIZE, &sshdr)
1329 		    && !scsi_sense_is_deferred(&sshdr)
1330 		    && sshdr.sense_key == UNIT_ATTENTION
1331 		    && sdp->device->removable) {
1332 			/* Detected possible disc change. Set the bit - this */
1333 			/* may be used if there are filesystems using this device */
1334 			sdp->device->changed = 1;
1335 		}
1336 	}
1337 	/* Rely on write phase to clean out srp status values, so no "else" */
1338 
1339 	/*
1340 	 * Free the request as soon as it is complete so that its resources
1341 	 * can be reused without waiting for userspace to read() the
1342 	 * result.  But keep the associated bio (if any) around until
1343 	 * blk_rq_unmap_user() can be called from user context.
1344 	 */
1345 	srp->rq = NULL;
1346 	if (rq->cmd != rq->__cmd)
1347 		kfree(rq->cmd);
1348 	__blk_put_request(rq->q, rq);
1349 
1350 	write_lock_irqsave(&sfp->rq_list_lock, iflags);
1351 	if (unlikely(srp->orphan)) {
1352 		if (sfp->keep_orphan)
1353 			srp->sg_io_owned = 0;
1354 		else
1355 			done = 0;
1356 	}
1357 	srp->done = done;
1358 	write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1359 
1360 	if (likely(done)) {
1361 		/* Now wake up any sg_read() that is waiting for this
1362 		 * packet.
1363 		 */
1364 		wake_up_interruptible(&sfp->read_wait);
1365 		kill_fasync(&sfp->async_qp, SIGPOLL, POLL_IN);
1366 		kref_put(&sfp->f_ref, sg_remove_sfp);
1367 	} else {
1368 		INIT_WORK(&srp->ew.work, sg_rq_end_io_usercontext);
1369 		schedule_work(&srp->ew.work);
1370 	}
1371 }
1372 
1373 static const struct file_operations sg_fops = {
1374 	.owner = THIS_MODULE,
1375 	.read = sg_read,
1376 	.write = sg_write,
1377 	.poll = sg_poll,
1378 	.unlocked_ioctl = sg_ioctl,
1379 #ifdef CONFIG_COMPAT
1380 	.compat_ioctl = sg_compat_ioctl,
1381 #endif
1382 	.open = sg_open,
1383 	.mmap = sg_mmap,
1384 	.release = sg_release,
1385 	.fasync = sg_fasync,
1386 	.llseek = no_llseek,
1387 };
1388 
1389 static struct class *sg_sysfs_class;
1390 
1391 static int sg_sysfs_valid = 0;
1392 
1393 static Sg_device *
sg_alloc(struct gendisk * disk,struct scsi_device * scsidp)1394 sg_alloc(struct gendisk *disk, struct scsi_device *scsidp)
1395 {
1396 	struct request_queue *q = scsidp->request_queue;
1397 	Sg_device *sdp;
1398 	unsigned long iflags;
1399 	int error;
1400 	u32 k;
1401 
1402 	sdp = kzalloc(sizeof(Sg_device), GFP_KERNEL);
1403 	if (!sdp) {
1404 		sdev_printk(KERN_WARNING, scsidp, "%s: kmalloc Sg_device "
1405 			    "failure\n", __func__);
1406 		return ERR_PTR(-ENOMEM);
1407 	}
1408 
1409 	idr_preload(GFP_KERNEL);
1410 	write_lock_irqsave(&sg_index_lock, iflags);
1411 
1412 	error = idr_alloc(&sg_index_idr, sdp, 0, SG_MAX_DEVS, GFP_NOWAIT);
1413 	if (error < 0) {
1414 		if (error == -ENOSPC) {
1415 			sdev_printk(KERN_WARNING, scsidp,
1416 				    "Unable to attach sg device type=%d, minor number exceeds %d\n",
1417 				    scsidp->type, SG_MAX_DEVS - 1);
1418 			error = -ENODEV;
1419 		} else {
1420 			sdev_printk(KERN_WARNING, scsidp, "%s: idr "
1421 				    "allocation Sg_device failure: %d\n",
1422 				    __func__, error);
1423 		}
1424 		goto out_unlock;
1425 	}
1426 	k = error;
1427 
1428 	SCSI_LOG_TIMEOUT(3, sdev_printk(KERN_INFO, scsidp,
1429 					"sg_alloc: dev=%d \n", k));
1430 	sprintf(disk->disk_name, "sg%d", k);
1431 	disk->first_minor = k;
1432 	sdp->disk = disk;
1433 	sdp->device = scsidp;
1434 	mutex_init(&sdp->open_rel_lock);
1435 	INIT_LIST_HEAD(&sdp->sfds);
1436 	init_waitqueue_head(&sdp->open_wait);
1437 	atomic_set(&sdp->detaching, 0);
1438 	rwlock_init(&sdp->sfd_lock);
1439 	sdp->sg_tablesize = queue_max_segments(q);
1440 	sdp->index = k;
1441 	kref_init(&sdp->d_ref);
1442 	error = 0;
1443 
1444 out_unlock:
1445 	write_unlock_irqrestore(&sg_index_lock, iflags);
1446 	idr_preload_end();
1447 
1448 	if (error) {
1449 		kfree(sdp);
1450 		return ERR_PTR(error);
1451 	}
1452 	return sdp;
1453 }
1454 
1455 static int
sg_add_device(struct device * cl_dev,struct class_interface * cl_intf)1456 sg_add_device(struct device *cl_dev, struct class_interface *cl_intf)
1457 {
1458 	struct scsi_device *scsidp = to_scsi_device(cl_dev->parent);
1459 	struct gendisk *disk;
1460 	Sg_device *sdp = NULL;
1461 	struct cdev * cdev = NULL;
1462 	int error;
1463 	unsigned long iflags;
1464 
1465 	disk = alloc_disk(1);
1466 	if (!disk) {
1467 		pr_warn("%s: alloc_disk failed\n", __func__);
1468 		return -ENOMEM;
1469 	}
1470 	disk->major = SCSI_GENERIC_MAJOR;
1471 
1472 	error = -ENOMEM;
1473 	cdev = cdev_alloc();
1474 	if (!cdev) {
1475 		pr_warn("%s: cdev_alloc failed\n", __func__);
1476 		goto out;
1477 	}
1478 	cdev->owner = THIS_MODULE;
1479 	cdev->ops = &sg_fops;
1480 
1481 	sdp = sg_alloc(disk, scsidp);
1482 	if (IS_ERR(sdp)) {
1483 		pr_warn("%s: sg_alloc failed\n", __func__);
1484 		error = PTR_ERR(sdp);
1485 		goto out;
1486 	}
1487 
1488 	error = cdev_add(cdev, MKDEV(SCSI_GENERIC_MAJOR, sdp->index), 1);
1489 	if (error)
1490 		goto cdev_add_err;
1491 
1492 	sdp->cdev = cdev;
1493 	if (sg_sysfs_valid) {
1494 		struct device *sg_class_member;
1495 
1496 		sg_class_member = device_create(sg_sysfs_class, cl_dev->parent,
1497 						MKDEV(SCSI_GENERIC_MAJOR,
1498 						      sdp->index),
1499 						sdp, "%s", disk->disk_name);
1500 		if (IS_ERR(sg_class_member)) {
1501 			pr_err("%s: device_create failed\n", __func__);
1502 			error = PTR_ERR(sg_class_member);
1503 			goto cdev_add_err;
1504 		}
1505 		error = sysfs_create_link(&scsidp->sdev_gendev.kobj,
1506 					  &sg_class_member->kobj, "generic");
1507 		if (error)
1508 			pr_err("%s: unable to make symlink 'generic' back "
1509 			       "to sg%d\n", __func__, sdp->index);
1510 	} else
1511 		pr_warn("%s: sg_sys Invalid\n", __func__);
1512 
1513 	sdev_printk(KERN_NOTICE, scsidp, "Attached scsi generic sg%d "
1514 		    "type %d\n", sdp->index, scsidp->type);
1515 
1516 	dev_set_drvdata(cl_dev, sdp);
1517 
1518 	return 0;
1519 
1520 cdev_add_err:
1521 	write_lock_irqsave(&sg_index_lock, iflags);
1522 	idr_remove(&sg_index_idr, sdp->index);
1523 	write_unlock_irqrestore(&sg_index_lock, iflags);
1524 	kfree(sdp);
1525 
1526 out:
1527 	put_disk(disk);
1528 	if (cdev)
1529 		cdev_del(cdev);
1530 	return error;
1531 }
1532 
1533 static void
sg_device_destroy(struct kref * kref)1534 sg_device_destroy(struct kref *kref)
1535 {
1536 	struct sg_device *sdp = container_of(kref, struct sg_device, d_ref);
1537 	unsigned long flags;
1538 
1539 	/* CAUTION!  Note that the device can still be found via idr_find()
1540 	 * even though the refcount is 0.  Therefore, do idr_remove() BEFORE
1541 	 * any other cleanup.
1542 	 */
1543 
1544 	write_lock_irqsave(&sg_index_lock, flags);
1545 	idr_remove(&sg_index_idr, sdp->index);
1546 	write_unlock_irqrestore(&sg_index_lock, flags);
1547 
1548 	SCSI_LOG_TIMEOUT(3,
1549 		sg_printk(KERN_INFO, sdp, "sg_device_destroy\n"));
1550 
1551 	put_disk(sdp->disk);
1552 	kfree(sdp);
1553 }
1554 
1555 static void
sg_remove_device(struct device * cl_dev,struct class_interface * cl_intf)1556 sg_remove_device(struct device *cl_dev, struct class_interface *cl_intf)
1557 {
1558 	struct scsi_device *scsidp = to_scsi_device(cl_dev->parent);
1559 	Sg_device *sdp = dev_get_drvdata(cl_dev);
1560 	unsigned long iflags;
1561 	Sg_fd *sfp;
1562 	int val;
1563 
1564 	if (!sdp)
1565 		return;
1566 	/* want sdp->detaching non-zero as soon as possible */
1567 	val = atomic_inc_return(&sdp->detaching);
1568 	if (val > 1)
1569 		return; /* only want to do following once per device */
1570 
1571 	SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
1572 				      "%s\n", __func__));
1573 
1574 	read_lock_irqsave(&sdp->sfd_lock, iflags);
1575 	list_for_each_entry(sfp, &sdp->sfds, sfd_siblings) {
1576 		wake_up_interruptible_all(&sfp->read_wait);
1577 		kill_fasync(&sfp->async_qp, SIGPOLL, POLL_HUP);
1578 	}
1579 	wake_up_interruptible_all(&sdp->open_wait);
1580 	read_unlock_irqrestore(&sdp->sfd_lock, iflags);
1581 
1582 	sysfs_remove_link(&scsidp->sdev_gendev.kobj, "generic");
1583 	device_destroy(sg_sysfs_class, MKDEV(SCSI_GENERIC_MAJOR, sdp->index));
1584 	cdev_del(sdp->cdev);
1585 	sdp->cdev = NULL;
1586 
1587 	kref_put(&sdp->d_ref, sg_device_destroy);
1588 }
1589 
1590 module_param_named(scatter_elem_sz, scatter_elem_sz, int, S_IRUGO | S_IWUSR);
1591 module_param_named(def_reserved_size, def_reserved_size, int,
1592 		   S_IRUGO | S_IWUSR);
1593 module_param_named(allow_dio, sg_allow_dio, int, S_IRUGO | S_IWUSR);
1594 
1595 MODULE_AUTHOR("Douglas Gilbert");
1596 MODULE_DESCRIPTION("SCSI generic (sg) driver");
1597 MODULE_LICENSE("GPL");
1598 MODULE_VERSION(SG_VERSION_STR);
1599 MODULE_ALIAS_CHARDEV_MAJOR(SCSI_GENERIC_MAJOR);
1600 
1601 MODULE_PARM_DESC(scatter_elem_sz, "scatter gather element "
1602                 "size (default: max(SG_SCATTER_SZ, PAGE_SIZE))");
1603 MODULE_PARM_DESC(def_reserved_size, "size of buffer reserved for each fd");
1604 MODULE_PARM_DESC(allow_dio, "allow direct I/O (default: 0 (disallow))");
1605 
1606 static int __init
init_sg(void)1607 init_sg(void)
1608 {
1609 	int rc;
1610 
1611 	if (scatter_elem_sz < PAGE_SIZE) {
1612 		scatter_elem_sz = PAGE_SIZE;
1613 		scatter_elem_sz_prev = scatter_elem_sz;
1614 	}
1615 	if (def_reserved_size >= 0)
1616 		sg_big_buff = def_reserved_size;
1617 	else
1618 		def_reserved_size = sg_big_buff;
1619 
1620 	rc = register_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0),
1621 				    SG_MAX_DEVS, "sg");
1622 	if (rc)
1623 		return rc;
1624         sg_sysfs_class = class_create(THIS_MODULE, "scsi_generic");
1625         if ( IS_ERR(sg_sysfs_class) ) {
1626 		rc = PTR_ERR(sg_sysfs_class);
1627 		goto err_out;
1628         }
1629 	sg_sysfs_valid = 1;
1630 	rc = scsi_register_interface(&sg_interface);
1631 	if (0 == rc) {
1632 #ifdef CONFIG_SCSI_PROC_FS
1633 		sg_proc_init();
1634 #endif				/* CONFIG_SCSI_PROC_FS */
1635 		return 0;
1636 	}
1637 	class_destroy(sg_sysfs_class);
1638 err_out:
1639 	unregister_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0), SG_MAX_DEVS);
1640 	return rc;
1641 }
1642 
1643 static void __exit
exit_sg(void)1644 exit_sg(void)
1645 {
1646 #ifdef CONFIG_SCSI_PROC_FS
1647 	sg_proc_cleanup();
1648 #endif				/* CONFIG_SCSI_PROC_FS */
1649 	scsi_unregister_interface(&sg_interface);
1650 	class_destroy(sg_sysfs_class);
1651 	sg_sysfs_valid = 0;
1652 	unregister_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0),
1653 				 SG_MAX_DEVS);
1654 	idr_destroy(&sg_index_idr);
1655 }
1656 
1657 static int
sg_start_req(Sg_request * srp,unsigned char * cmd)1658 sg_start_req(Sg_request *srp, unsigned char *cmd)
1659 {
1660 	int res;
1661 	struct request *rq;
1662 	Sg_fd *sfp = srp->parentfp;
1663 	sg_io_hdr_t *hp = &srp->header;
1664 	int dxfer_len = (int) hp->dxfer_len;
1665 	int dxfer_dir = hp->dxfer_direction;
1666 	unsigned int iov_count = hp->iovec_count;
1667 	Sg_scatter_hold *req_schp = &srp->data;
1668 	Sg_scatter_hold *rsv_schp = &sfp->reserve;
1669 	struct request_queue *q = sfp->parentdp->device->request_queue;
1670 	struct rq_map_data *md, map_data;
1671 	int rw = hp->dxfer_direction == SG_DXFER_TO_DEV ? WRITE : READ;
1672 	unsigned char *long_cmdp = NULL;
1673 
1674 	SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
1675 				      "sg_start_req: dxfer_len=%d\n",
1676 				      dxfer_len));
1677 
1678 	if (hp->cmd_len > BLK_MAX_CDB) {
1679 		long_cmdp = kzalloc(hp->cmd_len, GFP_KERNEL);
1680 		if (!long_cmdp)
1681 			return -ENOMEM;
1682 	}
1683 
1684 	/*
1685 	 * NOTE
1686 	 *
1687 	 * With scsi-mq enabled, there are a fixed number of preallocated
1688 	 * requests equal in number to shost->can_queue.  If all of the
1689 	 * preallocated requests are already in use, then using GFP_ATOMIC with
1690 	 * blk_get_request() will return -EWOULDBLOCK, whereas using GFP_KERNEL
1691 	 * will cause blk_get_request() to sleep until an active command
1692 	 * completes, freeing up a request.  Neither option is ideal, but
1693 	 * GFP_KERNEL is the better choice to prevent userspace from getting an
1694 	 * unexpected EWOULDBLOCK.
1695 	 *
1696 	 * With scsi-mq disabled, blk_get_request() with GFP_KERNEL usually
1697 	 * does not sleep except under memory pressure.
1698 	 */
1699 	rq = blk_get_request(q, rw, GFP_KERNEL);
1700 	if (IS_ERR(rq)) {
1701 		kfree(long_cmdp);
1702 		return PTR_ERR(rq);
1703 	}
1704 
1705 	blk_rq_set_block_pc(rq);
1706 
1707 	if (hp->cmd_len > BLK_MAX_CDB)
1708 		rq->cmd = long_cmdp;
1709 	memcpy(rq->cmd, cmd, hp->cmd_len);
1710 	rq->cmd_len = hp->cmd_len;
1711 
1712 	srp->rq = rq;
1713 	rq->end_io_data = srp;
1714 	rq->sense = srp->sense_b;
1715 	rq->retries = SG_DEFAULT_RETRIES;
1716 
1717 	if ((dxfer_len <= 0) || (dxfer_dir == SG_DXFER_NONE))
1718 		return 0;
1719 
1720 	if (sg_allow_dio && hp->flags & SG_FLAG_DIRECT_IO &&
1721 	    dxfer_dir != SG_DXFER_UNKNOWN && !iov_count &&
1722 	    !sfp->parentdp->device->host->unchecked_isa_dma &&
1723 	    blk_rq_aligned(q, (unsigned long)hp->dxferp, dxfer_len))
1724 		md = NULL;
1725 	else
1726 		md = &map_data;
1727 
1728 	if (md) {
1729 		if (!sg_res_in_use(sfp) && dxfer_len <= rsv_schp->bufflen)
1730 			sg_link_reserve(sfp, srp, dxfer_len);
1731 		else {
1732 			res = sg_build_indirect(req_schp, sfp, dxfer_len);
1733 			if (res)
1734 				return res;
1735 		}
1736 
1737 		md->pages = req_schp->pages;
1738 		md->page_order = req_schp->page_order;
1739 		md->nr_entries = req_schp->k_use_sg;
1740 		md->offset = 0;
1741 		md->null_mapped = hp->dxferp ? 0 : 1;
1742 		if (dxfer_dir == SG_DXFER_TO_FROM_DEV)
1743 			md->from_user = 1;
1744 		else
1745 			md->from_user = 0;
1746 	}
1747 
1748 	if (iov_count) {
1749 		struct iovec *iov = NULL;
1750 		struct iov_iter i;
1751 
1752 		res = import_iovec(rw, hp->dxferp, iov_count, 0, &iov, &i);
1753 		if (res < 0)
1754 			return res;
1755 
1756 		iov_iter_truncate(&i, hp->dxfer_len);
1757 
1758 		res = blk_rq_map_user_iov(q, rq, md, &i, GFP_ATOMIC);
1759 		kfree(iov);
1760 	} else
1761 		res = blk_rq_map_user(q, rq, md, hp->dxferp,
1762 				      hp->dxfer_len, GFP_ATOMIC);
1763 
1764 	if (!res) {
1765 		srp->bio = rq->bio;
1766 
1767 		if (!md) {
1768 			req_schp->dio_in_use = 1;
1769 			hp->info |= SG_INFO_DIRECT_IO;
1770 		}
1771 	}
1772 	return res;
1773 }
1774 
1775 static int
sg_finish_rem_req(Sg_request * srp)1776 sg_finish_rem_req(Sg_request *srp)
1777 {
1778 	int ret = 0;
1779 
1780 	Sg_fd *sfp = srp->parentfp;
1781 	Sg_scatter_hold *req_schp = &srp->data;
1782 
1783 	SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
1784 				      "sg_finish_rem_req: res_used=%d\n",
1785 				      (int) srp->res_used));
1786 	if (srp->bio)
1787 		ret = blk_rq_unmap_user(srp->bio);
1788 
1789 	if (srp->rq) {
1790 		if (srp->rq->cmd != srp->rq->__cmd)
1791 			kfree(srp->rq->cmd);
1792 		blk_put_request(srp->rq);
1793 	}
1794 
1795 	if (srp->res_used)
1796 		sg_unlink_reserve(sfp, srp);
1797 	else
1798 		sg_remove_scat(sfp, req_schp);
1799 
1800 	sg_remove_request(sfp, srp);
1801 
1802 	return ret;
1803 }
1804 
1805 static int
sg_build_sgat(Sg_scatter_hold * schp,const Sg_fd * sfp,int tablesize)1806 sg_build_sgat(Sg_scatter_hold * schp, const Sg_fd * sfp, int tablesize)
1807 {
1808 	int sg_bufflen = tablesize * sizeof(struct page *);
1809 	gfp_t gfp_flags = GFP_ATOMIC | __GFP_NOWARN;
1810 
1811 	schp->pages = kzalloc(sg_bufflen, gfp_flags);
1812 	if (!schp->pages)
1813 		return -ENOMEM;
1814 	schp->sglist_len = sg_bufflen;
1815 	return tablesize;	/* number of scat_gath elements allocated */
1816 }
1817 
1818 static int
sg_build_indirect(Sg_scatter_hold * schp,Sg_fd * sfp,int buff_size)1819 sg_build_indirect(Sg_scatter_hold * schp, Sg_fd * sfp, int buff_size)
1820 {
1821 	int ret_sz = 0, i, k, rem_sz, num, mx_sc_elems;
1822 	int sg_tablesize = sfp->parentdp->sg_tablesize;
1823 	int blk_size = buff_size, order;
1824 	gfp_t gfp_mask = GFP_ATOMIC | __GFP_COMP | __GFP_NOWARN;
1825 
1826 	if (blk_size < 0)
1827 		return -EFAULT;
1828 	if (0 == blk_size)
1829 		++blk_size;	/* don't know why */
1830 	/* round request up to next highest SG_SECTOR_SZ byte boundary */
1831 	blk_size = ALIGN(blk_size, SG_SECTOR_SZ);
1832 	SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
1833 		"sg_build_indirect: buff_size=%d, blk_size=%d\n",
1834 		buff_size, blk_size));
1835 
1836 	/* N.B. ret_sz carried into this block ... */
1837 	mx_sc_elems = sg_build_sgat(schp, sfp, sg_tablesize);
1838 	if (mx_sc_elems < 0)
1839 		return mx_sc_elems;	/* most likely -ENOMEM */
1840 
1841 	num = scatter_elem_sz;
1842 	if (unlikely(num != scatter_elem_sz_prev)) {
1843 		if (num < PAGE_SIZE) {
1844 			scatter_elem_sz = PAGE_SIZE;
1845 			scatter_elem_sz_prev = PAGE_SIZE;
1846 		} else
1847 			scatter_elem_sz_prev = num;
1848 	}
1849 
1850 	if (sfp->low_dma)
1851 		gfp_mask |= GFP_DMA;
1852 
1853 	if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
1854 		gfp_mask |= __GFP_ZERO;
1855 
1856 	order = get_order(num);
1857 retry:
1858 	ret_sz = 1 << (PAGE_SHIFT + order);
1859 
1860 	for (k = 0, rem_sz = blk_size; rem_sz > 0 && k < mx_sc_elems;
1861 	     k++, rem_sz -= ret_sz) {
1862 
1863 		num = (rem_sz > scatter_elem_sz_prev) ?
1864 			scatter_elem_sz_prev : rem_sz;
1865 
1866 		schp->pages[k] = alloc_pages(gfp_mask, order);
1867 		if (!schp->pages[k])
1868 			goto out;
1869 
1870 		if (num == scatter_elem_sz_prev) {
1871 			if (unlikely(ret_sz > scatter_elem_sz_prev)) {
1872 				scatter_elem_sz = ret_sz;
1873 				scatter_elem_sz_prev = ret_sz;
1874 			}
1875 		}
1876 
1877 		SCSI_LOG_TIMEOUT(5, sg_printk(KERN_INFO, sfp->parentdp,
1878 				 "sg_build_indirect: k=%d, num=%d, ret_sz=%d\n",
1879 				 k, num, ret_sz));
1880 	}		/* end of for loop */
1881 
1882 	schp->page_order = order;
1883 	schp->k_use_sg = k;
1884 	SCSI_LOG_TIMEOUT(5, sg_printk(KERN_INFO, sfp->parentdp,
1885 			 "sg_build_indirect: k_use_sg=%d, rem_sz=%d\n",
1886 			 k, rem_sz));
1887 
1888 	schp->bufflen = blk_size;
1889 	if (rem_sz > 0)	/* must have failed */
1890 		return -ENOMEM;
1891 	return 0;
1892 out:
1893 	for (i = 0; i < k; i++)
1894 		__free_pages(schp->pages[i], order);
1895 
1896 	if (--order >= 0)
1897 		goto retry;
1898 
1899 	return -ENOMEM;
1900 }
1901 
1902 static void
sg_remove_scat(Sg_fd * sfp,Sg_scatter_hold * schp)1903 sg_remove_scat(Sg_fd * sfp, Sg_scatter_hold * schp)
1904 {
1905 	SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
1906 			 "sg_remove_scat: k_use_sg=%d\n", schp->k_use_sg));
1907 	if (schp->pages && schp->sglist_len > 0) {
1908 		if (!schp->dio_in_use) {
1909 			int k;
1910 
1911 			for (k = 0; k < schp->k_use_sg && schp->pages[k]; k++) {
1912 				SCSI_LOG_TIMEOUT(5,
1913 					sg_printk(KERN_INFO, sfp->parentdp,
1914 					"sg_remove_scat: k=%d, pg=0x%p\n",
1915 					k, schp->pages[k]));
1916 				__free_pages(schp->pages[k], schp->page_order);
1917 			}
1918 
1919 			kfree(schp->pages);
1920 		}
1921 	}
1922 	memset(schp, 0, sizeof (*schp));
1923 }
1924 
1925 static int
sg_read_oxfer(Sg_request * srp,char __user * outp,int num_read_xfer)1926 sg_read_oxfer(Sg_request * srp, char __user *outp, int num_read_xfer)
1927 {
1928 	Sg_scatter_hold *schp = &srp->data;
1929 	int k, num;
1930 
1931 	SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, srp->parentfp->parentdp,
1932 			 "sg_read_oxfer: num_read_xfer=%d\n",
1933 			 num_read_xfer));
1934 	if ((!outp) || (num_read_xfer <= 0))
1935 		return 0;
1936 
1937 	num = 1 << (PAGE_SHIFT + schp->page_order);
1938 	for (k = 0; k < schp->k_use_sg && schp->pages[k]; k++) {
1939 		if (num > num_read_xfer) {
1940 			if (__copy_to_user(outp, page_address(schp->pages[k]),
1941 					   num_read_xfer))
1942 				return -EFAULT;
1943 			break;
1944 		} else {
1945 			if (__copy_to_user(outp, page_address(schp->pages[k]),
1946 					   num))
1947 				return -EFAULT;
1948 			num_read_xfer -= num;
1949 			if (num_read_xfer <= 0)
1950 				break;
1951 			outp += num;
1952 		}
1953 	}
1954 
1955 	return 0;
1956 }
1957 
1958 static void
sg_build_reserve(Sg_fd * sfp,int req_size)1959 sg_build_reserve(Sg_fd * sfp, int req_size)
1960 {
1961 	Sg_scatter_hold *schp = &sfp->reserve;
1962 
1963 	SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
1964 			 "sg_build_reserve: req_size=%d\n", req_size));
1965 	do {
1966 		if (req_size < PAGE_SIZE)
1967 			req_size = PAGE_SIZE;
1968 		if (0 == sg_build_indirect(schp, sfp, req_size))
1969 			return;
1970 		else
1971 			sg_remove_scat(sfp, schp);
1972 		req_size >>= 1;	/* divide by 2 */
1973 	} while (req_size > (PAGE_SIZE / 2));
1974 }
1975 
1976 static void
sg_link_reserve(Sg_fd * sfp,Sg_request * srp,int size)1977 sg_link_reserve(Sg_fd * sfp, Sg_request * srp, int size)
1978 {
1979 	Sg_scatter_hold *req_schp = &srp->data;
1980 	Sg_scatter_hold *rsv_schp = &sfp->reserve;
1981 	int k, num, rem;
1982 
1983 	srp->res_used = 1;
1984 	SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
1985 			 "sg_link_reserve: size=%d\n", size));
1986 	rem = size;
1987 
1988 	num = 1 << (PAGE_SHIFT + rsv_schp->page_order);
1989 	for (k = 0; k < rsv_schp->k_use_sg; k++) {
1990 		if (rem <= num) {
1991 			req_schp->k_use_sg = k + 1;
1992 			req_schp->sglist_len = rsv_schp->sglist_len;
1993 			req_schp->pages = rsv_schp->pages;
1994 
1995 			req_schp->bufflen = size;
1996 			req_schp->page_order = rsv_schp->page_order;
1997 			break;
1998 		} else
1999 			rem -= num;
2000 	}
2001 
2002 	if (k >= rsv_schp->k_use_sg)
2003 		SCSI_LOG_TIMEOUT(1, sg_printk(KERN_INFO, sfp->parentdp,
2004 				 "sg_link_reserve: BAD size\n"));
2005 }
2006 
2007 static void
sg_unlink_reserve(Sg_fd * sfp,Sg_request * srp)2008 sg_unlink_reserve(Sg_fd * sfp, Sg_request * srp)
2009 {
2010 	Sg_scatter_hold *req_schp = &srp->data;
2011 
2012 	SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, srp->parentfp->parentdp,
2013 				      "sg_unlink_reserve: req->k_use_sg=%d\n",
2014 				      (int) req_schp->k_use_sg));
2015 	req_schp->k_use_sg = 0;
2016 	req_schp->bufflen = 0;
2017 	req_schp->pages = NULL;
2018 	req_schp->page_order = 0;
2019 	req_schp->sglist_len = 0;
2020 	sfp->save_scat_len = 0;
2021 	srp->res_used = 0;
2022 }
2023 
2024 static Sg_request *
sg_get_rq_mark(Sg_fd * sfp,int pack_id)2025 sg_get_rq_mark(Sg_fd * sfp, int pack_id)
2026 {
2027 	Sg_request *resp;
2028 	unsigned long iflags;
2029 
2030 	write_lock_irqsave(&sfp->rq_list_lock, iflags);
2031 	for (resp = sfp->headrp; resp; resp = resp->nextrp) {
2032 		/* look for requests that are ready + not SG_IO owned */
2033 		if ((1 == resp->done) && (!resp->sg_io_owned) &&
2034 		    ((-1 == pack_id) || (resp->header.pack_id == pack_id))) {
2035 			resp->done = 2;	/* guard against other readers */
2036 			break;
2037 		}
2038 	}
2039 	write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
2040 	return resp;
2041 }
2042 
2043 /* always adds to end of list */
2044 static Sg_request *
sg_add_request(Sg_fd * sfp)2045 sg_add_request(Sg_fd * sfp)
2046 {
2047 	int k;
2048 	unsigned long iflags;
2049 	Sg_request *resp;
2050 	Sg_request *rp = sfp->req_arr;
2051 
2052 	write_lock_irqsave(&sfp->rq_list_lock, iflags);
2053 	resp = sfp->headrp;
2054 	if (!resp) {
2055 		memset(rp, 0, sizeof (Sg_request));
2056 		rp->parentfp = sfp;
2057 		resp = rp;
2058 		sfp->headrp = resp;
2059 	} else {
2060 		if (0 == sfp->cmd_q)
2061 			resp = NULL;	/* command queuing disallowed */
2062 		else {
2063 			for (k = 0; k < SG_MAX_QUEUE; ++k, ++rp) {
2064 				if (!rp->parentfp)
2065 					break;
2066 			}
2067 			if (k < SG_MAX_QUEUE) {
2068 				memset(rp, 0, sizeof (Sg_request));
2069 				rp->parentfp = sfp;
2070 				while (resp->nextrp)
2071 					resp = resp->nextrp;
2072 				resp->nextrp = rp;
2073 				resp = rp;
2074 			} else
2075 				resp = NULL;
2076 		}
2077 	}
2078 	if (resp) {
2079 		resp->nextrp = NULL;
2080 		resp->header.duration = jiffies_to_msecs(jiffies);
2081 	}
2082 	write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
2083 	return resp;
2084 }
2085 
2086 /* Return of 1 for found; 0 for not found */
2087 static int
sg_remove_request(Sg_fd * sfp,Sg_request * srp)2088 sg_remove_request(Sg_fd * sfp, Sg_request * srp)
2089 {
2090 	Sg_request *prev_rp;
2091 	Sg_request *rp;
2092 	unsigned long iflags;
2093 	int res = 0;
2094 
2095 	if ((!sfp) || (!srp) || (!sfp->headrp))
2096 		return res;
2097 	write_lock_irqsave(&sfp->rq_list_lock, iflags);
2098 	prev_rp = sfp->headrp;
2099 	if (srp == prev_rp) {
2100 		sfp->headrp = prev_rp->nextrp;
2101 		prev_rp->parentfp = NULL;
2102 		res = 1;
2103 	} else {
2104 		while ((rp = prev_rp->nextrp)) {
2105 			if (srp == rp) {
2106 				prev_rp->nextrp = rp->nextrp;
2107 				rp->parentfp = NULL;
2108 				res = 1;
2109 				break;
2110 			}
2111 			prev_rp = rp;
2112 		}
2113 	}
2114 	write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
2115 	return res;
2116 }
2117 
2118 static Sg_fd *
sg_add_sfp(Sg_device * sdp)2119 sg_add_sfp(Sg_device * sdp)
2120 {
2121 	Sg_fd *sfp;
2122 	unsigned long iflags;
2123 	int bufflen;
2124 
2125 	sfp = kzalloc(sizeof(*sfp), GFP_ATOMIC | __GFP_NOWARN);
2126 	if (!sfp)
2127 		return ERR_PTR(-ENOMEM);
2128 
2129 	init_waitqueue_head(&sfp->read_wait);
2130 	rwlock_init(&sfp->rq_list_lock);
2131 
2132 	kref_init(&sfp->f_ref);
2133 	sfp->timeout = SG_DEFAULT_TIMEOUT;
2134 	sfp->timeout_user = SG_DEFAULT_TIMEOUT_USER;
2135 	sfp->force_packid = SG_DEF_FORCE_PACK_ID;
2136 	sfp->low_dma = (SG_DEF_FORCE_LOW_DMA == 0) ?
2137 	    sdp->device->host->unchecked_isa_dma : 1;
2138 	sfp->cmd_q = SG_DEF_COMMAND_Q;
2139 	sfp->keep_orphan = SG_DEF_KEEP_ORPHAN;
2140 	sfp->parentdp = sdp;
2141 	write_lock_irqsave(&sdp->sfd_lock, iflags);
2142 	if (atomic_read(&sdp->detaching)) {
2143 		write_unlock_irqrestore(&sdp->sfd_lock, iflags);
2144 		return ERR_PTR(-ENODEV);
2145 	}
2146 	list_add_tail(&sfp->sfd_siblings, &sdp->sfds);
2147 	write_unlock_irqrestore(&sdp->sfd_lock, iflags);
2148 	SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
2149 				      "sg_add_sfp: sfp=0x%p\n", sfp));
2150 	if (unlikely(sg_big_buff != def_reserved_size))
2151 		sg_big_buff = def_reserved_size;
2152 
2153 	bufflen = min_t(int, sg_big_buff,
2154 			max_sectors_bytes(sdp->device->request_queue));
2155 	sg_build_reserve(sfp, bufflen);
2156 	SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
2157 				      "sg_add_sfp: bufflen=%d, k_use_sg=%d\n",
2158 				      sfp->reserve.bufflen,
2159 				      sfp->reserve.k_use_sg));
2160 
2161 	kref_get(&sdp->d_ref);
2162 	__module_get(THIS_MODULE);
2163 	return sfp;
2164 }
2165 
2166 static void
sg_remove_sfp_usercontext(struct work_struct * work)2167 sg_remove_sfp_usercontext(struct work_struct *work)
2168 {
2169 	struct sg_fd *sfp = container_of(work, struct sg_fd, ew.work);
2170 	struct sg_device *sdp = sfp->parentdp;
2171 
2172 	/* Cleanup any responses which were never read(). */
2173 	while (sfp->headrp)
2174 		sg_finish_rem_req(sfp->headrp);
2175 
2176 	if (sfp->reserve.bufflen > 0) {
2177 		SCSI_LOG_TIMEOUT(6, sg_printk(KERN_INFO, sdp,
2178 				"sg_remove_sfp:    bufflen=%d, k_use_sg=%d\n",
2179 				(int) sfp->reserve.bufflen,
2180 				(int) sfp->reserve.k_use_sg));
2181 		sg_remove_scat(sfp, &sfp->reserve);
2182 	}
2183 
2184 	SCSI_LOG_TIMEOUT(6, sg_printk(KERN_INFO, sdp,
2185 			"sg_remove_sfp: sfp=0x%p\n", sfp));
2186 	kfree(sfp);
2187 
2188 	scsi_device_put(sdp->device);
2189 	kref_put(&sdp->d_ref, sg_device_destroy);
2190 	module_put(THIS_MODULE);
2191 }
2192 
2193 static void
sg_remove_sfp(struct kref * kref)2194 sg_remove_sfp(struct kref *kref)
2195 {
2196 	struct sg_fd *sfp = container_of(kref, struct sg_fd, f_ref);
2197 	struct sg_device *sdp = sfp->parentdp;
2198 	unsigned long iflags;
2199 
2200 	write_lock_irqsave(&sdp->sfd_lock, iflags);
2201 	list_del(&sfp->sfd_siblings);
2202 	write_unlock_irqrestore(&sdp->sfd_lock, iflags);
2203 
2204 	INIT_WORK(&sfp->ew.work, sg_remove_sfp_usercontext);
2205 	schedule_work(&sfp->ew.work);
2206 }
2207 
2208 static int
sg_res_in_use(Sg_fd * sfp)2209 sg_res_in_use(Sg_fd * sfp)
2210 {
2211 	const Sg_request *srp;
2212 	unsigned long iflags;
2213 
2214 	read_lock_irqsave(&sfp->rq_list_lock, iflags);
2215 	for (srp = sfp->headrp; srp; srp = srp->nextrp)
2216 		if (srp->res_used)
2217 			break;
2218 	read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
2219 	return srp ? 1 : 0;
2220 }
2221 
2222 #ifdef CONFIG_SCSI_PROC_FS
2223 static int
sg_idr_max_id(int id,void * p,void * data)2224 sg_idr_max_id(int id, void *p, void *data)
2225 {
2226 	int *k = data;
2227 
2228 	if (*k < id)
2229 		*k = id;
2230 
2231 	return 0;
2232 }
2233 
2234 static int
sg_last_dev(void)2235 sg_last_dev(void)
2236 {
2237 	int k = -1;
2238 	unsigned long iflags;
2239 
2240 	read_lock_irqsave(&sg_index_lock, iflags);
2241 	idr_for_each(&sg_index_idr, sg_idr_max_id, &k);
2242 	read_unlock_irqrestore(&sg_index_lock, iflags);
2243 	return k + 1;		/* origin 1 */
2244 }
2245 #endif
2246 
2247 /* must be called with sg_index_lock held */
sg_lookup_dev(int dev)2248 static Sg_device *sg_lookup_dev(int dev)
2249 {
2250 	return idr_find(&sg_index_idr, dev);
2251 }
2252 
2253 static Sg_device *
sg_get_dev(int dev)2254 sg_get_dev(int dev)
2255 {
2256 	struct sg_device *sdp;
2257 	unsigned long flags;
2258 
2259 	read_lock_irqsave(&sg_index_lock, flags);
2260 	sdp = sg_lookup_dev(dev);
2261 	if (!sdp)
2262 		sdp = ERR_PTR(-ENXIO);
2263 	else if (atomic_read(&sdp->detaching)) {
2264 		/* If sdp->detaching, then the refcount may already be 0, in
2265 		 * which case it would be a bug to do kref_get().
2266 		 */
2267 		sdp = ERR_PTR(-ENODEV);
2268 	} else
2269 		kref_get(&sdp->d_ref);
2270 	read_unlock_irqrestore(&sg_index_lock, flags);
2271 
2272 	return sdp;
2273 }
2274 
2275 #ifdef CONFIG_SCSI_PROC_FS
2276 
2277 static struct proc_dir_entry *sg_proc_sgp = NULL;
2278 
2279 static char sg_proc_sg_dirname[] = "scsi/sg";
2280 
2281 static int sg_proc_seq_show_int(struct seq_file *s, void *v);
2282 
2283 static int sg_proc_single_open_adio(struct inode *inode, struct file *file);
2284 static ssize_t sg_proc_write_adio(struct file *filp, const char __user *buffer,
2285 			          size_t count, loff_t *off);
2286 static const struct file_operations adio_fops = {
2287 	.owner = THIS_MODULE,
2288 	.open = sg_proc_single_open_adio,
2289 	.read = seq_read,
2290 	.llseek = seq_lseek,
2291 	.write = sg_proc_write_adio,
2292 	.release = single_release,
2293 };
2294 
2295 static int sg_proc_single_open_dressz(struct inode *inode, struct file *file);
2296 static ssize_t sg_proc_write_dressz(struct file *filp,
2297 		const char __user *buffer, size_t count, loff_t *off);
2298 static const struct file_operations dressz_fops = {
2299 	.owner = THIS_MODULE,
2300 	.open = sg_proc_single_open_dressz,
2301 	.read = seq_read,
2302 	.llseek = seq_lseek,
2303 	.write = sg_proc_write_dressz,
2304 	.release = single_release,
2305 };
2306 
2307 static int sg_proc_seq_show_version(struct seq_file *s, void *v);
2308 static int sg_proc_single_open_version(struct inode *inode, struct file *file);
2309 static const struct file_operations version_fops = {
2310 	.owner = THIS_MODULE,
2311 	.open = sg_proc_single_open_version,
2312 	.read = seq_read,
2313 	.llseek = seq_lseek,
2314 	.release = single_release,
2315 };
2316 
2317 static int sg_proc_seq_show_devhdr(struct seq_file *s, void *v);
2318 static int sg_proc_single_open_devhdr(struct inode *inode, struct file *file);
2319 static const struct file_operations devhdr_fops = {
2320 	.owner = THIS_MODULE,
2321 	.open = sg_proc_single_open_devhdr,
2322 	.read = seq_read,
2323 	.llseek = seq_lseek,
2324 	.release = single_release,
2325 };
2326 
2327 static int sg_proc_seq_show_dev(struct seq_file *s, void *v);
2328 static int sg_proc_open_dev(struct inode *inode, struct file *file);
2329 static void * dev_seq_start(struct seq_file *s, loff_t *pos);
2330 static void * dev_seq_next(struct seq_file *s, void *v, loff_t *pos);
2331 static void dev_seq_stop(struct seq_file *s, void *v);
2332 static const struct file_operations dev_fops = {
2333 	.owner = THIS_MODULE,
2334 	.open = sg_proc_open_dev,
2335 	.read = seq_read,
2336 	.llseek = seq_lseek,
2337 	.release = seq_release,
2338 };
2339 static const struct seq_operations dev_seq_ops = {
2340 	.start = dev_seq_start,
2341 	.next  = dev_seq_next,
2342 	.stop  = dev_seq_stop,
2343 	.show  = sg_proc_seq_show_dev,
2344 };
2345 
2346 static int sg_proc_seq_show_devstrs(struct seq_file *s, void *v);
2347 static int sg_proc_open_devstrs(struct inode *inode, struct file *file);
2348 static const struct file_operations devstrs_fops = {
2349 	.owner = THIS_MODULE,
2350 	.open = sg_proc_open_devstrs,
2351 	.read = seq_read,
2352 	.llseek = seq_lseek,
2353 	.release = seq_release,
2354 };
2355 static const struct seq_operations devstrs_seq_ops = {
2356 	.start = dev_seq_start,
2357 	.next  = dev_seq_next,
2358 	.stop  = dev_seq_stop,
2359 	.show  = sg_proc_seq_show_devstrs,
2360 };
2361 
2362 static int sg_proc_seq_show_debug(struct seq_file *s, void *v);
2363 static int sg_proc_open_debug(struct inode *inode, struct file *file);
2364 static const struct file_operations debug_fops = {
2365 	.owner = THIS_MODULE,
2366 	.open = sg_proc_open_debug,
2367 	.read = seq_read,
2368 	.llseek = seq_lseek,
2369 	.release = seq_release,
2370 };
2371 static const struct seq_operations debug_seq_ops = {
2372 	.start = dev_seq_start,
2373 	.next  = dev_seq_next,
2374 	.stop  = dev_seq_stop,
2375 	.show  = sg_proc_seq_show_debug,
2376 };
2377 
2378 
2379 struct sg_proc_leaf {
2380 	const char * name;
2381 	const struct file_operations * fops;
2382 };
2383 
2384 static const struct sg_proc_leaf sg_proc_leaf_arr[] = {
2385 	{"allow_dio", &adio_fops},
2386 	{"debug", &debug_fops},
2387 	{"def_reserved_size", &dressz_fops},
2388 	{"device_hdr", &devhdr_fops},
2389 	{"devices", &dev_fops},
2390 	{"device_strs", &devstrs_fops},
2391 	{"version", &version_fops}
2392 };
2393 
2394 static int
sg_proc_init(void)2395 sg_proc_init(void)
2396 {
2397 	int num_leaves = ARRAY_SIZE(sg_proc_leaf_arr);
2398 	int k;
2399 
2400 	sg_proc_sgp = proc_mkdir(sg_proc_sg_dirname, NULL);
2401 	if (!sg_proc_sgp)
2402 		return 1;
2403 	for (k = 0; k < num_leaves; ++k) {
2404 		const struct sg_proc_leaf *leaf = &sg_proc_leaf_arr[k];
2405 		umode_t mask = leaf->fops->write ? S_IRUGO | S_IWUSR : S_IRUGO;
2406 		proc_create(leaf->name, mask, sg_proc_sgp, leaf->fops);
2407 	}
2408 	return 0;
2409 }
2410 
2411 static void
sg_proc_cleanup(void)2412 sg_proc_cleanup(void)
2413 {
2414 	int k;
2415 	int num_leaves = ARRAY_SIZE(sg_proc_leaf_arr);
2416 
2417 	if (!sg_proc_sgp)
2418 		return;
2419 	for (k = 0; k < num_leaves; ++k)
2420 		remove_proc_entry(sg_proc_leaf_arr[k].name, sg_proc_sgp);
2421 	remove_proc_entry(sg_proc_sg_dirname, NULL);
2422 }
2423 
2424 
sg_proc_seq_show_int(struct seq_file * s,void * v)2425 static int sg_proc_seq_show_int(struct seq_file *s, void *v)
2426 {
2427 	seq_printf(s, "%d\n", *((int *)s->private));
2428 	return 0;
2429 }
2430 
sg_proc_single_open_adio(struct inode * inode,struct file * file)2431 static int sg_proc_single_open_adio(struct inode *inode, struct file *file)
2432 {
2433 	return single_open(file, sg_proc_seq_show_int, &sg_allow_dio);
2434 }
2435 
2436 static ssize_t
sg_proc_write_adio(struct file * filp,const char __user * buffer,size_t count,loff_t * off)2437 sg_proc_write_adio(struct file *filp, const char __user *buffer,
2438 		   size_t count, loff_t *off)
2439 {
2440 	int err;
2441 	unsigned long num;
2442 
2443 	if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
2444 		return -EACCES;
2445 	err = kstrtoul_from_user(buffer, count, 0, &num);
2446 	if (err)
2447 		return err;
2448 	sg_allow_dio = num ? 1 : 0;
2449 	return count;
2450 }
2451 
sg_proc_single_open_dressz(struct inode * inode,struct file * file)2452 static int sg_proc_single_open_dressz(struct inode *inode, struct file *file)
2453 {
2454 	return single_open(file, sg_proc_seq_show_int, &sg_big_buff);
2455 }
2456 
2457 static ssize_t
sg_proc_write_dressz(struct file * filp,const char __user * buffer,size_t count,loff_t * off)2458 sg_proc_write_dressz(struct file *filp, const char __user *buffer,
2459 		     size_t count, loff_t *off)
2460 {
2461 	int err;
2462 	unsigned long k = ULONG_MAX;
2463 
2464 	if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
2465 		return -EACCES;
2466 
2467 	err = kstrtoul_from_user(buffer, count, 0, &k);
2468 	if (err)
2469 		return err;
2470 	if (k <= 1048576) {	/* limit "big buff" to 1 MB */
2471 		sg_big_buff = k;
2472 		return count;
2473 	}
2474 	return -ERANGE;
2475 }
2476 
sg_proc_seq_show_version(struct seq_file * s,void * v)2477 static int sg_proc_seq_show_version(struct seq_file *s, void *v)
2478 {
2479 	seq_printf(s, "%d\t%s [%s]\n", sg_version_num, SG_VERSION_STR,
2480 		   sg_version_date);
2481 	return 0;
2482 }
2483 
sg_proc_single_open_version(struct inode * inode,struct file * file)2484 static int sg_proc_single_open_version(struct inode *inode, struct file *file)
2485 {
2486 	return single_open(file, sg_proc_seq_show_version, NULL);
2487 }
2488 
sg_proc_seq_show_devhdr(struct seq_file * s,void * v)2489 static int sg_proc_seq_show_devhdr(struct seq_file *s, void *v)
2490 {
2491 	seq_puts(s, "host\tchan\tid\tlun\ttype\topens\tqdepth\tbusy\tonline\n");
2492 	return 0;
2493 }
2494 
sg_proc_single_open_devhdr(struct inode * inode,struct file * file)2495 static int sg_proc_single_open_devhdr(struct inode *inode, struct file *file)
2496 {
2497 	return single_open(file, sg_proc_seq_show_devhdr, NULL);
2498 }
2499 
2500 struct sg_proc_deviter {
2501 	loff_t	index;
2502 	size_t	max;
2503 };
2504 
dev_seq_start(struct seq_file * s,loff_t * pos)2505 static void * dev_seq_start(struct seq_file *s, loff_t *pos)
2506 {
2507 	struct sg_proc_deviter * it = kmalloc(sizeof(*it), GFP_KERNEL);
2508 
2509 	s->private = it;
2510 	if (! it)
2511 		return NULL;
2512 
2513 	it->index = *pos;
2514 	it->max = sg_last_dev();
2515 	if (it->index >= it->max)
2516 		return NULL;
2517 	return it;
2518 }
2519 
dev_seq_next(struct seq_file * s,void * v,loff_t * pos)2520 static void * dev_seq_next(struct seq_file *s, void *v, loff_t *pos)
2521 {
2522 	struct sg_proc_deviter * it = s->private;
2523 
2524 	*pos = ++it->index;
2525 	return (it->index < it->max) ? it : NULL;
2526 }
2527 
dev_seq_stop(struct seq_file * s,void * v)2528 static void dev_seq_stop(struct seq_file *s, void *v)
2529 {
2530 	kfree(s->private);
2531 }
2532 
sg_proc_open_dev(struct inode * inode,struct file * file)2533 static int sg_proc_open_dev(struct inode *inode, struct file *file)
2534 {
2535         return seq_open(file, &dev_seq_ops);
2536 }
2537 
sg_proc_seq_show_dev(struct seq_file * s,void * v)2538 static int sg_proc_seq_show_dev(struct seq_file *s, void *v)
2539 {
2540 	struct sg_proc_deviter * it = (struct sg_proc_deviter *) v;
2541 	Sg_device *sdp;
2542 	struct scsi_device *scsidp;
2543 	unsigned long iflags;
2544 
2545 	read_lock_irqsave(&sg_index_lock, iflags);
2546 	sdp = it ? sg_lookup_dev(it->index) : NULL;
2547 	if ((NULL == sdp) || (NULL == sdp->device) ||
2548 	    (atomic_read(&sdp->detaching)))
2549 		seq_puts(s, "-1\t-1\t-1\t-1\t-1\t-1\t-1\t-1\t-1\n");
2550 	else {
2551 		scsidp = sdp->device;
2552 		seq_printf(s, "%d\t%d\t%d\t%llu\t%d\t%d\t%d\t%d\t%d\n",
2553 			      scsidp->host->host_no, scsidp->channel,
2554 			      scsidp->id, scsidp->lun, (int) scsidp->type,
2555 			      1,
2556 			      (int) scsidp->queue_depth,
2557 			      (int) atomic_read(&scsidp->device_busy),
2558 			      (int) scsi_device_online(scsidp));
2559 	}
2560 	read_unlock_irqrestore(&sg_index_lock, iflags);
2561 	return 0;
2562 }
2563 
sg_proc_open_devstrs(struct inode * inode,struct file * file)2564 static int sg_proc_open_devstrs(struct inode *inode, struct file *file)
2565 {
2566         return seq_open(file, &devstrs_seq_ops);
2567 }
2568 
sg_proc_seq_show_devstrs(struct seq_file * s,void * v)2569 static int sg_proc_seq_show_devstrs(struct seq_file *s, void *v)
2570 {
2571 	struct sg_proc_deviter * it = (struct sg_proc_deviter *) v;
2572 	Sg_device *sdp;
2573 	struct scsi_device *scsidp;
2574 	unsigned long iflags;
2575 
2576 	read_lock_irqsave(&sg_index_lock, iflags);
2577 	sdp = it ? sg_lookup_dev(it->index) : NULL;
2578 	scsidp = sdp ? sdp->device : NULL;
2579 	if (sdp && scsidp && (!atomic_read(&sdp->detaching)))
2580 		seq_printf(s, "%8.8s\t%16.16s\t%4.4s\n",
2581 			   scsidp->vendor, scsidp->model, scsidp->rev);
2582 	else
2583 		seq_puts(s, "<no active device>\n");
2584 	read_unlock_irqrestore(&sg_index_lock, iflags);
2585 	return 0;
2586 }
2587 
2588 /* must be called while holding sg_index_lock */
sg_proc_debug_helper(struct seq_file * s,Sg_device * sdp)2589 static void sg_proc_debug_helper(struct seq_file *s, Sg_device * sdp)
2590 {
2591 	int k, m, new_interface, blen, usg;
2592 	Sg_request *srp;
2593 	Sg_fd *fp;
2594 	const sg_io_hdr_t *hp;
2595 	const char * cp;
2596 	unsigned int ms;
2597 
2598 	k = 0;
2599 	list_for_each_entry(fp, &sdp->sfds, sfd_siblings) {
2600 		k++;
2601 		read_lock(&fp->rq_list_lock); /* irqs already disabled */
2602 		seq_printf(s, "   FD(%d): timeout=%dms bufflen=%d "
2603 			   "(res)sgat=%d low_dma=%d\n", k,
2604 			   jiffies_to_msecs(fp->timeout),
2605 			   fp->reserve.bufflen,
2606 			   (int) fp->reserve.k_use_sg,
2607 			   (int) fp->low_dma);
2608 		seq_printf(s, "   cmd_q=%d f_packid=%d k_orphan=%d closed=0\n",
2609 			   (int) fp->cmd_q, (int) fp->force_packid,
2610 			   (int) fp->keep_orphan);
2611 		for (m = 0, srp = fp->headrp;
2612 				srp != NULL;
2613 				++m, srp = srp->nextrp) {
2614 			hp = &srp->header;
2615 			new_interface = (hp->interface_id == '\0') ? 0 : 1;
2616 			if (srp->res_used) {
2617 				if (new_interface &&
2618 				    (SG_FLAG_MMAP_IO & hp->flags))
2619 					cp = "     mmap>> ";
2620 				else
2621 					cp = "     rb>> ";
2622 			} else {
2623 				if (SG_INFO_DIRECT_IO_MASK & hp->info)
2624 					cp = "     dio>> ";
2625 				else
2626 					cp = "     ";
2627 			}
2628 			seq_puts(s, cp);
2629 			blen = srp->data.bufflen;
2630 			usg = srp->data.k_use_sg;
2631 			seq_puts(s, srp->done ?
2632 				 ((1 == srp->done) ?  "rcv:" : "fin:")
2633 				  : "act:");
2634 			seq_printf(s, " id=%d blen=%d",
2635 				   srp->header.pack_id, blen);
2636 			if (srp->done)
2637 				seq_printf(s, " dur=%d", hp->duration);
2638 			else {
2639 				ms = jiffies_to_msecs(jiffies);
2640 				seq_printf(s, " t_o/elap=%d/%d",
2641 					(new_interface ? hp->timeout :
2642 						  jiffies_to_msecs(fp->timeout)),
2643 					(ms > hp->duration ? ms - hp->duration : 0));
2644 			}
2645 			seq_printf(s, "ms sgat=%d op=0x%02x\n", usg,
2646 				   (int) srp->data.cmd_opcode);
2647 		}
2648 		if (0 == m)
2649 			seq_puts(s, "     No requests active\n");
2650 		read_unlock(&fp->rq_list_lock);
2651 	}
2652 }
2653 
sg_proc_open_debug(struct inode * inode,struct file * file)2654 static int sg_proc_open_debug(struct inode *inode, struct file *file)
2655 {
2656         return seq_open(file, &debug_seq_ops);
2657 }
2658 
sg_proc_seq_show_debug(struct seq_file * s,void * v)2659 static int sg_proc_seq_show_debug(struct seq_file *s, void *v)
2660 {
2661 	struct sg_proc_deviter * it = (struct sg_proc_deviter *) v;
2662 	Sg_device *sdp;
2663 	unsigned long iflags;
2664 
2665 	if (it && (0 == it->index))
2666 		seq_printf(s, "max_active_device=%d  def_reserved_size=%d\n",
2667 			   (int)it->max, sg_big_buff);
2668 
2669 	read_lock_irqsave(&sg_index_lock, iflags);
2670 	sdp = it ? sg_lookup_dev(it->index) : NULL;
2671 	if (NULL == sdp)
2672 		goto skip;
2673 	read_lock(&sdp->sfd_lock);
2674 	if (!list_empty(&sdp->sfds)) {
2675 		seq_printf(s, " >>> device=%s ", sdp->disk->disk_name);
2676 		if (atomic_read(&sdp->detaching))
2677 			seq_puts(s, "detaching pending close ");
2678 		else if (sdp->device) {
2679 			struct scsi_device *scsidp = sdp->device;
2680 
2681 			seq_printf(s, "%d:%d:%d:%llu   em=%d",
2682 				   scsidp->host->host_no,
2683 				   scsidp->channel, scsidp->id,
2684 				   scsidp->lun,
2685 				   scsidp->host->hostt->emulated);
2686 		}
2687 		seq_printf(s, " sg_tablesize=%d excl=%d open_cnt=%d\n",
2688 			   sdp->sg_tablesize, sdp->exclude, sdp->open_cnt);
2689 		sg_proc_debug_helper(s, sdp);
2690 	}
2691 	read_unlock(&sdp->sfd_lock);
2692 skip:
2693 	read_unlock_irqrestore(&sg_index_lock, iflags);
2694 	return 0;
2695 }
2696 
2697 #endif				/* CONFIG_SCSI_PROC_FS */
2698 
2699 module_init(init_sg);
2700 module_exit(exit_sg);
2701