blob: 8f952af48322811c2ba7db266815fc43d3667ed7 [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 Bottomley98481ff2013-10-25 10:26:38 +0100108static DEFINE_SPINLOCK(sg_open_exclusive_lock);
109
James Bottomley7c07d612007-08-05 13:36:11 -0500110static DEFINE_IDR(sg_index_idr);
James Bottomleyc0d3b9c2013-10-25 10:21:57 +0100111static DEFINE_RWLOCK(sg_index_lock); /* Also used to lock
112 file descriptor list for device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114static struct class_interface sg_interface = {
Tony Jonesee959b02008-02-22 00:13:36 +0100115 .add_dev = sg_add,
116 .remove_dev = sg_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117};
118
119typedef struct sg_scatter_hold { /* holding area for scsi scatter gather info */
120 unsigned short k_use_sg; /* Count of kernel scatter-gather pieces */
FUJITA Tomonoriea312552007-08-06 00:31:24 +0900121 unsigned sglist_len; /* size of malloc'd scatter-gather list ++ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 unsigned bufflen; /* Size of (aggregate) data buffer */
FUJITA Tomonori10db10d2008-08-29 12:32:18 +0200123 struct page **pages;
124 int page_order;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 char dio_in_use; /* 0->indirect IO (or mmap), 1->dio */
126 unsigned char cmd_opcode; /* first byte of command */
127} Sg_scatter_hold;
128
129struct sg_device; /* forward declarations */
130struct sg_fd;
131
132typedef struct sg_request { /* SG_MAX_QUEUE requests outstanding per file */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 struct sg_request *nextrp; /* NULL -> tail request (slist) */
134 struct sg_fd *parentfp; /* NULL -> not in use */
135 Sg_scatter_hold data; /* hold buffer, perhaps scatter list */
136 sg_io_hdr_t header; /* scsi command+info, see <scsi/sg.h> */
Mike Christied6b10342005-11-08 04:06:41 -0600137 unsigned char sense_b[SCSI_SENSE_BUFFERSIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 char res_used; /* 1 -> using reserve buffer, 0 -> not ... */
139 char orphan; /* 1 -> drop on sight, 0 -> normal */
140 char sg_io_owned; /* 1 -> packet belongs to SG_IO */
Jörn Engel6acddc52012-04-12 17:33:58 -0400141 /* done protected by rq_list_lock */
142 char done; /* 0->before bh, 1->before read, 2->read */
FUJITA Tomonori10865df2008-08-28 16:17:07 +0900143 struct request *rq;
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +0900144 struct bio *bio;
FUJITA Tomonoric96952e2009-02-04 11:36:27 +0900145 struct execute_work ew;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146} Sg_request;
147
148typedef struct sg_fd { /* holds the state of a file descriptor */
James Bottomleyc0d3b9c2013-10-25 10:21:57 +0100149 /* sfd_siblings is protected by sg_index_lock */
150 struct list_head sfd_siblings;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 struct sg_device *parentdp; /* owning device */
152 wait_queue_head_t read_wait; /* queue read until command done */
153 rwlock_t rq_list_lock; /* protect access to list in req_arr */
154 int timeout; /* defaults to SG_DEFAULT_TIMEOUT */
155 int timeout_user; /* defaults to SG_DEFAULT_TIMEOUT_USER */
156 Sg_scatter_hold reserve; /* buffer held for this file descriptor */
157 unsigned save_scat_len; /* original length of trunc. scat. element */
158 Sg_request *headrp; /* head of request slist, NULL->empty */
159 struct fasync_struct *async_qp; /* used by asynchronous notification */
160 Sg_request req_arr[SG_MAX_QUEUE]; /* used as singly-linked list */
161 char low_dma; /* as in parent but possibly overridden to 1 */
162 char force_packid; /* 1 -> pack_id input to read(), 0 -> ignored */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 char cmd_q; /* 1 -> allow command queuing, 0 -> don't */
164 char next_cmd_len; /* 0 -> automatic (def), >0 -> use on next write() */
165 char keep_orphan; /* 0 -> drop orphan (def), 1 -> keep for read() */
166 char mmap_called; /* 0 -> mmap() never called on this fd */
Tony Battersbyc6517b792009-01-21 14:45:50 -0500167 struct kref f_ref;
168 struct execute_work ew;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169} Sg_fd;
170
171typedef struct sg_device { /* holds the state of each scsi generic device */
172 struct scsi_device *device;
James Bottomley065b4a22013-10-25 10:27:02 +0100173 wait_queue_head_t o_excl_wait; /* queue open() when O_EXCL in use */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 int sg_tablesize; /* adapter's max scatter-gather table size */
James Bottomley7c07d612007-08-05 13:36:11 -0500175 u32 index; /* device index number */
James Bottomleyc0d3b9c2013-10-25 10:21:57 +0100176 /* sfds is protected by sg_index_lock */
FUJITA Tomonori3442f802009-02-16 13:26:53 +0900177 struct list_head sfds;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 volatile char detached; /* 0->attached, 1->detached pending removal */
James Bottomley98481ff2013-10-25 10:26:38 +0100179 /* exclude protected by sg_open_exclusive_lock */
Jörn Engelb499e522012-04-24 16:13:11 -0400180 char exclude; /* opened for exclusive access */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 char sgdebug; /* 0->off, 1->sense, 9->dump dev, 10-> all devs */
182 struct gendisk *disk;
183 struct cdev * cdev; /* char_dev [sysfs: /sys/cdev/major/sg<n>] */
Tony Battersbyc6517b792009-01-21 14:45:50 -0500184 struct kref d_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185} Sg_device;
186
Mike Christied6b10342005-11-08 04:06:41 -0600187/* tasklet or soft irq callback */
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +0900188static void sg_rq_end_io(struct request *rq, int uptodate);
FUJITA Tomonori10865df2008-08-28 16:17:07 +0900189static int sg_start_req(Sg_request *srp, unsigned char *cmd);
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +0900190static int sg_finish_rem_req(Sg_request * srp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191static int sg_build_indirect(Sg_scatter_hold * schp, Sg_fd * sfp, int buff_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192static ssize_t sg_new_read(Sg_fd * sfp, char __user *buf, size_t count,
193 Sg_request * srp);
Adel Gadllah0b07de82008-06-26 13:48:27 +0200194static ssize_t sg_new_write(Sg_fd *sfp, struct file *file,
195 const char __user *buf, size_t count, int blocking,
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500196 int read_only, int sg_io_owned, Sg_request **o_srp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197static int sg_common_write(Sg_fd * sfp, Sg_request * srp,
198 unsigned char *cmnd, int timeout, int blocking);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199static int sg_read_oxfer(Sg_request * srp, char __user *outp, int num_read_xfer);
200static void sg_remove_scat(Sg_scatter_hold * schp);
201static void sg_build_reserve(Sg_fd * sfp, int req_size);
202static void sg_link_reserve(Sg_fd * sfp, Sg_request * srp, int size);
203static void sg_unlink_reserve(Sg_fd * sfp, Sg_request * srp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204static Sg_fd *sg_add_sfp(Sg_device * sdp, int dev);
Tony Battersbyc6517b792009-01-21 14:45:50 -0500205static void sg_remove_sfp(struct kref *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206static Sg_request *sg_get_rq_mark(Sg_fd * sfp, int pack_id);
207static Sg_request *sg_add_request(Sg_fd * sfp);
208static int sg_remove_request(Sg_fd * sfp, Sg_request * srp);
209static int sg_res_in_use(Sg_fd * sfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210static Sg_device *sg_get_dev(int dev);
Tony Battersbyc6517b792009-01-21 14:45:50 -0500211static void sg_put_dev(Sg_device *sdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213#define SZ_SG_HEADER sizeof(struct sg_header)
214#define SZ_SG_IO_HDR sizeof(sg_io_hdr_t)
215#define SZ_SG_IOVEC sizeof(sg_iovec_t)
216#define SZ_SG_REQ_INFO sizeof(sg_req_info_t)
217
FUJITA Tomonori14e507b2008-07-26 18:03:24 +0900218static int sg_allow_access(struct file *filp, unsigned char *cmd)
219{
Joe Perches35df8392010-09-04 18:52:46 -0700220 struct sg_fd *sfp = filp->private_data;
FUJITA Tomonori14e507b2008-07-26 18:03:24 +0900221
222 if (sfp->parentdp->device->type == TYPE_SCANNER)
223 return 0;
224
Jens Axboe018e0442009-06-26 16:27:10 +0200225 return blk_verify_command(cmd, filp->f_mode & FMODE_WRITE);
FUJITA Tomonori14e507b2008-07-26 18:03:24 +0900226}
227
James Bottomley98481ff2013-10-25 10:26:38 +0100228static int get_exclude(Sg_device *sdp)
229{
230 unsigned long flags;
231 int ret;
232
233 spin_lock_irqsave(&sg_open_exclusive_lock, flags);
234 ret = sdp->exclude;
235 spin_unlock_irqrestore(&sg_open_exclusive_lock, flags);
236 return ret;
237}
238
239static int set_exclude(Sg_device *sdp, char val)
240{
241 unsigned long flags;
242
243 spin_lock_irqsave(&sg_open_exclusive_lock, flags);
244 sdp->exclude = val;
245 spin_unlock_irqrestore(&sg_open_exclusive_lock, flags);
246 return val;
247}
248
Jörn Engel035d12e2012-04-25 11:17:29 -0400249static int sfds_list_empty(Sg_device *sdp)
250{
251 unsigned long flags;
252 int ret;
253
James Bottomleyc0d3b9c2013-10-25 10:21:57 +0100254 read_lock_irqsave(&sg_index_lock, flags);
Jörn Engel035d12e2012-04-25 11:17:29 -0400255 ret = list_empty(&sdp->sfds);
James Bottomleyc0d3b9c2013-10-25 10:21:57 +0100256 read_unlock_irqrestore(&sg_index_lock, flags);
Jörn Engel035d12e2012-04-25 11:17:29 -0400257 return ret;
258}
259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260static int
261sg_open(struct inode *inode, struct file *filp)
262{
263 int dev = iminor(inode);
264 int flags = filp->f_flags;
Mike Christied6b10342005-11-08 04:06:41 -0600265 struct request_queue *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 Sg_device *sdp;
267 Sg_fd *sfp;
James Bottomley065b4a22013-10-25 10:27:02 +0100268 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 int retval;
270
271 nonseekable_open(inode, filp);
272 SCSI_LOG_TIMEOUT(3, printk("sg_open: dev=%d, flags=0x%x\n", dev, flags));
273 sdp = sg_get_dev(dev);
Tony Battersbyc6517b792009-01-21 14:45:50 -0500274 if (IS_ERR(sdp)) {
275 retval = PTR_ERR(sdp);
276 sdp = NULL;
277 goto sg_put;
Jonathan Corbeteb09d3d2008-05-15 12:22:06 -0600278 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280 /* This driver's module count bumped by fops_get in <linux/fs.h> */
281 /* Prevent the device driver from vanishing while we sleep */
282 retval = scsi_device_get(sdp->device);
Tony Battersbyc6517b792009-01-21 14:45:50 -0500283 if (retval)
284 goto sg_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Alan Sternbc4f2402010-06-17 10:41:42 -0400286 retval = scsi_autopm_get_device(sdp->device);
287 if (retval)
288 goto sdp_put;
289
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 if (!((flags & O_NONBLOCK) ||
291 scsi_block_when_processing_errors(sdp->device))) {
292 retval = -ENXIO;
293 /* we are in error recovery for this device */
294 goto error_out;
295 }
296
James Bottomley065b4a22013-10-25 10:27:02 +0100297 if (flags & O_EXCL) {
298 if (O_RDONLY == (flags & O_ACCMODE)) {
299 retval = -EPERM; /* Can't lock it with read only access */
300 goto error_out;
Vaughan Cao15b06f92013-08-29 10:00:36 +0800301 }
James Bottomley065b4a22013-10-25 10:27:02 +0100302 if (!sfds_list_empty(sdp) && (flags & O_NONBLOCK)) {
303 retval = -EBUSY;
304 goto error_out;
305 }
306 res = wait_event_interruptible(sdp->o_excl_wait,
307 ((!sfds_list_empty(sdp) || get_exclude(sdp)) ? 0 : set_exclude(sdp, 1)));
308 if (res) {
309 retval = res; /* -ERESTARTSYS because signal hit process */
310 goto error_out;
311 }
312 } else if (get_exclude(sdp)) { /* some other fd has an exclusive lock on dev */
313 if (flags & O_NONBLOCK) {
314 retval = -EBUSY;
315 goto error_out;
316 }
317 res = wait_event_interruptible(sdp->o_excl_wait, !get_exclude(sdp));
318 if (res) {
319 retval = res; /* -ERESTARTSYS because signal hit process */
320 goto error_out;
321 }
Vaughan Cao15b06f92013-08-29 10:00:36 +0800322 }
James Bottomleybafc8ad2013-10-25 10:25:14 +0100323 if (sdp->detached) {
324 retval = -ENODEV;
James Bottomley065b4a22013-10-25 10:27:02 +0100325 goto error_out;
James Bottomleybafc8ad2013-10-25 10:25:14 +0100326 }
Jörn Engel035d12e2012-04-25 11:17:29 -0400327 if (sfds_list_empty(sdp)) { /* no existing opens on this device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 sdp->sgdebug = 0;
Mike Christied6b10342005-11-08 04:06:41 -0600329 q = sdp->device->request_queue;
Martin K. Petersen8a783622010-02-26 00:20:39 -0500330 sdp->sg_tablesize = queue_max_segments(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 }
James Bottomleybafc8ad2013-10-25 10:25:14 +0100332 if ((sfp = sg_add_sfp(sdp, dev)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 filp->private_data = sfp;
334 else {
Tony Battersbyc6517b792009-01-21 14:45:50 -0500335 if (flags & O_EXCL) {
James Bottomley98481ff2013-10-25 10:26:38 +0100336 set_exclude(sdp, 0); /* undo if error */
James Bottomley065b4a22013-10-25 10:27:02 +0100337 wake_up_interruptible(&sdp->o_excl_wait);
338 }
339 retval = -ENOMEM;
340 goto error_out;
341 }
342 retval = 0;
Tony Battersbyc6517b792009-01-21 14:45:50 -0500343error_out:
James Bottomley065b4a22013-10-25 10:27:02 +0100344 if (retval) {
Alan Sternbc4f2402010-06-17 10:41:42 -0400345 scsi_autopm_put_device(sdp->device);
346sdp_put:
Tony Battersbyc6517b792009-01-21 14:45:50 -0500347 scsi_device_put(sdp->device);
Alan Sternbc4f2402010-06-17 10:41:42 -0400348 }
Tony Battersbyc6517b792009-01-21 14:45:50 -0500349sg_put:
350 if (sdp)
351 sg_put_dev(sdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 return retval;
353}
354
355/* Following function was formerly called 'sg_close' */
356static int
357sg_release(struct inode *inode, struct file *filp)
358{
359 Sg_device *sdp;
360 Sg_fd *sfp;
361
362 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
363 return -ENXIO;
364 SCSI_LOG_TIMEOUT(3, printk("sg_release: %s\n", sdp->disk->disk_name));
Tony Battersbyc6517b792009-01-21 14:45:50 -0500365
James Bottomley98481ff2013-10-25 10:26:38 +0100366 set_exclude(sdp, 0);
James Bottomley065b4a22013-10-25 10:27:02 +0100367 wake_up_interruptible(&sdp->o_excl_wait);
Tony Battersbyc6517b792009-01-21 14:45:50 -0500368
Alan Sternbc4f2402010-06-17 10:41:42 -0400369 scsi_autopm_put_device(sdp->device);
Tony Battersbyc6517b792009-01-21 14:45:50 -0500370 kref_put(&sfp->f_ref, sg_remove_sfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 return 0;
372}
373
374static ssize_t
375sg_read(struct file *filp, char __user *buf, size_t count, loff_t * ppos)
376{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 Sg_device *sdp;
378 Sg_fd *sfp;
379 Sg_request *srp;
380 int req_pack_id = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 sg_io_hdr_t *hp;
cb59e842005-04-02 13:51:23 -0600382 struct sg_header *old_hdr = NULL;
383 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
385 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
386 return -ENXIO;
387 SCSI_LOG_TIMEOUT(3, printk("sg_read: %s, count=%d\n",
388 sdp->disk->disk_name, (int) count));
Mike Christied6b10342005-11-08 04:06:41 -0600389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 if (!access_ok(VERIFY_WRITE, buf, count))
391 return -EFAULT;
392 if (sfp->force_packid && (count >= SZ_SG_HEADER)) {
cb59e842005-04-02 13:51:23 -0600393 old_hdr = kmalloc(SZ_SG_HEADER, GFP_KERNEL);
394 if (!old_hdr)
395 return -ENOMEM;
396 if (__copy_from_user(old_hdr, buf, SZ_SG_HEADER)) {
397 retval = -EFAULT;
398 goto free_old_hdr;
399 }
400 if (old_hdr->reply_len < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 if (count >= SZ_SG_IO_HDR) {
cb59e842005-04-02 13:51:23 -0600402 sg_io_hdr_t *new_hdr;
403 new_hdr = kmalloc(SZ_SG_IO_HDR, GFP_KERNEL);
404 if (!new_hdr) {
405 retval = -ENOMEM;
406 goto free_old_hdr;
407 }
408 retval =__copy_from_user
409 (new_hdr, buf, SZ_SG_IO_HDR);
410 req_pack_id = new_hdr->pack_id;
411 kfree(new_hdr);
412 if (retval) {
413 retval = -EFAULT;
414 goto free_old_hdr;
415 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 }
417 } else
cb59e842005-04-02 13:51:23 -0600418 req_pack_id = old_hdr->pack_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 }
420 srp = sg_get_rq_mark(sfp, req_pack_id);
421 if (!srp) { /* now wait on packet to arrive */
cb59e842005-04-02 13:51:23 -0600422 if (sdp->detached) {
423 retval = -ENODEV;
424 goto free_old_hdr;
425 }
426 if (filp->f_flags & O_NONBLOCK) {
427 retval = -EAGAIN;
428 goto free_old_hdr;
429 }
Jörn Engel3f0c6ab2012-04-12 17:33:25 -0400430 retval = wait_event_interruptible(sfp->read_wait,
Jörn Engel794c10f2012-04-12 17:32:48 -0400431 (sdp->detached ||
Jörn Engel3f0c6ab2012-04-12 17:33:25 -0400432 (srp = sg_get_rq_mark(sfp, req_pack_id))));
Jörn Engel794c10f2012-04-12 17:32:48 -0400433 if (sdp->detached) {
434 retval = -ENODEV;
435 goto free_old_hdr;
436 }
437 if (retval) {
cb59e842005-04-02 13:51:23 -0600438 /* -ERESTARTSYS as signal hit process */
439 goto free_old_hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 }
441 }
cb59e842005-04-02 13:51:23 -0600442 if (srp->header.interface_id != '\0') {
443 retval = sg_new_read(sfp, buf, count, srp);
444 goto free_old_hdr;
445 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447 hp = &srp->header;
cb59e842005-04-02 13:51:23 -0600448 if (old_hdr == NULL) {
449 old_hdr = kmalloc(SZ_SG_HEADER, GFP_KERNEL);
450 if (! old_hdr) {
451 retval = -ENOMEM;
452 goto free_old_hdr;
453 }
454 }
455 memset(old_hdr, 0, SZ_SG_HEADER);
456 old_hdr->reply_len = (int) hp->timeout;
457 old_hdr->pack_len = old_hdr->reply_len; /* old, strange behaviour */
458 old_hdr->pack_id = hp->pack_id;
459 old_hdr->twelve_byte =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 ((srp->data.cmd_opcode >= 0xc0) && (12 == hp->cmd_len)) ? 1 : 0;
cb59e842005-04-02 13:51:23 -0600461 old_hdr->target_status = hp->masked_status;
462 old_hdr->host_status = hp->host_status;
463 old_hdr->driver_status = hp->driver_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 if ((CHECK_CONDITION & hp->masked_status) ||
465 (DRIVER_SENSE & hp->driver_status))
cb59e842005-04-02 13:51:23 -0600466 memcpy(old_hdr->sense_buffer, srp->sense_b,
467 sizeof (old_hdr->sense_buffer));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 switch (hp->host_status) {
469 /* This setup of 'result' is for backward compatibility and is best
470 ignored by the user who should use target, host + driver status */
471 case DID_OK:
472 case DID_PASSTHROUGH:
473 case DID_SOFT_ERROR:
cb59e842005-04-02 13:51:23 -0600474 old_hdr->result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 break;
476 case DID_NO_CONNECT:
477 case DID_BUS_BUSY:
478 case DID_TIME_OUT:
cb59e842005-04-02 13:51:23 -0600479 old_hdr->result = EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 break;
481 case DID_BAD_TARGET:
482 case DID_ABORT:
483 case DID_PARITY:
484 case DID_RESET:
485 case DID_BAD_INTR:
cb59e842005-04-02 13:51:23 -0600486 old_hdr->result = EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 break;
488 case DID_ERROR:
cb59e842005-04-02 13:51:23 -0600489 old_hdr->result = (srp->sense_b[0] == 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 hp->masked_status == GOOD) ? 0 : EIO;
491 break;
492 default:
cb59e842005-04-02 13:51:23 -0600493 old_hdr->result = EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 break;
495 }
496
497 /* Now copy the result back to the user buffer. */
498 if (count >= SZ_SG_HEADER) {
cb59e842005-04-02 13:51:23 -0600499 if (__copy_to_user(buf, old_hdr, SZ_SG_HEADER)) {
500 retval = -EFAULT;
501 goto free_old_hdr;
502 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 buf += SZ_SG_HEADER;
cb59e842005-04-02 13:51:23 -0600504 if (count > old_hdr->reply_len)
505 count = old_hdr->reply_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 if (count > SZ_SG_HEADER) {
cb59e842005-04-02 13:51:23 -0600507 if (sg_read_oxfer(srp, buf, count - SZ_SG_HEADER)) {
508 retval = -EFAULT;
509 goto free_old_hdr;
510 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 }
512 } else
cb59e842005-04-02 13:51:23 -0600513 count = (old_hdr->result == 0) ? 0 : -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 sg_finish_rem_req(srp);
cb59e842005-04-02 13:51:23 -0600515 retval = count;
516free_old_hdr:
Jesper Juhlc9475cb2005-11-07 01:01:26 -0800517 kfree(old_hdr);
cb59e842005-04-02 13:51:23 -0600518 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519}
520
521static ssize_t
522sg_new_read(Sg_fd * sfp, char __user *buf, size_t count, Sg_request * srp)
523{
524 sg_io_hdr_t *hp = &srp->header;
525 int err = 0;
526 int len;
527
528 if (count < SZ_SG_IO_HDR) {
529 err = -EINVAL;
530 goto err_out;
531 }
532 hp->sb_len_wr = 0;
533 if ((hp->mx_sb_len > 0) && hp->sbp) {
534 if ((CHECK_CONDITION & hp->masked_status) ||
535 (DRIVER_SENSE & hp->driver_status)) {
Mike Christied6b10342005-11-08 04:06:41 -0600536 int sb_len = SCSI_SENSE_BUFFERSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 sb_len = (hp->mx_sb_len > sb_len) ? sb_len : hp->mx_sb_len;
538 len = 8 + (int) srp->sense_b[7]; /* Additional sense length field */
539 len = (len > sb_len) ? sb_len : len;
540 if (copy_to_user(hp->sbp, srp->sense_b, len)) {
541 err = -EFAULT;
542 goto err_out;
543 }
544 hp->sb_len_wr = len;
545 }
546 }
547 if (hp->masked_status || hp->host_status || hp->driver_status)
548 hp->info |= SG_INFO_CHECK;
549 if (copy_to_user(buf, hp, SZ_SG_IO_HDR)) {
550 err = -EFAULT;
551 goto err_out;
552 }
FUJITA Tomonori0b6cb262008-09-02 22:50:07 +0900553err_out:
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +0900554 err = sg_finish_rem_req(srp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 return (0 == err) ? count : err;
556}
557
558static ssize_t
559sg_write(struct file *filp, const char __user *buf, size_t count, loff_t * ppos)
560{
561 int mxsize, cmd_size, k;
562 int input_size, blocking;
563 unsigned char opcode;
564 Sg_device *sdp;
565 Sg_fd *sfp;
566 Sg_request *srp;
567 struct sg_header old_hdr;
568 sg_io_hdr_t *hp;
Mike Christied6b10342005-11-08 04:06:41 -0600569 unsigned char cmnd[MAX_COMMAND_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
571 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
572 return -ENXIO;
573 SCSI_LOG_TIMEOUT(3, printk("sg_write: %s, count=%d\n",
574 sdp->disk->disk_name, (int) count));
575 if (sdp->detached)
576 return -ENODEV;
577 if (!((filp->f_flags & O_NONBLOCK) ||
578 scsi_block_when_processing_errors(sdp->device)))
579 return -ENXIO;
580
581 if (!access_ok(VERIFY_READ, buf, count))
582 return -EFAULT; /* protects following copy_from_user()s + get_user()s */
583 if (count < SZ_SG_HEADER)
584 return -EIO;
585 if (__copy_from_user(&old_hdr, buf, SZ_SG_HEADER))
586 return -EFAULT;
587 blocking = !(filp->f_flags & O_NONBLOCK);
588 if (old_hdr.reply_len < 0)
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500589 return sg_new_write(sfp, filp, buf, count,
590 blocking, 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 if (count < (SZ_SG_HEADER + 6))
592 return -EIO; /* The minimum scsi command length is 6 bytes. */
593
594 if (!(srp = sg_add_request(sfp))) {
595 SCSI_LOG_TIMEOUT(1, printk("sg_write: queue full\n"));
596 return -EDOM;
597 }
598 buf += SZ_SG_HEADER;
599 __get_user(opcode, buf);
600 if (sfp->next_cmd_len > 0) {
601 if (sfp->next_cmd_len > MAX_COMMAND_SIZE) {
602 SCSI_LOG_TIMEOUT(1, printk("sg_write: command length too long\n"));
603 sfp->next_cmd_len = 0;
604 sg_remove_request(sfp, srp);
605 return -EIO;
606 }
607 cmd_size = sfp->next_cmd_len;
608 sfp->next_cmd_len = 0; /* reset so only this write() effected */
609 } else {
610 cmd_size = COMMAND_SIZE(opcode); /* based on SCSI command group */
611 if ((opcode >= 0xc0) && old_hdr.twelve_byte)
612 cmd_size = 12;
613 }
614 SCSI_LOG_TIMEOUT(4, printk(
615 "sg_write: scsi opcode=0x%02x, cmd_size=%d\n", (int) opcode, cmd_size));
616/* Determine buffer size. */
617 input_size = count - cmd_size;
618 mxsize = (input_size > old_hdr.reply_len) ? input_size : old_hdr.reply_len;
619 mxsize -= SZ_SG_HEADER;
620 input_size -= SZ_SG_HEADER;
621 if (input_size < 0) {
622 sg_remove_request(sfp, srp);
623 return -EIO; /* User did not pass enough bytes for this command. */
624 }
625 hp = &srp->header;
626 hp->interface_id = '\0'; /* indicator of old interface tunnelled */
627 hp->cmd_len = (unsigned char) cmd_size;
628 hp->iovec_count = 0;
629 hp->mx_sb_len = 0;
630 if (input_size > 0)
631 hp->dxfer_direction = (old_hdr.reply_len > SZ_SG_HEADER) ?
632 SG_DXFER_TO_FROM_DEV : SG_DXFER_TO_DEV;
633 else
634 hp->dxfer_direction = (mxsize > 0) ? SG_DXFER_FROM_DEV : SG_DXFER_NONE;
635 hp->dxfer_len = mxsize;
FUJITA Tomonorifad7f012008-09-02 16:20:20 +0900636 if (hp->dxfer_direction == SG_DXFER_TO_DEV)
637 hp->dxferp = (char __user *)buf + cmd_size;
638 else
639 hp->dxferp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 hp->sbp = NULL;
641 hp->timeout = old_hdr.reply_len; /* structure abuse ... */
642 hp->flags = input_size; /* structure abuse ... */
643 hp->pack_id = old_hdr.pack_id;
644 hp->usr_ptr = NULL;
645 if (__copy_from_user(cmnd, buf, cmd_size))
646 return -EFAULT;
647 /*
648 * SG_DXFER_TO_FROM_DEV is functionally equivalent to SG_DXFER_FROM_DEV,
649 * but is is possible that the app intended SG_DXFER_TO_DEV, because there
650 * is a non-zero input_size, so emit a warning.
651 */
Andi Kleeneaa3e222008-01-13 17:41:43 +0100652 if (hp->dxfer_direction == SG_DXFER_TO_FROM_DEV) {
653 static char cmd[TASK_COMM_LEN];
Christian Dietrich2fe038e2011-06-04 17:36:10 +0200654 if (strcmp(current->comm, cmd)) {
655 printk_ratelimited(KERN_WARNING
656 "sg_write: data in/out %d/%d bytes "
657 "for SCSI command 0x%x-- guessing "
658 "data in;\n program %s not setting "
659 "count and/or reply_len properly\n",
660 old_hdr.reply_len - (int)SZ_SG_HEADER,
661 input_size, (unsigned int) cmnd[0],
662 current->comm);
Andi Kleeneaa3e222008-01-13 17:41:43 +0100663 strcpy(cmd, current->comm);
664 }
665 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 k = sg_common_write(sfp, srp, cmnd, sfp->timeout, blocking);
667 return (k < 0) ? k : count;
668}
669
670static ssize_t
Adel Gadllah0b07de82008-06-26 13:48:27 +0200671sg_new_write(Sg_fd *sfp, struct file *file, const char __user *buf,
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500672 size_t count, int blocking, int read_only, int sg_io_owned,
Adel Gadllah0b07de82008-06-26 13:48:27 +0200673 Sg_request **o_srp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674{
675 int k;
676 Sg_request *srp;
677 sg_io_hdr_t *hp;
Mike Christied6b10342005-11-08 04:06:41 -0600678 unsigned char cmnd[MAX_COMMAND_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 int timeout;
680 unsigned long ul_timeout;
681
682 if (count < SZ_SG_IO_HDR)
683 return -EINVAL;
684 if (!access_ok(VERIFY_READ, buf, count))
685 return -EFAULT; /* protects following copy_from_user()s + get_user()s */
686
687 sfp->cmd_q = 1; /* when sg_io_hdr seen, set command queuing on */
688 if (!(srp = sg_add_request(sfp))) {
689 SCSI_LOG_TIMEOUT(1, printk("sg_new_write: queue full\n"));
690 return -EDOM;
691 }
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500692 srp->sg_io_owned = sg_io_owned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 hp = &srp->header;
694 if (__copy_from_user(hp, buf, SZ_SG_IO_HDR)) {
695 sg_remove_request(sfp, srp);
696 return -EFAULT;
697 }
698 if (hp->interface_id != 'S') {
699 sg_remove_request(sfp, srp);
700 return -ENOSYS;
701 }
702 if (hp->flags & SG_FLAG_MMAP_IO) {
703 if (hp->dxfer_len > sfp->reserve.bufflen) {
704 sg_remove_request(sfp, srp);
705 return -ENOMEM; /* MMAP_IO size must fit in reserve buffer */
706 }
707 if (hp->flags & SG_FLAG_DIRECT_IO) {
708 sg_remove_request(sfp, srp);
709 return -EINVAL; /* either MMAP_IO or DIRECT_IO (not both) */
710 }
711 if (sg_res_in_use(sfp)) {
712 sg_remove_request(sfp, srp);
713 return -EBUSY; /* reserve buffer already being used */
714 }
715 }
716 ul_timeout = msecs_to_jiffies(srp->header.timeout);
717 timeout = (ul_timeout < INT_MAX) ? ul_timeout : INT_MAX;
718 if ((!hp->cmdp) || (hp->cmd_len < 6) || (hp->cmd_len > sizeof (cmnd))) {
719 sg_remove_request(sfp, srp);
720 return -EMSGSIZE;
721 }
722 if (!access_ok(VERIFY_READ, hp->cmdp, hp->cmd_len)) {
723 sg_remove_request(sfp, srp);
724 return -EFAULT; /* protects following copy_from_user()s + get_user()s */
725 }
726 if (__copy_from_user(cmnd, hp->cmdp, hp->cmd_len)) {
727 sg_remove_request(sfp, srp);
728 return -EFAULT;
729 }
FUJITA Tomonori14e507b2008-07-26 18:03:24 +0900730 if (read_only && sg_allow_access(file, cmnd)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 sg_remove_request(sfp, srp);
732 return -EPERM;
733 }
734 k = sg_common_write(sfp, srp, cmnd, timeout, blocking);
735 if (k < 0)
736 return k;
737 if (o_srp)
738 *o_srp = srp;
739 return count;
740}
741
742static int
743sg_common_write(Sg_fd * sfp, Sg_request * srp,
744 unsigned char *cmnd, int timeout, int blocking)
745{
Mike Christied6b10342005-11-08 04:06:41 -0600746 int k, data_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 Sg_device *sdp = sfp->parentdp;
748 sg_io_hdr_t *hp = &srp->header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
750 srp->data.cmd_opcode = cmnd[0]; /* hold opcode of command */
751 hp->status = 0;
752 hp->masked_status = 0;
753 hp->msg_status = 0;
754 hp->info = 0;
755 hp->host_status = 0;
756 hp->driver_status = 0;
757 hp->resid = 0;
758 SCSI_LOG_TIMEOUT(4, printk("sg_common_write: scsi opcode=0x%02x, cmd_size=%d\n",
759 (int) cmnd[0], (int) hp->cmd_len));
760
FUJITA Tomonori10865df2008-08-28 16:17:07 +0900761 k = sg_start_req(srp, cmnd);
762 if (k) {
Douglas Gilbert7ca63cb2006-10-27 17:47:49 -0400763 SCSI_LOG_TIMEOUT(1, printk("sg_common_write: start_req err=%d\n", k));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 sg_finish_rem_req(srp);
765 return k; /* probably out of space --> ENOMEM */
766 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 if (sdp->detached) {
FUJITA Tomonoricaf19d32010-07-22 09:36:51 +0900768 if (srp->bio)
769 blk_end_request_all(srp->rq, -EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 sg_finish_rem_req(srp);
771 return -ENODEV;
772 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 switch (hp->dxfer_direction) {
775 case SG_DXFER_TO_FROM_DEV:
776 case SG_DXFER_FROM_DEV:
Mike Christied6b10342005-11-08 04:06:41 -0600777 data_dir = DMA_FROM_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 break;
779 case SG_DXFER_TO_DEV:
Mike Christied6b10342005-11-08 04:06:41 -0600780 data_dir = DMA_TO_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 break;
782 case SG_DXFER_UNKNOWN:
Mike Christied6b10342005-11-08 04:06:41 -0600783 data_dir = DMA_BIDIRECTIONAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 break;
785 default:
Mike Christied6b10342005-11-08 04:06:41 -0600786 data_dir = DMA_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 break;
788 }
cb59e842005-04-02 13:51:23 -0600789 hp->duration = jiffies_to_msecs(jiffies);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +0200790
791 srp->rq->timeout = timeout;
Tony Battersbyc6517b792009-01-21 14:45:50 -0500792 kref_get(&sfp->f_ref); /* sg_rq_end_io() does kref_put(). */
FUJITA Tomonori10db10d2008-08-29 12:32:18 +0200793 blk_execute_rq_nowait(sdp->device->request_queue, sdp->disk,
794 srp->rq, 1, sg_rq_end_io);
795 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796}
797
Jörn Engel6acddc52012-04-12 17:33:58 -0400798static int srp_done(Sg_fd *sfp, Sg_request *srp)
799{
800 unsigned long flags;
801 int ret;
802
803 read_lock_irqsave(&sfp->rq_list_lock, flags);
804 ret = srp->done;
805 read_unlock_irqrestore(&sfp->rq_list_lock, flags);
806 return ret;
807}
808
Akinobu Mita46f69e62014-06-02 22:56:46 +0900809static int max_sectors_bytes(struct request_queue *q)
810{
811 unsigned int max_sectors = queue_max_sectors(q);
812
813 max_sectors = min_t(unsigned int, max_sectors, INT_MAX >> 9);
814
815 return max_sectors << 9;
816}
817
Jörn Engel37b9d1e2012-04-12 17:35:05 -0400818static long
Arnd Bergmannf4927c42010-04-27 00:24:01 +0200819sg_ioctl(struct file *filp, unsigned int cmd_in, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820{
821 void __user *p = (void __user *)arg;
822 int __user *ip = p;
823 int result, val, read_only;
824 Sg_device *sdp;
825 Sg_fd *sfp;
826 Sg_request *srp;
827 unsigned long iflags;
828
829 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
830 return -ENXIO;
FUJITA Tomonoriabf54392008-08-16 14:10:05 +0900831
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 SCSI_LOG_TIMEOUT(3, printk("sg_ioctl: %s, cmd=0x%x\n",
833 sdp->disk->disk_name, (int) cmd_in));
834 read_only = (O_RDWR != (filp->f_flags & O_ACCMODE));
835
836 switch (cmd_in) {
837 case SG_IO:
Jörn Engeldddbf8d2012-04-12 17:32:17 -0400838 if (sdp->detached)
839 return -ENODEV;
840 if (!scsi_block_when_processing_errors(sdp->device))
841 return -ENXIO;
842 if (!access_ok(VERIFY_WRITE, p, SZ_SG_IO_HDR))
843 return -EFAULT;
844 result = sg_new_write(sfp, filp, p, SZ_SG_IO_HDR,
845 1, read_only, 1, &srp);
846 if (result < 0)
847 return result;
Jörn Engel3f0c6ab2012-04-12 17:33:25 -0400848 result = wait_event_interruptible(sfp->read_wait,
Jörn Engel6acddc52012-04-12 17:33:58 -0400849 (srp_done(sfp, srp) || sdp->detached));
Jörn Engel794c10f2012-04-12 17:32:48 -0400850 if (sdp->detached)
851 return -ENODEV;
852 write_lock_irq(&sfp->rq_list_lock);
853 if (srp->done) {
854 srp->done = 2;
Jörn Engeldddbf8d2012-04-12 17:32:17 -0400855 write_unlock_irq(&sfp->rq_list_lock);
Jörn Engel794c10f2012-04-12 17:32:48 -0400856 result = sg_new_read(sfp, p, SZ_SG_IO_HDR, srp);
857 return (result < 0) ? result : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 }
Jörn Engel794c10f2012-04-12 17:32:48 -0400859 srp->orphan = 1;
860 write_unlock_irq(&sfp->rq_list_lock);
861 return result; /* -ERESTARTSYS because signal hit process */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 case SG_SET_TIMEOUT:
863 result = get_user(val, ip);
864 if (result)
865 return result;
866 if (val < 0)
867 return -EIO;
868 if (val >= MULDIV (INT_MAX, USER_HZ, HZ))
869 val = MULDIV (INT_MAX, USER_HZ, HZ);
870 sfp->timeout_user = val;
871 sfp->timeout = MULDIV (val, HZ, USER_HZ);
872
873 return 0;
874 case SG_GET_TIMEOUT: /* N.B. User receives timeout as return value */
875 /* strange ..., for backward compatibility */
876 return sfp->timeout_user;
877 case SG_SET_FORCE_LOW_DMA:
878 result = get_user(val, ip);
879 if (result)
880 return result;
881 if (val) {
882 sfp->low_dma = 1;
883 if ((0 == sfp->low_dma) && (0 == sg_res_in_use(sfp))) {
884 val = (int) sfp->reserve.bufflen;
885 sg_remove_scat(&sfp->reserve);
886 sg_build_reserve(sfp, val);
887 }
888 } else {
889 if (sdp->detached)
890 return -ENODEV;
891 sfp->low_dma = sdp->device->host->unchecked_isa_dma;
892 }
893 return 0;
894 case SG_GET_LOW_DMA:
895 return put_user((int) sfp->low_dma, ip);
896 case SG_GET_SCSI_ID:
897 if (!access_ok(VERIFY_WRITE, p, sizeof (sg_scsi_id_t)))
898 return -EFAULT;
899 else {
900 sg_scsi_id_t __user *sg_idp = p;
901
902 if (sdp->detached)
903 return -ENODEV;
904 __put_user((int) sdp->device->host->host_no,
905 &sg_idp->host_no);
906 __put_user((int) sdp->device->channel,
907 &sg_idp->channel);
908 __put_user((int) sdp->device->id, &sg_idp->scsi_id);
909 __put_user((int) sdp->device->lun, &sg_idp->lun);
910 __put_user((int) sdp->device->type, &sg_idp->scsi_type);
911 __put_user((short) sdp->device->host->cmd_per_lun,
912 &sg_idp->h_cmd_per_lun);
913 __put_user((short) sdp->device->queue_depth,
914 &sg_idp->d_queue_depth);
915 __put_user(0, &sg_idp->unused[0]);
916 __put_user(0, &sg_idp->unused[1]);
917 return 0;
918 }
919 case SG_SET_FORCE_PACK_ID:
920 result = get_user(val, ip);
921 if (result)
922 return result;
923 sfp->force_packid = val ? 1 : 0;
924 return 0;
925 case SG_GET_PACK_ID:
926 if (!access_ok(VERIFY_WRITE, ip, sizeof (int)))
927 return -EFAULT;
928 read_lock_irqsave(&sfp->rq_list_lock, iflags);
929 for (srp = sfp->headrp; srp; srp = srp->nextrp) {
930 if ((1 == srp->done) && (!srp->sg_io_owned)) {
931 read_unlock_irqrestore(&sfp->rq_list_lock,
932 iflags);
933 __put_user(srp->header.pack_id, ip);
934 return 0;
935 }
936 }
937 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
938 __put_user(-1, ip);
939 return 0;
940 case SG_GET_NUM_WAITING:
941 read_lock_irqsave(&sfp->rq_list_lock, iflags);
942 for (val = 0, srp = sfp->headrp; srp; srp = srp->nextrp) {
943 if ((1 == srp->done) && (!srp->sg_io_owned))
944 ++val;
945 }
946 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
947 return put_user(val, ip);
948 case SG_GET_SG_TABLESIZE:
949 return put_user(sdp->sg_tablesize, ip);
950 case SG_SET_RESERVED_SIZE:
951 result = get_user(val, ip);
952 if (result)
953 return result;
954 if (val < 0)
955 return -EINVAL;
Alan Stern44ec9542007-02-20 11:01:57 -0500956 val = min_t(int, val,
Akinobu Mita46f69e62014-06-02 22:56:46 +0900957 max_sectors_bytes(sdp->device->request_queue));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 if (val != sfp->reserve.bufflen) {
959 if (sg_res_in_use(sfp) || sfp->mmap_called)
960 return -EBUSY;
961 sg_remove_scat(&sfp->reserve);
962 sg_build_reserve(sfp, val);
963 }
964 return 0;
965 case SG_GET_RESERVED_SIZE:
Alan Stern44ec9542007-02-20 11:01:57 -0500966 val = min_t(int, sfp->reserve.bufflen,
Akinobu Mita46f69e62014-06-02 22:56:46 +0900967 max_sectors_bytes(sdp->device->request_queue));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 return put_user(val, ip);
969 case SG_SET_COMMAND_Q:
970 result = get_user(val, ip);
971 if (result)
972 return result;
973 sfp->cmd_q = val ? 1 : 0;
974 return 0;
975 case SG_GET_COMMAND_Q:
976 return put_user((int) sfp->cmd_q, ip);
977 case SG_SET_KEEP_ORPHAN:
978 result = get_user(val, ip);
979 if (result)
980 return result;
981 sfp->keep_orphan = val;
982 return 0;
983 case SG_GET_KEEP_ORPHAN:
984 return put_user((int) sfp->keep_orphan, ip);
985 case SG_NEXT_CMD_LEN:
986 result = get_user(val, ip);
987 if (result)
988 return result;
989 sfp->next_cmd_len = (val > 0) ? val : 0;
990 return 0;
991 case SG_GET_VERSION_NUM:
992 return put_user(sg_version_num, ip);
993 case SG_GET_ACCESS_COUNT:
994 /* faked - we don't have a real access count anymore */
995 val = (sdp->device ? 1 : 0);
996 return put_user(val, ip);
997 case SG_GET_REQUEST_TABLE:
998 if (!access_ok(VERIFY_WRITE, p, SZ_SG_REQ_INFO * SG_MAX_QUEUE))
999 return -EFAULT;
1000 else {
cb59e842005-04-02 13:51:23 -06001001 sg_req_info_t *rinfo;
1002 unsigned int ms;
1003
1004 rinfo = kmalloc(SZ_SG_REQ_INFO * SG_MAX_QUEUE,
1005 GFP_KERNEL);
1006 if (!rinfo)
1007 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 read_lock_irqsave(&sfp->rq_list_lock, iflags);
1009 for (srp = sfp->headrp, val = 0; val < SG_MAX_QUEUE;
1010 ++val, srp = srp ? srp->nextrp : srp) {
1011 memset(&rinfo[val], 0, SZ_SG_REQ_INFO);
1012 if (srp) {
1013 rinfo[val].req_state = srp->done + 1;
1014 rinfo[val].problem =
1015 srp->header.masked_status &
1016 srp->header.host_status &
1017 srp->header.driver_status;
cb59e842005-04-02 13:51:23 -06001018 if (srp->done)
1019 rinfo[val].duration =
1020 srp->header.duration;
1021 else {
1022 ms = jiffies_to_msecs(jiffies);
1023 rinfo[val].duration =
1024 (ms > srp->header.duration) ?
1025 (ms - srp->header.duration) : 0;
1026 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 rinfo[val].orphan = srp->orphan;
cb59e842005-04-02 13:51:23 -06001028 rinfo[val].sg_io_owned =
1029 srp->sg_io_owned;
1030 rinfo[val].pack_id =
1031 srp->header.pack_id;
1032 rinfo[val].usr_ptr =
1033 srp->header.usr_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 }
1035 }
1036 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
cb59e842005-04-02 13:51:23 -06001037 result = __copy_to_user(p, rinfo,
1038 SZ_SG_REQ_INFO * SG_MAX_QUEUE);
1039 result = result ? -EFAULT : 0;
1040 kfree(rinfo);
1041 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 }
1043 case SG_EMULATED_HOST:
1044 if (sdp->detached)
1045 return -ENODEV;
1046 return put_user(sdp->device->host->hostt->emulated, ip);
1047 case SG_SCSI_RESET:
1048 if (sdp->detached)
1049 return -ENODEV;
1050 if (filp->f_flags & O_NONBLOCK) {
James Bottomley939647e2005-09-18 15:05:20 -05001051 if (scsi_host_in_recovery(sdp->device->host))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 return -EBUSY;
1053 } else if (!scsi_block_when_processing_errors(sdp->device))
1054 return -EBUSY;
1055 result = get_user(val, ip);
1056 if (result)
1057 return result;
1058 if (SG_SCSI_RESET_NOTHING == val)
1059 return 0;
1060 switch (val) {
1061 case SG_SCSI_RESET_DEVICE:
1062 val = SCSI_TRY_RESET_DEVICE;
1063 break;
Brian King39120e12008-07-01 13:03:19 -05001064 case SG_SCSI_RESET_TARGET:
1065 val = SCSI_TRY_RESET_TARGET;
1066 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 case SG_SCSI_RESET_BUS:
1068 val = SCSI_TRY_RESET_BUS;
1069 break;
1070 case SG_SCSI_RESET_HOST:
1071 val = SCSI_TRY_RESET_HOST;
1072 break;
1073 default:
1074 return -EINVAL;
1075 }
1076 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
1077 return -EACCES;
1078 return (scsi_reset_provider(sdp->device, val) ==
1079 SUCCESS) ? 0 : -EIO;
1080 case SCSI_IOCTL_SEND_COMMAND:
1081 if (sdp->detached)
1082 return -ENODEV;
1083 if (read_only) {
1084 unsigned char opcode = WRITE_6;
1085 Scsi_Ioctl_Command __user *siocp = p;
1086
1087 if (copy_from_user(&opcode, siocp->data, 1))
1088 return -EFAULT;
FUJITA Tomonori14e507b2008-07-26 18:03:24 +09001089 if (sg_allow_access(filp, &opcode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 return -EPERM;
1091 }
Al Viroe915e872008-09-02 17:16:41 -04001092 return sg_scsi_ioctl(sdp->device->request_queue, NULL, filp->f_mode, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 case SG_SET_DEBUG:
1094 result = get_user(val, ip);
1095 if (result)
1096 return result;
1097 sdp->sgdebug = (char) val;
1098 return 0;
1099 case SCSI_IOCTL_GET_IDLUN:
1100 case SCSI_IOCTL_GET_BUS_NUMBER:
1101 case SCSI_IOCTL_PROBE_HOST:
1102 case SG_GET_TRANSFORM:
1103 if (sdp->detached)
1104 return -ENODEV;
1105 return scsi_ioctl(sdp->device, cmd_in, p);
Alan Stern44ec9542007-02-20 11:01:57 -05001106 case BLKSECTGET:
Akinobu Mita46f69e62014-06-02 22:56:46 +09001107 return put_user(max_sectors_bytes(sdp->device->request_queue),
Alan Stern44ec9542007-02-20 11:01:57 -05001108 ip);
Christof Schmitt6da127a2008-01-11 10:09:43 +01001109 case BLKTRACESETUP:
1110 return blk_trace_setup(sdp->device->request_queue,
1111 sdp->disk->disk_name,
Martin Peschke76e3a192009-01-30 15:46:23 +01001112 MKDEV(SCSI_GENERIC_MAJOR, sdp->index),
Shawn Dud0deef52009-04-14 13:58:56 +08001113 NULL,
Christof Schmitt6da127a2008-01-11 10:09:43 +01001114 (char *)arg);
1115 case BLKTRACESTART:
1116 return blk_trace_startstop(sdp->device->request_queue, 1);
1117 case BLKTRACESTOP:
1118 return blk_trace_startstop(sdp->device->request_queue, 0);
1119 case BLKTRACETEARDOWN:
1120 return blk_trace_remove(sdp->device->request_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 default:
1122 if (read_only)
1123 return -EPERM; /* don't know so take safe approach */
1124 return scsi_ioctl(sdp->device, cmd_in, p);
1125 }
1126}
1127
1128#ifdef CONFIG_COMPAT
1129static long sg_compat_ioctl(struct file *filp, unsigned int cmd_in, unsigned long arg)
1130{
1131 Sg_device *sdp;
1132 Sg_fd *sfp;
1133 struct scsi_device *sdev;
1134
1135 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
1136 return -ENXIO;
1137
1138 sdev = sdp->device;
1139 if (sdev->host->hostt->compat_ioctl) {
1140 int ret;
1141
1142 ret = sdev->host->hostt->compat_ioctl(sdev, cmd_in, (void __user *)arg);
1143
1144 return ret;
1145 }
1146
1147 return -ENOIOCTLCMD;
1148}
1149#endif
1150
1151static unsigned int
1152sg_poll(struct file *filp, poll_table * wait)
1153{
1154 unsigned int res = 0;
1155 Sg_device *sdp;
1156 Sg_fd *sfp;
1157 Sg_request *srp;
1158 int count = 0;
1159 unsigned long iflags;
1160
Jörn Engelebaf4662012-04-12 17:33:39 -04001161 sfp = filp->private_data;
1162 if (!sfp)
1163 return POLLERR;
1164 sdp = sfp->parentdp;
1165 if (!sdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 return POLLERR;
1167 poll_wait(filp, &sfp->read_wait, wait);
1168 read_lock_irqsave(&sfp->rq_list_lock, iflags);
1169 for (srp = sfp->headrp; srp; srp = srp->nextrp) {
1170 /* if any read waiting, flag it */
1171 if ((0 == res) && (1 == srp->done) && (!srp->sg_io_owned))
1172 res = POLLIN | POLLRDNORM;
1173 ++count;
1174 }
1175 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1176
1177 if (sdp->detached)
1178 res |= POLLHUP;
1179 else if (!sfp->cmd_q) {
1180 if (0 == count)
1181 res |= POLLOUT | POLLWRNORM;
1182 } else if (count < SG_MAX_QUEUE)
1183 res |= POLLOUT | POLLWRNORM;
1184 SCSI_LOG_TIMEOUT(3, printk("sg_poll: %s, res=0x%x\n",
1185 sdp->disk->disk_name, (int) res));
1186 return res;
1187}
1188
1189static int
1190sg_fasync(int fd, struct file *filp, int mode)
1191{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 Sg_device *sdp;
1193 Sg_fd *sfp;
1194
1195 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
1196 return -ENXIO;
1197 SCSI_LOG_TIMEOUT(3, printk("sg_fasync: %s, mode=%d\n",
1198 sdp->disk->disk_name, mode));
1199
Jonathan Corbet60aa4922009-02-01 14:52:56 -07001200 return fasync_helper(fd, filp, mode, &sfp->async_qp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201}
1202
Nick Piggina13ff0b2008-02-07 18:46:06 -08001203static int
1204sg_vma_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205{
1206 Sg_fd *sfp;
Mike Christied6b10342005-11-08 04:06:41 -06001207 unsigned long offset, len, sa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 Sg_scatter_hold *rsv_schp;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001209 int k, length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
1211 if ((NULL == vma) || (!(sfp = (Sg_fd *) vma->vm_private_data)))
Nick Piggina13ff0b2008-02-07 18:46:06 -08001212 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 rsv_schp = &sfp->reserve;
Nick Piggina13ff0b2008-02-07 18:46:06 -08001214 offset = vmf->pgoff << PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 if (offset >= rsv_schp->bufflen)
Nick Piggina13ff0b2008-02-07 18:46:06 -08001216 return VM_FAULT_SIGBUS;
1217 SCSI_LOG_TIMEOUT(3, printk("sg_vma_fault: offset=%lu, scatg=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 offset, rsv_schp->k_use_sg));
Mike Christied6b10342005-11-08 04:06:41 -06001219 sa = vma->vm_start;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001220 length = 1 << (PAGE_SHIFT + rsv_schp->page_order);
1221 for (k = 0; k < rsv_schp->k_use_sg && sa < vma->vm_end; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06001222 len = vma->vm_end - sa;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001223 len = (len < length) ? len : length;
Mike Christied6b10342005-11-08 04:06:41 -06001224 if (offset < len) {
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001225 struct page *page = nth_page(rsv_schp->pages[k],
1226 offset >> PAGE_SHIFT);
Mike Christied6b10342005-11-08 04:06:41 -06001227 get_page(page); /* increment page count */
Nick Piggina13ff0b2008-02-07 18:46:06 -08001228 vmf->page = page;
1229 return 0; /* success */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 }
Mike Christied6b10342005-11-08 04:06:41 -06001231 sa += len;
1232 offset -= len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 }
Mike Christied6b10342005-11-08 04:06:41 -06001234
Nick Piggina13ff0b2008-02-07 18:46:06 -08001235 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236}
1237
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04001238static const struct vm_operations_struct sg_mmap_vm_ops = {
Nick Piggina13ff0b2008-02-07 18:46:06 -08001239 .fault = sg_vma_fault,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240};
1241
1242static int
1243sg_mmap(struct file *filp, struct vm_area_struct *vma)
1244{
1245 Sg_fd *sfp;
Mike Christied6b10342005-11-08 04:06:41 -06001246 unsigned long req_sz, len, sa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 Sg_scatter_hold *rsv_schp;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001248 int k, length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
1250 if ((!filp) || (!vma) || (!(sfp = (Sg_fd *) filp->private_data)))
1251 return -ENXIO;
cb59e842005-04-02 13:51:23 -06001252 req_sz = vma->vm_end - vma->vm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 SCSI_LOG_TIMEOUT(3, printk("sg_mmap starting, vm_start=%p, len=%d\n",
1254 (void *) vma->vm_start, (int) req_sz));
1255 if (vma->vm_pgoff)
1256 return -EINVAL; /* want no offset */
1257 rsv_schp = &sfp->reserve;
1258 if (req_sz > rsv_schp->bufflen)
1259 return -ENOMEM; /* cannot map more than reserved buffer */
1260
Mike Christied6b10342005-11-08 04:06:41 -06001261 sa = vma->vm_start;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001262 length = 1 << (PAGE_SHIFT + rsv_schp->page_order);
1263 for (k = 0; k < rsv_schp->k_use_sg && sa < vma->vm_end; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06001264 len = vma->vm_end - sa;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001265 len = (len < length) ? len : length;
Mike Christied6b10342005-11-08 04:06:41 -06001266 sa += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 }
Mike Christied6b10342005-11-08 04:06:41 -06001268
Nick Pigginf9aed0e2006-03-22 00:08:30 -08001269 sfp->mmap_called = 1;
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -07001270 vma->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 vma->vm_private_data = sfp;
1272 vma->vm_ops = &sg_mmap_vm_ops;
1273 return 0;
1274}
1275
FUJITA Tomonoric96952e2009-02-04 11:36:27 +09001276static void sg_rq_end_io_usercontext(struct work_struct *work)
1277{
1278 struct sg_request *srp = container_of(work, struct sg_request, ew.work);
1279 struct sg_fd *sfp = srp->parentfp;
1280
1281 sg_finish_rem_req(srp);
1282 kref_put(&sfp->f_ref, sg_remove_sfp);
1283}
1284
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001285/*
1286 * This function is a "bottom half" handler that is called by the mid
1287 * level when a command is completed (or has failed).
1288 */
1289static void sg_rq_end_io(struct request *rq, int uptodate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290{
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001291 struct sg_request *srp = rq->end_io_data;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001292 Sg_device *sdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 Sg_fd *sfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 unsigned long iflags;
cb59e842005-04-02 13:51:23 -06001295 unsigned int ms;
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001296 char *sense;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001297 int result, resid, done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
Tony Battersbyc6517b792009-01-21 14:45:50 -05001299 if (WARN_ON(srp->done != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 return;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001301
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 sfp = srp->parentfp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001303 if (WARN_ON(sfp == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 return;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001305
1306 sdp = sfp->parentdp;
1307 if (unlikely(sdp->detached))
1308 printk(KERN_INFO "sg_rq_end_io: device detached\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001310 sense = rq->sense;
1311 result = rq->errors;
Tejun Heoc3a4d782009-05-07 22:24:37 +09001312 resid = rq->resid_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
1314 SCSI_LOG_TIMEOUT(4, printk("sg_cmd_done: %s, pack_id=%d, res=0x%x\n",
Mike Christied6b10342005-11-08 04:06:41 -06001315 sdp->disk->disk_name, srp->header.pack_id, result));
1316 srp->header.resid = resid;
cb59e842005-04-02 13:51:23 -06001317 ms = jiffies_to_msecs(jiffies);
1318 srp->header.duration = (ms > srp->header.duration) ?
1319 (ms - srp->header.duration) : 0;
Mike Christied6b10342005-11-08 04:06:41 -06001320 if (0 != result) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 struct scsi_sense_hdr sshdr;
1322
Mike Christied6b10342005-11-08 04:06:41 -06001323 srp->header.status = 0xff & result;
1324 srp->header.masked_status = status_byte(result);
1325 srp->header.msg_status = msg_byte(result);
1326 srp->header.host_status = host_byte(result);
1327 srp->header.driver_status = driver_byte(result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 if ((sdp->sgdebug > 0) &&
1329 ((CHECK_CONDITION == srp->header.masked_status) ||
1330 (COMMAND_TERMINATED == srp->header.masked_status)))
Mike Christied6b10342005-11-08 04:06:41 -06001331 __scsi_print_sense("sg_cmd_done", sense,
1332 SCSI_SENSE_BUFFERSIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
1334 /* Following if statement is a patch supplied by Eric Youngdale */
Mike Christied6b10342005-11-08 04:06:41 -06001335 if (driver_byte(result) != 0
1336 && scsi_normalize_sense(sense, SCSI_SENSE_BUFFERSIZE, &sshdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 && !scsi_sense_is_deferred(&sshdr)
1338 && sshdr.sense_key == UNIT_ATTENTION
1339 && sdp->device->removable) {
1340 /* Detected possible disc change. Set the bit - this */
1341 /* may be used if there are filesystems using this device */
1342 sdp->device->changed = 1;
1343 }
1344 }
1345 /* Rely on write phase to clean out srp status values, so no "else" */
1346
Tony Battersbyc6517b792009-01-21 14:45:50 -05001347 write_lock_irqsave(&sfp->rq_list_lock, iflags);
1348 if (unlikely(srp->orphan)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 if (sfp->keep_orphan)
1350 srp->sg_io_owned = 0;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001351 else
1352 done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05001354 srp->done = done;
1355 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1356
1357 if (likely(done)) {
1358 /* Now wake up any sg_read() that is waiting for this
1359 * packet.
1360 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 wake_up_interruptible(&sfp->read_wait);
Tony Battersbyc6517b792009-01-21 14:45:50 -05001362 kill_fasync(&sfp->async_qp, SIGPOLL, POLL_IN);
FUJITA Tomonoric96952e2009-02-04 11:36:27 +09001363 kref_put(&sfp->f_ref, sg_remove_sfp);
FUJITA Tomonori015640e2009-04-03 19:28:06 +09001364 } else {
1365 INIT_WORK(&srp->ew.work, sg_rq_end_io_usercontext);
1366 schedule_work(&srp->ew.work);
1367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368}
1369
Alexey Dobriyan828c0952009-10-01 15:43:56 -07001370static const struct file_operations sg_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 .owner = THIS_MODULE,
1372 .read = sg_read,
1373 .write = sg_write,
1374 .poll = sg_poll,
Jörn Engel37b9d1e2012-04-12 17:35:05 -04001375 .unlocked_ioctl = sg_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376#ifdef CONFIG_COMPAT
1377 .compat_ioctl = sg_compat_ioctl,
1378#endif
1379 .open = sg_open,
1380 .mmap = sg_mmap,
1381 .release = sg_release,
1382 .fasync = sg_fasync,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001383 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384};
1385
gregkh@suse.ded2538782005-03-23 09:55:22 -08001386static struct class *sg_sysfs_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
1388static int sg_sysfs_valid = 0;
1389
James Bottomley7c07d612007-08-05 13:36:11 -05001390static Sg_device *sg_alloc(struct gendisk *disk, struct scsi_device *scsidp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391{
Mike Christied6b10342005-11-08 04:06:41 -06001392 struct request_queue *q = scsidp->request_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 Sg_device *sdp;
1394 unsigned long iflags;
James Bottomley7c07d612007-08-05 13:36:11 -05001395 int error;
1396 u32 k;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
Jes Sorensen24669f752006-01-16 10:31:18 -05001398 sdp = kzalloc(sizeof(Sg_device), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 if (!sdp) {
1400 printk(KERN_WARNING "kmalloc Sg_device failure\n");
James Bottomley7c07d612007-08-05 13:36:11 -05001401 return ERR_PTR(-ENOMEM);
1402 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05001403
Tejun Heob98c52b2013-02-27 17:04:42 -08001404 idr_preload(GFP_KERNEL);
James Bottomley7c07d612007-08-05 13:36:11 -05001405 write_lock_irqsave(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
Tejun Heob98c52b2013-02-27 17:04:42 -08001407 error = idr_alloc(&sg_index_idr, sdp, 0, SG_MAX_DEVS, GFP_NOWAIT);
1408 if (error < 0) {
1409 if (error == -ENOSPC) {
1410 sdev_printk(KERN_WARNING, scsidp,
1411 "Unable to attach sg device type=%d, minor number exceeds %d\n",
1412 scsidp->type, SG_MAX_DEVS - 1);
1413 error = -ENODEV;
1414 } else {
1415 printk(KERN_WARNING
1416 "idr allocation Sg_device failure: %d\n", error);
1417 }
1418 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 }
Tejun Heob98c52b2013-02-27 17:04:42 -08001420 k = error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 SCSI_LOG_TIMEOUT(3, printk("sg_alloc: dev=%d \n", k));
1423 sprintf(disk->disk_name, "sg%d", k);
1424 disk->first_minor = k;
1425 sdp->disk = disk;
1426 sdp->device = scsidp;
FUJITA Tomonori3442f802009-02-16 13:26:53 +09001427 INIT_LIST_HEAD(&sdp->sfds);
James Bottomley065b4a22013-10-25 10:27:02 +01001428 init_waitqueue_head(&sdp->o_excl_wait);
Martin K. Petersen8a783622010-02-26 00:20:39 -05001429 sdp->sg_tablesize = queue_max_segments(q);
James Bottomley7c07d612007-08-05 13:36:11 -05001430 sdp->index = k;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001431 kref_init(&sdp->d_ref);
James Bottomley7c07d612007-08-05 13:36:11 -05001432 error = 0;
Tejun Heob98c52b2013-02-27 17:04:42 -08001433
1434out_unlock:
1435 write_unlock_irqrestore(&sg_index_lock, iflags);
1436 idr_preload_end();
1437
James Bottomley7c07d612007-08-05 13:36:11 -05001438 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 kfree(sdp);
James Bottomley7c07d612007-08-05 13:36:11 -05001440 return ERR_PTR(error);
1441 }
1442 return sdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443}
1444
1445static int
Tony Jonesee959b02008-02-22 00:13:36 +01001446sg_add(struct device *cl_dev, struct class_interface *cl_intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447{
Tony Jonesee959b02008-02-22 00:13:36 +01001448 struct scsi_device *scsidp = to_scsi_device(cl_dev->parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 struct gendisk *disk;
1450 Sg_device *sdp = NULL;
1451 struct cdev * cdev = NULL;
James Bottomley7c07d612007-08-05 13:36:11 -05001452 int error;
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001453 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
1455 disk = alloc_disk(1);
1456 if (!disk) {
1457 printk(KERN_WARNING "alloc_disk failed\n");
1458 return -ENOMEM;
1459 }
1460 disk->major = SCSI_GENERIC_MAJOR;
1461
1462 error = -ENOMEM;
1463 cdev = cdev_alloc();
1464 if (!cdev) {
1465 printk(KERN_WARNING "cdev_alloc failed\n");
1466 goto out;
1467 }
1468 cdev->owner = THIS_MODULE;
1469 cdev->ops = &sg_fops;
1470
James Bottomley7c07d612007-08-05 13:36:11 -05001471 sdp = sg_alloc(disk, scsidp);
1472 if (IS_ERR(sdp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 printk(KERN_WARNING "sg_alloc failed\n");
James Bottomley7c07d612007-08-05 13:36:11 -05001474 error = PTR_ERR(sdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 goto out;
1476 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
James Bottomley7c07d612007-08-05 13:36:11 -05001478 error = cdev_add(cdev, MKDEV(SCSI_GENERIC_MAJOR, sdp->index), 1);
Greg KH5e3c34c2006-01-18 16:17:46 -08001479 if (error)
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001480 goto cdev_add_err;
Greg KH5e3c34c2006-01-18 16:17:46 -08001481
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 sdp->cdev = cdev;
1483 if (sg_sysfs_valid) {
Tony Jonesee959b02008-02-22 00:13:36 +01001484 struct device *sg_class_member;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
Greg Kroah-Hartmand73a1a672008-07-21 20:03:34 -07001486 sg_class_member = device_create(sg_sysfs_class, cl_dev->parent,
1487 MKDEV(SCSI_GENERIC_MAJOR,
1488 sdp->index),
1489 sdp, "%s", disk->disk_name);
FUJITA Tomonorid07e0362008-01-15 13:18:00 +09001490 if (IS_ERR(sg_class_member)) {
1491 printk(KERN_ERR "sg_add: "
Tony Jonesee959b02008-02-22 00:13:36 +01001492 "device_create failed\n");
FUJITA Tomonorid07e0362008-01-15 13:18:00 +09001493 error = PTR_ERR(sg_class_member);
1494 goto cdev_add_err;
1495 }
FUJITA Tomonorid07e0362008-01-15 13:18:00 +09001496 error = sysfs_create_link(&scsidp->sdev_gendev.kobj,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 &sg_class_member->kobj, "generic");
1498 if (error)
1499 printk(KERN_ERR "sg_add: unable to make symlink "
James Bottomley7c07d612007-08-05 13:36:11 -05001500 "'generic' back to sg%d\n", sdp->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 } else
James Bottomley7c07d612007-08-05 13:36:11 -05001502 printk(KERN_WARNING "sg_add: sg_sys Invalid\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
James Bottomley9ccfc752005-10-02 11:45:08 -05001504 sdev_printk(KERN_NOTICE, scsidp,
James Bottomley7c07d612007-08-05 13:36:11 -05001505 "Attached scsi generic sg%d type %d\n", sdp->index,
1506 scsidp->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
Tony Jonesee959b02008-02-22 00:13:36 +01001508 dev_set_drvdata(cl_dev, sdp);
FUJITA Tomonoria24484f2008-01-15 13:17:47 +09001509
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 return 0;
1511
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001512cdev_add_err:
James Bottomley7c07d612007-08-05 13:36:11 -05001513 write_lock_irqsave(&sg_index_lock, iflags);
1514 idr_remove(&sg_index_idr, sdp->index);
1515 write_unlock_irqrestore(&sg_index_lock, iflags);
1516 kfree(sdp);
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001517
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518out:
1519 put_disk(disk);
1520 if (cdev)
1521 cdev_del(cdev);
1522 return error;
1523}
1524
Tony Battersbyc6517b792009-01-21 14:45:50 -05001525static void sg_device_destroy(struct kref *kref)
1526{
1527 struct sg_device *sdp = container_of(kref, struct sg_device, d_ref);
1528 unsigned long flags;
1529
1530 /* CAUTION! Note that the device can still be found via idr_find()
1531 * even though the refcount is 0. Therefore, do idr_remove() BEFORE
1532 * any other cleanup.
1533 */
1534
1535 write_lock_irqsave(&sg_index_lock, flags);
1536 idr_remove(&sg_index_idr, sdp->index);
1537 write_unlock_irqrestore(&sg_index_lock, flags);
1538
1539 SCSI_LOG_TIMEOUT(3,
1540 printk("sg_device_destroy: %s\n",
1541 sdp->disk->disk_name));
1542
1543 put_disk(sdp->disk);
1544 kfree(sdp);
1545}
1546
1547static void sg_remove(struct device *cl_dev, struct class_interface *cl_intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548{
Tony Jonesee959b02008-02-22 00:13:36 +01001549 struct scsi_device *scsidp = to_scsi_device(cl_dev->parent);
1550 Sg_device *sdp = dev_get_drvdata(cl_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 unsigned long iflags;
1552 Sg_fd *sfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
Tony Battersbyc6517b792009-01-21 14:45:50 -05001554 if (!sdp || sdp->detached)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
Tony Battersbyc6517b792009-01-21 14:45:50 -05001557 SCSI_LOG_TIMEOUT(3, printk("sg_remove: %s\n", sdp->disk->disk_name));
1558
1559 /* Need a write lock to set sdp->detached. */
James Bottomley7c07d612007-08-05 13:36:11 -05001560 write_lock_irqsave(&sg_index_lock, iflags);
Tony Battersbyc6517b792009-01-21 14:45:50 -05001561 sdp->detached = 1;
FUJITA Tomonori3442f802009-02-16 13:26:53 +09001562 list_for_each_entry(sfp, &sdp->sfds, sfd_siblings) {
Tony Battersbyc6517b792009-01-21 14:45:50 -05001563 wake_up_interruptible(&sfp->read_wait);
1564 kill_fasync(&sfp->async_qp, SIGPOLL, POLL_HUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 }
James Bottomley7c07d612007-08-05 13:36:11 -05001566 write_unlock_irqrestore(&sg_index_lock, iflags);
1567
1568 sysfs_remove_link(&scsidp->sdev_gendev.kobj, "generic");
Tony Jonesee959b02008-02-22 00:13:36 +01001569 device_destroy(sg_sysfs_class, MKDEV(SCSI_GENERIC_MAJOR, sdp->index));
James Bottomley7c07d612007-08-05 13:36:11 -05001570 cdev_del(sdp->cdev);
1571 sdp->cdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
Tony Battersbyc6517b792009-01-21 14:45:50 -05001573 sg_put_dev(sdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574}
1575
Douglas Gilbert6460e752006-09-20 18:20:49 -04001576module_param_named(scatter_elem_sz, scatter_elem_sz, int, S_IRUGO | S_IWUSR);
1577module_param_named(def_reserved_size, def_reserved_size, int,
1578 S_IRUGO | S_IWUSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579module_param_named(allow_dio, sg_allow_dio, int, S_IRUGO | S_IWUSR);
1580
1581MODULE_AUTHOR("Douglas Gilbert");
1582MODULE_DESCRIPTION("SCSI generic (sg) driver");
1583MODULE_LICENSE("GPL");
1584MODULE_VERSION(SG_VERSION_STR);
Rene Hermanf018fa52006-03-08 00:14:20 -08001585MODULE_ALIAS_CHARDEV_MAJOR(SCSI_GENERIC_MAJOR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
Douglas Gilbert6460e752006-09-20 18:20:49 -04001587MODULE_PARM_DESC(scatter_elem_sz, "scatter gather element "
1588 "size (default: max(SG_SCATTER_SZ, PAGE_SIZE))");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589MODULE_PARM_DESC(def_reserved_size, "size of buffer reserved for each fd");
1590MODULE_PARM_DESC(allow_dio, "allow direct I/O (default: 0 (disallow))");
1591
1592static int __init
1593init_sg(void)
1594{
1595 int rc;
1596
Douglas Gilbert6460e752006-09-20 18:20:49 -04001597 if (scatter_elem_sz < PAGE_SIZE) {
1598 scatter_elem_sz = PAGE_SIZE;
1599 scatter_elem_sz_prev = scatter_elem_sz;
1600 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 if (def_reserved_size >= 0)
1602 sg_big_buff = def_reserved_size;
Douglas Gilbert6460e752006-09-20 18:20:49 -04001603 else
1604 def_reserved_size = sg_big_buff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
1606 rc = register_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0),
1607 SG_MAX_DEVS, "sg");
1608 if (rc)
1609 return rc;
gregkh@suse.ded2538782005-03-23 09:55:22 -08001610 sg_sysfs_class = class_create(THIS_MODULE, "scsi_generic");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 if ( IS_ERR(sg_sysfs_class) ) {
1612 rc = PTR_ERR(sg_sysfs_class);
1613 goto err_out;
1614 }
1615 sg_sysfs_valid = 1;
1616 rc = scsi_register_interface(&sg_interface);
1617 if (0 == rc) {
1618#ifdef CONFIG_SCSI_PROC_FS
1619 sg_proc_init();
1620#endif /* CONFIG_SCSI_PROC_FS */
1621 return 0;
1622 }
gregkh@suse.ded2538782005-03-23 09:55:22 -08001623 class_destroy(sg_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624err_out:
1625 unregister_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0), SG_MAX_DEVS);
1626 return rc;
1627}
1628
1629static void __exit
1630exit_sg(void)
1631{
1632#ifdef CONFIG_SCSI_PROC_FS
1633 sg_proc_cleanup();
1634#endif /* CONFIG_SCSI_PROC_FS */
1635 scsi_unregister_interface(&sg_interface);
gregkh@suse.ded2538782005-03-23 09:55:22 -08001636 class_destroy(sg_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 sg_sysfs_valid = 0;
1638 unregister_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0),
1639 SG_MAX_DEVS);
James Bottomley7c07d612007-08-05 13:36:11 -05001640 idr_destroy(&sg_index_idr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641}
1642
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001643static int sg_start_req(Sg_request *srp, unsigned char *cmd)
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001644{
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001645 int res;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001646 struct request *rq;
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001647 Sg_fd *sfp = srp->parentfp;
1648 sg_io_hdr_t *hp = &srp->header;
1649 int dxfer_len = (int) hp->dxfer_len;
1650 int dxfer_dir = hp->dxfer_direction;
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001651 unsigned int iov_count = hp->iovec_count;
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001652 Sg_scatter_hold *req_schp = &srp->data;
1653 Sg_scatter_hold *rsv_schp = &sfp->reserve;
1654 struct request_queue *q = sfp->parentdp->device->request_queue;
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001655 struct rq_map_data *md, map_data;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001656 int rw = hp->dxfer_direction == SG_DXFER_TO_DEV ? WRITE : READ;
1657
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001658 SCSI_LOG_TIMEOUT(4, printk(KERN_INFO "sg_start_req: dxfer_len=%d\n",
1659 dxfer_len));
1660
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001661 rq = blk_get_request(q, rw, GFP_ATOMIC);
1662 if (!rq)
1663 return -ENOMEM;
1664
Jens Axboef27b0872014-06-06 07:57:37 -06001665 blk_rq_set_block_pc(rq);
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001666 memcpy(rq->cmd, cmd, hp->cmd_len);
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001667 rq->cmd_len = hp->cmd_len;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001668
1669 srp->rq = rq;
1670 rq->end_io_data = srp;
1671 rq->sense = srp->sense_b;
1672 rq->retries = SG_DEFAULT_RETRIES;
1673
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 if ((dxfer_len <= 0) || (dxfer_dir == SG_DXFER_NONE))
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001675 return 0;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001676
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001677 if (sg_allow_dio && hp->flags & SG_FLAG_DIRECT_IO &&
1678 dxfer_dir != SG_DXFER_UNKNOWN && !iov_count &&
1679 !sfp->parentdp->device->host->unchecked_isa_dma &&
Namhyung Kim2610a252010-09-16 12:55:57 +09001680 blk_rq_aligned(q, (unsigned long)hp->dxferp, dxfer_len))
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001681 md = NULL;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001682 else
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001683 md = &map_data;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001684
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001685 if (md) {
1686 if (!sg_res_in_use(sfp) && dxfer_len <= rsv_schp->bufflen)
1687 sg_link_reserve(sfp, srp, dxfer_len);
1688 else {
1689 res = sg_build_indirect(req_schp, sfp, dxfer_len);
1690 if (res)
1691 return res;
1692 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001693
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001694 md->pages = req_schp->pages;
1695 md->page_order = req_schp->page_order;
1696 md->nr_entries = req_schp->k_use_sg;
FUJITA Tomonori56c451f2008-12-18 14:49:37 +09001697 md->offset = 0;
FUJITA Tomonori97ae77a2008-12-18 14:49:38 +09001698 md->null_mapped = hp->dxferp ? 0 : 1;
FUJITA Tomonoriecb554a2009-07-09 14:46:53 +02001699 if (dxfer_dir == SG_DXFER_TO_FROM_DEV)
1700 md->from_user = 1;
1701 else
1702 md->from_user = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001704
FUJITA Tomonori0fdf96b2009-04-03 09:12:20 +09001705 if (iov_count) {
1706 int len, size = sizeof(struct sg_iovec) * iov_count;
1707 struct iovec *iov;
1708
Julia Lawall30941412010-08-10 18:01:27 -07001709 iov = memdup_user(hp->dxferp, size);
1710 if (IS_ERR(iov))
1711 return PTR_ERR(iov);
FUJITA Tomonori0fdf96b2009-04-03 09:12:20 +09001712
1713 len = iov_length(iov, iov_count);
1714 if (hp->dxfer_len < len) {
1715 iov_count = iov_shorten(iov, iov_count, hp->dxfer_len);
1716 len = hp->dxfer_len;
1717 }
1718
1719 res = blk_rq_map_user_iov(q, rq, md, (struct sg_iovec *)iov,
1720 iov_count,
1721 len, GFP_ATOMIC);
1722 kfree(iov);
1723 } else
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001724 res = blk_rq_map_user(q, rq, md, hp->dxferp,
1725 hp->dxfer_len, GFP_ATOMIC);
1726
1727 if (!res) {
1728 srp->bio = rq->bio;
1729
1730 if (!md) {
1731 req_schp->dio_in_use = 1;
1732 hp->info |= SG_INFO_DIRECT_IO;
1733 }
1734 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001735 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736}
1737
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +09001738static int sg_finish_rem_req(Sg_request * srp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739{
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +09001740 int ret = 0;
1741
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 Sg_fd *sfp = srp->parentfp;
1743 Sg_scatter_hold *req_schp = &srp->data;
1744
1745 SCSI_LOG_TIMEOUT(4, printk("sg_finish_rem_req: res_used=%d\n", (int) srp->res_used));
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001746 if (srp->rq) {
1747 if (srp->bio)
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +09001748 ret = blk_rq_unmap_user(srp->bio);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001749
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001750 blk_put_request(srp->rq);
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001751 }
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001752
Christof Schmitte27168f2009-09-17 09:10:14 +02001753 if (srp->res_used)
1754 sg_unlink_reserve(sfp, srp);
1755 else
1756 sg_remove_scat(req_schp);
1757
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 sg_remove_request(sfp, srp);
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +09001759
1760 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761}
1762
1763static int
1764sg_build_sgat(Sg_scatter_hold * schp, const Sg_fd * sfp, int tablesize)
1765{
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001766 int sg_bufflen = tablesize * sizeof(struct page *);
Al Viro2d20eaf2006-02-01 06:31:40 -05001767 gfp_t gfp_flags = GFP_ATOMIC | __GFP_NOWARN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001769 schp->pages = kzalloc(sg_bufflen, gfp_flags);
1770 if (!schp->pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 schp->sglist_len = sg_bufflen;
Mike Christied6b10342005-11-08 04:06:41 -06001773 return tablesize; /* number of scat_gath elements allocated */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774}
1775
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776static int
1777sg_build_indirect(Sg_scatter_hold * schp, Sg_fd * sfp, int buff_size)
1778{
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001779 int ret_sz = 0, i, k, rem_sz, num, mx_sc_elems;
Mike Christied6b10342005-11-08 04:06:41 -06001780 int sg_tablesize = sfp->parentdp->sg_tablesize;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001781 int blk_size = buff_size, order;
1782 gfp_t gfp_mask = GFP_ATOMIC | __GFP_COMP | __GFP_NOWARN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
Eric Sesterhennfb119932007-05-23 14:41:36 -07001784 if (blk_size < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 return -EFAULT;
1786 if (0 == blk_size)
1787 ++blk_size; /* don't know why */
FUJITA Tomonorib2ed6c62009-02-12 02:42:57 +09001788 /* round request up to next highest SG_SECTOR_SZ byte boundary */
1789 blk_size = ALIGN(blk_size, SG_SECTOR_SZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 SCSI_LOG_TIMEOUT(4, printk("sg_build_indirect: buff_size=%d, blk_size=%d\n",
1791 buff_size, blk_size));
Mike Christied6b10342005-11-08 04:06:41 -06001792
1793 /* N.B. ret_sz carried into this block ... */
1794 mx_sc_elems = sg_build_sgat(schp, sfp, sg_tablesize);
1795 if (mx_sc_elems < 0)
1796 return mx_sc_elems; /* most likely -ENOMEM */
1797
Douglas Gilbert6460e752006-09-20 18:20:49 -04001798 num = scatter_elem_sz;
1799 if (unlikely(num != scatter_elem_sz_prev)) {
1800 if (num < PAGE_SIZE) {
1801 scatter_elem_sz = PAGE_SIZE;
1802 scatter_elem_sz_prev = PAGE_SIZE;
1803 } else
1804 scatter_elem_sz_prev = num;
1805 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001806
1807 if (sfp->low_dma)
1808 gfp_mask |= GFP_DMA;
1809
1810 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
1811 gfp_mask |= __GFP_ZERO;
1812
1813 order = get_order(num);
1814retry:
1815 ret_sz = 1 << (PAGE_SHIFT + order);
1816
1817 for (k = 0, rem_sz = blk_size; rem_sz > 0 && k < mx_sc_elems;
1818 k++, rem_sz -= ret_sz) {
1819
Douglas Gilbert6460e752006-09-20 18:20:49 -04001820 num = (rem_sz > scatter_elem_sz_prev) ?
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001821 scatter_elem_sz_prev : rem_sz;
1822
1823 schp->pages[k] = alloc_pages(gfp_mask, order);
1824 if (!schp->pages[k])
1825 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
Douglas Gilbert6460e752006-09-20 18:20:49 -04001827 if (num == scatter_elem_sz_prev) {
1828 if (unlikely(ret_sz > scatter_elem_sz_prev)) {
1829 scatter_elem_sz = ret_sz;
1830 scatter_elem_sz_prev = ret_sz;
1831 }
1832 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833
Douglas Gilbert7ca63cb2006-10-27 17:47:49 -04001834 SCSI_LOG_TIMEOUT(5, printk("sg_build_indirect: k=%d, num=%d, "
1835 "ret_sz=%d\n", k, num, ret_sz));
Mike Christied6b10342005-11-08 04:06:41 -06001836 } /* end of for loop */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001838 schp->page_order = order;
Mike Christied6b10342005-11-08 04:06:41 -06001839 schp->k_use_sg = k;
Douglas Gilbert7ca63cb2006-10-27 17:47:49 -04001840 SCSI_LOG_TIMEOUT(5, printk("sg_build_indirect: k_use_sg=%d, "
1841 "rem_sz=%d\n", k, rem_sz));
Mike Christied6b10342005-11-08 04:06:41 -06001842
1843 schp->bufflen = blk_size;
1844 if (rem_sz > 0) /* must have failed */
1845 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 return 0;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001847out:
1848 for (i = 0; i < k; i++)
Michal Schmidte71044e2009-09-03 14:27:08 +02001849 __free_pages(schp->pages[i], order);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001850
1851 if (--order >= 0)
1852 goto retry;
1853
1854 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855}
1856
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857static void
1858sg_remove_scat(Sg_scatter_hold * schp)
1859{
1860 SCSI_LOG_TIMEOUT(4, printk("sg_remove_scat: k_use_sg=%d\n", schp->k_use_sg));
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001861 if (schp->pages && schp->sglist_len > 0) {
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001862 if (!schp->dio_in_use) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 int k;
1864
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001865 for (k = 0; k < schp->k_use_sg && schp->pages[k]; k++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 SCSI_LOG_TIMEOUT(5, printk(
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001867 "sg_remove_scat: k=%d, pg=0x%p\n",
1868 k, schp->pages[k]));
1869 __free_pages(schp->pages[k], schp->page_order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 }
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001871
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001872 kfree(schp->pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 }
Mike Christied6b10342005-11-08 04:06:41 -06001874 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 memset(schp, 0, sizeof (*schp));
1876}
1877
1878static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879sg_read_oxfer(Sg_request * srp, char __user *outp, int num_read_xfer)
1880{
1881 Sg_scatter_hold *schp = &srp->data;
Mike Christied6b10342005-11-08 04:06:41 -06001882 int k, num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883
1884 SCSI_LOG_TIMEOUT(4, printk("sg_read_oxfer: num_read_xfer=%d\n",
1885 num_read_xfer));
1886 if ((!outp) || (num_read_xfer <= 0))
1887 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001889 num = 1 << (PAGE_SHIFT + schp->page_order);
1890 for (k = 0; k < schp->k_use_sg && schp->pages[k]; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06001891 if (num > num_read_xfer) {
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001892 if (__copy_to_user(outp, page_address(schp->pages[k]),
Mike Christied6b10342005-11-08 04:06:41 -06001893 num_read_xfer))
1894 return -EFAULT;
1895 break;
1896 } else {
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001897 if (__copy_to_user(outp, page_address(schp->pages[k]),
Mike Christied6b10342005-11-08 04:06:41 -06001898 num))
1899 return -EFAULT;
1900 num_read_xfer -= num;
1901 if (num_read_xfer <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 break;
Mike Christied6b10342005-11-08 04:06:41 -06001903 outp += num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 }
Mike Christied6b10342005-11-08 04:06:41 -06001906
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 return 0;
1908}
1909
1910static void
1911sg_build_reserve(Sg_fd * sfp, int req_size)
1912{
1913 Sg_scatter_hold *schp = &sfp->reserve;
1914
1915 SCSI_LOG_TIMEOUT(4, printk("sg_build_reserve: req_size=%d\n", req_size));
1916 do {
1917 if (req_size < PAGE_SIZE)
1918 req_size = PAGE_SIZE;
1919 if (0 == sg_build_indirect(schp, sfp, req_size))
1920 return;
1921 else
1922 sg_remove_scat(schp);
1923 req_size >>= 1; /* divide by 2 */
1924 } while (req_size > (PAGE_SIZE / 2));
1925}
1926
1927static void
1928sg_link_reserve(Sg_fd * sfp, Sg_request * srp, int size)
1929{
1930 Sg_scatter_hold *req_schp = &srp->data;
1931 Sg_scatter_hold *rsv_schp = &sfp->reserve;
Mike Christied6b10342005-11-08 04:06:41 -06001932 int k, num, rem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
1934 srp->res_used = 1;
1935 SCSI_LOG_TIMEOUT(4, printk("sg_link_reserve: size=%d\n", size));
Brian Kingeca7be52006-02-14 12:42:24 -06001936 rem = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001938 num = 1 << (PAGE_SHIFT + rsv_schp->page_order);
1939 for (k = 0; k < rsv_schp->k_use_sg; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06001940 if (rem <= num) {
Mike Christied6b10342005-11-08 04:06:41 -06001941 req_schp->k_use_sg = k + 1;
1942 req_schp->sglist_len = rsv_schp->sglist_len;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001943 req_schp->pages = rsv_schp->pages;
Mike Christied6b10342005-11-08 04:06:41 -06001944
1945 req_schp->bufflen = size;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001946 req_schp->page_order = rsv_schp->page_order;
Mike Christied6b10342005-11-08 04:06:41 -06001947 break;
1948 } else
1949 rem -= num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 }
Mike Christied6b10342005-11-08 04:06:41 -06001951
1952 if (k >= rsv_schp->k_use_sg)
1953 SCSI_LOG_TIMEOUT(1, printk("sg_link_reserve: BAD size\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954}
1955
1956static void
1957sg_unlink_reserve(Sg_fd * sfp, Sg_request * srp)
1958{
1959 Sg_scatter_hold *req_schp = &srp->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960
1961 SCSI_LOG_TIMEOUT(4, printk("sg_unlink_reserve: req->k_use_sg=%d\n",
1962 (int) req_schp->k_use_sg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 req_schp->k_use_sg = 0;
1964 req_schp->bufflen = 0;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001965 req_schp->pages = NULL;
1966 req_schp->page_order = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 req_schp->sglist_len = 0;
1968 sfp->save_scat_len = 0;
1969 srp->res_used = 0;
1970}
1971
1972static Sg_request *
1973sg_get_rq_mark(Sg_fd * sfp, int pack_id)
1974{
1975 Sg_request *resp;
1976 unsigned long iflags;
1977
1978 write_lock_irqsave(&sfp->rq_list_lock, iflags);
1979 for (resp = sfp->headrp; resp; resp = resp->nextrp) {
1980 /* look for requests that are ready + not SG_IO owned */
1981 if ((1 == resp->done) && (!resp->sg_io_owned) &&
1982 ((-1 == pack_id) || (resp->header.pack_id == pack_id))) {
1983 resp->done = 2; /* guard against other readers */
1984 break;
1985 }
1986 }
1987 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1988 return resp;
1989}
1990
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991/* always adds to end of list */
1992static Sg_request *
1993sg_add_request(Sg_fd * sfp)
1994{
1995 int k;
1996 unsigned long iflags;
1997 Sg_request *resp;
1998 Sg_request *rp = sfp->req_arr;
1999
2000 write_lock_irqsave(&sfp->rq_list_lock, iflags);
2001 resp = sfp->headrp;
2002 if (!resp) {
2003 memset(rp, 0, sizeof (Sg_request));
2004 rp->parentfp = sfp;
2005 resp = rp;
2006 sfp->headrp = resp;
2007 } else {
2008 if (0 == sfp->cmd_q)
2009 resp = NULL; /* command queuing disallowed */
2010 else {
2011 for (k = 0; k < SG_MAX_QUEUE; ++k, ++rp) {
2012 if (!rp->parentfp)
2013 break;
2014 }
2015 if (k < SG_MAX_QUEUE) {
2016 memset(rp, 0, sizeof (Sg_request));
2017 rp->parentfp = sfp;
2018 while (resp->nextrp)
2019 resp = resp->nextrp;
2020 resp->nextrp = rp;
2021 resp = rp;
2022 } else
2023 resp = NULL;
2024 }
2025 }
2026 if (resp) {
2027 resp->nextrp = NULL;
cb59e842005-04-02 13:51:23 -06002028 resp->header.duration = jiffies_to_msecs(jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 }
2030 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
2031 return resp;
2032}
2033
2034/* Return of 1 for found; 0 for not found */
2035static int
2036sg_remove_request(Sg_fd * sfp, Sg_request * srp)
2037{
2038 Sg_request *prev_rp;
2039 Sg_request *rp;
2040 unsigned long iflags;
2041 int res = 0;
2042
2043 if ((!sfp) || (!srp) || (!sfp->headrp))
2044 return res;
2045 write_lock_irqsave(&sfp->rq_list_lock, iflags);
2046 prev_rp = sfp->headrp;
2047 if (srp == prev_rp) {
2048 sfp->headrp = prev_rp->nextrp;
2049 prev_rp->parentfp = NULL;
2050 res = 1;
2051 } else {
2052 while ((rp = prev_rp->nextrp)) {
2053 if (srp == rp) {
2054 prev_rp->nextrp = rp->nextrp;
2055 rp->parentfp = NULL;
2056 res = 1;
2057 break;
2058 }
2059 prev_rp = rp;
2060 }
2061 }
2062 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
2063 return res;
2064}
2065
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066static Sg_fd *
2067sg_add_sfp(Sg_device * sdp, int dev)
2068{
2069 Sg_fd *sfp;
2070 unsigned long iflags;
Alan Stern44ec9542007-02-20 11:01:57 -05002071 int bufflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
Mike Christied6b10342005-11-08 04:06:41 -06002073 sfp = kzalloc(sizeof(*sfp), GFP_ATOMIC | __GFP_NOWARN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 if (!sfp)
James Bottomleybafc8ad2013-10-25 10:25:14 +01002075 return NULL;
Mike Christied6b10342005-11-08 04:06:41 -06002076
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 init_waitqueue_head(&sfp->read_wait);
2078 rwlock_init(&sfp->rq_list_lock);
2079
Tony Battersbyc6517b792009-01-21 14:45:50 -05002080 kref_init(&sfp->f_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 sfp->timeout = SG_DEFAULT_TIMEOUT;
2082 sfp->timeout_user = SG_DEFAULT_TIMEOUT_USER;
2083 sfp->force_packid = SG_DEF_FORCE_PACK_ID;
2084 sfp->low_dma = (SG_DEF_FORCE_LOW_DMA == 0) ?
2085 sdp->device->host->unchecked_isa_dma : 1;
2086 sfp->cmd_q = SG_DEF_COMMAND_Q;
2087 sfp->keep_orphan = SG_DEF_KEEP_ORPHAN;
2088 sfp->parentdp = sdp;
James Bottomleyc0d3b9c2013-10-25 10:21:57 +01002089 write_lock_irqsave(&sg_index_lock, iflags);
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002090 list_add_tail(&sfp->sfd_siblings, &sdp->sfds);
James Bottomleyc0d3b9c2013-10-25 10:21:57 +01002091 write_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 SCSI_LOG_TIMEOUT(3, printk("sg_add_sfp: sfp=0x%p\n", sfp));
Douglas Gilbert6460e752006-09-20 18:20:49 -04002093 if (unlikely(sg_big_buff != def_reserved_size))
2094 sg_big_buff = def_reserved_size;
2095
Alan Stern44ec9542007-02-20 11:01:57 -05002096 bufflen = min_t(int, sg_big_buff,
Akinobu Mita46f69e62014-06-02 22:56:46 +09002097 max_sectors_bytes(sdp->device->request_queue));
Alan Stern44ec9542007-02-20 11:01:57 -05002098 sg_build_reserve(sfp, bufflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 SCSI_LOG_TIMEOUT(3, printk("sg_add_sfp: bufflen=%d, k_use_sg=%d\n",
2100 sfp->reserve.bufflen, sfp->reserve.k_use_sg));
Tony Battersbyc6517b792009-01-21 14:45:50 -05002101
2102 kref_get(&sdp->d_ref);
2103 __module_get(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 return sfp;
2105}
2106
Tony Battersbyc6517b792009-01-21 14:45:50 -05002107static void sg_remove_sfp_usercontext(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108{
Tony Battersbyc6517b792009-01-21 14:45:50 -05002109 struct sg_fd *sfp = container_of(work, struct sg_fd, ew.work);
2110 struct sg_device *sdp = sfp->parentdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111
Tony Battersbyc6517b792009-01-21 14:45:50 -05002112 /* Cleanup any responses which were never read(). */
2113 while (sfp->headrp)
2114 sg_finish_rem_req(sfp->headrp);
2115
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 if (sfp->reserve.bufflen > 0) {
Tony Battersbyc6517b792009-01-21 14:45:50 -05002117 SCSI_LOG_TIMEOUT(6,
2118 printk("sg_remove_sfp: bufflen=%d, k_use_sg=%d\n",
2119 (int) sfp->reserve.bufflen,
2120 (int) sfp->reserve.k_use_sg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 sg_remove_scat(&sfp->reserve);
2122 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05002123
2124 SCSI_LOG_TIMEOUT(6,
2125 printk("sg_remove_sfp: %s, sfp=0x%p\n",
2126 sdp->disk->disk_name,
2127 sfp));
Mike Christied6b10342005-11-08 04:06:41 -06002128 kfree(sfp);
Tony Battersbyc6517b792009-01-21 14:45:50 -05002129
2130 scsi_device_put(sdp->device);
2131 sg_put_dev(sdp);
2132 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133}
2134
Tony Battersbyc6517b792009-01-21 14:45:50 -05002135static void sg_remove_sfp(struct kref *kref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136{
Tony Battersbyc6517b792009-01-21 14:45:50 -05002137 struct sg_fd *sfp = container_of(kref, struct sg_fd, f_ref);
James Bottomley065b4a22013-10-25 10:27:02 +01002138 struct sg_device *sdp = sfp->parentdp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002139 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140
James Bottomleyc0d3b9c2013-10-25 10:21:57 +01002141 write_lock_irqsave(&sg_index_lock, iflags);
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002142 list_del(&sfp->sfd_siblings);
James Bottomleyc0d3b9c2013-10-25 10:21:57 +01002143 write_unlock_irqrestore(&sg_index_lock, iflags);
James Bottomley065b4a22013-10-25 10:27:02 +01002144 wake_up_interruptible(&sdp->o_excl_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145
FUJITA Tomonori015640e2009-04-03 19:28:06 +09002146 INIT_WORK(&sfp->ew.work, sg_remove_sfp_usercontext);
2147 schedule_work(&sfp->ew.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148}
2149
2150static int
2151sg_res_in_use(Sg_fd * sfp)
2152{
2153 const Sg_request *srp;
2154 unsigned long iflags;
2155
2156 read_lock_irqsave(&sfp->rq_list_lock, iflags);
2157 for (srp = sfp->headrp; srp; srp = srp->nextrp)
2158 if (srp->res_used)
2159 break;
2160 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
2161 return srp ? 1 : 0;
2162}
2163
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164#ifdef CONFIG_SCSI_PROC_FS
2165static int
James Bottomley7c07d612007-08-05 13:36:11 -05002166sg_idr_max_id(int id, void *p, void *data)
2167{
2168 int *k = data;
2169
2170 if (*k < id)
2171 *k = id;
2172
2173 return 0;
2174}
2175
2176static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177sg_last_dev(void)
2178{
Tony Battersby53474c02008-01-22 15:25:49 -05002179 int k = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 unsigned long iflags;
2181
James Bottomley7c07d612007-08-05 13:36:11 -05002182 read_lock_irqsave(&sg_index_lock, iflags);
2183 idr_for_each(&sg_index_idr, sg_idr_max_id, &k);
2184 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 return k + 1; /* origin 1 */
2186}
2187#endif
2188
Tony Battersbyc6517b792009-01-21 14:45:50 -05002189/* must be called with sg_index_lock held */
2190static Sg_device *sg_lookup_dev(int dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191{
Tony Battersbyc6517b792009-01-21 14:45:50 -05002192 return idr_find(&sg_index_idr, dev);
2193}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194
Tony Battersbyc6517b792009-01-21 14:45:50 -05002195static Sg_device *sg_get_dev(int dev)
2196{
2197 struct sg_device *sdp;
2198 unsigned long flags;
2199
2200 read_lock_irqsave(&sg_index_lock, flags);
2201 sdp = sg_lookup_dev(dev);
2202 if (!sdp)
2203 sdp = ERR_PTR(-ENXIO);
2204 else if (sdp->detached) {
2205 /* If sdp->detached, then the refcount may already be 0, in
2206 * which case it would be a bug to do kref_get().
2207 */
2208 sdp = ERR_PTR(-ENODEV);
2209 } else
2210 kref_get(&sdp->d_ref);
2211 read_unlock_irqrestore(&sg_index_lock, flags);
James Bottomley7c07d612007-08-05 13:36:11 -05002212
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 return sdp;
2214}
2215
Tony Battersbyc6517b792009-01-21 14:45:50 -05002216static void sg_put_dev(struct sg_device *sdp)
2217{
2218 kref_put(&sdp->d_ref, sg_device_destroy);
2219}
2220
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221#ifdef CONFIG_SCSI_PROC_FS
2222
2223static struct proc_dir_entry *sg_proc_sgp = NULL;
2224
2225static char sg_proc_sg_dirname[] = "scsi/sg";
2226
2227static int sg_proc_seq_show_int(struct seq_file *s, void *v);
2228
2229static int sg_proc_single_open_adio(struct inode *inode, struct file *file);
2230static ssize_t sg_proc_write_adio(struct file *filp, const char __user *buffer,
2231 size_t count, loff_t *off);
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002232static const struct file_operations adio_fops = {
2233 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 .open = sg_proc_single_open_adio,
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002235 .read = seq_read,
2236 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 .write = sg_proc_write_adio,
2238 .release = single_release,
2239};
2240
2241static int sg_proc_single_open_dressz(struct inode *inode, struct file *file);
2242static ssize_t sg_proc_write_dressz(struct file *filp,
2243 const char __user *buffer, size_t count, loff_t *off);
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002244static const struct file_operations dressz_fops = {
2245 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 .open = sg_proc_single_open_dressz,
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002247 .read = seq_read,
2248 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 .write = sg_proc_write_dressz,
2250 .release = single_release,
2251};
2252
2253static int sg_proc_seq_show_version(struct seq_file *s, void *v);
2254static int sg_proc_single_open_version(struct inode *inode, struct file *file);
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002255static const struct file_operations version_fops = {
2256 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 .open = sg_proc_single_open_version,
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002258 .read = seq_read,
2259 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 .release = single_release,
2261};
2262
2263static int sg_proc_seq_show_devhdr(struct seq_file *s, void *v);
2264static int sg_proc_single_open_devhdr(struct inode *inode, struct file *file);
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002265static const struct file_operations devhdr_fops = {
2266 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 .open = sg_proc_single_open_devhdr,
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002268 .read = seq_read,
2269 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 .release = single_release,
2271};
2272
2273static int sg_proc_seq_show_dev(struct seq_file *s, void *v);
2274static int sg_proc_open_dev(struct inode *inode, struct file *file);
2275static void * dev_seq_start(struct seq_file *s, loff_t *pos);
2276static void * dev_seq_next(struct seq_file *s, void *v, loff_t *pos);
2277static void dev_seq_stop(struct seq_file *s, void *v);
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002278static const struct file_operations dev_fops = {
2279 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 .open = sg_proc_open_dev,
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002281 .read = seq_read,
2282 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 .release = seq_release,
2284};
James Morris88e9d342009-09-22 16:43:43 -07002285static const struct seq_operations dev_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 .start = dev_seq_start,
2287 .next = dev_seq_next,
2288 .stop = dev_seq_stop,
2289 .show = sg_proc_seq_show_dev,
2290};
2291
2292static int sg_proc_seq_show_devstrs(struct seq_file *s, void *v);
2293static int sg_proc_open_devstrs(struct inode *inode, struct file *file);
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002294static const struct file_operations devstrs_fops = {
2295 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 .open = sg_proc_open_devstrs,
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002297 .read = seq_read,
2298 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 .release = seq_release,
2300};
James Morris88e9d342009-09-22 16:43:43 -07002301static const struct seq_operations devstrs_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 .start = dev_seq_start,
2303 .next = dev_seq_next,
2304 .stop = dev_seq_stop,
2305 .show = sg_proc_seq_show_devstrs,
2306};
2307
2308static int sg_proc_seq_show_debug(struct seq_file *s, void *v);
2309static int sg_proc_open_debug(struct inode *inode, struct file *file);
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002310static const struct file_operations debug_fops = {
2311 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 .open = sg_proc_open_debug,
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002313 .read = seq_read,
2314 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 .release = seq_release,
2316};
James Morris88e9d342009-09-22 16:43:43 -07002317static const struct seq_operations debug_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 .start = dev_seq_start,
2319 .next = dev_seq_next,
2320 .stop = dev_seq_stop,
2321 .show = sg_proc_seq_show_debug,
2322};
2323
2324
2325struct sg_proc_leaf {
2326 const char * name;
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002327 const struct file_operations * fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328};
2329
Jörn Engel18b8ba62012-04-12 17:35:25 -04002330static const struct sg_proc_leaf sg_proc_leaf_arr[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 {"allow_dio", &adio_fops},
2332 {"debug", &debug_fops},
2333 {"def_reserved_size", &dressz_fops},
2334 {"device_hdr", &devhdr_fops},
2335 {"devices", &dev_fops},
2336 {"device_strs", &devstrs_fops},
2337 {"version", &version_fops}
2338};
2339
2340static int
2341sg_proc_init(void)
2342{
Tobias Klauser6391a112006-06-08 22:23:48 -07002343 int num_leaves = ARRAY_SIZE(sg_proc_leaf_arr);
Al Virod161a132011-07-24 03:36:29 -04002344 int k;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345
Al Viro66600222005-09-28 22:32:57 +01002346 sg_proc_sgp = proc_mkdir(sg_proc_sg_dirname, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 if (!sg_proc_sgp)
2348 return 1;
2349 for (k = 0; k < num_leaves; ++k) {
Jörn Engel18b8ba62012-04-12 17:35:25 -04002350 const struct sg_proc_leaf *leaf = &sg_proc_leaf_arr[k];
Al Virod161a132011-07-24 03:36:29 -04002351 umode_t mask = leaf->fops->write ? S_IRUGO | S_IWUSR : S_IRUGO;
Denis V. Luneva9739092008-04-29 01:02:17 -07002352 proc_create(leaf->name, mask, sg_proc_sgp, leaf->fops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 }
2354 return 0;
2355}
2356
2357static void
2358sg_proc_cleanup(void)
2359{
2360 int k;
Tobias Klauser6391a112006-06-08 22:23:48 -07002361 int num_leaves = ARRAY_SIZE(sg_proc_leaf_arr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362
2363 if (!sg_proc_sgp)
2364 return;
2365 for (k = 0; k < num_leaves; ++k)
2366 remove_proc_entry(sg_proc_leaf_arr[k].name, sg_proc_sgp);
2367 remove_proc_entry(sg_proc_sg_dirname, NULL);
2368}
2369
2370
2371static int sg_proc_seq_show_int(struct seq_file *s, void *v)
2372{
2373 seq_printf(s, "%d\n", *((int *)s->private));
2374 return 0;
2375}
2376
2377static int sg_proc_single_open_adio(struct inode *inode, struct file *file)
2378{
2379 return single_open(file, sg_proc_seq_show_int, &sg_allow_dio);
2380}
2381
2382static ssize_t
2383sg_proc_write_adio(struct file *filp, const char __user *buffer,
2384 size_t count, loff_t *off)
2385{
Stephen Boyd7e95fff2012-01-10 15:42:34 -08002386 int err;
2387 unsigned long num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388
2389 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
2390 return -EACCES;
Stephen Boyd7e95fff2012-01-10 15:42:34 -08002391 err = kstrtoul_from_user(buffer, count, 0, &num);
2392 if (err)
2393 return err;
2394 sg_allow_dio = num ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 return count;
2396}
2397
2398static int sg_proc_single_open_dressz(struct inode *inode, struct file *file)
2399{
2400 return single_open(file, sg_proc_seq_show_int, &sg_big_buff);
2401}
2402
2403static ssize_t
2404sg_proc_write_dressz(struct file *filp, const char __user *buffer,
2405 size_t count, loff_t *off)
2406{
Stephen Boyd7e95fff2012-01-10 15:42:34 -08002407 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 unsigned long k = ULONG_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409
2410 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
2411 return -EACCES;
Stephen Boyd7e95fff2012-01-10 15:42:34 -08002412
2413 err = kstrtoul_from_user(buffer, count, 0, &k);
2414 if (err)
2415 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 if (k <= 1048576) { /* limit "big buff" to 1 MB */
2417 sg_big_buff = k;
2418 return count;
2419 }
2420 return -ERANGE;
2421}
2422
2423static int sg_proc_seq_show_version(struct seq_file *s, void *v)
2424{
2425 seq_printf(s, "%d\t%s [%s]\n", sg_version_num, SG_VERSION_STR,
2426 sg_version_date);
2427 return 0;
2428}
2429
2430static int sg_proc_single_open_version(struct inode *inode, struct file *file)
2431{
2432 return single_open(file, sg_proc_seq_show_version, NULL);
2433}
2434
2435static int sg_proc_seq_show_devhdr(struct seq_file *s, void *v)
2436{
2437 seq_printf(s, "host\tchan\tid\tlun\ttype\topens\tqdepth\tbusy\t"
2438 "online\n");
2439 return 0;
2440}
2441
2442static int sg_proc_single_open_devhdr(struct inode *inode, struct file *file)
2443{
2444 return single_open(file, sg_proc_seq_show_devhdr, NULL);
2445}
2446
2447struct sg_proc_deviter {
2448 loff_t index;
2449 size_t max;
2450};
2451
2452static void * dev_seq_start(struct seq_file *s, loff_t *pos)
2453{
2454 struct sg_proc_deviter * it = kmalloc(sizeof(*it), GFP_KERNEL);
2455
Jan Blunck729d70f2005-08-27 11:07:52 -07002456 s->private = it;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 if (! it)
2458 return NULL;
Jan Blunck729d70f2005-08-27 11:07:52 -07002459
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 it->index = *pos;
2461 it->max = sg_last_dev();
2462 if (it->index >= it->max)
Jan Blunck729d70f2005-08-27 11:07:52 -07002463 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 return it;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465}
2466
2467static void * dev_seq_next(struct seq_file *s, void *v, loff_t *pos)
2468{
Jan Blunck729d70f2005-08-27 11:07:52 -07002469 struct sg_proc_deviter * it = s->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470
2471 *pos = ++it->index;
2472 return (it->index < it->max) ? it : NULL;
2473}
2474
2475static void dev_seq_stop(struct seq_file *s, void *v)
2476{
Jan Blunck729d70f2005-08-27 11:07:52 -07002477 kfree(s->private);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478}
2479
2480static int sg_proc_open_dev(struct inode *inode, struct file *file)
2481{
2482 return seq_open(file, &dev_seq_ops);
2483}
2484
2485static int sg_proc_seq_show_dev(struct seq_file *s, void *v)
2486{
2487 struct sg_proc_deviter * it = (struct sg_proc_deviter *) v;
2488 Sg_device *sdp;
2489 struct scsi_device *scsidp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002490 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491
Tony Battersbyc6517b792009-01-21 14:45:50 -05002492 read_lock_irqsave(&sg_index_lock, iflags);
2493 sdp = it ? sg_lookup_dev(it->index) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 if (sdp && (scsidp = sdp->device) && (!sdp->detached))
2495 seq_printf(s, "%d\t%d\t%d\t%d\t%d\t%d\t%d\t%d\t%d\n",
2496 scsidp->host->host_no, scsidp->channel,
2497 scsidp->id, scsidp->lun, (int) scsidp->type,
2498 1,
2499 (int) scsidp->queue_depth,
2500 (int) scsidp->device_busy,
2501 (int) scsi_device_online(scsidp));
2502 else
2503 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 -05002504 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 return 0;
2506}
2507
2508static int sg_proc_open_devstrs(struct inode *inode, struct file *file)
2509{
2510 return seq_open(file, &devstrs_seq_ops);
2511}
2512
2513static int sg_proc_seq_show_devstrs(struct seq_file *s, void *v)
2514{
2515 struct sg_proc_deviter * it = (struct sg_proc_deviter *) v;
2516 Sg_device *sdp;
2517 struct scsi_device *scsidp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002518 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519
Tony Battersbyc6517b792009-01-21 14:45:50 -05002520 read_lock_irqsave(&sg_index_lock, iflags);
2521 sdp = it ? sg_lookup_dev(it->index) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 if (sdp && (scsidp = sdp->device) && (!sdp->detached))
2523 seq_printf(s, "%8.8s\t%16.16s\t%4.4s\n",
2524 scsidp->vendor, scsidp->model, scsidp->rev);
2525 else
2526 seq_printf(s, "<no active device>\n");
Tony Battersbyc6517b792009-01-21 14:45:50 -05002527 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 return 0;
2529}
2530
James Bottomleyc0d3b9c2013-10-25 10:21:57 +01002531/* must be called while holding sg_index_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532static void sg_proc_debug_helper(struct seq_file *s, Sg_device * sdp)
2533{
2534 int k, m, new_interface, blen, usg;
2535 Sg_request *srp;
2536 Sg_fd *fp;
2537 const sg_io_hdr_t *hp;
2538 const char * cp;
cb59e842005-04-02 13:51:23 -06002539 unsigned int ms;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002541 k = 0;
2542 list_for_each_entry(fp, &sdp->sfds, sfd_siblings) {
2543 k++;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002544 read_lock(&fp->rq_list_lock); /* irqs already disabled */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 seq_printf(s, " FD(%d): timeout=%dms bufflen=%d "
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002546 "(res)sgat=%d low_dma=%d\n", k,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 jiffies_to_msecs(fp->timeout),
2548 fp->reserve.bufflen,
2549 (int) fp->reserve.k_use_sg,
2550 (int) fp->low_dma);
Jörn Engelebaf4662012-04-12 17:33:39 -04002551 seq_printf(s, " cmd_q=%d f_packid=%d k_orphan=%d closed=0\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 (int) fp->cmd_q, (int) fp->force_packid,
Jörn Engelebaf4662012-04-12 17:33:39 -04002553 (int) fp->keep_orphan);
Tony Battersbyc6517b792009-01-21 14:45:50 -05002554 for (m = 0, srp = fp->headrp;
2555 srp != NULL;
2556 ++m, srp = srp->nextrp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 hp = &srp->header;
2558 new_interface = (hp->interface_id == '\0') ? 0 : 1;
2559 if (srp->res_used) {
2560 if (new_interface &&
2561 (SG_FLAG_MMAP_IO & hp->flags))
2562 cp = " mmap>> ";
2563 else
2564 cp = " rb>> ";
2565 } else {
2566 if (SG_INFO_DIRECT_IO_MASK & hp->info)
2567 cp = " dio>> ";
2568 else
2569 cp = " ";
2570 }
2571 seq_printf(s, cp);
Mike Christied6b10342005-11-08 04:06:41 -06002572 blen = srp->data.bufflen;
2573 usg = srp->data.k_use_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 seq_printf(s, srp->done ?
2575 ((1 == srp->done) ? "rcv:" : "fin:")
Mike Christied6b10342005-11-08 04:06:41 -06002576 : "act:");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 seq_printf(s, " id=%d blen=%d",
2578 srp->header.pack_id, blen);
2579 if (srp->done)
2580 seq_printf(s, " dur=%d", hp->duration);
cb59e842005-04-02 13:51:23 -06002581 else {
2582 ms = jiffies_to_msecs(jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 seq_printf(s, " t_o/elap=%d/%d",
cb59e842005-04-02 13:51:23 -06002584 (new_interface ? hp->timeout :
2585 jiffies_to_msecs(fp->timeout)),
2586 (ms > hp->duration ? ms - hp->duration : 0));
2587 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 seq_printf(s, "ms sgat=%d op=0x%02x\n", usg,
2589 (int) srp->data.cmd_opcode);
2590 }
2591 if (0 == m)
2592 seq_printf(s, " No requests active\n");
Tony Battersbyc6517b792009-01-21 14:45:50 -05002593 read_unlock(&fp->rq_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 }
2595}
2596
2597static int sg_proc_open_debug(struct inode *inode, struct file *file)
2598{
2599 return seq_open(file, &debug_seq_ops);
2600}
2601
2602static int sg_proc_seq_show_debug(struct seq_file *s, void *v)
2603{
2604 struct sg_proc_deviter * it = (struct sg_proc_deviter *) v;
2605 Sg_device *sdp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002606 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607
2608 if (it && (0 == it->index)) {
James Bottomley7c07d612007-08-05 13:36:11 -05002609 seq_printf(s, "max_active_device=%d(origin 1)\n",
2610 (int)it->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 seq_printf(s, " def_reserved_size=%d\n", sg_big_buff);
2612 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05002613
2614 read_lock_irqsave(&sg_index_lock, iflags);
2615 sdp = it ? sg_lookup_dev(it->index) : NULL;
James Bottomleyc0d3b9c2013-10-25 10:21:57 +01002616 if (sdp && !list_empty(&sdp->sfds)) {
2617 struct scsi_device *scsidp = sdp->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618
James Bottomleyc0d3b9c2013-10-25 10:21:57 +01002619 seq_printf(s, " >>> device=%s ", sdp->disk->disk_name);
2620 if (sdp->detached)
2621 seq_printf(s, "detached pending close ");
2622 else
2623 seq_printf
2624 (s, "scsi%d chan=%d id=%d lun=%d em=%d",
2625 scsidp->host->host_no,
2626 scsidp->channel, scsidp->id,
2627 scsidp->lun,
2628 scsidp->host->hostt->emulated);
2629 seq_printf(s, " sg_tablesize=%d excl=%d\n",
James Bottomley98481ff2013-10-25 10:26:38 +01002630 sdp->sg_tablesize, get_exclude(sdp));
James Bottomleyc0d3b9c2013-10-25 10:21:57 +01002631 sg_proc_debug_helper(s, sdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05002633 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 return 0;
2635}
2636
2637#endif /* CONFIG_SCSI_PROC_FS */
2638
2639module_init(init_sg);
2640module_exit(exit_sg);