blob: 5cbc4bb1b395c6174e30fd0d8f73401408f526f9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 - 2005 Douglas Gilbert
11 *
12 * Modified 19-JAN-1998 Richard Gooch <rgooch@atnf.csiro.au> Devfs support
13 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2, or (at your option)
17 * any later version.
18 *
19 */
20
Douglas Gilbertb2155d02006-08-19 00:11:34 -040021static int sg_version_num = 30534; /* 2 digits for each component */
22#define SG_VERSION_STR "3.5.34"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24/*
25 * D. P. Gilbert (dgilbert@interlog.com, dougg@triode.net.au), notes:
26 * - scsi logging is available via SCSI_LOG_TIMEOUT macros. First
27 * the kernel/module needs to be built with CONFIG_SCSI_LOGGING
28 * (otherwise the macros compile to empty statements).
29 *
30 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/module.h>
32
33#include <linux/fs.h>
34#include <linux/kernel.h>
35#include <linux/sched.h>
36#include <linux/string.h>
37#include <linux/mm.h>
Kent Overstreeta27bb332013-05-07 16:19:08 -070038#include <linux/aio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/errno.h>
40#include <linux/mtio.h>
41#include <linux/ioctl.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090042#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/fcntl.h>
44#include <linux/init.h>
45#include <linux/poll.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/moduleparam.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/cdev.h>
James Bottomley7c07d612007-08-05 13:36:11 -050048#include <linux/idr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <linux/seq_file.h>
50#include <linux/blkdev.h>
51#include <linux/delay.h>
Christof Schmitt6da127a2008-01-11 10:09:43 +010052#include <linux/blktrace_api.h>
Arnd Bergmannc45d15d2010-06-02 14:28:52 +020053#include <linux/mutex.h>
Christian Dietrich2fe038e2011-06-04 17:36:10 +020054#include <linux/ratelimit.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56#include "scsi.h"
db9dff32005-04-03 14:53:59 -050057#include <scsi/scsi_dbg.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#include <scsi/scsi_host.h>
59#include <scsi/scsi_driver.h>
60#include <scsi/scsi_ioctl.h>
61#include <scsi/sg.h>
62
63#include "scsi_logging.h"
64
65#ifdef CONFIG_SCSI_PROC_FS
66#include <linux/proc_fs.h>
Douglas Gilbert7ca63cb2006-10-27 17:47:49 -040067static char *sg_version_date = "20061027";
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69static int sg_proc_init(void);
70static void sg_proc_cleanup(void);
71#endif
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#define SG_ALLOW_DIO_DEF 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75#define SG_MAX_DEVS 32768
76
77/*
78 * Suppose you want to calculate the formula muldiv(x,m,d)=int(x * m / d)
79 * Then when using 32 bit integers x * m may overflow during the calculation.
80 * Replacing muldiv(x) by muldiv(x)=((x % d) * m) / d + int(x / d) * m
81 * calculates the same, but prevents the overflow when both m and d
82 * are "small" numbers (like HZ and USER_HZ).
83 * Of course an overflow is inavoidable if the result of muldiv doesn't fit
84 * in 32 bits.
85 */
86#define MULDIV(X,MUL,DIV) ((((X % DIV) * MUL) / DIV) + ((X / DIV) * MUL))
87
88#define SG_DEFAULT_TIMEOUT MULDIV(SG_DEFAULT_TIMEOUT_USER, HZ, USER_HZ)
89
90int sg_big_buff = SG_DEF_RESERVED_SIZE;
91/* N.B. This variable is readable and writeable via
92 /proc/scsi/sg/def_reserved_size . Each time sg_open() is called a buffer
93 of this size (or less if there is not enough memory) will be reserved
94 for use by this file descriptor. [Deprecated usage: this variable is also
95 readable via /proc/sys/kernel/sg-big-buff if the sg driver is built into
96 the kernel (i.e. it is not a module).] */
97static int def_reserved_size = -1; /* picks up init parameter */
98static int sg_allow_dio = SG_ALLOW_DIO_DEF;
99
Douglas Gilbert6460e752006-09-20 18:20:49 -0400100static int scatter_elem_sz = SG_SCATTER_SZ;
101static int scatter_elem_sz_prev = SG_SCATTER_SZ;
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103#define SG_SECTOR_SZ 512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Tony Jonesee959b02008-02-22 00:13:36 +0100105static int sg_add(struct device *, struct class_interface *);
106static void sg_remove(struct device *, struct class_interface *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
James Bottomley7c07d612007-08-05 13:36:11 -0500108static DEFINE_IDR(sg_index_idr);
Vaughan Cao1f962eb2013-08-29 10:00:39 +0800109static DEFINE_RWLOCK(sg_index_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111static struct class_interface sg_interface = {
Tony Jonesee959b02008-02-22 00:13:36 +0100112 .add_dev = sg_add,
113 .remove_dev = sg_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114};
115
116typedef struct sg_scatter_hold { /* holding area for scsi scatter gather info */
117 unsigned short k_use_sg; /* Count of kernel scatter-gather pieces */
FUJITA Tomonoriea312552007-08-06 00:31:24 +0900118 unsigned sglist_len; /* size of malloc'd scatter-gather list ++ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 unsigned bufflen; /* Size of (aggregate) data buffer */
FUJITA Tomonori10db10d2008-08-29 12:32:18 +0200120 struct page **pages;
121 int page_order;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 char dio_in_use; /* 0->indirect IO (or mmap), 1->dio */
123 unsigned char cmd_opcode; /* first byte of command */
124} Sg_scatter_hold;
125
126struct sg_device; /* forward declarations */
127struct sg_fd;
128
129typedef struct sg_request { /* SG_MAX_QUEUE requests outstanding per file */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 struct sg_request *nextrp; /* NULL -> tail request (slist) */
131 struct sg_fd *parentfp; /* NULL -> not in use */
132 Sg_scatter_hold data; /* hold buffer, perhaps scatter list */
133 sg_io_hdr_t header; /* scsi command+info, see <scsi/sg.h> */
Mike Christied6b10342005-11-08 04:06:41 -0600134 unsigned char sense_b[SCSI_SENSE_BUFFERSIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 char res_used; /* 1 -> using reserve buffer, 0 -> not ... */
136 char orphan; /* 1 -> drop on sight, 0 -> normal */
137 char sg_io_owned; /* 1 -> packet belongs to SG_IO */
Jörn Engel6acddc52012-04-12 17:33:58 -0400138 /* done protected by rq_list_lock */
139 char done; /* 0->before bh, 1->before read, 2->read */
FUJITA Tomonori10865df2008-08-28 16:17:07 +0900140 struct request *rq;
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +0900141 struct bio *bio;
FUJITA Tomonoric96952e2009-02-04 11:36:27 +0900142 struct execute_work ew;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143} Sg_request;
144
145typedef struct sg_fd { /* holds the state of a file descriptor */
Vaughan Cao1f962eb2013-08-29 10:00:39 +0800146 struct list_head sfd_siblings; /* protected by sfd_lock of device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 struct sg_device *parentdp; /* owning device */
148 wait_queue_head_t read_wait; /* queue read until command done */
149 rwlock_t rq_list_lock; /* protect access to list in req_arr */
150 int timeout; /* defaults to SG_DEFAULT_TIMEOUT */
151 int timeout_user; /* defaults to SG_DEFAULT_TIMEOUT_USER */
152 Sg_scatter_hold reserve; /* buffer held for this file descriptor */
153 unsigned save_scat_len; /* original length of trunc. scat. element */
154 Sg_request *headrp; /* head of request slist, NULL->empty */
155 struct fasync_struct *async_qp; /* used by asynchronous notification */
156 Sg_request req_arr[SG_MAX_QUEUE]; /* used as singly-linked list */
157 char low_dma; /* as in parent but possibly overridden to 1 */
158 char force_packid; /* 1 -> pack_id input to read(), 0 -> ignored */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 char cmd_q; /* 1 -> allow command queuing, 0 -> don't */
160 char next_cmd_len; /* 0 -> automatic (def), >0 -> use on next write() */
161 char keep_orphan; /* 0 -> drop orphan (def), 1 -> keep for read() */
162 char mmap_called; /* 0 -> mmap() never called on this fd */
Tony Battersbyc6517b792009-01-21 14:45:50 -0500163 struct kref f_ref;
164 struct execute_work ew;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165} Sg_fd;
166
167typedef struct sg_device { /* holds the state of each scsi generic device */
168 struct scsi_device *device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 int sg_tablesize; /* adapter's max scatter-gather table size */
James Bottomley7c07d612007-08-05 13:36:11 -0500170 u32 index; /* device index number */
Vaughan Cao1f962eb2013-08-29 10:00:39 +0800171 spinlock_t sfd_lock; /* protect file descriptor list for device */
FUJITA Tomonori3442f802009-02-16 13:26:53 +0900172 struct list_head sfds;
Vaughan Cao15b06f92013-08-29 10:00:36 +0800173 struct rw_semaphore o_sem; /* exclude open should hold this rwsem */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 volatile char detached; /* 0->attached, 1->detached pending removal */
Jörn Engelb499e522012-04-24 16:13:11 -0400175 char exclude; /* opened for exclusive access */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 char sgdebug; /* 0->off, 1->sense, 9->dump dev, 10-> all devs */
177 struct gendisk *disk;
178 struct cdev * cdev; /* char_dev [sysfs: /sys/cdev/major/sg<n>] */
Tony Battersbyc6517b792009-01-21 14:45:50 -0500179 struct kref d_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180} Sg_device;
181
Mike Christied6b10342005-11-08 04:06:41 -0600182/* tasklet or soft irq callback */
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +0900183static void sg_rq_end_io(struct request *rq, int uptodate);
FUJITA Tomonori10865df2008-08-28 16:17:07 +0900184static int sg_start_req(Sg_request *srp, unsigned char *cmd);
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +0900185static int sg_finish_rem_req(Sg_request * srp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186static int sg_build_indirect(Sg_scatter_hold * schp, Sg_fd * sfp, int buff_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187static ssize_t sg_new_read(Sg_fd * sfp, char __user *buf, size_t count,
188 Sg_request * srp);
Adel Gadllah0b07de82008-06-26 13:48:27 +0200189static ssize_t sg_new_write(Sg_fd *sfp, struct file *file,
190 const char __user *buf, size_t count, int blocking,
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500191 int read_only, int sg_io_owned, Sg_request **o_srp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192static int sg_common_write(Sg_fd * sfp, Sg_request * srp,
193 unsigned char *cmnd, int timeout, int blocking);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194static int sg_read_oxfer(Sg_request * srp, char __user *outp, int num_read_xfer);
195static void sg_remove_scat(Sg_scatter_hold * schp);
196static void sg_build_reserve(Sg_fd * sfp, int req_size);
197static void sg_link_reserve(Sg_fd * sfp, Sg_request * srp, int size);
198static void sg_unlink_reserve(Sg_fd * sfp, Sg_request * srp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199static Sg_fd *sg_add_sfp(Sg_device * sdp, int dev);
Tony Battersbyc6517b792009-01-21 14:45:50 -0500200static void sg_remove_sfp(struct kref *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201static Sg_request *sg_get_rq_mark(Sg_fd * sfp, int pack_id);
202static Sg_request *sg_add_request(Sg_fd * sfp);
203static int sg_remove_request(Sg_fd * sfp, Sg_request * srp);
204static int sg_res_in_use(Sg_fd * sfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205static Sg_device *sg_get_dev(int dev);
Tony Battersbyc6517b792009-01-21 14:45:50 -0500206static void sg_put_dev(Sg_device *sdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208#define SZ_SG_HEADER sizeof(struct sg_header)
209#define SZ_SG_IO_HDR sizeof(sg_io_hdr_t)
210#define SZ_SG_IOVEC sizeof(sg_iovec_t)
211#define SZ_SG_REQ_INFO sizeof(sg_req_info_t)
212
FUJITA Tomonori14e507b2008-07-26 18:03:24 +0900213static int sg_allow_access(struct file *filp, unsigned char *cmd)
214{
Joe Perches35df8392010-09-04 18:52:46 -0700215 struct sg_fd *sfp = filp->private_data;
FUJITA Tomonori14e507b2008-07-26 18:03:24 +0900216
217 if (sfp->parentdp->device->type == TYPE_SCANNER)
218 return 0;
219
Jens Axboe018e0442009-06-26 16:27:10 +0200220 return blk_verify_command(cmd, filp->f_mode & FMODE_WRITE);
FUJITA Tomonori14e507b2008-07-26 18:03:24 +0900221}
222
Jörn Engel035d12e2012-04-25 11:17:29 -0400223static int sfds_list_empty(Sg_device *sdp)
224{
225 unsigned long flags;
226 int ret;
227
Vaughan Cao1f962eb2013-08-29 10:00:39 +0800228 spin_lock_irqsave(&sdp->sfd_lock, flags);
Jörn Engel035d12e2012-04-25 11:17:29 -0400229 ret = list_empty(&sdp->sfds);
Vaughan Cao1f962eb2013-08-29 10:00:39 +0800230 spin_unlock_irqrestore(&sdp->sfd_lock, flags);
Jörn Engel035d12e2012-04-25 11:17:29 -0400231 return ret;
232}
233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234static int
235sg_open(struct inode *inode, struct file *filp)
236{
237 int dev = iminor(inode);
238 int flags = filp->f_flags;
Mike Christied6b10342005-11-08 04:06:41 -0600239 struct request_queue *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 Sg_device *sdp;
241 Sg_fd *sfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 int retval;
243
244 nonseekable_open(inode, filp);
245 SCSI_LOG_TIMEOUT(3, printk("sg_open: dev=%d, flags=0x%x\n", dev, flags));
246 sdp = sg_get_dev(dev);
Tony Battersbyc6517b792009-01-21 14:45:50 -0500247 if (IS_ERR(sdp)) {
248 retval = PTR_ERR(sdp);
249 sdp = NULL;
250 goto sg_put;
Jonathan Corbeteb09d3d2008-05-15 12:22:06 -0600251 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
253 /* This driver's module count bumped by fops_get in <linux/fs.h> */
254 /* Prevent the device driver from vanishing while we sleep */
255 retval = scsi_device_get(sdp->device);
Tony Battersbyc6517b792009-01-21 14:45:50 -0500256 if (retval)
257 goto sg_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Alan Sternbc4f2402010-06-17 10:41:42 -0400259 retval = scsi_autopm_get_device(sdp->device);
260 if (retval)
261 goto sdp_put;
262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 if (!((flags & O_NONBLOCK) ||
264 scsi_block_when_processing_errors(sdp->device))) {
265 retval = -ENXIO;
266 /* we are in error recovery for this device */
267 goto error_out;
268 }
269
Vaughan Cao15b06f92013-08-29 10:00:36 +0800270 if ((flags & O_EXCL) && (O_RDONLY == (flags & O_ACCMODE))) {
271 retval = -EPERM; /* Can't lock it with read only access */
272 goto error_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 }
Vaughan Cao15b06f92013-08-29 10:00:36 +0800274 if (flags & O_NONBLOCK) {
275 if (flags & O_EXCL) {
276 if (!down_write_trylock(&sdp->o_sem)) {
277 retval = -EBUSY;
278 goto error_out;
279 }
280 } else {
281 if (!down_read_trylock(&sdp->o_sem)) {
282 retval = -EBUSY;
283 goto error_out;
284 }
285 }
286 } else {
287 if (flags & O_EXCL)
288 down_write(&sdp->o_sem);
289 else
290 down_read(&sdp->o_sem);
291 }
292 /* Since write lock is held, no need to check sfd_list */
293 if (flags & O_EXCL)
Vaughan Cao00b2d9d2013-08-29 10:00:37 +0800294 sdp->exclude = 1; /* used by release lock */
Vaughan Cao15b06f92013-08-29 10:00:36 +0800295
Jörn Engel035d12e2012-04-25 11:17:29 -0400296 if (sfds_list_empty(sdp)) { /* no existing opens on this device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 sdp->sgdebug = 0;
Mike Christied6b10342005-11-08 04:06:41 -0600298 q = sdp->device->request_queue;
Martin K. Petersen8a783622010-02-26 00:20:39 -0500299 sdp->sg_tablesize = queue_max_segments(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 }
Vaughan Caoe32c9e62013-08-29 10:00:38 +0800301 sfp = sg_add_sfp(sdp, dev);
302 if (!IS_ERR(sfp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 filp->private_data = sfp;
Vaughan Cao15b06f92013-08-29 10:00:36 +0800304 /* retval is already provably zero at this point because of the
305 * check after retval = scsi_autopm_get_device(sdp->device))
306 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 else {
Vaughan Caoe32c9e62013-08-29 10:00:38 +0800308 retval = PTR_ERR(sfp);
309
Tony Battersbyc6517b792009-01-21 14:45:50 -0500310 if (flags & O_EXCL) {
Vaughan Cao00b2d9d2013-08-29 10:00:37 +0800311 sdp->exclude = 0; /* undo if error */
Vaughan Cao15b06f92013-08-29 10:00:36 +0800312 up_write(&sdp->o_sem);
313 } else
314 up_read(&sdp->o_sem);
Tony Battersbyc6517b792009-01-21 14:45:50 -0500315error_out:
Alan Sternbc4f2402010-06-17 10:41:42 -0400316 scsi_autopm_put_device(sdp->device);
317sdp_put:
Tony Battersbyc6517b792009-01-21 14:45:50 -0500318 scsi_device_put(sdp->device);
Alan Sternbc4f2402010-06-17 10:41:42 -0400319 }
Tony Battersbyc6517b792009-01-21 14:45:50 -0500320sg_put:
321 if (sdp)
322 sg_put_dev(sdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 return retval;
324}
325
326/* Following function was formerly called 'sg_close' */
327static int
328sg_release(struct inode *inode, struct file *filp)
329{
330 Sg_device *sdp;
331 Sg_fd *sfp;
Vaughan Cao15b06f92013-08-29 10:00:36 +0800332 int excl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
334 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
335 return -ENXIO;
336 SCSI_LOG_TIMEOUT(3, printk("sg_release: %s\n", sdp->disk->disk_name));
Tony Battersbyc6517b792009-01-21 14:45:50 -0500337
Vaughan Cao00b2d9d2013-08-29 10:00:37 +0800338 excl = sdp->exclude;
339 sdp->exclude = 0;
Vaughan Cao15b06f92013-08-29 10:00:36 +0800340 if (excl)
341 up_write(&sdp->o_sem);
342 else
343 up_read(&sdp->o_sem);
Tony Battersbyc6517b792009-01-21 14:45:50 -0500344
Alan Sternbc4f2402010-06-17 10:41:42 -0400345 scsi_autopm_put_device(sdp->device);
Tony Battersbyc6517b792009-01-21 14:45:50 -0500346 kref_put(&sfp->f_ref, sg_remove_sfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 return 0;
348}
349
350static ssize_t
351sg_read(struct file *filp, char __user *buf, size_t count, loff_t * ppos)
352{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 Sg_device *sdp;
354 Sg_fd *sfp;
355 Sg_request *srp;
356 int req_pack_id = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 sg_io_hdr_t *hp;
cb59e842005-04-02 13:51:23 -0600358 struct sg_header *old_hdr = NULL;
359 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
362 return -ENXIO;
363 SCSI_LOG_TIMEOUT(3, printk("sg_read: %s, count=%d\n",
364 sdp->disk->disk_name, (int) count));
Mike Christied6b10342005-11-08 04:06:41 -0600365
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 if (!access_ok(VERIFY_WRITE, buf, count))
367 return -EFAULT;
368 if (sfp->force_packid && (count >= SZ_SG_HEADER)) {
cb59e842005-04-02 13:51:23 -0600369 old_hdr = kmalloc(SZ_SG_HEADER, GFP_KERNEL);
370 if (!old_hdr)
371 return -ENOMEM;
372 if (__copy_from_user(old_hdr, buf, SZ_SG_HEADER)) {
373 retval = -EFAULT;
374 goto free_old_hdr;
375 }
376 if (old_hdr->reply_len < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 if (count >= SZ_SG_IO_HDR) {
cb59e842005-04-02 13:51:23 -0600378 sg_io_hdr_t *new_hdr;
379 new_hdr = kmalloc(SZ_SG_IO_HDR, GFP_KERNEL);
380 if (!new_hdr) {
381 retval = -ENOMEM;
382 goto free_old_hdr;
383 }
384 retval =__copy_from_user
385 (new_hdr, buf, SZ_SG_IO_HDR);
386 req_pack_id = new_hdr->pack_id;
387 kfree(new_hdr);
388 if (retval) {
389 retval = -EFAULT;
390 goto free_old_hdr;
391 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 }
393 } else
cb59e842005-04-02 13:51:23 -0600394 req_pack_id = old_hdr->pack_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 }
396 srp = sg_get_rq_mark(sfp, req_pack_id);
397 if (!srp) { /* now wait on packet to arrive */
cb59e842005-04-02 13:51:23 -0600398 if (sdp->detached) {
399 retval = -ENODEV;
400 goto free_old_hdr;
401 }
402 if (filp->f_flags & O_NONBLOCK) {
403 retval = -EAGAIN;
404 goto free_old_hdr;
405 }
Jörn Engel3f0c6ab2012-04-12 17:33:25 -0400406 retval = wait_event_interruptible(sfp->read_wait,
Jörn Engel794c10f2012-04-12 17:32:48 -0400407 (sdp->detached ||
Jörn Engel3f0c6ab2012-04-12 17:33:25 -0400408 (srp = sg_get_rq_mark(sfp, req_pack_id))));
Jörn Engel794c10f2012-04-12 17:32:48 -0400409 if (sdp->detached) {
410 retval = -ENODEV;
411 goto free_old_hdr;
412 }
413 if (retval) {
cb59e842005-04-02 13:51:23 -0600414 /* -ERESTARTSYS as signal hit process */
415 goto free_old_hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 }
417 }
cb59e842005-04-02 13:51:23 -0600418 if (srp->header.interface_id != '\0') {
419 retval = sg_new_read(sfp, buf, count, srp);
420 goto free_old_hdr;
421 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
423 hp = &srp->header;
cb59e842005-04-02 13:51:23 -0600424 if (old_hdr == NULL) {
425 old_hdr = kmalloc(SZ_SG_HEADER, GFP_KERNEL);
426 if (! old_hdr) {
427 retval = -ENOMEM;
428 goto free_old_hdr;
429 }
430 }
431 memset(old_hdr, 0, SZ_SG_HEADER);
432 old_hdr->reply_len = (int) hp->timeout;
433 old_hdr->pack_len = old_hdr->reply_len; /* old, strange behaviour */
434 old_hdr->pack_id = hp->pack_id;
435 old_hdr->twelve_byte =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 ((srp->data.cmd_opcode >= 0xc0) && (12 == hp->cmd_len)) ? 1 : 0;
cb59e842005-04-02 13:51:23 -0600437 old_hdr->target_status = hp->masked_status;
438 old_hdr->host_status = hp->host_status;
439 old_hdr->driver_status = hp->driver_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 if ((CHECK_CONDITION & hp->masked_status) ||
441 (DRIVER_SENSE & hp->driver_status))
cb59e842005-04-02 13:51:23 -0600442 memcpy(old_hdr->sense_buffer, srp->sense_b,
443 sizeof (old_hdr->sense_buffer));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 switch (hp->host_status) {
445 /* This setup of 'result' is for backward compatibility and is best
446 ignored by the user who should use target, host + driver status */
447 case DID_OK:
448 case DID_PASSTHROUGH:
449 case DID_SOFT_ERROR:
cb59e842005-04-02 13:51:23 -0600450 old_hdr->result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 break;
452 case DID_NO_CONNECT:
453 case DID_BUS_BUSY:
454 case DID_TIME_OUT:
cb59e842005-04-02 13:51:23 -0600455 old_hdr->result = EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 break;
457 case DID_BAD_TARGET:
458 case DID_ABORT:
459 case DID_PARITY:
460 case DID_RESET:
461 case DID_BAD_INTR:
cb59e842005-04-02 13:51:23 -0600462 old_hdr->result = EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 break;
464 case DID_ERROR:
cb59e842005-04-02 13:51:23 -0600465 old_hdr->result = (srp->sense_b[0] == 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 hp->masked_status == GOOD) ? 0 : EIO;
467 break;
468 default:
cb59e842005-04-02 13:51:23 -0600469 old_hdr->result = EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 break;
471 }
472
473 /* Now copy the result back to the user buffer. */
474 if (count >= SZ_SG_HEADER) {
cb59e842005-04-02 13:51:23 -0600475 if (__copy_to_user(buf, old_hdr, SZ_SG_HEADER)) {
476 retval = -EFAULT;
477 goto free_old_hdr;
478 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 buf += SZ_SG_HEADER;
cb59e842005-04-02 13:51:23 -0600480 if (count > old_hdr->reply_len)
481 count = old_hdr->reply_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 if (count > SZ_SG_HEADER) {
cb59e842005-04-02 13:51:23 -0600483 if (sg_read_oxfer(srp, buf, count - SZ_SG_HEADER)) {
484 retval = -EFAULT;
485 goto free_old_hdr;
486 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 }
488 } else
cb59e842005-04-02 13:51:23 -0600489 count = (old_hdr->result == 0) ? 0 : -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 sg_finish_rem_req(srp);
cb59e842005-04-02 13:51:23 -0600491 retval = count;
492free_old_hdr:
Jesper Juhlc9475cb2005-11-07 01:01:26 -0800493 kfree(old_hdr);
cb59e842005-04-02 13:51:23 -0600494 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495}
496
497static ssize_t
498sg_new_read(Sg_fd * sfp, char __user *buf, size_t count, Sg_request * srp)
499{
500 sg_io_hdr_t *hp = &srp->header;
501 int err = 0;
502 int len;
503
504 if (count < SZ_SG_IO_HDR) {
505 err = -EINVAL;
506 goto err_out;
507 }
508 hp->sb_len_wr = 0;
509 if ((hp->mx_sb_len > 0) && hp->sbp) {
510 if ((CHECK_CONDITION & hp->masked_status) ||
511 (DRIVER_SENSE & hp->driver_status)) {
Mike Christied6b10342005-11-08 04:06:41 -0600512 int sb_len = SCSI_SENSE_BUFFERSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 sb_len = (hp->mx_sb_len > sb_len) ? sb_len : hp->mx_sb_len;
514 len = 8 + (int) srp->sense_b[7]; /* Additional sense length field */
515 len = (len > sb_len) ? sb_len : len;
516 if (copy_to_user(hp->sbp, srp->sense_b, len)) {
517 err = -EFAULT;
518 goto err_out;
519 }
520 hp->sb_len_wr = len;
521 }
522 }
523 if (hp->masked_status || hp->host_status || hp->driver_status)
524 hp->info |= SG_INFO_CHECK;
525 if (copy_to_user(buf, hp, SZ_SG_IO_HDR)) {
526 err = -EFAULT;
527 goto err_out;
528 }
FUJITA Tomonori0b6cb262008-09-02 22:50:07 +0900529err_out:
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +0900530 err = sg_finish_rem_req(srp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 return (0 == err) ? count : err;
532}
533
534static ssize_t
535sg_write(struct file *filp, const char __user *buf, size_t count, loff_t * ppos)
536{
537 int mxsize, cmd_size, k;
538 int input_size, blocking;
539 unsigned char opcode;
540 Sg_device *sdp;
541 Sg_fd *sfp;
542 Sg_request *srp;
543 struct sg_header old_hdr;
544 sg_io_hdr_t *hp;
Mike Christied6b10342005-11-08 04:06:41 -0600545 unsigned char cmnd[MAX_COMMAND_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
547 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
548 return -ENXIO;
549 SCSI_LOG_TIMEOUT(3, printk("sg_write: %s, count=%d\n",
550 sdp->disk->disk_name, (int) count));
551 if (sdp->detached)
552 return -ENODEV;
553 if (!((filp->f_flags & O_NONBLOCK) ||
554 scsi_block_when_processing_errors(sdp->device)))
555 return -ENXIO;
556
557 if (!access_ok(VERIFY_READ, buf, count))
558 return -EFAULT; /* protects following copy_from_user()s + get_user()s */
559 if (count < SZ_SG_HEADER)
560 return -EIO;
561 if (__copy_from_user(&old_hdr, buf, SZ_SG_HEADER))
562 return -EFAULT;
563 blocking = !(filp->f_flags & O_NONBLOCK);
564 if (old_hdr.reply_len < 0)
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500565 return sg_new_write(sfp, filp, buf, count,
566 blocking, 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 if (count < (SZ_SG_HEADER + 6))
568 return -EIO; /* The minimum scsi command length is 6 bytes. */
569
570 if (!(srp = sg_add_request(sfp))) {
571 SCSI_LOG_TIMEOUT(1, printk("sg_write: queue full\n"));
572 return -EDOM;
573 }
574 buf += SZ_SG_HEADER;
575 __get_user(opcode, buf);
576 if (sfp->next_cmd_len > 0) {
577 if (sfp->next_cmd_len > MAX_COMMAND_SIZE) {
578 SCSI_LOG_TIMEOUT(1, printk("sg_write: command length too long\n"));
579 sfp->next_cmd_len = 0;
580 sg_remove_request(sfp, srp);
581 return -EIO;
582 }
583 cmd_size = sfp->next_cmd_len;
584 sfp->next_cmd_len = 0; /* reset so only this write() effected */
585 } else {
586 cmd_size = COMMAND_SIZE(opcode); /* based on SCSI command group */
587 if ((opcode >= 0xc0) && old_hdr.twelve_byte)
588 cmd_size = 12;
589 }
590 SCSI_LOG_TIMEOUT(4, printk(
591 "sg_write: scsi opcode=0x%02x, cmd_size=%d\n", (int) opcode, cmd_size));
592/* Determine buffer size. */
593 input_size = count - cmd_size;
594 mxsize = (input_size > old_hdr.reply_len) ? input_size : old_hdr.reply_len;
595 mxsize -= SZ_SG_HEADER;
596 input_size -= SZ_SG_HEADER;
597 if (input_size < 0) {
598 sg_remove_request(sfp, srp);
599 return -EIO; /* User did not pass enough bytes for this command. */
600 }
601 hp = &srp->header;
602 hp->interface_id = '\0'; /* indicator of old interface tunnelled */
603 hp->cmd_len = (unsigned char) cmd_size;
604 hp->iovec_count = 0;
605 hp->mx_sb_len = 0;
606 if (input_size > 0)
607 hp->dxfer_direction = (old_hdr.reply_len > SZ_SG_HEADER) ?
608 SG_DXFER_TO_FROM_DEV : SG_DXFER_TO_DEV;
609 else
610 hp->dxfer_direction = (mxsize > 0) ? SG_DXFER_FROM_DEV : SG_DXFER_NONE;
611 hp->dxfer_len = mxsize;
FUJITA Tomonorifad7f012008-09-02 16:20:20 +0900612 if (hp->dxfer_direction == SG_DXFER_TO_DEV)
613 hp->dxferp = (char __user *)buf + cmd_size;
614 else
615 hp->dxferp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 hp->sbp = NULL;
617 hp->timeout = old_hdr.reply_len; /* structure abuse ... */
618 hp->flags = input_size; /* structure abuse ... */
619 hp->pack_id = old_hdr.pack_id;
620 hp->usr_ptr = NULL;
621 if (__copy_from_user(cmnd, buf, cmd_size))
622 return -EFAULT;
623 /*
624 * SG_DXFER_TO_FROM_DEV is functionally equivalent to SG_DXFER_FROM_DEV,
625 * but is is possible that the app intended SG_DXFER_TO_DEV, because there
626 * is a non-zero input_size, so emit a warning.
627 */
Andi Kleeneaa3e222008-01-13 17:41:43 +0100628 if (hp->dxfer_direction == SG_DXFER_TO_FROM_DEV) {
629 static char cmd[TASK_COMM_LEN];
Christian Dietrich2fe038e2011-06-04 17:36:10 +0200630 if (strcmp(current->comm, cmd)) {
631 printk_ratelimited(KERN_WARNING
632 "sg_write: data in/out %d/%d bytes "
633 "for SCSI command 0x%x-- guessing "
634 "data in;\n program %s not setting "
635 "count and/or reply_len properly\n",
636 old_hdr.reply_len - (int)SZ_SG_HEADER,
637 input_size, (unsigned int) cmnd[0],
638 current->comm);
Andi Kleeneaa3e222008-01-13 17:41:43 +0100639 strcpy(cmd, current->comm);
640 }
641 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 k = sg_common_write(sfp, srp, cmnd, sfp->timeout, blocking);
643 return (k < 0) ? k : count;
644}
645
646static ssize_t
Adel Gadllah0b07de82008-06-26 13:48:27 +0200647sg_new_write(Sg_fd *sfp, struct file *file, const char __user *buf,
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500648 size_t count, int blocking, int read_only, int sg_io_owned,
Adel Gadllah0b07de82008-06-26 13:48:27 +0200649 Sg_request **o_srp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650{
651 int k;
652 Sg_request *srp;
653 sg_io_hdr_t *hp;
Mike Christied6b10342005-11-08 04:06:41 -0600654 unsigned char cmnd[MAX_COMMAND_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 int timeout;
656 unsigned long ul_timeout;
657
658 if (count < SZ_SG_IO_HDR)
659 return -EINVAL;
660 if (!access_ok(VERIFY_READ, buf, count))
661 return -EFAULT; /* protects following copy_from_user()s + get_user()s */
662
663 sfp->cmd_q = 1; /* when sg_io_hdr seen, set command queuing on */
664 if (!(srp = sg_add_request(sfp))) {
665 SCSI_LOG_TIMEOUT(1, printk("sg_new_write: queue full\n"));
666 return -EDOM;
667 }
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500668 srp->sg_io_owned = sg_io_owned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 hp = &srp->header;
670 if (__copy_from_user(hp, buf, SZ_SG_IO_HDR)) {
671 sg_remove_request(sfp, srp);
672 return -EFAULT;
673 }
674 if (hp->interface_id != 'S') {
675 sg_remove_request(sfp, srp);
676 return -ENOSYS;
677 }
678 if (hp->flags & SG_FLAG_MMAP_IO) {
679 if (hp->dxfer_len > sfp->reserve.bufflen) {
680 sg_remove_request(sfp, srp);
681 return -ENOMEM; /* MMAP_IO size must fit in reserve buffer */
682 }
683 if (hp->flags & SG_FLAG_DIRECT_IO) {
684 sg_remove_request(sfp, srp);
685 return -EINVAL; /* either MMAP_IO or DIRECT_IO (not both) */
686 }
687 if (sg_res_in_use(sfp)) {
688 sg_remove_request(sfp, srp);
689 return -EBUSY; /* reserve buffer already being used */
690 }
691 }
692 ul_timeout = msecs_to_jiffies(srp->header.timeout);
693 timeout = (ul_timeout < INT_MAX) ? ul_timeout : INT_MAX;
694 if ((!hp->cmdp) || (hp->cmd_len < 6) || (hp->cmd_len > sizeof (cmnd))) {
695 sg_remove_request(sfp, srp);
696 return -EMSGSIZE;
697 }
698 if (!access_ok(VERIFY_READ, hp->cmdp, hp->cmd_len)) {
699 sg_remove_request(sfp, srp);
700 return -EFAULT; /* protects following copy_from_user()s + get_user()s */
701 }
702 if (__copy_from_user(cmnd, hp->cmdp, hp->cmd_len)) {
703 sg_remove_request(sfp, srp);
704 return -EFAULT;
705 }
FUJITA Tomonori14e507b2008-07-26 18:03:24 +0900706 if (read_only && sg_allow_access(file, cmnd)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 sg_remove_request(sfp, srp);
708 return -EPERM;
709 }
710 k = sg_common_write(sfp, srp, cmnd, timeout, blocking);
711 if (k < 0)
712 return k;
713 if (o_srp)
714 *o_srp = srp;
715 return count;
716}
717
718static int
719sg_common_write(Sg_fd * sfp, Sg_request * srp,
720 unsigned char *cmnd, int timeout, int blocking)
721{
Mike Christied6b10342005-11-08 04:06:41 -0600722 int k, data_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 Sg_device *sdp = sfp->parentdp;
724 sg_io_hdr_t *hp = &srp->header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
726 srp->data.cmd_opcode = cmnd[0]; /* hold opcode of command */
727 hp->status = 0;
728 hp->masked_status = 0;
729 hp->msg_status = 0;
730 hp->info = 0;
731 hp->host_status = 0;
732 hp->driver_status = 0;
733 hp->resid = 0;
734 SCSI_LOG_TIMEOUT(4, printk("sg_common_write: scsi opcode=0x%02x, cmd_size=%d\n",
735 (int) cmnd[0], (int) hp->cmd_len));
736
FUJITA Tomonori10865df2008-08-28 16:17:07 +0900737 k = sg_start_req(srp, cmnd);
738 if (k) {
Douglas Gilbert7ca63cb2006-10-27 17:47:49 -0400739 SCSI_LOG_TIMEOUT(1, printk("sg_common_write: start_req err=%d\n", k));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 sg_finish_rem_req(srp);
741 return k; /* probably out of space --> ENOMEM */
742 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 if (sdp->detached) {
FUJITA Tomonoricaf19d32010-07-22 09:36:51 +0900744 if (srp->bio)
745 blk_end_request_all(srp->rq, -EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 sg_finish_rem_req(srp);
747 return -ENODEV;
748 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 switch (hp->dxfer_direction) {
751 case SG_DXFER_TO_FROM_DEV:
752 case SG_DXFER_FROM_DEV:
Mike Christied6b10342005-11-08 04:06:41 -0600753 data_dir = DMA_FROM_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 break;
755 case SG_DXFER_TO_DEV:
Mike Christied6b10342005-11-08 04:06:41 -0600756 data_dir = DMA_TO_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 break;
758 case SG_DXFER_UNKNOWN:
Mike Christied6b10342005-11-08 04:06:41 -0600759 data_dir = DMA_BIDIRECTIONAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 break;
761 default:
Mike Christied6b10342005-11-08 04:06:41 -0600762 data_dir = DMA_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 break;
764 }
cb59e842005-04-02 13:51:23 -0600765 hp->duration = jiffies_to_msecs(jiffies);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +0200766
767 srp->rq->timeout = timeout;
Tony Battersbyc6517b792009-01-21 14:45:50 -0500768 kref_get(&sfp->f_ref); /* sg_rq_end_io() does kref_put(). */
FUJITA Tomonori10db10d2008-08-29 12:32:18 +0200769 blk_execute_rq_nowait(sdp->device->request_queue, sdp->disk,
770 srp->rq, 1, sg_rq_end_io);
771 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772}
773
Jörn Engel6acddc52012-04-12 17:33:58 -0400774static int srp_done(Sg_fd *sfp, Sg_request *srp)
775{
776 unsigned long flags;
777 int ret;
778
779 read_lock_irqsave(&sfp->rq_list_lock, flags);
780 ret = srp->done;
781 read_unlock_irqrestore(&sfp->rq_list_lock, flags);
782 return ret;
783}
784
Jörn Engel37b9d1e2012-04-12 17:35:05 -0400785static long
Arnd Bergmannf4927c42010-04-27 00:24:01 +0200786sg_ioctl(struct file *filp, unsigned int cmd_in, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787{
788 void __user *p = (void __user *)arg;
789 int __user *ip = p;
790 int result, val, read_only;
791 Sg_device *sdp;
792 Sg_fd *sfp;
793 Sg_request *srp;
794 unsigned long iflags;
795
796 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
797 return -ENXIO;
FUJITA Tomonoriabf54392008-08-16 14:10:05 +0900798
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 SCSI_LOG_TIMEOUT(3, printk("sg_ioctl: %s, cmd=0x%x\n",
800 sdp->disk->disk_name, (int) cmd_in));
801 read_only = (O_RDWR != (filp->f_flags & O_ACCMODE));
802
803 switch (cmd_in) {
804 case SG_IO:
Jörn Engeldddbf8d2012-04-12 17:32:17 -0400805 if (sdp->detached)
806 return -ENODEV;
807 if (!scsi_block_when_processing_errors(sdp->device))
808 return -ENXIO;
809 if (!access_ok(VERIFY_WRITE, p, SZ_SG_IO_HDR))
810 return -EFAULT;
811 result = sg_new_write(sfp, filp, p, SZ_SG_IO_HDR,
812 1, read_only, 1, &srp);
813 if (result < 0)
814 return result;
Jörn Engel3f0c6ab2012-04-12 17:33:25 -0400815 result = wait_event_interruptible(sfp->read_wait,
Jörn Engel6acddc52012-04-12 17:33:58 -0400816 (srp_done(sfp, srp) || sdp->detached));
Jörn Engel794c10f2012-04-12 17:32:48 -0400817 if (sdp->detached)
818 return -ENODEV;
819 write_lock_irq(&sfp->rq_list_lock);
820 if (srp->done) {
821 srp->done = 2;
Jörn Engeldddbf8d2012-04-12 17:32:17 -0400822 write_unlock_irq(&sfp->rq_list_lock);
Jörn Engel794c10f2012-04-12 17:32:48 -0400823 result = sg_new_read(sfp, p, SZ_SG_IO_HDR, srp);
824 return (result < 0) ? result : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 }
Jörn Engel794c10f2012-04-12 17:32:48 -0400826 srp->orphan = 1;
827 write_unlock_irq(&sfp->rq_list_lock);
828 return result; /* -ERESTARTSYS because signal hit process */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 case SG_SET_TIMEOUT:
830 result = get_user(val, ip);
831 if (result)
832 return result;
833 if (val < 0)
834 return -EIO;
835 if (val >= MULDIV (INT_MAX, USER_HZ, HZ))
836 val = MULDIV (INT_MAX, USER_HZ, HZ);
837 sfp->timeout_user = val;
838 sfp->timeout = MULDIV (val, HZ, USER_HZ);
839
840 return 0;
841 case SG_GET_TIMEOUT: /* N.B. User receives timeout as return value */
842 /* strange ..., for backward compatibility */
843 return sfp->timeout_user;
844 case SG_SET_FORCE_LOW_DMA:
845 result = get_user(val, ip);
846 if (result)
847 return result;
848 if (val) {
849 sfp->low_dma = 1;
850 if ((0 == sfp->low_dma) && (0 == sg_res_in_use(sfp))) {
851 val = (int) sfp->reserve.bufflen;
852 sg_remove_scat(&sfp->reserve);
853 sg_build_reserve(sfp, val);
854 }
855 } else {
856 if (sdp->detached)
857 return -ENODEV;
858 sfp->low_dma = sdp->device->host->unchecked_isa_dma;
859 }
860 return 0;
861 case SG_GET_LOW_DMA:
862 return put_user((int) sfp->low_dma, ip);
863 case SG_GET_SCSI_ID:
864 if (!access_ok(VERIFY_WRITE, p, sizeof (sg_scsi_id_t)))
865 return -EFAULT;
866 else {
867 sg_scsi_id_t __user *sg_idp = p;
868
869 if (sdp->detached)
870 return -ENODEV;
871 __put_user((int) sdp->device->host->host_no,
872 &sg_idp->host_no);
873 __put_user((int) sdp->device->channel,
874 &sg_idp->channel);
875 __put_user((int) sdp->device->id, &sg_idp->scsi_id);
876 __put_user((int) sdp->device->lun, &sg_idp->lun);
877 __put_user((int) sdp->device->type, &sg_idp->scsi_type);
878 __put_user((short) sdp->device->host->cmd_per_lun,
879 &sg_idp->h_cmd_per_lun);
880 __put_user((short) sdp->device->queue_depth,
881 &sg_idp->d_queue_depth);
882 __put_user(0, &sg_idp->unused[0]);
883 __put_user(0, &sg_idp->unused[1]);
884 return 0;
885 }
886 case SG_SET_FORCE_PACK_ID:
887 result = get_user(val, ip);
888 if (result)
889 return result;
890 sfp->force_packid = val ? 1 : 0;
891 return 0;
892 case SG_GET_PACK_ID:
893 if (!access_ok(VERIFY_WRITE, ip, sizeof (int)))
894 return -EFAULT;
895 read_lock_irqsave(&sfp->rq_list_lock, iflags);
896 for (srp = sfp->headrp; srp; srp = srp->nextrp) {
897 if ((1 == srp->done) && (!srp->sg_io_owned)) {
898 read_unlock_irqrestore(&sfp->rq_list_lock,
899 iflags);
900 __put_user(srp->header.pack_id, ip);
901 return 0;
902 }
903 }
904 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
905 __put_user(-1, ip);
906 return 0;
907 case SG_GET_NUM_WAITING:
908 read_lock_irqsave(&sfp->rq_list_lock, iflags);
909 for (val = 0, srp = sfp->headrp; srp; srp = srp->nextrp) {
910 if ((1 == srp->done) && (!srp->sg_io_owned))
911 ++val;
912 }
913 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
914 return put_user(val, ip);
915 case SG_GET_SG_TABLESIZE:
916 return put_user(sdp->sg_tablesize, ip);
917 case SG_SET_RESERVED_SIZE:
918 result = get_user(val, ip);
919 if (result)
920 return result;
921 if (val < 0)
922 return -EINVAL;
Alan Stern44ec9542007-02-20 11:01:57 -0500923 val = min_t(int, val,
Martin K. Petersenae03bf62009-05-22 17:17:50 -0400924 queue_max_sectors(sdp->device->request_queue) * 512);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 if (val != sfp->reserve.bufflen) {
926 if (sg_res_in_use(sfp) || sfp->mmap_called)
927 return -EBUSY;
928 sg_remove_scat(&sfp->reserve);
929 sg_build_reserve(sfp, val);
930 }
931 return 0;
932 case SG_GET_RESERVED_SIZE:
Alan Stern44ec9542007-02-20 11:01:57 -0500933 val = min_t(int, sfp->reserve.bufflen,
Martin K. Petersenae03bf62009-05-22 17:17:50 -0400934 queue_max_sectors(sdp->device->request_queue) * 512);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 return put_user(val, ip);
936 case SG_SET_COMMAND_Q:
937 result = get_user(val, ip);
938 if (result)
939 return result;
940 sfp->cmd_q = val ? 1 : 0;
941 return 0;
942 case SG_GET_COMMAND_Q:
943 return put_user((int) sfp->cmd_q, ip);
944 case SG_SET_KEEP_ORPHAN:
945 result = get_user(val, ip);
946 if (result)
947 return result;
948 sfp->keep_orphan = val;
949 return 0;
950 case SG_GET_KEEP_ORPHAN:
951 return put_user((int) sfp->keep_orphan, ip);
952 case SG_NEXT_CMD_LEN:
953 result = get_user(val, ip);
954 if (result)
955 return result;
956 sfp->next_cmd_len = (val > 0) ? val : 0;
957 return 0;
958 case SG_GET_VERSION_NUM:
959 return put_user(sg_version_num, ip);
960 case SG_GET_ACCESS_COUNT:
961 /* faked - we don't have a real access count anymore */
962 val = (sdp->device ? 1 : 0);
963 return put_user(val, ip);
964 case SG_GET_REQUEST_TABLE:
965 if (!access_ok(VERIFY_WRITE, p, SZ_SG_REQ_INFO * SG_MAX_QUEUE))
966 return -EFAULT;
967 else {
cb59e842005-04-02 13:51:23 -0600968 sg_req_info_t *rinfo;
969 unsigned int ms;
970
971 rinfo = kmalloc(SZ_SG_REQ_INFO * SG_MAX_QUEUE,
972 GFP_KERNEL);
973 if (!rinfo)
974 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 read_lock_irqsave(&sfp->rq_list_lock, iflags);
976 for (srp = sfp->headrp, val = 0; val < SG_MAX_QUEUE;
977 ++val, srp = srp ? srp->nextrp : srp) {
978 memset(&rinfo[val], 0, SZ_SG_REQ_INFO);
979 if (srp) {
980 rinfo[val].req_state = srp->done + 1;
981 rinfo[val].problem =
982 srp->header.masked_status &
983 srp->header.host_status &
984 srp->header.driver_status;
cb59e842005-04-02 13:51:23 -0600985 if (srp->done)
986 rinfo[val].duration =
987 srp->header.duration;
988 else {
989 ms = jiffies_to_msecs(jiffies);
990 rinfo[val].duration =
991 (ms > srp->header.duration) ?
992 (ms - srp->header.duration) : 0;
993 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 rinfo[val].orphan = srp->orphan;
cb59e842005-04-02 13:51:23 -0600995 rinfo[val].sg_io_owned =
996 srp->sg_io_owned;
997 rinfo[val].pack_id =
998 srp->header.pack_id;
999 rinfo[val].usr_ptr =
1000 srp->header.usr_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 }
1002 }
1003 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
cb59e842005-04-02 13:51:23 -06001004 result = __copy_to_user(p, rinfo,
1005 SZ_SG_REQ_INFO * SG_MAX_QUEUE);
1006 result = result ? -EFAULT : 0;
1007 kfree(rinfo);
1008 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 }
1010 case SG_EMULATED_HOST:
1011 if (sdp->detached)
1012 return -ENODEV;
1013 return put_user(sdp->device->host->hostt->emulated, ip);
1014 case SG_SCSI_RESET:
1015 if (sdp->detached)
1016 return -ENODEV;
1017 if (filp->f_flags & O_NONBLOCK) {
James Bottomley939647e2005-09-18 15:05:20 -05001018 if (scsi_host_in_recovery(sdp->device->host))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 return -EBUSY;
1020 } else if (!scsi_block_when_processing_errors(sdp->device))
1021 return -EBUSY;
1022 result = get_user(val, ip);
1023 if (result)
1024 return result;
1025 if (SG_SCSI_RESET_NOTHING == val)
1026 return 0;
1027 switch (val) {
1028 case SG_SCSI_RESET_DEVICE:
1029 val = SCSI_TRY_RESET_DEVICE;
1030 break;
Brian King39120e12008-07-01 13:03:19 -05001031 case SG_SCSI_RESET_TARGET:
1032 val = SCSI_TRY_RESET_TARGET;
1033 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 case SG_SCSI_RESET_BUS:
1035 val = SCSI_TRY_RESET_BUS;
1036 break;
1037 case SG_SCSI_RESET_HOST:
1038 val = SCSI_TRY_RESET_HOST;
1039 break;
1040 default:
1041 return -EINVAL;
1042 }
1043 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
1044 return -EACCES;
1045 return (scsi_reset_provider(sdp->device, val) ==
1046 SUCCESS) ? 0 : -EIO;
1047 case SCSI_IOCTL_SEND_COMMAND:
1048 if (sdp->detached)
1049 return -ENODEV;
1050 if (read_only) {
1051 unsigned char opcode = WRITE_6;
1052 Scsi_Ioctl_Command __user *siocp = p;
1053
1054 if (copy_from_user(&opcode, siocp->data, 1))
1055 return -EFAULT;
FUJITA Tomonori14e507b2008-07-26 18:03:24 +09001056 if (sg_allow_access(filp, &opcode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 return -EPERM;
1058 }
Al Viroe915e872008-09-02 17:16:41 -04001059 return sg_scsi_ioctl(sdp->device->request_queue, NULL, filp->f_mode, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 case SG_SET_DEBUG:
1061 result = get_user(val, ip);
1062 if (result)
1063 return result;
1064 sdp->sgdebug = (char) val;
1065 return 0;
1066 case SCSI_IOCTL_GET_IDLUN:
1067 case SCSI_IOCTL_GET_BUS_NUMBER:
1068 case SCSI_IOCTL_PROBE_HOST:
1069 case SG_GET_TRANSFORM:
1070 if (sdp->detached)
1071 return -ENODEV;
1072 return scsi_ioctl(sdp->device, cmd_in, p);
Alan Stern44ec9542007-02-20 11:01:57 -05001073 case BLKSECTGET:
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001074 return put_user(queue_max_sectors(sdp->device->request_queue) * 512,
Alan Stern44ec9542007-02-20 11:01:57 -05001075 ip);
Christof Schmitt6da127a2008-01-11 10:09:43 +01001076 case BLKTRACESETUP:
1077 return blk_trace_setup(sdp->device->request_queue,
1078 sdp->disk->disk_name,
Martin Peschke76e3a192009-01-30 15:46:23 +01001079 MKDEV(SCSI_GENERIC_MAJOR, sdp->index),
Shawn Dud0deef52009-04-14 13:58:56 +08001080 NULL,
Christof Schmitt6da127a2008-01-11 10:09:43 +01001081 (char *)arg);
1082 case BLKTRACESTART:
1083 return blk_trace_startstop(sdp->device->request_queue, 1);
1084 case BLKTRACESTOP:
1085 return blk_trace_startstop(sdp->device->request_queue, 0);
1086 case BLKTRACETEARDOWN:
1087 return blk_trace_remove(sdp->device->request_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 default:
1089 if (read_only)
1090 return -EPERM; /* don't know so take safe approach */
1091 return scsi_ioctl(sdp->device, cmd_in, p);
1092 }
1093}
1094
1095#ifdef CONFIG_COMPAT
1096static long sg_compat_ioctl(struct file *filp, unsigned int cmd_in, unsigned long arg)
1097{
1098 Sg_device *sdp;
1099 Sg_fd *sfp;
1100 struct scsi_device *sdev;
1101
1102 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
1103 return -ENXIO;
1104
1105 sdev = sdp->device;
1106 if (sdev->host->hostt->compat_ioctl) {
1107 int ret;
1108
1109 ret = sdev->host->hostt->compat_ioctl(sdev, cmd_in, (void __user *)arg);
1110
1111 return ret;
1112 }
1113
1114 return -ENOIOCTLCMD;
1115}
1116#endif
1117
1118static unsigned int
1119sg_poll(struct file *filp, poll_table * wait)
1120{
1121 unsigned int res = 0;
1122 Sg_device *sdp;
1123 Sg_fd *sfp;
1124 Sg_request *srp;
1125 int count = 0;
1126 unsigned long iflags;
1127
Jörn Engelebaf4662012-04-12 17:33:39 -04001128 sfp = filp->private_data;
1129 if (!sfp)
1130 return POLLERR;
1131 sdp = sfp->parentdp;
1132 if (!sdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 return POLLERR;
1134 poll_wait(filp, &sfp->read_wait, wait);
1135 read_lock_irqsave(&sfp->rq_list_lock, iflags);
1136 for (srp = sfp->headrp; srp; srp = srp->nextrp) {
1137 /* if any read waiting, flag it */
1138 if ((0 == res) && (1 == srp->done) && (!srp->sg_io_owned))
1139 res = POLLIN | POLLRDNORM;
1140 ++count;
1141 }
1142 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1143
1144 if (sdp->detached)
1145 res |= POLLHUP;
1146 else if (!sfp->cmd_q) {
1147 if (0 == count)
1148 res |= POLLOUT | POLLWRNORM;
1149 } else if (count < SG_MAX_QUEUE)
1150 res |= POLLOUT | POLLWRNORM;
1151 SCSI_LOG_TIMEOUT(3, printk("sg_poll: %s, res=0x%x\n",
1152 sdp->disk->disk_name, (int) res));
1153 return res;
1154}
1155
1156static int
1157sg_fasync(int fd, struct file *filp, int mode)
1158{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 Sg_device *sdp;
1160 Sg_fd *sfp;
1161
1162 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
1163 return -ENXIO;
1164 SCSI_LOG_TIMEOUT(3, printk("sg_fasync: %s, mode=%d\n",
1165 sdp->disk->disk_name, mode));
1166
Jonathan Corbet60aa4922009-02-01 14:52:56 -07001167 return fasync_helper(fd, filp, mode, &sfp->async_qp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168}
1169
Nick Piggina13ff0b2008-02-07 18:46:06 -08001170static int
1171sg_vma_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172{
1173 Sg_fd *sfp;
Mike Christied6b10342005-11-08 04:06:41 -06001174 unsigned long offset, len, sa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 Sg_scatter_hold *rsv_schp;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001176 int k, length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
1178 if ((NULL == vma) || (!(sfp = (Sg_fd *) vma->vm_private_data)))
Nick Piggina13ff0b2008-02-07 18:46:06 -08001179 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 rsv_schp = &sfp->reserve;
Nick Piggina13ff0b2008-02-07 18:46:06 -08001181 offset = vmf->pgoff << PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 if (offset >= rsv_schp->bufflen)
Nick Piggina13ff0b2008-02-07 18:46:06 -08001183 return VM_FAULT_SIGBUS;
1184 SCSI_LOG_TIMEOUT(3, printk("sg_vma_fault: offset=%lu, scatg=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 offset, rsv_schp->k_use_sg));
Mike Christied6b10342005-11-08 04:06:41 -06001186 sa = vma->vm_start;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001187 length = 1 << (PAGE_SHIFT + rsv_schp->page_order);
1188 for (k = 0; k < rsv_schp->k_use_sg && sa < vma->vm_end; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06001189 len = vma->vm_end - sa;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001190 len = (len < length) ? len : length;
Mike Christied6b10342005-11-08 04:06:41 -06001191 if (offset < len) {
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001192 struct page *page = nth_page(rsv_schp->pages[k],
1193 offset >> PAGE_SHIFT);
Mike Christied6b10342005-11-08 04:06:41 -06001194 get_page(page); /* increment page count */
Nick Piggina13ff0b2008-02-07 18:46:06 -08001195 vmf->page = page;
1196 return 0; /* success */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 }
Mike Christied6b10342005-11-08 04:06:41 -06001198 sa += len;
1199 offset -= len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 }
Mike Christied6b10342005-11-08 04:06:41 -06001201
Nick Piggina13ff0b2008-02-07 18:46:06 -08001202 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203}
1204
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04001205static const struct vm_operations_struct sg_mmap_vm_ops = {
Nick Piggina13ff0b2008-02-07 18:46:06 -08001206 .fault = sg_vma_fault,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207};
1208
1209static int
1210sg_mmap(struct file *filp, struct vm_area_struct *vma)
1211{
1212 Sg_fd *sfp;
Mike Christied6b10342005-11-08 04:06:41 -06001213 unsigned long req_sz, len, sa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 Sg_scatter_hold *rsv_schp;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001215 int k, length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
1217 if ((!filp) || (!vma) || (!(sfp = (Sg_fd *) filp->private_data)))
1218 return -ENXIO;
cb59e842005-04-02 13:51:23 -06001219 req_sz = vma->vm_end - vma->vm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 SCSI_LOG_TIMEOUT(3, printk("sg_mmap starting, vm_start=%p, len=%d\n",
1221 (void *) vma->vm_start, (int) req_sz));
1222 if (vma->vm_pgoff)
1223 return -EINVAL; /* want no offset */
1224 rsv_schp = &sfp->reserve;
1225 if (req_sz > rsv_schp->bufflen)
1226 return -ENOMEM; /* cannot map more than reserved buffer */
1227
Mike Christied6b10342005-11-08 04:06:41 -06001228 sa = vma->vm_start;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001229 length = 1 << (PAGE_SHIFT + rsv_schp->page_order);
1230 for (k = 0; k < rsv_schp->k_use_sg && sa < vma->vm_end; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06001231 len = vma->vm_end - sa;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001232 len = (len < length) ? len : length;
Mike Christied6b10342005-11-08 04:06:41 -06001233 sa += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 }
Mike Christied6b10342005-11-08 04:06:41 -06001235
Nick Pigginf9aed0e2006-03-22 00:08:30 -08001236 sfp->mmap_called = 1;
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -07001237 vma->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 vma->vm_private_data = sfp;
1239 vma->vm_ops = &sg_mmap_vm_ops;
1240 return 0;
1241}
1242
FUJITA Tomonoric96952e2009-02-04 11:36:27 +09001243static void sg_rq_end_io_usercontext(struct work_struct *work)
1244{
1245 struct sg_request *srp = container_of(work, struct sg_request, ew.work);
1246 struct sg_fd *sfp = srp->parentfp;
1247
1248 sg_finish_rem_req(srp);
1249 kref_put(&sfp->f_ref, sg_remove_sfp);
1250}
1251
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001252/*
1253 * This function is a "bottom half" handler that is called by the mid
1254 * level when a command is completed (or has failed).
1255 */
1256static void sg_rq_end_io(struct request *rq, int uptodate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257{
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001258 struct sg_request *srp = rq->end_io_data;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001259 Sg_device *sdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 Sg_fd *sfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 unsigned long iflags;
cb59e842005-04-02 13:51:23 -06001262 unsigned int ms;
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001263 char *sense;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001264 int result, resid, done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
Tony Battersbyc6517b792009-01-21 14:45:50 -05001266 if (WARN_ON(srp->done != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 return;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001268
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 sfp = srp->parentfp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001270 if (WARN_ON(sfp == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 return;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001272
1273 sdp = sfp->parentdp;
1274 if (unlikely(sdp->detached))
1275 printk(KERN_INFO "sg_rq_end_io: device detached\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001277 sense = rq->sense;
1278 result = rq->errors;
Tejun Heoc3a4d782009-05-07 22:24:37 +09001279 resid = rq->resid_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
1281 SCSI_LOG_TIMEOUT(4, printk("sg_cmd_done: %s, pack_id=%d, res=0x%x\n",
Mike Christied6b10342005-11-08 04:06:41 -06001282 sdp->disk->disk_name, srp->header.pack_id, result));
1283 srp->header.resid = resid;
cb59e842005-04-02 13:51:23 -06001284 ms = jiffies_to_msecs(jiffies);
1285 srp->header.duration = (ms > srp->header.duration) ?
1286 (ms - srp->header.duration) : 0;
Mike Christied6b10342005-11-08 04:06:41 -06001287 if (0 != result) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 struct scsi_sense_hdr sshdr;
1289
Mike Christied6b10342005-11-08 04:06:41 -06001290 srp->header.status = 0xff & result;
1291 srp->header.masked_status = status_byte(result);
1292 srp->header.msg_status = msg_byte(result);
1293 srp->header.host_status = host_byte(result);
1294 srp->header.driver_status = driver_byte(result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 if ((sdp->sgdebug > 0) &&
1296 ((CHECK_CONDITION == srp->header.masked_status) ||
1297 (COMMAND_TERMINATED == srp->header.masked_status)))
Mike Christied6b10342005-11-08 04:06:41 -06001298 __scsi_print_sense("sg_cmd_done", sense,
1299 SCSI_SENSE_BUFFERSIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
1301 /* Following if statement is a patch supplied by Eric Youngdale */
Mike Christied6b10342005-11-08 04:06:41 -06001302 if (driver_byte(result) != 0
1303 && scsi_normalize_sense(sense, SCSI_SENSE_BUFFERSIZE, &sshdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 && !scsi_sense_is_deferred(&sshdr)
1305 && sshdr.sense_key == UNIT_ATTENTION
1306 && sdp->device->removable) {
1307 /* Detected possible disc change. Set the bit - this */
1308 /* may be used if there are filesystems using this device */
1309 sdp->device->changed = 1;
1310 }
1311 }
1312 /* Rely on write phase to clean out srp status values, so no "else" */
1313
Tony Battersbyc6517b792009-01-21 14:45:50 -05001314 write_lock_irqsave(&sfp->rq_list_lock, iflags);
1315 if (unlikely(srp->orphan)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 if (sfp->keep_orphan)
1317 srp->sg_io_owned = 0;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001318 else
1319 done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05001321 srp->done = done;
1322 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1323
1324 if (likely(done)) {
1325 /* Now wake up any sg_read() that is waiting for this
1326 * packet.
1327 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 wake_up_interruptible(&sfp->read_wait);
Tony Battersbyc6517b792009-01-21 14:45:50 -05001329 kill_fasync(&sfp->async_qp, SIGPOLL, POLL_IN);
FUJITA Tomonoric96952e2009-02-04 11:36:27 +09001330 kref_put(&sfp->f_ref, sg_remove_sfp);
FUJITA Tomonori015640e2009-04-03 19:28:06 +09001331 } else {
1332 INIT_WORK(&srp->ew.work, sg_rq_end_io_usercontext);
1333 schedule_work(&srp->ew.work);
1334 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335}
1336
Alexey Dobriyan828c0952009-10-01 15:43:56 -07001337static const struct file_operations sg_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 .owner = THIS_MODULE,
1339 .read = sg_read,
1340 .write = sg_write,
1341 .poll = sg_poll,
Jörn Engel37b9d1e2012-04-12 17:35:05 -04001342 .unlocked_ioctl = sg_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343#ifdef CONFIG_COMPAT
1344 .compat_ioctl = sg_compat_ioctl,
1345#endif
1346 .open = sg_open,
1347 .mmap = sg_mmap,
1348 .release = sg_release,
1349 .fasync = sg_fasync,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001350 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351};
1352
gregkh@suse.ded2538782005-03-23 09:55:22 -08001353static struct class *sg_sysfs_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
1355static int sg_sysfs_valid = 0;
1356
James Bottomley7c07d612007-08-05 13:36:11 -05001357static Sg_device *sg_alloc(struct gendisk *disk, struct scsi_device *scsidp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358{
Mike Christied6b10342005-11-08 04:06:41 -06001359 struct request_queue *q = scsidp->request_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 Sg_device *sdp;
1361 unsigned long iflags;
James Bottomley7c07d612007-08-05 13:36:11 -05001362 int error;
1363 u32 k;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
Jes Sorensen24669f752006-01-16 10:31:18 -05001365 sdp = kzalloc(sizeof(Sg_device), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 if (!sdp) {
1367 printk(KERN_WARNING "kmalloc Sg_device failure\n");
James Bottomley7c07d612007-08-05 13:36:11 -05001368 return ERR_PTR(-ENOMEM);
1369 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05001370
Tejun Heob98c52b2013-02-27 17:04:42 -08001371 idr_preload(GFP_KERNEL);
James Bottomley7c07d612007-08-05 13:36:11 -05001372 write_lock_irqsave(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
Tejun Heob98c52b2013-02-27 17:04:42 -08001374 error = idr_alloc(&sg_index_idr, sdp, 0, SG_MAX_DEVS, GFP_NOWAIT);
1375 if (error < 0) {
1376 if (error == -ENOSPC) {
1377 sdev_printk(KERN_WARNING, scsidp,
1378 "Unable to attach sg device type=%d, minor number exceeds %d\n",
1379 scsidp->type, SG_MAX_DEVS - 1);
1380 error = -ENODEV;
1381 } else {
1382 printk(KERN_WARNING
1383 "idr allocation Sg_device failure: %d\n", error);
1384 }
1385 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 }
Tejun Heob98c52b2013-02-27 17:04:42 -08001387 k = error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 SCSI_LOG_TIMEOUT(3, printk("sg_alloc: dev=%d \n", k));
1390 sprintf(disk->disk_name, "sg%d", k);
1391 disk->first_minor = k;
1392 sdp->disk = disk;
1393 sdp->device = scsidp;
Vaughan Cao1f962eb2013-08-29 10:00:39 +08001394 spin_lock_init(&sdp->sfd_lock);
FUJITA Tomonori3442f802009-02-16 13:26:53 +09001395 INIT_LIST_HEAD(&sdp->sfds);
Vaughan Cao15b06f92013-08-29 10:00:36 +08001396 init_rwsem(&sdp->o_sem);
Martin K. Petersen8a783622010-02-26 00:20:39 -05001397 sdp->sg_tablesize = queue_max_segments(q);
James Bottomley7c07d612007-08-05 13:36:11 -05001398 sdp->index = k;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001399 kref_init(&sdp->d_ref);
James Bottomley7c07d612007-08-05 13:36:11 -05001400 error = 0;
Tejun Heob98c52b2013-02-27 17:04:42 -08001401
1402out_unlock:
1403 write_unlock_irqrestore(&sg_index_lock, iflags);
1404 idr_preload_end();
1405
James Bottomley7c07d612007-08-05 13:36:11 -05001406 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 kfree(sdp);
James Bottomley7c07d612007-08-05 13:36:11 -05001408 return ERR_PTR(error);
1409 }
1410 return sdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411}
1412
1413static int
Tony Jonesee959b02008-02-22 00:13:36 +01001414sg_add(struct device *cl_dev, struct class_interface *cl_intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415{
Tony Jonesee959b02008-02-22 00:13:36 +01001416 struct scsi_device *scsidp = to_scsi_device(cl_dev->parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 struct gendisk *disk;
1418 Sg_device *sdp = NULL;
1419 struct cdev * cdev = NULL;
James Bottomley7c07d612007-08-05 13:36:11 -05001420 int error;
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001421 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
1423 disk = alloc_disk(1);
1424 if (!disk) {
1425 printk(KERN_WARNING "alloc_disk failed\n");
1426 return -ENOMEM;
1427 }
1428 disk->major = SCSI_GENERIC_MAJOR;
1429
1430 error = -ENOMEM;
1431 cdev = cdev_alloc();
1432 if (!cdev) {
1433 printk(KERN_WARNING "cdev_alloc failed\n");
1434 goto out;
1435 }
1436 cdev->owner = THIS_MODULE;
1437 cdev->ops = &sg_fops;
1438
James Bottomley7c07d612007-08-05 13:36:11 -05001439 sdp = sg_alloc(disk, scsidp);
1440 if (IS_ERR(sdp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 printk(KERN_WARNING "sg_alloc failed\n");
James Bottomley7c07d612007-08-05 13:36:11 -05001442 error = PTR_ERR(sdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 goto out;
1444 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
James Bottomley7c07d612007-08-05 13:36:11 -05001446 error = cdev_add(cdev, MKDEV(SCSI_GENERIC_MAJOR, sdp->index), 1);
Greg KH5e3c34c2006-01-18 16:17:46 -08001447 if (error)
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001448 goto cdev_add_err;
Greg KH5e3c34c2006-01-18 16:17:46 -08001449
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 sdp->cdev = cdev;
1451 if (sg_sysfs_valid) {
Tony Jonesee959b02008-02-22 00:13:36 +01001452 struct device *sg_class_member;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453
Greg Kroah-Hartmand73a1a62008-07-21 20:03:34 -07001454 sg_class_member = device_create(sg_sysfs_class, cl_dev->parent,
1455 MKDEV(SCSI_GENERIC_MAJOR,
1456 sdp->index),
1457 sdp, "%s", disk->disk_name);
FUJITA Tomonorid07e0362008-01-15 13:18:00 +09001458 if (IS_ERR(sg_class_member)) {
1459 printk(KERN_ERR "sg_add: "
Tony Jonesee959b02008-02-22 00:13:36 +01001460 "device_create failed\n");
FUJITA Tomonorid07e0362008-01-15 13:18:00 +09001461 error = PTR_ERR(sg_class_member);
1462 goto cdev_add_err;
1463 }
FUJITA Tomonorid07e0362008-01-15 13:18:00 +09001464 error = sysfs_create_link(&scsidp->sdev_gendev.kobj,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 &sg_class_member->kobj, "generic");
1466 if (error)
1467 printk(KERN_ERR "sg_add: unable to make symlink "
James Bottomley7c07d612007-08-05 13:36:11 -05001468 "'generic' back to sg%d\n", sdp->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 } else
James Bottomley7c07d612007-08-05 13:36:11 -05001470 printk(KERN_WARNING "sg_add: sg_sys Invalid\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
James Bottomley9ccfc752005-10-02 11:45:08 -05001472 sdev_printk(KERN_NOTICE, scsidp,
James Bottomley7c07d612007-08-05 13:36:11 -05001473 "Attached scsi generic sg%d type %d\n", sdp->index,
1474 scsidp->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
Tony Jonesee959b02008-02-22 00:13:36 +01001476 dev_set_drvdata(cl_dev, sdp);
FUJITA Tomonoria24484f2008-01-15 13:17:47 +09001477
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 return 0;
1479
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001480cdev_add_err:
James Bottomley7c07d612007-08-05 13:36:11 -05001481 write_lock_irqsave(&sg_index_lock, iflags);
1482 idr_remove(&sg_index_idr, sdp->index);
1483 write_unlock_irqrestore(&sg_index_lock, iflags);
1484 kfree(sdp);
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001485
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486out:
1487 put_disk(disk);
1488 if (cdev)
1489 cdev_del(cdev);
1490 return error;
1491}
1492
Tony Battersbyc6517b792009-01-21 14:45:50 -05001493static void sg_device_destroy(struct kref *kref)
1494{
1495 struct sg_device *sdp = container_of(kref, struct sg_device, d_ref);
1496 unsigned long flags;
1497
1498 /* CAUTION! Note that the device can still be found via idr_find()
1499 * even though the refcount is 0. Therefore, do idr_remove() BEFORE
1500 * any other cleanup.
1501 */
1502
1503 write_lock_irqsave(&sg_index_lock, flags);
1504 idr_remove(&sg_index_idr, sdp->index);
1505 write_unlock_irqrestore(&sg_index_lock, flags);
1506
1507 SCSI_LOG_TIMEOUT(3,
1508 printk("sg_device_destroy: %s\n",
1509 sdp->disk->disk_name));
1510
1511 put_disk(sdp->disk);
1512 kfree(sdp);
1513}
1514
1515static void sg_remove(struct device *cl_dev, struct class_interface *cl_intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516{
Tony Jonesee959b02008-02-22 00:13:36 +01001517 struct scsi_device *scsidp = to_scsi_device(cl_dev->parent);
1518 Sg_device *sdp = dev_get_drvdata(cl_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 unsigned long iflags;
1520 Sg_fd *sfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
Tony Battersbyc6517b792009-01-21 14:45:50 -05001522 if (!sdp || sdp->detached)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
Tony Battersbyc6517b792009-01-21 14:45:50 -05001525 SCSI_LOG_TIMEOUT(3, printk("sg_remove: %s\n", sdp->disk->disk_name));
1526
1527 /* Need a write lock to set sdp->detached. */
James Bottomley7c07d612007-08-05 13:36:11 -05001528 write_lock_irqsave(&sg_index_lock, iflags);
Vaughan Cao1f962eb2013-08-29 10:00:39 +08001529 spin_lock(&sdp->sfd_lock);
Tony Battersbyc6517b792009-01-21 14:45:50 -05001530 sdp->detached = 1;
FUJITA Tomonori3442f802009-02-16 13:26:53 +09001531 list_for_each_entry(sfp, &sdp->sfds, sfd_siblings) {
Tony Battersbyc6517b792009-01-21 14:45:50 -05001532 wake_up_interruptible(&sfp->read_wait);
1533 kill_fasync(&sfp->async_qp, SIGPOLL, POLL_HUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 }
Vaughan Cao1f962eb2013-08-29 10:00:39 +08001535 spin_unlock(&sdp->sfd_lock);
James Bottomley7c07d612007-08-05 13:36:11 -05001536 write_unlock_irqrestore(&sg_index_lock, iflags);
1537
1538 sysfs_remove_link(&scsidp->sdev_gendev.kobj, "generic");
Tony Jonesee959b02008-02-22 00:13:36 +01001539 device_destroy(sg_sysfs_class, MKDEV(SCSI_GENERIC_MAJOR, sdp->index));
James Bottomley7c07d612007-08-05 13:36:11 -05001540 cdev_del(sdp->cdev);
1541 sdp->cdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542
Tony Battersbyc6517b792009-01-21 14:45:50 -05001543 sg_put_dev(sdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544}
1545
Douglas Gilbert6460e752006-09-20 18:20:49 -04001546module_param_named(scatter_elem_sz, scatter_elem_sz, int, S_IRUGO | S_IWUSR);
1547module_param_named(def_reserved_size, def_reserved_size, int,
1548 S_IRUGO | S_IWUSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549module_param_named(allow_dio, sg_allow_dio, int, S_IRUGO | S_IWUSR);
1550
1551MODULE_AUTHOR("Douglas Gilbert");
1552MODULE_DESCRIPTION("SCSI generic (sg) driver");
1553MODULE_LICENSE("GPL");
1554MODULE_VERSION(SG_VERSION_STR);
Rene Hermanf018fa52006-03-08 00:14:20 -08001555MODULE_ALIAS_CHARDEV_MAJOR(SCSI_GENERIC_MAJOR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
Douglas Gilbert6460e752006-09-20 18:20:49 -04001557MODULE_PARM_DESC(scatter_elem_sz, "scatter gather element "
1558 "size (default: max(SG_SCATTER_SZ, PAGE_SIZE))");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559MODULE_PARM_DESC(def_reserved_size, "size of buffer reserved for each fd");
1560MODULE_PARM_DESC(allow_dio, "allow direct I/O (default: 0 (disallow))");
1561
1562static int __init
1563init_sg(void)
1564{
1565 int rc;
1566
Douglas Gilbert6460e752006-09-20 18:20:49 -04001567 if (scatter_elem_sz < PAGE_SIZE) {
1568 scatter_elem_sz = PAGE_SIZE;
1569 scatter_elem_sz_prev = scatter_elem_sz;
1570 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 if (def_reserved_size >= 0)
1572 sg_big_buff = def_reserved_size;
Douglas Gilbert6460e752006-09-20 18:20:49 -04001573 else
1574 def_reserved_size = sg_big_buff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
1576 rc = register_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0),
1577 SG_MAX_DEVS, "sg");
1578 if (rc)
1579 return rc;
gregkh@suse.ded2538782005-03-23 09:55:22 -08001580 sg_sysfs_class = class_create(THIS_MODULE, "scsi_generic");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 if ( IS_ERR(sg_sysfs_class) ) {
1582 rc = PTR_ERR(sg_sysfs_class);
1583 goto err_out;
1584 }
1585 sg_sysfs_valid = 1;
1586 rc = scsi_register_interface(&sg_interface);
1587 if (0 == rc) {
1588#ifdef CONFIG_SCSI_PROC_FS
1589 sg_proc_init();
1590#endif /* CONFIG_SCSI_PROC_FS */
1591 return 0;
1592 }
gregkh@suse.ded2538782005-03-23 09:55:22 -08001593 class_destroy(sg_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594err_out:
1595 unregister_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0), SG_MAX_DEVS);
1596 return rc;
1597}
1598
1599static void __exit
1600exit_sg(void)
1601{
1602#ifdef CONFIG_SCSI_PROC_FS
1603 sg_proc_cleanup();
1604#endif /* CONFIG_SCSI_PROC_FS */
1605 scsi_unregister_interface(&sg_interface);
gregkh@suse.ded2538782005-03-23 09:55:22 -08001606 class_destroy(sg_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 sg_sysfs_valid = 0;
1608 unregister_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0),
1609 SG_MAX_DEVS);
James Bottomley7c07d612007-08-05 13:36:11 -05001610 idr_destroy(&sg_index_idr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611}
1612
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001613static int sg_start_req(Sg_request *srp, unsigned char *cmd)
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001614{
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001615 int res;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001616 struct request *rq;
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001617 Sg_fd *sfp = srp->parentfp;
1618 sg_io_hdr_t *hp = &srp->header;
1619 int dxfer_len = (int) hp->dxfer_len;
1620 int dxfer_dir = hp->dxfer_direction;
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001621 unsigned int iov_count = hp->iovec_count;
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001622 Sg_scatter_hold *req_schp = &srp->data;
1623 Sg_scatter_hold *rsv_schp = &sfp->reserve;
1624 struct request_queue *q = sfp->parentdp->device->request_queue;
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001625 struct rq_map_data *md, map_data;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001626 int rw = hp->dxfer_direction == SG_DXFER_TO_DEV ? WRITE : READ;
1627
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001628 SCSI_LOG_TIMEOUT(4, printk(KERN_INFO "sg_start_req: dxfer_len=%d\n",
1629 dxfer_len));
1630
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001631 rq = blk_get_request(q, rw, GFP_ATOMIC);
1632 if (!rq)
1633 return -ENOMEM;
1634
1635 memcpy(rq->cmd, cmd, hp->cmd_len);
1636
1637 rq->cmd_len = hp->cmd_len;
1638 rq->cmd_type = REQ_TYPE_BLOCK_PC;
1639
1640 srp->rq = rq;
1641 rq->end_io_data = srp;
1642 rq->sense = srp->sense_b;
1643 rq->retries = SG_DEFAULT_RETRIES;
1644
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 if ((dxfer_len <= 0) || (dxfer_dir == SG_DXFER_NONE))
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001646 return 0;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001647
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001648 if (sg_allow_dio && hp->flags & SG_FLAG_DIRECT_IO &&
1649 dxfer_dir != SG_DXFER_UNKNOWN && !iov_count &&
1650 !sfp->parentdp->device->host->unchecked_isa_dma &&
Namhyung Kim2610a252010-09-16 12:55:57 +09001651 blk_rq_aligned(q, (unsigned long)hp->dxferp, dxfer_len))
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001652 md = NULL;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001653 else
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001654 md = &map_data;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001655
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001656 if (md) {
1657 if (!sg_res_in_use(sfp) && dxfer_len <= rsv_schp->bufflen)
1658 sg_link_reserve(sfp, srp, dxfer_len);
1659 else {
1660 res = sg_build_indirect(req_schp, sfp, dxfer_len);
1661 if (res)
1662 return res;
1663 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001664
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001665 md->pages = req_schp->pages;
1666 md->page_order = req_schp->page_order;
1667 md->nr_entries = req_schp->k_use_sg;
FUJITA Tomonori56c451f2008-12-18 14:49:37 +09001668 md->offset = 0;
FUJITA Tomonori97ae77a2008-12-18 14:49:38 +09001669 md->null_mapped = hp->dxferp ? 0 : 1;
FUJITA Tomonoriecb554a2009-07-09 14:46:53 +02001670 if (dxfer_dir == SG_DXFER_TO_FROM_DEV)
1671 md->from_user = 1;
1672 else
1673 md->from_user = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001675
FUJITA Tomonori0fdf96b2009-04-03 09:12:20 +09001676 if (iov_count) {
1677 int len, size = sizeof(struct sg_iovec) * iov_count;
1678 struct iovec *iov;
1679
Julia Lawall30941412010-08-10 18:01:27 -07001680 iov = memdup_user(hp->dxferp, size);
1681 if (IS_ERR(iov))
1682 return PTR_ERR(iov);
FUJITA Tomonori0fdf96b2009-04-03 09:12:20 +09001683
1684 len = iov_length(iov, iov_count);
1685 if (hp->dxfer_len < len) {
1686 iov_count = iov_shorten(iov, iov_count, hp->dxfer_len);
1687 len = hp->dxfer_len;
1688 }
1689
1690 res = blk_rq_map_user_iov(q, rq, md, (struct sg_iovec *)iov,
1691 iov_count,
1692 len, GFP_ATOMIC);
1693 kfree(iov);
1694 } else
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001695 res = blk_rq_map_user(q, rq, md, hp->dxferp,
1696 hp->dxfer_len, GFP_ATOMIC);
1697
1698 if (!res) {
1699 srp->bio = rq->bio;
1700
1701 if (!md) {
1702 req_schp->dio_in_use = 1;
1703 hp->info |= SG_INFO_DIRECT_IO;
1704 }
1705 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001706 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707}
1708
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +09001709static int sg_finish_rem_req(Sg_request * srp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710{
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +09001711 int ret = 0;
1712
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 Sg_fd *sfp = srp->parentfp;
1714 Sg_scatter_hold *req_schp = &srp->data;
1715
1716 SCSI_LOG_TIMEOUT(4, printk("sg_finish_rem_req: res_used=%d\n", (int) srp->res_used));
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001717 if (srp->rq) {
1718 if (srp->bio)
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +09001719 ret = blk_rq_unmap_user(srp->bio);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001720
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001721 blk_put_request(srp->rq);
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001722 }
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001723
Christof Schmitte27168f2009-09-17 09:10:14 +02001724 if (srp->res_used)
1725 sg_unlink_reserve(sfp, srp);
1726 else
1727 sg_remove_scat(req_schp);
1728
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 sg_remove_request(sfp, srp);
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +09001730
1731 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732}
1733
1734static int
1735sg_build_sgat(Sg_scatter_hold * schp, const Sg_fd * sfp, int tablesize)
1736{
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001737 int sg_bufflen = tablesize * sizeof(struct page *);
Al Viro2d20eaf2006-02-01 06:31:40 -05001738 gfp_t gfp_flags = GFP_ATOMIC | __GFP_NOWARN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001740 schp->pages = kzalloc(sg_bufflen, gfp_flags);
1741 if (!schp->pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 schp->sglist_len = sg_bufflen;
Mike Christied6b10342005-11-08 04:06:41 -06001744 return tablesize; /* number of scat_gath elements allocated */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745}
1746
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747static int
1748sg_build_indirect(Sg_scatter_hold * schp, Sg_fd * sfp, int buff_size)
1749{
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001750 int ret_sz = 0, i, k, rem_sz, num, mx_sc_elems;
Mike Christied6b10342005-11-08 04:06:41 -06001751 int sg_tablesize = sfp->parentdp->sg_tablesize;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001752 int blk_size = buff_size, order;
1753 gfp_t gfp_mask = GFP_ATOMIC | __GFP_COMP | __GFP_NOWARN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754
Eric Sesterhennfb119932007-05-23 14:41:36 -07001755 if (blk_size < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 return -EFAULT;
1757 if (0 == blk_size)
1758 ++blk_size; /* don't know why */
FUJITA Tomonorib2ed6c62009-02-12 02:42:57 +09001759 /* round request up to next highest SG_SECTOR_SZ byte boundary */
1760 blk_size = ALIGN(blk_size, SG_SECTOR_SZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 SCSI_LOG_TIMEOUT(4, printk("sg_build_indirect: buff_size=%d, blk_size=%d\n",
1762 buff_size, blk_size));
Mike Christied6b10342005-11-08 04:06:41 -06001763
1764 /* N.B. ret_sz carried into this block ... */
1765 mx_sc_elems = sg_build_sgat(schp, sfp, sg_tablesize);
1766 if (mx_sc_elems < 0)
1767 return mx_sc_elems; /* most likely -ENOMEM */
1768
Douglas Gilbert6460e752006-09-20 18:20:49 -04001769 num = scatter_elem_sz;
1770 if (unlikely(num != scatter_elem_sz_prev)) {
1771 if (num < PAGE_SIZE) {
1772 scatter_elem_sz = PAGE_SIZE;
1773 scatter_elem_sz_prev = PAGE_SIZE;
1774 } else
1775 scatter_elem_sz_prev = num;
1776 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001777
1778 if (sfp->low_dma)
1779 gfp_mask |= GFP_DMA;
1780
1781 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
1782 gfp_mask |= __GFP_ZERO;
1783
1784 order = get_order(num);
1785retry:
1786 ret_sz = 1 << (PAGE_SHIFT + order);
1787
1788 for (k = 0, rem_sz = blk_size; rem_sz > 0 && k < mx_sc_elems;
1789 k++, rem_sz -= ret_sz) {
1790
Douglas Gilbert6460e752006-09-20 18:20:49 -04001791 num = (rem_sz > scatter_elem_sz_prev) ?
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001792 scatter_elem_sz_prev : rem_sz;
1793
1794 schp->pages[k] = alloc_pages(gfp_mask, order);
1795 if (!schp->pages[k])
1796 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
Douglas Gilbert6460e752006-09-20 18:20:49 -04001798 if (num == scatter_elem_sz_prev) {
1799 if (unlikely(ret_sz > scatter_elem_sz_prev)) {
1800 scatter_elem_sz = ret_sz;
1801 scatter_elem_sz_prev = ret_sz;
1802 }
1803 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804
Douglas Gilbert7ca63cb2006-10-27 17:47:49 -04001805 SCSI_LOG_TIMEOUT(5, printk("sg_build_indirect: k=%d, num=%d, "
1806 "ret_sz=%d\n", k, num, ret_sz));
Mike Christied6b10342005-11-08 04:06:41 -06001807 } /* end of for loop */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001809 schp->page_order = order;
Mike Christied6b10342005-11-08 04:06:41 -06001810 schp->k_use_sg = k;
Douglas Gilbert7ca63cb2006-10-27 17:47:49 -04001811 SCSI_LOG_TIMEOUT(5, printk("sg_build_indirect: k_use_sg=%d, "
1812 "rem_sz=%d\n", k, rem_sz));
Mike Christied6b10342005-11-08 04:06:41 -06001813
1814 schp->bufflen = blk_size;
1815 if (rem_sz > 0) /* must have failed */
1816 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 return 0;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001818out:
1819 for (i = 0; i < k; i++)
Michal Schmidte71044e2009-09-03 14:27:08 +02001820 __free_pages(schp->pages[i], order);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001821
1822 if (--order >= 0)
1823 goto retry;
1824
1825 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826}
1827
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828static void
1829sg_remove_scat(Sg_scatter_hold * schp)
1830{
1831 SCSI_LOG_TIMEOUT(4, printk("sg_remove_scat: k_use_sg=%d\n", schp->k_use_sg));
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001832 if (schp->pages && schp->sglist_len > 0) {
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001833 if (!schp->dio_in_use) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 int k;
1835
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001836 for (k = 0; k < schp->k_use_sg && schp->pages[k]; k++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 SCSI_LOG_TIMEOUT(5, printk(
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001838 "sg_remove_scat: k=%d, pg=0x%p\n",
1839 k, schp->pages[k]));
1840 __free_pages(schp->pages[k], schp->page_order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 }
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001842
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001843 kfree(schp->pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 }
Mike Christied6b10342005-11-08 04:06:41 -06001845 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 memset(schp, 0, sizeof (*schp));
1847}
1848
1849static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850sg_read_oxfer(Sg_request * srp, char __user *outp, int num_read_xfer)
1851{
1852 Sg_scatter_hold *schp = &srp->data;
Mike Christied6b10342005-11-08 04:06:41 -06001853 int k, num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854
1855 SCSI_LOG_TIMEOUT(4, printk("sg_read_oxfer: num_read_xfer=%d\n",
1856 num_read_xfer));
1857 if ((!outp) || (num_read_xfer <= 0))
1858 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001860 num = 1 << (PAGE_SHIFT + schp->page_order);
1861 for (k = 0; k < schp->k_use_sg && schp->pages[k]; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06001862 if (num > num_read_xfer) {
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001863 if (__copy_to_user(outp, page_address(schp->pages[k]),
Mike Christied6b10342005-11-08 04:06:41 -06001864 num_read_xfer))
1865 return -EFAULT;
1866 break;
1867 } else {
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001868 if (__copy_to_user(outp, page_address(schp->pages[k]),
Mike Christied6b10342005-11-08 04:06:41 -06001869 num))
1870 return -EFAULT;
1871 num_read_xfer -= num;
1872 if (num_read_xfer <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 break;
Mike Christied6b10342005-11-08 04:06:41 -06001874 outp += num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 }
Mike Christied6b10342005-11-08 04:06:41 -06001877
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 return 0;
1879}
1880
1881static void
1882sg_build_reserve(Sg_fd * sfp, int req_size)
1883{
1884 Sg_scatter_hold *schp = &sfp->reserve;
1885
1886 SCSI_LOG_TIMEOUT(4, printk("sg_build_reserve: req_size=%d\n", req_size));
1887 do {
1888 if (req_size < PAGE_SIZE)
1889 req_size = PAGE_SIZE;
1890 if (0 == sg_build_indirect(schp, sfp, req_size))
1891 return;
1892 else
1893 sg_remove_scat(schp);
1894 req_size >>= 1; /* divide by 2 */
1895 } while (req_size > (PAGE_SIZE / 2));
1896}
1897
1898static void
1899sg_link_reserve(Sg_fd * sfp, Sg_request * srp, int size)
1900{
1901 Sg_scatter_hold *req_schp = &srp->data;
1902 Sg_scatter_hold *rsv_schp = &sfp->reserve;
Mike Christied6b10342005-11-08 04:06:41 -06001903 int k, num, rem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904
1905 srp->res_used = 1;
1906 SCSI_LOG_TIMEOUT(4, printk("sg_link_reserve: size=%d\n", size));
Brian Kingeca7be52006-02-14 12:42:24 -06001907 rem = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001909 num = 1 << (PAGE_SHIFT + rsv_schp->page_order);
1910 for (k = 0; k < rsv_schp->k_use_sg; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06001911 if (rem <= num) {
Mike Christied6b10342005-11-08 04:06:41 -06001912 req_schp->k_use_sg = k + 1;
1913 req_schp->sglist_len = rsv_schp->sglist_len;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001914 req_schp->pages = rsv_schp->pages;
Mike Christied6b10342005-11-08 04:06:41 -06001915
1916 req_schp->bufflen = size;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001917 req_schp->page_order = rsv_schp->page_order;
Mike Christied6b10342005-11-08 04:06:41 -06001918 break;
1919 } else
1920 rem -= num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 }
Mike Christied6b10342005-11-08 04:06:41 -06001922
1923 if (k >= rsv_schp->k_use_sg)
1924 SCSI_LOG_TIMEOUT(1, printk("sg_link_reserve: BAD size\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925}
1926
1927static void
1928sg_unlink_reserve(Sg_fd * sfp, Sg_request * srp)
1929{
1930 Sg_scatter_hold *req_schp = &srp->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
1932 SCSI_LOG_TIMEOUT(4, printk("sg_unlink_reserve: req->k_use_sg=%d\n",
1933 (int) req_schp->k_use_sg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 req_schp->k_use_sg = 0;
1935 req_schp->bufflen = 0;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001936 req_schp->pages = NULL;
1937 req_schp->page_order = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 req_schp->sglist_len = 0;
1939 sfp->save_scat_len = 0;
1940 srp->res_used = 0;
1941}
1942
1943static Sg_request *
1944sg_get_rq_mark(Sg_fd * sfp, int pack_id)
1945{
1946 Sg_request *resp;
1947 unsigned long iflags;
1948
1949 write_lock_irqsave(&sfp->rq_list_lock, iflags);
1950 for (resp = sfp->headrp; resp; resp = resp->nextrp) {
1951 /* look for requests that are ready + not SG_IO owned */
1952 if ((1 == resp->done) && (!resp->sg_io_owned) &&
1953 ((-1 == pack_id) || (resp->header.pack_id == pack_id))) {
1954 resp->done = 2; /* guard against other readers */
1955 break;
1956 }
1957 }
1958 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1959 return resp;
1960}
1961
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962/* always adds to end of list */
1963static Sg_request *
1964sg_add_request(Sg_fd * sfp)
1965{
1966 int k;
1967 unsigned long iflags;
1968 Sg_request *resp;
1969 Sg_request *rp = sfp->req_arr;
1970
1971 write_lock_irqsave(&sfp->rq_list_lock, iflags);
1972 resp = sfp->headrp;
1973 if (!resp) {
1974 memset(rp, 0, sizeof (Sg_request));
1975 rp->parentfp = sfp;
1976 resp = rp;
1977 sfp->headrp = resp;
1978 } else {
1979 if (0 == sfp->cmd_q)
1980 resp = NULL; /* command queuing disallowed */
1981 else {
1982 for (k = 0; k < SG_MAX_QUEUE; ++k, ++rp) {
1983 if (!rp->parentfp)
1984 break;
1985 }
1986 if (k < SG_MAX_QUEUE) {
1987 memset(rp, 0, sizeof (Sg_request));
1988 rp->parentfp = sfp;
1989 while (resp->nextrp)
1990 resp = resp->nextrp;
1991 resp->nextrp = rp;
1992 resp = rp;
1993 } else
1994 resp = NULL;
1995 }
1996 }
1997 if (resp) {
1998 resp->nextrp = NULL;
cb59e842005-04-02 13:51:23 -06001999 resp->header.duration = jiffies_to_msecs(jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 }
2001 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
2002 return resp;
2003}
2004
2005/* Return of 1 for found; 0 for not found */
2006static int
2007sg_remove_request(Sg_fd * sfp, Sg_request * srp)
2008{
2009 Sg_request *prev_rp;
2010 Sg_request *rp;
2011 unsigned long iflags;
2012 int res = 0;
2013
2014 if ((!sfp) || (!srp) || (!sfp->headrp))
2015 return res;
2016 write_lock_irqsave(&sfp->rq_list_lock, iflags);
2017 prev_rp = sfp->headrp;
2018 if (srp == prev_rp) {
2019 sfp->headrp = prev_rp->nextrp;
2020 prev_rp->parentfp = NULL;
2021 res = 1;
2022 } else {
2023 while ((rp = prev_rp->nextrp)) {
2024 if (srp == rp) {
2025 prev_rp->nextrp = rp->nextrp;
2026 rp->parentfp = NULL;
2027 res = 1;
2028 break;
2029 }
2030 prev_rp = rp;
2031 }
2032 }
2033 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
2034 return res;
2035}
2036
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037static Sg_fd *
2038sg_add_sfp(Sg_device * sdp, int dev)
2039{
2040 Sg_fd *sfp;
2041 unsigned long iflags;
Alan Stern44ec9542007-02-20 11:01:57 -05002042 int bufflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043
Mike Christied6b10342005-11-08 04:06:41 -06002044 sfp = kzalloc(sizeof(*sfp), GFP_ATOMIC | __GFP_NOWARN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 if (!sfp)
Vaughan Caoe32c9e62013-08-29 10:00:38 +08002046 return ERR_PTR(-ENOMEM);
Mike Christied6b10342005-11-08 04:06:41 -06002047
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 init_waitqueue_head(&sfp->read_wait);
2049 rwlock_init(&sfp->rq_list_lock);
2050
Tony Battersbyc6517b792009-01-21 14:45:50 -05002051 kref_init(&sfp->f_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 sfp->timeout = SG_DEFAULT_TIMEOUT;
2053 sfp->timeout_user = SG_DEFAULT_TIMEOUT_USER;
2054 sfp->force_packid = SG_DEF_FORCE_PACK_ID;
2055 sfp->low_dma = (SG_DEF_FORCE_LOW_DMA == 0) ?
2056 sdp->device->host->unchecked_isa_dma : 1;
2057 sfp->cmd_q = SG_DEF_COMMAND_Q;
2058 sfp->keep_orphan = SG_DEF_KEEP_ORPHAN;
2059 sfp->parentdp = sdp;
Vaughan Cao1f962eb2013-08-29 10:00:39 +08002060 spin_lock_irqsave(&sdp->sfd_lock, iflags);
Vaughan Caoe32c9e62013-08-29 10:00:38 +08002061 if (sdp->detached) {
Vaughan Cao1f962eb2013-08-29 10:00:39 +08002062 spin_unlock_irqrestore(&sdp->sfd_lock, iflags);
Vaughan Caoe32c9e62013-08-29 10:00:38 +08002063 return ERR_PTR(-ENODEV);
2064 }
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002065 list_add_tail(&sfp->sfd_siblings, &sdp->sfds);
Vaughan Cao1f962eb2013-08-29 10:00:39 +08002066 spin_unlock_irqrestore(&sdp->sfd_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 SCSI_LOG_TIMEOUT(3, printk("sg_add_sfp: sfp=0x%p\n", sfp));
Douglas Gilbert6460e752006-09-20 18:20:49 -04002068 if (unlikely(sg_big_buff != def_reserved_size))
2069 sg_big_buff = def_reserved_size;
2070
Alan Stern44ec9542007-02-20 11:01:57 -05002071 bufflen = min_t(int, sg_big_buff,
Martin K. Petersenae03bf62009-05-22 17:17:50 -04002072 queue_max_sectors(sdp->device->request_queue) * 512);
Alan Stern44ec9542007-02-20 11:01:57 -05002073 sg_build_reserve(sfp, bufflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 SCSI_LOG_TIMEOUT(3, printk("sg_add_sfp: bufflen=%d, k_use_sg=%d\n",
2075 sfp->reserve.bufflen, sfp->reserve.k_use_sg));
Tony Battersbyc6517b792009-01-21 14:45:50 -05002076
2077 kref_get(&sdp->d_ref);
2078 __module_get(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 return sfp;
2080}
2081
Tony Battersbyc6517b792009-01-21 14:45:50 -05002082static void sg_remove_sfp_usercontext(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083{
Tony Battersbyc6517b792009-01-21 14:45:50 -05002084 struct sg_fd *sfp = container_of(work, struct sg_fd, ew.work);
2085 struct sg_device *sdp = sfp->parentdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086
Tony Battersbyc6517b792009-01-21 14:45:50 -05002087 /* Cleanup any responses which were never read(). */
2088 while (sfp->headrp)
2089 sg_finish_rem_req(sfp->headrp);
2090
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 if (sfp->reserve.bufflen > 0) {
Tony Battersbyc6517b792009-01-21 14:45:50 -05002092 SCSI_LOG_TIMEOUT(6,
2093 printk("sg_remove_sfp: bufflen=%d, k_use_sg=%d\n",
2094 (int) sfp->reserve.bufflen,
2095 (int) sfp->reserve.k_use_sg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 sg_remove_scat(&sfp->reserve);
2097 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05002098
2099 SCSI_LOG_TIMEOUT(6,
2100 printk("sg_remove_sfp: %s, sfp=0x%p\n",
2101 sdp->disk->disk_name,
2102 sfp));
Mike Christied6b10342005-11-08 04:06:41 -06002103 kfree(sfp);
Tony Battersbyc6517b792009-01-21 14:45:50 -05002104
2105 scsi_device_put(sdp->device);
2106 sg_put_dev(sdp);
2107 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108}
2109
Tony Battersbyc6517b792009-01-21 14:45:50 -05002110static void sg_remove_sfp(struct kref *kref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111{
Tony Battersbyc6517b792009-01-21 14:45:50 -05002112 struct sg_fd *sfp = container_of(kref, struct sg_fd, f_ref);
Vaughan Cao1f962eb2013-08-29 10:00:39 +08002113 struct sg_device *sdp = sfp->parentdp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002114 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115
Vaughan Cao1f962eb2013-08-29 10:00:39 +08002116 spin_lock_irqsave(&sdp->sfd_lock, iflags);
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002117 list_del(&sfp->sfd_siblings);
Vaughan Cao1f962eb2013-08-29 10:00:39 +08002118 spin_unlock_irqrestore(&sdp->sfd_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119
FUJITA Tomonori015640e2009-04-03 19:28:06 +09002120 INIT_WORK(&sfp->ew.work, sg_remove_sfp_usercontext);
2121 schedule_work(&sfp->ew.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122}
2123
2124static int
2125sg_res_in_use(Sg_fd * sfp)
2126{
2127 const Sg_request *srp;
2128 unsigned long iflags;
2129
2130 read_lock_irqsave(&sfp->rq_list_lock, iflags);
2131 for (srp = sfp->headrp; srp; srp = srp->nextrp)
2132 if (srp->res_used)
2133 break;
2134 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
2135 return srp ? 1 : 0;
2136}
2137
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138#ifdef CONFIG_SCSI_PROC_FS
2139static int
James Bottomley7c07d612007-08-05 13:36:11 -05002140sg_idr_max_id(int id, void *p, void *data)
2141{
2142 int *k = data;
2143
2144 if (*k < id)
2145 *k = id;
2146
2147 return 0;
2148}
2149
2150static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151sg_last_dev(void)
2152{
Tony Battersby53474c02008-01-22 15:25:49 -05002153 int k = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 unsigned long iflags;
2155
James Bottomley7c07d612007-08-05 13:36:11 -05002156 read_lock_irqsave(&sg_index_lock, iflags);
2157 idr_for_each(&sg_index_idr, sg_idr_max_id, &k);
2158 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 return k + 1; /* origin 1 */
2160}
2161#endif
2162
Tony Battersbyc6517b792009-01-21 14:45:50 -05002163/* must be called with sg_index_lock held */
2164static Sg_device *sg_lookup_dev(int dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165{
Tony Battersbyc6517b792009-01-21 14:45:50 -05002166 return idr_find(&sg_index_idr, dev);
2167}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168
Tony Battersbyc6517b792009-01-21 14:45:50 -05002169static Sg_device *sg_get_dev(int dev)
2170{
2171 struct sg_device *sdp;
2172 unsigned long flags;
2173
2174 read_lock_irqsave(&sg_index_lock, flags);
2175 sdp = sg_lookup_dev(dev);
2176 if (!sdp)
2177 sdp = ERR_PTR(-ENXIO);
2178 else if (sdp->detached) {
2179 /* If sdp->detached, then the refcount may already be 0, in
2180 * which case it would be a bug to do kref_get().
2181 */
2182 sdp = ERR_PTR(-ENODEV);
2183 } else
2184 kref_get(&sdp->d_ref);
2185 read_unlock_irqrestore(&sg_index_lock, flags);
James Bottomley7c07d612007-08-05 13:36:11 -05002186
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 return sdp;
2188}
2189
Tony Battersbyc6517b792009-01-21 14:45:50 -05002190static void sg_put_dev(struct sg_device *sdp)
2191{
2192 kref_put(&sdp->d_ref, sg_device_destroy);
2193}
2194
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195#ifdef CONFIG_SCSI_PROC_FS
2196
2197static struct proc_dir_entry *sg_proc_sgp = NULL;
2198
2199static char sg_proc_sg_dirname[] = "scsi/sg";
2200
2201static int sg_proc_seq_show_int(struct seq_file *s, void *v);
2202
2203static int sg_proc_single_open_adio(struct inode *inode, struct file *file);
2204static ssize_t sg_proc_write_adio(struct file *filp, const char __user *buffer,
2205 size_t count, loff_t *off);
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002206static const struct file_operations adio_fops = {
2207 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 .open = sg_proc_single_open_adio,
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002209 .read = seq_read,
2210 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 .write = sg_proc_write_adio,
2212 .release = single_release,
2213};
2214
2215static int sg_proc_single_open_dressz(struct inode *inode, struct file *file);
2216static ssize_t sg_proc_write_dressz(struct file *filp,
2217 const char __user *buffer, size_t count, loff_t *off);
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002218static const struct file_operations dressz_fops = {
2219 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 .open = sg_proc_single_open_dressz,
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002221 .read = seq_read,
2222 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 .write = sg_proc_write_dressz,
2224 .release = single_release,
2225};
2226
2227static int sg_proc_seq_show_version(struct seq_file *s, void *v);
2228static int sg_proc_single_open_version(struct inode *inode, struct file *file);
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002229static const struct file_operations version_fops = {
2230 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 .open = sg_proc_single_open_version,
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002232 .read = seq_read,
2233 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 .release = single_release,
2235};
2236
2237static int sg_proc_seq_show_devhdr(struct seq_file *s, void *v);
2238static int sg_proc_single_open_devhdr(struct inode *inode, struct file *file);
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002239static const struct file_operations devhdr_fops = {
2240 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 .open = sg_proc_single_open_devhdr,
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002242 .read = seq_read,
2243 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 .release = single_release,
2245};
2246
2247static int sg_proc_seq_show_dev(struct seq_file *s, void *v);
2248static int sg_proc_open_dev(struct inode *inode, struct file *file);
2249static void * dev_seq_start(struct seq_file *s, loff_t *pos);
2250static void * dev_seq_next(struct seq_file *s, void *v, loff_t *pos);
2251static void dev_seq_stop(struct seq_file *s, void *v);
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002252static const struct file_operations dev_fops = {
2253 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 .open = sg_proc_open_dev,
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002255 .read = seq_read,
2256 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 .release = seq_release,
2258};
James Morris88e9d342009-09-22 16:43:43 -07002259static const struct seq_operations dev_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 .start = dev_seq_start,
2261 .next = dev_seq_next,
2262 .stop = dev_seq_stop,
2263 .show = sg_proc_seq_show_dev,
2264};
2265
2266static int sg_proc_seq_show_devstrs(struct seq_file *s, void *v);
2267static int sg_proc_open_devstrs(struct inode *inode, struct file *file);
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002268static const struct file_operations devstrs_fops = {
2269 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 .open = sg_proc_open_devstrs,
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002271 .read = seq_read,
2272 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 .release = seq_release,
2274};
James Morris88e9d342009-09-22 16:43:43 -07002275static const struct seq_operations devstrs_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 .start = dev_seq_start,
2277 .next = dev_seq_next,
2278 .stop = dev_seq_stop,
2279 .show = sg_proc_seq_show_devstrs,
2280};
2281
2282static int sg_proc_seq_show_debug(struct seq_file *s, void *v);
2283static int sg_proc_open_debug(struct inode *inode, struct file *file);
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002284static const struct file_operations debug_fops = {
2285 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 .open = sg_proc_open_debug,
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002287 .read = seq_read,
2288 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 .release = seq_release,
2290};
James Morris88e9d342009-09-22 16:43:43 -07002291static const struct seq_operations debug_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 .start = dev_seq_start,
2293 .next = dev_seq_next,
2294 .stop = dev_seq_stop,
2295 .show = sg_proc_seq_show_debug,
2296};
2297
2298
2299struct sg_proc_leaf {
2300 const char * name;
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002301 const struct file_operations * fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302};
2303
Jörn Engel18b8ba62012-04-12 17:35:25 -04002304static const struct sg_proc_leaf sg_proc_leaf_arr[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 {"allow_dio", &adio_fops},
2306 {"debug", &debug_fops},
2307 {"def_reserved_size", &dressz_fops},
2308 {"device_hdr", &devhdr_fops},
2309 {"devices", &dev_fops},
2310 {"device_strs", &devstrs_fops},
2311 {"version", &version_fops}
2312};
2313
2314static int
2315sg_proc_init(void)
2316{
Tobias Klauser6391a112006-06-08 22:23:48 -07002317 int num_leaves = ARRAY_SIZE(sg_proc_leaf_arr);
Al Virod161a132011-07-24 03:36:29 -04002318 int k;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319
Al Viro66600222005-09-28 22:32:57 +01002320 sg_proc_sgp = proc_mkdir(sg_proc_sg_dirname, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 if (!sg_proc_sgp)
2322 return 1;
2323 for (k = 0; k < num_leaves; ++k) {
Jörn Engel18b8ba62012-04-12 17:35:25 -04002324 const struct sg_proc_leaf *leaf = &sg_proc_leaf_arr[k];
Al Virod161a132011-07-24 03:36:29 -04002325 umode_t mask = leaf->fops->write ? S_IRUGO | S_IWUSR : S_IRUGO;
Denis V. Luneva9739092008-04-29 01:02:17 -07002326 proc_create(leaf->name, mask, sg_proc_sgp, leaf->fops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 }
2328 return 0;
2329}
2330
2331static void
2332sg_proc_cleanup(void)
2333{
2334 int k;
Tobias Klauser6391a112006-06-08 22:23:48 -07002335 int num_leaves = ARRAY_SIZE(sg_proc_leaf_arr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336
2337 if (!sg_proc_sgp)
2338 return;
2339 for (k = 0; k < num_leaves; ++k)
2340 remove_proc_entry(sg_proc_leaf_arr[k].name, sg_proc_sgp);
2341 remove_proc_entry(sg_proc_sg_dirname, NULL);
2342}
2343
2344
2345static int sg_proc_seq_show_int(struct seq_file *s, void *v)
2346{
2347 seq_printf(s, "%d\n", *((int *)s->private));
2348 return 0;
2349}
2350
2351static int sg_proc_single_open_adio(struct inode *inode, struct file *file)
2352{
2353 return single_open(file, sg_proc_seq_show_int, &sg_allow_dio);
2354}
2355
2356static ssize_t
2357sg_proc_write_adio(struct file *filp, const char __user *buffer,
2358 size_t count, loff_t *off)
2359{
Stephen Boyd7e95fff2012-01-10 15:42:34 -08002360 int err;
2361 unsigned long num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362
2363 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
2364 return -EACCES;
Stephen Boyd7e95fff2012-01-10 15:42:34 -08002365 err = kstrtoul_from_user(buffer, count, 0, &num);
2366 if (err)
2367 return err;
2368 sg_allow_dio = num ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 return count;
2370}
2371
2372static int sg_proc_single_open_dressz(struct inode *inode, struct file *file)
2373{
2374 return single_open(file, sg_proc_seq_show_int, &sg_big_buff);
2375}
2376
2377static ssize_t
2378sg_proc_write_dressz(struct file *filp, const char __user *buffer,
2379 size_t count, loff_t *off)
2380{
Stephen Boyd7e95fff2012-01-10 15:42:34 -08002381 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 unsigned long k = ULONG_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383
2384 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
2385 return -EACCES;
Stephen Boyd7e95fff2012-01-10 15:42:34 -08002386
2387 err = kstrtoul_from_user(buffer, count, 0, &k);
2388 if (err)
2389 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 if (k <= 1048576) { /* limit "big buff" to 1 MB */
2391 sg_big_buff = k;
2392 return count;
2393 }
2394 return -ERANGE;
2395}
2396
2397static int sg_proc_seq_show_version(struct seq_file *s, void *v)
2398{
2399 seq_printf(s, "%d\t%s [%s]\n", sg_version_num, SG_VERSION_STR,
2400 sg_version_date);
2401 return 0;
2402}
2403
2404static int sg_proc_single_open_version(struct inode *inode, struct file *file)
2405{
2406 return single_open(file, sg_proc_seq_show_version, NULL);
2407}
2408
2409static int sg_proc_seq_show_devhdr(struct seq_file *s, void *v)
2410{
2411 seq_printf(s, "host\tchan\tid\tlun\ttype\topens\tqdepth\tbusy\t"
2412 "online\n");
2413 return 0;
2414}
2415
2416static int sg_proc_single_open_devhdr(struct inode *inode, struct file *file)
2417{
2418 return single_open(file, sg_proc_seq_show_devhdr, NULL);
2419}
2420
2421struct sg_proc_deviter {
2422 loff_t index;
2423 size_t max;
2424};
2425
2426static void * dev_seq_start(struct seq_file *s, loff_t *pos)
2427{
2428 struct sg_proc_deviter * it = kmalloc(sizeof(*it), GFP_KERNEL);
2429
Jan Blunck729d70f2005-08-27 11:07:52 -07002430 s->private = it;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 if (! it)
2432 return NULL;
Jan Blunck729d70f2005-08-27 11:07:52 -07002433
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 it->index = *pos;
2435 it->max = sg_last_dev();
2436 if (it->index >= it->max)
Jan Blunck729d70f2005-08-27 11:07:52 -07002437 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 return it;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439}
2440
2441static void * dev_seq_next(struct seq_file *s, void *v, loff_t *pos)
2442{
Jan Blunck729d70f2005-08-27 11:07:52 -07002443 struct sg_proc_deviter * it = s->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444
2445 *pos = ++it->index;
2446 return (it->index < it->max) ? it : NULL;
2447}
2448
2449static void dev_seq_stop(struct seq_file *s, void *v)
2450{
Jan Blunck729d70f2005-08-27 11:07:52 -07002451 kfree(s->private);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452}
2453
2454static int sg_proc_open_dev(struct inode *inode, struct file *file)
2455{
2456 return seq_open(file, &dev_seq_ops);
2457}
2458
2459static int sg_proc_seq_show_dev(struct seq_file *s, void *v)
2460{
2461 struct sg_proc_deviter * it = (struct sg_proc_deviter *) v;
2462 Sg_device *sdp;
2463 struct scsi_device *scsidp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002464 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465
Tony Battersbyc6517b792009-01-21 14:45:50 -05002466 read_lock_irqsave(&sg_index_lock, iflags);
2467 sdp = it ? sg_lookup_dev(it->index) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 if (sdp && (scsidp = sdp->device) && (!sdp->detached))
2469 seq_printf(s, "%d\t%d\t%d\t%d\t%d\t%d\t%d\t%d\t%d\n",
2470 scsidp->host->host_no, scsidp->channel,
2471 scsidp->id, scsidp->lun, (int) scsidp->type,
2472 1,
2473 (int) scsidp->queue_depth,
2474 (int) scsidp->device_busy,
2475 (int) scsi_device_online(scsidp));
2476 else
2477 seq_printf(s, "-1\t-1\t-1\t-1\t-1\t-1\t-1\t-1\t-1\n");
Tony Battersbyc6517b792009-01-21 14:45:50 -05002478 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 return 0;
2480}
2481
2482static int sg_proc_open_devstrs(struct inode *inode, struct file *file)
2483{
2484 return seq_open(file, &devstrs_seq_ops);
2485}
2486
2487static int sg_proc_seq_show_devstrs(struct seq_file *s, void *v)
2488{
2489 struct sg_proc_deviter * it = (struct sg_proc_deviter *) v;
2490 Sg_device *sdp;
2491 struct scsi_device *scsidp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002492 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493
Tony Battersbyc6517b792009-01-21 14:45:50 -05002494 read_lock_irqsave(&sg_index_lock, iflags);
2495 sdp = it ? sg_lookup_dev(it->index) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 if (sdp && (scsidp = sdp->device) && (!sdp->detached))
2497 seq_printf(s, "%8.8s\t%16.16s\t%4.4s\n",
2498 scsidp->vendor, scsidp->model, scsidp->rev);
2499 else
2500 seq_printf(s, "<no active device>\n");
Tony Battersbyc6517b792009-01-21 14:45:50 -05002501 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 return 0;
2503}
2504
Vaughan Cao1f962eb2013-08-29 10:00:39 +08002505/* must be called while holding sg_index_lock and sfd_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506static void sg_proc_debug_helper(struct seq_file *s, Sg_device * sdp)
2507{
2508 int k, m, new_interface, blen, usg;
2509 Sg_request *srp;
2510 Sg_fd *fp;
2511 const sg_io_hdr_t *hp;
2512 const char * cp;
cb59e842005-04-02 13:51:23 -06002513 unsigned int ms;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002515 k = 0;
2516 list_for_each_entry(fp, &sdp->sfds, sfd_siblings) {
2517 k++;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002518 read_lock(&fp->rq_list_lock); /* irqs already disabled */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 seq_printf(s, " FD(%d): timeout=%dms bufflen=%d "
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002520 "(res)sgat=%d low_dma=%d\n", k,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 jiffies_to_msecs(fp->timeout),
2522 fp->reserve.bufflen,
2523 (int) fp->reserve.k_use_sg,
2524 (int) fp->low_dma);
Jörn Engelebaf4662012-04-12 17:33:39 -04002525 seq_printf(s, " cmd_q=%d f_packid=%d k_orphan=%d closed=0\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 (int) fp->cmd_q, (int) fp->force_packid,
Jörn Engelebaf4662012-04-12 17:33:39 -04002527 (int) fp->keep_orphan);
Tony Battersbyc6517b792009-01-21 14:45:50 -05002528 for (m = 0, srp = fp->headrp;
2529 srp != NULL;
2530 ++m, srp = srp->nextrp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 hp = &srp->header;
2532 new_interface = (hp->interface_id == '\0') ? 0 : 1;
2533 if (srp->res_used) {
2534 if (new_interface &&
2535 (SG_FLAG_MMAP_IO & hp->flags))
2536 cp = " mmap>> ";
2537 else
2538 cp = " rb>> ";
2539 } else {
2540 if (SG_INFO_DIRECT_IO_MASK & hp->info)
2541 cp = " dio>> ";
2542 else
2543 cp = " ";
2544 }
2545 seq_printf(s, cp);
Mike Christied6b10342005-11-08 04:06:41 -06002546 blen = srp->data.bufflen;
2547 usg = srp->data.k_use_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 seq_printf(s, srp->done ?
2549 ((1 == srp->done) ? "rcv:" : "fin:")
Mike Christied6b10342005-11-08 04:06:41 -06002550 : "act:");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 seq_printf(s, " id=%d blen=%d",
2552 srp->header.pack_id, blen);
2553 if (srp->done)
2554 seq_printf(s, " dur=%d", hp->duration);
cb59e842005-04-02 13:51:23 -06002555 else {
2556 ms = jiffies_to_msecs(jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 seq_printf(s, " t_o/elap=%d/%d",
cb59e842005-04-02 13:51:23 -06002558 (new_interface ? hp->timeout :
2559 jiffies_to_msecs(fp->timeout)),
2560 (ms > hp->duration ? ms - hp->duration : 0));
2561 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 seq_printf(s, "ms sgat=%d op=0x%02x\n", usg,
2563 (int) srp->data.cmd_opcode);
2564 }
2565 if (0 == m)
2566 seq_printf(s, " No requests active\n");
Tony Battersbyc6517b792009-01-21 14:45:50 -05002567 read_unlock(&fp->rq_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 }
2569}
2570
2571static int sg_proc_open_debug(struct inode *inode, struct file *file)
2572{
2573 return seq_open(file, &debug_seq_ops);
2574}
2575
2576static int sg_proc_seq_show_debug(struct seq_file *s, void *v)
2577{
2578 struct sg_proc_deviter * it = (struct sg_proc_deviter *) v;
2579 Sg_device *sdp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002580 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581
2582 if (it && (0 == it->index)) {
James Bottomley7c07d612007-08-05 13:36:11 -05002583 seq_printf(s, "max_active_device=%d(origin 1)\n",
2584 (int)it->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585 seq_printf(s, " def_reserved_size=%d\n", sg_big_buff);
2586 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05002587
2588 read_lock_irqsave(&sg_index_lock, iflags);
2589 sdp = it ? sg_lookup_dev(it->index) : NULL;
Vaughan Cao1f962eb2013-08-29 10:00:39 +08002590 if (sdp) {
2591 spin_lock(&sdp->sfd_lock);
2592 if (!list_empty(&sdp->sfds)) {
2593 struct scsi_device *scsidp = sdp->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594
Vaughan Cao1f962eb2013-08-29 10:00:39 +08002595 seq_printf(s, " >>> device=%s ", sdp->disk->disk_name);
2596 if (sdp->detached)
2597 seq_printf(s, "detached pending close ");
2598 else
2599 seq_printf
2600 (s, "scsi%d chan=%d id=%d lun=%d em=%d",
2601 scsidp->host->host_no,
2602 scsidp->channel, scsidp->id,
2603 scsidp->lun,
2604 scsidp->host->hostt->emulated);
2605 seq_printf(s, " sg_tablesize=%d excl=%d\n",
2606 sdp->sg_tablesize, sdp->exclude);
2607 sg_proc_debug_helper(s, sdp);
2608 }
2609 spin_unlock(&sdp->sfd_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05002611 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 return 0;
2613}
2614
2615#endif /* CONFIG_SCSI_PROC_FS */
2616
2617module_init(init_sg);
2618module_exit(exit_sg);