blob: 00baea1e2dbf1b973783cf868c3b742d6b23624c [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>
Jonathan Corbeteb09d3d2008-05-15 12:22:06 -060052#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54#include "scsi.h"
db9dff32005-04-03 14:53:59 -050055#include <scsi/scsi_dbg.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <scsi/scsi_host.h>
57#include <scsi/scsi_driver.h>
58#include <scsi/scsi_ioctl.h>
59#include <scsi/sg.h>
60
61#include "scsi_logging.h"
62
63#ifdef CONFIG_SCSI_PROC_FS
64#include <linux/proc_fs.h>
Douglas Gilbert7ca63cb2006-10-27 17:47:49 -040065static char *sg_version_date = "20061027";
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67static int sg_proc_init(void);
68static void sg_proc_cleanup(void);
69#endif
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#define SG_ALLOW_DIO_DEF 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73#define SG_MAX_DEVS 32768
74
75/*
76 * Suppose you want to calculate the formula muldiv(x,m,d)=int(x * m / d)
77 * Then when using 32 bit integers x * m may overflow during the calculation.
78 * Replacing muldiv(x) by muldiv(x)=((x % d) * m) / d + int(x / d) * m
79 * calculates the same, but prevents the overflow when both m and d
80 * are "small" numbers (like HZ and USER_HZ).
81 * Of course an overflow is inavoidable if the result of muldiv doesn't fit
82 * in 32 bits.
83 */
84#define MULDIV(X,MUL,DIV) ((((X % DIV) * MUL) / DIV) + ((X / DIV) * MUL))
85
86#define SG_DEFAULT_TIMEOUT MULDIV(SG_DEFAULT_TIMEOUT_USER, HZ, USER_HZ)
87
88int sg_big_buff = SG_DEF_RESERVED_SIZE;
89/* N.B. This variable is readable and writeable via
90 /proc/scsi/sg/def_reserved_size . Each time sg_open() is called a buffer
91 of this size (or less if there is not enough memory) will be reserved
92 for use by this file descriptor. [Deprecated usage: this variable is also
93 readable via /proc/sys/kernel/sg-big-buff if the sg driver is built into
94 the kernel (i.e. it is not a module).] */
95static int def_reserved_size = -1; /* picks up init parameter */
96static int sg_allow_dio = SG_ALLOW_DIO_DEF;
97
Douglas Gilbert6460e752006-09-20 18:20:49 -040098static int scatter_elem_sz = SG_SCATTER_SZ;
99static int scatter_elem_sz_prev = SG_SCATTER_SZ;
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#define SG_SECTOR_SZ 512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Tony Jonesee959b02008-02-22 00:13:36 +0100103static int sg_add(struct device *, struct class_interface *);
104static void sg_remove(struct device *, struct class_interface *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
James Bottomley7c07d612007-08-05 13:36:11 -0500106static DEFINE_IDR(sg_index_idr);
107static DEFINE_RWLOCK(sg_index_lock); /* Also used to lock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 file descriptor list for device */
109
110static struct class_interface sg_interface = {
Tony Jonesee959b02008-02-22 00:13:36 +0100111 .add_dev = sg_add,
112 .remove_dev = sg_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113};
114
115typedef struct sg_scatter_hold { /* holding area for scsi scatter gather info */
116 unsigned short k_use_sg; /* Count of kernel scatter-gather pieces */
FUJITA Tomonoriea312552007-08-06 00:31:24 +0900117 unsigned sglist_len; /* size of malloc'd scatter-gather list ++ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 unsigned bufflen; /* Size of (aggregate) data buffer */
FUJITA Tomonori10db10d2008-08-29 12:32:18 +0200119 struct page **pages;
120 int page_order;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 char dio_in_use; /* 0->indirect IO (or mmap), 1->dio */
122 unsigned char cmd_opcode; /* first byte of command */
123} Sg_scatter_hold;
124
125struct sg_device; /* forward declarations */
126struct sg_fd;
127
128typedef struct sg_request { /* SG_MAX_QUEUE requests outstanding per file */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 struct sg_request *nextrp; /* NULL -> tail request (slist) */
130 struct sg_fd *parentfp; /* NULL -> not in use */
131 Sg_scatter_hold data; /* hold buffer, perhaps scatter list */
132 sg_io_hdr_t header; /* scsi command+info, see <scsi/sg.h> */
Mike Christied6b10342005-11-08 04:06:41 -0600133 unsigned char sense_b[SCSI_SENSE_BUFFERSIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 char res_used; /* 1 -> using reserve buffer, 0 -> not ... */
135 char orphan; /* 1 -> drop on sight, 0 -> normal */
136 char sg_io_owned; /* 1 -> packet belongs to SG_IO */
137 volatile char done; /* 0->before bh, 1->before read, 2->read */
FUJITA Tomonori10865df2008-08-28 16:17:07 +0900138 struct request *rq;
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +0900139 struct bio *bio;
FUJITA Tomonoric96952e2009-02-04 11:36:27 +0900140 struct execute_work ew;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141} Sg_request;
142
143typedef struct sg_fd { /* holds the state of a file descriptor */
FUJITA Tomonori3442f802009-02-16 13:26:53 +0900144 struct list_head sfd_siblings;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 struct sg_device *parentdp; /* owning device */
146 wait_queue_head_t read_wait; /* queue read until command done */
147 rwlock_t rq_list_lock; /* protect access to list in req_arr */
148 int timeout; /* defaults to SG_DEFAULT_TIMEOUT */
149 int timeout_user; /* defaults to SG_DEFAULT_TIMEOUT_USER */
150 Sg_scatter_hold reserve; /* buffer held for this file descriptor */
151 unsigned save_scat_len; /* original length of trunc. scat. element */
152 Sg_request *headrp; /* head of request slist, NULL->empty */
153 struct fasync_struct *async_qp; /* used by asynchronous notification */
154 Sg_request req_arr[SG_MAX_QUEUE]; /* used as singly-linked list */
155 char low_dma; /* as in parent but possibly overridden to 1 */
156 char force_packid; /* 1 -> pack_id input to read(), 0 -> ignored */
157 volatile char closed; /* 1 -> fd closed but request(s) outstanding */
158 char cmd_q; /* 1 -> allow command queuing, 0 -> don't */
159 char next_cmd_len; /* 0 -> automatic (def), >0 -> use on next write() */
160 char keep_orphan; /* 0 -> drop orphan (def), 1 -> keep for read() */
161 char mmap_called; /* 0 -> mmap() never called on this fd */
Tony Battersbyc6517b72009-01-21 14:45:50 -0500162 struct kref f_ref;
163 struct execute_work ew;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164} Sg_fd;
165
166typedef struct sg_device { /* holds the state of each scsi generic device */
167 struct scsi_device *device;
168 wait_queue_head_t o_excl_wait; /* queue open() when O_EXCL in use */
169 int sg_tablesize; /* adapter's max scatter-gather table size */
James Bottomley7c07d612007-08-05 13:36:11 -0500170 u32 index; /* device index number */
FUJITA Tomonori3442f802009-02-16 13:26:53 +0900171 struct list_head sfds;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 volatile char detached; /* 0->attached, 1->detached pending removal */
173 volatile char exclude; /* opened for exclusive access */
174 char sgdebug; /* 0->off, 1->sense, 9->dump dev, 10-> all devs */
175 struct gendisk *disk;
176 struct cdev * cdev; /* char_dev [sysfs: /sys/cdev/major/sg<n>] */
Tony Battersbyc6517b72009-01-21 14:45:50 -0500177 struct kref d_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178} Sg_device;
179
Mike Christied6b10342005-11-08 04:06:41 -0600180/* tasklet or soft irq callback */
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +0900181static void sg_rq_end_io(struct request *rq, int uptodate);
FUJITA Tomonori10865df2008-08-28 16:17:07 +0900182static int sg_start_req(Sg_request *srp, unsigned char *cmd);
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +0900183static int sg_finish_rem_req(Sg_request * srp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184static int sg_build_indirect(Sg_scatter_hold * schp, Sg_fd * sfp, int buff_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185static ssize_t sg_new_read(Sg_fd * sfp, char __user *buf, size_t count,
186 Sg_request * srp);
Adel Gadllah0b07de82008-06-26 13:48:27 +0200187static ssize_t sg_new_write(Sg_fd *sfp, struct file *file,
188 const char __user *buf, size_t count, int blocking,
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500189 int read_only, int sg_io_owned, Sg_request **o_srp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190static int sg_common_write(Sg_fd * sfp, Sg_request * srp,
191 unsigned char *cmnd, int timeout, int blocking);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192static int sg_read_oxfer(Sg_request * srp, char __user *outp, int num_read_xfer);
193static void sg_remove_scat(Sg_scatter_hold * schp);
194static void sg_build_reserve(Sg_fd * sfp, int req_size);
195static void sg_link_reserve(Sg_fd * sfp, Sg_request * srp, int size);
196static void sg_unlink_reserve(Sg_fd * sfp, Sg_request * srp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197static Sg_fd *sg_add_sfp(Sg_device * sdp, int dev);
Tony Battersbyc6517b72009-01-21 14:45:50 -0500198static void sg_remove_sfp(struct kref *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199static Sg_request *sg_get_rq_mark(Sg_fd * sfp, int pack_id);
200static Sg_request *sg_add_request(Sg_fd * sfp);
201static int sg_remove_request(Sg_fd * sfp, Sg_request * srp);
202static int sg_res_in_use(Sg_fd * sfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203static Sg_device *sg_get_dev(int dev);
Tony Battersbyc6517b72009-01-21 14:45:50 -0500204static void sg_put_dev(Sg_device *sdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206#define SZ_SG_HEADER sizeof(struct sg_header)
207#define SZ_SG_IO_HDR sizeof(sg_io_hdr_t)
208#define SZ_SG_IOVEC sizeof(sg_iovec_t)
209#define SZ_SG_REQ_INFO sizeof(sg_req_info_t)
210
FUJITA Tomonori14e507b2008-07-26 18:03:24 +0900211static int sg_allow_access(struct file *filp, unsigned char *cmd)
212{
213 struct sg_fd *sfp = (struct sg_fd *)filp->private_data;
FUJITA Tomonori14e507b2008-07-26 18:03:24 +0900214
215 if (sfp->parentdp->device->type == TYPE_SCANNER)
216 return 0;
217
Jens Axboe018e0442009-06-26 16:27:10 +0200218 return blk_verify_command(cmd, filp->f_mode & FMODE_WRITE);
FUJITA Tomonori14e507b2008-07-26 18:03:24 +0900219}
220
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221static int
222sg_open(struct inode *inode, struct file *filp)
223{
224 int dev = iminor(inode);
225 int flags = filp->f_flags;
Mike Christied6b10342005-11-08 04:06:41 -0600226 struct request_queue *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 Sg_device *sdp;
228 Sg_fd *sfp;
229 int res;
230 int retval;
231
Jonathan Corbeteb09d3d2008-05-15 12:22:06 -0600232 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 nonseekable_open(inode, filp);
234 SCSI_LOG_TIMEOUT(3, printk("sg_open: dev=%d, flags=0x%x\n", dev, flags));
235 sdp = sg_get_dev(dev);
Tony Battersbyc6517b72009-01-21 14:45:50 -0500236 if (IS_ERR(sdp)) {
237 retval = PTR_ERR(sdp);
238 sdp = NULL;
239 goto sg_put;
Jonathan Corbeteb09d3d2008-05-15 12:22:06 -0600240 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242 /* This driver's module count bumped by fops_get in <linux/fs.h> */
243 /* Prevent the device driver from vanishing while we sleep */
244 retval = scsi_device_get(sdp->device);
Tony Battersbyc6517b72009-01-21 14:45:50 -0500245 if (retval)
246 goto sg_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Alan Sternbc4f2402010-06-17 10:41:42 -0400248 retval = scsi_autopm_get_device(sdp->device);
249 if (retval)
250 goto sdp_put;
251
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 if (!((flags & O_NONBLOCK) ||
253 scsi_block_when_processing_errors(sdp->device))) {
254 retval = -ENXIO;
255 /* we are in error recovery for this device */
256 goto error_out;
257 }
258
259 if (flags & O_EXCL) {
260 if (O_RDONLY == (flags & O_ACCMODE)) {
261 retval = -EPERM; /* Can't lock it with read only access */
262 goto error_out;
263 }
FUJITA Tomonori3442f802009-02-16 13:26:53 +0900264 if (!list_empty(&sdp->sfds) && (flags & O_NONBLOCK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 retval = -EBUSY;
266 goto error_out;
267 }
268 res = 0;
269 __wait_event_interruptible(sdp->o_excl_wait,
FUJITA Tomonori3442f802009-02-16 13:26:53 +0900270 ((!list_empty(&sdp->sfds) || sdp->exclude) ? 0 : (sdp->exclude = 1)), res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 if (res) {
272 retval = res; /* -ERESTARTSYS because signal hit process */
273 goto error_out;
274 }
275 } else if (sdp->exclude) { /* some other fd has an exclusive lock on dev */
276 if (flags & O_NONBLOCK) {
277 retval = -EBUSY;
278 goto error_out;
279 }
280 res = 0;
281 __wait_event_interruptible(sdp->o_excl_wait, (!sdp->exclude),
282 res);
283 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 Battersbyc6517b72009-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 Battersbyc6517b72009-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 Battersbyc6517b72009-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 Battersbyc6517b72009-01-21 14:45:50 -0500312 scsi_device_put(sdp->device);
Alan Sternbc4f2402010-06-17 10:41:42 -0400313 }
Tony Battersbyc6517b72009-01-21 14:45:50 -0500314sg_put:
315 if (sdp)
316 sg_put_dev(sdp);
Jonathan Corbeteb09d3d2008-05-15 12:22:06 -0600317 unlock_kernel();
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 Battersbyc6517b72009-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 Battersbyc6517b72009-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 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 while (1) {
cb59e842005-04-02 13:51:23 -0600399 retval = 0; /* following macro beats race condition */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 __wait_event_interruptible(sfp->read_wait,
cb59e842005-04-02 13:51:23 -0600401 (sdp->detached ||
402 (srp = sg_get_rq_mark(sfp, req_pack_id))),
403 retval);
404 if (sdp->detached) {
405 retval = -ENODEV;
406 goto free_old_hdr;
407 }
408 if (0 == retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 break;
cb59e842005-04-02 13:51:23 -0600410
411 /* -ERESTARTSYS as signal hit process */
412 goto free_old_hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 }
414 }
cb59e842005-04-02 13:51:23 -0600415 if (srp->header.interface_id != '\0') {
416 retval = sg_new_read(sfp, buf, count, srp);
417 goto free_old_hdr;
418 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
420 hp = &srp->header;
cb59e842005-04-02 13:51:23 -0600421 if (old_hdr == NULL) {
422 old_hdr = kmalloc(SZ_SG_HEADER, GFP_KERNEL);
423 if (! old_hdr) {
424 retval = -ENOMEM;
425 goto free_old_hdr;
426 }
427 }
428 memset(old_hdr, 0, SZ_SG_HEADER);
429 old_hdr->reply_len = (int) hp->timeout;
430 old_hdr->pack_len = old_hdr->reply_len; /* old, strange behaviour */
431 old_hdr->pack_id = hp->pack_id;
432 old_hdr->twelve_byte =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 ((srp->data.cmd_opcode >= 0xc0) && (12 == hp->cmd_len)) ? 1 : 0;
cb59e842005-04-02 13:51:23 -0600434 old_hdr->target_status = hp->masked_status;
435 old_hdr->host_status = hp->host_status;
436 old_hdr->driver_status = hp->driver_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 if ((CHECK_CONDITION & hp->masked_status) ||
438 (DRIVER_SENSE & hp->driver_status))
cb59e842005-04-02 13:51:23 -0600439 memcpy(old_hdr->sense_buffer, srp->sense_b,
440 sizeof (old_hdr->sense_buffer));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 switch (hp->host_status) {
442 /* This setup of 'result' is for backward compatibility and is best
443 ignored by the user who should use target, host + driver status */
444 case DID_OK:
445 case DID_PASSTHROUGH:
446 case DID_SOFT_ERROR:
cb59e842005-04-02 13:51:23 -0600447 old_hdr->result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 break;
449 case DID_NO_CONNECT:
450 case DID_BUS_BUSY:
451 case DID_TIME_OUT:
cb59e842005-04-02 13:51:23 -0600452 old_hdr->result = EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 break;
454 case DID_BAD_TARGET:
455 case DID_ABORT:
456 case DID_PARITY:
457 case DID_RESET:
458 case DID_BAD_INTR:
cb59e842005-04-02 13:51:23 -0600459 old_hdr->result = EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 break;
461 case DID_ERROR:
cb59e842005-04-02 13:51:23 -0600462 old_hdr->result = (srp->sense_b[0] == 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 hp->masked_status == GOOD) ? 0 : EIO;
464 break;
465 default:
cb59e842005-04-02 13:51:23 -0600466 old_hdr->result = EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 break;
468 }
469
470 /* Now copy the result back to the user buffer. */
471 if (count >= SZ_SG_HEADER) {
cb59e842005-04-02 13:51:23 -0600472 if (__copy_to_user(buf, old_hdr, SZ_SG_HEADER)) {
473 retval = -EFAULT;
474 goto free_old_hdr;
475 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 buf += SZ_SG_HEADER;
cb59e842005-04-02 13:51:23 -0600477 if (count > old_hdr->reply_len)
478 count = old_hdr->reply_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 if (count > SZ_SG_HEADER) {
cb59e842005-04-02 13:51:23 -0600480 if (sg_read_oxfer(srp, buf, count - SZ_SG_HEADER)) {
481 retval = -EFAULT;
482 goto free_old_hdr;
483 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 }
485 } else
cb59e842005-04-02 13:51:23 -0600486 count = (old_hdr->result == 0) ? 0 : -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 sg_finish_rem_req(srp);
cb59e842005-04-02 13:51:23 -0600488 retval = count;
489free_old_hdr:
Jesper Juhlc9475cb2005-11-07 01:01:26 -0800490 kfree(old_hdr);
cb59e842005-04-02 13:51:23 -0600491 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492}
493
494static ssize_t
495sg_new_read(Sg_fd * sfp, char __user *buf, size_t count, Sg_request * srp)
496{
497 sg_io_hdr_t *hp = &srp->header;
498 int err = 0;
499 int len;
500
501 if (count < SZ_SG_IO_HDR) {
502 err = -EINVAL;
503 goto err_out;
504 }
505 hp->sb_len_wr = 0;
506 if ((hp->mx_sb_len > 0) && hp->sbp) {
507 if ((CHECK_CONDITION & hp->masked_status) ||
508 (DRIVER_SENSE & hp->driver_status)) {
Mike Christied6b10342005-11-08 04:06:41 -0600509 int sb_len = SCSI_SENSE_BUFFERSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 sb_len = (hp->mx_sb_len > sb_len) ? sb_len : hp->mx_sb_len;
511 len = 8 + (int) srp->sense_b[7]; /* Additional sense length field */
512 len = (len > sb_len) ? sb_len : len;
513 if (copy_to_user(hp->sbp, srp->sense_b, len)) {
514 err = -EFAULT;
515 goto err_out;
516 }
517 hp->sb_len_wr = len;
518 }
519 }
520 if (hp->masked_status || hp->host_status || hp->driver_status)
521 hp->info |= SG_INFO_CHECK;
522 if (copy_to_user(buf, hp, SZ_SG_IO_HDR)) {
523 err = -EFAULT;
524 goto err_out;
525 }
FUJITA Tomonori0b6cb262008-09-02 22:50:07 +0900526err_out:
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +0900527 err = sg_finish_rem_req(srp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 return (0 == err) ? count : err;
529}
530
531static ssize_t
532sg_write(struct file *filp, const char __user *buf, size_t count, loff_t * ppos)
533{
534 int mxsize, cmd_size, k;
535 int input_size, blocking;
536 unsigned char opcode;
537 Sg_device *sdp;
538 Sg_fd *sfp;
539 Sg_request *srp;
540 struct sg_header old_hdr;
541 sg_io_hdr_t *hp;
Mike Christied6b10342005-11-08 04:06:41 -0600542 unsigned char cmnd[MAX_COMMAND_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
544 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
545 return -ENXIO;
546 SCSI_LOG_TIMEOUT(3, printk("sg_write: %s, count=%d\n",
547 sdp->disk->disk_name, (int) count));
548 if (sdp->detached)
549 return -ENODEV;
550 if (!((filp->f_flags & O_NONBLOCK) ||
551 scsi_block_when_processing_errors(sdp->device)))
552 return -ENXIO;
553
554 if (!access_ok(VERIFY_READ, buf, count))
555 return -EFAULT; /* protects following copy_from_user()s + get_user()s */
556 if (count < SZ_SG_HEADER)
557 return -EIO;
558 if (__copy_from_user(&old_hdr, buf, SZ_SG_HEADER))
559 return -EFAULT;
560 blocking = !(filp->f_flags & O_NONBLOCK);
561 if (old_hdr.reply_len < 0)
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500562 return sg_new_write(sfp, filp, buf, count,
563 blocking, 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 if (count < (SZ_SG_HEADER + 6))
565 return -EIO; /* The minimum scsi command length is 6 bytes. */
566
567 if (!(srp = sg_add_request(sfp))) {
568 SCSI_LOG_TIMEOUT(1, printk("sg_write: queue full\n"));
569 return -EDOM;
570 }
571 buf += SZ_SG_HEADER;
572 __get_user(opcode, buf);
573 if (sfp->next_cmd_len > 0) {
574 if (sfp->next_cmd_len > MAX_COMMAND_SIZE) {
575 SCSI_LOG_TIMEOUT(1, printk("sg_write: command length too long\n"));
576 sfp->next_cmd_len = 0;
577 sg_remove_request(sfp, srp);
578 return -EIO;
579 }
580 cmd_size = sfp->next_cmd_len;
581 sfp->next_cmd_len = 0; /* reset so only this write() effected */
582 } else {
583 cmd_size = COMMAND_SIZE(opcode); /* based on SCSI command group */
584 if ((opcode >= 0xc0) && old_hdr.twelve_byte)
585 cmd_size = 12;
586 }
587 SCSI_LOG_TIMEOUT(4, printk(
588 "sg_write: scsi opcode=0x%02x, cmd_size=%d\n", (int) opcode, cmd_size));
589/* Determine buffer size. */
590 input_size = count - cmd_size;
591 mxsize = (input_size > old_hdr.reply_len) ? input_size : old_hdr.reply_len;
592 mxsize -= SZ_SG_HEADER;
593 input_size -= SZ_SG_HEADER;
594 if (input_size < 0) {
595 sg_remove_request(sfp, srp);
596 return -EIO; /* User did not pass enough bytes for this command. */
597 }
598 hp = &srp->header;
599 hp->interface_id = '\0'; /* indicator of old interface tunnelled */
600 hp->cmd_len = (unsigned char) cmd_size;
601 hp->iovec_count = 0;
602 hp->mx_sb_len = 0;
603 if (input_size > 0)
604 hp->dxfer_direction = (old_hdr.reply_len > SZ_SG_HEADER) ?
605 SG_DXFER_TO_FROM_DEV : SG_DXFER_TO_DEV;
606 else
607 hp->dxfer_direction = (mxsize > 0) ? SG_DXFER_FROM_DEV : SG_DXFER_NONE;
608 hp->dxfer_len = mxsize;
FUJITA Tomonorifad7f012008-09-02 16:20:20 +0900609 if (hp->dxfer_direction == SG_DXFER_TO_DEV)
610 hp->dxferp = (char __user *)buf + cmd_size;
611 else
612 hp->dxferp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 hp->sbp = NULL;
614 hp->timeout = old_hdr.reply_len; /* structure abuse ... */
615 hp->flags = input_size; /* structure abuse ... */
616 hp->pack_id = old_hdr.pack_id;
617 hp->usr_ptr = NULL;
618 if (__copy_from_user(cmnd, buf, cmd_size))
619 return -EFAULT;
620 /*
621 * SG_DXFER_TO_FROM_DEV is functionally equivalent to SG_DXFER_FROM_DEV,
622 * but is is possible that the app intended SG_DXFER_TO_DEV, because there
623 * is a non-zero input_size, so emit a warning.
624 */
Andi Kleeneaa3e222008-01-13 17:41:43 +0100625 if (hp->dxfer_direction == SG_DXFER_TO_FROM_DEV) {
626 static char cmd[TASK_COMM_LEN];
627 if (strcmp(current->comm, cmd) && printk_ratelimit()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 printk(KERN_WARNING
629 "sg_write: data in/out %d/%d bytes for SCSI command 0x%x--"
Joe Perchesad361c92009-07-06 13:05:40 -0700630 "guessing data in;\n "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 "program %s not setting count and/or reply_len properly\n",
632 old_hdr.reply_len - (int)SZ_SG_HEADER,
633 input_size, (unsigned int) cmnd[0],
634 current->comm);
Andi Kleeneaa3e222008-01-13 17:41:43 +0100635 strcpy(cmd, current->comm);
636 }
637 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 k = sg_common_write(sfp, srp, cmnd, sfp->timeout, blocking);
639 return (k < 0) ? k : count;
640}
641
642static ssize_t
Adel Gadllah0b07de82008-06-26 13:48:27 +0200643sg_new_write(Sg_fd *sfp, struct file *file, const char __user *buf,
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500644 size_t count, int blocking, int read_only, int sg_io_owned,
Adel Gadllah0b07de82008-06-26 13:48:27 +0200645 Sg_request **o_srp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646{
647 int k;
648 Sg_request *srp;
649 sg_io_hdr_t *hp;
Mike Christied6b10342005-11-08 04:06:41 -0600650 unsigned char cmnd[MAX_COMMAND_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 int timeout;
652 unsigned long ul_timeout;
653
654 if (count < SZ_SG_IO_HDR)
655 return -EINVAL;
656 if (!access_ok(VERIFY_READ, buf, count))
657 return -EFAULT; /* protects following copy_from_user()s + get_user()s */
658
659 sfp->cmd_q = 1; /* when sg_io_hdr seen, set command queuing on */
660 if (!(srp = sg_add_request(sfp))) {
661 SCSI_LOG_TIMEOUT(1, printk("sg_new_write: queue full\n"));
662 return -EDOM;
663 }
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500664 srp->sg_io_owned = sg_io_owned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 hp = &srp->header;
666 if (__copy_from_user(hp, buf, SZ_SG_IO_HDR)) {
667 sg_remove_request(sfp, srp);
668 return -EFAULT;
669 }
670 if (hp->interface_id != 'S') {
671 sg_remove_request(sfp, srp);
672 return -ENOSYS;
673 }
674 if (hp->flags & SG_FLAG_MMAP_IO) {
675 if (hp->dxfer_len > sfp->reserve.bufflen) {
676 sg_remove_request(sfp, srp);
677 return -ENOMEM; /* MMAP_IO size must fit in reserve buffer */
678 }
679 if (hp->flags & SG_FLAG_DIRECT_IO) {
680 sg_remove_request(sfp, srp);
681 return -EINVAL; /* either MMAP_IO or DIRECT_IO (not both) */
682 }
683 if (sg_res_in_use(sfp)) {
684 sg_remove_request(sfp, srp);
685 return -EBUSY; /* reserve buffer already being used */
686 }
687 }
688 ul_timeout = msecs_to_jiffies(srp->header.timeout);
689 timeout = (ul_timeout < INT_MAX) ? ul_timeout : INT_MAX;
690 if ((!hp->cmdp) || (hp->cmd_len < 6) || (hp->cmd_len > sizeof (cmnd))) {
691 sg_remove_request(sfp, srp);
692 return -EMSGSIZE;
693 }
694 if (!access_ok(VERIFY_READ, hp->cmdp, hp->cmd_len)) {
695 sg_remove_request(sfp, srp);
696 return -EFAULT; /* protects following copy_from_user()s + get_user()s */
697 }
698 if (__copy_from_user(cmnd, hp->cmdp, hp->cmd_len)) {
699 sg_remove_request(sfp, srp);
700 return -EFAULT;
701 }
FUJITA Tomonori14e507b2008-07-26 18:03:24 +0900702 if (read_only && sg_allow_access(file, cmnd)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 sg_remove_request(sfp, srp);
704 return -EPERM;
705 }
706 k = sg_common_write(sfp, srp, cmnd, timeout, blocking);
707 if (k < 0)
708 return k;
709 if (o_srp)
710 *o_srp = srp;
711 return count;
712}
713
714static int
715sg_common_write(Sg_fd * sfp, Sg_request * srp,
716 unsigned char *cmnd, int timeout, int blocking)
717{
Mike Christied6b10342005-11-08 04:06:41 -0600718 int k, data_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 Sg_device *sdp = sfp->parentdp;
720 sg_io_hdr_t *hp = &srp->header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
722 srp->data.cmd_opcode = cmnd[0]; /* hold opcode of command */
723 hp->status = 0;
724 hp->masked_status = 0;
725 hp->msg_status = 0;
726 hp->info = 0;
727 hp->host_status = 0;
728 hp->driver_status = 0;
729 hp->resid = 0;
730 SCSI_LOG_TIMEOUT(4, printk("sg_common_write: scsi opcode=0x%02x, cmd_size=%d\n",
731 (int) cmnd[0], (int) hp->cmd_len));
732
FUJITA Tomonori10865df2008-08-28 16:17:07 +0900733 k = sg_start_req(srp, cmnd);
734 if (k) {
Douglas Gilbert7ca63cb2006-10-27 17:47:49 -0400735 SCSI_LOG_TIMEOUT(1, printk("sg_common_write: start_req err=%d\n", k));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 sg_finish_rem_req(srp);
737 return k; /* probably out of space --> ENOMEM */
738 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 if (sdp->detached) {
FUJITA Tomonoricaf19d32010-07-22 09:36:51 +0900740 if (srp->bio)
741 blk_end_request_all(srp->rq, -EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 sg_finish_rem_req(srp);
743 return -ENODEV;
744 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 switch (hp->dxfer_direction) {
747 case SG_DXFER_TO_FROM_DEV:
748 case SG_DXFER_FROM_DEV:
Mike Christied6b10342005-11-08 04:06:41 -0600749 data_dir = DMA_FROM_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 break;
751 case SG_DXFER_TO_DEV:
Mike Christied6b10342005-11-08 04:06:41 -0600752 data_dir = DMA_TO_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 break;
754 case SG_DXFER_UNKNOWN:
Mike Christied6b10342005-11-08 04:06:41 -0600755 data_dir = DMA_BIDIRECTIONAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 break;
757 default:
Mike Christied6b10342005-11-08 04:06:41 -0600758 data_dir = DMA_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 break;
760 }
cb59e842005-04-02 13:51:23 -0600761 hp->duration = jiffies_to_msecs(jiffies);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +0200762
763 srp->rq->timeout = timeout;
Tony Battersbyc6517b72009-01-21 14:45:50 -0500764 kref_get(&sfp->f_ref); /* sg_rq_end_io() does kref_put(). */
FUJITA Tomonori10db10d2008-08-29 12:32:18 +0200765 blk_execute_rq_nowait(sdp->device->request_queue, sdp->disk,
766 srp->rq, 1, sg_rq_end_io);
767 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768}
769
770static int
Arnd Bergmannf4927c42010-04-27 00:24:01 +0200771sg_ioctl(struct file *filp, unsigned int cmd_in, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772{
773 void __user *p = (void __user *)arg;
774 int __user *ip = p;
775 int result, val, read_only;
776 Sg_device *sdp;
777 Sg_fd *sfp;
778 Sg_request *srp;
779 unsigned long iflags;
780
781 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
782 return -ENXIO;
FUJITA Tomonoriabf54392008-08-16 14:10:05 +0900783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 SCSI_LOG_TIMEOUT(3, printk("sg_ioctl: %s, cmd=0x%x\n",
785 sdp->disk->disk_name, (int) cmd_in));
786 read_only = (O_RDWR != (filp->f_flags & O_ACCMODE));
787
788 switch (cmd_in) {
789 case SG_IO:
790 {
791 int blocking = 1; /* ignore O_NONBLOCK flag */
792
793 if (sdp->detached)
794 return -ENODEV;
795 if (!scsi_block_when_processing_errors(sdp->device))
796 return -ENXIO;
797 if (!access_ok(VERIFY_WRITE, p, SZ_SG_IO_HDR))
798 return -EFAULT;
799 result =
Adel Gadllah0b07de82008-06-26 13:48:27 +0200800 sg_new_write(sfp, filp, p, SZ_SG_IO_HDR,
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500801 blocking, read_only, 1, &srp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 if (result < 0)
803 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 while (1) {
805 result = 0; /* following macro to beat race condition */
806 __wait_event_interruptible(sfp->read_wait,
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500807 (srp->done || sdp->detached),
808 result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 if (sdp->detached)
810 return -ENODEV;
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500811 write_lock_irq(&sfp->rq_list_lock);
812 if (srp->done) {
813 srp->done = 2;
814 write_unlock_irq(&sfp->rq_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 break;
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500816 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 srp->orphan = 1;
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500818 write_unlock_irq(&sfp->rq_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 return result; /* -ERESTARTSYS because signal hit process */
820 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 result = sg_new_read(sfp, p, SZ_SG_IO_HDR, srp);
822 return (result < 0) ? result : 0;
823 }
824 case SG_SET_TIMEOUT:
825 result = get_user(val, ip);
826 if (result)
827 return result;
828 if (val < 0)
829 return -EIO;
830 if (val >= MULDIV (INT_MAX, USER_HZ, HZ))
831 val = MULDIV (INT_MAX, USER_HZ, HZ);
832 sfp->timeout_user = val;
833 sfp->timeout = MULDIV (val, HZ, USER_HZ);
834
835 return 0;
836 case SG_GET_TIMEOUT: /* N.B. User receives timeout as return value */
837 /* strange ..., for backward compatibility */
838 return sfp->timeout_user;
839 case SG_SET_FORCE_LOW_DMA:
840 result = get_user(val, ip);
841 if (result)
842 return result;
843 if (val) {
844 sfp->low_dma = 1;
845 if ((0 == sfp->low_dma) && (0 == sg_res_in_use(sfp))) {
846 val = (int) sfp->reserve.bufflen;
847 sg_remove_scat(&sfp->reserve);
848 sg_build_reserve(sfp, val);
849 }
850 } else {
851 if (sdp->detached)
852 return -ENODEV;
853 sfp->low_dma = sdp->device->host->unchecked_isa_dma;
854 }
855 return 0;
856 case SG_GET_LOW_DMA:
857 return put_user((int) sfp->low_dma, ip);
858 case SG_GET_SCSI_ID:
859 if (!access_ok(VERIFY_WRITE, p, sizeof (sg_scsi_id_t)))
860 return -EFAULT;
861 else {
862 sg_scsi_id_t __user *sg_idp = p;
863
864 if (sdp->detached)
865 return -ENODEV;
866 __put_user((int) sdp->device->host->host_no,
867 &sg_idp->host_no);
868 __put_user((int) sdp->device->channel,
869 &sg_idp->channel);
870 __put_user((int) sdp->device->id, &sg_idp->scsi_id);
871 __put_user((int) sdp->device->lun, &sg_idp->lun);
872 __put_user((int) sdp->device->type, &sg_idp->scsi_type);
873 __put_user((short) sdp->device->host->cmd_per_lun,
874 &sg_idp->h_cmd_per_lun);
875 __put_user((short) sdp->device->queue_depth,
876 &sg_idp->d_queue_depth);
877 __put_user(0, &sg_idp->unused[0]);
878 __put_user(0, &sg_idp->unused[1]);
879 return 0;
880 }
881 case SG_SET_FORCE_PACK_ID:
882 result = get_user(val, ip);
883 if (result)
884 return result;
885 sfp->force_packid = val ? 1 : 0;
886 return 0;
887 case SG_GET_PACK_ID:
888 if (!access_ok(VERIFY_WRITE, ip, sizeof (int)))
889 return -EFAULT;
890 read_lock_irqsave(&sfp->rq_list_lock, iflags);
891 for (srp = sfp->headrp; srp; srp = srp->nextrp) {
892 if ((1 == srp->done) && (!srp->sg_io_owned)) {
893 read_unlock_irqrestore(&sfp->rq_list_lock,
894 iflags);
895 __put_user(srp->header.pack_id, ip);
896 return 0;
897 }
898 }
899 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
900 __put_user(-1, ip);
901 return 0;
902 case SG_GET_NUM_WAITING:
903 read_lock_irqsave(&sfp->rq_list_lock, iflags);
904 for (val = 0, srp = sfp->headrp; srp; srp = srp->nextrp) {
905 if ((1 == srp->done) && (!srp->sg_io_owned))
906 ++val;
907 }
908 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
909 return put_user(val, ip);
910 case SG_GET_SG_TABLESIZE:
911 return put_user(sdp->sg_tablesize, ip);
912 case SG_SET_RESERVED_SIZE:
913 result = get_user(val, ip);
914 if (result)
915 return result;
916 if (val < 0)
917 return -EINVAL;
Alan Stern44ec9542007-02-20 11:01:57 -0500918 val = min_t(int, val,
Martin K. Petersenae03bf62009-05-22 17:17:50 -0400919 queue_max_sectors(sdp->device->request_queue) * 512);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 if (val != sfp->reserve.bufflen) {
921 if (sg_res_in_use(sfp) || sfp->mmap_called)
922 return -EBUSY;
923 sg_remove_scat(&sfp->reserve);
924 sg_build_reserve(sfp, val);
925 }
926 return 0;
927 case SG_GET_RESERVED_SIZE:
Alan Stern44ec9542007-02-20 11:01:57 -0500928 val = min_t(int, sfp->reserve.bufflen,
Martin K. Petersenae03bf62009-05-22 17:17:50 -0400929 queue_max_sectors(sdp->device->request_queue) * 512);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 return put_user(val, ip);
931 case SG_SET_COMMAND_Q:
932 result = get_user(val, ip);
933 if (result)
934 return result;
935 sfp->cmd_q = val ? 1 : 0;
936 return 0;
937 case SG_GET_COMMAND_Q:
938 return put_user((int) sfp->cmd_q, ip);
939 case SG_SET_KEEP_ORPHAN:
940 result = get_user(val, ip);
941 if (result)
942 return result;
943 sfp->keep_orphan = val;
944 return 0;
945 case SG_GET_KEEP_ORPHAN:
946 return put_user((int) sfp->keep_orphan, ip);
947 case SG_NEXT_CMD_LEN:
948 result = get_user(val, ip);
949 if (result)
950 return result;
951 sfp->next_cmd_len = (val > 0) ? val : 0;
952 return 0;
953 case SG_GET_VERSION_NUM:
954 return put_user(sg_version_num, ip);
955 case SG_GET_ACCESS_COUNT:
956 /* faked - we don't have a real access count anymore */
957 val = (sdp->device ? 1 : 0);
958 return put_user(val, ip);
959 case SG_GET_REQUEST_TABLE:
960 if (!access_ok(VERIFY_WRITE, p, SZ_SG_REQ_INFO * SG_MAX_QUEUE))
961 return -EFAULT;
962 else {
cb59e842005-04-02 13:51:23 -0600963 sg_req_info_t *rinfo;
964 unsigned int ms;
965
966 rinfo = kmalloc(SZ_SG_REQ_INFO * SG_MAX_QUEUE,
967 GFP_KERNEL);
968 if (!rinfo)
969 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 read_lock_irqsave(&sfp->rq_list_lock, iflags);
971 for (srp = sfp->headrp, val = 0; val < SG_MAX_QUEUE;
972 ++val, srp = srp ? srp->nextrp : srp) {
973 memset(&rinfo[val], 0, SZ_SG_REQ_INFO);
974 if (srp) {
975 rinfo[val].req_state = srp->done + 1;
976 rinfo[val].problem =
977 srp->header.masked_status &
978 srp->header.host_status &
979 srp->header.driver_status;
cb59e842005-04-02 13:51:23 -0600980 if (srp->done)
981 rinfo[val].duration =
982 srp->header.duration;
983 else {
984 ms = jiffies_to_msecs(jiffies);
985 rinfo[val].duration =
986 (ms > srp->header.duration) ?
987 (ms - srp->header.duration) : 0;
988 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 rinfo[val].orphan = srp->orphan;
cb59e842005-04-02 13:51:23 -0600990 rinfo[val].sg_io_owned =
991 srp->sg_io_owned;
992 rinfo[val].pack_id =
993 srp->header.pack_id;
994 rinfo[val].usr_ptr =
995 srp->header.usr_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 }
997 }
998 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
cb59e842005-04-02 13:51:23 -0600999 result = __copy_to_user(p, rinfo,
1000 SZ_SG_REQ_INFO * SG_MAX_QUEUE);
1001 result = result ? -EFAULT : 0;
1002 kfree(rinfo);
1003 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 }
1005 case SG_EMULATED_HOST:
1006 if (sdp->detached)
1007 return -ENODEV;
1008 return put_user(sdp->device->host->hostt->emulated, ip);
1009 case SG_SCSI_RESET:
1010 if (sdp->detached)
1011 return -ENODEV;
1012 if (filp->f_flags & O_NONBLOCK) {
James Bottomley939647e2005-09-18 15:05:20 -05001013 if (scsi_host_in_recovery(sdp->device->host))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 return -EBUSY;
1015 } else if (!scsi_block_when_processing_errors(sdp->device))
1016 return -EBUSY;
1017 result = get_user(val, ip);
1018 if (result)
1019 return result;
1020 if (SG_SCSI_RESET_NOTHING == val)
1021 return 0;
1022 switch (val) {
1023 case SG_SCSI_RESET_DEVICE:
1024 val = SCSI_TRY_RESET_DEVICE;
1025 break;
Brian King39120e12008-07-01 13:03:19 -05001026 case SG_SCSI_RESET_TARGET:
1027 val = SCSI_TRY_RESET_TARGET;
1028 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 case SG_SCSI_RESET_BUS:
1030 val = SCSI_TRY_RESET_BUS;
1031 break;
1032 case SG_SCSI_RESET_HOST:
1033 val = SCSI_TRY_RESET_HOST;
1034 break;
1035 default:
1036 return -EINVAL;
1037 }
1038 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
1039 return -EACCES;
1040 return (scsi_reset_provider(sdp->device, val) ==
1041 SUCCESS) ? 0 : -EIO;
1042 case SCSI_IOCTL_SEND_COMMAND:
1043 if (sdp->detached)
1044 return -ENODEV;
1045 if (read_only) {
1046 unsigned char opcode = WRITE_6;
1047 Scsi_Ioctl_Command __user *siocp = p;
1048
1049 if (copy_from_user(&opcode, siocp->data, 1))
1050 return -EFAULT;
FUJITA Tomonori14e507b2008-07-26 18:03:24 +09001051 if (sg_allow_access(filp, &opcode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 return -EPERM;
1053 }
Al Viroe915e872008-09-02 17:16:41 -04001054 return sg_scsi_ioctl(sdp->device->request_queue, NULL, filp->f_mode, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 case SG_SET_DEBUG:
1056 result = get_user(val, ip);
1057 if (result)
1058 return result;
1059 sdp->sgdebug = (char) val;
1060 return 0;
1061 case SCSI_IOCTL_GET_IDLUN:
1062 case SCSI_IOCTL_GET_BUS_NUMBER:
1063 case SCSI_IOCTL_PROBE_HOST:
1064 case SG_GET_TRANSFORM:
1065 if (sdp->detached)
1066 return -ENODEV;
1067 return scsi_ioctl(sdp->device, cmd_in, p);
Alan Stern44ec9542007-02-20 11:01:57 -05001068 case BLKSECTGET:
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001069 return put_user(queue_max_sectors(sdp->device->request_queue) * 512,
Alan Stern44ec9542007-02-20 11:01:57 -05001070 ip);
Christof Schmitt6da127a2008-01-11 10:09:43 +01001071 case BLKTRACESETUP:
1072 return blk_trace_setup(sdp->device->request_queue,
1073 sdp->disk->disk_name,
Martin Peschke76e3a192009-01-30 15:46:23 +01001074 MKDEV(SCSI_GENERIC_MAJOR, sdp->index),
Shawn Dud0deef52009-04-14 13:58:56 +08001075 NULL,
Christof Schmitt6da127a2008-01-11 10:09:43 +01001076 (char *)arg);
1077 case BLKTRACESTART:
1078 return blk_trace_startstop(sdp->device->request_queue, 1);
1079 case BLKTRACESTOP:
1080 return blk_trace_startstop(sdp->device->request_queue, 0);
1081 case BLKTRACETEARDOWN:
1082 return blk_trace_remove(sdp->device->request_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 default:
1084 if (read_only)
1085 return -EPERM; /* don't know so take safe approach */
1086 return scsi_ioctl(sdp->device, cmd_in, p);
1087 }
1088}
1089
Arnd Bergmannf4927c42010-04-27 00:24:01 +02001090static long
1091sg_unlocked_ioctl(struct file *filp, unsigned int cmd_in, unsigned long arg)
1092{
1093 int ret;
1094
1095 lock_kernel();
1096 ret = sg_ioctl(filp, cmd_in, arg);
1097 unlock_kernel();
1098
1099 return ret;
1100}
1101
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102#ifdef CONFIG_COMPAT
1103static long sg_compat_ioctl(struct file *filp, unsigned int cmd_in, unsigned long arg)
1104{
1105 Sg_device *sdp;
1106 Sg_fd *sfp;
1107 struct scsi_device *sdev;
1108
1109 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
1110 return -ENXIO;
1111
1112 sdev = sdp->device;
1113 if (sdev->host->hostt->compat_ioctl) {
1114 int ret;
1115
1116 ret = sdev->host->hostt->compat_ioctl(sdev, cmd_in, (void __user *)arg);
1117
1118 return ret;
1119 }
1120
1121 return -ENOIOCTLCMD;
1122}
1123#endif
1124
1125static unsigned int
1126sg_poll(struct file *filp, poll_table * wait)
1127{
1128 unsigned int res = 0;
1129 Sg_device *sdp;
1130 Sg_fd *sfp;
1131 Sg_request *srp;
1132 int count = 0;
1133 unsigned long iflags;
1134
1135 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp))
1136 || sfp->closed)
1137 return POLLERR;
1138 poll_wait(filp, &sfp->read_wait, wait);
1139 read_lock_irqsave(&sfp->rq_list_lock, iflags);
1140 for (srp = sfp->headrp; srp; srp = srp->nextrp) {
1141 /* if any read waiting, flag it */
1142 if ((0 == res) && (1 == srp->done) && (!srp->sg_io_owned))
1143 res = POLLIN | POLLRDNORM;
1144 ++count;
1145 }
1146 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1147
1148 if (sdp->detached)
1149 res |= POLLHUP;
1150 else if (!sfp->cmd_q) {
1151 if (0 == count)
1152 res |= POLLOUT | POLLWRNORM;
1153 } else if (count < SG_MAX_QUEUE)
1154 res |= POLLOUT | POLLWRNORM;
1155 SCSI_LOG_TIMEOUT(3, printk("sg_poll: %s, res=0x%x\n",
1156 sdp->disk->disk_name, (int) res));
1157 return res;
1158}
1159
1160static int
1161sg_fasync(int fd, struct file *filp, int mode)
1162{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 Sg_device *sdp;
1164 Sg_fd *sfp;
1165
1166 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
1167 return -ENXIO;
1168 SCSI_LOG_TIMEOUT(3, printk("sg_fasync: %s, mode=%d\n",
1169 sdp->disk->disk_name, mode));
1170
Jonathan Corbet60aa4922009-02-01 14:52:56 -07001171 return fasync_helper(fd, filp, mode, &sfp->async_qp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172}
1173
Nick Piggina13ff0b2008-02-07 18:46:06 -08001174static int
1175sg_vma_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176{
1177 Sg_fd *sfp;
Mike Christied6b10342005-11-08 04:06:41 -06001178 unsigned long offset, len, sa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 Sg_scatter_hold *rsv_schp;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001180 int k, length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
1182 if ((NULL == vma) || (!(sfp = (Sg_fd *) vma->vm_private_data)))
Nick Piggina13ff0b2008-02-07 18:46:06 -08001183 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 rsv_schp = &sfp->reserve;
Nick Piggina13ff0b2008-02-07 18:46:06 -08001185 offset = vmf->pgoff << PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 if (offset >= rsv_schp->bufflen)
Nick Piggina13ff0b2008-02-07 18:46:06 -08001187 return VM_FAULT_SIGBUS;
1188 SCSI_LOG_TIMEOUT(3, printk("sg_vma_fault: offset=%lu, scatg=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 offset, rsv_schp->k_use_sg));
Mike Christied6b10342005-11-08 04:06:41 -06001190 sa = vma->vm_start;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001191 length = 1 << (PAGE_SHIFT + rsv_schp->page_order);
1192 for (k = 0; k < rsv_schp->k_use_sg && sa < vma->vm_end; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06001193 len = vma->vm_end - sa;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001194 len = (len < length) ? len : length;
Mike Christied6b10342005-11-08 04:06:41 -06001195 if (offset < len) {
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001196 struct page *page = nth_page(rsv_schp->pages[k],
1197 offset >> PAGE_SHIFT);
Mike Christied6b10342005-11-08 04:06:41 -06001198 get_page(page); /* increment page count */
Nick Piggina13ff0b2008-02-07 18:46:06 -08001199 vmf->page = page;
1200 return 0; /* success */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 }
Mike Christied6b10342005-11-08 04:06:41 -06001202 sa += len;
1203 offset -= len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 }
Mike Christied6b10342005-11-08 04:06:41 -06001205
Nick Piggina13ff0b2008-02-07 18:46:06 -08001206 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207}
1208
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04001209static const struct vm_operations_struct sg_mmap_vm_ops = {
Nick Piggina13ff0b2008-02-07 18:46:06 -08001210 .fault = sg_vma_fault,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211};
1212
1213static int
1214sg_mmap(struct file *filp, struct vm_area_struct *vma)
1215{
1216 Sg_fd *sfp;
Mike Christied6b10342005-11-08 04:06:41 -06001217 unsigned long req_sz, len, sa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 Sg_scatter_hold *rsv_schp;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001219 int k, length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
1221 if ((!filp) || (!vma) || (!(sfp = (Sg_fd *) filp->private_data)))
1222 return -ENXIO;
cb59e842005-04-02 13:51:23 -06001223 req_sz = vma->vm_end - vma->vm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 SCSI_LOG_TIMEOUT(3, printk("sg_mmap starting, vm_start=%p, len=%d\n",
1225 (void *) vma->vm_start, (int) req_sz));
1226 if (vma->vm_pgoff)
1227 return -EINVAL; /* want no offset */
1228 rsv_schp = &sfp->reserve;
1229 if (req_sz > rsv_schp->bufflen)
1230 return -ENOMEM; /* cannot map more than reserved buffer */
1231
Mike Christied6b10342005-11-08 04:06:41 -06001232 sa = vma->vm_start;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001233 length = 1 << (PAGE_SHIFT + rsv_schp->page_order);
1234 for (k = 0; k < rsv_schp->k_use_sg && sa < vma->vm_end; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06001235 len = vma->vm_end - sa;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001236 len = (len < length) ? len : length;
Mike Christied6b10342005-11-08 04:06:41 -06001237 sa += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 }
Mike Christied6b10342005-11-08 04:06:41 -06001239
Nick Pigginf9aed0e2006-03-22 00:08:30 -08001240 sfp->mmap_called = 1;
Douglas Gilbert1c8e71d2005-09-09 17:18:57 +10001241 vma->vm_flags |= VM_RESERVED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 vma->vm_private_data = sfp;
1243 vma->vm_ops = &sg_mmap_vm_ops;
1244 return 0;
1245}
1246
FUJITA Tomonoric96952e2009-02-04 11:36:27 +09001247static void sg_rq_end_io_usercontext(struct work_struct *work)
1248{
1249 struct sg_request *srp = container_of(work, struct sg_request, ew.work);
1250 struct sg_fd *sfp = srp->parentfp;
1251
1252 sg_finish_rem_req(srp);
1253 kref_put(&sfp->f_ref, sg_remove_sfp);
1254}
1255
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001256/*
1257 * This function is a "bottom half" handler that is called by the mid
1258 * level when a command is completed (or has failed).
1259 */
1260static void sg_rq_end_io(struct request *rq, int uptodate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261{
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001262 struct sg_request *srp = rq->end_io_data;
Tony Battersbyc6517b72009-01-21 14:45:50 -05001263 Sg_device *sdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 Sg_fd *sfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 unsigned long iflags;
cb59e842005-04-02 13:51:23 -06001266 unsigned int ms;
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001267 char *sense;
Tony Battersbyc6517b72009-01-21 14:45:50 -05001268 int result, resid, done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
Tony Battersbyc6517b72009-01-21 14:45:50 -05001270 if (WARN_ON(srp->done != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 return;
Tony Battersbyc6517b72009-01-21 14:45:50 -05001272
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 sfp = srp->parentfp;
Tony Battersbyc6517b72009-01-21 14:45:50 -05001274 if (WARN_ON(sfp == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 return;
Tony Battersbyc6517b72009-01-21 14:45:50 -05001276
1277 sdp = sfp->parentdp;
1278 if (unlikely(sdp->detached))
1279 printk(KERN_INFO "sg_rq_end_io: device detached\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001281 sense = rq->sense;
1282 result = rq->errors;
Tejun Heoc3a4d782009-05-07 22:24:37 +09001283 resid = rq->resid_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
1285 SCSI_LOG_TIMEOUT(4, printk("sg_cmd_done: %s, pack_id=%d, res=0x%x\n",
Mike Christied6b10342005-11-08 04:06:41 -06001286 sdp->disk->disk_name, srp->header.pack_id, result));
1287 srp->header.resid = resid;
cb59e842005-04-02 13:51:23 -06001288 ms = jiffies_to_msecs(jiffies);
1289 srp->header.duration = (ms > srp->header.duration) ?
1290 (ms - srp->header.duration) : 0;
Mike Christied6b10342005-11-08 04:06:41 -06001291 if (0 != result) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 struct scsi_sense_hdr sshdr;
1293
Mike Christied6b10342005-11-08 04:06:41 -06001294 srp->header.status = 0xff & result;
1295 srp->header.masked_status = status_byte(result);
1296 srp->header.msg_status = msg_byte(result);
1297 srp->header.host_status = host_byte(result);
1298 srp->header.driver_status = driver_byte(result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 if ((sdp->sgdebug > 0) &&
1300 ((CHECK_CONDITION == srp->header.masked_status) ||
1301 (COMMAND_TERMINATED == srp->header.masked_status)))
Mike Christied6b10342005-11-08 04:06:41 -06001302 __scsi_print_sense("sg_cmd_done", sense,
1303 SCSI_SENSE_BUFFERSIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
1305 /* Following if statement is a patch supplied by Eric Youngdale */
Mike Christied6b10342005-11-08 04:06:41 -06001306 if (driver_byte(result) != 0
1307 && scsi_normalize_sense(sense, SCSI_SENSE_BUFFERSIZE, &sshdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 && !scsi_sense_is_deferred(&sshdr)
1309 && sshdr.sense_key == UNIT_ATTENTION
1310 && sdp->device->removable) {
1311 /* Detected possible disc change. Set the bit - this */
1312 /* may be used if there are filesystems using this device */
1313 sdp->device->changed = 1;
1314 }
1315 }
1316 /* Rely on write phase to clean out srp status values, so no "else" */
1317
Tony Battersbyc6517b72009-01-21 14:45:50 -05001318 write_lock_irqsave(&sfp->rq_list_lock, iflags);
1319 if (unlikely(srp->orphan)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 if (sfp->keep_orphan)
1321 srp->sg_io_owned = 0;
Tony Battersbyc6517b72009-01-21 14:45:50 -05001322 else
1323 done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 }
Tony Battersbyc6517b72009-01-21 14:45:50 -05001325 srp->done = done;
1326 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1327
1328 if (likely(done)) {
1329 /* Now wake up any sg_read() that is waiting for this
1330 * packet.
1331 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 wake_up_interruptible(&sfp->read_wait);
Tony Battersbyc6517b72009-01-21 14:45:50 -05001333 kill_fasync(&sfp->async_qp, SIGPOLL, POLL_IN);
FUJITA Tomonoric96952e2009-02-04 11:36:27 +09001334 kref_put(&sfp->f_ref, sg_remove_sfp);
FUJITA Tomonori015640e2009-04-03 19:28:06 +09001335 } else {
1336 INIT_WORK(&srp->ew.work, sg_rq_end_io_usercontext);
1337 schedule_work(&srp->ew.work);
1338 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339}
1340
Alexey Dobriyan828c0952009-10-01 15:43:56 -07001341static const struct file_operations sg_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 .owner = THIS_MODULE,
1343 .read = sg_read,
1344 .write = sg_write,
1345 .poll = sg_poll,
Arnd Bergmannf4927c42010-04-27 00:24:01 +02001346 .unlocked_ioctl = sg_unlocked_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347#ifdef CONFIG_COMPAT
1348 .compat_ioctl = sg_compat_ioctl,
1349#endif
1350 .open = sg_open,
1351 .mmap = sg_mmap,
1352 .release = sg_release,
1353 .fasync = sg_fasync,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001354 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355};
1356
gregkh@suse.ded2538782005-03-23 09:55:22 -08001357static struct class *sg_sysfs_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
1359static int sg_sysfs_valid = 0;
1360
James Bottomley7c07d612007-08-05 13:36:11 -05001361static Sg_device *sg_alloc(struct gendisk *disk, struct scsi_device *scsidp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362{
Mike Christied6b10342005-11-08 04:06:41 -06001363 struct request_queue *q = scsidp->request_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 Sg_device *sdp;
1365 unsigned long iflags;
James Bottomley7c07d612007-08-05 13:36:11 -05001366 int error;
1367 u32 k;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
Jes Sorensen24669f752006-01-16 10:31:18 -05001369 sdp = kzalloc(sizeof(Sg_device), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 if (!sdp) {
1371 printk(KERN_WARNING "kmalloc Sg_device failure\n");
James Bottomley7c07d612007-08-05 13:36:11 -05001372 return ERR_PTR(-ENOMEM);
1373 }
Tony Battersbyc6517b72009-01-21 14:45:50 -05001374
James Bottomley7c07d612007-08-05 13:36:11 -05001375 if (!idr_pre_get(&sg_index_idr, GFP_KERNEL)) {
1376 printk(KERN_WARNING "idr expansion Sg_device failure\n");
Tony Battersbyc6517b72009-01-21 14:45:50 -05001377 error = -ENOMEM;
James Bottomley7c07d612007-08-05 13:36:11 -05001378 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 }
1380
James Bottomley7c07d612007-08-05 13:36:11 -05001381 write_lock_irqsave(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
Tony Battersbyc6517b72009-01-21 14:45:50 -05001383 error = idr_get_new(&sg_index_idr, sdp, &k);
James Bottomley7c07d612007-08-05 13:36:11 -05001384 if (error) {
Tony Battersbyc6517b72009-01-21 14:45:50 -05001385 write_unlock_irqrestore(&sg_index_lock, iflags);
James Bottomley7c07d612007-08-05 13:36:11 -05001386 printk(KERN_WARNING "idr allocation Sg_device failure: %d\n",
1387 error);
1388 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 }
1390
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 if (unlikely(k >= SG_MAX_DEVS))
1392 goto overflow;
1393
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 SCSI_LOG_TIMEOUT(3, printk("sg_alloc: dev=%d \n", k));
1395 sprintf(disk->disk_name, "sg%d", k);
1396 disk->first_minor = k;
1397 sdp->disk = disk;
1398 sdp->device = scsidp;
FUJITA Tomonori3442f802009-02-16 13:26:53 +09001399 INIT_LIST_HEAD(&sdp->sfds);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 init_waitqueue_head(&sdp->o_excl_wait);
Martin K. Petersen8a783622010-02-26 00:20:39 -05001401 sdp->sg_tablesize = queue_max_segments(q);
James Bottomley7c07d612007-08-05 13:36:11 -05001402 sdp->index = k;
Tony Battersbyc6517b72009-01-21 14:45:50 -05001403 kref_init(&sdp->d_ref);
1404
1405 write_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
James Bottomley7c07d612007-08-05 13:36:11 -05001407 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 out:
James Bottomley7c07d612007-08-05 13:36:11 -05001409 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 kfree(sdp);
James Bottomley7c07d612007-08-05 13:36:11 -05001411 return ERR_PTR(error);
1412 }
1413 return sdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
1415 overflow:
Tony Battersbyc6517b72009-01-21 14:45:50 -05001416 idr_remove(&sg_index_idr, k);
1417 write_unlock_irqrestore(&sg_index_lock, iflags);
James Bottomley9ccfc752005-10-02 11:45:08 -05001418 sdev_printk(KERN_WARNING, scsidp,
1419 "Unable to attach sg device type=%d, minor "
1420 "number exceeds %d\n", scsidp->type, SG_MAX_DEVS - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 error = -ENODEV;
1422 goto out;
1423}
1424
1425static int
Tony Jonesee959b02008-02-22 00:13:36 +01001426sg_add(struct device *cl_dev, struct class_interface *cl_intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427{
Tony Jonesee959b02008-02-22 00:13:36 +01001428 struct scsi_device *scsidp = to_scsi_device(cl_dev->parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 struct gendisk *disk;
1430 Sg_device *sdp = NULL;
1431 struct cdev * cdev = NULL;
James Bottomley7c07d612007-08-05 13:36:11 -05001432 int error;
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001433 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
1435 disk = alloc_disk(1);
1436 if (!disk) {
1437 printk(KERN_WARNING "alloc_disk failed\n");
1438 return -ENOMEM;
1439 }
1440 disk->major = SCSI_GENERIC_MAJOR;
1441
1442 error = -ENOMEM;
1443 cdev = cdev_alloc();
1444 if (!cdev) {
1445 printk(KERN_WARNING "cdev_alloc failed\n");
1446 goto out;
1447 }
1448 cdev->owner = THIS_MODULE;
1449 cdev->ops = &sg_fops;
1450
James Bottomley7c07d612007-08-05 13:36:11 -05001451 sdp = sg_alloc(disk, scsidp);
1452 if (IS_ERR(sdp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 printk(KERN_WARNING "sg_alloc failed\n");
James Bottomley7c07d612007-08-05 13:36:11 -05001454 error = PTR_ERR(sdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 goto out;
1456 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
James Bottomley7c07d612007-08-05 13:36:11 -05001458 error = cdev_add(cdev, MKDEV(SCSI_GENERIC_MAJOR, sdp->index), 1);
Greg KH5e3c34c2006-01-18 16:17:46 -08001459 if (error)
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001460 goto cdev_add_err;
Greg KH5e3c34c2006-01-18 16:17:46 -08001461
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 sdp->cdev = cdev;
1463 if (sg_sysfs_valid) {
Tony Jonesee959b02008-02-22 00:13:36 +01001464 struct device *sg_class_member;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
Greg Kroah-Hartmand73a1a62008-07-21 20:03:34 -07001466 sg_class_member = device_create(sg_sysfs_class, cl_dev->parent,
1467 MKDEV(SCSI_GENERIC_MAJOR,
1468 sdp->index),
1469 sdp, "%s", disk->disk_name);
FUJITA Tomonorid07e0362008-01-15 13:18:00 +09001470 if (IS_ERR(sg_class_member)) {
1471 printk(KERN_ERR "sg_add: "
Tony Jonesee959b02008-02-22 00:13:36 +01001472 "device_create failed\n");
FUJITA Tomonorid07e0362008-01-15 13:18:00 +09001473 error = PTR_ERR(sg_class_member);
1474 goto cdev_add_err;
1475 }
FUJITA Tomonorid07e0362008-01-15 13:18:00 +09001476 error = sysfs_create_link(&scsidp->sdev_gendev.kobj,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 &sg_class_member->kobj, "generic");
1478 if (error)
1479 printk(KERN_ERR "sg_add: unable to make symlink "
James Bottomley7c07d612007-08-05 13:36:11 -05001480 "'generic' back to sg%d\n", sdp->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 } else
James Bottomley7c07d612007-08-05 13:36:11 -05001482 printk(KERN_WARNING "sg_add: sg_sys Invalid\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483
James Bottomley9ccfc752005-10-02 11:45:08 -05001484 sdev_printk(KERN_NOTICE, scsidp,
James Bottomley7c07d612007-08-05 13:36:11 -05001485 "Attached scsi generic sg%d type %d\n", sdp->index,
1486 scsidp->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
Tony Jonesee959b02008-02-22 00:13:36 +01001488 dev_set_drvdata(cl_dev, sdp);
FUJITA Tomonoria24484f2008-01-15 13:17:47 +09001489
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 return 0;
1491
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001492cdev_add_err:
James Bottomley7c07d612007-08-05 13:36:11 -05001493 write_lock_irqsave(&sg_index_lock, iflags);
1494 idr_remove(&sg_index_idr, sdp->index);
1495 write_unlock_irqrestore(&sg_index_lock, iflags);
1496 kfree(sdp);
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001497
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498out:
1499 put_disk(disk);
1500 if (cdev)
1501 cdev_del(cdev);
1502 return error;
1503}
1504
Tony Battersbyc6517b72009-01-21 14:45:50 -05001505static void sg_device_destroy(struct kref *kref)
1506{
1507 struct sg_device *sdp = container_of(kref, struct sg_device, d_ref);
1508 unsigned long flags;
1509
1510 /* CAUTION! Note that the device can still be found via idr_find()
1511 * even though the refcount is 0. Therefore, do idr_remove() BEFORE
1512 * any other cleanup.
1513 */
1514
1515 write_lock_irqsave(&sg_index_lock, flags);
1516 idr_remove(&sg_index_idr, sdp->index);
1517 write_unlock_irqrestore(&sg_index_lock, flags);
1518
1519 SCSI_LOG_TIMEOUT(3,
1520 printk("sg_device_destroy: %s\n",
1521 sdp->disk->disk_name));
1522
1523 put_disk(sdp->disk);
1524 kfree(sdp);
1525}
1526
1527static void sg_remove(struct device *cl_dev, struct class_interface *cl_intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528{
Tony Jonesee959b02008-02-22 00:13:36 +01001529 struct scsi_device *scsidp = to_scsi_device(cl_dev->parent);
1530 Sg_device *sdp = dev_get_drvdata(cl_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 unsigned long iflags;
1532 Sg_fd *sfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
Tony Battersbyc6517b72009-01-21 14:45:50 -05001534 if (!sdp || sdp->detached)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536
Tony Battersbyc6517b72009-01-21 14:45:50 -05001537 SCSI_LOG_TIMEOUT(3, printk("sg_remove: %s\n", sdp->disk->disk_name));
1538
1539 /* Need a write lock to set sdp->detached. */
James Bottomley7c07d612007-08-05 13:36:11 -05001540 write_lock_irqsave(&sg_index_lock, iflags);
Tony Battersbyc6517b72009-01-21 14:45:50 -05001541 sdp->detached = 1;
FUJITA Tomonori3442f802009-02-16 13:26:53 +09001542 list_for_each_entry(sfp, &sdp->sfds, sfd_siblings) {
Tony Battersbyc6517b72009-01-21 14:45:50 -05001543 wake_up_interruptible(&sfp->read_wait);
1544 kill_fasync(&sfp->async_qp, SIGPOLL, POLL_HUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 }
James Bottomley7c07d612007-08-05 13:36:11 -05001546 write_unlock_irqrestore(&sg_index_lock, iflags);
1547
1548 sysfs_remove_link(&scsidp->sdev_gendev.kobj, "generic");
Tony Jonesee959b02008-02-22 00:13:36 +01001549 device_destroy(sg_sysfs_class, MKDEV(SCSI_GENERIC_MAJOR, sdp->index));
James Bottomley7c07d612007-08-05 13:36:11 -05001550 cdev_del(sdp->cdev);
1551 sdp->cdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
Tony Battersbyc6517b72009-01-21 14:45:50 -05001553 sg_put_dev(sdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554}
1555
Douglas Gilbert6460e752006-09-20 18:20:49 -04001556module_param_named(scatter_elem_sz, scatter_elem_sz, int, S_IRUGO | S_IWUSR);
1557module_param_named(def_reserved_size, def_reserved_size, int,
1558 S_IRUGO | S_IWUSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559module_param_named(allow_dio, sg_allow_dio, int, S_IRUGO | S_IWUSR);
1560
1561MODULE_AUTHOR("Douglas Gilbert");
1562MODULE_DESCRIPTION("SCSI generic (sg) driver");
1563MODULE_LICENSE("GPL");
1564MODULE_VERSION(SG_VERSION_STR);
Rene Hermanf018fa52006-03-08 00:14:20 -08001565MODULE_ALIAS_CHARDEV_MAJOR(SCSI_GENERIC_MAJOR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566
Douglas Gilbert6460e752006-09-20 18:20:49 -04001567MODULE_PARM_DESC(scatter_elem_sz, "scatter gather element "
1568 "size (default: max(SG_SCATTER_SZ, PAGE_SIZE))");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569MODULE_PARM_DESC(def_reserved_size, "size of buffer reserved for each fd");
1570MODULE_PARM_DESC(allow_dio, "allow direct I/O (default: 0 (disallow))");
1571
1572static int __init
1573init_sg(void)
1574{
1575 int rc;
1576
Douglas Gilbert6460e752006-09-20 18:20:49 -04001577 if (scatter_elem_sz < PAGE_SIZE) {
1578 scatter_elem_sz = PAGE_SIZE;
1579 scatter_elem_sz_prev = scatter_elem_sz;
1580 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 if (def_reserved_size >= 0)
1582 sg_big_buff = def_reserved_size;
Douglas Gilbert6460e752006-09-20 18:20:49 -04001583 else
1584 def_reserved_size = sg_big_buff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
1586 rc = register_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0),
1587 SG_MAX_DEVS, "sg");
1588 if (rc)
1589 return rc;
gregkh@suse.ded2538782005-03-23 09:55:22 -08001590 sg_sysfs_class = class_create(THIS_MODULE, "scsi_generic");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 if ( IS_ERR(sg_sysfs_class) ) {
1592 rc = PTR_ERR(sg_sysfs_class);
1593 goto err_out;
1594 }
1595 sg_sysfs_valid = 1;
1596 rc = scsi_register_interface(&sg_interface);
1597 if (0 == rc) {
1598#ifdef CONFIG_SCSI_PROC_FS
1599 sg_proc_init();
1600#endif /* CONFIG_SCSI_PROC_FS */
1601 return 0;
1602 }
gregkh@suse.ded2538782005-03-23 09:55:22 -08001603 class_destroy(sg_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604err_out:
1605 unregister_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0), SG_MAX_DEVS);
1606 return rc;
1607}
1608
1609static void __exit
1610exit_sg(void)
1611{
1612#ifdef CONFIG_SCSI_PROC_FS
1613 sg_proc_cleanup();
1614#endif /* CONFIG_SCSI_PROC_FS */
1615 scsi_unregister_interface(&sg_interface);
gregkh@suse.ded2538782005-03-23 09:55:22 -08001616 class_destroy(sg_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 sg_sysfs_valid = 0;
1618 unregister_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0),
1619 SG_MAX_DEVS);
James Bottomley7c07d612007-08-05 13:36:11 -05001620 idr_destroy(&sg_index_idr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621}
1622
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001623static int sg_start_req(Sg_request *srp, unsigned char *cmd)
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001624{
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001625 int res;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001626 struct request *rq;
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001627 Sg_fd *sfp = srp->parentfp;
1628 sg_io_hdr_t *hp = &srp->header;
1629 int dxfer_len = (int) hp->dxfer_len;
1630 int dxfer_dir = hp->dxfer_direction;
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001631 unsigned int iov_count = hp->iovec_count;
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001632 Sg_scatter_hold *req_schp = &srp->data;
1633 Sg_scatter_hold *rsv_schp = &sfp->reserve;
1634 struct request_queue *q = sfp->parentdp->device->request_queue;
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001635 struct rq_map_data *md, map_data;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001636 int rw = hp->dxfer_direction == SG_DXFER_TO_DEV ? WRITE : READ;
1637
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001638 SCSI_LOG_TIMEOUT(4, printk(KERN_INFO "sg_start_req: dxfer_len=%d\n",
1639 dxfer_len));
1640
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001641 rq = blk_get_request(q, rw, GFP_ATOMIC);
1642 if (!rq)
1643 return -ENOMEM;
1644
1645 memcpy(rq->cmd, cmd, hp->cmd_len);
1646
1647 rq->cmd_len = hp->cmd_len;
1648 rq->cmd_type = REQ_TYPE_BLOCK_PC;
1649
1650 srp->rq = rq;
1651 rq->end_io_data = srp;
1652 rq->sense = srp->sense_b;
1653 rq->retries = SG_DEFAULT_RETRIES;
1654
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 if ((dxfer_len <= 0) || (dxfer_dir == SG_DXFER_NONE))
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001656 return 0;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001657
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001658 if (sg_allow_dio && hp->flags & SG_FLAG_DIRECT_IO &&
1659 dxfer_dir != SG_DXFER_UNKNOWN && !iov_count &&
1660 !sfp->parentdp->device->host->unchecked_isa_dma &&
FUJITA Tomonori01cfcdd2008-08-28 15:05:59 +09001661 blk_rq_aligned(q, hp->dxferp, dxfer_len))
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001662 md = NULL;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001663 else
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001664 md = &map_data;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001665
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001666 if (md) {
1667 if (!sg_res_in_use(sfp) && dxfer_len <= rsv_schp->bufflen)
1668 sg_link_reserve(sfp, srp, dxfer_len);
1669 else {
1670 res = sg_build_indirect(req_schp, sfp, dxfer_len);
1671 if (res)
1672 return res;
1673 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001674
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001675 md->pages = req_schp->pages;
1676 md->page_order = req_schp->page_order;
1677 md->nr_entries = req_schp->k_use_sg;
FUJITA Tomonori56c451f2008-12-18 14:49:37 +09001678 md->offset = 0;
FUJITA Tomonori97ae77a2008-12-18 14:49:38 +09001679 md->null_mapped = hp->dxferp ? 0 : 1;
FUJITA Tomonoriecb554a2009-07-09 14:46:53 +02001680 if (dxfer_dir == SG_DXFER_TO_FROM_DEV)
1681 md->from_user = 1;
1682 else
1683 md->from_user = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001685
FUJITA Tomonori0fdf96b2009-04-03 09:12:20 +09001686 if (iov_count) {
1687 int len, size = sizeof(struct sg_iovec) * iov_count;
1688 struct iovec *iov;
1689
Julia Lawall30941412010-08-10 18:01:27 -07001690 iov = memdup_user(hp->dxferp, size);
1691 if (IS_ERR(iov))
1692 return PTR_ERR(iov);
FUJITA Tomonori0fdf96b2009-04-03 09:12:20 +09001693
1694 len = iov_length(iov, iov_count);
1695 if (hp->dxfer_len < len) {
1696 iov_count = iov_shorten(iov, iov_count, hp->dxfer_len);
1697 len = hp->dxfer_len;
1698 }
1699
1700 res = blk_rq_map_user_iov(q, rq, md, (struct sg_iovec *)iov,
1701 iov_count,
1702 len, GFP_ATOMIC);
1703 kfree(iov);
1704 } else
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001705 res = blk_rq_map_user(q, rq, md, hp->dxferp,
1706 hp->dxfer_len, GFP_ATOMIC);
1707
1708 if (!res) {
1709 srp->bio = rq->bio;
1710
1711 if (!md) {
1712 req_schp->dio_in_use = 1;
1713 hp->info |= SG_INFO_DIRECT_IO;
1714 }
1715 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001716 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717}
1718
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +09001719static int sg_finish_rem_req(Sg_request * srp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720{
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +09001721 int ret = 0;
1722
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 Sg_fd *sfp = srp->parentfp;
1724 Sg_scatter_hold *req_schp = &srp->data;
1725
1726 SCSI_LOG_TIMEOUT(4, printk("sg_finish_rem_req: res_used=%d\n", (int) srp->res_used));
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001727 if (srp->rq) {
1728 if (srp->bio)
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +09001729 ret = blk_rq_unmap_user(srp->bio);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001730
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001731 blk_put_request(srp->rq);
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001732 }
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001733
Christof Schmitte27168f2009-09-17 09:10:14 +02001734 if (srp->res_used)
1735 sg_unlink_reserve(sfp, srp);
1736 else
1737 sg_remove_scat(req_schp);
1738
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 sg_remove_request(sfp, srp);
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +09001740
1741 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742}
1743
1744static int
1745sg_build_sgat(Sg_scatter_hold * schp, const Sg_fd * sfp, int tablesize)
1746{
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001747 int sg_bufflen = tablesize * sizeof(struct page *);
Al Viro2d20eaf2006-02-01 06:31:40 -05001748 gfp_t gfp_flags = GFP_ATOMIC | __GFP_NOWARN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001750 schp->pages = kzalloc(sg_bufflen, gfp_flags);
1751 if (!schp->pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 schp->sglist_len = sg_bufflen;
Mike Christied6b10342005-11-08 04:06:41 -06001754 return tablesize; /* number of scat_gath elements allocated */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755}
1756
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757static int
1758sg_build_indirect(Sg_scatter_hold * schp, Sg_fd * sfp, int buff_size)
1759{
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001760 int ret_sz = 0, i, k, rem_sz, num, mx_sc_elems;
Mike Christied6b10342005-11-08 04:06:41 -06001761 int sg_tablesize = sfp->parentdp->sg_tablesize;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001762 int blk_size = buff_size, order;
1763 gfp_t gfp_mask = GFP_ATOMIC | __GFP_COMP | __GFP_NOWARN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
Eric Sesterhennfb119932007-05-23 14:41:36 -07001765 if (blk_size < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 return -EFAULT;
1767 if (0 == blk_size)
1768 ++blk_size; /* don't know why */
FUJITA Tomonorib2ed6c62009-02-12 02:42:57 +09001769 /* round request up to next highest SG_SECTOR_SZ byte boundary */
1770 blk_size = ALIGN(blk_size, SG_SECTOR_SZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 SCSI_LOG_TIMEOUT(4, printk("sg_build_indirect: buff_size=%d, blk_size=%d\n",
1772 buff_size, blk_size));
Mike Christied6b10342005-11-08 04:06:41 -06001773
1774 /* N.B. ret_sz carried into this block ... */
1775 mx_sc_elems = sg_build_sgat(schp, sfp, sg_tablesize);
1776 if (mx_sc_elems < 0)
1777 return mx_sc_elems; /* most likely -ENOMEM */
1778
Douglas Gilbert6460e752006-09-20 18:20:49 -04001779 num = scatter_elem_sz;
1780 if (unlikely(num != scatter_elem_sz_prev)) {
1781 if (num < PAGE_SIZE) {
1782 scatter_elem_sz = PAGE_SIZE;
1783 scatter_elem_sz_prev = PAGE_SIZE;
1784 } else
1785 scatter_elem_sz_prev = num;
1786 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001787
1788 if (sfp->low_dma)
1789 gfp_mask |= GFP_DMA;
1790
1791 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
1792 gfp_mask |= __GFP_ZERO;
1793
1794 order = get_order(num);
1795retry:
1796 ret_sz = 1 << (PAGE_SHIFT + order);
1797
1798 for (k = 0, rem_sz = blk_size; rem_sz > 0 && k < mx_sc_elems;
1799 k++, rem_sz -= ret_sz) {
1800
Douglas Gilbert6460e752006-09-20 18:20:49 -04001801 num = (rem_sz > scatter_elem_sz_prev) ?
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001802 scatter_elem_sz_prev : rem_sz;
1803
1804 schp->pages[k] = alloc_pages(gfp_mask, order);
1805 if (!schp->pages[k])
1806 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807
Douglas Gilbert6460e752006-09-20 18:20:49 -04001808 if (num == scatter_elem_sz_prev) {
1809 if (unlikely(ret_sz > scatter_elem_sz_prev)) {
1810 scatter_elem_sz = ret_sz;
1811 scatter_elem_sz_prev = ret_sz;
1812 }
1813 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814
Douglas Gilbert7ca63cb2006-10-27 17:47:49 -04001815 SCSI_LOG_TIMEOUT(5, printk("sg_build_indirect: k=%d, num=%d, "
1816 "ret_sz=%d\n", k, num, ret_sz));
Mike Christied6b10342005-11-08 04:06:41 -06001817 } /* end of for loop */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001819 schp->page_order = order;
Mike Christied6b10342005-11-08 04:06:41 -06001820 schp->k_use_sg = k;
Douglas Gilbert7ca63cb2006-10-27 17:47:49 -04001821 SCSI_LOG_TIMEOUT(5, printk("sg_build_indirect: k_use_sg=%d, "
1822 "rem_sz=%d\n", k, rem_sz));
Mike Christied6b10342005-11-08 04:06:41 -06001823
1824 schp->bufflen = blk_size;
1825 if (rem_sz > 0) /* must have failed */
1826 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 return 0;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001828out:
1829 for (i = 0; i < k; i++)
Michal Schmidte71044e2009-09-03 14:27:08 +02001830 __free_pages(schp->pages[i], order);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001831
1832 if (--order >= 0)
1833 goto retry;
1834
1835 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836}
1837
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838static void
1839sg_remove_scat(Sg_scatter_hold * schp)
1840{
1841 SCSI_LOG_TIMEOUT(4, printk("sg_remove_scat: k_use_sg=%d\n", schp->k_use_sg));
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001842 if (schp->pages && schp->sglist_len > 0) {
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001843 if (!schp->dio_in_use) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 int k;
1845
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001846 for (k = 0; k < schp->k_use_sg && schp->pages[k]; k++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 SCSI_LOG_TIMEOUT(5, printk(
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001848 "sg_remove_scat: k=%d, pg=0x%p\n",
1849 k, schp->pages[k]));
1850 __free_pages(schp->pages[k], schp->page_order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 }
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001852
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001853 kfree(schp->pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 }
Mike Christied6b10342005-11-08 04:06:41 -06001855 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 memset(schp, 0, sizeof (*schp));
1857}
1858
1859static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860sg_read_oxfer(Sg_request * srp, char __user *outp, int num_read_xfer)
1861{
1862 Sg_scatter_hold *schp = &srp->data;
Mike Christied6b10342005-11-08 04:06:41 -06001863 int k, num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864
1865 SCSI_LOG_TIMEOUT(4, printk("sg_read_oxfer: num_read_xfer=%d\n",
1866 num_read_xfer));
1867 if ((!outp) || (num_read_xfer <= 0))
1868 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001870 num = 1 << (PAGE_SHIFT + schp->page_order);
1871 for (k = 0; k < schp->k_use_sg && schp->pages[k]; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06001872 if (num > num_read_xfer) {
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001873 if (__copy_to_user(outp, page_address(schp->pages[k]),
Mike Christied6b10342005-11-08 04:06:41 -06001874 num_read_xfer))
1875 return -EFAULT;
1876 break;
1877 } else {
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001878 if (__copy_to_user(outp, page_address(schp->pages[k]),
Mike Christied6b10342005-11-08 04:06:41 -06001879 num))
1880 return -EFAULT;
1881 num_read_xfer -= num;
1882 if (num_read_xfer <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 break;
Mike Christied6b10342005-11-08 04:06:41 -06001884 outp += num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 }
Mike Christied6b10342005-11-08 04:06:41 -06001887
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 return 0;
1889}
1890
1891static void
1892sg_build_reserve(Sg_fd * sfp, int req_size)
1893{
1894 Sg_scatter_hold *schp = &sfp->reserve;
1895
1896 SCSI_LOG_TIMEOUT(4, printk("sg_build_reserve: req_size=%d\n", req_size));
1897 do {
1898 if (req_size < PAGE_SIZE)
1899 req_size = PAGE_SIZE;
1900 if (0 == sg_build_indirect(schp, sfp, req_size))
1901 return;
1902 else
1903 sg_remove_scat(schp);
1904 req_size >>= 1; /* divide by 2 */
1905 } while (req_size > (PAGE_SIZE / 2));
1906}
1907
1908static void
1909sg_link_reserve(Sg_fd * sfp, Sg_request * srp, int size)
1910{
1911 Sg_scatter_hold *req_schp = &srp->data;
1912 Sg_scatter_hold *rsv_schp = &sfp->reserve;
Mike Christied6b10342005-11-08 04:06:41 -06001913 int k, num, rem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914
1915 srp->res_used = 1;
1916 SCSI_LOG_TIMEOUT(4, printk("sg_link_reserve: size=%d\n", size));
Brian Kingeca7be52006-02-14 12:42:24 -06001917 rem = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001919 num = 1 << (PAGE_SHIFT + rsv_schp->page_order);
1920 for (k = 0; k < rsv_schp->k_use_sg; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06001921 if (rem <= num) {
Mike Christied6b10342005-11-08 04:06:41 -06001922 req_schp->k_use_sg = k + 1;
1923 req_schp->sglist_len = rsv_schp->sglist_len;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001924 req_schp->pages = rsv_schp->pages;
Mike Christied6b10342005-11-08 04:06:41 -06001925
1926 req_schp->bufflen = size;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001927 req_schp->page_order = rsv_schp->page_order;
Mike Christied6b10342005-11-08 04:06:41 -06001928 break;
1929 } else
1930 rem -= num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 }
Mike Christied6b10342005-11-08 04:06:41 -06001932
1933 if (k >= rsv_schp->k_use_sg)
1934 SCSI_LOG_TIMEOUT(1, printk("sg_link_reserve: BAD size\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935}
1936
1937static void
1938sg_unlink_reserve(Sg_fd * sfp, Sg_request * srp)
1939{
1940 Sg_scatter_hold *req_schp = &srp->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941
1942 SCSI_LOG_TIMEOUT(4, printk("sg_unlink_reserve: req->k_use_sg=%d\n",
1943 (int) req_schp->k_use_sg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 req_schp->k_use_sg = 0;
1945 req_schp->bufflen = 0;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001946 req_schp->pages = NULL;
1947 req_schp->page_order = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 req_schp->sglist_len = 0;
1949 sfp->save_scat_len = 0;
1950 srp->res_used = 0;
1951}
1952
1953static Sg_request *
1954sg_get_rq_mark(Sg_fd * sfp, int pack_id)
1955{
1956 Sg_request *resp;
1957 unsigned long iflags;
1958
1959 write_lock_irqsave(&sfp->rq_list_lock, iflags);
1960 for (resp = sfp->headrp; resp; resp = resp->nextrp) {
1961 /* look for requests that are ready + not SG_IO owned */
1962 if ((1 == resp->done) && (!resp->sg_io_owned) &&
1963 ((-1 == pack_id) || (resp->header.pack_id == pack_id))) {
1964 resp->done = 2; /* guard against other readers */
1965 break;
1966 }
1967 }
1968 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1969 return resp;
1970}
1971
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972/* always adds to end of list */
1973static Sg_request *
1974sg_add_request(Sg_fd * sfp)
1975{
1976 int k;
1977 unsigned long iflags;
1978 Sg_request *resp;
1979 Sg_request *rp = sfp->req_arr;
1980
1981 write_lock_irqsave(&sfp->rq_list_lock, iflags);
1982 resp = sfp->headrp;
1983 if (!resp) {
1984 memset(rp, 0, sizeof (Sg_request));
1985 rp->parentfp = sfp;
1986 resp = rp;
1987 sfp->headrp = resp;
1988 } else {
1989 if (0 == sfp->cmd_q)
1990 resp = NULL; /* command queuing disallowed */
1991 else {
1992 for (k = 0; k < SG_MAX_QUEUE; ++k, ++rp) {
1993 if (!rp->parentfp)
1994 break;
1995 }
1996 if (k < SG_MAX_QUEUE) {
1997 memset(rp, 0, sizeof (Sg_request));
1998 rp->parentfp = sfp;
1999 while (resp->nextrp)
2000 resp = resp->nextrp;
2001 resp->nextrp = rp;
2002 resp = rp;
2003 } else
2004 resp = NULL;
2005 }
2006 }
2007 if (resp) {
2008 resp->nextrp = NULL;
cb59e842005-04-02 13:51:23 -06002009 resp->header.duration = jiffies_to_msecs(jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 }
2011 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
2012 return resp;
2013}
2014
2015/* Return of 1 for found; 0 for not found */
2016static int
2017sg_remove_request(Sg_fd * sfp, Sg_request * srp)
2018{
2019 Sg_request *prev_rp;
2020 Sg_request *rp;
2021 unsigned long iflags;
2022 int res = 0;
2023
2024 if ((!sfp) || (!srp) || (!sfp->headrp))
2025 return res;
2026 write_lock_irqsave(&sfp->rq_list_lock, iflags);
2027 prev_rp = sfp->headrp;
2028 if (srp == prev_rp) {
2029 sfp->headrp = prev_rp->nextrp;
2030 prev_rp->parentfp = NULL;
2031 res = 1;
2032 } else {
2033 while ((rp = prev_rp->nextrp)) {
2034 if (srp == rp) {
2035 prev_rp->nextrp = rp->nextrp;
2036 rp->parentfp = NULL;
2037 res = 1;
2038 break;
2039 }
2040 prev_rp = rp;
2041 }
2042 }
2043 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
2044 return res;
2045}
2046
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047static Sg_fd *
2048sg_add_sfp(Sg_device * sdp, int dev)
2049{
2050 Sg_fd *sfp;
2051 unsigned long iflags;
Alan Stern44ec9542007-02-20 11:01:57 -05002052 int bufflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053
Mike Christied6b10342005-11-08 04:06:41 -06002054 sfp = kzalloc(sizeof(*sfp), GFP_ATOMIC | __GFP_NOWARN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 if (!sfp)
2056 return NULL;
Mike Christied6b10342005-11-08 04:06:41 -06002057
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 init_waitqueue_head(&sfp->read_wait);
2059 rwlock_init(&sfp->rq_list_lock);
2060
Tony Battersbyc6517b72009-01-21 14:45:50 -05002061 kref_init(&sfp->f_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 sfp->timeout = SG_DEFAULT_TIMEOUT;
2063 sfp->timeout_user = SG_DEFAULT_TIMEOUT_USER;
2064 sfp->force_packid = SG_DEF_FORCE_PACK_ID;
2065 sfp->low_dma = (SG_DEF_FORCE_LOW_DMA == 0) ?
2066 sdp->device->host->unchecked_isa_dma : 1;
2067 sfp->cmd_q = SG_DEF_COMMAND_Q;
2068 sfp->keep_orphan = SG_DEF_KEEP_ORPHAN;
2069 sfp->parentdp = sdp;
James Bottomley7c07d612007-08-05 13:36:11 -05002070 write_lock_irqsave(&sg_index_lock, iflags);
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002071 list_add_tail(&sfp->sfd_siblings, &sdp->sfds);
James Bottomley7c07d612007-08-05 13:36:11 -05002072 write_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 SCSI_LOG_TIMEOUT(3, printk("sg_add_sfp: sfp=0x%p\n", sfp));
Douglas Gilbert6460e752006-09-20 18:20:49 -04002074 if (unlikely(sg_big_buff != def_reserved_size))
2075 sg_big_buff = def_reserved_size;
2076
Alan Stern44ec9542007-02-20 11:01:57 -05002077 bufflen = min_t(int, sg_big_buff,
Martin K. Petersenae03bf62009-05-22 17:17:50 -04002078 queue_max_sectors(sdp->device->request_queue) * 512);
Alan Stern44ec9542007-02-20 11:01:57 -05002079 sg_build_reserve(sfp, bufflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 SCSI_LOG_TIMEOUT(3, printk("sg_add_sfp: bufflen=%d, k_use_sg=%d\n",
2081 sfp->reserve.bufflen, sfp->reserve.k_use_sg));
Tony Battersbyc6517b72009-01-21 14:45:50 -05002082
2083 kref_get(&sdp->d_ref);
2084 __module_get(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 return sfp;
2086}
2087
Tony Battersbyc6517b72009-01-21 14:45:50 -05002088static void sg_remove_sfp_usercontext(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089{
Tony Battersbyc6517b72009-01-21 14:45:50 -05002090 struct sg_fd *sfp = container_of(work, struct sg_fd, ew.work);
2091 struct sg_device *sdp = sfp->parentdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092
Tony Battersbyc6517b72009-01-21 14:45:50 -05002093 /* Cleanup any responses which were never read(). */
2094 while (sfp->headrp)
2095 sg_finish_rem_req(sfp->headrp);
2096
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 if (sfp->reserve.bufflen > 0) {
Tony Battersbyc6517b72009-01-21 14:45:50 -05002098 SCSI_LOG_TIMEOUT(6,
2099 printk("sg_remove_sfp: bufflen=%d, k_use_sg=%d\n",
2100 (int) sfp->reserve.bufflen,
2101 (int) sfp->reserve.k_use_sg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 sg_remove_scat(&sfp->reserve);
2103 }
Tony Battersbyc6517b72009-01-21 14:45:50 -05002104
2105 SCSI_LOG_TIMEOUT(6,
2106 printk("sg_remove_sfp: %s, sfp=0x%p\n",
2107 sdp->disk->disk_name,
2108 sfp));
Mike Christied6b10342005-11-08 04:06:41 -06002109 kfree(sfp);
Tony Battersbyc6517b72009-01-21 14:45:50 -05002110
2111 scsi_device_put(sdp->device);
2112 sg_put_dev(sdp);
2113 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114}
2115
Tony Battersbyc6517b72009-01-21 14:45:50 -05002116static void sg_remove_sfp(struct kref *kref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117{
Tony Battersbyc6517b72009-01-21 14:45:50 -05002118 struct sg_fd *sfp = container_of(kref, struct sg_fd, f_ref);
2119 struct sg_device *sdp = sfp->parentdp;
Tony Battersbyc6517b72009-01-21 14:45:50 -05002120 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
Tony Battersbyc6517b72009-01-21 14:45:50 -05002122 write_lock_irqsave(&sg_index_lock, iflags);
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002123 list_del(&sfp->sfd_siblings);
Tony Battersbyc6517b72009-01-21 14:45:50 -05002124 write_unlock_irqrestore(&sg_index_lock, iflags);
2125 wake_up_interruptible(&sdp->o_excl_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
FUJITA Tomonori015640e2009-04-03 19:28:06 +09002127 INIT_WORK(&sfp->ew.work, sg_remove_sfp_usercontext);
2128 schedule_work(&sfp->ew.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129}
2130
2131static int
2132sg_res_in_use(Sg_fd * sfp)
2133{
2134 const Sg_request *srp;
2135 unsigned long iflags;
2136
2137 read_lock_irqsave(&sfp->rq_list_lock, iflags);
2138 for (srp = sfp->headrp; srp; srp = srp->nextrp)
2139 if (srp->res_used)
2140 break;
2141 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
2142 return srp ? 1 : 0;
2143}
2144
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145#ifdef CONFIG_SCSI_PROC_FS
2146static int
James Bottomley7c07d612007-08-05 13:36:11 -05002147sg_idr_max_id(int id, void *p, void *data)
2148{
2149 int *k = data;
2150
2151 if (*k < id)
2152 *k = id;
2153
2154 return 0;
2155}
2156
2157static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158sg_last_dev(void)
2159{
Tony Battersby53474c02008-01-22 15:25:49 -05002160 int k = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 unsigned long iflags;
2162
James Bottomley7c07d612007-08-05 13:36:11 -05002163 read_lock_irqsave(&sg_index_lock, iflags);
2164 idr_for_each(&sg_index_idr, sg_idr_max_id, &k);
2165 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 return k + 1; /* origin 1 */
2167}
2168#endif
2169
Tony Battersbyc6517b72009-01-21 14:45:50 -05002170/* must be called with sg_index_lock held */
2171static Sg_device *sg_lookup_dev(int dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172{
Tony Battersbyc6517b72009-01-21 14:45:50 -05002173 return idr_find(&sg_index_idr, dev);
2174}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175
Tony Battersbyc6517b72009-01-21 14:45:50 -05002176static Sg_device *sg_get_dev(int dev)
2177{
2178 struct sg_device *sdp;
2179 unsigned long flags;
2180
2181 read_lock_irqsave(&sg_index_lock, flags);
2182 sdp = sg_lookup_dev(dev);
2183 if (!sdp)
2184 sdp = ERR_PTR(-ENXIO);
2185 else if (sdp->detached) {
2186 /* If sdp->detached, then the refcount may already be 0, in
2187 * which case it would be a bug to do kref_get().
2188 */
2189 sdp = ERR_PTR(-ENODEV);
2190 } else
2191 kref_get(&sdp->d_ref);
2192 read_unlock_irqrestore(&sg_index_lock, flags);
James Bottomley7c07d612007-08-05 13:36:11 -05002193
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 return sdp;
2195}
2196
Tony Battersbyc6517b72009-01-21 14:45:50 -05002197static void sg_put_dev(struct sg_device *sdp)
2198{
2199 kref_put(&sdp->d_ref, sg_device_destroy);
2200}
2201
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202#ifdef CONFIG_SCSI_PROC_FS
2203
2204static struct proc_dir_entry *sg_proc_sgp = NULL;
2205
2206static char sg_proc_sg_dirname[] = "scsi/sg";
2207
2208static int sg_proc_seq_show_int(struct seq_file *s, void *v);
2209
2210static int sg_proc_single_open_adio(struct inode *inode, struct file *file);
2211static ssize_t sg_proc_write_adio(struct file *filp, const char __user *buffer,
2212 size_t count, loff_t *off);
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002213static const struct file_operations adio_fops = {
2214 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 .open = sg_proc_single_open_adio,
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002216 .read = seq_read,
2217 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 .write = sg_proc_write_adio,
2219 .release = single_release,
2220};
2221
2222static int sg_proc_single_open_dressz(struct inode *inode, struct file *file);
2223static ssize_t sg_proc_write_dressz(struct file *filp,
2224 const char __user *buffer, size_t count, loff_t *off);
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002225static const struct file_operations dressz_fops = {
2226 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 .open = sg_proc_single_open_dressz,
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002228 .read = seq_read,
2229 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 .write = sg_proc_write_dressz,
2231 .release = single_release,
2232};
2233
2234static int sg_proc_seq_show_version(struct seq_file *s, void *v);
2235static int sg_proc_single_open_version(struct inode *inode, struct file *file);
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002236static const struct file_operations version_fops = {
2237 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 .open = sg_proc_single_open_version,
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002239 .read = seq_read,
2240 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 .release = single_release,
2242};
2243
2244static int sg_proc_seq_show_devhdr(struct seq_file *s, void *v);
2245static int sg_proc_single_open_devhdr(struct inode *inode, struct file *file);
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002246static const struct file_operations devhdr_fops = {
2247 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 .open = sg_proc_single_open_devhdr,
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002249 .read = seq_read,
2250 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 .release = single_release,
2252};
2253
2254static int sg_proc_seq_show_dev(struct seq_file *s, void *v);
2255static int sg_proc_open_dev(struct inode *inode, struct file *file);
2256static void * dev_seq_start(struct seq_file *s, loff_t *pos);
2257static void * dev_seq_next(struct seq_file *s, void *v, loff_t *pos);
2258static void dev_seq_stop(struct seq_file *s, void *v);
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002259static const struct file_operations dev_fops = {
2260 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 .open = sg_proc_open_dev,
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002262 .read = seq_read,
2263 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 .release = seq_release,
2265};
James Morris88e9d342009-09-22 16:43:43 -07002266static const struct seq_operations dev_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 .start = dev_seq_start,
2268 .next = dev_seq_next,
2269 .stop = dev_seq_stop,
2270 .show = sg_proc_seq_show_dev,
2271};
2272
2273static int sg_proc_seq_show_devstrs(struct seq_file *s, void *v);
2274static int sg_proc_open_devstrs(struct inode *inode, struct file *file);
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002275static const struct file_operations devstrs_fops = {
2276 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 .open = sg_proc_open_devstrs,
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002278 .read = seq_read,
2279 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 .release = seq_release,
2281};
James Morris88e9d342009-09-22 16:43:43 -07002282static const struct seq_operations devstrs_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 .start = dev_seq_start,
2284 .next = dev_seq_next,
2285 .stop = dev_seq_stop,
2286 .show = sg_proc_seq_show_devstrs,
2287};
2288
2289static int sg_proc_seq_show_debug(struct seq_file *s, void *v);
2290static int sg_proc_open_debug(struct inode *inode, struct file *file);
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002291static const struct file_operations debug_fops = {
2292 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 .open = sg_proc_open_debug,
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002294 .read = seq_read,
2295 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 .release = seq_release,
2297};
James Morris88e9d342009-09-22 16:43:43 -07002298static const struct seq_operations debug_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 .start = dev_seq_start,
2300 .next = dev_seq_next,
2301 .stop = dev_seq_stop,
2302 .show = sg_proc_seq_show_debug,
2303};
2304
2305
2306struct sg_proc_leaf {
2307 const char * name;
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002308 const struct file_operations * fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309};
2310
2311static struct sg_proc_leaf sg_proc_leaf_arr[] = {
2312 {"allow_dio", &adio_fops},
2313 {"debug", &debug_fops},
2314 {"def_reserved_size", &dressz_fops},
2315 {"device_hdr", &devhdr_fops},
2316 {"devices", &dev_fops},
2317 {"device_strs", &devstrs_fops},
2318 {"version", &version_fops}
2319};
2320
2321static int
2322sg_proc_init(void)
2323{
2324 int k, mask;
Tobias Klauser6391a112006-06-08 22:23:48 -07002325 int num_leaves = ARRAY_SIZE(sg_proc_leaf_arr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 struct sg_proc_leaf * leaf;
2327
Al Viro66600222005-09-28 22:32:57 +01002328 sg_proc_sgp = proc_mkdir(sg_proc_sg_dirname, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 if (!sg_proc_sgp)
2330 return 1;
2331 for (k = 0; k < num_leaves; ++k) {
2332 leaf = &sg_proc_leaf_arr[k];
2333 mask = leaf->fops->write ? S_IRUGO | S_IWUSR : S_IRUGO;
Denis V. Luneva9739092008-04-29 01:02:17 -07002334 proc_create(leaf->name, mask, sg_proc_sgp, leaf->fops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 }
2336 return 0;
2337}
2338
2339static void
2340sg_proc_cleanup(void)
2341{
2342 int k;
Tobias Klauser6391a112006-06-08 22:23:48 -07002343 int num_leaves = ARRAY_SIZE(sg_proc_leaf_arr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344
2345 if (!sg_proc_sgp)
2346 return;
2347 for (k = 0; k < num_leaves; ++k)
2348 remove_proc_entry(sg_proc_leaf_arr[k].name, sg_proc_sgp);
2349 remove_proc_entry(sg_proc_sg_dirname, NULL);
2350}
2351
2352
2353static int sg_proc_seq_show_int(struct seq_file *s, void *v)
2354{
2355 seq_printf(s, "%d\n", *((int *)s->private));
2356 return 0;
2357}
2358
2359static int sg_proc_single_open_adio(struct inode *inode, struct file *file)
2360{
2361 return single_open(file, sg_proc_seq_show_int, &sg_allow_dio);
2362}
2363
2364static ssize_t
2365sg_proc_write_adio(struct file *filp, const char __user *buffer,
2366 size_t count, loff_t *off)
2367{
2368 int num;
2369 char buff[11];
2370
2371 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
2372 return -EACCES;
2373 num = (count < 10) ? count : 10;
2374 if (copy_from_user(buff, buffer, num))
2375 return -EFAULT;
2376 buff[num] = '\0';
2377 sg_allow_dio = simple_strtoul(buff, NULL, 10) ? 1 : 0;
2378 return count;
2379}
2380
2381static int sg_proc_single_open_dressz(struct inode *inode, struct file *file)
2382{
2383 return single_open(file, sg_proc_seq_show_int, &sg_big_buff);
2384}
2385
2386static ssize_t
2387sg_proc_write_dressz(struct file *filp, const char __user *buffer,
2388 size_t count, loff_t *off)
2389{
2390 int num;
2391 unsigned long k = ULONG_MAX;
2392 char buff[11];
2393
2394 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
2395 return -EACCES;
2396 num = (count < 10) ? count : 10;
2397 if (copy_from_user(buff, buffer, num))
2398 return -EFAULT;
2399 buff[num] = '\0';
2400 k = simple_strtoul(buff, NULL, 10);
2401 if (k <= 1048576) { /* limit "big buff" to 1 MB */
2402 sg_big_buff = k;
2403 return count;
2404 }
2405 return -ERANGE;
2406}
2407
2408static int sg_proc_seq_show_version(struct seq_file *s, void *v)
2409{
2410 seq_printf(s, "%d\t%s [%s]\n", sg_version_num, SG_VERSION_STR,
2411 sg_version_date);
2412 return 0;
2413}
2414
2415static int sg_proc_single_open_version(struct inode *inode, struct file *file)
2416{
2417 return single_open(file, sg_proc_seq_show_version, NULL);
2418}
2419
2420static int sg_proc_seq_show_devhdr(struct seq_file *s, void *v)
2421{
2422 seq_printf(s, "host\tchan\tid\tlun\ttype\topens\tqdepth\tbusy\t"
2423 "online\n");
2424 return 0;
2425}
2426
2427static int sg_proc_single_open_devhdr(struct inode *inode, struct file *file)
2428{
2429 return single_open(file, sg_proc_seq_show_devhdr, NULL);
2430}
2431
2432struct sg_proc_deviter {
2433 loff_t index;
2434 size_t max;
2435};
2436
2437static void * dev_seq_start(struct seq_file *s, loff_t *pos)
2438{
2439 struct sg_proc_deviter * it = kmalloc(sizeof(*it), GFP_KERNEL);
2440
Jan Blunck729d70f2005-08-27 11:07:52 -07002441 s->private = it;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 if (! it)
2443 return NULL;
Jan Blunck729d70f2005-08-27 11:07:52 -07002444
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 it->index = *pos;
2446 it->max = sg_last_dev();
2447 if (it->index >= it->max)
Jan Blunck729d70f2005-08-27 11:07:52 -07002448 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 return it;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450}
2451
2452static void * dev_seq_next(struct seq_file *s, void *v, loff_t *pos)
2453{
Jan Blunck729d70f2005-08-27 11:07:52 -07002454 struct sg_proc_deviter * it = s->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455
2456 *pos = ++it->index;
2457 return (it->index < it->max) ? it : NULL;
2458}
2459
2460static void dev_seq_stop(struct seq_file *s, void *v)
2461{
Jan Blunck729d70f2005-08-27 11:07:52 -07002462 kfree(s->private);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463}
2464
2465static int sg_proc_open_dev(struct inode *inode, struct file *file)
2466{
2467 return seq_open(file, &dev_seq_ops);
2468}
2469
2470static int sg_proc_seq_show_dev(struct seq_file *s, void *v)
2471{
2472 struct sg_proc_deviter * it = (struct sg_proc_deviter *) v;
2473 Sg_device *sdp;
2474 struct scsi_device *scsidp;
Tony Battersbyc6517b72009-01-21 14:45:50 -05002475 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476
Tony Battersbyc6517b72009-01-21 14:45:50 -05002477 read_lock_irqsave(&sg_index_lock, iflags);
2478 sdp = it ? sg_lookup_dev(it->index) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 if (sdp && (scsidp = sdp->device) && (!sdp->detached))
2480 seq_printf(s, "%d\t%d\t%d\t%d\t%d\t%d\t%d\t%d\t%d\n",
2481 scsidp->host->host_no, scsidp->channel,
2482 scsidp->id, scsidp->lun, (int) scsidp->type,
2483 1,
2484 (int) scsidp->queue_depth,
2485 (int) scsidp->device_busy,
2486 (int) scsi_device_online(scsidp));
2487 else
2488 seq_printf(s, "-1\t-1\t-1\t-1\t-1\t-1\t-1\t-1\t-1\n");
Tony Battersbyc6517b72009-01-21 14:45:50 -05002489 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 return 0;
2491}
2492
2493static int sg_proc_open_devstrs(struct inode *inode, struct file *file)
2494{
2495 return seq_open(file, &devstrs_seq_ops);
2496}
2497
2498static int sg_proc_seq_show_devstrs(struct seq_file *s, void *v)
2499{
2500 struct sg_proc_deviter * it = (struct sg_proc_deviter *) v;
2501 Sg_device *sdp;
2502 struct scsi_device *scsidp;
Tony Battersbyc6517b72009-01-21 14:45:50 -05002503 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504
Tony Battersbyc6517b72009-01-21 14:45:50 -05002505 read_lock_irqsave(&sg_index_lock, iflags);
2506 sdp = it ? sg_lookup_dev(it->index) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 if (sdp && (scsidp = sdp->device) && (!sdp->detached))
2508 seq_printf(s, "%8.8s\t%16.16s\t%4.4s\n",
2509 scsidp->vendor, scsidp->model, scsidp->rev);
2510 else
2511 seq_printf(s, "<no active device>\n");
Tony Battersbyc6517b72009-01-21 14:45:50 -05002512 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 return 0;
2514}
2515
Tony Battersbyc6517b72009-01-21 14:45:50 -05002516/* must be called while holding sg_index_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517static void sg_proc_debug_helper(struct seq_file *s, Sg_device * sdp)
2518{
2519 int k, m, new_interface, blen, usg;
2520 Sg_request *srp;
2521 Sg_fd *fp;
2522 const sg_io_hdr_t *hp;
2523 const char * cp;
cb59e842005-04-02 13:51:23 -06002524 unsigned int ms;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002526 k = 0;
2527 list_for_each_entry(fp, &sdp->sfds, sfd_siblings) {
2528 k++;
Tony Battersbyc6517b72009-01-21 14:45:50 -05002529 read_lock(&fp->rq_list_lock); /* irqs already disabled */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 seq_printf(s, " FD(%d): timeout=%dms bufflen=%d "
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002531 "(res)sgat=%d low_dma=%d\n", k,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 jiffies_to_msecs(fp->timeout),
2533 fp->reserve.bufflen,
2534 (int) fp->reserve.k_use_sg,
2535 (int) fp->low_dma);
2536 seq_printf(s, " cmd_q=%d f_packid=%d k_orphan=%d closed=%d\n",
2537 (int) fp->cmd_q, (int) fp->force_packid,
2538 (int) fp->keep_orphan, (int) fp->closed);
Tony Battersbyc6517b72009-01-21 14:45:50 -05002539 for (m = 0, srp = fp->headrp;
2540 srp != NULL;
2541 ++m, srp = srp->nextrp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 hp = &srp->header;
2543 new_interface = (hp->interface_id == '\0') ? 0 : 1;
2544 if (srp->res_used) {
2545 if (new_interface &&
2546 (SG_FLAG_MMAP_IO & hp->flags))
2547 cp = " mmap>> ";
2548 else
2549 cp = " rb>> ";
2550 } else {
2551 if (SG_INFO_DIRECT_IO_MASK & hp->info)
2552 cp = " dio>> ";
2553 else
2554 cp = " ";
2555 }
2556 seq_printf(s, cp);
Mike Christied6b10342005-11-08 04:06:41 -06002557 blen = srp->data.bufflen;
2558 usg = srp->data.k_use_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 seq_printf(s, srp->done ?
2560 ((1 == srp->done) ? "rcv:" : "fin:")
Mike Christied6b10342005-11-08 04:06:41 -06002561 : "act:");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 seq_printf(s, " id=%d blen=%d",
2563 srp->header.pack_id, blen);
2564 if (srp->done)
2565 seq_printf(s, " dur=%d", hp->duration);
cb59e842005-04-02 13:51:23 -06002566 else {
2567 ms = jiffies_to_msecs(jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 seq_printf(s, " t_o/elap=%d/%d",
cb59e842005-04-02 13:51:23 -06002569 (new_interface ? hp->timeout :
2570 jiffies_to_msecs(fp->timeout)),
2571 (ms > hp->duration ? ms - hp->duration : 0));
2572 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 seq_printf(s, "ms sgat=%d op=0x%02x\n", usg,
2574 (int) srp->data.cmd_opcode);
2575 }
2576 if (0 == m)
2577 seq_printf(s, " No requests active\n");
Tony Battersbyc6517b72009-01-21 14:45:50 -05002578 read_unlock(&fp->rq_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 }
2580}
2581
2582static int sg_proc_open_debug(struct inode *inode, struct file *file)
2583{
2584 return seq_open(file, &debug_seq_ops);
2585}
2586
2587static int sg_proc_seq_show_debug(struct seq_file *s, void *v)
2588{
2589 struct sg_proc_deviter * it = (struct sg_proc_deviter *) v;
2590 Sg_device *sdp;
Tony Battersbyc6517b72009-01-21 14:45:50 -05002591 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592
2593 if (it && (0 == it->index)) {
James Bottomley7c07d612007-08-05 13:36:11 -05002594 seq_printf(s, "max_active_device=%d(origin 1)\n",
2595 (int)it->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 seq_printf(s, " def_reserved_size=%d\n", sg_big_buff);
2597 }
Tony Battersbyc6517b72009-01-21 14:45:50 -05002598
2599 read_lock_irqsave(&sg_index_lock, iflags);
2600 sdp = it ? sg_lookup_dev(it->index) : NULL;
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002601 if (sdp && !list_empty(&sdp->sfds)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 struct scsi_device *scsidp = sdp->device;
2603
Tony Battersbyc6517b72009-01-21 14:45:50 -05002604 seq_printf(s, " >>> device=%s ", sdp->disk->disk_name);
2605 if (sdp->detached)
2606 seq_printf(s, "detached pending close ");
2607 else
2608 seq_printf
2609 (s, "scsi%d chan=%d id=%d lun=%d em=%d",
2610 scsidp->host->host_no,
2611 scsidp->channel, scsidp->id,
2612 scsidp->lun,
2613 scsidp->host->hostt->emulated);
2614 seq_printf(s, " sg_tablesize=%d excl=%d\n",
2615 sdp->sg_tablesize, sdp->exclude);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 sg_proc_debug_helper(s, sdp);
2617 }
Tony Battersbyc6517b72009-01-21 14:45:50 -05002618 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 return 0;
2620}
2621
2622#endif /* CONFIG_SCSI_PROC_FS */
2623
2624module_init(init_sg);
2625module_exit(exit_sg);