blob: c996d98636f340704b82c0fab8d445c1591823ff [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>
41#include <linux/fcntl.h>
42#include <linux/init.h>
43#include <linux/poll.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/moduleparam.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/cdev.h>
James Bottomley7c07d612007-08-05 13:36:11 -050046#include <linux/idr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/seq_file.h>
48#include <linux/blkdev.h>
49#include <linux/delay.h>
Christof Schmitt6da127a2008-01-11 10:09:43 +010050#include <linux/blktrace_api.h>
Jonathan Corbeteb09d3d2008-05-15 12:22:06 -060051#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53#include "scsi.h"
db9dff32005-04-03 14:53:59 -050054#include <scsi/scsi_dbg.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <scsi/scsi_host.h>
56#include <scsi/scsi_driver.h>
57#include <scsi/scsi_ioctl.h>
58#include <scsi/sg.h>
59
60#include "scsi_logging.h"
61
62#ifdef CONFIG_SCSI_PROC_FS
63#include <linux/proc_fs.h>
Douglas Gilbert7ca63cb2006-10-27 17:47:49 -040064static char *sg_version_date = "20061027";
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66static int sg_proc_init(void);
67static void sg_proc_cleanup(void);
68#endif
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#define SG_ALLOW_DIO_DEF 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72#define SG_MAX_DEVS 32768
73
74/*
75 * Suppose you want to calculate the formula muldiv(x,m,d)=int(x * m / d)
76 * Then when using 32 bit integers x * m may overflow during the calculation.
77 * Replacing muldiv(x) by muldiv(x)=((x % d) * m) / d + int(x / d) * m
78 * calculates the same, but prevents the overflow when both m and d
79 * are "small" numbers (like HZ and USER_HZ).
80 * Of course an overflow is inavoidable if the result of muldiv doesn't fit
81 * in 32 bits.
82 */
83#define MULDIV(X,MUL,DIV) ((((X % DIV) * MUL) / DIV) + ((X / DIV) * MUL))
84
85#define SG_DEFAULT_TIMEOUT MULDIV(SG_DEFAULT_TIMEOUT_USER, HZ, USER_HZ)
86
87int sg_big_buff = SG_DEF_RESERVED_SIZE;
88/* N.B. This variable is readable and writeable via
89 /proc/scsi/sg/def_reserved_size . Each time sg_open() is called a buffer
90 of this size (or less if there is not enough memory) will be reserved
91 for use by this file descriptor. [Deprecated usage: this variable is also
92 readable via /proc/sys/kernel/sg-big-buff if the sg driver is built into
93 the kernel (i.e. it is not a module).] */
94static int def_reserved_size = -1; /* picks up init parameter */
95static int sg_allow_dio = SG_ALLOW_DIO_DEF;
96
Douglas Gilbert6460e752006-09-20 18:20:49 -040097static int scatter_elem_sz = SG_SCATTER_SZ;
98static int scatter_elem_sz_prev = SG_SCATTER_SZ;
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100#define SG_SECTOR_SZ 512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Tony Jonesee959b02008-02-22 00:13:36 +0100102static int sg_add(struct device *, struct class_interface *);
103static void sg_remove(struct device *, struct class_interface *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
James Bottomley7c07d612007-08-05 13:36:11 -0500105static DEFINE_IDR(sg_index_idr);
106static DEFINE_RWLOCK(sg_index_lock); /* Also used to lock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 file descriptor list for device */
108
109static struct class_interface sg_interface = {
Tony Jonesee959b02008-02-22 00:13:36 +0100110 .add_dev = sg_add,
111 .remove_dev = sg_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112};
113
114typedef struct sg_scatter_hold { /* holding area for scsi scatter gather info */
115 unsigned short k_use_sg; /* Count of kernel scatter-gather pieces */
FUJITA Tomonoriea312552007-08-06 00:31:24 +0900116 unsigned sglist_len; /* size of malloc'd scatter-gather list ++ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 unsigned bufflen; /* Size of (aggregate) data buffer */
FUJITA Tomonori10db10d2008-08-29 12:32:18 +0200118 struct page **pages;
119 int page_order;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 char dio_in_use; /* 0->indirect IO (or mmap), 1->dio */
121 unsigned char cmd_opcode; /* first byte of command */
122} Sg_scatter_hold;
123
124struct sg_device; /* forward declarations */
125struct sg_fd;
126
127typedef struct sg_request { /* SG_MAX_QUEUE requests outstanding per file */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 struct sg_request *nextrp; /* NULL -> tail request (slist) */
129 struct sg_fd *parentfp; /* NULL -> not in use */
130 Sg_scatter_hold data; /* hold buffer, perhaps scatter list */
131 sg_io_hdr_t header; /* scsi command+info, see <scsi/sg.h> */
Mike Christied6b10342005-11-08 04:06:41 -0600132 unsigned char sense_b[SCSI_SENSE_BUFFERSIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 char res_used; /* 1 -> using reserve buffer, 0 -> not ... */
134 char orphan; /* 1 -> drop on sight, 0 -> normal */
135 char sg_io_owned; /* 1 -> packet belongs to SG_IO */
136 volatile char done; /* 0->before bh, 1->before read, 2->read */
FUJITA Tomonori10865df2008-08-28 16:17:07 +0900137 struct request *rq;
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +0900138 struct bio *bio;
FUJITA Tomonoric96952e2009-02-04 11:36:27 +0900139 struct execute_work ew;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140} Sg_request;
141
142typedef struct sg_fd { /* holds the state of a file descriptor */
FUJITA Tomonori3442f802009-02-16 13:26:53 +0900143 struct list_head sfd_siblings;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 struct sg_device *parentdp; /* owning device */
145 wait_queue_head_t read_wait; /* queue read until command done */
146 rwlock_t rq_list_lock; /* protect access to list in req_arr */
147 int timeout; /* defaults to SG_DEFAULT_TIMEOUT */
148 int timeout_user; /* defaults to SG_DEFAULT_TIMEOUT_USER */
149 Sg_scatter_hold reserve; /* buffer held for this file descriptor */
150 unsigned save_scat_len; /* original length of trunc. scat. element */
151 Sg_request *headrp; /* head of request slist, NULL->empty */
152 struct fasync_struct *async_qp; /* used by asynchronous notification */
153 Sg_request req_arr[SG_MAX_QUEUE]; /* used as singly-linked list */
154 char low_dma; /* as in parent but possibly overridden to 1 */
155 char force_packid; /* 1 -> pack_id input to read(), 0 -> ignored */
156 volatile char closed; /* 1 -> fd closed but request(s) outstanding */
157 char cmd_q; /* 1 -> allow command queuing, 0 -> don't */
158 char next_cmd_len; /* 0 -> automatic (def), >0 -> use on next write() */
159 char keep_orphan; /* 0 -> drop orphan (def), 1 -> keep for read() */
160 char mmap_called; /* 0 -> mmap() never called on this fd */
Tony Battersbyc6517b72009-01-21 14:45:50 -0500161 struct kref f_ref;
162 struct execute_work ew;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163} Sg_fd;
164
165typedef struct sg_device { /* holds the state of each scsi generic device */
166 struct scsi_device *device;
167 wait_queue_head_t o_excl_wait; /* queue open() when O_EXCL in use */
168 int sg_tablesize; /* adapter's max scatter-gather table size */
James Bottomley7c07d612007-08-05 13:36:11 -0500169 u32 index; /* device index number */
FUJITA Tomonori3442f802009-02-16 13:26:53 +0900170 struct list_head sfds;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 volatile char detached; /* 0->attached, 1->detached pending removal */
172 volatile char exclude; /* opened for exclusive access */
173 char sgdebug; /* 0->off, 1->sense, 9->dump dev, 10-> all devs */
174 struct gendisk *disk;
175 struct cdev * cdev; /* char_dev [sysfs: /sys/cdev/major/sg<n>] */
Tony Battersbyc6517b72009-01-21 14:45:50 -0500176 struct kref d_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177} Sg_device;
178
Mike Christied6b10342005-11-08 04:06:41 -0600179/* tasklet or soft irq callback */
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +0900180static void sg_rq_end_io(struct request *rq, int uptodate);
FUJITA Tomonori10865df2008-08-28 16:17:07 +0900181static int sg_start_req(Sg_request *srp, unsigned char *cmd);
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +0900182static int sg_finish_rem_req(Sg_request * srp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183static int sg_build_indirect(Sg_scatter_hold * schp, Sg_fd * sfp, int buff_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184static ssize_t sg_new_read(Sg_fd * sfp, char __user *buf, size_t count,
185 Sg_request * srp);
Adel Gadllah0b07de82008-06-26 13:48:27 +0200186static ssize_t sg_new_write(Sg_fd *sfp, struct file *file,
187 const char __user *buf, size_t count, int blocking,
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500188 int read_only, int sg_io_owned, Sg_request **o_srp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189static int sg_common_write(Sg_fd * sfp, Sg_request * srp,
190 unsigned char *cmnd, int timeout, int blocking);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191static int sg_read_oxfer(Sg_request * srp, char __user *outp, int num_read_xfer);
192static void sg_remove_scat(Sg_scatter_hold * schp);
193static void sg_build_reserve(Sg_fd * sfp, int req_size);
194static void sg_link_reserve(Sg_fd * sfp, Sg_request * srp, int size);
195static void sg_unlink_reserve(Sg_fd * sfp, Sg_request * srp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196static Sg_fd *sg_add_sfp(Sg_device * sdp, int dev);
Tony Battersbyc6517b72009-01-21 14:45:50 -0500197static void sg_remove_sfp(struct kref *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198static Sg_request *sg_get_rq_mark(Sg_fd * sfp, int pack_id);
199static Sg_request *sg_add_request(Sg_fd * sfp);
200static int sg_remove_request(Sg_fd * sfp, Sg_request * srp);
201static int sg_res_in_use(Sg_fd * sfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202static Sg_device *sg_get_dev(int dev);
Tony Battersbyc6517b72009-01-21 14:45:50 -0500203static void sg_put_dev(Sg_device *sdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205#define SZ_SG_HEADER sizeof(struct sg_header)
206#define SZ_SG_IO_HDR sizeof(sg_io_hdr_t)
207#define SZ_SG_IOVEC sizeof(sg_iovec_t)
208#define SZ_SG_REQ_INFO sizeof(sg_req_info_t)
209
FUJITA Tomonori14e507b2008-07-26 18:03:24 +0900210static int sg_allow_access(struct file *filp, unsigned char *cmd)
211{
212 struct sg_fd *sfp = (struct sg_fd *)filp->private_data;
FUJITA Tomonori14e507b2008-07-26 18:03:24 +0900213
214 if (sfp->parentdp->device->type == TYPE_SCANNER)
215 return 0;
216
Jens Axboe018e0442009-06-26 16:27:10 +0200217 return blk_verify_command(cmd, filp->f_mode & FMODE_WRITE);
FUJITA Tomonori14e507b2008-07-26 18:03:24 +0900218}
219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220static int
221sg_open(struct inode *inode, struct file *filp)
222{
223 int dev = iminor(inode);
224 int flags = filp->f_flags;
Mike Christied6b10342005-11-08 04:06:41 -0600225 struct request_queue *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 Sg_device *sdp;
227 Sg_fd *sfp;
228 int res;
229 int retval;
230
Jonathan Corbeteb09d3d2008-05-15 12:22:06 -0600231 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 nonseekable_open(inode, filp);
233 SCSI_LOG_TIMEOUT(3, printk("sg_open: dev=%d, flags=0x%x\n", dev, flags));
234 sdp = sg_get_dev(dev);
Tony Battersbyc6517b72009-01-21 14:45:50 -0500235 if (IS_ERR(sdp)) {
236 retval = PTR_ERR(sdp);
237 sdp = NULL;
238 goto sg_put;
Jonathan Corbeteb09d3d2008-05-15 12:22:06 -0600239 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241 /* This driver's module count bumped by fops_get in <linux/fs.h> */
242 /* Prevent the device driver from vanishing while we sleep */
243 retval = scsi_device_get(sdp->device);
Tony Battersbyc6517b72009-01-21 14:45:50 -0500244 if (retval)
245 goto sg_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247 if (!((flags & O_NONBLOCK) ||
248 scsi_block_when_processing_errors(sdp->device))) {
249 retval = -ENXIO;
250 /* we are in error recovery for this device */
251 goto error_out;
252 }
253
254 if (flags & O_EXCL) {
255 if (O_RDONLY == (flags & O_ACCMODE)) {
256 retval = -EPERM; /* Can't lock it with read only access */
257 goto error_out;
258 }
FUJITA Tomonori3442f802009-02-16 13:26:53 +0900259 if (!list_empty(&sdp->sfds) && (flags & O_NONBLOCK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 retval = -EBUSY;
261 goto error_out;
262 }
263 res = 0;
264 __wait_event_interruptible(sdp->o_excl_wait,
FUJITA Tomonori3442f802009-02-16 13:26:53 +0900265 ((!list_empty(&sdp->sfds) || sdp->exclude) ? 0 : (sdp->exclude = 1)), res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 if (res) {
267 retval = res; /* -ERESTARTSYS because signal hit process */
268 goto error_out;
269 }
270 } else if (sdp->exclude) { /* some other fd has an exclusive lock on dev */
271 if (flags & O_NONBLOCK) {
272 retval = -EBUSY;
273 goto error_out;
274 }
275 res = 0;
276 __wait_event_interruptible(sdp->o_excl_wait, (!sdp->exclude),
277 res);
278 if (res) {
279 retval = res; /* -ERESTARTSYS because signal hit process */
280 goto error_out;
281 }
282 }
283 if (sdp->detached) {
284 retval = -ENODEV;
285 goto error_out;
286 }
FUJITA Tomonori3442f802009-02-16 13:26:53 +0900287 if (list_empty(&sdp->sfds)) { /* no existing opens on this device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 sdp->sgdebug = 0;
Mike Christied6b10342005-11-08 04:06:41 -0600289 q = sdp->device->request_queue;
Martin K. Petersen8a783622010-02-26 00:20:39 -0500290 sdp->sg_tablesize = queue_max_segments(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 }
292 if ((sfp = sg_add_sfp(sdp, dev)))
293 filp->private_data = sfp;
294 else {
Tony Battersbyc6517b72009-01-21 14:45:50 -0500295 if (flags & O_EXCL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 sdp->exclude = 0; /* undo if error */
Tony Battersbyc6517b72009-01-21 14:45:50 -0500297 wake_up_interruptible(&sdp->o_excl_wait);
298 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 retval = -ENOMEM;
300 goto error_out;
301 }
Tony Battersbyc6517b72009-01-21 14:45:50 -0500302 retval = 0;
303error_out:
304 if (retval)
305 scsi_device_put(sdp->device);
306sg_put:
307 if (sdp)
308 sg_put_dev(sdp);
Jonathan Corbeteb09d3d2008-05-15 12:22:06 -0600309 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 return retval;
311}
312
313/* Following function was formerly called 'sg_close' */
314static int
315sg_release(struct inode *inode, struct file *filp)
316{
317 Sg_device *sdp;
318 Sg_fd *sfp;
319
320 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
321 return -ENXIO;
322 SCSI_LOG_TIMEOUT(3, printk("sg_release: %s\n", sdp->disk->disk_name));
Tony Battersbyc6517b72009-01-21 14:45:50 -0500323
324 sfp->closed = 1;
325
326 sdp->exclude = 0;
327 wake_up_interruptible(&sdp->o_excl_wait);
328
329 kref_put(&sfp->f_ref, sg_remove_sfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 return 0;
331}
332
333static ssize_t
334sg_read(struct file *filp, char __user *buf, size_t count, loff_t * ppos)
335{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 Sg_device *sdp;
337 Sg_fd *sfp;
338 Sg_request *srp;
339 int req_pack_id = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 sg_io_hdr_t *hp;
cb59e842005-04-02 13:51:23 -0600341 struct sg_header *old_hdr = NULL;
342 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
344 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
345 return -ENXIO;
346 SCSI_LOG_TIMEOUT(3, printk("sg_read: %s, count=%d\n",
347 sdp->disk->disk_name, (int) count));
Mike Christied6b10342005-11-08 04:06:41 -0600348
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 if (!access_ok(VERIFY_WRITE, buf, count))
350 return -EFAULT;
351 if (sfp->force_packid && (count >= SZ_SG_HEADER)) {
cb59e842005-04-02 13:51:23 -0600352 old_hdr = kmalloc(SZ_SG_HEADER, GFP_KERNEL);
353 if (!old_hdr)
354 return -ENOMEM;
355 if (__copy_from_user(old_hdr, buf, SZ_SG_HEADER)) {
356 retval = -EFAULT;
357 goto free_old_hdr;
358 }
359 if (old_hdr->reply_len < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 if (count >= SZ_SG_IO_HDR) {
cb59e842005-04-02 13:51:23 -0600361 sg_io_hdr_t *new_hdr;
362 new_hdr = kmalloc(SZ_SG_IO_HDR, GFP_KERNEL);
363 if (!new_hdr) {
364 retval = -ENOMEM;
365 goto free_old_hdr;
366 }
367 retval =__copy_from_user
368 (new_hdr, buf, SZ_SG_IO_HDR);
369 req_pack_id = new_hdr->pack_id;
370 kfree(new_hdr);
371 if (retval) {
372 retval = -EFAULT;
373 goto free_old_hdr;
374 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 }
376 } else
cb59e842005-04-02 13:51:23 -0600377 req_pack_id = old_hdr->pack_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 }
379 srp = sg_get_rq_mark(sfp, req_pack_id);
380 if (!srp) { /* now wait on packet to arrive */
cb59e842005-04-02 13:51:23 -0600381 if (sdp->detached) {
382 retval = -ENODEV;
383 goto free_old_hdr;
384 }
385 if (filp->f_flags & O_NONBLOCK) {
386 retval = -EAGAIN;
387 goto free_old_hdr;
388 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 while (1) {
cb59e842005-04-02 13:51:23 -0600390 retval = 0; /* following macro beats race condition */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 __wait_event_interruptible(sfp->read_wait,
cb59e842005-04-02 13:51:23 -0600392 (sdp->detached ||
393 (srp = sg_get_rq_mark(sfp, req_pack_id))),
394 retval);
395 if (sdp->detached) {
396 retval = -ENODEV;
397 goto free_old_hdr;
398 }
399 if (0 == retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 break;
cb59e842005-04-02 13:51:23 -0600401
402 /* -ERESTARTSYS as signal hit process */
403 goto free_old_hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 }
405 }
cb59e842005-04-02 13:51:23 -0600406 if (srp->header.interface_id != '\0') {
407 retval = sg_new_read(sfp, buf, count, srp);
408 goto free_old_hdr;
409 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411 hp = &srp->header;
cb59e842005-04-02 13:51:23 -0600412 if (old_hdr == NULL) {
413 old_hdr = kmalloc(SZ_SG_HEADER, GFP_KERNEL);
414 if (! old_hdr) {
415 retval = -ENOMEM;
416 goto free_old_hdr;
417 }
418 }
419 memset(old_hdr, 0, SZ_SG_HEADER);
420 old_hdr->reply_len = (int) hp->timeout;
421 old_hdr->pack_len = old_hdr->reply_len; /* old, strange behaviour */
422 old_hdr->pack_id = hp->pack_id;
423 old_hdr->twelve_byte =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 ((srp->data.cmd_opcode >= 0xc0) && (12 == hp->cmd_len)) ? 1 : 0;
cb59e842005-04-02 13:51:23 -0600425 old_hdr->target_status = hp->masked_status;
426 old_hdr->host_status = hp->host_status;
427 old_hdr->driver_status = hp->driver_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 if ((CHECK_CONDITION & hp->masked_status) ||
429 (DRIVER_SENSE & hp->driver_status))
cb59e842005-04-02 13:51:23 -0600430 memcpy(old_hdr->sense_buffer, srp->sense_b,
431 sizeof (old_hdr->sense_buffer));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 switch (hp->host_status) {
433 /* This setup of 'result' is for backward compatibility and is best
434 ignored by the user who should use target, host + driver status */
435 case DID_OK:
436 case DID_PASSTHROUGH:
437 case DID_SOFT_ERROR:
cb59e842005-04-02 13:51:23 -0600438 old_hdr->result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 break;
440 case DID_NO_CONNECT:
441 case DID_BUS_BUSY:
442 case DID_TIME_OUT:
cb59e842005-04-02 13:51:23 -0600443 old_hdr->result = EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 break;
445 case DID_BAD_TARGET:
446 case DID_ABORT:
447 case DID_PARITY:
448 case DID_RESET:
449 case DID_BAD_INTR:
cb59e842005-04-02 13:51:23 -0600450 old_hdr->result = EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 break;
452 case DID_ERROR:
cb59e842005-04-02 13:51:23 -0600453 old_hdr->result = (srp->sense_b[0] == 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 hp->masked_status == GOOD) ? 0 : EIO;
455 break;
456 default:
cb59e842005-04-02 13:51:23 -0600457 old_hdr->result = EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 break;
459 }
460
461 /* Now copy the result back to the user buffer. */
462 if (count >= SZ_SG_HEADER) {
cb59e842005-04-02 13:51:23 -0600463 if (__copy_to_user(buf, old_hdr, SZ_SG_HEADER)) {
464 retval = -EFAULT;
465 goto free_old_hdr;
466 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 buf += SZ_SG_HEADER;
cb59e842005-04-02 13:51:23 -0600468 if (count > old_hdr->reply_len)
469 count = old_hdr->reply_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 if (count > SZ_SG_HEADER) {
cb59e842005-04-02 13:51:23 -0600471 if (sg_read_oxfer(srp, buf, count - SZ_SG_HEADER)) {
472 retval = -EFAULT;
473 goto free_old_hdr;
474 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 }
476 } else
cb59e842005-04-02 13:51:23 -0600477 count = (old_hdr->result == 0) ? 0 : -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 sg_finish_rem_req(srp);
cb59e842005-04-02 13:51:23 -0600479 retval = count;
480free_old_hdr:
Jesper Juhlc9475cb2005-11-07 01:01:26 -0800481 kfree(old_hdr);
cb59e842005-04-02 13:51:23 -0600482 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483}
484
485static ssize_t
486sg_new_read(Sg_fd * sfp, char __user *buf, size_t count, Sg_request * srp)
487{
488 sg_io_hdr_t *hp = &srp->header;
489 int err = 0;
490 int len;
491
492 if (count < SZ_SG_IO_HDR) {
493 err = -EINVAL;
494 goto err_out;
495 }
496 hp->sb_len_wr = 0;
497 if ((hp->mx_sb_len > 0) && hp->sbp) {
498 if ((CHECK_CONDITION & hp->masked_status) ||
499 (DRIVER_SENSE & hp->driver_status)) {
Mike Christied6b10342005-11-08 04:06:41 -0600500 int sb_len = SCSI_SENSE_BUFFERSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 sb_len = (hp->mx_sb_len > sb_len) ? sb_len : hp->mx_sb_len;
502 len = 8 + (int) srp->sense_b[7]; /* Additional sense length field */
503 len = (len > sb_len) ? sb_len : len;
504 if (copy_to_user(hp->sbp, srp->sense_b, len)) {
505 err = -EFAULT;
506 goto err_out;
507 }
508 hp->sb_len_wr = len;
509 }
510 }
511 if (hp->masked_status || hp->host_status || hp->driver_status)
512 hp->info |= SG_INFO_CHECK;
513 if (copy_to_user(buf, hp, SZ_SG_IO_HDR)) {
514 err = -EFAULT;
515 goto err_out;
516 }
FUJITA Tomonori0b6cb262008-09-02 22:50:07 +0900517err_out:
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +0900518 err = sg_finish_rem_req(srp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 return (0 == err) ? count : err;
520}
521
522static ssize_t
523sg_write(struct file *filp, const char __user *buf, size_t count, loff_t * ppos)
524{
525 int mxsize, cmd_size, k;
526 int input_size, blocking;
527 unsigned char opcode;
528 Sg_device *sdp;
529 Sg_fd *sfp;
530 Sg_request *srp;
531 struct sg_header old_hdr;
532 sg_io_hdr_t *hp;
Mike Christied6b10342005-11-08 04:06:41 -0600533 unsigned char cmnd[MAX_COMMAND_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
535 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
536 return -ENXIO;
537 SCSI_LOG_TIMEOUT(3, printk("sg_write: %s, count=%d\n",
538 sdp->disk->disk_name, (int) count));
539 if (sdp->detached)
540 return -ENODEV;
541 if (!((filp->f_flags & O_NONBLOCK) ||
542 scsi_block_when_processing_errors(sdp->device)))
543 return -ENXIO;
544
545 if (!access_ok(VERIFY_READ, buf, count))
546 return -EFAULT; /* protects following copy_from_user()s + get_user()s */
547 if (count < SZ_SG_HEADER)
548 return -EIO;
549 if (__copy_from_user(&old_hdr, buf, SZ_SG_HEADER))
550 return -EFAULT;
551 blocking = !(filp->f_flags & O_NONBLOCK);
552 if (old_hdr.reply_len < 0)
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500553 return sg_new_write(sfp, filp, buf, count,
554 blocking, 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 if (count < (SZ_SG_HEADER + 6))
556 return -EIO; /* The minimum scsi command length is 6 bytes. */
557
558 if (!(srp = sg_add_request(sfp))) {
559 SCSI_LOG_TIMEOUT(1, printk("sg_write: queue full\n"));
560 return -EDOM;
561 }
562 buf += SZ_SG_HEADER;
563 __get_user(opcode, buf);
564 if (sfp->next_cmd_len > 0) {
565 if (sfp->next_cmd_len > MAX_COMMAND_SIZE) {
566 SCSI_LOG_TIMEOUT(1, printk("sg_write: command length too long\n"));
567 sfp->next_cmd_len = 0;
568 sg_remove_request(sfp, srp);
569 return -EIO;
570 }
571 cmd_size = sfp->next_cmd_len;
572 sfp->next_cmd_len = 0; /* reset so only this write() effected */
573 } else {
574 cmd_size = COMMAND_SIZE(opcode); /* based on SCSI command group */
575 if ((opcode >= 0xc0) && old_hdr.twelve_byte)
576 cmd_size = 12;
577 }
578 SCSI_LOG_TIMEOUT(4, printk(
579 "sg_write: scsi opcode=0x%02x, cmd_size=%d\n", (int) opcode, cmd_size));
580/* Determine buffer size. */
581 input_size = count - cmd_size;
582 mxsize = (input_size > old_hdr.reply_len) ? input_size : old_hdr.reply_len;
583 mxsize -= SZ_SG_HEADER;
584 input_size -= SZ_SG_HEADER;
585 if (input_size < 0) {
586 sg_remove_request(sfp, srp);
587 return -EIO; /* User did not pass enough bytes for this command. */
588 }
589 hp = &srp->header;
590 hp->interface_id = '\0'; /* indicator of old interface tunnelled */
591 hp->cmd_len = (unsigned char) cmd_size;
592 hp->iovec_count = 0;
593 hp->mx_sb_len = 0;
594 if (input_size > 0)
595 hp->dxfer_direction = (old_hdr.reply_len > SZ_SG_HEADER) ?
596 SG_DXFER_TO_FROM_DEV : SG_DXFER_TO_DEV;
597 else
598 hp->dxfer_direction = (mxsize > 0) ? SG_DXFER_FROM_DEV : SG_DXFER_NONE;
599 hp->dxfer_len = mxsize;
FUJITA Tomonorifad7f012008-09-02 16:20:20 +0900600 if (hp->dxfer_direction == SG_DXFER_TO_DEV)
601 hp->dxferp = (char __user *)buf + cmd_size;
602 else
603 hp->dxferp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 hp->sbp = NULL;
605 hp->timeout = old_hdr.reply_len; /* structure abuse ... */
606 hp->flags = input_size; /* structure abuse ... */
607 hp->pack_id = old_hdr.pack_id;
608 hp->usr_ptr = NULL;
609 if (__copy_from_user(cmnd, buf, cmd_size))
610 return -EFAULT;
611 /*
612 * SG_DXFER_TO_FROM_DEV is functionally equivalent to SG_DXFER_FROM_DEV,
613 * but is is possible that the app intended SG_DXFER_TO_DEV, because there
614 * is a non-zero input_size, so emit a warning.
615 */
Andi Kleeneaa3e222008-01-13 17:41:43 +0100616 if (hp->dxfer_direction == SG_DXFER_TO_FROM_DEV) {
617 static char cmd[TASK_COMM_LEN];
618 if (strcmp(current->comm, cmd) && printk_ratelimit()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 printk(KERN_WARNING
620 "sg_write: data in/out %d/%d bytes for SCSI command 0x%x--"
Joe Perchesad361c92009-07-06 13:05:40 -0700621 "guessing data in;\n "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 "program %s not setting count and/or reply_len properly\n",
623 old_hdr.reply_len - (int)SZ_SG_HEADER,
624 input_size, (unsigned int) cmnd[0],
625 current->comm);
Andi Kleeneaa3e222008-01-13 17:41:43 +0100626 strcpy(cmd, current->comm);
627 }
628 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 k = sg_common_write(sfp, srp, cmnd, sfp->timeout, blocking);
630 return (k < 0) ? k : count;
631}
632
633static ssize_t
Adel Gadllah0b07de82008-06-26 13:48:27 +0200634sg_new_write(Sg_fd *sfp, struct file *file, const char __user *buf,
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500635 size_t count, int blocking, int read_only, int sg_io_owned,
Adel Gadllah0b07de82008-06-26 13:48:27 +0200636 Sg_request **o_srp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637{
638 int k;
639 Sg_request *srp;
640 sg_io_hdr_t *hp;
Mike Christied6b10342005-11-08 04:06:41 -0600641 unsigned char cmnd[MAX_COMMAND_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 int timeout;
643 unsigned long ul_timeout;
644
645 if (count < SZ_SG_IO_HDR)
646 return -EINVAL;
647 if (!access_ok(VERIFY_READ, buf, count))
648 return -EFAULT; /* protects following copy_from_user()s + get_user()s */
649
650 sfp->cmd_q = 1; /* when sg_io_hdr seen, set command queuing on */
651 if (!(srp = sg_add_request(sfp))) {
652 SCSI_LOG_TIMEOUT(1, printk("sg_new_write: queue full\n"));
653 return -EDOM;
654 }
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500655 srp->sg_io_owned = sg_io_owned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 hp = &srp->header;
657 if (__copy_from_user(hp, buf, SZ_SG_IO_HDR)) {
658 sg_remove_request(sfp, srp);
659 return -EFAULT;
660 }
661 if (hp->interface_id != 'S') {
662 sg_remove_request(sfp, srp);
663 return -ENOSYS;
664 }
665 if (hp->flags & SG_FLAG_MMAP_IO) {
666 if (hp->dxfer_len > sfp->reserve.bufflen) {
667 sg_remove_request(sfp, srp);
668 return -ENOMEM; /* MMAP_IO size must fit in reserve buffer */
669 }
670 if (hp->flags & SG_FLAG_DIRECT_IO) {
671 sg_remove_request(sfp, srp);
672 return -EINVAL; /* either MMAP_IO or DIRECT_IO (not both) */
673 }
674 if (sg_res_in_use(sfp)) {
675 sg_remove_request(sfp, srp);
676 return -EBUSY; /* reserve buffer already being used */
677 }
678 }
679 ul_timeout = msecs_to_jiffies(srp->header.timeout);
680 timeout = (ul_timeout < INT_MAX) ? ul_timeout : INT_MAX;
681 if ((!hp->cmdp) || (hp->cmd_len < 6) || (hp->cmd_len > sizeof (cmnd))) {
682 sg_remove_request(sfp, srp);
683 return -EMSGSIZE;
684 }
685 if (!access_ok(VERIFY_READ, hp->cmdp, hp->cmd_len)) {
686 sg_remove_request(sfp, srp);
687 return -EFAULT; /* protects following copy_from_user()s + get_user()s */
688 }
689 if (__copy_from_user(cmnd, hp->cmdp, hp->cmd_len)) {
690 sg_remove_request(sfp, srp);
691 return -EFAULT;
692 }
FUJITA Tomonori14e507b2008-07-26 18:03:24 +0900693 if (read_only && sg_allow_access(file, cmnd)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 sg_remove_request(sfp, srp);
695 return -EPERM;
696 }
697 k = sg_common_write(sfp, srp, cmnd, timeout, blocking);
698 if (k < 0)
699 return k;
700 if (o_srp)
701 *o_srp = srp;
702 return count;
703}
704
705static int
706sg_common_write(Sg_fd * sfp, Sg_request * srp,
707 unsigned char *cmnd, int timeout, int blocking)
708{
Mike Christied6b10342005-11-08 04:06:41 -0600709 int k, data_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 Sg_device *sdp = sfp->parentdp;
711 sg_io_hdr_t *hp = &srp->header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713 srp->data.cmd_opcode = cmnd[0]; /* hold opcode of command */
714 hp->status = 0;
715 hp->masked_status = 0;
716 hp->msg_status = 0;
717 hp->info = 0;
718 hp->host_status = 0;
719 hp->driver_status = 0;
720 hp->resid = 0;
721 SCSI_LOG_TIMEOUT(4, printk("sg_common_write: scsi opcode=0x%02x, cmd_size=%d\n",
722 (int) cmnd[0], (int) hp->cmd_len));
723
FUJITA Tomonori10865df2008-08-28 16:17:07 +0900724 k = sg_start_req(srp, cmnd);
725 if (k) {
Douglas Gilbert7ca63cb2006-10-27 17:47:49 -0400726 SCSI_LOG_TIMEOUT(1, printk("sg_common_write: start_req err=%d\n", k));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 sg_finish_rem_req(srp);
728 return k; /* probably out of space --> ENOMEM */
729 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 if (sdp->detached) {
731 sg_finish_rem_req(srp);
732 return -ENODEV;
733 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 switch (hp->dxfer_direction) {
736 case SG_DXFER_TO_FROM_DEV:
737 case SG_DXFER_FROM_DEV:
Mike Christied6b10342005-11-08 04:06:41 -0600738 data_dir = DMA_FROM_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 break;
740 case SG_DXFER_TO_DEV:
Mike Christied6b10342005-11-08 04:06:41 -0600741 data_dir = DMA_TO_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 break;
743 case SG_DXFER_UNKNOWN:
Mike Christied6b10342005-11-08 04:06:41 -0600744 data_dir = DMA_BIDIRECTIONAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 break;
746 default:
Mike Christied6b10342005-11-08 04:06:41 -0600747 data_dir = DMA_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 break;
749 }
cb59e842005-04-02 13:51:23 -0600750 hp->duration = jiffies_to_msecs(jiffies);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +0200751
752 srp->rq->timeout = timeout;
Tony Battersbyc6517b72009-01-21 14:45:50 -0500753 kref_get(&sfp->f_ref); /* sg_rq_end_io() does kref_put(). */
FUJITA Tomonori10db10d2008-08-29 12:32:18 +0200754 blk_execute_rq_nowait(sdp->device->request_queue, sdp->disk,
755 srp->rq, 1, sg_rq_end_io);
756 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757}
758
759static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760sg_ioctl(struct inode *inode, struct file *filp,
761 unsigned int cmd_in, unsigned long arg)
762{
763 void __user *p = (void __user *)arg;
764 int __user *ip = p;
765 int result, val, read_only;
766 Sg_device *sdp;
767 Sg_fd *sfp;
768 Sg_request *srp;
769 unsigned long iflags;
770
771 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
772 return -ENXIO;
FUJITA Tomonoriabf54392008-08-16 14:10:05 +0900773
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 SCSI_LOG_TIMEOUT(3, printk("sg_ioctl: %s, cmd=0x%x\n",
775 sdp->disk->disk_name, (int) cmd_in));
776 read_only = (O_RDWR != (filp->f_flags & O_ACCMODE));
777
778 switch (cmd_in) {
779 case SG_IO:
780 {
781 int blocking = 1; /* ignore O_NONBLOCK flag */
782
783 if (sdp->detached)
784 return -ENODEV;
785 if (!scsi_block_when_processing_errors(sdp->device))
786 return -ENXIO;
787 if (!access_ok(VERIFY_WRITE, p, SZ_SG_IO_HDR))
788 return -EFAULT;
789 result =
Adel Gadllah0b07de82008-06-26 13:48:27 +0200790 sg_new_write(sfp, filp, p, SZ_SG_IO_HDR,
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500791 blocking, read_only, 1, &srp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 if (result < 0)
793 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 while (1) {
795 result = 0; /* following macro to beat race condition */
796 __wait_event_interruptible(sfp->read_wait,
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500797 (srp->done || sdp->detached),
798 result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 if (sdp->detached)
800 return -ENODEV;
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500801 write_lock_irq(&sfp->rq_list_lock);
802 if (srp->done) {
803 srp->done = 2;
804 write_unlock_irq(&sfp->rq_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 break;
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500806 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 srp->orphan = 1;
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500808 write_unlock_irq(&sfp->rq_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 return result; /* -ERESTARTSYS because signal hit process */
810 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 result = sg_new_read(sfp, p, SZ_SG_IO_HDR, srp);
812 return (result < 0) ? result : 0;
813 }
814 case SG_SET_TIMEOUT:
815 result = get_user(val, ip);
816 if (result)
817 return result;
818 if (val < 0)
819 return -EIO;
820 if (val >= MULDIV (INT_MAX, USER_HZ, HZ))
821 val = MULDIV (INT_MAX, USER_HZ, HZ);
822 sfp->timeout_user = val;
823 sfp->timeout = MULDIV (val, HZ, USER_HZ);
824
825 return 0;
826 case SG_GET_TIMEOUT: /* N.B. User receives timeout as return value */
827 /* strange ..., for backward compatibility */
828 return sfp->timeout_user;
829 case SG_SET_FORCE_LOW_DMA:
830 result = get_user(val, ip);
831 if (result)
832 return result;
833 if (val) {
834 sfp->low_dma = 1;
835 if ((0 == sfp->low_dma) && (0 == sg_res_in_use(sfp))) {
836 val = (int) sfp->reserve.bufflen;
837 sg_remove_scat(&sfp->reserve);
838 sg_build_reserve(sfp, val);
839 }
840 } else {
841 if (sdp->detached)
842 return -ENODEV;
843 sfp->low_dma = sdp->device->host->unchecked_isa_dma;
844 }
845 return 0;
846 case SG_GET_LOW_DMA:
847 return put_user((int) sfp->low_dma, ip);
848 case SG_GET_SCSI_ID:
849 if (!access_ok(VERIFY_WRITE, p, sizeof (sg_scsi_id_t)))
850 return -EFAULT;
851 else {
852 sg_scsi_id_t __user *sg_idp = p;
853
854 if (sdp->detached)
855 return -ENODEV;
856 __put_user((int) sdp->device->host->host_no,
857 &sg_idp->host_no);
858 __put_user((int) sdp->device->channel,
859 &sg_idp->channel);
860 __put_user((int) sdp->device->id, &sg_idp->scsi_id);
861 __put_user((int) sdp->device->lun, &sg_idp->lun);
862 __put_user((int) sdp->device->type, &sg_idp->scsi_type);
863 __put_user((short) sdp->device->host->cmd_per_lun,
864 &sg_idp->h_cmd_per_lun);
865 __put_user((short) sdp->device->queue_depth,
866 &sg_idp->d_queue_depth);
867 __put_user(0, &sg_idp->unused[0]);
868 __put_user(0, &sg_idp->unused[1]);
869 return 0;
870 }
871 case SG_SET_FORCE_PACK_ID:
872 result = get_user(val, ip);
873 if (result)
874 return result;
875 sfp->force_packid = val ? 1 : 0;
876 return 0;
877 case SG_GET_PACK_ID:
878 if (!access_ok(VERIFY_WRITE, ip, sizeof (int)))
879 return -EFAULT;
880 read_lock_irqsave(&sfp->rq_list_lock, iflags);
881 for (srp = sfp->headrp; srp; srp = srp->nextrp) {
882 if ((1 == srp->done) && (!srp->sg_io_owned)) {
883 read_unlock_irqrestore(&sfp->rq_list_lock,
884 iflags);
885 __put_user(srp->header.pack_id, ip);
886 return 0;
887 }
888 }
889 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
890 __put_user(-1, ip);
891 return 0;
892 case SG_GET_NUM_WAITING:
893 read_lock_irqsave(&sfp->rq_list_lock, iflags);
894 for (val = 0, srp = sfp->headrp; srp; srp = srp->nextrp) {
895 if ((1 == srp->done) && (!srp->sg_io_owned))
896 ++val;
897 }
898 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
899 return put_user(val, ip);
900 case SG_GET_SG_TABLESIZE:
901 return put_user(sdp->sg_tablesize, ip);
902 case SG_SET_RESERVED_SIZE:
903 result = get_user(val, ip);
904 if (result)
905 return result;
906 if (val < 0)
907 return -EINVAL;
Alan Stern44ec9542007-02-20 11:01:57 -0500908 val = min_t(int, val,
Martin K. Petersenae03bf62009-05-22 17:17:50 -0400909 queue_max_sectors(sdp->device->request_queue) * 512);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 if (val != sfp->reserve.bufflen) {
911 if (sg_res_in_use(sfp) || sfp->mmap_called)
912 return -EBUSY;
913 sg_remove_scat(&sfp->reserve);
914 sg_build_reserve(sfp, val);
915 }
916 return 0;
917 case SG_GET_RESERVED_SIZE:
Alan Stern44ec9542007-02-20 11:01:57 -0500918 val = min_t(int, sfp->reserve.bufflen,
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 return put_user(val, ip);
921 case SG_SET_COMMAND_Q:
922 result = get_user(val, ip);
923 if (result)
924 return result;
925 sfp->cmd_q = val ? 1 : 0;
926 return 0;
927 case SG_GET_COMMAND_Q:
928 return put_user((int) sfp->cmd_q, ip);
929 case SG_SET_KEEP_ORPHAN:
930 result = get_user(val, ip);
931 if (result)
932 return result;
933 sfp->keep_orphan = val;
934 return 0;
935 case SG_GET_KEEP_ORPHAN:
936 return put_user((int) sfp->keep_orphan, ip);
937 case SG_NEXT_CMD_LEN:
938 result = get_user(val, ip);
939 if (result)
940 return result;
941 sfp->next_cmd_len = (val > 0) ? val : 0;
942 return 0;
943 case SG_GET_VERSION_NUM:
944 return put_user(sg_version_num, ip);
945 case SG_GET_ACCESS_COUNT:
946 /* faked - we don't have a real access count anymore */
947 val = (sdp->device ? 1 : 0);
948 return put_user(val, ip);
949 case SG_GET_REQUEST_TABLE:
950 if (!access_ok(VERIFY_WRITE, p, SZ_SG_REQ_INFO * SG_MAX_QUEUE))
951 return -EFAULT;
952 else {
cb59e842005-04-02 13:51:23 -0600953 sg_req_info_t *rinfo;
954 unsigned int ms;
955
956 rinfo = kmalloc(SZ_SG_REQ_INFO * SG_MAX_QUEUE,
957 GFP_KERNEL);
958 if (!rinfo)
959 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 read_lock_irqsave(&sfp->rq_list_lock, iflags);
961 for (srp = sfp->headrp, val = 0; val < SG_MAX_QUEUE;
962 ++val, srp = srp ? srp->nextrp : srp) {
963 memset(&rinfo[val], 0, SZ_SG_REQ_INFO);
964 if (srp) {
965 rinfo[val].req_state = srp->done + 1;
966 rinfo[val].problem =
967 srp->header.masked_status &
968 srp->header.host_status &
969 srp->header.driver_status;
cb59e842005-04-02 13:51:23 -0600970 if (srp->done)
971 rinfo[val].duration =
972 srp->header.duration;
973 else {
974 ms = jiffies_to_msecs(jiffies);
975 rinfo[val].duration =
976 (ms > srp->header.duration) ?
977 (ms - srp->header.duration) : 0;
978 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 rinfo[val].orphan = srp->orphan;
cb59e842005-04-02 13:51:23 -0600980 rinfo[val].sg_io_owned =
981 srp->sg_io_owned;
982 rinfo[val].pack_id =
983 srp->header.pack_id;
984 rinfo[val].usr_ptr =
985 srp->header.usr_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 }
987 }
988 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
cb59e842005-04-02 13:51:23 -0600989 result = __copy_to_user(p, rinfo,
990 SZ_SG_REQ_INFO * SG_MAX_QUEUE);
991 result = result ? -EFAULT : 0;
992 kfree(rinfo);
993 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 }
995 case SG_EMULATED_HOST:
996 if (sdp->detached)
997 return -ENODEV;
998 return put_user(sdp->device->host->hostt->emulated, ip);
999 case SG_SCSI_RESET:
1000 if (sdp->detached)
1001 return -ENODEV;
1002 if (filp->f_flags & O_NONBLOCK) {
James Bottomley939647e2005-09-18 15:05:20 -05001003 if (scsi_host_in_recovery(sdp->device->host))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 return -EBUSY;
1005 } else if (!scsi_block_when_processing_errors(sdp->device))
1006 return -EBUSY;
1007 result = get_user(val, ip);
1008 if (result)
1009 return result;
1010 if (SG_SCSI_RESET_NOTHING == val)
1011 return 0;
1012 switch (val) {
1013 case SG_SCSI_RESET_DEVICE:
1014 val = SCSI_TRY_RESET_DEVICE;
1015 break;
Brian King39120e12008-07-01 13:03:19 -05001016 case SG_SCSI_RESET_TARGET:
1017 val = SCSI_TRY_RESET_TARGET;
1018 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 case SG_SCSI_RESET_BUS:
1020 val = SCSI_TRY_RESET_BUS;
1021 break;
1022 case SG_SCSI_RESET_HOST:
1023 val = SCSI_TRY_RESET_HOST;
1024 break;
1025 default:
1026 return -EINVAL;
1027 }
1028 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
1029 return -EACCES;
1030 return (scsi_reset_provider(sdp->device, val) ==
1031 SUCCESS) ? 0 : -EIO;
1032 case SCSI_IOCTL_SEND_COMMAND:
1033 if (sdp->detached)
1034 return -ENODEV;
1035 if (read_only) {
1036 unsigned char opcode = WRITE_6;
1037 Scsi_Ioctl_Command __user *siocp = p;
1038
1039 if (copy_from_user(&opcode, siocp->data, 1))
1040 return -EFAULT;
FUJITA Tomonori14e507b2008-07-26 18:03:24 +09001041 if (sg_allow_access(filp, &opcode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 return -EPERM;
1043 }
Al Viroe915e872008-09-02 17:16:41 -04001044 return sg_scsi_ioctl(sdp->device->request_queue, NULL, filp->f_mode, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 case SG_SET_DEBUG:
1046 result = get_user(val, ip);
1047 if (result)
1048 return result;
1049 sdp->sgdebug = (char) val;
1050 return 0;
1051 case SCSI_IOCTL_GET_IDLUN:
1052 case SCSI_IOCTL_GET_BUS_NUMBER:
1053 case SCSI_IOCTL_PROBE_HOST:
1054 case SG_GET_TRANSFORM:
1055 if (sdp->detached)
1056 return -ENODEV;
1057 return scsi_ioctl(sdp->device, cmd_in, p);
Alan Stern44ec9542007-02-20 11:01:57 -05001058 case BLKSECTGET:
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001059 return put_user(queue_max_sectors(sdp->device->request_queue) * 512,
Alan Stern44ec9542007-02-20 11:01:57 -05001060 ip);
Christof Schmitt6da127a2008-01-11 10:09:43 +01001061 case BLKTRACESETUP:
1062 return blk_trace_setup(sdp->device->request_queue,
1063 sdp->disk->disk_name,
Martin Peschke76e3a192009-01-30 15:46:23 +01001064 MKDEV(SCSI_GENERIC_MAJOR, sdp->index),
Shawn Dud0deef52009-04-14 13:58:56 +08001065 NULL,
Christof Schmitt6da127a2008-01-11 10:09:43 +01001066 (char *)arg);
1067 case BLKTRACESTART:
1068 return blk_trace_startstop(sdp->device->request_queue, 1);
1069 case BLKTRACESTOP:
1070 return blk_trace_startstop(sdp->device->request_queue, 0);
1071 case BLKTRACETEARDOWN:
1072 return blk_trace_remove(sdp->device->request_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 default:
1074 if (read_only)
1075 return -EPERM; /* don't know so take safe approach */
1076 return scsi_ioctl(sdp->device, cmd_in, p);
1077 }
1078}
1079
1080#ifdef CONFIG_COMPAT
1081static long sg_compat_ioctl(struct file *filp, unsigned int cmd_in, unsigned long arg)
1082{
1083 Sg_device *sdp;
1084 Sg_fd *sfp;
1085 struct scsi_device *sdev;
1086
1087 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
1088 return -ENXIO;
1089
1090 sdev = sdp->device;
1091 if (sdev->host->hostt->compat_ioctl) {
1092 int ret;
1093
1094 ret = sdev->host->hostt->compat_ioctl(sdev, cmd_in, (void __user *)arg);
1095
1096 return ret;
1097 }
1098
1099 return -ENOIOCTLCMD;
1100}
1101#endif
1102
1103static unsigned int
1104sg_poll(struct file *filp, poll_table * wait)
1105{
1106 unsigned int res = 0;
1107 Sg_device *sdp;
1108 Sg_fd *sfp;
1109 Sg_request *srp;
1110 int count = 0;
1111 unsigned long iflags;
1112
1113 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp))
1114 || sfp->closed)
1115 return POLLERR;
1116 poll_wait(filp, &sfp->read_wait, wait);
1117 read_lock_irqsave(&sfp->rq_list_lock, iflags);
1118 for (srp = sfp->headrp; srp; srp = srp->nextrp) {
1119 /* if any read waiting, flag it */
1120 if ((0 == res) && (1 == srp->done) && (!srp->sg_io_owned))
1121 res = POLLIN | POLLRDNORM;
1122 ++count;
1123 }
1124 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1125
1126 if (sdp->detached)
1127 res |= POLLHUP;
1128 else if (!sfp->cmd_q) {
1129 if (0 == count)
1130 res |= POLLOUT | POLLWRNORM;
1131 } else if (count < SG_MAX_QUEUE)
1132 res |= POLLOUT | POLLWRNORM;
1133 SCSI_LOG_TIMEOUT(3, printk("sg_poll: %s, res=0x%x\n",
1134 sdp->disk->disk_name, (int) res));
1135 return res;
1136}
1137
1138static int
1139sg_fasync(int fd, struct file *filp, int mode)
1140{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 Sg_device *sdp;
1142 Sg_fd *sfp;
1143
1144 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
1145 return -ENXIO;
1146 SCSI_LOG_TIMEOUT(3, printk("sg_fasync: %s, mode=%d\n",
1147 sdp->disk->disk_name, mode));
1148
Jonathan Corbet60aa4922009-02-01 14:52:56 -07001149 return fasync_helper(fd, filp, mode, &sfp->async_qp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150}
1151
Nick Piggina13ff0b2008-02-07 18:46:06 -08001152static int
1153sg_vma_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154{
1155 Sg_fd *sfp;
Mike Christied6b10342005-11-08 04:06:41 -06001156 unsigned long offset, len, sa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 Sg_scatter_hold *rsv_schp;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001158 int k, length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
1160 if ((NULL == vma) || (!(sfp = (Sg_fd *) vma->vm_private_data)))
Nick Piggina13ff0b2008-02-07 18:46:06 -08001161 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 rsv_schp = &sfp->reserve;
Nick Piggina13ff0b2008-02-07 18:46:06 -08001163 offset = vmf->pgoff << PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 if (offset >= rsv_schp->bufflen)
Nick Piggina13ff0b2008-02-07 18:46:06 -08001165 return VM_FAULT_SIGBUS;
1166 SCSI_LOG_TIMEOUT(3, printk("sg_vma_fault: offset=%lu, scatg=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 offset, rsv_schp->k_use_sg));
Mike Christied6b10342005-11-08 04:06:41 -06001168 sa = vma->vm_start;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001169 length = 1 << (PAGE_SHIFT + rsv_schp->page_order);
1170 for (k = 0; k < rsv_schp->k_use_sg && sa < vma->vm_end; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06001171 len = vma->vm_end - sa;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001172 len = (len < length) ? len : length;
Mike Christied6b10342005-11-08 04:06:41 -06001173 if (offset < len) {
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001174 struct page *page = nth_page(rsv_schp->pages[k],
1175 offset >> PAGE_SHIFT);
Mike Christied6b10342005-11-08 04:06:41 -06001176 get_page(page); /* increment page count */
Nick Piggina13ff0b2008-02-07 18:46:06 -08001177 vmf->page = page;
1178 return 0; /* success */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 }
Mike Christied6b10342005-11-08 04:06:41 -06001180 sa += len;
1181 offset -= len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 }
Mike Christied6b10342005-11-08 04:06:41 -06001183
Nick Piggina13ff0b2008-02-07 18:46:06 -08001184 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185}
1186
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04001187static const struct vm_operations_struct sg_mmap_vm_ops = {
Nick Piggina13ff0b2008-02-07 18:46:06 -08001188 .fault = sg_vma_fault,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189};
1190
1191static int
1192sg_mmap(struct file *filp, struct vm_area_struct *vma)
1193{
1194 Sg_fd *sfp;
Mike Christied6b10342005-11-08 04:06:41 -06001195 unsigned long req_sz, len, sa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 Sg_scatter_hold *rsv_schp;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001197 int k, length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
1199 if ((!filp) || (!vma) || (!(sfp = (Sg_fd *) filp->private_data)))
1200 return -ENXIO;
cb59e842005-04-02 13:51:23 -06001201 req_sz = vma->vm_end - vma->vm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 SCSI_LOG_TIMEOUT(3, printk("sg_mmap starting, vm_start=%p, len=%d\n",
1203 (void *) vma->vm_start, (int) req_sz));
1204 if (vma->vm_pgoff)
1205 return -EINVAL; /* want no offset */
1206 rsv_schp = &sfp->reserve;
1207 if (req_sz > rsv_schp->bufflen)
1208 return -ENOMEM; /* cannot map more than reserved buffer */
1209
Mike Christied6b10342005-11-08 04:06:41 -06001210 sa = vma->vm_start;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001211 length = 1 << (PAGE_SHIFT + rsv_schp->page_order);
1212 for (k = 0; k < rsv_schp->k_use_sg && sa < vma->vm_end; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06001213 len = vma->vm_end - sa;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001214 len = (len < length) ? len : length;
Mike Christied6b10342005-11-08 04:06:41 -06001215 sa += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 }
Mike Christied6b10342005-11-08 04:06:41 -06001217
Nick Pigginf9aed0e2006-03-22 00:08:30 -08001218 sfp->mmap_called = 1;
Douglas Gilbert1c8e71d2005-09-09 17:18:57 +10001219 vma->vm_flags |= VM_RESERVED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 vma->vm_private_data = sfp;
1221 vma->vm_ops = &sg_mmap_vm_ops;
1222 return 0;
1223}
1224
FUJITA Tomonoric96952e2009-02-04 11:36:27 +09001225static void sg_rq_end_io_usercontext(struct work_struct *work)
1226{
1227 struct sg_request *srp = container_of(work, struct sg_request, ew.work);
1228 struct sg_fd *sfp = srp->parentfp;
1229
1230 sg_finish_rem_req(srp);
1231 kref_put(&sfp->f_ref, sg_remove_sfp);
1232}
1233
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001234/*
1235 * This function is a "bottom half" handler that is called by the mid
1236 * level when a command is completed (or has failed).
1237 */
1238static void sg_rq_end_io(struct request *rq, int uptodate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239{
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001240 struct sg_request *srp = rq->end_io_data;
Tony Battersbyc6517b72009-01-21 14:45:50 -05001241 Sg_device *sdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 Sg_fd *sfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 unsigned long iflags;
cb59e842005-04-02 13:51:23 -06001244 unsigned int ms;
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001245 char *sense;
Tony Battersbyc6517b72009-01-21 14:45:50 -05001246 int result, resid, done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247
Tony Battersbyc6517b72009-01-21 14:45:50 -05001248 if (WARN_ON(srp->done != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 return;
Tony Battersbyc6517b72009-01-21 14:45:50 -05001250
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 sfp = srp->parentfp;
Tony Battersbyc6517b72009-01-21 14:45:50 -05001252 if (WARN_ON(sfp == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 return;
Tony Battersbyc6517b72009-01-21 14:45:50 -05001254
1255 sdp = sfp->parentdp;
1256 if (unlikely(sdp->detached))
1257 printk(KERN_INFO "sg_rq_end_io: device detached\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001259 sense = rq->sense;
1260 result = rq->errors;
Tejun Heoc3a4d782009-05-07 22:24:37 +09001261 resid = rq->resid_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
1263 SCSI_LOG_TIMEOUT(4, printk("sg_cmd_done: %s, pack_id=%d, res=0x%x\n",
Mike Christied6b10342005-11-08 04:06:41 -06001264 sdp->disk->disk_name, srp->header.pack_id, result));
1265 srp->header.resid = resid;
cb59e842005-04-02 13:51:23 -06001266 ms = jiffies_to_msecs(jiffies);
1267 srp->header.duration = (ms > srp->header.duration) ?
1268 (ms - srp->header.duration) : 0;
Mike Christied6b10342005-11-08 04:06:41 -06001269 if (0 != result) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 struct scsi_sense_hdr sshdr;
1271
Mike Christied6b10342005-11-08 04:06:41 -06001272 srp->header.status = 0xff & result;
1273 srp->header.masked_status = status_byte(result);
1274 srp->header.msg_status = msg_byte(result);
1275 srp->header.host_status = host_byte(result);
1276 srp->header.driver_status = driver_byte(result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 if ((sdp->sgdebug > 0) &&
1278 ((CHECK_CONDITION == srp->header.masked_status) ||
1279 (COMMAND_TERMINATED == srp->header.masked_status)))
Mike Christied6b10342005-11-08 04:06:41 -06001280 __scsi_print_sense("sg_cmd_done", sense,
1281 SCSI_SENSE_BUFFERSIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
1283 /* Following if statement is a patch supplied by Eric Youngdale */
Mike Christied6b10342005-11-08 04:06:41 -06001284 if (driver_byte(result) != 0
1285 && scsi_normalize_sense(sense, SCSI_SENSE_BUFFERSIZE, &sshdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 && !scsi_sense_is_deferred(&sshdr)
1287 && sshdr.sense_key == UNIT_ATTENTION
1288 && sdp->device->removable) {
1289 /* Detected possible disc change. Set the bit - this */
1290 /* may be used if there are filesystems using this device */
1291 sdp->device->changed = 1;
1292 }
1293 }
1294 /* Rely on write phase to clean out srp status values, so no "else" */
1295
Tony Battersbyc6517b72009-01-21 14:45:50 -05001296 write_lock_irqsave(&sfp->rq_list_lock, iflags);
1297 if (unlikely(srp->orphan)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 if (sfp->keep_orphan)
1299 srp->sg_io_owned = 0;
Tony Battersbyc6517b72009-01-21 14:45:50 -05001300 else
1301 done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 }
Tony Battersbyc6517b72009-01-21 14:45:50 -05001303 srp->done = done;
1304 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1305
1306 if (likely(done)) {
1307 /* Now wake up any sg_read() that is waiting for this
1308 * packet.
1309 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 wake_up_interruptible(&sfp->read_wait);
Tony Battersbyc6517b72009-01-21 14:45:50 -05001311 kill_fasync(&sfp->async_qp, SIGPOLL, POLL_IN);
FUJITA Tomonoric96952e2009-02-04 11:36:27 +09001312 kref_put(&sfp->f_ref, sg_remove_sfp);
FUJITA Tomonori015640e2009-04-03 19:28:06 +09001313 } else {
1314 INIT_WORK(&srp->ew.work, sg_rq_end_io_usercontext);
1315 schedule_work(&srp->ew.work);
1316 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317}
1318
Alexey Dobriyan828c0952009-10-01 15:43:56 -07001319static const struct file_operations sg_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 .owner = THIS_MODULE,
1321 .read = sg_read,
1322 .write = sg_write,
1323 .poll = sg_poll,
1324 .ioctl = sg_ioctl,
1325#ifdef CONFIG_COMPAT
1326 .compat_ioctl = sg_compat_ioctl,
1327#endif
1328 .open = sg_open,
1329 .mmap = sg_mmap,
1330 .release = sg_release,
1331 .fasync = sg_fasync,
1332};
1333
gregkh@suse.ded2538782005-03-23 09:55:22 -08001334static struct class *sg_sysfs_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
1336static int sg_sysfs_valid = 0;
1337
James Bottomley7c07d612007-08-05 13:36:11 -05001338static Sg_device *sg_alloc(struct gendisk *disk, struct scsi_device *scsidp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339{
Mike Christied6b10342005-11-08 04:06:41 -06001340 struct request_queue *q = scsidp->request_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 Sg_device *sdp;
1342 unsigned long iflags;
James Bottomley7c07d612007-08-05 13:36:11 -05001343 int error;
1344 u32 k;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
Jes Sorensen24669f752006-01-16 10:31:18 -05001346 sdp = kzalloc(sizeof(Sg_device), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 if (!sdp) {
1348 printk(KERN_WARNING "kmalloc Sg_device failure\n");
James Bottomley7c07d612007-08-05 13:36:11 -05001349 return ERR_PTR(-ENOMEM);
1350 }
Tony Battersbyc6517b72009-01-21 14:45:50 -05001351
James Bottomley7c07d612007-08-05 13:36:11 -05001352 if (!idr_pre_get(&sg_index_idr, GFP_KERNEL)) {
1353 printk(KERN_WARNING "idr expansion Sg_device failure\n");
Tony Battersbyc6517b72009-01-21 14:45:50 -05001354 error = -ENOMEM;
James Bottomley7c07d612007-08-05 13:36:11 -05001355 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 }
1357
James Bottomley7c07d612007-08-05 13:36:11 -05001358 write_lock_irqsave(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
Tony Battersbyc6517b72009-01-21 14:45:50 -05001360 error = idr_get_new(&sg_index_idr, sdp, &k);
James Bottomley7c07d612007-08-05 13:36:11 -05001361 if (error) {
Tony Battersbyc6517b72009-01-21 14:45:50 -05001362 write_unlock_irqrestore(&sg_index_lock, iflags);
James Bottomley7c07d612007-08-05 13:36:11 -05001363 printk(KERN_WARNING "idr allocation Sg_device failure: %d\n",
1364 error);
1365 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 }
1367
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 if (unlikely(k >= SG_MAX_DEVS))
1369 goto overflow;
1370
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 SCSI_LOG_TIMEOUT(3, printk("sg_alloc: dev=%d \n", k));
1372 sprintf(disk->disk_name, "sg%d", k);
1373 disk->first_minor = k;
1374 sdp->disk = disk;
1375 sdp->device = scsidp;
FUJITA Tomonori3442f802009-02-16 13:26:53 +09001376 INIT_LIST_HEAD(&sdp->sfds);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 init_waitqueue_head(&sdp->o_excl_wait);
Martin K. Petersen8a783622010-02-26 00:20:39 -05001378 sdp->sg_tablesize = queue_max_segments(q);
James Bottomley7c07d612007-08-05 13:36:11 -05001379 sdp->index = k;
Tony Battersbyc6517b72009-01-21 14:45:50 -05001380 kref_init(&sdp->d_ref);
1381
1382 write_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
James Bottomley7c07d612007-08-05 13:36:11 -05001384 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 out:
James Bottomley7c07d612007-08-05 13:36:11 -05001386 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 kfree(sdp);
James Bottomley7c07d612007-08-05 13:36:11 -05001388 return ERR_PTR(error);
1389 }
1390 return sdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
1392 overflow:
Tony Battersbyc6517b72009-01-21 14:45:50 -05001393 idr_remove(&sg_index_idr, k);
1394 write_unlock_irqrestore(&sg_index_lock, iflags);
James Bottomley9ccfc752005-10-02 11:45:08 -05001395 sdev_printk(KERN_WARNING, scsidp,
1396 "Unable to attach sg device type=%d, minor "
1397 "number exceeds %d\n", scsidp->type, SG_MAX_DEVS - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 error = -ENODEV;
1399 goto out;
1400}
1401
1402static int
Tony Jonesee959b02008-02-22 00:13:36 +01001403sg_add(struct device *cl_dev, struct class_interface *cl_intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404{
Tony Jonesee959b02008-02-22 00:13:36 +01001405 struct scsi_device *scsidp = to_scsi_device(cl_dev->parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 struct gendisk *disk;
1407 Sg_device *sdp = NULL;
1408 struct cdev * cdev = NULL;
James Bottomley7c07d612007-08-05 13:36:11 -05001409 int error;
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001410 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
1412 disk = alloc_disk(1);
1413 if (!disk) {
1414 printk(KERN_WARNING "alloc_disk failed\n");
1415 return -ENOMEM;
1416 }
1417 disk->major = SCSI_GENERIC_MAJOR;
1418
1419 error = -ENOMEM;
1420 cdev = cdev_alloc();
1421 if (!cdev) {
1422 printk(KERN_WARNING "cdev_alloc failed\n");
1423 goto out;
1424 }
1425 cdev->owner = THIS_MODULE;
1426 cdev->ops = &sg_fops;
1427
James Bottomley7c07d612007-08-05 13:36:11 -05001428 sdp = sg_alloc(disk, scsidp);
1429 if (IS_ERR(sdp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 printk(KERN_WARNING "sg_alloc failed\n");
James Bottomley7c07d612007-08-05 13:36:11 -05001431 error = PTR_ERR(sdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 goto out;
1433 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
James Bottomley7c07d612007-08-05 13:36:11 -05001435 error = cdev_add(cdev, MKDEV(SCSI_GENERIC_MAJOR, sdp->index), 1);
Greg KH5e3c34c2006-01-18 16:17:46 -08001436 if (error)
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001437 goto cdev_add_err;
Greg KH5e3c34c2006-01-18 16:17:46 -08001438
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 sdp->cdev = cdev;
1440 if (sg_sysfs_valid) {
Tony Jonesee959b02008-02-22 00:13:36 +01001441 struct device *sg_class_member;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
Greg Kroah-Hartmand73a1a62008-07-21 20:03:34 -07001443 sg_class_member = device_create(sg_sysfs_class, cl_dev->parent,
1444 MKDEV(SCSI_GENERIC_MAJOR,
1445 sdp->index),
1446 sdp, "%s", disk->disk_name);
FUJITA Tomonorid07e0362008-01-15 13:18:00 +09001447 if (IS_ERR(sg_class_member)) {
1448 printk(KERN_ERR "sg_add: "
Tony Jonesee959b02008-02-22 00:13:36 +01001449 "device_create failed\n");
FUJITA Tomonorid07e0362008-01-15 13:18:00 +09001450 error = PTR_ERR(sg_class_member);
1451 goto cdev_add_err;
1452 }
FUJITA Tomonorid07e0362008-01-15 13:18:00 +09001453 error = sysfs_create_link(&scsidp->sdev_gendev.kobj,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 &sg_class_member->kobj, "generic");
1455 if (error)
1456 printk(KERN_ERR "sg_add: unable to make symlink "
James Bottomley7c07d612007-08-05 13:36:11 -05001457 "'generic' back to sg%d\n", sdp->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 } else
James Bottomley7c07d612007-08-05 13:36:11 -05001459 printk(KERN_WARNING "sg_add: sg_sys Invalid\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
James Bottomley9ccfc752005-10-02 11:45:08 -05001461 sdev_printk(KERN_NOTICE, scsidp,
James Bottomley7c07d612007-08-05 13:36:11 -05001462 "Attached scsi generic sg%d type %d\n", sdp->index,
1463 scsidp->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
Tony Jonesee959b02008-02-22 00:13:36 +01001465 dev_set_drvdata(cl_dev, sdp);
FUJITA Tomonoria24484f2008-01-15 13:17:47 +09001466
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 return 0;
1468
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001469cdev_add_err:
James Bottomley7c07d612007-08-05 13:36:11 -05001470 write_lock_irqsave(&sg_index_lock, iflags);
1471 idr_remove(&sg_index_idr, sdp->index);
1472 write_unlock_irqrestore(&sg_index_lock, iflags);
1473 kfree(sdp);
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001474
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475out:
1476 put_disk(disk);
1477 if (cdev)
1478 cdev_del(cdev);
1479 return error;
1480}
1481
Tony Battersbyc6517b72009-01-21 14:45:50 -05001482static void sg_device_destroy(struct kref *kref)
1483{
1484 struct sg_device *sdp = container_of(kref, struct sg_device, d_ref);
1485 unsigned long flags;
1486
1487 /* CAUTION! Note that the device can still be found via idr_find()
1488 * even though the refcount is 0. Therefore, do idr_remove() BEFORE
1489 * any other cleanup.
1490 */
1491
1492 write_lock_irqsave(&sg_index_lock, flags);
1493 idr_remove(&sg_index_idr, sdp->index);
1494 write_unlock_irqrestore(&sg_index_lock, flags);
1495
1496 SCSI_LOG_TIMEOUT(3,
1497 printk("sg_device_destroy: %s\n",
1498 sdp->disk->disk_name));
1499
1500 put_disk(sdp->disk);
1501 kfree(sdp);
1502}
1503
1504static void sg_remove(struct device *cl_dev, struct class_interface *cl_intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505{
Tony Jonesee959b02008-02-22 00:13:36 +01001506 struct scsi_device *scsidp = to_scsi_device(cl_dev->parent);
1507 Sg_device *sdp = dev_get_drvdata(cl_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 unsigned long iflags;
1509 Sg_fd *sfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
Tony Battersbyc6517b72009-01-21 14:45:50 -05001511 if (!sdp || sdp->detached)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513
Tony Battersbyc6517b72009-01-21 14:45:50 -05001514 SCSI_LOG_TIMEOUT(3, printk("sg_remove: %s\n", sdp->disk->disk_name));
1515
1516 /* Need a write lock to set sdp->detached. */
James Bottomley7c07d612007-08-05 13:36:11 -05001517 write_lock_irqsave(&sg_index_lock, iflags);
Tony Battersbyc6517b72009-01-21 14:45:50 -05001518 sdp->detached = 1;
FUJITA Tomonori3442f802009-02-16 13:26:53 +09001519 list_for_each_entry(sfp, &sdp->sfds, sfd_siblings) {
Tony Battersbyc6517b72009-01-21 14:45:50 -05001520 wake_up_interruptible(&sfp->read_wait);
1521 kill_fasync(&sfp->async_qp, SIGPOLL, POLL_HUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 }
James Bottomley7c07d612007-08-05 13:36:11 -05001523 write_unlock_irqrestore(&sg_index_lock, iflags);
1524
1525 sysfs_remove_link(&scsidp->sdev_gendev.kobj, "generic");
Tony Jonesee959b02008-02-22 00:13:36 +01001526 device_destroy(sg_sysfs_class, MKDEV(SCSI_GENERIC_MAJOR, sdp->index));
James Bottomley7c07d612007-08-05 13:36:11 -05001527 cdev_del(sdp->cdev);
1528 sdp->cdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
Tony Battersbyc6517b72009-01-21 14:45:50 -05001530 sg_put_dev(sdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531}
1532
Douglas Gilbert6460e752006-09-20 18:20:49 -04001533module_param_named(scatter_elem_sz, scatter_elem_sz, int, S_IRUGO | S_IWUSR);
1534module_param_named(def_reserved_size, def_reserved_size, int,
1535 S_IRUGO | S_IWUSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536module_param_named(allow_dio, sg_allow_dio, int, S_IRUGO | S_IWUSR);
1537
1538MODULE_AUTHOR("Douglas Gilbert");
1539MODULE_DESCRIPTION("SCSI generic (sg) driver");
1540MODULE_LICENSE("GPL");
1541MODULE_VERSION(SG_VERSION_STR);
Rene Hermanf018fa52006-03-08 00:14:20 -08001542MODULE_ALIAS_CHARDEV_MAJOR(SCSI_GENERIC_MAJOR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
Douglas Gilbert6460e752006-09-20 18:20:49 -04001544MODULE_PARM_DESC(scatter_elem_sz, "scatter gather element "
1545 "size (default: max(SG_SCATTER_SZ, PAGE_SIZE))");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546MODULE_PARM_DESC(def_reserved_size, "size of buffer reserved for each fd");
1547MODULE_PARM_DESC(allow_dio, "allow direct I/O (default: 0 (disallow))");
1548
1549static int __init
1550init_sg(void)
1551{
1552 int rc;
1553
Douglas Gilbert6460e752006-09-20 18:20:49 -04001554 if (scatter_elem_sz < PAGE_SIZE) {
1555 scatter_elem_sz = PAGE_SIZE;
1556 scatter_elem_sz_prev = scatter_elem_sz;
1557 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 if (def_reserved_size >= 0)
1559 sg_big_buff = def_reserved_size;
Douglas Gilbert6460e752006-09-20 18:20:49 -04001560 else
1561 def_reserved_size = sg_big_buff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562
1563 rc = register_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0),
1564 SG_MAX_DEVS, "sg");
1565 if (rc)
1566 return rc;
gregkh@suse.ded2538782005-03-23 09:55:22 -08001567 sg_sysfs_class = class_create(THIS_MODULE, "scsi_generic");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 if ( IS_ERR(sg_sysfs_class) ) {
1569 rc = PTR_ERR(sg_sysfs_class);
1570 goto err_out;
1571 }
1572 sg_sysfs_valid = 1;
1573 rc = scsi_register_interface(&sg_interface);
1574 if (0 == rc) {
1575#ifdef CONFIG_SCSI_PROC_FS
1576 sg_proc_init();
1577#endif /* CONFIG_SCSI_PROC_FS */
1578 return 0;
1579 }
gregkh@suse.ded2538782005-03-23 09:55:22 -08001580 class_destroy(sg_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581err_out:
1582 unregister_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0), SG_MAX_DEVS);
1583 return rc;
1584}
1585
1586static void __exit
1587exit_sg(void)
1588{
1589#ifdef CONFIG_SCSI_PROC_FS
1590 sg_proc_cleanup();
1591#endif /* CONFIG_SCSI_PROC_FS */
1592 scsi_unregister_interface(&sg_interface);
gregkh@suse.ded2538782005-03-23 09:55:22 -08001593 class_destroy(sg_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 sg_sysfs_valid = 0;
1595 unregister_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0),
1596 SG_MAX_DEVS);
James Bottomley7c07d612007-08-05 13:36:11 -05001597 idr_destroy(&sg_index_idr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598}
1599
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001600static int sg_start_req(Sg_request *srp, unsigned char *cmd)
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001601{
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001602 int res;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001603 struct request *rq;
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001604 Sg_fd *sfp = srp->parentfp;
1605 sg_io_hdr_t *hp = &srp->header;
1606 int dxfer_len = (int) hp->dxfer_len;
1607 int dxfer_dir = hp->dxfer_direction;
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001608 unsigned int iov_count = hp->iovec_count;
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001609 Sg_scatter_hold *req_schp = &srp->data;
1610 Sg_scatter_hold *rsv_schp = &sfp->reserve;
1611 struct request_queue *q = sfp->parentdp->device->request_queue;
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001612 struct rq_map_data *md, map_data;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001613 int rw = hp->dxfer_direction == SG_DXFER_TO_DEV ? WRITE : READ;
1614
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001615 SCSI_LOG_TIMEOUT(4, printk(KERN_INFO "sg_start_req: dxfer_len=%d\n",
1616 dxfer_len));
1617
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001618 rq = blk_get_request(q, rw, GFP_ATOMIC);
1619 if (!rq)
1620 return -ENOMEM;
1621
1622 memcpy(rq->cmd, cmd, hp->cmd_len);
1623
1624 rq->cmd_len = hp->cmd_len;
1625 rq->cmd_type = REQ_TYPE_BLOCK_PC;
1626
1627 srp->rq = rq;
1628 rq->end_io_data = srp;
1629 rq->sense = srp->sense_b;
1630 rq->retries = SG_DEFAULT_RETRIES;
1631
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 if ((dxfer_len <= 0) || (dxfer_dir == SG_DXFER_NONE))
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001633 return 0;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001634
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001635 if (sg_allow_dio && hp->flags & SG_FLAG_DIRECT_IO &&
1636 dxfer_dir != SG_DXFER_UNKNOWN && !iov_count &&
1637 !sfp->parentdp->device->host->unchecked_isa_dma &&
FUJITA Tomonori01cfcdd2008-08-28 15:05:59 +09001638 blk_rq_aligned(q, hp->dxferp, dxfer_len))
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001639 md = NULL;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001640 else
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001641 md = &map_data;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001642
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001643 if (md) {
1644 if (!sg_res_in_use(sfp) && dxfer_len <= rsv_schp->bufflen)
1645 sg_link_reserve(sfp, srp, dxfer_len);
1646 else {
1647 res = sg_build_indirect(req_schp, sfp, dxfer_len);
1648 if (res)
1649 return res;
1650 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001651
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001652 md->pages = req_schp->pages;
1653 md->page_order = req_schp->page_order;
1654 md->nr_entries = req_schp->k_use_sg;
FUJITA Tomonori56c451f2008-12-18 14:49:37 +09001655 md->offset = 0;
FUJITA Tomonori97ae77a2008-12-18 14:49:38 +09001656 md->null_mapped = hp->dxferp ? 0 : 1;
FUJITA Tomonoriecb554a2009-07-09 14:46:53 +02001657 if (dxfer_dir == SG_DXFER_TO_FROM_DEV)
1658 md->from_user = 1;
1659 else
1660 md->from_user = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001662
FUJITA Tomonori0fdf96b2009-04-03 09:12:20 +09001663 if (iov_count) {
1664 int len, size = sizeof(struct sg_iovec) * iov_count;
1665 struct iovec *iov;
1666
1667 iov = kmalloc(size, GFP_ATOMIC);
1668 if (!iov)
1669 return -ENOMEM;
1670
1671 if (copy_from_user(iov, hp->dxferp, size)) {
1672 kfree(iov);
1673 return -EFAULT;
1674 }
1675
1676 len = iov_length(iov, iov_count);
1677 if (hp->dxfer_len < len) {
1678 iov_count = iov_shorten(iov, iov_count, hp->dxfer_len);
1679 len = hp->dxfer_len;
1680 }
1681
1682 res = blk_rq_map_user_iov(q, rq, md, (struct sg_iovec *)iov,
1683 iov_count,
1684 len, GFP_ATOMIC);
1685 kfree(iov);
1686 } else
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001687 res = blk_rq_map_user(q, rq, md, hp->dxferp,
1688 hp->dxfer_len, GFP_ATOMIC);
1689
1690 if (!res) {
1691 srp->bio = rq->bio;
1692
1693 if (!md) {
1694 req_schp->dio_in_use = 1;
1695 hp->info |= SG_INFO_DIRECT_IO;
1696 }
1697 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001698 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699}
1700
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +09001701static int sg_finish_rem_req(Sg_request * srp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702{
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +09001703 int ret = 0;
1704
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 Sg_fd *sfp = srp->parentfp;
1706 Sg_scatter_hold *req_schp = &srp->data;
1707
1708 SCSI_LOG_TIMEOUT(4, printk("sg_finish_rem_req: res_used=%d\n", (int) srp->res_used));
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001709 if (srp->rq) {
1710 if (srp->bio)
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +09001711 ret = blk_rq_unmap_user(srp->bio);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001712
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001713 blk_put_request(srp->rq);
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001714 }
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001715
Christof Schmitte27168f2009-09-17 09:10:14 +02001716 if (srp->res_used)
1717 sg_unlink_reserve(sfp, srp);
1718 else
1719 sg_remove_scat(req_schp);
1720
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 sg_remove_request(sfp, srp);
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +09001722
1723 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724}
1725
1726static int
1727sg_build_sgat(Sg_scatter_hold * schp, const Sg_fd * sfp, int tablesize)
1728{
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001729 int sg_bufflen = tablesize * sizeof(struct page *);
Al Viro2d20eaf2006-02-01 06:31:40 -05001730 gfp_t gfp_flags = GFP_ATOMIC | __GFP_NOWARN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001732 schp->pages = kzalloc(sg_bufflen, gfp_flags);
1733 if (!schp->pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 schp->sglist_len = sg_bufflen;
Mike Christied6b10342005-11-08 04:06:41 -06001736 return tablesize; /* number of scat_gath elements allocated */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737}
1738
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739static int
1740sg_build_indirect(Sg_scatter_hold * schp, Sg_fd * sfp, int buff_size)
1741{
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001742 int ret_sz = 0, i, k, rem_sz, num, mx_sc_elems;
Mike Christied6b10342005-11-08 04:06:41 -06001743 int sg_tablesize = sfp->parentdp->sg_tablesize;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001744 int blk_size = buff_size, order;
1745 gfp_t gfp_mask = GFP_ATOMIC | __GFP_COMP | __GFP_NOWARN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746
Eric Sesterhennfb119932007-05-23 14:41:36 -07001747 if (blk_size < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 return -EFAULT;
1749 if (0 == blk_size)
1750 ++blk_size; /* don't know why */
FUJITA Tomonorib2ed6c62009-02-12 02:42:57 +09001751 /* round request up to next highest SG_SECTOR_SZ byte boundary */
1752 blk_size = ALIGN(blk_size, SG_SECTOR_SZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 SCSI_LOG_TIMEOUT(4, printk("sg_build_indirect: buff_size=%d, blk_size=%d\n",
1754 buff_size, blk_size));
Mike Christied6b10342005-11-08 04:06:41 -06001755
1756 /* N.B. ret_sz carried into this block ... */
1757 mx_sc_elems = sg_build_sgat(schp, sfp, sg_tablesize);
1758 if (mx_sc_elems < 0)
1759 return mx_sc_elems; /* most likely -ENOMEM */
1760
Douglas Gilbert6460e752006-09-20 18:20:49 -04001761 num = scatter_elem_sz;
1762 if (unlikely(num != scatter_elem_sz_prev)) {
1763 if (num < PAGE_SIZE) {
1764 scatter_elem_sz = PAGE_SIZE;
1765 scatter_elem_sz_prev = PAGE_SIZE;
1766 } else
1767 scatter_elem_sz_prev = num;
1768 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001769
1770 if (sfp->low_dma)
1771 gfp_mask |= GFP_DMA;
1772
1773 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
1774 gfp_mask |= __GFP_ZERO;
1775
1776 order = get_order(num);
1777retry:
1778 ret_sz = 1 << (PAGE_SHIFT + order);
1779
1780 for (k = 0, rem_sz = blk_size; rem_sz > 0 && k < mx_sc_elems;
1781 k++, rem_sz -= ret_sz) {
1782
Douglas Gilbert6460e752006-09-20 18:20:49 -04001783 num = (rem_sz > scatter_elem_sz_prev) ?
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001784 scatter_elem_sz_prev : rem_sz;
1785
1786 schp->pages[k] = alloc_pages(gfp_mask, order);
1787 if (!schp->pages[k])
1788 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789
Douglas Gilbert6460e752006-09-20 18:20:49 -04001790 if (num == scatter_elem_sz_prev) {
1791 if (unlikely(ret_sz > scatter_elem_sz_prev)) {
1792 scatter_elem_sz = ret_sz;
1793 scatter_elem_sz_prev = ret_sz;
1794 }
1795 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796
Douglas Gilbert7ca63cb2006-10-27 17:47:49 -04001797 SCSI_LOG_TIMEOUT(5, printk("sg_build_indirect: k=%d, num=%d, "
1798 "ret_sz=%d\n", k, num, ret_sz));
Mike Christied6b10342005-11-08 04:06:41 -06001799 } /* end of for loop */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001801 schp->page_order = order;
Mike Christied6b10342005-11-08 04:06:41 -06001802 schp->k_use_sg = k;
Douglas Gilbert7ca63cb2006-10-27 17:47:49 -04001803 SCSI_LOG_TIMEOUT(5, printk("sg_build_indirect: k_use_sg=%d, "
1804 "rem_sz=%d\n", k, rem_sz));
Mike Christied6b10342005-11-08 04:06:41 -06001805
1806 schp->bufflen = blk_size;
1807 if (rem_sz > 0) /* must have failed */
1808 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 return 0;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001810out:
1811 for (i = 0; i < k; i++)
Michal Schmidte71044e2009-09-03 14:27:08 +02001812 __free_pages(schp->pages[i], order);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001813
1814 if (--order >= 0)
1815 goto retry;
1816
1817 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818}
1819
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820static void
1821sg_remove_scat(Sg_scatter_hold * schp)
1822{
1823 SCSI_LOG_TIMEOUT(4, printk("sg_remove_scat: k_use_sg=%d\n", schp->k_use_sg));
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001824 if (schp->pages && schp->sglist_len > 0) {
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001825 if (!schp->dio_in_use) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 int k;
1827
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001828 for (k = 0; k < schp->k_use_sg && schp->pages[k]; k++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 SCSI_LOG_TIMEOUT(5, printk(
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001830 "sg_remove_scat: k=%d, pg=0x%p\n",
1831 k, schp->pages[k]));
1832 __free_pages(schp->pages[k], schp->page_order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 }
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001834
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001835 kfree(schp->pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 }
Mike Christied6b10342005-11-08 04:06:41 -06001837 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 memset(schp, 0, sizeof (*schp));
1839}
1840
1841static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842sg_read_oxfer(Sg_request * srp, char __user *outp, int num_read_xfer)
1843{
1844 Sg_scatter_hold *schp = &srp->data;
Mike Christied6b10342005-11-08 04:06:41 -06001845 int k, num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846
1847 SCSI_LOG_TIMEOUT(4, printk("sg_read_oxfer: num_read_xfer=%d\n",
1848 num_read_xfer));
1849 if ((!outp) || (num_read_xfer <= 0))
1850 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001852 num = 1 << (PAGE_SHIFT + schp->page_order);
1853 for (k = 0; k < schp->k_use_sg && schp->pages[k]; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06001854 if (num > num_read_xfer) {
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001855 if (__copy_to_user(outp, page_address(schp->pages[k]),
Mike Christied6b10342005-11-08 04:06:41 -06001856 num_read_xfer))
1857 return -EFAULT;
1858 break;
1859 } else {
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001860 if (__copy_to_user(outp, page_address(schp->pages[k]),
Mike Christied6b10342005-11-08 04:06:41 -06001861 num))
1862 return -EFAULT;
1863 num_read_xfer -= num;
1864 if (num_read_xfer <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 break;
Mike Christied6b10342005-11-08 04:06:41 -06001866 outp += num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 }
Mike Christied6b10342005-11-08 04:06:41 -06001869
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 return 0;
1871}
1872
1873static void
1874sg_build_reserve(Sg_fd * sfp, int req_size)
1875{
1876 Sg_scatter_hold *schp = &sfp->reserve;
1877
1878 SCSI_LOG_TIMEOUT(4, printk("sg_build_reserve: req_size=%d\n", req_size));
1879 do {
1880 if (req_size < PAGE_SIZE)
1881 req_size = PAGE_SIZE;
1882 if (0 == sg_build_indirect(schp, sfp, req_size))
1883 return;
1884 else
1885 sg_remove_scat(schp);
1886 req_size >>= 1; /* divide by 2 */
1887 } while (req_size > (PAGE_SIZE / 2));
1888}
1889
1890static void
1891sg_link_reserve(Sg_fd * sfp, Sg_request * srp, int size)
1892{
1893 Sg_scatter_hold *req_schp = &srp->data;
1894 Sg_scatter_hold *rsv_schp = &sfp->reserve;
Mike Christied6b10342005-11-08 04:06:41 -06001895 int k, num, rem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896
1897 srp->res_used = 1;
1898 SCSI_LOG_TIMEOUT(4, printk("sg_link_reserve: size=%d\n", size));
Brian Kingeca7be52006-02-14 12:42:24 -06001899 rem = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001901 num = 1 << (PAGE_SHIFT + rsv_schp->page_order);
1902 for (k = 0; k < rsv_schp->k_use_sg; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06001903 if (rem <= num) {
Mike Christied6b10342005-11-08 04:06:41 -06001904 req_schp->k_use_sg = k + 1;
1905 req_schp->sglist_len = rsv_schp->sglist_len;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001906 req_schp->pages = rsv_schp->pages;
Mike Christied6b10342005-11-08 04:06:41 -06001907
1908 req_schp->bufflen = size;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001909 req_schp->page_order = rsv_schp->page_order;
Mike Christied6b10342005-11-08 04:06:41 -06001910 break;
1911 } else
1912 rem -= num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 }
Mike Christied6b10342005-11-08 04:06:41 -06001914
1915 if (k >= rsv_schp->k_use_sg)
1916 SCSI_LOG_TIMEOUT(1, printk("sg_link_reserve: BAD size\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917}
1918
1919static void
1920sg_unlink_reserve(Sg_fd * sfp, Sg_request * srp)
1921{
1922 Sg_scatter_hold *req_schp = &srp->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923
1924 SCSI_LOG_TIMEOUT(4, printk("sg_unlink_reserve: req->k_use_sg=%d\n",
1925 (int) req_schp->k_use_sg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 req_schp->k_use_sg = 0;
1927 req_schp->bufflen = 0;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001928 req_schp->pages = NULL;
1929 req_schp->page_order = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 req_schp->sglist_len = 0;
1931 sfp->save_scat_len = 0;
1932 srp->res_used = 0;
1933}
1934
1935static Sg_request *
1936sg_get_rq_mark(Sg_fd * sfp, int pack_id)
1937{
1938 Sg_request *resp;
1939 unsigned long iflags;
1940
1941 write_lock_irqsave(&sfp->rq_list_lock, iflags);
1942 for (resp = sfp->headrp; resp; resp = resp->nextrp) {
1943 /* look for requests that are ready + not SG_IO owned */
1944 if ((1 == resp->done) && (!resp->sg_io_owned) &&
1945 ((-1 == pack_id) || (resp->header.pack_id == pack_id))) {
1946 resp->done = 2; /* guard against other readers */
1947 break;
1948 }
1949 }
1950 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1951 return resp;
1952}
1953
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954/* always adds to end of list */
1955static Sg_request *
1956sg_add_request(Sg_fd * sfp)
1957{
1958 int k;
1959 unsigned long iflags;
1960 Sg_request *resp;
1961 Sg_request *rp = sfp->req_arr;
1962
1963 write_lock_irqsave(&sfp->rq_list_lock, iflags);
1964 resp = sfp->headrp;
1965 if (!resp) {
1966 memset(rp, 0, sizeof (Sg_request));
1967 rp->parentfp = sfp;
1968 resp = rp;
1969 sfp->headrp = resp;
1970 } else {
1971 if (0 == sfp->cmd_q)
1972 resp = NULL; /* command queuing disallowed */
1973 else {
1974 for (k = 0; k < SG_MAX_QUEUE; ++k, ++rp) {
1975 if (!rp->parentfp)
1976 break;
1977 }
1978 if (k < SG_MAX_QUEUE) {
1979 memset(rp, 0, sizeof (Sg_request));
1980 rp->parentfp = sfp;
1981 while (resp->nextrp)
1982 resp = resp->nextrp;
1983 resp->nextrp = rp;
1984 resp = rp;
1985 } else
1986 resp = NULL;
1987 }
1988 }
1989 if (resp) {
1990 resp->nextrp = NULL;
cb59e842005-04-02 13:51:23 -06001991 resp->header.duration = jiffies_to_msecs(jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 }
1993 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1994 return resp;
1995}
1996
1997/* Return of 1 for found; 0 for not found */
1998static int
1999sg_remove_request(Sg_fd * sfp, Sg_request * srp)
2000{
2001 Sg_request *prev_rp;
2002 Sg_request *rp;
2003 unsigned long iflags;
2004 int res = 0;
2005
2006 if ((!sfp) || (!srp) || (!sfp->headrp))
2007 return res;
2008 write_lock_irqsave(&sfp->rq_list_lock, iflags);
2009 prev_rp = sfp->headrp;
2010 if (srp == prev_rp) {
2011 sfp->headrp = prev_rp->nextrp;
2012 prev_rp->parentfp = NULL;
2013 res = 1;
2014 } else {
2015 while ((rp = prev_rp->nextrp)) {
2016 if (srp == rp) {
2017 prev_rp->nextrp = rp->nextrp;
2018 rp->parentfp = NULL;
2019 res = 1;
2020 break;
2021 }
2022 prev_rp = rp;
2023 }
2024 }
2025 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
2026 return res;
2027}
2028
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029static Sg_fd *
2030sg_add_sfp(Sg_device * sdp, int dev)
2031{
2032 Sg_fd *sfp;
2033 unsigned long iflags;
Alan Stern44ec9542007-02-20 11:01:57 -05002034 int bufflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035
Mike Christied6b10342005-11-08 04:06:41 -06002036 sfp = kzalloc(sizeof(*sfp), GFP_ATOMIC | __GFP_NOWARN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 if (!sfp)
2038 return NULL;
Mike Christied6b10342005-11-08 04:06:41 -06002039
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 init_waitqueue_head(&sfp->read_wait);
2041 rwlock_init(&sfp->rq_list_lock);
2042
Tony Battersbyc6517b72009-01-21 14:45:50 -05002043 kref_init(&sfp->f_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 sfp->timeout = SG_DEFAULT_TIMEOUT;
2045 sfp->timeout_user = SG_DEFAULT_TIMEOUT_USER;
2046 sfp->force_packid = SG_DEF_FORCE_PACK_ID;
2047 sfp->low_dma = (SG_DEF_FORCE_LOW_DMA == 0) ?
2048 sdp->device->host->unchecked_isa_dma : 1;
2049 sfp->cmd_q = SG_DEF_COMMAND_Q;
2050 sfp->keep_orphan = SG_DEF_KEEP_ORPHAN;
2051 sfp->parentdp = sdp;
James Bottomley7c07d612007-08-05 13:36:11 -05002052 write_lock_irqsave(&sg_index_lock, iflags);
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002053 list_add_tail(&sfp->sfd_siblings, &sdp->sfds);
James Bottomley7c07d612007-08-05 13:36:11 -05002054 write_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 SCSI_LOG_TIMEOUT(3, printk("sg_add_sfp: sfp=0x%p\n", sfp));
Douglas Gilbert6460e752006-09-20 18:20:49 -04002056 if (unlikely(sg_big_buff != def_reserved_size))
2057 sg_big_buff = def_reserved_size;
2058
Alan Stern44ec9542007-02-20 11:01:57 -05002059 bufflen = min_t(int, sg_big_buff,
Martin K. Petersenae03bf62009-05-22 17:17:50 -04002060 queue_max_sectors(sdp->device->request_queue) * 512);
Alan Stern44ec9542007-02-20 11:01:57 -05002061 sg_build_reserve(sfp, bufflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 SCSI_LOG_TIMEOUT(3, printk("sg_add_sfp: bufflen=%d, k_use_sg=%d\n",
2063 sfp->reserve.bufflen, sfp->reserve.k_use_sg));
Tony Battersbyc6517b72009-01-21 14:45:50 -05002064
2065 kref_get(&sdp->d_ref);
2066 __module_get(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 return sfp;
2068}
2069
Tony Battersbyc6517b72009-01-21 14:45:50 -05002070static void sg_remove_sfp_usercontext(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071{
Tony Battersbyc6517b72009-01-21 14:45:50 -05002072 struct sg_fd *sfp = container_of(work, struct sg_fd, ew.work);
2073 struct sg_device *sdp = sfp->parentdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
Tony Battersbyc6517b72009-01-21 14:45:50 -05002075 /* Cleanup any responses which were never read(). */
2076 while (sfp->headrp)
2077 sg_finish_rem_req(sfp->headrp);
2078
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 if (sfp->reserve.bufflen > 0) {
Tony Battersbyc6517b72009-01-21 14:45:50 -05002080 SCSI_LOG_TIMEOUT(6,
2081 printk("sg_remove_sfp: bufflen=%d, k_use_sg=%d\n",
2082 (int) sfp->reserve.bufflen,
2083 (int) sfp->reserve.k_use_sg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 sg_remove_scat(&sfp->reserve);
2085 }
Tony Battersbyc6517b72009-01-21 14:45:50 -05002086
2087 SCSI_LOG_TIMEOUT(6,
2088 printk("sg_remove_sfp: %s, sfp=0x%p\n",
2089 sdp->disk->disk_name,
2090 sfp));
Mike Christied6b10342005-11-08 04:06:41 -06002091 kfree(sfp);
Tony Battersbyc6517b72009-01-21 14:45:50 -05002092
2093 scsi_device_put(sdp->device);
2094 sg_put_dev(sdp);
2095 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096}
2097
Tony Battersbyc6517b72009-01-21 14:45:50 -05002098static void sg_remove_sfp(struct kref *kref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099{
Tony Battersbyc6517b72009-01-21 14:45:50 -05002100 struct sg_fd *sfp = container_of(kref, struct sg_fd, f_ref);
2101 struct sg_device *sdp = sfp->parentdp;
Tony Battersbyc6517b72009-01-21 14:45:50 -05002102 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103
Tony Battersbyc6517b72009-01-21 14:45:50 -05002104 write_lock_irqsave(&sg_index_lock, iflags);
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002105 list_del(&sfp->sfd_siblings);
Tony Battersbyc6517b72009-01-21 14:45:50 -05002106 write_unlock_irqrestore(&sg_index_lock, iflags);
2107 wake_up_interruptible(&sdp->o_excl_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
FUJITA Tomonori015640e2009-04-03 19:28:06 +09002109 INIT_WORK(&sfp->ew.work, sg_remove_sfp_usercontext);
2110 schedule_work(&sfp->ew.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111}
2112
2113static int
2114sg_res_in_use(Sg_fd * sfp)
2115{
2116 const Sg_request *srp;
2117 unsigned long iflags;
2118
2119 read_lock_irqsave(&sfp->rq_list_lock, iflags);
2120 for (srp = sfp->headrp; srp; srp = srp->nextrp)
2121 if (srp->res_used)
2122 break;
2123 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
2124 return srp ? 1 : 0;
2125}
2126
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127#ifdef CONFIG_SCSI_PROC_FS
2128static int
James Bottomley7c07d612007-08-05 13:36:11 -05002129sg_idr_max_id(int id, void *p, void *data)
2130{
2131 int *k = data;
2132
2133 if (*k < id)
2134 *k = id;
2135
2136 return 0;
2137}
2138
2139static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140sg_last_dev(void)
2141{
Tony Battersby53474c02008-01-22 15:25:49 -05002142 int k = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 unsigned long iflags;
2144
James Bottomley7c07d612007-08-05 13:36:11 -05002145 read_lock_irqsave(&sg_index_lock, iflags);
2146 idr_for_each(&sg_index_idr, sg_idr_max_id, &k);
2147 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 return k + 1; /* origin 1 */
2149}
2150#endif
2151
Tony Battersbyc6517b72009-01-21 14:45:50 -05002152/* must be called with sg_index_lock held */
2153static Sg_device *sg_lookup_dev(int dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154{
Tony Battersbyc6517b72009-01-21 14:45:50 -05002155 return idr_find(&sg_index_idr, dev);
2156}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
Tony Battersbyc6517b72009-01-21 14:45:50 -05002158static Sg_device *sg_get_dev(int dev)
2159{
2160 struct sg_device *sdp;
2161 unsigned long flags;
2162
2163 read_lock_irqsave(&sg_index_lock, flags);
2164 sdp = sg_lookup_dev(dev);
2165 if (!sdp)
2166 sdp = ERR_PTR(-ENXIO);
2167 else if (sdp->detached) {
2168 /* If sdp->detached, then the refcount may already be 0, in
2169 * which case it would be a bug to do kref_get().
2170 */
2171 sdp = ERR_PTR(-ENODEV);
2172 } else
2173 kref_get(&sdp->d_ref);
2174 read_unlock_irqrestore(&sg_index_lock, flags);
James Bottomley7c07d612007-08-05 13:36:11 -05002175
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 return sdp;
2177}
2178
Tony Battersbyc6517b72009-01-21 14:45:50 -05002179static void sg_put_dev(struct sg_device *sdp)
2180{
2181 kref_put(&sdp->d_ref, sg_device_destroy);
2182}
2183
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184#ifdef CONFIG_SCSI_PROC_FS
2185
2186static struct proc_dir_entry *sg_proc_sgp = NULL;
2187
2188static char sg_proc_sg_dirname[] = "scsi/sg";
2189
2190static int sg_proc_seq_show_int(struct seq_file *s, void *v);
2191
2192static int sg_proc_single_open_adio(struct inode *inode, struct file *file);
2193static ssize_t sg_proc_write_adio(struct file *filp, const char __user *buffer,
2194 size_t count, loff_t *off);
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002195static const struct file_operations adio_fops = {
2196 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 .open = sg_proc_single_open_adio,
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002198 .read = seq_read,
2199 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 .write = sg_proc_write_adio,
2201 .release = single_release,
2202};
2203
2204static int sg_proc_single_open_dressz(struct inode *inode, struct file *file);
2205static ssize_t sg_proc_write_dressz(struct file *filp,
2206 const char __user *buffer, size_t count, loff_t *off);
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002207static const struct file_operations dressz_fops = {
2208 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 .open = sg_proc_single_open_dressz,
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002210 .read = seq_read,
2211 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 .write = sg_proc_write_dressz,
2213 .release = single_release,
2214};
2215
2216static int sg_proc_seq_show_version(struct seq_file *s, void *v);
2217static int sg_proc_single_open_version(struct inode *inode, struct file *file);
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002218static const struct file_operations version_fops = {
2219 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 .open = sg_proc_single_open_version,
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002221 .read = seq_read,
2222 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 .release = single_release,
2224};
2225
2226static int sg_proc_seq_show_devhdr(struct seq_file *s, void *v);
2227static int sg_proc_single_open_devhdr(struct inode *inode, struct file *file);
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002228static const struct file_operations devhdr_fops = {
2229 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 .open = sg_proc_single_open_devhdr,
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002231 .read = seq_read,
2232 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 .release = single_release,
2234};
2235
2236static int sg_proc_seq_show_dev(struct seq_file *s, void *v);
2237static int sg_proc_open_dev(struct inode *inode, struct file *file);
2238static void * dev_seq_start(struct seq_file *s, loff_t *pos);
2239static void * dev_seq_next(struct seq_file *s, void *v, loff_t *pos);
2240static void dev_seq_stop(struct seq_file *s, void *v);
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002241static const struct file_operations dev_fops = {
2242 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 .open = sg_proc_open_dev,
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002244 .read = seq_read,
2245 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 .release = seq_release,
2247};
James Morris88e9d342009-09-22 16:43:43 -07002248static const struct seq_operations dev_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 .start = dev_seq_start,
2250 .next = dev_seq_next,
2251 .stop = dev_seq_stop,
2252 .show = sg_proc_seq_show_dev,
2253};
2254
2255static int sg_proc_seq_show_devstrs(struct seq_file *s, void *v);
2256static int sg_proc_open_devstrs(struct inode *inode, struct file *file);
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002257static const struct file_operations devstrs_fops = {
2258 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 .open = sg_proc_open_devstrs,
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002260 .read = seq_read,
2261 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 .release = seq_release,
2263};
James Morris88e9d342009-09-22 16:43:43 -07002264static const struct seq_operations devstrs_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 .start = dev_seq_start,
2266 .next = dev_seq_next,
2267 .stop = dev_seq_stop,
2268 .show = sg_proc_seq_show_devstrs,
2269};
2270
2271static int sg_proc_seq_show_debug(struct seq_file *s, void *v);
2272static int sg_proc_open_debug(struct inode *inode, struct file *file);
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002273static const struct file_operations debug_fops = {
2274 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 .open = sg_proc_open_debug,
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002276 .read = seq_read,
2277 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 .release = seq_release,
2279};
James Morris88e9d342009-09-22 16:43:43 -07002280static const struct seq_operations debug_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 .start = dev_seq_start,
2282 .next = dev_seq_next,
2283 .stop = dev_seq_stop,
2284 .show = sg_proc_seq_show_debug,
2285};
2286
2287
2288struct sg_proc_leaf {
2289 const char * name;
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002290 const struct file_operations * fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291};
2292
2293static struct sg_proc_leaf sg_proc_leaf_arr[] = {
2294 {"allow_dio", &adio_fops},
2295 {"debug", &debug_fops},
2296 {"def_reserved_size", &dressz_fops},
2297 {"device_hdr", &devhdr_fops},
2298 {"devices", &dev_fops},
2299 {"device_strs", &devstrs_fops},
2300 {"version", &version_fops}
2301};
2302
2303static int
2304sg_proc_init(void)
2305{
2306 int k, mask;
Tobias Klauser6391a112006-06-08 22:23:48 -07002307 int num_leaves = ARRAY_SIZE(sg_proc_leaf_arr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 struct sg_proc_leaf * leaf;
2309
Al Viro66600222005-09-28 22:32:57 +01002310 sg_proc_sgp = proc_mkdir(sg_proc_sg_dirname, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 if (!sg_proc_sgp)
2312 return 1;
2313 for (k = 0; k < num_leaves; ++k) {
2314 leaf = &sg_proc_leaf_arr[k];
2315 mask = leaf->fops->write ? S_IRUGO | S_IWUSR : S_IRUGO;
Denis V. Luneva9739092008-04-29 01:02:17 -07002316 proc_create(leaf->name, mask, sg_proc_sgp, leaf->fops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 }
2318 return 0;
2319}
2320
2321static void
2322sg_proc_cleanup(void)
2323{
2324 int k;
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
2327 if (!sg_proc_sgp)
2328 return;
2329 for (k = 0; k < num_leaves; ++k)
2330 remove_proc_entry(sg_proc_leaf_arr[k].name, sg_proc_sgp);
2331 remove_proc_entry(sg_proc_sg_dirname, NULL);
2332}
2333
2334
2335static int sg_proc_seq_show_int(struct seq_file *s, void *v)
2336{
2337 seq_printf(s, "%d\n", *((int *)s->private));
2338 return 0;
2339}
2340
2341static int sg_proc_single_open_adio(struct inode *inode, struct file *file)
2342{
2343 return single_open(file, sg_proc_seq_show_int, &sg_allow_dio);
2344}
2345
2346static ssize_t
2347sg_proc_write_adio(struct file *filp, const char __user *buffer,
2348 size_t count, loff_t *off)
2349{
2350 int num;
2351 char buff[11];
2352
2353 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
2354 return -EACCES;
2355 num = (count < 10) ? count : 10;
2356 if (copy_from_user(buff, buffer, num))
2357 return -EFAULT;
2358 buff[num] = '\0';
2359 sg_allow_dio = simple_strtoul(buff, NULL, 10) ? 1 : 0;
2360 return count;
2361}
2362
2363static int sg_proc_single_open_dressz(struct inode *inode, struct file *file)
2364{
2365 return single_open(file, sg_proc_seq_show_int, &sg_big_buff);
2366}
2367
2368static ssize_t
2369sg_proc_write_dressz(struct file *filp, const char __user *buffer,
2370 size_t count, loff_t *off)
2371{
2372 int num;
2373 unsigned long k = ULONG_MAX;
2374 char buff[11];
2375
2376 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
2377 return -EACCES;
2378 num = (count < 10) ? count : 10;
2379 if (copy_from_user(buff, buffer, num))
2380 return -EFAULT;
2381 buff[num] = '\0';
2382 k = simple_strtoul(buff, NULL, 10);
2383 if (k <= 1048576) { /* limit "big buff" to 1 MB */
2384 sg_big_buff = k;
2385 return count;
2386 }
2387 return -ERANGE;
2388}
2389
2390static int sg_proc_seq_show_version(struct seq_file *s, void *v)
2391{
2392 seq_printf(s, "%d\t%s [%s]\n", sg_version_num, SG_VERSION_STR,
2393 sg_version_date);
2394 return 0;
2395}
2396
2397static int sg_proc_single_open_version(struct inode *inode, struct file *file)
2398{
2399 return single_open(file, sg_proc_seq_show_version, NULL);
2400}
2401
2402static int sg_proc_seq_show_devhdr(struct seq_file *s, void *v)
2403{
2404 seq_printf(s, "host\tchan\tid\tlun\ttype\topens\tqdepth\tbusy\t"
2405 "online\n");
2406 return 0;
2407}
2408
2409static int sg_proc_single_open_devhdr(struct inode *inode, struct file *file)
2410{
2411 return single_open(file, sg_proc_seq_show_devhdr, NULL);
2412}
2413
2414struct sg_proc_deviter {
2415 loff_t index;
2416 size_t max;
2417};
2418
2419static void * dev_seq_start(struct seq_file *s, loff_t *pos)
2420{
2421 struct sg_proc_deviter * it = kmalloc(sizeof(*it), GFP_KERNEL);
2422
Jan Blunck729d70f2005-08-27 11:07:52 -07002423 s->private = it;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 if (! it)
2425 return NULL;
Jan Blunck729d70f2005-08-27 11:07:52 -07002426
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 it->index = *pos;
2428 it->max = sg_last_dev();
2429 if (it->index >= it->max)
Jan Blunck729d70f2005-08-27 11:07:52 -07002430 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 return it;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432}
2433
2434static void * dev_seq_next(struct seq_file *s, void *v, loff_t *pos)
2435{
Jan Blunck729d70f2005-08-27 11:07:52 -07002436 struct sg_proc_deviter * it = s->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437
2438 *pos = ++it->index;
2439 return (it->index < it->max) ? it : NULL;
2440}
2441
2442static void dev_seq_stop(struct seq_file *s, void *v)
2443{
Jan Blunck729d70f2005-08-27 11:07:52 -07002444 kfree(s->private);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445}
2446
2447static int sg_proc_open_dev(struct inode *inode, struct file *file)
2448{
2449 return seq_open(file, &dev_seq_ops);
2450}
2451
2452static int sg_proc_seq_show_dev(struct seq_file *s, void *v)
2453{
2454 struct sg_proc_deviter * it = (struct sg_proc_deviter *) v;
2455 Sg_device *sdp;
2456 struct scsi_device *scsidp;
Tony Battersbyc6517b72009-01-21 14:45:50 -05002457 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458
Tony Battersbyc6517b72009-01-21 14:45:50 -05002459 read_lock_irqsave(&sg_index_lock, iflags);
2460 sdp = it ? sg_lookup_dev(it->index) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 if (sdp && (scsidp = sdp->device) && (!sdp->detached))
2462 seq_printf(s, "%d\t%d\t%d\t%d\t%d\t%d\t%d\t%d\t%d\n",
2463 scsidp->host->host_no, scsidp->channel,
2464 scsidp->id, scsidp->lun, (int) scsidp->type,
2465 1,
2466 (int) scsidp->queue_depth,
2467 (int) scsidp->device_busy,
2468 (int) scsi_device_online(scsidp));
2469 else
2470 seq_printf(s, "-1\t-1\t-1\t-1\t-1\t-1\t-1\t-1\t-1\n");
Tony Battersbyc6517b72009-01-21 14:45:50 -05002471 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 return 0;
2473}
2474
2475static int sg_proc_open_devstrs(struct inode *inode, struct file *file)
2476{
2477 return seq_open(file, &devstrs_seq_ops);
2478}
2479
2480static int sg_proc_seq_show_devstrs(struct seq_file *s, void *v)
2481{
2482 struct sg_proc_deviter * it = (struct sg_proc_deviter *) v;
2483 Sg_device *sdp;
2484 struct scsi_device *scsidp;
Tony Battersbyc6517b72009-01-21 14:45:50 -05002485 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486
Tony Battersbyc6517b72009-01-21 14:45:50 -05002487 read_lock_irqsave(&sg_index_lock, iflags);
2488 sdp = it ? sg_lookup_dev(it->index) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 if (sdp && (scsidp = sdp->device) && (!sdp->detached))
2490 seq_printf(s, "%8.8s\t%16.16s\t%4.4s\n",
2491 scsidp->vendor, scsidp->model, scsidp->rev);
2492 else
2493 seq_printf(s, "<no active device>\n");
Tony Battersbyc6517b72009-01-21 14:45:50 -05002494 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 return 0;
2496}
2497
Tony Battersbyc6517b72009-01-21 14:45:50 -05002498/* must be called while holding sg_index_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499static void sg_proc_debug_helper(struct seq_file *s, Sg_device * sdp)
2500{
2501 int k, m, new_interface, blen, usg;
2502 Sg_request *srp;
2503 Sg_fd *fp;
2504 const sg_io_hdr_t *hp;
2505 const char * cp;
cb59e842005-04-02 13:51:23 -06002506 unsigned int ms;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002508 k = 0;
2509 list_for_each_entry(fp, &sdp->sfds, sfd_siblings) {
2510 k++;
Tony Battersbyc6517b72009-01-21 14:45:50 -05002511 read_lock(&fp->rq_list_lock); /* irqs already disabled */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 seq_printf(s, " FD(%d): timeout=%dms bufflen=%d "
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002513 "(res)sgat=%d low_dma=%d\n", k,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 jiffies_to_msecs(fp->timeout),
2515 fp->reserve.bufflen,
2516 (int) fp->reserve.k_use_sg,
2517 (int) fp->low_dma);
2518 seq_printf(s, " cmd_q=%d f_packid=%d k_orphan=%d closed=%d\n",
2519 (int) fp->cmd_q, (int) fp->force_packid,
2520 (int) fp->keep_orphan, (int) fp->closed);
Tony Battersbyc6517b72009-01-21 14:45:50 -05002521 for (m = 0, srp = fp->headrp;
2522 srp != NULL;
2523 ++m, srp = srp->nextrp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 hp = &srp->header;
2525 new_interface = (hp->interface_id == '\0') ? 0 : 1;
2526 if (srp->res_used) {
2527 if (new_interface &&
2528 (SG_FLAG_MMAP_IO & hp->flags))
2529 cp = " mmap>> ";
2530 else
2531 cp = " rb>> ";
2532 } else {
2533 if (SG_INFO_DIRECT_IO_MASK & hp->info)
2534 cp = " dio>> ";
2535 else
2536 cp = " ";
2537 }
2538 seq_printf(s, cp);
Mike Christied6b10342005-11-08 04:06:41 -06002539 blen = srp->data.bufflen;
2540 usg = srp->data.k_use_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 seq_printf(s, srp->done ?
2542 ((1 == srp->done) ? "rcv:" : "fin:")
Mike Christied6b10342005-11-08 04:06:41 -06002543 : "act:");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 seq_printf(s, " id=%d blen=%d",
2545 srp->header.pack_id, blen);
2546 if (srp->done)
2547 seq_printf(s, " dur=%d", hp->duration);
cb59e842005-04-02 13:51:23 -06002548 else {
2549 ms = jiffies_to_msecs(jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 seq_printf(s, " t_o/elap=%d/%d",
cb59e842005-04-02 13:51:23 -06002551 (new_interface ? hp->timeout :
2552 jiffies_to_msecs(fp->timeout)),
2553 (ms > hp->duration ? ms - hp->duration : 0));
2554 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 seq_printf(s, "ms sgat=%d op=0x%02x\n", usg,
2556 (int) srp->data.cmd_opcode);
2557 }
2558 if (0 == m)
2559 seq_printf(s, " No requests active\n");
Tony Battersbyc6517b72009-01-21 14:45:50 -05002560 read_unlock(&fp->rq_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 }
2562}
2563
2564static int sg_proc_open_debug(struct inode *inode, struct file *file)
2565{
2566 return seq_open(file, &debug_seq_ops);
2567}
2568
2569static int sg_proc_seq_show_debug(struct seq_file *s, void *v)
2570{
2571 struct sg_proc_deviter * it = (struct sg_proc_deviter *) v;
2572 Sg_device *sdp;
Tony Battersbyc6517b72009-01-21 14:45:50 -05002573 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574
2575 if (it && (0 == it->index)) {
James Bottomley7c07d612007-08-05 13:36:11 -05002576 seq_printf(s, "max_active_device=%d(origin 1)\n",
2577 (int)it->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 seq_printf(s, " def_reserved_size=%d\n", sg_big_buff);
2579 }
Tony Battersbyc6517b72009-01-21 14:45:50 -05002580
2581 read_lock_irqsave(&sg_index_lock, iflags);
2582 sdp = it ? sg_lookup_dev(it->index) : NULL;
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002583 if (sdp && !list_empty(&sdp->sfds)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 struct scsi_device *scsidp = sdp->device;
2585
Tony Battersbyc6517b72009-01-21 14:45:50 -05002586 seq_printf(s, " >>> device=%s ", sdp->disk->disk_name);
2587 if (sdp->detached)
2588 seq_printf(s, "detached pending close ");
2589 else
2590 seq_printf
2591 (s, "scsi%d chan=%d id=%d lun=%d em=%d",
2592 scsidp->host->host_no,
2593 scsidp->channel, scsidp->id,
2594 scsidp->lun,
2595 scsidp->host->hostt->emulated);
2596 seq_printf(s, " sg_tablesize=%d excl=%d\n",
2597 sdp->sg_tablesize, sdp->exclude);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 sg_proc_debug_helper(s, sdp);
2599 }
Tony Battersbyc6517b72009-01-21 14:45:50 -05002600 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 return 0;
2602}
2603
2604#endif /* CONFIG_SCSI_PROC_FS */
2605
2606module_init(init_sg);
2607module_exit(exit_sg);