blob: 1a0be4f1d1fa5a6dfd9e3d0130870b55da3ed1f3 [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>
38#include <linux/errno.h>
39#include <linux/mtio.h>
40#include <linux/ioctl.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090041#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/fcntl.h>
43#include <linux/init.h>
44#include <linux/poll.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/moduleparam.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/cdev.h>
James Bottomley7c07d612007-08-05 13:36:11 -050047#include <linux/idr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/seq_file.h>
49#include <linux/blkdev.h>
50#include <linux/delay.h>
Christof Schmitt6da127a2008-01-11 10:09:43 +010051#include <linux/blktrace_api.h>
Arnd Bergmannc45d15d2010-06-02 14:28:52 +020052#include <linux/mutex.h>
Christian Dietrich2fe038e2011-06-04 17:36:10 +020053#include <linux/ratelimit.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55#include "scsi.h"
db9dff32005-04-03 14:53:59 -050056#include <scsi/scsi_dbg.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <scsi/scsi_host.h>
58#include <scsi/scsi_driver.h>
59#include <scsi/scsi_ioctl.h>
60#include <scsi/sg.h>
61
62#include "scsi_logging.h"
63
64#ifdef CONFIG_SCSI_PROC_FS
65#include <linux/proc_fs.h>
Douglas Gilbert7ca63cb2006-10-27 17:47:49 -040066static char *sg_version_date = "20061027";
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68static int sg_proc_init(void);
69static void sg_proc_cleanup(void);
70#endif
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#define SG_ALLOW_DIO_DEF 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74#define SG_MAX_DEVS 32768
75
76/*
77 * Suppose you want to calculate the formula muldiv(x,m,d)=int(x * m / d)
78 * Then when using 32 bit integers x * m may overflow during the calculation.
79 * Replacing muldiv(x) by muldiv(x)=((x % d) * m) / d + int(x / d) * m
80 * calculates the same, but prevents the overflow when both m and d
81 * are "small" numbers (like HZ and USER_HZ).
82 * Of course an overflow is inavoidable if the result of muldiv doesn't fit
83 * in 32 bits.
84 */
85#define MULDIV(X,MUL,DIV) ((((X % DIV) * MUL) / DIV) + ((X / DIV) * MUL))
86
87#define SG_DEFAULT_TIMEOUT MULDIV(SG_DEFAULT_TIMEOUT_USER, HZ, USER_HZ)
88
89int sg_big_buff = SG_DEF_RESERVED_SIZE;
90/* N.B. This variable is readable and writeable via
91 /proc/scsi/sg/def_reserved_size . Each time sg_open() is called a buffer
92 of this size (or less if there is not enough memory) will be reserved
93 for use by this file descriptor. [Deprecated usage: this variable is also
94 readable via /proc/sys/kernel/sg-big-buff if the sg driver is built into
95 the kernel (i.e. it is not a module).] */
96static int def_reserved_size = -1; /* picks up init parameter */
97static int sg_allow_dio = SG_ALLOW_DIO_DEF;
98
Douglas Gilbert6460e752006-09-20 18:20:49 -040099static int scatter_elem_sz = SG_SCATTER_SZ;
100static int scatter_elem_sz_prev = SG_SCATTER_SZ;
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102#define SG_SECTOR_SZ 512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Tony Jonesee959b02008-02-22 00:13:36 +0100104static int sg_add(struct device *, struct class_interface *);
105static void sg_remove(struct device *, struct class_interface *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Arnd Bergmannc45d15d2010-06-02 14:28:52 +0200107static DEFINE_MUTEX(sg_mutex);
108
James Bottomley7c07d612007-08-05 13:36:11 -0500109static DEFINE_IDR(sg_index_idr);
110static DEFINE_RWLOCK(sg_index_lock); /* Also used to lock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 file descriptor list for device */
112
113static struct class_interface sg_interface = {
Tony Jonesee959b02008-02-22 00:13:36 +0100114 .add_dev = sg_add,
115 .remove_dev = sg_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116};
117
118typedef struct sg_scatter_hold { /* holding area for scsi scatter gather info */
119 unsigned short k_use_sg; /* Count of kernel scatter-gather pieces */
FUJITA Tomonoriea312552007-08-06 00:31:24 +0900120 unsigned sglist_len; /* size of malloc'd scatter-gather list ++ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 unsigned bufflen; /* Size of (aggregate) data buffer */
FUJITA Tomonori10db10d2008-08-29 12:32:18 +0200122 struct page **pages;
123 int page_order;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 char dio_in_use; /* 0->indirect IO (or mmap), 1->dio */
125 unsigned char cmd_opcode; /* first byte of command */
126} Sg_scatter_hold;
127
128struct sg_device; /* forward declarations */
129struct sg_fd;
130
131typedef struct sg_request { /* SG_MAX_QUEUE requests outstanding per file */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 struct sg_request *nextrp; /* NULL -> tail request (slist) */
133 struct sg_fd *parentfp; /* NULL -> not in use */
134 Sg_scatter_hold data; /* hold buffer, perhaps scatter list */
135 sg_io_hdr_t header; /* scsi command+info, see <scsi/sg.h> */
Mike Christied6b10342005-11-08 04:06:41 -0600136 unsigned char sense_b[SCSI_SENSE_BUFFERSIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 char res_used; /* 1 -> using reserve buffer, 0 -> not ... */
138 char orphan; /* 1 -> drop on sight, 0 -> normal */
139 char sg_io_owned; /* 1 -> packet belongs to SG_IO */
140 volatile char done; /* 0->before bh, 1->before read, 2->read */
FUJITA Tomonori10865df2008-08-28 16:17:07 +0900141 struct request *rq;
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +0900142 struct bio *bio;
FUJITA Tomonoric96952e2009-02-04 11:36:27 +0900143 struct execute_work ew;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144} Sg_request;
145
146typedef struct sg_fd { /* holds the state of a file descriptor */
FUJITA Tomonori3442f802009-02-16 13:26:53 +0900147 struct list_head sfd_siblings;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 struct sg_device *parentdp; /* owning device */
149 wait_queue_head_t read_wait; /* queue read until command done */
150 rwlock_t rq_list_lock; /* protect access to list in req_arr */
151 int timeout; /* defaults to SG_DEFAULT_TIMEOUT */
152 int timeout_user; /* defaults to SG_DEFAULT_TIMEOUT_USER */
153 Sg_scatter_hold reserve; /* buffer held for this file descriptor */
154 unsigned save_scat_len; /* original length of trunc. scat. element */
155 Sg_request *headrp; /* head of request slist, NULL->empty */
156 struct fasync_struct *async_qp; /* used by asynchronous notification */
157 Sg_request req_arr[SG_MAX_QUEUE]; /* used as singly-linked list */
158 char low_dma; /* as in parent but possibly overridden to 1 */
159 char force_packid; /* 1 -> pack_id input to read(), 0 -> ignored */
160 volatile char closed; /* 1 -> fd closed but request(s) outstanding */
161 char cmd_q; /* 1 -> allow command queuing, 0 -> don't */
162 char next_cmd_len; /* 0 -> automatic (def), >0 -> use on next write() */
163 char keep_orphan; /* 0 -> drop orphan (def), 1 -> keep for read() */
164 char mmap_called; /* 0 -> mmap() never called on this fd */
Tony Battersbyc6517b792009-01-21 14:45:50 -0500165 struct kref f_ref;
166 struct execute_work ew;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167} Sg_fd;
168
169typedef struct sg_device { /* holds the state of each scsi generic device */
170 struct scsi_device *device;
171 wait_queue_head_t o_excl_wait; /* queue open() when O_EXCL in use */
172 int sg_tablesize; /* adapter's max scatter-gather table size */
James Bottomley7c07d612007-08-05 13:36:11 -0500173 u32 index; /* device index number */
FUJITA Tomonori3442f802009-02-16 13:26:53 +0900174 struct list_head sfds;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 volatile char detached; /* 0->attached, 1->detached pending removal */
176 volatile char exclude; /* opened for exclusive access */
177 char sgdebug; /* 0->off, 1->sense, 9->dump dev, 10-> all devs */
178 struct gendisk *disk;
179 struct cdev * cdev; /* char_dev [sysfs: /sys/cdev/major/sg<n>] */
Tony Battersbyc6517b792009-01-21 14:45:50 -0500180 struct kref d_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181} Sg_device;
182
Mike Christied6b10342005-11-08 04:06:41 -0600183/* tasklet or soft irq callback */
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +0900184static void sg_rq_end_io(struct request *rq, int uptodate);
FUJITA Tomonori10865df2008-08-28 16:17:07 +0900185static int sg_start_req(Sg_request *srp, unsigned char *cmd);
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +0900186static int sg_finish_rem_req(Sg_request * srp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187static int sg_build_indirect(Sg_scatter_hold * schp, Sg_fd * sfp, int buff_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188static ssize_t sg_new_read(Sg_fd * sfp, char __user *buf, size_t count,
189 Sg_request * srp);
Adel Gadllah0b07de82008-06-26 13:48:27 +0200190static ssize_t sg_new_write(Sg_fd *sfp, struct file *file,
191 const char __user *buf, size_t count, int blocking,
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500192 int read_only, int sg_io_owned, Sg_request **o_srp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193static int sg_common_write(Sg_fd * sfp, Sg_request * srp,
194 unsigned char *cmnd, int timeout, int blocking);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195static int sg_read_oxfer(Sg_request * srp, char __user *outp, int num_read_xfer);
196static void sg_remove_scat(Sg_scatter_hold * schp);
197static void sg_build_reserve(Sg_fd * sfp, int req_size);
198static void sg_link_reserve(Sg_fd * sfp, Sg_request * srp, int size);
199static void sg_unlink_reserve(Sg_fd * sfp, Sg_request * srp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200static Sg_fd *sg_add_sfp(Sg_device * sdp, int dev);
Tony Battersbyc6517b792009-01-21 14:45:50 -0500201static void sg_remove_sfp(struct kref *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202static Sg_request *sg_get_rq_mark(Sg_fd * sfp, int pack_id);
203static Sg_request *sg_add_request(Sg_fd * sfp);
204static int sg_remove_request(Sg_fd * sfp, Sg_request * srp);
205static int sg_res_in_use(Sg_fd * sfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206static Sg_device *sg_get_dev(int dev);
Tony Battersbyc6517b792009-01-21 14:45:50 -0500207static void sg_put_dev(Sg_device *sdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209#define SZ_SG_HEADER sizeof(struct sg_header)
210#define SZ_SG_IO_HDR sizeof(sg_io_hdr_t)
211#define SZ_SG_IOVEC sizeof(sg_iovec_t)
212#define SZ_SG_REQ_INFO sizeof(sg_req_info_t)
213
FUJITA Tomonori14e507b2008-07-26 18:03:24 +0900214static int sg_allow_access(struct file *filp, unsigned char *cmd)
215{
Joe Perches35df8392010-09-04 18:52:46 -0700216 struct sg_fd *sfp = filp->private_data;
FUJITA Tomonori14e507b2008-07-26 18:03:24 +0900217
218 if (sfp->parentdp->device->type == TYPE_SCANNER)
219 return 0;
220
Jens Axboe018e0442009-06-26 16:27:10 +0200221 return blk_verify_command(cmd, filp->f_mode & FMODE_WRITE);
FUJITA Tomonori14e507b2008-07-26 18:03:24 +0900222}
223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224static int
225sg_open(struct inode *inode, struct file *filp)
226{
227 int dev = iminor(inode);
228 int flags = filp->f_flags;
Mike Christied6b10342005-11-08 04:06:41 -0600229 struct request_queue *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 Sg_device *sdp;
231 Sg_fd *sfp;
232 int res;
233 int retval;
234
Arnd Bergmannc45d15d2010-06-02 14:28:52 +0200235 mutex_lock(&sg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 nonseekable_open(inode, filp);
237 SCSI_LOG_TIMEOUT(3, printk("sg_open: dev=%d, flags=0x%x\n", dev, flags));
238 sdp = sg_get_dev(dev);
Tony Battersbyc6517b792009-01-21 14:45:50 -0500239 if (IS_ERR(sdp)) {
240 retval = PTR_ERR(sdp);
241 sdp = NULL;
242 goto sg_put;
Jonathan Corbeteb09d3d2008-05-15 12:22:06 -0600243 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
245 /* This driver's module count bumped by fops_get in <linux/fs.h> */
246 /* Prevent the device driver from vanishing while we sleep */
247 retval = scsi_device_get(sdp->device);
Tony Battersbyc6517b792009-01-21 14:45:50 -0500248 if (retval)
249 goto sg_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Alan Sternbc4f2402010-06-17 10:41:42 -0400251 retval = scsi_autopm_get_device(sdp->device);
252 if (retval)
253 goto sdp_put;
254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 if (!((flags & O_NONBLOCK) ||
256 scsi_block_when_processing_errors(sdp->device))) {
257 retval = -ENXIO;
258 /* we are in error recovery for this device */
259 goto error_out;
260 }
261
262 if (flags & O_EXCL) {
263 if (O_RDONLY == (flags & O_ACCMODE)) {
264 retval = -EPERM; /* Can't lock it with read only access */
265 goto error_out;
266 }
FUJITA Tomonori3442f802009-02-16 13:26:53 +0900267 if (!list_empty(&sdp->sfds) && (flags & O_NONBLOCK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 retval = -EBUSY;
269 goto error_out;
270 }
Jörn Engel3f0c6ab2012-04-12 17:33:25 -0400271 res = wait_event_interruptible(sdp->o_excl_wait,
272 ((!list_empty(&sdp->sfds) || sdp->exclude) ? 0 : (sdp->exclude = 1)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 if (res) {
274 retval = res; /* -ERESTARTSYS because signal hit process */
275 goto error_out;
276 }
277 } else if (sdp->exclude) { /* some other fd has an exclusive lock on dev */
278 if (flags & O_NONBLOCK) {
279 retval = -EBUSY;
280 goto error_out;
281 }
Jörn Engel3f0c6ab2012-04-12 17:33:25 -0400282 res = wait_event_interruptible(sdp->o_excl_wait, !sdp->exclude);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 if (res) {
284 retval = res; /* -ERESTARTSYS because signal hit process */
285 goto error_out;
286 }
287 }
288 if (sdp->detached) {
289 retval = -ENODEV;
290 goto error_out;
291 }
FUJITA Tomonori3442f802009-02-16 13:26:53 +0900292 if (list_empty(&sdp->sfds)) { /* no existing opens on this device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 sdp->sgdebug = 0;
Mike Christied6b10342005-11-08 04:06:41 -0600294 q = sdp->device->request_queue;
Martin K. Petersen8a783622010-02-26 00:20:39 -0500295 sdp->sg_tablesize = queue_max_segments(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 }
297 if ((sfp = sg_add_sfp(sdp, dev)))
298 filp->private_data = sfp;
299 else {
Tony Battersbyc6517b792009-01-21 14:45:50 -0500300 if (flags & O_EXCL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 sdp->exclude = 0; /* undo if error */
Tony Battersbyc6517b792009-01-21 14:45:50 -0500302 wake_up_interruptible(&sdp->o_excl_wait);
303 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 retval = -ENOMEM;
305 goto error_out;
306 }
Tony Battersbyc6517b792009-01-21 14:45:50 -0500307 retval = 0;
308error_out:
Alan Sternbc4f2402010-06-17 10:41:42 -0400309 if (retval) {
310 scsi_autopm_put_device(sdp->device);
311sdp_put:
Tony Battersbyc6517b792009-01-21 14:45:50 -0500312 scsi_device_put(sdp->device);
Alan Sternbc4f2402010-06-17 10:41:42 -0400313 }
Tony Battersbyc6517b792009-01-21 14:45:50 -0500314sg_put:
315 if (sdp)
316 sg_put_dev(sdp);
Arnd Bergmannc45d15d2010-06-02 14:28:52 +0200317 mutex_unlock(&sg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 return retval;
319}
320
321/* Following function was formerly called 'sg_close' */
322static int
323sg_release(struct inode *inode, struct file *filp)
324{
325 Sg_device *sdp;
326 Sg_fd *sfp;
327
328 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
329 return -ENXIO;
330 SCSI_LOG_TIMEOUT(3, printk("sg_release: %s\n", sdp->disk->disk_name));
Tony Battersbyc6517b792009-01-21 14:45:50 -0500331
332 sfp->closed = 1;
333
334 sdp->exclude = 0;
335 wake_up_interruptible(&sdp->o_excl_wait);
336
Alan Sternbc4f2402010-06-17 10:41:42 -0400337 scsi_autopm_put_device(sdp->device);
Tony Battersbyc6517b792009-01-21 14:45:50 -0500338 kref_put(&sfp->f_ref, sg_remove_sfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 return 0;
340}
341
342static ssize_t
343sg_read(struct file *filp, char __user *buf, size_t count, loff_t * ppos)
344{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 Sg_device *sdp;
346 Sg_fd *sfp;
347 Sg_request *srp;
348 int req_pack_id = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 sg_io_hdr_t *hp;
cb59e842005-04-02 13:51:23 -0600350 struct sg_header *old_hdr = NULL;
351 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
353 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
354 return -ENXIO;
355 SCSI_LOG_TIMEOUT(3, printk("sg_read: %s, count=%d\n",
356 sdp->disk->disk_name, (int) count));
Mike Christied6b10342005-11-08 04:06:41 -0600357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 if (!access_ok(VERIFY_WRITE, buf, count))
359 return -EFAULT;
360 if (sfp->force_packid && (count >= SZ_SG_HEADER)) {
cb59e842005-04-02 13:51:23 -0600361 old_hdr = kmalloc(SZ_SG_HEADER, GFP_KERNEL);
362 if (!old_hdr)
363 return -ENOMEM;
364 if (__copy_from_user(old_hdr, buf, SZ_SG_HEADER)) {
365 retval = -EFAULT;
366 goto free_old_hdr;
367 }
368 if (old_hdr->reply_len < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 if (count >= SZ_SG_IO_HDR) {
cb59e842005-04-02 13:51:23 -0600370 sg_io_hdr_t *new_hdr;
371 new_hdr = kmalloc(SZ_SG_IO_HDR, GFP_KERNEL);
372 if (!new_hdr) {
373 retval = -ENOMEM;
374 goto free_old_hdr;
375 }
376 retval =__copy_from_user
377 (new_hdr, buf, SZ_SG_IO_HDR);
378 req_pack_id = new_hdr->pack_id;
379 kfree(new_hdr);
380 if (retval) {
381 retval = -EFAULT;
382 goto free_old_hdr;
383 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 }
385 } else
cb59e842005-04-02 13:51:23 -0600386 req_pack_id = old_hdr->pack_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 }
388 srp = sg_get_rq_mark(sfp, req_pack_id);
389 if (!srp) { /* now wait on packet to arrive */
cb59e842005-04-02 13:51:23 -0600390 if (sdp->detached) {
391 retval = -ENODEV;
392 goto free_old_hdr;
393 }
394 if (filp->f_flags & O_NONBLOCK) {
395 retval = -EAGAIN;
396 goto free_old_hdr;
397 }
Jörn Engel3f0c6ab2012-04-12 17:33:25 -0400398 retval = wait_event_interruptible(sfp->read_wait,
Jörn Engel794c10f2012-04-12 17:32:48 -0400399 (sdp->detached ||
Jörn Engel3f0c6ab2012-04-12 17:33:25 -0400400 (srp = sg_get_rq_mark(sfp, req_pack_id))));
Jörn Engel794c10f2012-04-12 17:32:48 -0400401 if (sdp->detached) {
402 retval = -ENODEV;
403 goto free_old_hdr;
404 }
405 if (retval) {
cb59e842005-04-02 13:51:23 -0600406 /* -ERESTARTSYS as signal hit process */
407 goto free_old_hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 }
409 }
cb59e842005-04-02 13:51:23 -0600410 if (srp->header.interface_id != '\0') {
411 retval = sg_new_read(sfp, buf, count, srp);
412 goto free_old_hdr;
413 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
415 hp = &srp->header;
cb59e842005-04-02 13:51:23 -0600416 if (old_hdr == NULL) {
417 old_hdr = kmalloc(SZ_SG_HEADER, GFP_KERNEL);
418 if (! old_hdr) {
419 retval = -ENOMEM;
420 goto free_old_hdr;
421 }
422 }
423 memset(old_hdr, 0, SZ_SG_HEADER);
424 old_hdr->reply_len = (int) hp->timeout;
425 old_hdr->pack_len = old_hdr->reply_len; /* old, strange behaviour */
426 old_hdr->pack_id = hp->pack_id;
427 old_hdr->twelve_byte =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 ((srp->data.cmd_opcode >= 0xc0) && (12 == hp->cmd_len)) ? 1 : 0;
cb59e842005-04-02 13:51:23 -0600429 old_hdr->target_status = hp->masked_status;
430 old_hdr->host_status = hp->host_status;
431 old_hdr->driver_status = hp->driver_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 if ((CHECK_CONDITION & hp->masked_status) ||
433 (DRIVER_SENSE & hp->driver_status))
cb59e842005-04-02 13:51:23 -0600434 memcpy(old_hdr->sense_buffer, srp->sense_b,
435 sizeof (old_hdr->sense_buffer));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 switch (hp->host_status) {
437 /* This setup of 'result' is for backward compatibility and is best
438 ignored by the user who should use target, host + driver status */
439 case DID_OK:
440 case DID_PASSTHROUGH:
441 case DID_SOFT_ERROR:
cb59e842005-04-02 13:51:23 -0600442 old_hdr->result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 break;
444 case DID_NO_CONNECT:
445 case DID_BUS_BUSY:
446 case DID_TIME_OUT:
cb59e842005-04-02 13:51:23 -0600447 old_hdr->result = EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 break;
449 case DID_BAD_TARGET:
450 case DID_ABORT:
451 case DID_PARITY:
452 case DID_RESET:
453 case DID_BAD_INTR:
cb59e842005-04-02 13:51:23 -0600454 old_hdr->result = EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 break;
456 case DID_ERROR:
cb59e842005-04-02 13:51:23 -0600457 old_hdr->result = (srp->sense_b[0] == 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 hp->masked_status == GOOD) ? 0 : EIO;
459 break;
460 default:
cb59e842005-04-02 13:51:23 -0600461 old_hdr->result = EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 break;
463 }
464
465 /* Now copy the result back to the user buffer. */
466 if (count >= SZ_SG_HEADER) {
cb59e842005-04-02 13:51:23 -0600467 if (__copy_to_user(buf, old_hdr, SZ_SG_HEADER)) {
468 retval = -EFAULT;
469 goto free_old_hdr;
470 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 buf += SZ_SG_HEADER;
cb59e842005-04-02 13:51:23 -0600472 if (count > old_hdr->reply_len)
473 count = old_hdr->reply_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 if (count > SZ_SG_HEADER) {
cb59e842005-04-02 13:51:23 -0600475 if (sg_read_oxfer(srp, buf, count - SZ_SG_HEADER)) {
476 retval = -EFAULT;
477 goto free_old_hdr;
478 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 }
480 } else
cb59e842005-04-02 13:51:23 -0600481 count = (old_hdr->result == 0) ? 0 : -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 sg_finish_rem_req(srp);
cb59e842005-04-02 13:51:23 -0600483 retval = count;
484free_old_hdr:
Jesper Juhlc9475cb2005-11-07 01:01:26 -0800485 kfree(old_hdr);
cb59e842005-04-02 13:51:23 -0600486 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487}
488
489static ssize_t
490sg_new_read(Sg_fd * sfp, char __user *buf, size_t count, Sg_request * srp)
491{
492 sg_io_hdr_t *hp = &srp->header;
493 int err = 0;
494 int len;
495
496 if (count < SZ_SG_IO_HDR) {
497 err = -EINVAL;
498 goto err_out;
499 }
500 hp->sb_len_wr = 0;
501 if ((hp->mx_sb_len > 0) && hp->sbp) {
502 if ((CHECK_CONDITION & hp->masked_status) ||
503 (DRIVER_SENSE & hp->driver_status)) {
Mike Christied6b10342005-11-08 04:06:41 -0600504 int sb_len = SCSI_SENSE_BUFFERSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 sb_len = (hp->mx_sb_len > sb_len) ? sb_len : hp->mx_sb_len;
506 len = 8 + (int) srp->sense_b[7]; /* Additional sense length field */
507 len = (len > sb_len) ? sb_len : len;
508 if (copy_to_user(hp->sbp, srp->sense_b, len)) {
509 err = -EFAULT;
510 goto err_out;
511 }
512 hp->sb_len_wr = len;
513 }
514 }
515 if (hp->masked_status || hp->host_status || hp->driver_status)
516 hp->info |= SG_INFO_CHECK;
517 if (copy_to_user(buf, hp, SZ_SG_IO_HDR)) {
518 err = -EFAULT;
519 goto err_out;
520 }
FUJITA Tomonori0b6cb262008-09-02 22:50:07 +0900521err_out:
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +0900522 err = sg_finish_rem_req(srp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 return (0 == err) ? count : err;
524}
525
526static ssize_t
527sg_write(struct file *filp, const char __user *buf, size_t count, loff_t * ppos)
528{
529 int mxsize, cmd_size, k;
530 int input_size, blocking;
531 unsigned char opcode;
532 Sg_device *sdp;
533 Sg_fd *sfp;
534 Sg_request *srp;
535 struct sg_header old_hdr;
536 sg_io_hdr_t *hp;
Mike Christied6b10342005-11-08 04:06:41 -0600537 unsigned char cmnd[MAX_COMMAND_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
539 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
540 return -ENXIO;
541 SCSI_LOG_TIMEOUT(3, printk("sg_write: %s, count=%d\n",
542 sdp->disk->disk_name, (int) count));
543 if (sdp->detached)
544 return -ENODEV;
545 if (!((filp->f_flags & O_NONBLOCK) ||
546 scsi_block_when_processing_errors(sdp->device)))
547 return -ENXIO;
548
549 if (!access_ok(VERIFY_READ, buf, count))
550 return -EFAULT; /* protects following copy_from_user()s + get_user()s */
551 if (count < SZ_SG_HEADER)
552 return -EIO;
553 if (__copy_from_user(&old_hdr, buf, SZ_SG_HEADER))
554 return -EFAULT;
555 blocking = !(filp->f_flags & O_NONBLOCK);
556 if (old_hdr.reply_len < 0)
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500557 return sg_new_write(sfp, filp, buf, count,
558 blocking, 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 if (count < (SZ_SG_HEADER + 6))
560 return -EIO; /* The minimum scsi command length is 6 bytes. */
561
562 if (!(srp = sg_add_request(sfp))) {
563 SCSI_LOG_TIMEOUT(1, printk("sg_write: queue full\n"));
564 return -EDOM;
565 }
566 buf += SZ_SG_HEADER;
567 __get_user(opcode, buf);
568 if (sfp->next_cmd_len > 0) {
569 if (sfp->next_cmd_len > MAX_COMMAND_SIZE) {
570 SCSI_LOG_TIMEOUT(1, printk("sg_write: command length too long\n"));
571 sfp->next_cmd_len = 0;
572 sg_remove_request(sfp, srp);
573 return -EIO;
574 }
575 cmd_size = sfp->next_cmd_len;
576 sfp->next_cmd_len = 0; /* reset so only this write() effected */
577 } else {
578 cmd_size = COMMAND_SIZE(opcode); /* based on SCSI command group */
579 if ((opcode >= 0xc0) && old_hdr.twelve_byte)
580 cmd_size = 12;
581 }
582 SCSI_LOG_TIMEOUT(4, printk(
583 "sg_write: scsi opcode=0x%02x, cmd_size=%d\n", (int) opcode, cmd_size));
584/* Determine buffer size. */
585 input_size = count - cmd_size;
586 mxsize = (input_size > old_hdr.reply_len) ? input_size : old_hdr.reply_len;
587 mxsize -= SZ_SG_HEADER;
588 input_size -= SZ_SG_HEADER;
589 if (input_size < 0) {
590 sg_remove_request(sfp, srp);
591 return -EIO; /* User did not pass enough bytes for this command. */
592 }
593 hp = &srp->header;
594 hp->interface_id = '\0'; /* indicator of old interface tunnelled */
595 hp->cmd_len = (unsigned char) cmd_size;
596 hp->iovec_count = 0;
597 hp->mx_sb_len = 0;
598 if (input_size > 0)
599 hp->dxfer_direction = (old_hdr.reply_len > SZ_SG_HEADER) ?
600 SG_DXFER_TO_FROM_DEV : SG_DXFER_TO_DEV;
601 else
602 hp->dxfer_direction = (mxsize > 0) ? SG_DXFER_FROM_DEV : SG_DXFER_NONE;
603 hp->dxfer_len = mxsize;
FUJITA Tomonorifad7f012008-09-02 16:20:20 +0900604 if (hp->dxfer_direction == SG_DXFER_TO_DEV)
605 hp->dxferp = (char __user *)buf + cmd_size;
606 else
607 hp->dxferp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 hp->sbp = NULL;
609 hp->timeout = old_hdr.reply_len; /* structure abuse ... */
610 hp->flags = input_size; /* structure abuse ... */
611 hp->pack_id = old_hdr.pack_id;
612 hp->usr_ptr = NULL;
613 if (__copy_from_user(cmnd, buf, cmd_size))
614 return -EFAULT;
615 /*
616 * SG_DXFER_TO_FROM_DEV is functionally equivalent to SG_DXFER_FROM_DEV,
617 * but is is possible that the app intended SG_DXFER_TO_DEV, because there
618 * is a non-zero input_size, so emit a warning.
619 */
Andi Kleeneaa3e222008-01-13 17:41:43 +0100620 if (hp->dxfer_direction == SG_DXFER_TO_FROM_DEV) {
621 static char cmd[TASK_COMM_LEN];
Christian Dietrich2fe038e2011-06-04 17:36:10 +0200622 if (strcmp(current->comm, cmd)) {
623 printk_ratelimited(KERN_WARNING
624 "sg_write: data in/out %d/%d bytes "
625 "for SCSI command 0x%x-- guessing "
626 "data in;\n program %s not setting "
627 "count and/or reply_len properly\n",
628 old_hdr.reply_len - (int)SZ_SG_HEADER,
629 input_size, (unsigned int) cmnd[0],
630 current->comm);
Andi Kleeneaa3e222008-01-13 17:41:43 +0100631 strcpy(cmd, current->comm);
632 }
633 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 k = sg_common_write(sfp, srp, cmnd, sfp->timeout, blocking);
635 return (k < 0) ? k : count;
636}
637
638static ssize_t
Adel Gadllah0b07de82008-06-26 13:48:27 +0200639sg_new_write(Sg_fd *sfp, struct file *file, const char __user *buf,
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500640 size_t count, int blocking, int read_only, int sg_io_owned,
Adel Gadllah0b07de82008-06-26 13:48:27 +0200641 Sg_request **o_srp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
643 int k;
644 Sg_request *srp;
645 sg_io_hdr_t *hp;
Mike Christied6b10342005-11-08 04:06:41 -0600646 unsigned char cmnd[MAX_COMMAND_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 int timeout;
648 unsigned long ul_timeout;
649
650 if (count < SZ_SG_IO_HDR)
651 return -EINVAL;
652 if (!access_ok(VERIFY_READ, buf, count))
653 return -EFAULT; /* protects following copy_from_user()s + get_user()s */
654
655 sfp->cmd_q = 1; /* when sg_io_hdr seen, set command queuing on */
656 if (!(srp = sg_add_request(sfp))) {
657 SCSI_LOG_TIMEOUT(1, printk("sg_new_write: queue full\n"));
658 return -EDOM;
659 }
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500660 srp->sg_io_owned = sg_io_owned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 hp = &srp->header;
662 if (__copy_from_user(hp, buf, SZ_SG_IO_HDR)) {
663 sg_remove_request(sfp, srp);
664 return -EFAULT;
665 }
666 if (hp->interface_id != 'S') {
667 sg_remove_request(sfp, srp);
668 return -ENOSYS;
669 }
670 if (hp->flags & SG_FLAG_MMAP_IO) {
671 if (hp->dxfer_len > sfp->reserve.bufflen) {
672 sg_remove_request(sfp, srp);
673 return -ENOMEM; /* MMAP_IO size must fit in reserve buffer */
674 }
675 if (hp->flags & SG_FLAG_DIRECT_IO) {
676 sg_remove_request(sfp, srp);
677 return -EINVAL; /* either MMAP_IO or DIRECT_IO (not both) */
678 }
679 if (sg_res_in_use(sfp)) {
680 sg_remove_request(sfp, srp);
681 return -EBUSY; /* reserve buffer already being used */
682 }
683 }
684 ul_timeout = msecs_to_jiffies(srp->header.timeout);
685 timeout = (ul_timeout < INT_MAX) ? ul_timeout : INT_MAX;
686 if ((!hp->cmdp) || (hp->cmd_len < 6) || (hp->cmd_len > sizeof (cmnd))) {
687 sg_remove_request(sfp, srp);
688 return -EMSGSIZE;
689 }
690 if (!access_ok(VERIFY_READ, hp->cmdp, hp->cmd_len)) {
691 sg_remove_request(sfp, srp);
692 return -EFAULT; /* protects following copy_from_user()s + get_user()s */
693 }
694 if (__copy_from_user(cmnd, hp->cmdp, hp->cmd_len)) {
695 sg_remove_request(sfp, srp);
696 return -EFAULT;
697 }
FUJITA Tomonori14e507b2008-07-26 18:03:24 +0900698 if (read_only && sg_allow_access(file, cmnd)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 sg_remove_request(sfp, srp);
700 return -EPERM;
701 }
702 k = sg_common_write(sfp, srp, cmnd, timeout, blocking);
703 if (k < 0)
704 return k;
705 if (o_srp)
706 *o_srp = srp;
707 return count;
708}
709
710static int
711sg_common_write(Sg_fd * sfp, Sg_request * srp,
712 unsigned char *cmnd, int timeout, int blocking)
713{
Mike Christied6b10342005-11-08 04:06:41 -0600714 int k, data_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 Sg_device *sdp = sfp->parentdp;
716 sg_io_hdr_t *hp = &srp->header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
718 srp->data.cmd_opcode = cmnd[0]; /* hold opcode of command */
719 hp->status = 0;
720 hp->masked_status = 0;
721 hp->msg_status = 0;
722 hp->info = 0;
723 hp->host_status = 0;
724 hp->driver_status = 0;
725 hp->resid = 0;
726 SCSI_LOG_TIMEOUT(4, printk("sg_common_write: scsi opcode=0x%02x, cmd_size=%d\n",
727 (int) cmnd[0], (int) hp->cmd_len));
728
FUJITA Tomonori10865df2008-08-28 16:17:07 +0900729 k = sg_start_req(srp, cmnd);
730 if (k) {
Douglas Gilbert7ca63cb2006-10-27 17:47:49 -0400731 SCSI_LOG_TIMEOUT(1, printk("sg_common_write: start_req err=%d\n", k));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 sg_finish_rem_req(srp);
733 return k; /* probably out of space --> ENOMEM */
734 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 if (sdp->detached) {
FUJITA Tomonoricaf19d32010-07-22 09:36:51 +0900736 if (srp->bio)
737 blk_end_request_all(srp->rq, -EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 sg_finish_rem_req(srp);
739 return -ENODEV;
740 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 switch (hp->dxfer_direction) {
743 case SG_DXFER_TO_FROM_DEV:
744 case SG_DXFER_FROM_DEV:
Mike Christied6b10342005-11-08 04:06:41 -0600745 data_dir = DMA_FROM_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 break;
747 case SG_DXFER_TO_DEV:
Mike Christied6b10342005-11-08 04:06:41 -0600748 data_dir = DMA_TO_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 break;
750 case SG_DXFER_UNKNOWN:
Mike Christied6b10342005-11-08 04:06:41 -0600751 data_dir = DMA_BIDIRECTIONAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 break;
753 default:
Mike Christied6b10342005-11-08 04:06:41 -0600754 data_dir = DMA_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 break;
756 }
cb59e842005-04-02 13:51:23 -0600757 hp->duration = jiffies_to_msecs(jiffies);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +0200758
759 srp->rq->timeout = timeout;
Tony Battersbyc6517b792009-01-21 14:45:50 -0500760 kref_get(&sfp->f_ref); /* sg_rq_end_io() does kref_put(). */
FUJITA Tomonori10db10d2008-08-29 12:32:18 +0200761 blk_execute_rq_nowait(sdp->device->request_queue, sdp->disk,
762 srp->rq, 1, sg_rq_end_io);
763 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764}
765
766static int
Arnd Bergmannf4927c42010-04-27 00:24:01 +0200767sg_ioctl(struct file *filp, unsigned int cmd_in, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768{
769 void __user *p = (void __user *)arg;
770 int __user *ip = p;
771 int result, val, read_only;
772 Sg_device *sdp;
773 Sg_fd *sfp;
774 Sg_request *srp;
775 unsigned long iflags;
776
777 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
778 return -ENXIO;
FUJITA Tomonoriabf54392008-08-16 14:10:05 +0900779
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 SCSI_LOG_TIMEOUT(3, printk("sg_ioctl: %s, cmd=0x%x\n",
781 sdp->disk->disk_name, (int) cmd_in));
782 read_only = (O_RDWR != (filp->f_flags & O_ACCMODE));
783
784 switch (cmd_in) {
785 case SG_IO:
Jörn Engeldddbf8d2012-04-12 17:32:17 -0400786 if (sdp->detached)
787 return -ENODEV;
788 if (!scsi_block_when_processing_errors(sdp->device))
789 return -ENXIO;
790 if (!access_ok(VERIFY_WRITE, p, SZ_SG_IO_HDR))
791 return -EFAULT;
792 result = sg_new_write(sfp, filp, p, SZ_SG_IO_HDR,
793 1, read_only, 1, &srp);
794 if (result < 0)
795 return result;
Jörn Engel3f0c6ab2012-04-12 17:33:25 -0400796 result = wait_event_interruptible(sfp->read_wait,
797 (srp->done || sdp->detached));
Jörn Engel794c10f2012-04-12 17:32:48 -0400798 if (sdp->detached)
799 return -ENODEV;
800 write_lock_irq(&sfp->rq_list_lock);
801 if (srp->done) {
802 srp->done = 2;
Jörn Engeldddbf8d2012-04-12 17:32:17 -0400803 write_unlock_irq(&sfp->rq_list_lock);
Jörn Engel794c10f2012-04-12 17:32:48 -0400804 result = sg_new_read(sfp, p, SZ_SG_IO_HDR, srp);
805 return (result < 0) ? result : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 }
Jörn Engel794c10f2012-04-12 17:32:48 -0400807 srp->orphan = 1;
808 write_unlock_irq(&sfp->rq_list_lock);
809 return result; /* -ERESTARTSYS because signal hit process */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 case SG_SET_TIMEOUT:
811 result = get_user(val, ip);
812 if (result)
813 return result;
814 if (val < 0)
815 return -EIO;
816 if (val >= MULDIV (INT_MAX, USER_HZ, HZ))
817 val = MULDIV (INT_MAX, USER_HZ, HZ);
818 sfp->timeout_user = val;
819 sfp->timeout = MULDIV (val, HZ, USER_HZ);
820
821 return 0;
822 case SG_GET_TIMEOUT: /* N.B. User receives timeout as return value */
823 /* strange ..., for backward compatibility */
824 return sfp->timeout_user;
825 case SG_SET_FORCE_LOW_DMA:
826 result = get_user(val, ip);
827 if (result)
828 return result;
829 if (val) {
830 sfp->low_dma = 1;
831 if ((0 == sfp->low_dma) && (0 == sg_res_in_use(sfp))) {
832 val = (int) sfp->reserve.bufflen;
833 sg_remove_scat(&sfp->reserve);
834 sg_build_reserve(sfp, val);
835 }
836 } else {
837 if (sdp->detached)
838 return -ENODEV;
839 sfp->low_dma = sdp->device->host->unchecked_isa_dma;
840 }
841 return 0;
842 case SG_GET_LOW_DMA:
843 return put_user((int) sfp->low_dma, ip);
844 case SG_GET_SCSI_ID:
845 if (!access_ok(VERIFY_WRITE, p, sizeof (sg_scsi_id_t)))
846 return -EFAULT;
847 else {
848 sg_scsi_id_t __user *sg_idp = p;
849
850 if (sdp->detached)
851 return -ENODEV;
852 __put_user((int) sdp->device->host->host_no,
853 &sg_idp->host_no);
854 __put_user((int) sdp->device->channel,
855 &sg_idp->channel);
856 __put_user((int) sdp->device->id, &sg_idp->scsi_id);
857 __put_user((int) sdp->device->lun, &sg_idp->lun);
858 __put_user((int) sdp->device->type, &sg_idp->scsi_type);
859 __put_user((short) sdp->device->host->cmd_per_lun,
860 &sg_idp->h_cmd_per_lun);
861 __put_user((short) sdp->device->queue_depth,
862 &sg_idp->d_queue_depth);
863 __put_user(0, &sg_idp->unused[0]);
864 __put_user(0, &sg_idp->unused[1]);
865 return 0;
866 }
867 case SG_SET_FORCE_PACK_ID:
868 result = get_user(val, ip);
869 if (result)
870 return result;
871 sfp->force_packid = val ? 1 : 0;
872 return 0;
873 case SG_GET_PACK_ID:
874 if (!access_ok(VERIFY_WRITE, ip, sizeof (int)))
875 return -EFAULT;
876 read_lock_irqsave(&sfp->rq_list_lock, iflags);
877 for (srp = sfp->headrp; srp; srp = srp->nextrp) {
878 if ((1 == srp->done) && (!srp->sg_io_owned)) {
879 read_unlock_irqrestore(&sfp->rq_list_lock,
880 iflags);
881 __put_user(srp->header.pack_id, ip);
882 return 0;
883 }
884 }
885 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
886 __put_user(-1, ip);
887 return 0;
888 case SG_GET_NUM_WAITING:
889 read_lock_irqsave(&sfp->rq_list_lock, iflags);
890 for (val = 0, srp = sfp->headrp; srp; srp = srp->nextrp) {
891 if ((1 == srp->done) && (!srp->sg_io_owned))
892 ++val;
893 }
894 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
895 return put_user(val, ip);
896 case SG_GET_SG_TABLESIZE:
897 return put_user(sdp->sg_tablesize, ip);
898 case SG_SET_RESERVED_SIZE:
899 result = get_user(val, ip);
900 if (result)
901 return result;
902 if (val < 0)
903 return -EINVAL;
Alan Stern44ec9542007-02-20 11:01:57 -0500904 val = min_t(int, val,
Martin K. Petersenae03bf62009-05-22 17:17:50 -0400905 queue_max_sectors(sdp->device->request_queue) * 512);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 if (val != sfp->reserve.bufflen) {
907 if (sg_res_in_use(sfp) || sfp->mmap_called)
908 return -EBUSY;
909 sg_remove_scat(&sfp->reserve);
910 sg_build_reserve(sfp, val);
911 }
912 return 0;
913 case SG_GET_RESERVED_SIZE:
Alan Stern44ec9542007-02-20 11:01:57 -0500914 val = min_t(int, sfp->reserve.bufflen,
Martin K. Petersenae03bf62009-05-22 17:17:50 -0400915 queue_max_sectors(sdp->device->request_queue) * 512);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 return put_user(val, ip);
917 case SG_SET_COMMAND_Q:
918 result = get_user(val, ip);
919 if (result)
920 return result;
921 sfp->cmd_q = val ? 1 : 0;
922 return 0;
923 case SG_GET_COMMAND_Q:
924 return put_user((int) sfp->cmd_q, ip);
925 case SG_SET_KEEP_ORPHAN:
926 result = get_user(val, ip);
927 if (result)
928 return result;
929 sfp->keep_orphan = val;
930 return 0;
931 case SG_GET_KEEP_ORPHAN:
932 return put_user((int) sfp->keep_orphan, ip);
933 case SG_NEXT_CMD_LEN:
934 result = get_user(val, ip);
935 if (result)
936 return result;
937 sfp->next_cmd_len = (val > 0) ? val : 0;
938 return 0;
939 case SG_GET_VERSION_NUM:
940 return put_user(sg_version_num, ip);
941 case SG_GET_ACCESS_COUNT:
942 /* faked - we don't have a real access count anymore */
943 val = (sdp->device ? 1 : 0);
944 return put_user(val, ip);
945 case SG_GET_REQUEST_TABLE:
946 if (!access_ok(VERIFY_WRITE, p, SZ_SG_REQ_INFO * SG_MAX_QUEUE))
947 return -EFAULT;
948 else {
cb59e842005-04-02 13:51:23 -0600949 sg_req_info_t *rinfo;
950 unsigned int ms;
951
952 rinfo = kmalloc(SZ_SG_REQ_INFO * SG_MAX_QUEUE,
953 GFP_KERNEL);
954 if (!rinfo)
955 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 read_lock_irqsave(&sfp->rq_list_lock, iflags);
957 for (srp = sfp->headrp, val = 0; val < SG_MAX_QUEUE;
958 ++val, srp = srp ? srp->nextrp : srp) {
959 memset(&rinfo[val], 0, SZ_SG_REQ_INFO);
960 if (srp) {
961 rinfo[val].req_state = srp->done + 1;
962 rinfo[val].problem =
963 srp->header.masked_status &
964 srp->header.host_status &
965 srp->header.driver_status;
cb59e842005-04-02 13:51:23 -0600966 if (srp->done)
967 rinfo[val].duration =
968 srp->header.duration;
969 else {
970 ms = jiffies_to_msecs(jiffies);
971 rinfo[val].duration =
972 (ms > srp->header.duration) ?
973 (ms - srp->header.duration) : 0;
974 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 rinfo[val].orphan = srp->orphan;
cb59e842005-04-02 13:51:23 -0600976 rinfo[val].sg_io_owned =
977 srp->sg_io_owned;
978 rinfo[val].pack_id =
979 srp->header.pack_id;
980 rinfo[val].usr_ptr =
981 srp->header.usr_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 }
983 }
984 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
cb59e842005-04-02 13:51:23 -0600985 result = __copy_to_user(p, rinfo,
986 SZ_SG_REQ_INFO * SG_MAX_QUEUE);
987 result = result ? -EFAULT : 0;
988 kfree(rinfo);
989 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 }
991 case SG_EMULATED_HOST:
992 if (sdp->detached)
993 return -ENODEV;
994 return put_user(sdp->device->host->hostt->emulated, ip);
995 case SG_SCSI_RESET:
996 if (sdp->detached)
997 return -ENODEV;
998 if (filp->f_flags & O_NONBLOCK) {
James Bottomley939647e2005-09-18 15:05:20 -0500999 if (scsi_host_in_recovery(sdp->device->host))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 return -EBUSY;
1001 } else if (!scsi_block_when_processing_errors(sdp->device))
1002 return -EBUSY;
1003 result = get_user(val, ip);
1004 if (result)
1005 return result;
1006 if (SG_SCSI_RESET_NOTHING == val)
1007 return 0;
1008 switch (val) {
1009 case SG_SCSI_RESET_DEVICE:
1010 val = SCSI_TRY_RESET_DEVICE;
1011 break;
Brian King39120e12008-07-01 13:03:19 -05001012 case SG_SCSI_RESET_TARGET:
1013 val = SCSI_TRY_RESET_TARGET;
1014 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 case SG_SCSI_RESET_BUS:
1016 val = SCSI_TRY_RESET_BUS;
1017 break;
1018 case SG_SCSI_RESET_HOST:
1019 val = SCSI_TRY_RESET_HOST;
1020 break;
1021 default:
1022 return -EINVAL;
1023 }
1024 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
1025 return -EACCES;
1026 return (scsi_reset_provider(sdp->device, val) ==
1027 SUCCESS) ? 0 : -EIO;
1028 case SCSI_IOCTL_SEND_COMMAND:
1029 if (sdp->detached)
1030 return -ENODEV;
1031 if (read_only) {
1032 unsigned char opcode = WRITE_6;
1033 Scsi_Ioctl_Command __user *siocp = p;
1034
1035 if (copy_from_user(&opcode, siocp->data, 1))
1036 return -EFAULT;
FUJITA Tomonori14e507b2008-07-26 18:03:24 +09001037 if (sg_allow_access(filp, &opcode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 return -EPERM;
1039 }
Al Viroe915e872008-09-02 17:16:41 -04001040 return sg_scsi_ioctl(sdp->device->request_queue, NULL, filp->f_mode, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 case SG_SET_DEBUG:
1042 result = get_user(val, ip);
1043 if (result)
1044 return result;
1045 sdp->sgdebug = (char) val;
1046 return 0;
1047 case SCSI_IOCTL_GET_IDLUN:
1048 case SCSI_IOCTL_GET_BUS_NUMBER:
1049 case SCSI_IOCTL_PROBE_HOST:
1050 case SG_GET_TRANSFORM:
1051 if (sdp->detached)
1052 return -ENODEV;
1053 return scsi_ioctl(sdp->device, cmd_in, p);
Alan Stern44ec9542007-02-20 11:01:57 -05001054 case BLKSECTGET:
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001055 return put_user(queue_max_sectors(sdp->device->request_queue) * 512,
Alan Stern44ec9542007-02-20 11:01:57 -05001056 ip);
Christof Schmitt6da127a2008-01-11 10:09:43 +01001057 case BLKTRACESETUP:
1058 return blk_trace_setup(sdp->device->request_queue,
1059 sdp->disk->disk_name,
Martin Peschke76e3a192009-01-30 15:46:23 +01001060 MKDEV(SCSI_GENERIC_MAJOR, sdp->index),
Shawn Dud0deef52009-04-14 13:58:56 +08001061 NULL,
Christof Schmitt6da127a2008-01-11 10:09:43 +01001062 (char *)arg);
1063 case BLKTRACESTART:
1064 return blk_trace_startstop(sdp->device->request_queue, 1);
1065 case BLKTRACESTOP:
1066 return blk_trace_startstop(sdp->device->request_queue, 0);
1067 case BLKTRACETEARDOWN:
1068 return blk_trace_remove(sdp->device->request_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 default:
1070 if (read_only)
1071 return -EPERM; /* don't know so take safe approach */
1072 return scsi_ioctl(sdp->device, cmd_in, p);
1073 }
1074}
1075
Arnd Bergmannf4927c42010-04-27 00:24:01 +02001076static long
1077sg_unlocked_ioctl(struct file *filp, unsigned int cmd_in, unsigned long arg)
1078{
1079 int ret;
1080
Arnd Bergmannc45d15d2010-06-02 14:28:52 +02001081 mutex_lock(&sg_mutex);
Arnd Bergmannf4927c42010-04-27 00:24:01 +02001082 ret = sg_ioctl(filp, cmd_in, arg);
Arnd Bergmannc45d15d2010-06-02 14:28:52 +02001083 mutex_unlock(&sg_mutex);
Arnd Bergmannf4927c42010-04-27 00:24:01 +02001084
1085 return ret;
1086}
1087
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088#ifdef CONFIG_COMPAT
1089static long sg_compat_ioctl(struct file *filp, unsigned int cmd_in, unsigned long arg)
1090{
1091 Sg_device *sdp;
1092 Sg_fd *sfp;
1093 struct scsi_device *sdev;
1094
1095 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
1096 return -ENXIO;
1097
1098 sdev = sdp->device;
1099 if (sdev->host->hostt->compat_ioctl) {
1100 int ret;
1101
1102 ret = sdev->host->hostt->compat_ioctl(sdev, cmd_in, (void __user *)arg);
1103
1104 return ret;
1105 }
1106
1107 return -ENOIOCTLCMD;
1108}
1109#endif
1110
1111static unsigned int
1112sg_poll(struct file *filp, poll_table * wait)
1113{
1114 unsigned int res = 0;
1115 Sg_device *sdp;
1116 Sg_fd *sfp;
1117 Sg_request *srp;
1118 int count = 0;
1119 unsigned long iflags;
1120
1121 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp))
1122 || sfp->closed)
1123 return POLLERR;
1124 poll_wait(filp, &sfp->read_wait, wait);
1125 read_lock_irqsave(&sfp->rq_list_lock, iflags);
1126 for (srp = sfp->headrp; srp; srp = srp->nextrp) {
1127 /* if any read waiting, flag it */
1128 if ((0 == res) && (1 == srp->done) && (!srp->sg_io_owned))
1129 res = POLLIN | POLLRDNORM;
1130 ++count;
1131 }
1132 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1133
1134 if (sdp->detached)
1135 res |= POLLHUP;
1136 else if (!sfp->cmd_q) {
1137 if (0 == count)
1138 res |= POLLOUT | POLLWRNORM;
1139 } else if (count < SG_MAX_QUEUE)
1140 res |= POLLOUT | POLLWRNORM;
1141 SCSI_LOG_TIMEOUT(3, printk("sg_poll: %s, res=0x%x\n",
1142 sdp->disk->disk_name, (int) res));
1143 return res;
1144}
1145
1146static int
1147sg_fasync(int fd, struct file *filp, int mode)
1148{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 Sg_device *sdp;
1150 Sg_fd *sfp;
1151
1152 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
1153 return -ENXIO;
1154 SCSI_LOG_TIMEOUT(3, printk("sg_fasync: %s, mode=%d\n",
1155 sdp->disk->disk_name, mode));
1156
Jonathan Corbet60aa4922009-02-01 14:52:56 -07001157 return fasync_helper(fd, filp, mode, &sfp->async_qp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158}
1159
Nick Piggina13ff0b2008-02-07 18:46:06 -08001160static int
1161sg_vma_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162{
1163 Sg_fd *sfp;
Mike Christied6b10342005-11-08 04:06:41 -06001164 unsigned long offset, len, sa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 Sg_scatter_hold *rsv_schp;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001166 int k, length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
1168 if ((NULL == vma) || (!(sfp = (Sg_fd *) vma->vm_private_data)))
Nick Piggina13ff0b2008-02-07 18:46:06 -08001169 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 rsv_schp = &sfp->reserve;
Nick Piggina13ff0b2008-02-07 18:46:06 -08001171 offset = vmf->pgoff << PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 if (offset >= rsv_schp->bufflen)
Nick Piggina13ff0b2008-02-07 18:46:06 -08001173 return VM_FAULT_SIGBUS;
1174 SCSI_LOG_TIMEOUT(3, printk("sg_vma_fault: offset=%lu, scatg=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 offset, rsv_schp->k_use_sg));
Mike Christied6b10342005-11-08 04:06:41 -06001176 sa = vma->vm_start;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001177 length = 1 << (PAGE_SHIFT + rsv_schp->page_order);
1178 for (k = 0; k < rsv_schp->k_use_sg && sa < vma->vm_end; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06001179 len = vma->vm_end - sa;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001180 len = (len < length) ? len : length;
Mike Christied6b10342005-11-08 04:06:41 -06001181 if (offset < len) {
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001182 struct page *page = nth_page(rsv_schp->pages[k],
1183 offset >> PAGE_SHIFT);
Mike Christied6b10342005-11-08 04:06:41 -06001184 get_page(page); /* increment page count */
Nick Piggina13ff0b2008-02-07 18:46:06 -08001185 vmf->page = page;
1186 return 0; /* success */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 }
Mike Christied6b10342005-11-08 04:06:41 -06001188 sa += len;
1189 offset -= len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 }
Mike Christied6b10342005-11-08 04:06:41 -06001191
Nick Piggina13ff0b2008-02-07 18:46:06 -08001192 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193}
1194
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04001195static const struct vm_operations_struct sg_mmap_vm_ops = {
Nick Piggina13ff0b2008-02-07 18:46:06 -08001196 .fault = sg_vma_fault,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197};
1198
1199static int
1200sg_mmap(struct file *filp, struct vm_area_struct *vma)
1201{
1202 Sg_fd *sfp;
Mike Christied6b10342005-11-08 04:06:41 -06001203 unsigned long req_sz, len, sa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 Sg_scatter_hold *rsv_schp;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001205 int k, length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
1207 if ((!filp) || (!vma) || (!(sfp = (Sg_fd *) filp->private_data)))
1208 return -ENXIO;
cb59e842005-04-02 13:51:23 -06001209 req_sz = vma->vm_end - vma->vm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 SCSI_LOG_TIMEOUT(3, printk("sg_mmap starting, vm_start=%p, len=%d\n",
1211 (void *) vma->vm_start, (int) req_sz));
1212 if (vma->vm_pgoff)
1213 return -EINVAL; /* want no offset */
1214 rsv_schp = &sfp->reserve;
1215 if (req_sz > rsv_schp->bufflen)
1216 return -ENOMEM; /* cannot map more than reserved buffer */
1217
Mike Christied6b10342005-11-08 04:06:41 -06001218 sa = vma->vm_start;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001219 length = 1 << (PAGE_SHIFT + rsv_schp->page_order);
1220 for (k = 0; k < rsv_schp->k_use_sg && sa < vma->vm_end; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06001221 len = vma->vm_end - sa;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001222 len = (len < length) ? len : length;
Mike Christied6b10342005-11-08 04:06:41 -06001223 sa += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 }
Mike Christied6b10342005-11-08 04:06:41 -06001225
Nick Pigginf9aed0e2006-03-22 00:08:30 -08001226 sfp->mmap_called = 1;
Douglas Gilbert1c8e71d2005-09-09 17:18:57 +10001227 vma->vm_flags |= VM_RESERVED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 vma->vm_private_data = sfp;
1229 vma->vm_ops = &sg_mmap_vm_ops;
1230 return 0;
1231}
1232
FUJITA Tomonoric96952e2009-02-04 11:36:27 +09001233static void sg_rq_end_io_usercontext(struct work_struct *work)
1234{
1235 struct sg_request *srp = container_of(work, struct sg_request, ew.work);
1236 struct sg_fd *sfp = srp->parentfp;
1237
1238 sg_finish_rem_req(srp);
1239 kref_put(&sfp->f_ref, sg_remove_sfp);
1240}
1241
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001242/*
1243 * This function is a "bottom half" handler that is called by the mid
1244 * level when a command is completed (or has failed).
1245 */
1246static void sg_rq_end_io(struct request *rq, int uptodate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247{
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001248 struct sg_request *srp = rq->end_io_data;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001249 Sg_device *sdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 Sg_fd *sfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 unsigned long iflags;
cb59e842005-04-02 13:51:23 -06001252 unsigned int ms;
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001253 char *sense;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001254 int result, resid, done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
Tony Battersbyc6517b792009-01-21 14:45:50 -05001256 if (WARN_ON(srp->done != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 return;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001258
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 sfp = srp->parentfp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001260 if (WARN_ON(sfp == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 return;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001262
1263 sdp = sfp->parentdp;
1264 if (unlikely(sdp->detached))
1265 printk(KERN_INFO "sg_rq_end_io: device detached\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001267 sense = rq->sense;
1268 result = rq->errors;
Tejun Heoc3a4d782009-05-07 22:24:37 +09001269 resid = rq->resid_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
1271 SCSI_LOG_TIMEOUT(4, printk("sg_cmd_done: %s, pack_id=%d, res=0x%x\n",
Mike Christied6b10342005-11-08 04:06:41 -06001272 sdp->disk->disk_name, srp->header.pack_id, result));
1273 srp->header.resid = resid;
cb59e842005-04-02 13:51:23 -06001274 ms = jiffies_to_msecs(jiffies);
1275 srp->header.duration = (ms > srp->header.duration) ?
1276 (ms - srp->header.duration) : 0;
Mike Christied6b10342005-11-08 04:06:41 -06001277 if (0 != result) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 struct scsi_sense_hdr sshdr;
1279
Mike Christied6b10342005-11-08 04:06:41 -06001280 srp->header.status = 0xff & result;
1281 srp->header.masked_status = status_byte(result);
1282 srp->header.msg_status = msg_byte(result);
1283 srp->header.host_status = host_byte(result);
1284 srp->header.driver_status = driver_byte(result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 if ((sdp->sgdebug > 0) &&
1286 ((CHECK_CONDITION == srp->header.masked_status) ||
1287 (COMMAND_TERMINATED == srp->header.masked_status)))
Mike Christied6b10342005-11-08 04:06:41 -06001288 __scsi_print_sense("sg_cmd_done", sense,
1289 SCSI_SENSE_BUFFERSIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
1291 /* Following if statement is a patch supplied by Eric Youngdale */
Mike Christied6b10342005-11-08 04:06:41 -06001292 if (driver_byte(result) != 0
1293 && scsi_normalize_sense(sense, SCSI_SENSE_BUFFERSIZE, &sshdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 && !scsi_sense_is_deferred(&sshdr)
1295 && sshdr.sense_key == UNIT_ATTENTION
1296 && sdp->device->removable) {
1297 /* Detected possible disc change. Set the bit - this */
1298 /* may be used if there are filesystems using this device */
1299 sdp->device->changed = 1;
1300 }
1301 }
1302 /* Rely on write phase to clean out srp status values, so no "else" */
1303
Tony Battersbyc6517b792009-01-21 14:45:50 -05001304 write_lock_irqsave(&sfp->rq_list_lock, iflags);
1305 if (unlikely(srp->orphan)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 if (sfp->keep_orphan)
1307 srp->sg_io_owned = 0;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001308 else
1309 done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05001311 srp->done = done;
1312 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1313
1314 if (likely(done)) {
1315 /* Now wake up any sg_read() that is waiting for this
1316 * packet.
1317 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 wake_up_interruptible(&sfp->read_wait);
Tony Battersbyc6517b792009-01-21 14:45:50 -05001319 kill_fasync(&sfp->async_qp, SIGPOLL, POLL_IN);
FUJITA Tomonoric96952e2009-02-04 11:36:27 +09001320 kref_put(&sfp->f_ref, sg_remove_sfp);
FUJITA Tomonori015640e2009-04-03 19:28:06 +09001321 } else {
1322 INIT_WORK(&srp->ew.work, sg_rq_end_io_usercontext);
1323 schedule_work(&srp->ew.work);
1324 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325}
1326
Alexey Dobriyan828c0952009-10-01 15:43:56 -07001327static const struct file_operations sg_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 .owner = THIS_MODULE,
1329 .read = sg_read,
1330 .write = sg_write,
1331 .poll = sg_poll,
Arnd Bergmannf4927c42010-04-27 00:24:01 +02001332 .unlocked_ioctl = sg_unlocked_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333#ifdef CONFIG_COMPAT
1334 .compat_ioctl = sg_compat_ioctl,
1335#endif
1336 .open = sg_open,
1337 .mmap = sg_mmap,
1338 .release = sg_release,
1339 .fasync = sg_fasync,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001340 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341};
1342
gregkh@suse.ded2538782005-03-23 09:55:22 -08001343static struct class *sg_sysfs_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
1345static int sg_sysfs_valid = 0;
1346
James Bottomley7c07d612007-08-05 13:36:11 -05001347static Sg_device *sg_alloc(struct gendisk *disk, struct scsi_device *scsidp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348{
Mike Christied6b10342005-11-08 04:06:41 -06001349 struct request_queue *q = scsidp->request_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 Sg_device *sdp;
1351 unsigned long iflags;
James Bottomley7c07d612007-08-05 13:36:11 -05001352 int error;
1353 u32 k;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
Jes Sorensen24669f752006-01-16 10:31:18 -05001355 sdp = kzalloc(sizeof(Sg_device), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 if (!sdp) {
1357 printk(KERN_WARNING "kmalloc Sg_device failure\n");
James Bottomley7c07d612007-08-05 13:36:11 -05001358 return ERR_PTR(-ENOMEM);
1359 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05001360
James Bottomley7c07d612007-08-05 13:36:11 -05001361 if (!idr_pre_get(&sg_index_idr, GFP_KERNEL)) {
1362 printk(KERN_WARNING "idr expansion Sg_device failure\n");
Tony Battersbyc6517b792009-01-21 14:45:50 -05001363 error = -ENOMEM;
James Bottomley7c07d612007-08-05 13:36:11 -05001364 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 }
1366
James Bottomley7c07d612007-08-05 13:36:11 -05001367 write_lock_irqsave(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
Tony Battersbyc6517b792009-01-21 14:45:50 -05001369 error = idr_get_new(&sg_index_idr, sdp, &k);
James Bottomley7c07d612007-08-05 13:36:11 -05001370 if (error) {
Tony Battersbyc6517b792009-01-21 14:45:50 -05001371 write_unlock_irqrestore(&sg_index_lock, iflags);
James Bottomley7c07d612007-08-05 13:36:11 -05001372 printk(KERN_WARNING "idr allocation Sg_device failure: %d\n",
1373 error);
1374 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 }
1376
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 if (unlikely(k >= SG_MAX_DEVS))
1378 goto overflow;
1379
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 SCSI_LOG_TIMEOUT(3, printk("sg_alloc: dev=%d \n", k));
1381 sprintf(disk->disk_name, "sg%d", k);
1382 disk->first_minor = k;
1383 sdp->disk = disk;
1384 sdp->device = scsidp;
FUJITA Tomonori3442f802009-02-16 13:26:53 +09001385 INIT_LIST_HEAD(&sdp->sfds);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 init_waitqueue_head(&sdp->o_excl_wait);
Martin K. Petersen8a783622010-02-26 00:20:39 -05001387 sdp->sg_tablesize = queue_max_segments(q);
James Bottomley7c07d612007-08-05 13:36:11 -05001388 sdp->index = k;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001389 kref_init(&sdp->d_ref);
1390
1391 write_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
James Bottomley7c07d612007-08-05 13:36:11 -05001393 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 out:
James Bottomley7c07d612007-08-05 13:36:11 -05001395 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 kfree(sdp);
James Bottomley7c07d612007-08-05 13:36:11 -05001397 return ERR_PTR(error);
1398 }
1399 return sdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
1401 overflow:
Tony Battersbyc6517b792009-01-21 14:45:50 -05001402 idr_remove(&sg_index_idr, k);
1403 write_unlock_irqrestore(&sg_index_lock, iflags);
James Bottomley9ccfc752005-10-02 11:45:08 -05001404 sdev_printk(KERN_WARNING, scsidp,
1405 "Unable to attach sg device type=%d, minor "
1406 "number exceeds %d\n", scsidp->type, SG_MAX_DEVS - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 error = -ENODEV;
1408 goto out;
1409}
1410
1411static int
Tony Jonesee959b02008-02-22 00:13:36 +01001412sg_add(struct device *cl_dev, struct class_interface *cl_intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413{
Tony Jonesee959b02008-02-22 00:13:36 +01001414 struct scsi_device *scsidp = to_scsi_device(cl_dev->parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 struct gendisk *disk;
1416 Sg_device *sdp = NULL;
1417 struct cdev * cdev = NULL;
James Bottomley7c07d612007-08-05 13:36:11 -05001418 int error;
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001419 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
1421 disk = alloc_disk(1);
1422 if (!disk) {
1423 printk(KERN_WARNING "alloc_disk failed\n");
1424 return -ENOMEM;
1425 }
1426 disk->major = SCSI_GENERIC_MAJOR;
1427
1428 error = -ENOMEM;
1429 cdev = cdev_alloc();
1430 if (!cdev) {
1431 printk(KERN_WARNING "cdev_alloc failed\n");
1432 goto out;
1433 }
1434 cdev->owner = THIS_MODULE;
1435 cdev->ops = &sg_fops;
1436
James Bottomley7c07d612007-08-05 13:36:11 -05001437 sdp = sg_alloc(disk, scsidp);
1438 if (IS_ERR(sdp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 printk(KERN_WARNING "sg_alloc failed\n");
James Bottomley7c07d612007-08-05 13:36:11 -05001440 error = PTR_ERR(sdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 goto out;
1442 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
James Bottomley7c07d612007-08-05 13:36:11 -05001444 error = cdev_add(cdev, MKDEV(SCSI_GENERIC_MAJOR, sdp->index), 1);
Greg KH5e3c34c2006-01-18 16:17:46 -08001445 if (error)
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001446 goto cdev_add_err;
Greg KH5e3c34c2006-01-18 16:17:46 -08001447
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 sdp->cdev = cdev;
1449 if (sg_sysfs_valid) {
Tony Jonesee959b02008-02-22 00:13:36 +01001450 struct device *sg_class_member;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
Greg Kroah-Hartmand73a1a672008-07-21 20:03:34 -07001452 sg_class_member = device_create(sg_sysfs_class, cl_dev->parent,
1453 MKDEV(SCSI_GENERIC_MAJOR,
1454 sdp->index),
1455 sdp, "%s", disk->disk_name);
FUJITA Tomonorid07e0362008-01-15 13:18:00 +09001456 if (IS_ERR(sg_class_member)) {
1457 printk(KERN_ERR "sg_add: "
Tony Jonesee959b02008-02-22 00:13:36 +01001458 "device_create failed\n");
FUJITA Tomonorid07e0362008-01-15 13:18:00 +09001459 error = PTR_ERR(sg_class_member);
1460 goto cdev_add_err;
1461 }
FUJITA Tomonorid07e0362008-01-15 13:18:00 +09001462 error = sysfs_create_link(&scsidp->sdev_gendev.kobj,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 &sg_class_member->kobj, "generic");
1464 if (error)
1465 printk(KERN_ERR "sg_add: unable to make symlink "
James Bottomley7c07d612007-08-05 13:36:11 -05001466 "'generic' back to sg%d\n", sdp->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 } else
James Bottomley7c07d612007-08-05 13:36:11 -05001468 printk(KERN_WARNING "sg_add: sg_sys Invalid\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469
James Bottomley9ccfc752005-10-02 11:45:08 -05001470 sdev_printk(KERN_NOTICE, scsidp,
James Bottomley7c07d612007-08-05 13:36:11 -05001471 "Attached scsi generic sg%d type %d\n", sdp->index,
1472 scsidp->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
Tony Jonesee959b02008-02-22 00:13:36 +01001474 dev_set_drvdata(cl_dev, sdp);
FUJITA Tomonoria24484f2008-01-15 13:17:47 +09001475
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 return 0;
1477
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001478cdev_add_err:
James Bottomley7c07d612007-08-05 13:36:11 -05001479 write_lock_irqsave(&sg_index_lock, iflags);
1480 idr_remove(&sg_index_idr, sdp->index);
1481 write_unlock_irqrestore(&sg_index_lock, iflags);
1482 kfree(sdp);
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001483
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484out:
1485 put_disk(disk);
1486 if (cdev)
1487 cdev_del(cdev);
1488 return error;
1489}
1490
Tony Battersbyc6517b792009-01-21 14:45:50 -05001491static void sg_device_destroy(struct kref *kref)
1492{
1493 struct sg_device *sdp = container_of(kref, struct sg_device, d_ref);
1494 unsigned long flags;
1495
1496 /* CAUTION! Note that the device can still be found via idr_find()
1497 * even though the refcount is 0. Therefore, do idr_remove() BEFORE
1498 * any other cleanup.
1499 */
1500
1501 write_lock_irqsave(&sg_index_lock, flags);
1502 idr_remove(&sg_index_idr, sdp->index);
1503 write_unlock_irqrestore(&sg_index_lock, flags);
1504
1505 SCSI_LOG_TIMEOUT(3,
1506 printk("sg_device_destroy: %s\n",
1507 sdp->disk->disk_name));
1508
1509 put_disk(sdp->disk);
1510 kfree(sdp);
1511}
1512
1513static void sg_remove(struct device *cl_dev, struct class_interface *cl_intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514{
Tony Jonesee959b02008-02-22 00:13:36 +01001515 struct scsi_device *scsidp = to_scsi_device(cl_dev->parent);
1516 Sg_device *sdp = dev_get_drvdata(cl_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 unsigned long iflags;
1518 Sg_fd *sfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519
Tony Battersbyc6517b792009-01-21 14:45:50 -05001520 if (!sdp || sdp->detached)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
Tony Battersbyc6517b792009-01-21 14:45:50 -05001523 SCSI_LOG_TIMEOUT(3, printk("sg_remove: %s\n", sdp->disk->disk_name));
1524
1525 /* Need a write lock to set sdp->detached. */
James Bottomley7c07d612007-08-05 13:36:11 -05001526 write_lock_irqsave(&sg_index_lock, iflags);
Tony Battersbyc6517b792009-01-21 14:45:50 -05001527 sdp->detached = 1;
FUJITA Tomonori3442f802009-02-16 13:26:53 +09001528 list_for_each_entry(sfp, &sdp->sfds, sfd_siblings) {
Tony Battersbyc6517b792009-01-21 14:45:50 -05001529 wake_up_interruptible(&sfp->read_wait);
1530 kill_fasync(&sfp->async_qp, SIGPOLL, POLL_HUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 }
James Bottomley7c07d612007-08-05 13:36:11 -05001532 write_unlock_irqrestore(&sg_index_lock, iflags);
1533
1534 sysfs_remove_link(&scsidp->sdev_gendev.kobj, "generic");
Tony Jonesee959b02008-02-22 00:13:36 +01001535 device_destroy(sg_sysfs_class, MKDEV(SCSI_GENERIC_MAJOR, sdp->index));
James Bottomley7c07d612007-08-05 13:36:11 -05001536 cdev_del(sdp->cdev);
1537 sdp->cdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
Tony Battersbyc6517b792009-01-21 14:45:50 -05001539 sg_put_dev(sdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540}
1541
Douglas Gilbert6460e752006-09-20 18:20:49 -04001542module_param_named(scatter_elem_sz, scatter_elem_sz, int, S_IRUGO | S_IWUSR);
1543module_param_named(def_reserved_size, def_reserved_size, int,
1544 S_IRUGO | S_IWUSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545module_param_named(allow_dio, sg_allow_dio, int, S_IRUGO | S_IWUSR);
1546
1547MODULE_AUTHOR("Douglas Gilbert");
1548MODULE_DESCRIPTION("SCSI generic (sg) driver");
1549MODULE_LICENSE("GPL");
1550MODULE_VERSION(SG_VERSION_STR);
Rene Hermanf018fa52006-03-08 00:14:20 -08001551MODULE_ALIAS_CHARDEV_MAJOR(SCSI_GENERIC_MAJOR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
Douglas Gilbert6460e752006-09-20 18:20:49 -04001553MODULE_PARM_DESC(scatter_elem_sz, "scatter gather element "
1554 "size (default: max(SG_SCATTER_SZ, PAGE_SIZE))");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555MODULE_PARM_DESC(def_reserved_size, "size of buffer reserved for each fd");
1556MODULE_PARM_DESC(allow_dio, "allow direct I/O (default: 0 (disallow))");
1557
1558static int __init
1559init_sg(void)
1560{
1561 int rc;
1562
Douglas Gilbert6460e752006-09-20 18:20:49 -04001563 if (scatter_elem_sz < PAGE_SIZE) {
1564 scatter_elem_sz = PAGE_SIZE;
1565 scatter_elem_sz_prev = scatter_elem_sz;
1566 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 if (def_reserved_size >= 0)
1568 sg_big_buff = def_reserved_size;
Douglas Gilbert6460e752006-09-20 18:20:49 -04001569 else
1570 def_reserved_size = sg_big_buff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
1572 rc = register_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0),
1573 SG_MAX_DEVS, "sg");
1574 if (rc)
1575 return rc;
gregkh@suse.ded2538782005-03-23 09:55:22 -08001576 sg_sysfs_class = class_create(THIS_MODULE, "scsi_generic");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 if ( IS_ERR(sg_sysfs_class) ) {
1578 rc = PTR_ERR(sg_sysfs_class);
1579 goto err_out;
1580 }
1581 sg_sysfs_valid = 1;
1582 rc = scsi_register_interface(&sg_interface);
1583 if (0 == rc) {
1584#ifdef CONFIG_SCSI_PROC_FS
1585 sg_proc_init();
1586#endif /* CONFIG_SCSI_PROC_FS */
1587 return 0;
1588 }
gregkh@suse.ded2538782005-03-23 09:55:22 -08001589 class_destroy(sg_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590err_out:
1591 unregister_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0), SG_MAX_DEVS);
1592 return rc;
1593}
1594
1595static void __exit
1596exit_sg(void)
1597{
1598#ifdef CONFIG_SCSI_PROC_FS
1599 sg_proc_cleanup();
1600#endif /* CONFIG_SCSI_PROC_FS */
1601 scsi_unregister_interface(&sg_interface);
gregkh@suse.ded2538782005-03-23 09:55:22 -08001602 class_destroy(sg_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 sg_sysfs_valid = 0;
1604 unregister_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0),
1605 SG_MAX_DEVS);
James Bottomley7c07d612007-08-05 13:36:11 -05001606 idr_destroy(&sg_index_idr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607}
1608
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001609static int sg_start_req(Sg_request *srp, unsigned char *cmd)
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001610{
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001611 int res;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001612 struct request *rq;
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001613 Sg_fd *sfp = srp->parentfp;
1614 sg_io_hdr_t *hp = &srp->header;
1615 int dxfer_len = (int) hp->dxfer_len;
1616 int dxfer_dir = hp->dxfer_direction;
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001617 unsigned int iov_count = hp->iovec_count;
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001618 Sg_scatter_hold *req_schp = &srp->data;
1619 Sg_scatter_hold *rsv_schp = &sfp->reserve;
1620 struct request_queue *q = sfp->parentdp->device->request_queue;
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001621 struct rq_map_data *md, map_data;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001622 int rw = hp->dxfer_direction == SG_DXFER_TO_DEV ? WRITE : READ;
1623
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001624 SCSI_LOG_TIMEOUT(4, printk(KERN_INFO "sg_start_req: dxfer_len=%d\n",
1625 dxfer_len));
1626
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001627 rq = blk_get_request(q, rw, GFP_ATOMIC);
1628 if (!rq)
1629 return -ENOMEM;
1630
1631 memcpy(rq->cmd, cmd, hp->cmd_len);
1632
1633 rq->cmd_len = hp->cmd_len;
1634 rq->cmd_type = REQ_TYPE_BLOCK_PC;
1635
1636 srp->rq = rq;
1637 rq->end_io_data = srp;
1638 rq->sense = srp->sense_b;
1639 rq->retries = SG_DEFAULT_RETRIES;
1640
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 if ((dxfer_len <= 0) || (dxfer_dir == SG_DXFER_NONE))
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001642 return 0;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001643
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001644 if (sg_allow_dio && hp->flags & SG_FLAG_DIRECT_IO &&
1645 dxfer_dir != SG_DXFER_UNKNOWN && !iov_count &&
1646 !sfp->parentdp->device->host->unchecked_isa_dma &&
Namhyung Kim2610a252010-09-16 12:55:57 +09001647 blk_rq_aligned(q, (unsigned long)hp->dxferp, dxfer_len))
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001648 md = NULL;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001649 else
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001650 md = &map_data;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001651
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001652 if (md) {
1653 if (!sg_res_in_use(sfp) && dxfer_len <= rsv_schp->bufflen)
1654 sg_link_reserve(sfp, srp, dxfer_len);
1655 else {
1656 res = sg_build_indirect(req_schp, sfp, dxfer_len);
1657 if (res)
1658 return res;
1659 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001660
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001661 md->pages = req_schp->pages;
1662 md->page_order = req_schp->page_order;
1663 md->nr_entries = req_schp->k_use_sg;
FUJITA Tomonori56c451f2008-12-18 14:49:37 +09001664 md->offset = 0;
FUJITA Tomonori97ae77a2008-12-18 14:49:38 +09001665 md->null_mapped = hp->dxferp ? 0 : 1;
FUJITA Tomonoriecb554a2009-07-09 14:46:53 +02001666 if (dxfer_dir == SG_DXFER_TO_FROM_DEV)
1667 md->from_user = 1;
1668 else
1669 md->from_user = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001671
FUJITA Tomonori0fdf96b2009-04-03 09:12:20 +09001672 if (iov_count) {
1673 int len, size = sizeof(struct sg_iovec) * iov_count;
1674 struct iovec *iov;
1675
Julia Lawall30941412010-08-10 18:01:27 -07001676 iov = memdup_user(hp->dxferp, size);
1677 if (IS_ERR(iov))
1678 return PTR_ERR(iov);
FUJITA Tomonori0fdf96b2009-04-03 09:12:20 +09001679
1680 len = iov_length(iov, iov_count);
1681 if (hp->dxfer_len < len) {
1682 iov_count = iov_shorten(iov, iov_count, hp->dxfer_len);
1683 len = hp->dxfer_len;
1684 }
1685
1686 res = blk_rq_map_user_iov(q, rq, md, (struct sg_iovec *)iov,
1687 iov_count,
1688 len, GFP_ATOMIC);
1689 kfree(iov);
1690 } else
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001691 res = blk_rq_map_user(q, rq, md, hp->dxferp,
1692 hp->dxfer_len, GFP_ATOMIC);
1693
1694 if (!res) {
1695 srp->bio = rq->bio;
1696
1697 if (!md) {
1698 req_schp->dio_in_use = 1;
1699 hp->info |= SG_INFO_DIRECT_IO;
1700 }
1701 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001702 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703}
1704
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +09001705static int sg_finish_rem_req(Sg_request * srp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706{
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +09001707 int ret = 0;
1708
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 Sg_fd *sfp = srp->parentfp;
1710 Sg_scatter_hold *req_schp = &srp->data;
1711
1712 SCSI_LOG_TIMEOUT(4, printk("sg_finish_rem_req: res_used=%d\n", (int) srp->res_used));
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001713 if (srp->rq) {
1714 if (srp->bio)
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +09001715 ret = blk_rq_unmap_user(srp->bio);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001716
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001717 blk_put_request(srp->rq);
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001718 }
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001719
Christof Schmitte27168f2009-09-17 09:10:14 +02001720 if (srp->res_used)
1721 sg_unlink_reserve(sfp, srp);
1722 else
1723 sg_remove_scat(req_schp);
1724
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 sg_remove_request(sfp, srp);
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +09001726
1727 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728}
1729
1730static int
1731sg_build_sgat(Sg_scatter_hold * schp, const Sg_fd * sfp, int tablesize)
1732{
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001733 int sg_bufflen = tablesize * sizeof(struct page *);
Al Viro2d20eaf2006-02-01 06:31:40 -05001734 gfp_t gfp_flags = GFP_ATOMIC | __GFP_NOWARN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001736 schp->pages = kzalloc(sg_bufflen, gfp_flags);
1737 if (!schp->pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 schp->sglist_len = sg_bufflen;
Mike Christied6b10342005-11-08 04:06:41 -06001740 return tablesize; /* number of scat_gath elements allocated */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741}
1742
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743static int
1744sg_build_indirect(Sg_scatter_hold * schp, Sg_fd * sfp, int buff_size)
1745{
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001746 int ret_sz = 0, i, k, rem_sz, num, mx_sc_elems;
Mike Christied6b10342005-11-08 04:06:41 -06001747 int sg_tablesize = sfp->parentdp->sg_tablesize;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001748 int blk_size = buff_size, order;
1749 gfp_t gfp_mask = GFP_ATOMIC | __GFP_COMP | __GFP_NOWARN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750
Eric Sesterhennfb119932007-05-23 14:41:36 -07001751 if (blk_size < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 return -EFAULT;
1753 if (0 == blk_size)
1754 ++blk_size; /* don't know why */
FUJITA Tomonorib2ed6c62009-02-12 02:42:57 +09001755 /* round request up to next highest SG_SECTOR_SZ byte boundary */
1756 blk_size = ALIGN(blk_size, SG_SECTOR_SZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 SCSI_LOG_TIMEOUT(4, printk("sg_build_indirect: buff_size=%d, blk_size=%d\n",
1758 buff_size, blk_size));
Mike Christied6b10342005-11-08 04:06:41 -06001759
1760 /* N.B. ret_sz carried into this block ... */
1761 mx_sc_elems = sg_build_sgat(schp, sfp, sg_tablesize);
1762 if (mx_sc_elems < 0)
1763 return mx_sc_elems; /* most likely -ENOMEM */
1764
Douglas Gilbert6460e752006-09-20 18:20:49 -04001765 num = scatter_elem_sz;
1766 if (unlikely(num != scatter_elem_sz_prev)) {
1767 if (num < PAGE_SIZE) {
1768 scatter_elem_sz = PAGE_SIZE;
1769 scatter_elem_sz_prev = PAGE_SIZE;
1770 } else
1771 scatter_elem_sz_prev = num;
1772 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001773
1774 if (sfp->low_dma)
1775 gfp_mask |= GFP_DMA;
1776
1777 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
1778 gfp_mask |= __GFP_ZERO;
1779
1780 order = get_order(num);
1781retry:
1782 ret_sz = 1 << (PAGE_SHIFT + order);
1783
1784 for (k = 0, rem_sz = blk_size; rem_sz > 0 && k < mx_sc_elems;
1785 k++, rem_sz -= ret_sz) {
1786
Douglas Gilbert6460e752006-09-20 18:20:49 -04001787 num = (rem_sz > scatter_elem_sz_prev) ?
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001788 scatter_elem_sz_prev : rem_sz;
1789
1790 schp->pages[k] = alloc_pages(gfp_mask, order);
1791 if (!schp->pages[k])
1792 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
Douglas Gilbert6460e752006-09-20 18:20:49 -04001794 if (num == scatter_elem_sz_prev) {
1795 if (unlikely(ret_sz > scatter_elem_sz_prev)) {
1796 scatter_elem_sz = ret_sz;
1797 scatter_elem_sz_prev = ret_sz;
1798 }
1799 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800
Douglas Gilbert7ca63cb2006-10-27 17:47:49 -04001801 SCSI_LOG_TIMEOUT(5, printk("sg_build_indirect: k=%d, num=%d, "
1802 "ret_sz=%d\n", k, num, ret_sz));
Mike Christied6b10342005-11-08 04:06:41 -06001803 } /* end of for loop */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001805 schp->page_order = order;
Mike Christied6b10342005-11-08 04:06:41 -06001806 schp->k_use_sg = k;
Douglas Gilbert7ca63cb2006-10-27 17:47:49 -04001807 SCSI_LOG_TIMEOUT(5, printk("sg_build_indirect: k_use_sg=%d, "
1808 "rem_sz=%d\n", k, rem_sz));
Mike Christied6b10342005-11-08 04:06:41 -06001809
1810 schp->bufflen = blk_size;
1811 if (rem_sz > 0) /* must have failed */
1812 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 return 0;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001814out:
1815 for (i = 0; i < k; i++)
Michal Schmidte71044e2009-09-03 14:27:08 +02001816 __free_pages(schp->pages[i], order);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001817
1818 if (--order >= 0)
1819 goto retry;
1820
1821 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822}
1823
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824static void
1825sg_remove_scat(Sg_scatter_hold * schp)
1826{
1827 SCSI_LOG_TIMEOUT(4, printk("sg_remove_scat: k_use_sg=%d\n", schp->k_use_sg));
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001828 if (schp->pages && schp->sglist_len > 0) {
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001829 if (!schp->dio_in_use) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 int k;
1831
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001832 for (k = 0; k < schp->k_use_sg && schp->pages[k]; k++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 SCSI_LOG_TIMEOUT(5, printk(
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001834 "sg_remove_scat: k=%d, pg=0x%p\n",
1835 k, schp->pages[k]));
1836 __free_pages(schp->pages[k], schp->page_order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 }
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001838
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001839 kfree(schp->pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 }
Mike Christied6b10342005-11-08 04:06:41 -06001841 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 memset(schp, 0, sizeof (*schp));
1843}
1844
1845static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846sg_read_oxfer(Sg_request * srp, char __user *outp, int num_read_xfer)
1847{
1848 Sg_scatter_hold *schp = &srp->data;
Mike Christied6b10342005-11-08 04:06:41 -06001849 int k, num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850
1851 SCSI_LOG_TIMEOUT(4, printk("sg_read_oxfer: num_read_xfer=%d\n",
1852 num_read_xfer));
1853 if ((!outp) || (num_read_xfer <= 0))
1854 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001856 num = 1 << (PAGE_SHIFT + schp->page_order);
1857 for (k = 0; k < schp->k_use_sg && schp->pages[k]; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06001858 if (num > num_read_xfer) {
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001859 if (__copy_to_user(outp, page_address(schp->pages[k]),
Mike Christied6b10342005-11-08 04:06:41 -06001860 num_read_xfer))
1861 return -EFAULT;
1862 break;
1863 } else {
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001864 if (__copy_to_user(outp, page_address(schp->pages[k]),
Mike Christied6b10342005-11-08 04:06:41 -06001865 num))
1866 return -EFAULT;
1867 num_read_xfer -= num;
1868 if (num_read_xfer <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 break;
Mike Christied6b10342005-11-08 04:06:41 -06001870 outp += num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 }
Mike Christied6b10342005-11-08 04:06:41 -06001873
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 return 0;
1875}
1876
1877static void
1878sg_build_reserve(Sg_fd * sfp, int req_size)
1879{
1880 Sg_scatter_hold *schp = &sfp->reserve;
1881
1882 SCSI_LOG_TIMEOUT(4, printk("sg_build_reserve: req_size=%d\n", req_size));
1883 do {
1884 if (req_size < PAGE_SIZE)
1885 req_size = PAGE_SIZE;
1886 if (0 == sg_build_indirect(schp, sfp, req_size))
1887 return;
1888 else
1889 sg_remove_scat(schp);
1890 req_size >>= 1; /* divide by 2 */
1891 } while (req_size > (PAGE_SIZE / 2));
1892}
1893
1894static void
1895sg_link_reserve(Sg_fd * sfp, Sg_request * srp, int size)
1896{
1897 Sg_scatter_hold *req_schp = &srp->data;
1898 Sg_scatter_hold *rsv_schp = &sfp->reserve;
Mike Christied6b10342005-11-08 04:06:41 -06001899 int k, num, rem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900
1901 srp->res_used = 1;
1902 SCSI_LOG_TIMEOUT(4, printk("sg_link_reserve: size=%d\n", size));
Brian Kingeca7be52006-02-14 12:42:24 -06001903 rem = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001905 num = 1 << (PAGE_SHIFT + rsv_schp->page_order);
1906 for (k = 0; k < rsv_schp->k_use_sg; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06001907 if (rem <= num) {
Mike Christied6b10342005-11-08 04:06:41 -06001908 req_schp->k_use_sg = k + 1;
1909 req_schp->sglist_len = rsv_schp->sglist_len;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001910 req_schp->pages = rsv_schp->pages;
Mike Christied6b10342005-11-08 04:06:41 -06001911
1912 req_schp->bufflen = size;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001913 req_schp->page_order = rsv_schp->page_order;
Mike Christied6b10342005-11-08 04:06:41 -06001914 break;
1915 } else
1916 rem -= num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 }
Mike Christied6b10342005-11-08 04:06:41 -06001918
1919 if (k >= rsv_schp->k_use_sg)
1920 SCSI_LOG_TIMEOUT(1, printk("sg_link_reserve: BAD size\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921}
1922
1923static void
1924sg_unlink_reserve(Sg_fd * sfp, Sg_request * srp)
1925{
1926 Sg_scatter_hold *req_schp = &srp->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927
1928 SCSI_LOG_TIMEOUT(4, printk("sg_unlink_reserve: req->k_use_sg=%d\n",
1929 (int) req_schp->k_use_sg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 req_schp->k_use_sg = 0;
1931 req_schp->bufflen = 0;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001932 req_schp->pages = NULL;
1933 req_schp->page_order = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 req_schp->sglist_len = 0;
1935 sfp->save_scat_len = 0;
1936 srp->res_used = 0;
1937}
1938
1939static Sg_request *
1940sg_get_rq_mark(Sg_fd * sfp, int pack_id)
1941{
1942 Sg_request *resp;
1943 unsigned long iflags;
1944
1945 write_lock_irqsave(&sfp->rq_list_lock, iflags);
1946 for (resp = sfp->headrp; resp; resp = resp->nextrp) {
1947 /* look for requests that are ready + not SG_IO owned */
1948 if ((1 == resp->done) && (!resp->sg_io_owned) &&
1949 ((-1 == pack_id) || (resp->header.pack_id == pack_id))) {
1950 resp->done = 2; /* guard against other readers */
1951 break;
1952 }
1953 }
1954 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1955 return resp;
1956}
1957
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958/* always adds to end of list */
1959static Sg_request *
1960sg_add_request(Sg_fd * sfp)
1961{
1962 int k;
1963 unsigned long iflags;
1964 Sg_request *resp;
1965 Sg_request *rp = sfp->req_arr;
1966
1967 write_lock_irqsave(&sfp->rq_list_lock, iflags);
1968 resp = sfp->headrp;
1969 if (!resp) {
1970 memset(rp, 0, sizeof (Sg_request));
1971 rp->parentfp = sfp;
1972 resp = rp;
1973 sfp->headrp = resp;
1974 } else {
1975 if (0 == sfp->cmd_q)
1976 resp = NULL; /* command queuing disallowed */
1977 else {
1978 for (k = 0; k < SG_MAX_QUEUE; ++k, ++rp) {
1979 if (!rp->parentfp)
1980 break;
1981 }
1982 if (k < SG_MAX_QUEUE) {
1983 memset(rp, 0, sizeof (Sg_request));
1984 rp->parentfp = sfp;
1985 while (resp->nextrp)
1986 resp = resp->nextrp;
1987 resp->nextrp = rp;
1988 resp = rp;
1989 } else
1990 resp = NULL;
1991 }
1992 }
1993 if (resp) {
1994 resp->nextrp = NULL;
cb59e842005-04-02 13:51:23 -06001995 resp->header.duration = jiffies_to_msecs(jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 }
1997 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1998 return resp;
1999}
2000
2001/* Return of 1 for found; 0 for not found */
2002static int
2003sg_remove_request(Sg_fd * sfp, Sg_request * srp)
2004{
2005 Sg_request *prev_rp;
2006 Sg_request *rp;
2007 unsigned long iflags;
2008 int res = 0;
2009
2010 if ((!sfp) || (!srp) || (!sfp->headrp))
2011 return res;
2012 write_lock_irqsave(&sfp->rq_list_lock, iflags);
2013 prev_rp = sfp->headrp;
2014 if (srp == prev_rp) {
2015 sfp->headrp = prev_rp->nextrp;
2016 prev_rp->parentfp = NULL;
2017 res = 1;
2018 } else {
2019 while ((rp = prev_rp->nextrp)) {
2020 if (srp == rp) {
2021 prev_rp->nextrp = rp->nextrp;
2022 rp->parentfp = NULL;
2023 res = 1;
2024 break;
2025 }
2026 prev_rp = rp;
2027 }
2028 }
2029 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
2030 return res;
2031}
2032
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033static Sg_fd *
2034sg_add_sfp(Sg_device * sdp, int dev)
2035{
2036 Sg_fd *sfp;
2037 unsigned long iflags;
Alan Stern44ec9542007-02-20 11:01:57 -05002038 int bufflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039
Mike Christied6b10342005-11-08 04:06:41 -06002040 sfp = kzalloc(sizeof(*sfp), GFP_ATOMIC | __GFP_NOWARN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 if (!sfp)
2042 return NULL;
Mike Christied6b10342005-11-08 04:06:41 -06002043
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 init_waitqueue_head(&sfp->read_wait);
2045 rwlock_init(&sfp->rq_list_lock);
2046
Tony Battersbyc6517b792009-01-21 14:45:50 -05002047 kref_init(&sfp->f_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 sfp->timeout = SG_DEFAULT_TIMEOUT;
2049 sfp->timeout_user = SG_DEFAULT_TIMEOUT_USER;
2050 sfp->force_packid = SG_DEF_FORCE_PACK_ID;
2051 sfp->low_dma = (SG_DEF_FORCE_LOW_DMA == 0) ?
2052 sdp->device->host->unchecked_isa_dma : 1;
2053 sfp->cmd_q = SG_DEF_COMMAND_Q;
2054 sfp->keep_orphan = SG_DEF_KEEP_ORPHAN;
2055 sfp->parentdp = sdp;
James Bottomley7c07d612007-08-05 13:36:11 -05002056 write_lock_irqsave(&sg_index_lock, iflags);
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002057 list_add_tail(&sfp->sfd_siblings, &sdp->sfds);
James Bottomley7c07d612007-08-05 13:36:11 -05002058 write_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 SCSI_LOG_TIMEOUT(3, printk("sg_add_sfp: sfp=0x%p\n", sfp));
Douglas Gilbert6460e752006-09-20 18:20:49 -04002060 if (unlikely(sg_big_buff != def_reserved_size))
2061 sg_big_buff = def_reserved_size;
2062
Alan Stern44ec9542007-02-20 11:01:57 -05002063 bufflen = min_t(int, sg_big_buff,
Martin K. Petersenae03bf62009-05-22 17:17:50 -04002064 queue_max_sectors(sdp->device->request_queue) * 512);
Alan Stern44ec9542007-02-20 11:01:57 -05002065 sg_build_reserve(sfp, bufflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 SCSI_LOG_TIMEOUT(3, printk("sg_add_sfp: bufflen=%d, k_use_sg=%d\n",
2067 sfp->reserve.bufflen, sfp->reserve.k_use_sg));
Tony Battersbyc6517b792009-01-21 14:45:50 -05002068
2069 kref_get(&sdp->d_ref);
2070 __module_get(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 return sfp;
2072}
2073
Tony Battersbyc6517b792009-01-21 14:45:50 -05002074static void sg_remove_sfp_usercontext(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075{
Tony Battersbyc6517b792009-01-21 14:45:50 -05002076 struct sg_fd *sfp = container_of(work, struct sg_fd, ew.work);
2077 struct sg_device *sdp = sfp->parentdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078
Tony Battersbyc6517b792009-01-21 14:45:50 -05002079 /* Cleanup any responses which were never read(). */
2080 while (sfp->headrp)
2081 sg_finish_rem_req(sfp->headrp);
2082
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 if (sfp->reserve.bufflen > 0) {
Tony Battersbyc6517b792009-01-21 14:45:50 -05002084 SCSI_LOG_TIMEOUT(6,
2085 printk("sg_remove_sfp: bufflen=%d, k_use_sg=%d\n",
2086 (int) sfp->reserve.bufflen,
2087 (int) sfp->reserve.k_use_sg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 sg_remove_scat(&sfp->reserve);
2089 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05002090
2091 SCSI_LOG_TIMEOUT(6,
2092 printk("sg_remove_sfp: %s, sfp=0x%p\n",
2093 sdp->disk->disk_name,
2094 sfp));
Mike Christied6b10342005-11-08 04:06:41 -06002095 kfree(sfp);
Tony Battersbyc6517b792009-01-21 14:45:50 -05002096
2097 scsi_device_put(sdp->device);
2098 sg_put_dev(sdp);
2099 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100}
2101
Tony Battersbyc6517b792009-01-21 14:45:50 -05002102static void sg_remove_sfp(struct kref *kref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103{
Tony Battersbyc6517b792009-01-21 14:45:50 -05002104 struct sg_fd *sfp = container_of(kref, struct sg_fd, f_ref);
2105 struct sg_device *sdp = sfp->parentdp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002106 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107
Tony Battersbyc6517b792009-01-21 14:45:50 -05002108 write_lock_irqsave(&sg_index_lock, iflags);
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002109 list_del(&sfp->sfd_siblings);
Tony Battersbyc6517b792009-01-21 14:45:50 -05002110 write_unlock_irqrestore(&sg_index_lock, iflags);
2111 wake_up_interruptible(&sdp->o_excl_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112
FUJITA Tomonori015640e2009-04-03 19:28:06 +09002113 INIT_WORK(&sfp->ew.work, sg_remove_sfp_usercontext);
2114 schedule_work(&sfp->ew.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115}
2116
2117static int
2118sg_res_in_use(Sg_fd * sfp)
2119{
2120 const Sg_request *srp;
2121 unsigned long iflags;
2122
2123 read_lock_irqsave(&sfp->rq_list_lock, iflags);
2124 for (srp = sfp->headrp; srp; srp = srp->nextrp)
2125 if (srp->res_used)
2126 break;
2127 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
2128 return srp ? 1 : 0;
2129}
2130
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131#ifdef CONFIG_SCSI_PROC_FS
2132static int
James Bottomley7c07d612007-08-05 13:36:11 -05002133sg_idr_max_id(int id, void *p, void *data)
2134{
2135 int *k = data;
2136
2137 if (*k < id)
2138 *k = id;
2139
2140 return 0;
2141}
2142
2143static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144sg_last_dev(void)
2145{
Tony Battersby53474c02008-01-22 15:25:49 -05002146 int k = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 unsigned long iflags;
2148
James Bottomley7c07d612007-08-05 13:36:11 -05002149 read_lock_irqsave(&sg_index_lock, iflags);
2150 idr_for_each(&sg_index_idr, sg_idr_max_id, &k);
2151 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 return k + 1; /* origin 1 */
2153}
2154#endif
2155
Tony Battersbyc6517b792009-01-21 14:45:50 -05002156/* must be called with sg_index_lock held */
2157static Sg_device *sg_lookup_dev(int dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158{
Tony Battersbyc6517b792009-01-21 14:45:50 -05002159 return idr_find(&sg_index_idr, dev);
2160}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161
Tony Battersbyc6517b792009-01-21 14:45:50 -05002162static Sg_device *sg_get_dev(int dev)
2163{
2164 struct sg_device *sdp;
2165 unsigned long flags;
2166
2167 read_lock_irqsave(&sg_index_lock, flags);
2168 sdp = sg_lookup_dev(dev);
2169 if (!sdp)
2170 sdp = ERR_PTR(-ENXIO);
2171 else if (sdp->detached) {
2172 /* If sdp->detached, then the refcount may already be 0, in
2173 * which case it would be a bug to do kref_get().
2174 */
2175 sdp = ERR_PTR(-ENODEV);
2176 } else
2177 kref_get(&sdp->d_ref);
2178 read_unlock_irqrestore(&sg_index_lock, flags);
James Bottomley7c07d612007-08-05 13:36:11 -05002179
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 return sdp;
2181}
2182
Tony Battersbyc6517b792009-01-21 14:45:50 -05002183static void sg_put_dev(struct sg_device *sdp)
2184{
2185 kref_put(&sdp->d_ref, sg_device_destroy);
2186}
2187
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188#ifdef CONFIG_SCSI_PROC_FS
2189
2190static struct proc_dir_entry *sg_proc_sgp = NULL;
2191
2192static char sg_proc_sg_dirname[] = "scsi/sg";
2193
2194static int sg_proc_seq_show_int(struct seq_file *s, void *v);
2195
2196static int sg_proc_single_open_adio(struct inode *inode, struct file *file);
2197static ssize_t sg_proc_write_adio(struct file *filp, const char __user *buffer,
2198 size_t count, loff_t *off);
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002199static const struct file_operations adio_fops = {
2200 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 .open = sg_proc_single_open_adio,
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002202 .read = seq_read,
2203 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 .write = sg_proc_write_adio,
2205 .release = single_release,
2206};
2207
2208static int sg_proc_single_open_dressz(struct inode *inode, struct file *file);
2209static ssize_t sg_proc_write_dressz(struct file *filp,
2210 const char __user *buffer, size_t count, loff_t *off);
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002211static const struct file_operations dressz_fops = {
2212 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 .open = sg_proc_single_open_dressz,
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002214 .read = seq_read,
2215 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 .write = sg_proc_write_dressz,
2217 .release = single_release,
2218};
2219
2220static int sg_proc_seq_show_version(struct seq_file *s, void *v);
2221static int sg_proc_single_open_version(struct inode *inode, struct file *file);
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002222static const struct file_operations version_fops = {
2223 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 .open = sg_proc_single_open_version,
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002225 .read = seq_read,
2226 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 .release = single_release,
2228};
2229
2230static int sg_proc_seq_show_devhdr(struct seq_file *s, void *v);
2231static int sg_proc_single_open_devhdr(struct inode *inode, struct file *file);
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002232static const struct file_operations devhdr_fops = {
2233 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 .open = sg_proc_single_open_devhdr,
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002235 .read = seq_read,
2236 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 .release = single_release,
2238};
2239
2240static int sg_proc_seq_show_dev(struct seq_file *s, void *v);
2241static int sg_proc_open_dev(struct inode *inode, struct file *file);
2242static void * dev_seq_start(struct seq_file *s, loff_t *pos);
2243static void * dev_seq_next(struct seq_file *s, void *v, loff_t *pos);
2244static void dev_seq_stop(struct seq_file *s, void *v);
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002245static const struct file_operations dev_fops = {
2246 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 .open = sg_proc_open_dev,
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002248 .read = seq_read,
2249 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 .release = seq_release,
2251};
James Morris88e9d342009-09-22 16:43:43 -07002252static const struct seq_operations dev_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 .start = dev_seq_start,
2254 .next = dev_seq_next,
2255 .stop = dev_seq_stop,
2256 .show = sg_proc_seq_show_dev,
2257};
2258
2259static int sg_proc_seq_show_devstrs(struct seq_file *s, void *v);
2260static int sg_proc_open_devstrs(struct inode *inode, struct file *file);
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002261static const struct file_operations devstrs_fops = {
2262 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 .open = sg_proc_open_devstrs,
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002264 .read = seq_read,
2265 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 .release = seq_release,
2267};
James Morris88e9d342009-09-22 16:43:43 -07002268static const struct seq_operations devstrs_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 .start = dev_seq_start,
2270 .next = dev_seq_next,
2271 .stop = dev_seq_stop,
2272 .show = sg_proc_seq_show_devstrs,
2273};
2274
2275static int sg_proc_seq_show_debug(struct seq_file *s, void *v);
2276static int sg_proc_open_debug(struct inode *inode, struct file *file);
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002277static const struct file_operations debug_fops = {
2278 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 .open = sg_proc_open_debug,
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002280 .read = seq_read,
2281 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 .release = seq_release,
2283};
James Morris88e9d342009-09-22 16:43:43 -07002284static const struct seq_operations debug_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 .start = dev_seq_start,
2286 .next = dev_seq_next,
2287 .stop = dev_seq_stop,
2288 .show = sg_proc_seq_show_debug,
2289};
2290
2291
2292struct sg_proc_leaf {
2293 const char * name;
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002294 const struct file_operations * fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295};
2296
2297static struct sg_proc_leaf sg_proc_leaf_arr[] = {
2298 {"allow_dio", &adio_fops},
2299 {"debug", &debug_fops},
2300 {"def_reserved_size", &dressz_fops},
2301 {"device_hdr", &devhdr_fops},
2302 {"devices", &dev_fops},
2303 {"device_strs", &devstrs_fops},
2304 {"version", &version_fops}
2305};
2306
2307static int
2308sg_proc_init(void)
2309{
Tobias Klauser6391a112006-06-08 22:23:48 -07002310 int num_leaves = ARRAY_SIZE(sg_proc_leaf_arr);
Al Virod161a132011-07-24 03:36:29 -04002311 int k;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312
Al Viro66600222005-09-28 22:32:57 +01002313 sg_proc_sgp = proc_mkdir(sg_proc_sg_dirname, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 if (!sg_proc_sgp)
2315 return 1;
2316 for (k = 0; k < num_leaves; ++k) {
Al Virod161a132011-07-24 03:36:29 -04002317 struct sg_proc_leaf *leaf = &sg_proc_leaf_arr[k];
2318 umode_t mask = leaf->fops->write ? S_IRUGO | S_IWUSR : S_IRUGO;
Denis V. Luneva9739092008-04-29 01:02:17 -07002319 proc_create(leaf->name, mask, sg_proc_sgp, leaf->fops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 }
2321 return 0;
2322}
2323
2324static void
2325sg_proc_cleanup(void)
2326{
2327 int k;
Tobias Klauser6391a112006-06-08 22:23:48 -07002328 int num_leaves = ARRAY_SIZE(sg_proc_leaf_arr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329
2330 if (!sg_proc_sgp)
2331 return;
2332 for (k = 0; k < num_leaves; ++k)
2333 remove_proc_entry(sg_proc_leaf_arr[k].name, sg_proc_sgp);
2334 remove_proc_entry(sg_proc_sg_dirname, NULL);
2335}
2336
2337
2338static int sg_proc_seq_show_int(struct seq_file *s, void *v)
2339{
2340 seq_printf(s, "%d\n", *((int *)s->private));
2341 return 0;
2342}
2343
2344static int sg_proc_single_open_adio(struct inode *inode, struct file *file)
2345{
2346 return single_open(file, sg_proc_seq_show_int, &sg_allow_dio);
2347}
2348
2349static ssize_t
2350sg_proc_write_adio(struct file *filp, const char __user *buffer,
2351 size_t count, loff_t *off)
2352{
Stephen Boyd7e95fff2012-01-10 15:42:34 -08002353 int err;
2354 unsigned long num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355
2356 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
2357 return -EACCES;
Stephen Boyd7e95fff2012-01-10 15:42:34 -08002358 err = kstrtoul_from_user(buffer, count, 0, &num);
2359 if (err)
2360 return err;
2361 sg_allow_dio = num ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 return count;
2363}
2364
2365static int sg_proc_single_open_dressz(struct inode *inode, struct file *file)
2366{
2367 return single_open(file, sg_proc_seq_show_int, &sg_big_buff);
2368}
2369
2370static ssize_t
2371sg_proc_write_dressz(struct file *filp, const char __user *buffer,
2372 size_t count, loff_t *off)
2373{
Stephen Boyd7e95fff2012-01-10 15:42:34 -08002374 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 unsigned long k = ULONG_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376
2377 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
2378 return -EACCES;
Stephen Boyd7e95fff2012-01-10 15:42:34 -08002379
2380 err = kstrtoul_from_user(buffer, count, 0, &k);
2381 if (err)
2382 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 if (k <= 1048576) { /* limit "big buff" to 1 MB */
2384 sg_big_buff = k;
2385 return count;
2386 }
2387 return -ERANGE;
2388}
2389
2390static int sg_proc_seq_show_version(struct seq_file *s, void *v)
2391{
2392 seq_printf(s, "%d\t%s [%s]\n", sg_version_num, SG_VERSION_STR,
2393 sg_version_date);
2394 return 0;
2395}
2396
2397static int sg_proc_single_open_version(struct inode *inode, struct file *file)
2398{
2399 return single_open(file, sg_proc_seq_show_version, NULL);
2400}
2401
2402static int sg_proc_seq_show_devhdr(struct seq_file *s, void *v)
2403{
2404 seq_printf(s, "host\tchan\tid\tlun\ttype\topens\tqdepth\tbusy\t"
2405 "online\n");
2406 return 0;
2407}
2408
2409static int sg_proc_single_open_devhdr(struct inode *inode, struct file *file)
2410{
2411 return single_open(file, sg_proc_seq_show_devhdr, NULL);
2412}
2413
2414struct sg_proc_deviter {
2415 loff_t index;
2416 size_t max;
2417};
2418
2419static void * dev_seq_start(struct seq_file *s, loff_t *pos)
2420{
2421 struct sg_proc_deviter * it = kmalloc(sizeof(*it), GFP_KERNEL);
2422
Jan Blunck729d70f2005-08-27 11:07:52 -07002423 s->private = it;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 if (! it)
2425 return NULL;
Jan Blunck729d70f2005-08-27 11:07:52 -07002426
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 it->index = *pos;
2428 it->max = sg_last_dev();
2429 if (it->index >= it->max)
Jan Blunck729d70f2005-08-27 11:07:52 -07002430 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 return it;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432}
2433
2434static void * dev_seq_next(struct seq_file *s, void *v, loff_t *pos)
2435{
Jan Blunck729d70f2005-08-27 11:07:52 -07002436 struct sg_proc_deviter * it = s->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437
2438 *pos = ++it->index;
2439 return (it->index < it->max) ? it : NULL;
2440}
2441
2442static void dev_seq_stop(struct seq_file *s, void *v)
2443{
Jan Blunck729d70f2005-08-27 11:07:52 -07002444 kfree(s->private);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445}
2446
2447static int sg_proc_open_dev(struct inode *inode, struct file *file)
2448{
2449 return seq_open(file, &dev_seq_ops);
2450}
2451
2452static int sg_proc_seq_show_dev(struct seq_file *s, void *v)
2453{
2454 struct sg_proc_deviter * it = (struct sg_proc_deviter *) v;
2455 Sg_device *sdp;
2456 struct scsi_device *scsidp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002457 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458
Tony Battersbyc6517b792009-01-21 14:45:50 -05002459 read_lock_irqsave(&sg_index_lock, iflags);
2460 sdp = it ? sg_lookup_dev(it->index) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 if (sdp && (scsidp = sdp->device) && (!sdp->detached))
2462 seq_printf(s, "%d\t%d\t%d\t%d\t%d\t%d\t%d\t%d\t%d\n",
2463 scsidp->host->host_no, scsidp->channel,
2464 scsidp->id, scsidp->lun, (int) scsidp->type,
2465 1,
2466 (int) scsidp->queue_depth,
2467 (int) scsidp->device_busy,
2468 (int) scsi_device_online(scsidp));
2469 else
2470 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 -05002471 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 return 0;
2473}
2474
2475static int sg_proc_open_devstrs(struct inode *inode, struct file *file)
2476{
2477 return seq_open(file, &devstrs_seq_ops);
2478}
2479
2480static int sg_proc_seq_show_devstrs(struct seq_file *s, void *v)
2481{
2482 struct sg_proc_deviter * it = (struct sg_proc_deviter *) v;
2483 Sg_device *sdp;
2484 struct scsi_device *scsidp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002485 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486
Tony Battersbyc6517b792009-01-21 14:45:50 -05002487 read_lock_irqsave(&sg_index_lock, iflags);
2488 sdp = it ? sg_lookup_dev(it->index) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 if (sdp && (scsidp = sdp->device) && (!sdp->detached))
2490 seq_printf(s, "%8.8s\t%16.16s\t%4.4s\n",
2491 scsidp->vendor, scsidp->model, scsidp->rev);
2492 else
2493 seq_printf(s, "<no active device>\n");
Tony Battersbyc6517b792009-01-21 14:45:50 -05002494 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 return 0;
2496}
2497
Tony Battersbyc6517b792009-01-21 14:45:50 -05002498/* must be called while holding sg_index_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499static void sg_proc_debug_helper(struct seq_file *s, Sg_device * sdp)
2500{
2501 int k, m, new_interface, blen, usg;
2502 Sg_request *srp;
2503 Sg_fd *fp;
2504 const sg_io_hdr_t *hp;
2505 const char * cp;
cb59e842005-04-02 13:51:23 -06002506 unsigned int ms;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002508 k = 0;
2509 list_for_each_entry(fp, &sdp->sfds, sfd_siblings) {
2510 k++;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002511 read_lock(&fp->rq_list_lock); /* irqs already disabled */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 seq_printf(s, " FD(%d): timeout=%dms bufflen=%d "
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002513 "(res)sgat=%d low_dma=%d\n", k,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 jiffies_to_msecs(fp->timeout),
2515 fp->reserve.bufflen,
2516 (int) fp->reserve.k_use_sg,
2517 (int) fp->low_dma);
2518 seq_printf(s, " cmd_q=%d f_packid=%d k_orphan=%d closed=%d\n",
2519 (int) fp->cmd_q, (int) fp->force_packid,
2520 (int) fp->keep_orphan, (int) fp->closed);
Tony Battersbyc6517b792009-01-21 14:45:50 -05002521 for (m = 0, srp = fp->headrp;
2522 srp != NULL;
2523 ++m, srp = srp->nextrp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 hp = &srp->header;
2525 new_interface = (hp->interface_id == '\0') ? 0 : 1;
2526 if (srp->res_used) {
2527 if (new_interface &&
2528 (SG_FLAG_MMAP_IO & hp->flags))
2529 cp = " mmap>> ";
2530 else
2531 cp = " rb>> ";
2532 } else {
2533 if (SG_INFO_DIRECT_IO_MASK & hp->info)
2534 cp = " dio>> ";
2535 else
2536 cp = " ";
2537 }
2538 seq_printf(s, cp);
Mike Christied6b10342005-11-08 04:06:41 -06002539 blen = srp->data.bufflen;
2540 usg = srp->data.k_use_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 seq_printf(s, srp->done ?
2542 ((1 == srp->done) ? "rcv:" : "fin:")
Mike Christied6b10342005-11-08 04:06:41 -06002543 : "act:");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 seq_printf(s, " id=%d blen=%d",
2545 srp->header.pack_id, blen);
2546 if (srp->done)
2547 seq_printf(s, " dur=%d", hp->duration);
cb59e842005-04-02 13:51:23 -06002548 else {
2549 ms = jiffies_to_msecs(jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 seq_printf(s, " t_o/elap=%d/%d",
cb59e842005-04-02 13:51:23 -06002551 (new_interface ? hp->timeout :
2552 jiffies_to_msecs(fp->timeout)),
2553 (ms > hp->duration ? ms - hp->duration : 0));
2554 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 seq_printf(s, "ms sgat=%d op=0x%02x\n", usg,
2556 (int) srp->data.cmd_opcode);
2557 }
2558 if (0 == m)
2559 seq_printf(s, " No requests active\n");
Tony Battersbyc6517b792009-01-21 14:45:50 -05002560 read_unlock(&fp->rq_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 }
2562}
2563
2564static int sg_proc_open_debug(struct inode *inode, struct file *file)
2565{
2566 return seq_open(file, &debug_seq_ops);
2567}
2568
2569static int sg_proc_seq_show_debug(struct seq_file *s, void *v)
2570{
2571 struct sg_proc_deviter * it = (struct sg_proc_deviter *) v;
2572 Sg_device *sdp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002573 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574
2575 if (it && (0 == it->index)) {
James Bottomley7c07d612007-08-05 13:36:11 -05002576 seq_printf(s, "max_active_device=%d(origin 1)\n",
2577 (int)it->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 seq_printf(s, " def_reserved_size=%d\n", sg_big_buff);
2579 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05002580
2581 read_lock_irqsave(&sg_index_lock, iflags);
2582 sdp = it ? sg_lookup_dev(it->index) : NULL;
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002583 if (sdp && !list_empty(&sdp->sfds)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 struct scsi_device *scsidp = sdp->device;
2585
Tony Battersbyc6517b792009-01-21 14:45:50 -05002586 seq_printf(s, " >>> device=%s ", sdp->disk->disk_name);
2587 if (sdp->detached)
2588 seq_printf(s, "detached pending close ");
2589 else
2590 seq_printf
2591 (s, "scsi%d chan=%d id=%d lun=%d em=%d",
2592 scsidp->host->host_no,
2593 scsidp->channel, scsidp->id,
2594 scsidp->lun,
2595 scsidp->host->hostt->emulated);
2596 seq_printf(s, " sg_tablesize=%d excl=%d\n",
2597 sdp->sg_tablesize, sdp->exclude);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 sg_proc_debug_helper(s, sdp);
2599 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05002600 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 return 0;
2602}
2603
2604#endif /* CONFIG_SCSI_PROC_FS */
2605
2606module_init(init_sg);
2607module_exit(exit_sg);