blob: 4d6f2fe1cfe9987ee5a6be65dfc75fc77111745e [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 Battersbyc6517b792009-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 Battersbyc6517b792009-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 Battersbyc6517b792009-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 Battersbyc6517b792009-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 Battersbyc6517b792009-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 Battersbyc6517b792009-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. Petersenae03bf62009-05-22 17:17:50 -0400290 sdp->sg_tablesize = min(queue_max_hw_segments(q),
291 queue_max_phys_segments(q));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 }
293 if ((sfp = sg_add_sfp(sdp, dev)))
294 filp->private_data = sfp;
295 else {
Tony Battersbyc6517b792009-01-21 14:45:50 -0500296 if (flags & O_EXCL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 sdp->exclude = 0; /* undo if error */
Tony Battersbyc6517b792009-01-21 14:45:50 -0500298 wake_up_interruptible(&sdp->o_excl_wait);
299 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 retval = -ENOMEM;
301 goto error_out;
302 }
Tony Battersbyc6517b792009-01-21 14:45:50 -0500303 retval = 0;
304error_out:
305 if (retval)
306 scsi_device_put(sdp->device);
307sg_put:
308 if (sdp)
309 sg_put_dev(sdp);
Jonathan Corbeteb09d3d2008-05-15 12:22:06 -0600310 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 return retval;
312}
313
314/* Following function was formerly called 'sg_close' */
315static int
316sg_release(struct inode *inode, struct file *filp)
317{
318 Sg_device *sdp;
319 Sg_fd *sfp;
320
321 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
322 return -ENXIO;
323 SCSI_LOG_TIMEOUT(3, printk("sg_release: %s\n", sdp->disk->disk_name));
Tony Battersbyc6517b792009-01-21 14:45:50 -0500324
325 sfp->closed = 1;
326
327 sdp->exclude = 0;
328 wake_up_interruptible(&sdp->o_excl_wait);
329
330 kref_put(&sfp->f_ref, sg_remove_sfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 return 0;
332}
333
334static ssize_t
335sg_read(struct file *filp, char __user *buf, size_t count, loff_t * ppos)
336{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 Sg_device *sdp;
338 Sg_fd *sfp;
339 Sg_request *srp;
340 int req_pack_id = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 sg_io_hdr_t *hp;
cb59e842005-04-02 13:51:23 -0600342 struct sg_header *old_hdr = NULL;
343 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
345 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
346 return -ENXIO;
347 SCSI_LOG_TIMEOUT(3, printk("sg_read: %s, count=%d\n",
348 sdp->disk->disk_name, (int) count));
Mike Christied6b10342005-11-08 04:06:41 -0600349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 if (!access_ok(VERIFY_WRITE, buf, count))
351 return -EFAULT;
352 if (sfp->force_packid && (count >= SZ_SG_HEADER)) {
cb59e842005-04-02 13:51:23 -0600353 old_hdr = kmalloc(SZ_SG_HEADER, GFP_KERNEL);
354 if (!old_hdr)
355 return -ENOMEM;
356 if (__copy_from_user(old_hdr, buf, SZ_SG_HEADER)) {
357 retval = -EFAULT;
358 goto free_old_hdr;
359 }
360 if (old_hdr->reply_len < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 if (count >= SZ_SG_IO_HDR) {
cb59e842005-04-02 13:51:23 -0600362 sg_io_hdr_t *new_hdr;
363 new_hdr = kmalloc(SZ_SG_IO_HDR, GFP_KERNEL);
364 if (!new_hdr) {
365 retval = -ENOMEM;
366 goto free_old_hdr;
367 }
368 retval =__copy_from_user
369 (new_hdr, buf, SZ_SG_IO_HDR);
370 req_pack_id = new_hdr->pack_id;
371 kfree(new_hdr);
372 if (retval) {
373 retval = -EFAULT;
374 goto free_old_hdr;
375 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 }
377 } else
cb59e842005-04-02 13:51:23 -0600378 req_pack_id = old_hdr->pack_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 }
380 srp = sg_get_rq_mark(sfp, req_pack_id);
381 if (!srp) { /* now wait on packet to arrive */
cb59e842005-04-02 13:51:23 -0600382 if (sdp->detached) {
383 retval = -ENODEV;
384 goto free_old_hdr;
385 }
386 if (filp->f_flags & O_NONBLOCK) {
387 retval = -EAGAIN;
388 goto free_old_hdr;
389 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 while (1) {
cb59e842005-04-02 13:51:23 -0600391 retval = 0; /* following macro beats race condition */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 __wait_event_interruptible(sfp->read_wait,
cb59e842005-04-02 13:51:23 -0600393 (sdp->detached ||
394 (srp = sg_get_rq_mark(sfp, req_pack_id))),
395 retval);
396 if (sdp->detached) {
397 retval = -ENODEV;
398 goto free_old_hdr;
399 }
400 if (0 == retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 break;
cb59e842005-04-02 13:51:23 -0600402
403 /* -ERESTARTSYS as signal hit process */
404 goto free_old_hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 }
406 }
cb59e842005-04-02 13:51:23 -0600407 if (srp->header.interface_id != '\0') {
408 retval = sg_new_read(sfp, buf, count, srp);
409 goto free_old_hdr;
410 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
412 hp = &srp->header;
cb59e842005-04-02 13:51:23 -0600413 if (old_hdr == NULL) {
414 old_hdr = kmalloc(SZ_SG_HEADER, GFP_KERNEL);
415 if (! old_hdr) {
416 retval = -ENOMEM;
417 goto free_old_hdr;
418 }
419 }
420 memset(old_hdr, 0, SZ_SG_HEADER);
421 old_hdr->reply_len = (int) hp->timeout;
422 old_hdr->pack_len = old_hdr->reply_len; /* old, strange behaviour */
423 old_hdr->pack_id = hp->pack_id;
424 old_hdr->twelve_byte =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 ((srp->data.cmd_opcode >= 0xc0) && (12 == hp->cmd_len)) ? 1 : 0;
cb59e842005-04-02 13:51:23 -0600426 old_hdr->target_status = hp->masked_status;
427 old_hdr->host_status = hp->host_status;
428 old_hdr->driver_status = hp->driver_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 if ((CHECK_CONDITION & hp->masked_status) ||
430 (DRIVER_SENSE & hp->driver_status))
cb59e842005-04-02 13:51:23 -0600431 memcpy(old_hdr->sense_buffer, srp->sense_b,
432 sizeof (old_hdr->sense_buffer));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 switch (hp->host_status) {
434 /* This setup of 'result' is for backward compatibility and is best
435 ignored by the user who should use target, host + driver status */
436 case DID_OK:
437 case DID_PASSTHROUGH:
438 case DID_SOFT_ERROR:
cb59e842005-04-02 13:51:23 -0600439 old_hdr->result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 break;
441 case DID_NO_CONNECT:
442 case DID_BUS_BUSY:
443 case DID_TIME_OUT:
cb59e842005-04-02 13:51:23 -0600444 old_hdr->result = EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 break;
446 case DID_BAD_TARGET:
447 case DID_ABORT:
448 case DID_PARITY:
449 case DID_RESET:
450 case DID_BAD_INTR:
cb59e842005-04-02 13:51:23 -0600451 old_hdr->result = EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 break;
453 case DID_ERROR:
cb59e842005-04-02 13:51:23 -0600454 old_hdr->result = (srp->sense_b[0] == 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 hp->masked_status == GOOD) ? 0 : EIO;
456 break;
457 default:
cb59e842005-04-02 13:51:23 -0600458 old_hdr->result = EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 break;
460 }
461
462 /* Now copy the result back to the user buffer. */
463 if (count >= SZ_SG_HEADER) {
cb59e842005-04-02 13:51:23 -0600464 if (__copy_to_user(buf, old_hdr, SZ_SG_HEADER)) {
465 retval = -EFAULT;
466 goto free_old_hdr;
467 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 buf += SZ_SG_HEADER;
cb59e842005-04-02 13:51:23 -0600469 if (count > old_hdr->reply_len)
470 count = old_hdr->reply_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 if (count > SZ_SG_HEADER) {
cb59e842005-04-02 13:51:23 -0600472 if (sg_read_oxfer(srp, buf, count - SZ_SG_HEADER)) {
473 retval = -EFAULT;
474 goto free_old_hdr;
475 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 }
477 } else
cb59e842005-04-02 13:51:23 -0600478 count = (old_hdr->result == 0) ? 0 : -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 sg_finish_rem_req(srp);
cb59e842005-04-02 13:51:23 -0600480 retval = count;
481free_old_hdr:
Jesper Juhlc9475cb2005-11-07 01:01:26 -0800482 kfree(old_hdr);
cb59e842005-04-02 13:51:23 -0600483 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484}
485
486static ssize_t
487sg_new_read(Sg_fd * sfp, char __user *buf, size_t count, Sg_request * srp)
488{
489 sg_io_hdr_t *hp = &srp->header;
490 int err = 0;
491 int len;
492
493 if (count < SZ_SG_IO_HDR) {
494 err = -EINVAL;
495 goto err_out;
496 }
497 hp->sb_len_wr = 0;
498 if ((hp->mx_sb_len > 0) && hp->sbp) {
499 if ((CHECK_CONDITION & hp->masked_status) ||
500 (DRIVER_SENSE & hp->driver_status)) {
Mike Christied6b10342005-11-08 04:06:41 -0600501 int sb_len = SCSI_SENSE_BUFFERSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 sb_len = (hp->mx_sb_len > sb_len) ? sb_len : hp->mx_sb_len;
503 len = 8 + (int) srp->sense_b[7]; /* Additional sense length field */
504 len = (len > sb_len) ? sb_len : len;
505 if (copy_to_user(hp->sbp, srp->sense_b, len)) {
506 err = -EFAULT;
507 goto err_out;
508 }
509 hp->sb_len_wr = len;
510 }
511 }
512 if (hp->masked_status || hp->host_status || hp->driver_status)
513 hp->info |= SG_INFO_CHECK;
514 if (copy_to_user(buf, hp, SZ_SG_IO_HDR)) {
515 err = -EFAULT;
516 goto err_out;
517 }
FUJITA Tomonori0b6cb262008-09-02 22:50:07 +0900518err_out:
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +0900519 err = sg_finish_rem_req(srp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 return (0 == err) ? count : err;
521}
522
523static ssize_t
524sg_write(struct file *filp, const char __user *buf, size_t count, loff_t * ppos)
525{
526 int mxsize, cmd_size, k;
527 int input_size, blocking;
528 unsigned char opcode;
529 Sg_device *sdp;
530 Sg_fd *sfp;
531 Sg_request *srp;
532 struct sg_header old_hdr;
533 sg_io_hdr_t *hp;
Mike Christied6b10342005-11-08 04:06:41 -0600534 unsigned char cmnd[MAX_COMMAND_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
536 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
537 return -ENXIO;
538 SCSI_LOG_TIMEOUT(3, printk("sg_write: %s, count=%d\n",
539 sdp->disk->disk_name, (int) count));
540 if (sdp->detached)
541 return -ENODEV;
542 if (!((filp->f_flags & O_NONBLOCK) ||
543 scsi_block_when_processing_errors(sdp->device)))
544 return -ENXIO;
545
546 if (!access_ok(VERIFY_READ, buf, count))
547 return -EFAULT; /* protects following copy_from_user()s + get_user()s */
548 if (count < SZ_SG_HEADER)
549 return -EIO;
550 if (__copy_from_user(&old_hdr, buf, SZ_SG_HEADER))
551 return -EFAULT;
552 blocking = !(filp->f_flags & O_NONBLOCK);
553 if (old_hdr.reply_len < 0)
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500554 return sg_new_write(sfp, filp, buf, count,
555 blocking, 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 if (count < (SZ_SG_HEADER + 6))
557 return -EIO; /* The minimum scsi command length is 6 bytes. */
558
559 if (!(srp = sg_add_request(sfp))) {
560 SCSI_LOG_TIMEOUT(1, printk("sg_write: queue full\n"));
561 return -EDOM;
562 }
563 buf += SZ_SG_HEADER;
564 __get_user(opcode, buf);
565 if (sfp->next_cmd_len > 0) {
566 if (sfp->next_cmd_len > MAX_COMMAND_SIZE) {
567 SCSI_LOG_TIMEOUT(1, printk("sg_write: command length too long\n"));
568 sfp->next_cmd_len = 0;
569 sg_remove_request(sfp, srp);
570 return -EIO;
571 }
572 cmd_size = sfp->next_cmd_len;
573 sfp->next_cmd_len = 0; /* reset so only this write() effected */
574 } else {
575 cmd_size = COMMAND_SIZE(opcode); /* based on SCSI command group */
576 if ((opcode >= 0xc0) && old_hdr.twelve_byte)
577 cmd_size = 12;
578 }
579 SCSI_LOG_TIMEOUT(4, printk(
580 "sg_write: scsi opcode=0x%02x, cmd_size=%d\n", (int) opcode, cmd_size));
581/* Determine buffer size. */
582 input_size = count - cmd_size;
583 mxsize = (input_size > old_hdr.reply_len) ? input_size : old_hdr.reply_len;
584 mxsize -= SZ_SG_HEADER;
585 input_size -= SZ_SG_HEADER;
586 if (input_size < 0) {
587 sg_remove_request(sfp, srp);
588 return -EIO; /* User did not pass enough bytes for this command. */
589 }
590 hp = &srp->header;
591 hp->interface_id = '\0'; /* indicator of old interface tunnelled */
592 hp->cmd_len = (unsigned char) cmd_size;
593 hp->iovec_count = 0;
594 hp->mx_sb_len = 0;
595 if (input_size > 0)
596 hp->dxfer_direction = (old_hdr.reply_len > SZ_SG_HEADER) ?
597 SG_DXFER_TO_FROM_DEV : SG_DXFER_TO_DEV;
598 else
599 hp->dxfer_direction = (mxsize > 0) ? SG_DXFER_FROM_DEV : SG_DXFER_NONE;
600 hp->dxfer_len = mxsize;
FUJITA Tomonorifad7f012008-09-02 16:20:20 +0900601 if (hp->dxfer_direction == SG_DXFER_TO_DEV)
602 hp->dxferp = (char __user *)buf + cmd_size;
603 else
604 hp->dxferp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 hp->sbp = NULL;
606 hp->timeout = old_hdr.reply_len; /* structure abuse ... */
607 hp->flags = input_size; /* structure abuse ... */
608 hp->pack_id = old_hdr.pack_id;
609 hp->usr_ptr = NULL;
610 if (__copy_from_user(cmnd, buf, cmd_size))
611 return -EFAULT;
612 /*
613 * SG_DXFER_TO_FROM_DEV is functionally equivalent to SG_DXFER_FROM_DEV,
614 * but is is possible that the app intended SG_DXFER_TO_DEV, because there
615 * is a non-zero input_size, so emit a warning.
616 */
Andi Kleeneaa3e222008-01-13 17:41:43 +0100617 if (hp->dxfer_direction == SG_DXFER_TO_FROM_DEV) {
618 static char cmd[TASK_COMM_LEN];
619 if (strcmp(current->comm, cmd) && printk_ratelimit()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 printk(KERN_WARNING
621 "sg_write: data in/out %d/%d bytes for SCSI command 0x%x--"
Joe Perchesad361c92009-07-06 13:05:40 -0700622 "guessing data in;\n "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 "program %s not setting count and/or reply_len properly\n",
624 old_hdr.reply_len - (int)SZ_SG_HEADER,
625 input_size, (unsigned int) cmnd[0],
626 current->comm);
Andi Kleeneaa3e222008-01-13 17:41:43 +0100627 strcpy(cmd, current->comm);
628 }
629 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 k = sg_common_write(sfp, srp, cmnd, sfp->timeout, blocking);
631 return (k < 0) ? k : count;
632}
633
634static ssize_t
Adel Gadllah0b07de82008-06-26 13:48:27 +0200635sg_new_write(Sg_fd *sfp, struct file *file, const char __user *buf,
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500636 size_t count, int blocking, int read_only, int sg_io_owned,
Adel Gadllah0b07de82008-06-26 13:48:27 +0200637 Sg_request **o_srp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638{
639 int k;
640 Sg_request *srp;
641 sg_io_hdr_t *hp;
Mike Christied6b10342005-11-08 04:06:41 -0600642 unsigned char cmnd[MAX_COMMAND_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 int timeout;
644 unsigned long ul_timeout;
645
646 if (count < SZ_SG_IO_HDR)
647 return -EINVAL;
648 if (!access_ok(VERIFY_READ, buf, count))
649 return -EFAULT; /* protects following copy_from_user()s + get_user()s */
650
651 sfp->cmd_q = 1; /* when sg_io_hdr seen, set command queuing on */
652 if (!(srp = sg_add_request(sfp))) {
653 SCSI_LOG_TIMEOUT(1, printk("sg_new_write: queue full\n"));
654 return -EDOM;
655 }
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500656 srp->sg_io_owned = sg_io_owned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 hp = &srp->header;
658 if (__copy_from_user(hp, buf, SZ_SG_IO_HDR)) {
659 sg_remove_request(sfp, srp);
660 return -EFAULT;
661 }
662 if (hp->interface_id != 'S') {
663 sg_remove_request(sfp, srp);
664 return -ENOSYS;
665 }
666 if (hp->flags & SG_FLAG_MMAP_IO) {
667 if (hp->dxfer_len > sfp->reserve.bufflen) {
668 sg_remove_request(sfp, srp);
669 return -ENOMEM; /* MMAP_IO size must fit in reserve buffer */
670 }
671 if (hp->flags & SG_FLAG_DIRECT_IO) {
672 sg_remove_request(sfp, srp);
673 return -EINVAL; /* either MMAP_IO or DIRECT_IO (not both) */
674 }
675 if (sg_res_in_use(sfp)) {
676 sg_remove_request(sfp, srp);
677 return -EBUSY; /* reserve buffer already being used */
678 }
679 }
680 ul_timeout = msecs_to_jiffies(srp->header.timeout);
681 timeout = (ul_timeout < INT_MAX) ? ul_timeout : INT_MAX;
682 if ((!hp->cmdp) || (hp->cmd_len < 6) || (hp->cmd_len > sizeof (cmnd))) {
683 sg_remove_request(sfp, srp);
684 return -EMSGSIZE;
685 }
686 if (!access_ok(VERIFY_READ, hp->cmdp, hp->cmd_len)) {
687 sg_remove_request(sfp, srp);
688 return -EFAULT; /* protects following copy_from_user()s + get_user()s */
689 }
690 if (__copy_from_user(cmnd, hp->cmdp, hp->cmd_len)) {
691 sg_remove_request(sfp, srp);
692 return -EFAULT;
693 }
FUJITA Tomonori14e507b2008-07-26 18:03:24 +0900694 if (read_only && sg_allow_access(file, cmnd)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 sg_remove_request(sfp, srp);
696 return -EPERM;
697 }
698 k = sg_common_write(sfp, srp, cmnd, timeout, blocking);
699 if (k < 0)
700 return k;
701 if (o_srp)
702 *o_srp = srp;
703 return count;
704}
705
706static int
707sg_common_write(Sg_fd * sfp, Sg_request * srp,
708 unsigned char *cmnd, int timeout, int blocking)
709{
Mike Christied6b10342005-11-08 04:06:41 -0600710 int k, data_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 Sg_device *sdp = sfp->parentdp;
712 sg_io_hdr_t *hp = &srp->header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
714 srp->data.cmd_opcode = cmnd[0]; /* hold opcode of command */
715 hp->status = 0;
716 hp->masked_status = 0;
717 hp->msg_status = 0;
718 hp->info = 0;
719 hp->host_status = 0;
720 hp->driver_status = 0;
721 hp->resid = 0;
722 SCSI_LOG_TIMEOUT(4, printk("sg_common_write: scsi opcode=0x%02x, cmd_size=%d\n",
723 (int) cmnd[0], (int) hp->cmd_len));
724
FUJITA Tomonori10865df2008-08-28 16:17:07 +0900725 k = sg_start_req(srp, cmnd);
726 if (k) {
Douglas Gilbert7ca63cb2006-10-27 17:47:49 -0400727 SCSI_LOG_TIMEOUT(1, printk("sg_common_write: start_req err=%d\n", k));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 sg_finish_rem_req(srp);
729 return k; /* probably out of space --> ENOMEM */
730 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 if (sdp->detached) {
732 sg_finish_rem_req(srp);
733 return -ENODEV;
734 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 switch (hp->dxfer_direction) {
737 case SG_DXFER_TO_FROM_DEV:
738 case SG_DXFER_FROM_DEV:
Mike Christied6b10342005-11-08 04:06:41 -0600739 data_dir = DMA_FROM_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 break;
741 case SG_DXFER_TO_DEV:
Mike Christied6b10342005-11-08 04:06:41 -0600742 data_dir = DMA_TO_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 break;
744 case SG_DXFER_UNKNOWN:
Mike Christied6b10342005-11-08 04:06:41 -0600745 data_dir = DMA_BIDIRECTIONAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 break;
747 default:
Mike Christied6b10342005-11-08 04:06:41 -0600748 data_dir = DMA_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 break;
750 }
cb59e842005-04-02 13:51:23 -0600751 hp->duration = jiffies_to_msecs(jiffies);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +0200752
753 srp->rq->timeout = timeout;
Tony Battersbyc6517b792009-01-21 14:45:50 -0500754 kref_get(&sfp->f_ref); /* sg_rq_end_io() does kref_put(). */
FUJITA Tomonori10db10d2008-08-29 12:32:18 +0200755 blk_execute_rq_nowait(sdp->device->request_queue, sdp->disk,
756 srp->rq, 1, sg_rq_end_io);
757 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758}
759
760static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761sg_ioctl(struct inode *inode, struct file *filp,
762 unsigned int cmd_in, unsigned long arg)
763{
764 void __user *p = (void __user *)arg;
765 int __user *ip = p;
766 int result, val, read_only;
767 Sg_device *sdp;
768 Sg_fd *sfp;
769 Sg_request *srp;
770 unsigned long iflags;
771
772 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
773 return -ENXIO;
FUJITA Tomonoriabf54392008-08-16 14:10:05 +0900774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 SCSI_LOG_TIMEOUT(3, printk("sg_ioctl: %s, cmd=0x%x\n",
776 sdp->disk->disk_name, (int) cmd_in));
777 read_only = (O_RDWR != (filp->f_flags & O_ACCMODE));
778
779 switch (cmd_in) {
780 case SG_IO:
781 {
782 int blocking = 1; /* ignore O_NONBLOCK flag */
783
784 if (sdp->detached)
785 return -ENODEV;
786 if (!scsi_block_when_processing_errors(sdp->device))
787 return -ENXIO;
788 if (!access_ok(VERIFY_WRITE, p, SZ_SG_IO_HDR))
789 return -EFAULT;
790 result =
Adel Gadllah0b07de82008-06-26 13:48:27 +0200791 sg_new_write(sfp, filp, p, SZ_SG_IO_HDR,
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500792 blocking, read_only, 1, &srp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 if (result < 0)
794 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 while (1) {
796 result = 0; /* following macro to beat race condition */
797 __wait_event_interruptible(sfp->read_wait,
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500798 (srp->done || sdp->detached),
799 result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 if (sdp->detached)
801 return -ENODEV;
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500802 write_lock_irq(&sfp->rq_list_lock);
803 if (srp->done) {
804 srp->done = 2;
805 write_unlock_irq(&sfp->rq_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 break;
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500807 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 srp->orphan = 1;
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500809 write_unlock_irq(&sfp->rq_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 return result; /* -ERESTARTSYS because signal hit process */
811 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 result = sg_new_read(sfp, p, SZ_SG_IO_HDR, srp);
813 return (result < 0) ? result : 0;
814 }
815 case SG_SET_TIMEOUT:
816 result = get_user(val, ip);
817 if (result)
818 return result;
819 if (val < 0)
820 return -EIO;
821 if (val >= MULDIV (INT_MAX, USER_HZ, HZ))
822 val = MULDIV (INT_MAX, USER_HZ, HZ);
823 sfp->timeout_user = val;
824 sfp->timeout = MULDIV (val, HZ, USER_HZ);
825
826 return 0;
827 case SG_GET_TIMEOUT: /* N.B. User receives timeout as return value */
828 /* strange ..., for backward compatibility */
829 return sfp->timeout_user;
830 case SG_SET_FORCE_LOW_DMA:
831 result = get_user(val, ip);
832 if (result)
833 return result;
834 if (val) {
835 sfp->low_dma = 1;
836 if ((0 == sfp->low_dma) && (0 == sg_res_in_use(sfp))) {
837 val = (int) sfp->reserve.bufflen;
838 sg_remove_scat(&sfp->reserve);
839 sg_build_reserve(sfp, val);
840 }
841 } else {
842 if (sdp->detached)
843 return -ENODEV;
844 sfp->low_dma = sdp->device->host->unchecked_isa_dma;
845 }
846 return 0;
847 case SG_GET_LOW_DMA:
848 return put_user((int) sfp->low_dma, ip);
849 case SG_GET_SCSI_ID:
850 if (!access_ok(VERIFY_WRITE, p, sizeof (sg_scsi_id_t)))
851 return -EFAULT;
852 else {
853 sg_scsi_id_t __user *sg_idp = p;
854
855 if (sdp->detached)
856 return -ENODEV;
857 __put_user((int) sdp->device->host->host_no,
858 &sg_idp->host_no);
859 __put_user((int) sdp->device->channel,
860 &sg_idp->channel);
861 __put_user((int) sdp->device->id, &sg_idp->scsi_id);
862 __put_user((int) sdp->device->lun, &sg_idp->lun);
863 __put_user((int) sdp->device->type, &sg_idp->scsi_type);
864 __put_user((short) sdp->device->host->cmd_per_lun,
865 &sg_idp->h_cmd_per_lun);
866 __put_user((short) sdp->device->queue_depth,
867 &sg_idp->d_queue_depth);
868 __put_user(0, &sg_idp->unused[0]);
869 __put_user(0, &sg_idp->unused[1]);
870 return 0;
871 }
872 case SG_SET_FORCE_PACK_ID:
873 result = get_user(val, ip);
874 if (result)
875 return result;
876 sfp->force_packid = val ? 1 : 0;
877 return 0;
878 case SG_GET_PACK_ID:
879 if (!access_ok(VERIFY_WRITE, ip, sizeof (int)))
880 return -EFAULT;
881 read_lock_irqsave(&sfp->rq_list_lock, iflags);
882 for (srp = sfp->headrp; srp; srp = srp->nextrp) {
883 if ((1 == srp->done) && (!srp->sg_io_owned)) {
884 read_unlock_irqrestore(&sfp->rq_list_lock,
885 iflags);
886 __put_user(srp->header.pack_id, ip);
887 return 0;
888 }
889 }
890 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
891 __put_user(-1, ip);
892 return 0;
893 case SG_GET_NUM_WAITING:
894 read_lock_irqsave(&sfp->rq_list_lock, iflags);
895 for (val = 0, srp = sfp->headrp; srp; srp = srp->nextrp) {
896 if ((1 == srp->done) && (!srp->sg_io_owned))
897 ++val;
898 }
899 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
900 return put_user(val, ip);
901 case SG_GET_SG_TABLESIZE:
902 return put_user(sdp->sg_tablesize, ip);
903 case SG_SET_RESERVED_SIZE:
904 result = get_user(val, ip);
905 if (result)
906 return result;
907 if (val < 0)
908 return -EINVAL;
Alan Stern44ec9542007-02-20 11:01:57 -0500909 val = min_t(int, val,
Martin K. Petersenae03bf62009-05-22 17:17:50 -0400910 queue_max_sectors(sdp->device->request_queue) * 512);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 if (val != sfp->reserve.bufflen) {
912 if (sg_res_in_use(sfp) || sfp->mmap_called)
913 return -EBUSY;
914 sg_remove_scat(&sfp->reserve);
915 sg_build_reserve(sfp, val);
916 }
917 return 0;
918 case SG_GET_RESERVED_SIZE:
Alan Stern44ec9542007-02-20 11:01:57 -0500919 val = min_t(int, sfp->reserve.bufflen,
Martin K. Petersenae03bf62009-05-22 17:17:50 -0400920 queue_max_sectors(sdp->device->request_queue) * 512);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 return put_user(val, ip);
922 case SG_SET_COMMAND_Q:
923 result = get_user(val, ip);
924 if (result)
925 return result;
926 sfp->cmd_q = val ? 1 : 0;
927 return 0;
928 case SG_GET_COMMAND_Q:
929 return put_user((int) sfp->cmd_q, ip);
930 case SG_SET_KEEP_ORPHAN:
931 result = get_user(val, ip);
932 if (result)
933 return result;
934 sfp->keep_orphan = val;
935 return 0;
936 case SG_GET_KEEP_ORPHAN:
937 return put_user((int) sfp->keep_orphan, ip);
938 case SG_NEXT_CMD_LEN:
939 result = get_user(val, ip);
940 if (result)
941 return result;
942 sfp->next_cmd_len = (val > 0) ? val : 0;
943 return 0;
944 case SG_GET_VERSION_NUM:
945 return put_user(sg_version_num, ip);
946 case SG_GET_ACCESS_COUNT:
947 /* faked - we don't have a real access count anymore */
948 val = (sdp->device ? 1 : 0);
949 return put_user(val, ip);
950 case SG_GET_REQUEST_TABLE:
951 if (!access_ok(VERIFY_WRITE, p, SZ_SG_REQ_INFO * SG_MAX_QUEUE))
952 return -EFAULT;
953 else {
cb59e842005-04-02 13:51:23 -0600954 sg_req_info_t *rinfo;
955 unsigned int ms;
956
957 rinfo = kmalloc(SZ_SG_REQ_INFO * SG_MAX_QUEUE,
958 GFP_KERNEL);
959 if (!rinfo)
960 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 read_lock_irqsave(&sfp->rq_list_lock, iflags);
962 for (srp = sfp->headrp, val = 0; val < SG_MAX_QUEUE;
963 ++val, srp = srp ? srp->nextrp : srp) {
964 memset(&rinfo[val], 0, SZ_SG_REQ_INFO);
965 if (srp) {
966 rinfo[val].req_state = srp->done + 1;
967 rinfo[val].problem =
968 srp->header.masked_status &
969 srp->header.host_status &
970 srp->header.driver_status;
cb59e842005-04-02 13:51:23 -0600971 if (srp->done)
972 rinfo[val].duration =
973 srp->header.duration;
974 else {
975 ms = jiffies_to_msecs(jiffies);
976 rinfo[val].duration =
977 (ms > srp->header.duration) ?
978 (ms - srp->header.duration) : 0;
979 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 rinfo[val].orphan = srp->orphan;
cb59e842005-04-02 13:51:23 -0600981 rinfo[val].sg_io_owned =
982 srp->sg_io_owned;
983 rinfo[val].pack_id =
984 srp->header.pack_id;
985 rinfo[val].usr_ptr =
986 srp->header.usr_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 }
988 }
989 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
cb59e842005-04-02 13:51:23 -0600990 result = __copy_to_user(p, rinfo,
991 SZ_SG_REQ_INFO * SG_MAX_QUEUE);
992 result = result ? -EFAULT : 0;
993 kfree(rinfo);
994 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 }
996 case SG_EMULATED_HOST:
997 if (sdp->detached)
998 return -ENODEV;
999 return put_user(sdp->device->host->hostt->emulated, ip);
1000 case SG_SCSI_RESET:
1001 if (sdp->detached)
1002 return -ENODEV;
1003 if (filp->f_flags & O_NONBLOCK) {
James Bottomley939647e2005-09-18 15:05:20 -05001004 if (scsi_host_in_recovery(sdp->device->host))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 return -EBUSY;
1006 } else if (!scsi_block_when_processing_errors(sdp->device))
1007 return -EBUSY;
1008 result = get_user(val, ip);
1009 if (result)
1010 return result;
1011 if (SG_SCSI_RESET_NOTHING == val)
1012 return 0;
1013 switch (val) {
1014 case SG_SCSI_RESET_DEVICE:
1015 val = SCSI_TRY_RESET_DEVICE;
1016 break;
Brian King39120e12008-07-01 13:03:19 -05001017 case SG_SCSI_RESET_TARGET:
1018 val = SCSI_TRY_RESET_TARGET;
1019 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 case SG_SCSI_RESET_BUS:
1021 val = SCSI_TRY_RESET_BUS;
1022 break;
1023 case SG_SCSI_RESET_HOST:
1024 val = SCSI_TRY_RESET_HOST;
1025 break;
1026 default:
1027 return -EINVAL;
1028 }
1029 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
1030 return -EACCES;
1031 return (scsi_reset_provider(sdp->device, val) ==
1032 SUCCESS) ? 0 : -EIO;
1033 case SCSI_IOCTL_SEND_COMMAND:
1034 if (sdp->detached)
1035 return -ENODEV;
1036 if (read_only) {
1037 unsigned char opcode = WRITE_6;
1038 Scsi_Ioctl_Command __user *siocp = p;
1039
1040 if (copy_from_user(&opcode, siocp->data, 1))
1041 return -EFAULT;
FUJITA Tomonori14e507b2008-07-26 18:03:24 +09001042 if (sg_allow_access(filp, &opcode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 return -EPERM;
1044 }
Al Viroe915e872008-09-02 17:16:41 -04001045 return sg_scsi_ioctl(sdp->device->request_queue, NULL, filp->f_mode, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 case SG_SET_DEBUG:
1047 result = get_user(val, ip);
1048 if (result)
1049 return result;
1050 sdp->sgdebug = (char) val;
1051 return 0;
1052 case SCSI_IOCTL_GET_IDLUN:
1053 case SCSI_IOCTL_GET_BUS_NUMBER:
1054 case SCSI_IOCTL_PROBE_HOST:
1055 case SG_GET_TRANSFORM:
1056 if (sdp->detached)
1057 return -ENODEV;
1058 return scsi_ioctl(sdp->device, cmd_in, p);
Alan Stern44ec9542007-02-20 11:01:57 -05001059 case BLKSECTGET:
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001060 return put_user(queue_max_sectors(sdp->device->request_queue) * 512,
Alan Stern44ec9542007-02-20 11:01:57 -05001061 ip);
Christof Schmitt6da127a2008-01-11 10:09:43 +01001062 case BLKTRACESETUP:
1063 return blk_trace_setup(sdp->device->request_queue,
1064 sdp->disk->disk_name,
Martin Peschke76e3a192009-01-30 15:46:23 +01001065 MKDEV(SCSI_GENERIC_MAJOR, sdp->index),
Shawn Dud0deef52009-04-14 13:58:56 +08001066 NULL,
Christof Schmitt6da127a2008-01-11 10:09:43 +01001067 (char *)arg);
1068 case BLKTRACESTART:
1069 return blk_trace_startstop(sdp->device->request_queue, 1);
1070 case BLKTRACESTOP:
1071 return blk_trace_startstop(sdp->device->request_queue, 0);
1072 case BLKTRACETEARDOWN:
1073 return blk_trace_remove(sdp->device->request_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 default:
1075 if (read_only)
1076 return -EPERM; /* don't know so take safe approach */
1077 return scsi_ioctl(sdp->device, cmd_in, p);
1078 }
1079}
1080
1081#ifdef CONFIG_COMPAT
1082static long sg_compat_ioctl(struct file *filp, unsigned int cmd_in, unsigned long arg)
1083{
1084 Sg_device *sdp;
1085 Sg_fd *sfp;
1086 struct scsi_device *sdev;
1087
1088 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
1089 return -ENXIO;
1090
1091 sdev = sdp->device;
1092 if (sdev->host->hostt->compat_ioctl) {
1093 int ret;
1094
1095 ret = sdev->host->hostt->compat_ioctl(sdev, cmd_in, (void __user *)arg);
1096
1097 return ret;
1098 }
1099
1100 return -ENOIOCTLCMD;
1101}
1102#endif
1103
1104static unsigned int
1105sg_poll(struct file *filp, poll_table * wait)
1106{
1107 unsigned int res = 0;
1108 Sg_device *sdp;
1109 Sg_fd *sfp;
1110 Sg_request *srp;
1111 int count = 0;
1112 unsigned long iflags;
1113
1114 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp))
1115 || sfp->closed)
1116 return POLLERR;
1117 poll_wait(filp, &sfp->read_wait, wait);
1118 read_lock_irqsave(&sfp->rq_list_lock, iflags);
1119 for (srp = sfp->headrp; srp; srp = srp->nextrp) {
1120 /* if any read waiting, flag it */
1121 if ((0 == res) && (1 == srp->done) && (!srp->sg_io_owned))
1122 res = POLLIN | POLLRDNORM;
1123 ++count;
1124 }
1125 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1126
1127 if (sdp->detached)
1128 res |= POLLHUP;
1129 else if (!sfp->cmd_q) {
1130 if (0 == count)
1131 res |= POLLOUT | POLLWRNORM;
1132 } else if (count < SG_MAX_QUEUE)
1133 res |= POLLOUT | POLLWRNORM;
1134 SCSI_LOG_TIMEOUT(3, printk("sg_poll: %s, res=0x%x\n",
1135 sdp->disk->disk_name, (int) res));
1136 return res;
1137}
1138
1139static int
1140sg_fasync(int fd, struct file *filp, int mode)
1141{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 Sg_device *sdp;
1143 Sg_fd *sfp;
1144
1145 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
1146 return -ENXIO;
1147 SCSI_LOG_TIMEOUT(3, printk("sg_fasync: %s, mode=%d\n",
1148 sdp->disk->disk_name, mode));
1149
Jonathan Corbet60aa4922009-02-01 14:52:56 -07001150 return fasync_helper(fd, filp, mode, &sfp->async_qp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151}
1152
Nick Piggina13ff0b2008-02-07 18:46:06 -08001153static int
1154sg_vma_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155{
1156 Sg_fd *sfp;
Mike Christied6b10342005-11-08 04:06:41 -06001157 unsigned long offset, len, sa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 Sg_scatter_hold *rsv_schp;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001159 int k, length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
1161 if ((NULL == vma) || (!(sfp = (Sg_fd *) vma->vm_private_data)))
Nick Piggina13ff0b2008-02-07 18:46:06 -08001162 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 rsv_schp = &sfp->reserve;
Nick Piggina13ff0b2008-02-07 18:46:06 -08001164 offset = vmf->pgoff << PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 if (offset >= rsv_schp->bufflen)
Nick Piggina13ff0b2008-02-07 18:46:06 -08001166 return VM_FAULT_SIGBUS;
1167 SCSI_LOG_TIMEOUT(3, printk("sg_vma_fault: offset=%lu, scatg=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 offset, rsv_schp->k_use_sg));
Mike Christied6b10342005-11-08 04:06:41 -06001169 sa = vma->vm_start;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001170 length = 1 << (PAGE_SHIFT + rsv_schp->page_order);
1171 for (k = 0; k < rsv_schp->k_use_sg && sa < vma->vm_end; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06001172 len = vma->vm_end - sa;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001173 len = (len < length) ? len : length;
Mike Christied6b10342005-11-08 04:06:41 -06001174 if (offset < len) {
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001175 struct page *page = nth_page(rsv_schp->pages[k],
1176 offset >> PAGE_SHIFT);
Mike Christied6b10342005-11-08 04:06:41 -06001177 get_page(page); /* increment page count */
Nick Piggina13ff0b2008-02-07 18:46:06 -08001178 vmf->page = page;
1179 return 0; /* success */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 }
Mike Christied6b10342005-11-08 04:06:41 -06001181 sa += len;
1182 offset -= len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 }
Mike Christied6b10342005-11-08 04:06:41 -06001184
Nick Piggina13ff0b2008-02-07 18:46:06 -08001185 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186}
1187
1188static struct vm_operations_struct sg_mmap_vm_ops = {
Nick Piggina13ff0b2008-02-07 18:46:06 -08001189 .fault = sg_vma_fault,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190};
1191
1192static int
1193sg_mmap(struct file *filp, struct vm_area_struct *vma)
1194{
1195 Sg_fd *sfp;
Mike Christied6b10342005-11-08 04:06:41 -06001196 unsigned long req_sz, len, sa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 Sg_scatter_hold *rsv_schp;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001198 int k, length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
1200 if ((!filp) || (!vma) || (!(sfp = (Sg_fd *) filp->private_data)))
1201 return -ENXIO;
cb59e842005-04-02 13:51:23 -06001202 req_sz = vma->vm_end - vma->vm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 SCSI_LOG_TIMEOUT(3, printk("sg_mmap starting, vm_start=%p, len=%d\n",
1204 (void *) vma->vm_start, (int) req_sz));
1205 if (vma->vm_pgoff)
1206 return -EINVAL; /* want no offset */
1207 rsv_schp = &sfp->reserve;
1208 if (req_sz > rsv_schp->bufflen)
1209 return -ENOMEM; /* cannot map more than reserved buffer */
1210
Mike Christied6b10342005-11-08 04:06:41 -06001211 sa = vma->vm_start;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001212 length = 1 << (PAGE_SHIFT + rsv_schp->page_order);
1213 for (k = 0; k < rsv_schp->k_use_sg && sa < vma->vm_end; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06001214 len = vma->vm_end - sa;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001215 len = (len < length) ? len : length;
Mike Christied6b10342005-11-08 04:06:41 -06001216 sa += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 }
Mike Christied6b10342005-11-08 04:06:41 -06001218
Nick Pigginf9aed0e2006-03-22 00:08:30 -08001219 sfp->mmap_called = 1;
Douglas Gilbert1c8e71d2005-09-09 17:18:57 +10001220 vma->vm_flags |= VM_RESERVED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 vma->vm_private_data = sfp;
1222 vma->vm_ops = &sg_mmap_vm_ops;
1223 return 0;
1224}
1225
FUJITA Tomonoric96952e2009-02-04 11:36:27 +09001226static void sg_rq_end_io_usercontext(struct work_struct *work)
1227{
1228 struct sg_request *srp = container_of(work, struct sg_request, ew.work);
1229 struct sg_fd *sfp = srp->parentfp;
1230
1231 sg_finish_rem_req(srp);
1232 kref_put(&sfp->f_ref, sg_remove_sfp);
1233}
1234
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001235/*
1236 * This function is a "bottom half" handler that is called by the mid
1237 * level when a command is completed (or has failed).
1238 */
1239static void sg_rq_end_io(struct request *rq, int uptodate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240{
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001241 struct sg_request *srp = rq->end_io_data;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001242 Sg_device *sdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 Sg_fd *sfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 unsigned long iflags;
cb59e842005-04-02 13:51:23 -06001245 unsigned int ms;
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001246 char *sense;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001247 int result, resid, done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
Tony Battersbyc6517b792009-01-21 14:45:50 -05001249 if (WARN_ON(srp->done != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 return;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001251
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 sfp = srp->parentfp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001253 if (WARN_ON(sfp == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 return;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001255
1256 sdp = sfp->parentdp;
1257 if (unlikely(sdp->detached))
1258 printk(KERN_INFO "sg_rq_end_io: device detached\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001260 sense = rq->sense;
1261 result = rq->errors;
Tejun Heoc3a4d782009-05-07 22:24:37 +09001262 resid = rq->resid_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
1264 SCSI_LOG_TIMEOUT(4, printk("sg_cmd_done: %s, pack_id=%d, res=0x%x\n",
Mike Christied6b10342005-11-08 04:06:41 -06001265 sdp->disk->disk_name, srp->header.pack_id, result));
1266 srp->header.resid = resid;
cb59e842005-04-02 13:51:23 -06001267 ms = jiffies_to_msecs(jiffies);
1268 srp->header.duration = (ms > srp->header.duration) ?
1269 (ms - srp->header.duration) : 0;
Mike Christied6b10342005-11-08 04:06:41 -06001270 if (0 != result) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 struct scsi_sense_hdr sshdr;
1272
Mike Christied6b10342005-11-08 04:06:41 -06001273 srp->header.status = 0xff & result;
1274 srp->header.masked_status = status_byte(result);
1275 srp->header.msg_status = msg_byte(result);
1276 srp->header.host_status = host_byte(result);
1277 srp->header.driver_status = driver_byte(result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 if ((sdp->sgdebug > 0) &&
1279 ((CHECK_CONDITION == srp->header.masked_status) ||
1280 (COMMAND_TERMINATED == srp->header.masked_status)))
Mike Christied6b10342005-11-08 04:06:41 -06001281 __scsi_print_sense("sg_cmd_done", sense,
1282 SCSI_SENSE_BUFFERSIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
1284 /* Following if statement is a patch supplied by Eric Youngdale */
Mike Christied6b10342005-11-08 04:06:41 -06001285 if (driver_byte(result) != 0
1286 && scsi_normalize_sense(sense, SCSI_SENSE_BUFFERSIZE, &sshdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 && !scsi_sense_is_deferred(&sshdr)
1288 && sshdr.sense_key == UNIT_ATTENTION
1289 && sdp->device->removable) {
1290 /* Detected possible disc change. Set the bit - this */
1291 /* may be used if there are filesystems using this device */
1292 sdp->device->changed = 1;
1293 }
1294 }
1295 /* Rely on write phase to clean out srp status values, so no "else" */
1296
Tony Battersbyc6517b792009-01-21 14:45:50 -05001297 write_lock_irqsave(&sfp->rq_list_lock, iflags);
1298 if (unlikely(srp->orphan)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 if (sfp->keep_orphan)
1300 srp->sg_io_owned = 0;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001301 else
1302 done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05001304 srp->done = done;
1305 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1306
1307 if (likely(done)) {
1308 /* Now wake up any sg_read() that is waiting for this
1309 * packet.
1310 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 wake_up_interruptible(&sfp->read_wait);
Tony Battersbyc6517b792009-01-21 14:45:50 -05001312 kill_fasync(&sfp->async_qp, SIGPOLL, POLL_IN);
FUJITA Tomonoric96952e2009-02-04 11:36:27 +09001313 kref_put(&sfp->f_ref, sg_remove_sfp);
FUJITA Tomonori015640e2009-04-03 19:28:06 +09001314 } else {
1315 INIT_WORK(&srp->ew.work, sg_rq_end_io_usercontext);
1316 schedule_work(&srp->ew.work);
1317 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318}
1319
1320static struct file_operations sg_fops = {
1321 .owner = THIS_MODULE,
1322 .read = sg_read,
1323 .write = sg_write,
1324 .poll = sg_poll,
1325 .ioctl = sg_ioctl,
1326#ifdef CONFIG_COMPAT
1327 .compat_ioctl = sg_compat_ioctl,
1328#endif
1329 .open = sg_open,
1330 .mmap = sg_mmap,
1331 .release = sg_release,
1332 .fasync = sg_fasync,
1333};
1334
gregkh@suse.ded2538782005-03-23 09:55:22 -08001335static struct class *sg_sysfs_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
1337static int sg_sysfs_valid = 0;
1338
James Bottomley7c07d612007-08-05 13:36:11 -05001339static Sg_device *sg_alloc(struct gendisk *disk, struct scsi_device *scsidp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340{
Mike Christied6b10342005-11-08 04:06:41 -06001341 struct request_queue *q = scsidp->request_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 Sg_device *sdp;
1343 unsigned long iflags;
James Bottomley7c07d612007-08-05 13:36:11 -05001344 int error;
1345 u32 k;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
Jes Sorensen24669f752006-01-16 10:31:18 -05001347 sdp = kzalloc(sizeof(Sg_device), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 if (!sdp) {
1349 printk(KERN_WARNING "kmalloc Sg_device failure\n");
James Bottomley7c07d612007-08-05 13:36:11 -05001350 return ERR_PTR(-ENOMEM);
1351 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05001352
James Bottomley7c07d612007-08-05 13:36:11 -05001353 if (!idr_pre_get(&sg_index_idr, GFP_KERNEL)) {
1354 printk(KERN_WARNING "idr expansion Sg_device failure\n");
Tony Battersbyc6517b792009-01-21 14:45:50 -05001355 error = -ENOMEM;
James Bottomley7c07d612007-08-05 13:36:11 -05001356 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 }
1358
James Bottomley7c07d612007-08-05 13:36:11 -05001359 write_lock_irqsave(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
Tony Battersbyc6517b792009-01-21 14:45:50 -05001361 error = idr_get_new(&sg_index_idr, sdp, &k);
James Bottomley7c07d612007-08-05 13:36:11 -05001362 if (error) {
Tony Battersbyc6517b792009-01-21 14:45:50 -05001363 write_unlock_irqrestore(&sg_index_lock, iflags);
James Bottomley7c07d612007-08-05 13:36:11 -05001364 printk(KERN_WARNING "idr allocation Sg_device failure: %d\n",
1365 error);
1366 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 }
1368
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 if (unlikely(k >= SG_MAX_DEVS))
1370 goto overflow;
1371
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 SCSI_LOG_TIMEOUT(3, printk("sg_alloc: dev=%d \n", k));
1373 sprintf(disk->disk_name, "sg%d", k);
1374 disk->first_minor = k;
1375 sdp->disk = disk;
1376 sdp->device = scsidp;
FUJITA Tomonori3442f802009-02-16 13:26:53 +09001377 INIT_LIST_HEAD(&sdp->sfds);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 init_waitqueue_head(&sdp->o_excl_wait);
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001379 sdp->sg_tablesize = min(queue_max_hw_segments(q),
1380 queue_max_phys_segments(q));
James Bottomley7c07d612007-08-05 13:36:11 -05001381 sdp->index = k;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001382 kref_init(&sdp->d_ref);
1383
1384 write_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
James Bottomley7c07d612007-08-05 13:36:11 -05001386 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 out:
James Bottomley7c07d612007-08-05 13:36:11 -05001388 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 kfree(sdp);
James Bottomley7c07d612007-08-05 13:36:11 -05001390 return ERR_PTR(error);
1391 }
1392 return sdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
1394 overflow:
Tony Battersbyc6517b792009-01-21 14:45:50 -05001395 idr_remove(&sg_index_idr, k);
1396 write_unlock_irqrestore(&sg_index_lock, iflags);
James Bottomley9ccfc752005-10-02 11:45:08 -05001397 sdev_printk(KERN_WARNING, scsidp,
1398 "Unable to attach sg device type=%d, minor "
1399 "number exceeds %d\n", scsidp->type, SG_MAX_DEVS - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 error = -ENODEV;
1401 goto out;
1402}
1403
1404static int
Tony Jonesee959b02008-02-22 00:13:36 +01001405sg_add(struct device *cl_dev, struct class_interface *cl_intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406{
Tony Jonesee959b02008-02-22 00:13:36 +01001407 struct scsi_device *scsidp = to_scsi_device(cl_dev->parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 struct gendisk *disk;
1409 Sg_device *sdp = NULL;
1410 struct cdev * cdev = NULL;
James Bottomley7c07d612007-08-05 13:36:11 -05001411 int error;
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001412 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
1414 disk = alloc_disk(1);
1415 if (!disk) {
1416 printk(KERN_WARNING "alloc_disk failed\n");
1417 return -ENOMEM;
1418 }
1419 disk->major = SCSI_GENERIC_MAJOR;
1420
1421 error = -ENOMEM;
1422 cdev = cdev_alloc();
1423 if (!cdev) {
1424 printk(KERN_WARNING "cdev_alloc failed\n");
1425 goto out;
1426 }
1427 cdev->owner = THIS_MODULE;
1428 cdev->ops = &sg_fops;
1429
James Bottomley7c07d612007-08-05 13:36:11 -05001430 sdp = sg_alloc(disk, scsidp);
1431 if (IS_ERR(sdp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 printk(KERN_WARNING "sg_alloc failed\n");
James Bottomley7c07d612007-08-05 13:36:11 -05001433 error = PTR_ERR(sdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 goto out;
1435 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
James Bottomley7c07d612007-08-05 13:36:11 -05001437 error = cdev_add(cdev, MKDEV(SCSI_GENERIC_MAJOR, sdp->index), 1);
Greg KH5e3c34c2006-01-18 16:17:46 -08001438 if (error)
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001439 goto cdev_add_err;
Greg KH5e3c34c2006-01-18 16:17:46 -08001440
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 sdp->cdev = cdev;
1442 if (sg_sysfs_valid) {
Tony Jonesee959b02008-02-22 00:13:36 +01001443 struct device *sg_class_member;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
Greg Kroah-Hartmand73a1a62008-07-21 20:03:34 -07001445 sg_class_member = device_create(sg_sysfs_class, cl_dev->parent,
1446 MKDEV(SCSI_GENERIC_MAJOR,
1447 sdp->index),
1448 sdp, "%s", disk->disk_name);
FUJITA Tomonorid07e0362008-01-15 13:18:00 +09001449 if (IS_ERR(sg_class_member)) {
1450 printk(KERN_ERR "sg_add: "
Tony Jonesee959b02008-02-22 00:13:36 +01001451 "device_create failed\n");
FUJITA Tomonorid07e0362008-01-15 13:18:00 +09001452 error = PTR_ERR(sg_class_member);
1453 goto cdev_add_err;
1454 }
FUJITA Tomonorid07e0362008-01-15 13:18:00 +09001455 error = sysfs_create_link(&scsidp->sdev_gendev.kobj,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 &sg_class_member->kobj, "generic");
1457 if (error)
1458 printk(KERN_ERR "sg_add: unable to make symlink "
James Bottomley7c07d612007-08-05 13:36:11 -05001459 "'generic' back to sg%d\n", sdp->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 } else
James Bottomley7c07d612007-08-05 13:36:11 -05001461 printk(KERN_WARNING "sg_add: sg_sys Invalid\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
James Bottomley9ccfc752005-10-02 11:45:08 -05001463 sdev_printk(KERN_NOTICE, scsidp,
James Bottomley7c07d612007-08-05 13:36:11 -05001464 "Attached scsi generic sg%d type %d\n", sdp->index,
1465 scsidp->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
Tony Jonesee959b02008-02-22 00:13:36 +01001467 dev_set_drvdata(cl_dev, sdp);
FUJITA Tomonoria24484f2008-01-15 13:17:47 +09001468
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 return 0;
1470
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001471cdev_add_err:
James Bottomley7c07d612007-08-05 13:36:11 -05001472 write_lock_irqsave(&sg_index_lock, iflags);
1473 idr_remove(&sg_index_idr, sdp->index);
1474 write_unlock_irqrestore(&sg_index_lock, iflags);
1475 kfree(sdp);
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001476
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477out:
1478 put_disk(disk);
1479 if (cdev)
1480 cdev_del(cdev);
1481 return error;
1482}
1483
Tony Battersbyc6517b792009-01-21 14:45:50 -05001484static void sg_device_destroy(struct kref *kref)
1485{
1486 struct sg_device *sdp = container_of(kref, struct sg_device, d_ref);
1487 unsigned long flags;
1488
1489 /* CAUTION! Note that the device can still be found via idr_find()
1490 * even though the refcount is 0. Therefore, do idr_remove() BEFORE
1491 * any other cleanup.
1492 */
1493
1494 write_lock_irqsave(&sg_index_lock, flags);
1495 idr_remove(&sg_index_idr, sdp->index);
1496 write_unlock_irqrestore(&sg_index_lock, flags);
1497
1498 SCSI_LOG_TIMEOUT(3,
1499 printk("sg_device_destroy: %s\n",
1500 sdp->disk->disk_name));
1501
1502 put_disk(sdp->disk);
1503 kfree(sdp);
1504}
1505
1506static void sg_remove(struct device *cl_dev, struct class_interface *cl_intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507{
Tony Jonesee959b02008-02-22 00:13:36 +01001508 struct scsi_device *scsidp = to_scsi_device(cl_dev->parent);
1509 Sg_device *sdp = dev_get_drvdata(cl_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 unsigned long iflags;
1511 Sg_fd *sfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
Tony Battersbyc6517b792009-01-21 14:45:50 -05001513 if (!sdp || sdp->detached)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
Tony Battersbyc6517b792009-01-21 14:45:50 -05001516 SCSI_LOG_TIMEOUT(3, printk("sg_remove: %s\n", sdp->disk->disk_name));
1517
1518 /* Need a write lock to set sdp->detached. */
James Bottomley7c07d612007-08-05 13:36:11 -05001519 write_lock_irqsave(&sg_index_lock, iflags);
Tony Battersbyc6517b792009-01-21 14:45:50 -05001520 sdp->detached = 1;
FUJITA Tomonori3442f802009-02-16 13:26:53 +09001521 list_for_each_entry(sfp, &sdp->sfds, sfd_siblings) {
Tony Battersbyc6517b792009-01-21 14:45:50 -05001522 wake_up_interruptible(&sfp->read_wait);
1523 kill_fasync(&sfp->async_qp, SIGPOLL, POLL_HUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 }
James Bottomley7c07d612007-08-05 13:36:11 -05001525 write_unlock_irqrestore(&sg_index_lock, iflags);
1526
1527 sysfs_remove_link(&scsidp->sdev_gendev.kobj, "generic");
Tony Jonesee959b02008-02-22 00:13:36 +01001528 device_destroy(sg_sysfs_class, MKDEV(SCSI_GENERIC_MAJOR, sdp->index));
James Bottomley7c07d612007-08-05 13:36:11 -05001529 cdev_del(sdp->cdev);
1530 sdp->cdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
Tony Battersbyc6517b792009-01-21 14:45:50 -05001532 sg_put_dev(sdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533}
1534
Douglas Gilbert6460e752006-09-20 18:20:49 -04001535module_param_named(scatter_elem_sz, scatter_elem_sz, int, S_IRUGO | S_IWUSR);
1536module_param_named(def_reserved_size, def_reserved_size, int,
1537 S_IRUGO | S_IWUSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538module_param_named(allow_dio, sg_allow_dio, int, S_IRUGO | S_IWUSR);
1539
1540MODULE_AUTHOR("Douglas Gilbert");
1541MODULE_DESCRIPTION("SCSI generic (sg) driver");
1542MODULE_LICENSE("GPL");
1543MODULE_VERSION(SG_VERSION_STR);
Rene Hermanf018fa52006-03-08 00:14:20 -08001544MODULE_ALIAS_CHARDEV_MAJOR(SCSI_GENERIC_MAJOR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
Douglas Gilbert6460e752006-09-20 18:20:49 -04001546MODULE_PARM_DESC(scatter_elem_sz, "scatter gather element "
1547 "size (default: max(SG_SCATTER_SZ, PAGE_SIZE))");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548MODULE_PARM_DESC(def_reserved_size, "size of buffer reserved for each fd");
1549MODULE_PARM_DESC(allow_dio, "allow direct I/O (default: 0 (disallow))");
1550
1551static int __init
1552init_sg(void)
1553{
1554 int rc;
1555
Douglas Gilbert6460e752006-09-20 18:20:49 -04001556 if (scatter_elem_sz < PAGE_SIZE) {
1557 scatter_elem_sz = PAGE_SIZE;
1558 scatter_elem_sz_prev = scatter_elem_sz;
1559 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 if (def_reserved_size >= 0)
1561 sg_big_buff = def_reserved_size;
Douglas Gilbert6460e752006-09-20 18:20:49 -04001562 else
1563 def_reserved_size = sg_big_buff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
1565 rc = register_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0),
1566 SG_MAX_DEVS, "sg");
1567 if (rc)
1568 return rc;
gregkh@suse.ded2538782005-03-23 09:55:22 -08001569 sg_sysfs_class = class_create(THIS_MODULE, "scsi_generic");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 if ( IS_ERR(sg_sysfs_class) ) {
1571 rc = PTR_ERR(sg_sysfs_class);
1572 goto err_out;
1573 }
1574 sg_sysfs_valid = 1;
1575 rc = scsi_register_interface(&sg_interface);
1576 if (0 == rc) {
1577#ifdef CONFIG_SCSI_PROC_FS
1578 sg_proc_init();
1579#endif /* CONFIG_SCSI_PROC_FS */
1580 return 0;
1581 }
gregkh@suse.ded2538782005-03-23 09:55:22 -08001582 class_destroy(sg_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583err_out:
1584 unregister_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0), SG_MAX_DEVS);
1585 return rc;
1586}
1587
1588static void __exit
1589exit_sg(void)
1590{
1591#ifdef CONFIG_SCSI_PROC_FS
1592 sg_proc_cleanup();
1593#endif /* CONFIG_SCSI_PROC_FS */
1594 scsi_unregister_interface(&sg_interface);
gregkh@suse.ded2538782005-03-23 09:55:22 -08001595 class_destroy(sg_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 sg_sysfs_valid = 0;
1597 unregister_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0),
1598 SG_MAX_DEVS);
James Bottomley7c07d612007-08-05 13:36:11 -05001599 idr_destroy(&sg_index_idr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600}
1601
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001602static int sg_start_req(Sg_request *srp, unsigned char *cmd)
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001603{
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001604 int res;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001605 struct request *rq;
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001606 Sg_fd *sfp = srp->parentfp;
1607 sg_io_hdr_t *hp = &srp->header;
1608 int dxfer_len = (int) hp->dxfer_len;
1609 int dxfer_dir = hp->dxfer_direction;
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001610 unsigned int iov_count = hp->iovec_count;
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001611 Sg_scatter_hold *req_schp = &srp->data;
1612 Sg_scatter_hold *rsv_schp = &sfp->reserve;
1613 struct request_queue *q = sfp->parentdp->device->request_queue;
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001614 struct rq_map_data *md, map_data;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001615 int rw = hp->dxfer_direction == SG_DXFER_TO_DEV ? WRITE : READ;
1616
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001617 SCSI_LOG_TIMEOUT(4, printk(KERN_INFO "sg_start_req: dxfer_len=%d\n",
1618 dxfer_len));
1619
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001620 rq = blk_get_request(q, rw, GFP_ATOMIC);
1621 if (!rq)
1622 return -ENOMEM;
1623
1624 memcpy(rq->cmd, cmd, hp->cmd_len);
1625
1626 rq->cmd_len = hp->cmd_len;
1627 rq->cmd_type = REQ_TYPE_BLOCK_PC;
1628
1629 srp->rq = rq;
1630 rq->end_io_data = srp;
1631 rq->sense = srp->sense_b;
1632 rq->retries = SG_DEFAULT_RETRIES;
1633
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 if ((dxfer_len <= 0) || (dxfer_dir == SG_DXFER_NONE))
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001635 return 0;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001636
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001637 if (sg_allow_dio && hp->flags & SG_FLAG_DIRECT_IO &&
1638 dxfer_dir != SG_DXFER_UNKNOWN && !iov_count &&
1639 !sfp->parentdp->device->host->unchecked_isa_dma &&
FUJITA Tomonori01cfcdd2008-08-28 15:05:59 +09001640 blk_rq_aligned(q, hp->dxferp, dxfer_len))
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001641 md = NULL;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001642 else
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001643 md = &map_data;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001644
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001645 if (md) {
1646 if (!sg_res_in_use(sfp) && dxfer_len <= rsv_schp->bufflen)
1647 sg_link_reserve(sfp, srp, dxfer_len);
1648 else {
1649 res = sg_build_indirect(req_schp, sfp, dxfer_len);
1650 if (res)
1651 return res;
1652 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001653
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001654 md->pages = req_schp->pages;
1655 md->page_order = req_schp->page_order;
1656 md->nr_entries = req_schp->k_use_sg;
FUJITA Tomonori56c451f2008-12-18 14:49:37 +09001657 md->offset = 0;
FUJITA Tomonori97ae77a2008-12-18 14:49:38 +09001658 md->null_mapped = hp->dxferp ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001660
FUJITA Tomonori0fdf96b2009-04-03 09:12:20 +09001661 if (iov_count) {
1662 int len, size = sizeof(struct sg_iovec) * iov_count;
1663 struct iovec *iov;
1664
1665 iov = kmalloc(size, GFP_ATOMIC);
1666 if (!iov)
1667 return -ENOMEM;
1668
1669 if (copy_from_user(iov, hp->dxferp, size)) {
1670 kfree(iov);
1671 return -EFAULT;
1672 }
1673
1674 len = iov_length(iov, iov_count);
1675 if (hp->dxfer_len < len) {
1676 iov_count = iov_shorten(iov, iov_count, hp->dxfer_len);
1677 len = hp->dxfer_len;
1678 }
1679
1680 res = blk_rq_map_user_iov(q, rq, md, (struct sg_iovec *)iov,
1681 iov_count,
1682 len, GFP_ATOMIC);
1683 kfree(iov);
1684 } else
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001685 res = blk_rq_map_user(q, rq, md, hp->dxferp,
1686 hp->dxfer_len, GFP_ATOMIC);
1687
1688 if (!res) {
1689 srp->bio = rq->bio;
1690
1691 if (!md) {
1692 req_schp->dio_in_use = 1;
1693 hp->info |= SG_INFO_DIRECT_IO;
1694 }
1695 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001696 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697}
1698
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +09001699static int sg_finish_rem_req(Sg_request * srp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700{
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +09001701 int ret = 0;
1702
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 Sg_fd *sfp = srp->parentfp;
1704 Sg_scatter_hold *req_schp = &srp->data;
1705
1706 SCSI_LOG_TIMEOUT(4, printk("sg_finish_rem_req: res_used=%d\n", (int) srp->res_used));
1707 if (srp->res_used)
1708 sg_unlink_reserve(sfp, srp);
1709 else
1710 sg_remove_scat(req_schp);
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001711
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001712 if (srp->rq) {
1713 if (srp->bio)
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +09001714 ret = blk_rq_unmap_user(srp->bio);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001715
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001716 blk_put_request(srp->rq);
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001717 }
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001718
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 sg_remove_request(sfp, srp);
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +09001720
1721 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722}
1723
1724static int
1725sg_build_sgat(Sg_scatter_hold * schp, const Sg_fd * sfp, int tablesize)
1726{
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001727 int sg_bufflen = tablesize * sizeof(struct page *);
Al Viro2d20eaf2006-02-01 06:31:40 -05001728 gfp_t gfp_flags = GFP_ATOMIC | __GFP_NOWARN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001730 schp->pages = kzalloc(sg_bufflen, gfp_flags);
1731 if (!schp->pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 schp->sglist_len = sg_bufflen;
Mike Christied6b10342005-11-08 04:06:41 -06001734 return tablesize; /* number of scat_gath elements allocated */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735}
1736
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737static int
1738sg_build_indirect(Sg_scatter_hold * schp, Sg_fd * sfp, int buff_size)
1739{
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001740 int ret_sz = 0, i, k, rem_sz, num, mx_sc_elems;
Mike Christied6b10342005-11-08 04:06:41 -06001741 int sg_tablesize = sfp->parentdp->sg_tablesize;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001742 int blk_size = buff_size, order;
1743 gfp_t gfp_mask = GFP_ATOMIC | __GFP_COMP | __GFP_NOWARN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744
Eric Sesterhennfb119932007-05-23 14:41:36 -07001745 if (blk_size < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 return -EFAULT;
1747 if (0 == blk_size)
1748 ++blk_size; /* don't know why */
FUJITA Tomonorib2ed6c62009-02-12 02:42:57 +09001749 /* round request up to next highest SG_SECTOR_SZ byte boundary */
1750 blk_size = ALIGN(blk_size, SG_SECTOR_SZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 SCSI_LOG_TIMEOUT(4, printk("sg_build_indirect: buff_size=%d, blk_size=%d\n",
1752 buff_size, blk_size));
Mike Christied6b10342005-11-08 04:06:41 -06001753
1754 /* N.B. ret_sz carried into this block ... */
1755 mx_sc_elems = sg_build_sgat(schp, sfp, sg_tablesize);
1756 if (mx_sc_elems < 0)
1757 return mx_sc_elems; /* most likely -ENOMEM */
1758
Douglas Gilbert6460e752006-09-20 18:20:49 -04001759 num = scatter_elem_sz;
1760 if (unlikely(num != scatter_elem_sz_prev)) {
1761 if (num < PAGE_SIZE) {
1762 scatter_elem_sz = PAGE_SIZE;
1763 scatter_elem_sz_prev = PAGE_SIZE;
1764 } else
1765 scatter_elem_sz_prev = num;
1766 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001767
1768 if (sfp->low_dma)
1769 gfp_mask |= GFP_DMA;
1770
1771 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
1772 gfp_mask |= __GFP_ZERO;
1773
1774 order = get_order(num);
1775retry:
1776 ret_sz = 1 << (PAGE_SHIFT + order);
1777
1778 for (k = 0, rem_sz = blk_size; rem_sz > 0 && k < mx_sc_elems;
1779 k++, rem_sz -= ret_sz) {
1780
Douglas Gilbert6460e752006-09-20 18:20:49 -04001781 num = (rem_sz > scatter_elem_sz_prev) ?
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001782 scatter_elem_sz_prev : rem_sz;
1783
1784 schp->pages[k] = alloc_pages(gfp_mask, order);
1785 if (!schp->pages[k])
1786 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
Douglas Gilbert6460e752006-09-20 18:20:49 -04001788 if (num == scatter_elem_sz_prev) {
1789 if (unlikely(ret_sz > scatter_elem_sz_prev)) {
1790 scatter_elem_sz = ret_sz;
1791 scatter_elem_sz_prev = ret_sz;
1792 }
1793 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794
Douglas Gilbert7ca63cb2006-10-27 17:47:49 -04001795 SCSI_LOG_TIMEOUT(5, printk("sg_build_indirect: k=%d, num=%d, "
1796 "ret_sz=%d\n", k, num, ret_sz));
Mike Christied6b10342005-11-08 04:06:41 -06001797 } /* end of for loop */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001799 schp->page_order = order;
Mike Christied6b10342005-11-08 04:06:41 -06001800 schp->k_use_sg = k;
Douglas Gilbert7ca63cb2006-10-27 17:47:49 -04001801 SCSI_LOG_TIMEOUT(5, printk("sg_build_indirect: k_use_sg=%d, "
1802 "rem_sz=%d\n", k, rem_sz));
Mike Christied6b10342005-11-08 04:06:41 -06001803
1804 schp->bufflen = blk_size;
1805 if (rem_sz > 0) /* must have failed */
1806 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 return 0;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001808out:
1809 for (i = 0; i < k; i++)
1810 __free_pages(schp->pages[k], order);
1811
1812 if (--order >= 0)
1813 goto retry;
1814
1815 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816}
1817
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818static void
1819sg_remove_scat(Sg_scatter_hold * schp)
1820{
1821 SCSI_LOG_TIMEOUT(4, printk("sg_remove_scat: k_use_sg=%d\n", schp->k_use_sg));
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001822 if (schp->pages && schp->sglist_len > 0) {
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001823 if (!schp->dio_in_use) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 int k;
1825
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001826 for (k = 0; k < schp->k_use_sg && schp->pages[k]; k++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 SCSI_LOG_TIMEOUT(5, printk(
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001828 "sg_remove_scat: k=%d, pg=0x%p\n",
1829 k, schp->pages[k]));
1830 __free_pages(schp->pages[k], schp->page_order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 }
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001832
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001833 kfree(schp->pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 }
Mike Christied6b10342005-11-08 04:06:41 -06001835 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 memset(schp, 0, sizeof (*schp));
1837}
1838
1839static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840sg_read_oxfer(Sg_request * srp, char __user *outp, int num_read_xfer)
1841{
1842 Sg_scatter_hold *schp = &srp->data;
Mike Christied6b10342005-11-08 04:06:41 -06001843 int k, num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844
1845 SCSI_LOG_TIMEOUT(4, printk("sg_read_oxfer: num_read_xfer=%d\n",
1846 num_read_xfer));
1847 if ((!outp) || (num_read_xfer <= 0))
1848 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001850 num = 1 << (PAGE_SHIFT + schp->page_order);
1851 for (k = 0; k < schp->k_use_sg && schp->pages[k]; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06001852 if (num > num_read_xfer) {
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001853 if (__copy_to_user(outp, page_address(schp->pages[k]),
Mike Christied6b10342005-11-08 04:06:41 -06001854 num_read_xfer))
1855 return -EFAULT;
1856 break;
1857 } else {
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001858 if (__copy_to_user(outp, page_address(schp->pages[k]),
Mike Christied6b10342005-11-08 04:06:41 -06001859 num))
1860 return -EFAULT;
1861 num_read_xfer -= num;
1862 if (num_read_xfer <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 break;
Mike Christied6b10342005-11-08 04:06:41 -06001864 outp += num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 }
Mike Christied6b10342005-11-08 04:06:41 -06001867
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 return 0;
1869}
1870
1871static void
1872sg_build_reserve(Sg_fd * sfp, int req_size)
1873{
1874 Sg_scatter_hold *schp = &sfp->reserve;
1875
1876 SCSI_LOG_TIMEOUT(4, printk("sg_build_reserve: req_size=%d\n", req_size));
1877 do {
1878 if (req_size < PAGE_SIZE)
1879 req_size = PAGE_SIZE;
1880 if (0 == sg_build_indirect(schp, sfp, req_size))
1881 return;
1882 else
1883 sg_remove_scat(schp);
1884 req_size >>= 1; /* divide by 2 */
1885 } while (req_size > (PAGE_SIZE / 2));
1886}
1887
1888static void
1889sg_link_reserve(Sg_fd * sfp, Sg_request * srp, int size)
1890{
1891 Sg_scatter_hold *req_schp = &srp->data;
1892 Sg_scatter_hold *rsv_schp = &sfp->reserve;
Mike Christied6b10342005-11-08 04:06:41 -06001893 int k, num, rem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894
1895 srp->res_used = 1;
1896 SCSI_LOG_TIMEOUT(4, printk("sg_link_reserve: size=%d\n", size));
Brian Kingeca7be52006-02-14 12:42:24 -06001897 rem = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001899 num = 1 << (PAGE_SHIFT + rsv_schp->page_order);
1900 for (k = 0; k < rsv_schp->k_use_sg; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06001901 if (rem <= num) {
Mike Christied6b10342005-11-08 04:06:41 -06001902 req_schp->k_use_sg = k + 1;
1903 req_schp->sglist_len = rsv_schp->sglist_len;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001904 req_schp->pages = rsv_schp->pages;
Mike Christied6b10342005-11-08 04:06:41 -06001905
1906 req_schp->bufflen = size;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001907 req_schp->page_order = rsv_schp->page_order;
Mike Christied6b10342005-11-08 04:06:41 -06001908 break;
1909 } else
1910 rem -= num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 }
Mike Christied6b10342005-11-08 04:06:41 -06001912
1913 if (k >= rsv_schp->k_use_sg)
1914 SCSI_LOG_TIMEOUT(1, printk("sg_link_reserve: BAD size\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915}
1916
1917static void
1918sg_unlink_reserve(Sg_fd * sfp, Sg_request * srp)
1919{
1920 Sg_scatter_hold *req_schp = &srp->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921
1922 SCSI_LOG_TIMEOUT(4, printk("sg_unlink_reserve: req->k_use_sg=%d\n",
1923 (int) req_schp->k_use_sg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 req_schp->k_use_sg = 0;
1925 req_schp->bufflen = 0;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001926 req_schp->pages = NULL;
1927 req_schp->page_order = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 req_schp->sglist_len = 0;
1929 sfp->save_scat_len = 0;
1930 srp->res_used = 0;
1931}
1932
1933static Sg_request *
1934sg_get_rq_mark(Sg_fd * sfp, int pack_id)
1935{
1936 Sg_request *resp;
1937 unsigned long iflags;
1938
1939 write_lock_irqsave(&sfp->rq_list_lock, iflags);
1940 for (resp = sfp->headrp; resp; resp = resp->nextrp) {
1941 /* look for requests that are ready + not SG_IO owned */
1942 if ((1 == resp->done) && (!resp->sg_io_owned) &&
1943 ((-1 == pack_id) || (resp->header.pack_id == pack_id))) {
1944 resp->done = 2; /* guard against other readers */
1945 break;
1946 }
1947 }
1948 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1949 return resp;
1950}
1951
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952/* always adds to end of list */
1953static Sg_request *
1954sg_add_request(Sg_fd * sfp)
1955{
1956 int k;
1957 unsigned long iflags;
1958 Sg_request *resp;
1959 Sg_request *rp = sfp->req_arr;
1960
1961 write_lock_irqsave(&sfp->rq_list_lock, iflags);
1962 resp = sfp->headrp;
1963 if (!resp) {
1964 memset(rp, 0, sizeof (Sg_request));
1965 rp->parentfp = sfp;
1966 resp = rp;
1967 sfp->headrp = resp;
1968 } else {
1969 if (0 == sfp->cmd_q)
1970 resp = NULL; /* command queuing disallowed */
1971 else {
1972 for (k = 0; k < SG_MAX_QUEUE; ++k, ++rp) {
1973 if (!rp->parentfp)
1974 break;
1975 }
1976 if (k < SG_MAX_QUEUE) {
1977 memset(rp, 0, sizeof (Sg_request));
1978 rp->parentfp = sfp;
1979 while (resp->nextrp)
1980 resp = resp->nextrp;
1981 resp->nextrp = rp;
1982 resp = rp;
1983 } else
1984 resp = NULL;
1985 }
1986 }
1987 if (resp) {
1988 resp->nextrp = NULL;
cb59e842005-04-02 13:51:23 -06001989 resp->header.duration = jiffies_to_msecs(jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 }
1991 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1992 return resp;
1993}
1994
1995/* Return of 1 for found; 0 for not found */
1996static int
1997sg_remove_request(Sg_fd * sfp, Sg_request * srp)
1998{
1999 Sg_request *prev_rp;
2000 Sg_request *rp;
2001 unsigned long iflags;
2002 int res = 0;
2003
2004 if ((!sfp) || (!srp) || (!sfp->headrp))
2005 return res;
2006 write_lock_irqsave(&sfp->rq_list_lock, iflags);
2007 prev_rp = sfp->headrp;
2008 if (srp == prev_rp) {
2009 sfp->headrp = prev_rp->nextrp;
2010 prev_rp->parentfp = NULL;
2011 res = 1;
2012 } else {
2013 while ((rp = prev_rp->nextrp)) {
2014 if (srp == rp) {
2015 prev_rp->nextrp = rp->nextrp;
2016 rp->parentfp = NULL;
2017 res = 1;
2018 break;
2019 }
2020 prev_rp = rp;
2021 }
2022 }
2023 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
2024 return res;
2025}
2026
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027static Sg_fd *
2028sg_add_sfp(Sg_device * sdp, int dev)
2029{
2030 Sg_fd *sfp;
2031 unsigned long iflags;
Alan Stern44ec9542007-02-20 11:01:57 -05002032 int bufflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
Mike Christied6b10342005-11-08 04:06:41 -06002034 sfp = kzalloc(sizeof(*sfp), GFP_ATOMIC | __GFP_NOWARN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 if (!sfp)
2036 return NULL;
Mike Christied6b10342005-11-08 04:06:41 -06002037
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 init_waitqueue_head(&sfp->read_wait);
2039 rwlock_init(&sfp->rq_list_lock);
2040
Tony Battersbyc6517b792009-01-21 14:45:50 -05002041 kref_init(&sfp->f_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 sfp->timeout = SG_DEFAULT_TIMEOUT;
2043 sfp->timeout_user = SG_DEFAULT_TIMEOUT_USER;
2044 sfp->force_packid = SG_DEF_FORCE_PACK_ID;
2045 sfp->low_dma = (SG_DEF_FORCE_LOW_DMA == 0) ?
2046 sdp->device->host->unchecked_isa_dma : 1;
2047 sfp->cmd_q = SG_DEF_COMMAND_Q;
2048 sfp->keep_orphan = SG_DEF_KEEP_ORPHAN;
2049 sfp->parentdp = sdp;
James Bottomley7c07d612007-08-05 13:36:11 -05002050 write_lock_irqsave(&sg_index_lock, iflags);
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002051 list_add_tail(&sfp->sfd_siblings, &sdp->sfds);
James Bottomley7c07d612007-08-05 13:36:11 -05002052 write_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 SCSI_LOG_TIMEOUT(3, printk("sg_add_sfp: sfp=0x%p\n", sfp));
Douglas Gilbert6460e752006-09-20 18:20:49 -04002054 if (unlikely(sg_big_buff != def_reserved_size))
2055 sg_big_buff = def_reserved_size;
2056
Alan Stern44ec9542007-02-20 11:01:57 -05002057 bufflen = min_t(int, sg_big_buff,
Martin K. Petersenae03bf62009-05-22 17:17:50 -04002058 queue_max_sectors(sdp->device->request_queue) * 512);
Alan Stern44ec9542007-02-20 11:01:57 -05002059 sg_build_reserve(sfp, bufflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 SCSI_LOG_TIMEOUT(3, printk("sg_add_sfp: bufflen=%d, k_use_sg=%d\n",
2061 sfp->reserve.bufflen, sfp->reserve.k_use_sg));
Tony Battersbyc6517b792009-01-21 14:45:50 -05002062
2063 kref_get(&sdp->d_ref);
2064 __module_get(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 return sfp;
2066}
2067
Tony Battersbyc6517b792009-01-21 14:45:50 -05002068static void sg_remove_sfp_usercontext(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069{
Tony Battersbyc6517b792009-01-21 14:45:50 -05002070 struct sg_fd *sfp = container_of(work, struct sg_fd, ew.work);
2071 struct sg_device *sdp = sfp->parentdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
Tony Battersbyc6517b792009-01-21 14:45:50 -05002073 /* Cleanup any responses which were never read(). */
2074 while (sfp->headrp)
2075 sg_finish_rem_req(sfp->headrp);
2076
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 if (sfp->reserve.bufflen > 0) {
Tony Battersbyc6517b792009-01-21 14:45:50 -05002078 SCSI_LOG_TIMEOUT(6,
2079 printk("sg_remove_sfp: bufflen=%d, k_use_sg=%d\n",
2080 (int) sfp->reserve.bufflen,
2081 (int) sfp->reserve.k_use_sg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 sg_remove_scat(&sfp->reserve);
2083 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05002084
2085 SCSI_LOG_TIMEOUT(6,
2086 printk("sg_remove_sfp: %s, sfp=0x%p\n",
2087 sdp->disk->disk_name,
2088 sfp));
Mike Christied6b10342005-11-08 04:06:41 -06002089 kfree(sfp);
Tony Battersbyc6517b792009-01-21 14:45:50 -05002090
2091 scsi_device_put(sdp->device);
2092 sg_put_dev(sdp);
2093 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094}
2095
Tony Battersbyc6517b792009-01-21 14:45:50 -05002096static void sg_remove_sfp(struct kref *kref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097{
Tony Battersbyc6517b792009-01-21 14:45:50 -05002098 struct sg_fd *sfp = container_of(kref, struct sg_fd, f_ref);
2099 struct sg_device *sdp = sfp->parentdp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002100 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101
Tony Battersbyc6517b792009-01-21 14:45:50 -05002102 write_lock_irqsave(&sg_index_lock, iflags);
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002103 list_del(&sfp->sfd_siblings);
Tony Battersbyc6517b792009-01-21 14:45:50 -05002104 write_unlock_irqrestore(&sg_index_lock, iflags);
2105 wake_up_interruptible(&sdp->o_excl_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
FUJITA Tomonori015640e2009-04-03 19:28:06 +09002107 INIT_WORK(&sfp->ew.work, sg_remove_sfp_usercontext);
2108 schedule_work(&sfp->ew.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109}
2110
2111static int
2112sg_res_in_use(Sg_fd * sfp)
2113{
2114 const Sg_request *srp;
2115 unsigned long iflags;
2116
2117 read_lock_irqsave(&sfp->rq_list_lock, iflags);
2118 for (srp = sfp->headrp; srp; srp = srp->nextrp)
2119 if (srp->res_used)
2120 break;
2121 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
2122 return srp ? 1 : 0;
2123}
2124
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125#ifdef CONFIG_SCSI_PROC_FS
2126static int
James Bottomley7c07d612007-08-05 13:36:11 -05002127sg_idr_max_id(int id, void *p, void *data)
2128{
2129 int *k = data;
2130
2131 if (*k < id)
2132 *k = id;
2133
2134 return 0;
2135}
2136
2137static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138sg_last_dev(void)
2139{
Tony Battersby53474c02008-01-22 15:25:49 -05002140 int k = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 unsigned long iflags;
2142
James Bottomley7c07d612007-08-05 13:36:11 -05002143 read_lock_irqsave(&sg_index_lock, iflags);
2144 idr_for_each(&sg_index_idr, sg_idr_max_id, &k);
2145 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 return k + 1; /* origin 1 */
2147}
2148#endif
2149
Tony Battersbyc6517b792009-01-21 14:45:50 -05002150/* must be called with sg_index_lock held */
2151static Sg_device *sg_lookup_dev(int dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152{
Tony Battersbyc6517b792009-01-21 14:45:50 -05002153 return idr_find(&sg_index_idr, dev);
2154}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
Tony Battersbyc6517b792009-01-21 14:45:50 -05002156static Sg_device *sg_get_dev(int dev)
2157{
2158 struct sg_device *sdp;
2159 unsigned long flags;
2160
2161 read_lock_irqsave(&sg_index_lock, flags);
2162 sdp = sg_lookup_dev(dev);
2163 if (!sdp)
2164 sdp = ERR_PTR(-ENXIO);
2165 else if (sdp->detached) {
2166 /* If sdp->detached, then the refcount may already be 0, in
2167 * which case it would be a bug to do kref_get().
2168 */
2169 sdp = ERR_PTR(-ENODEV);
2170 } else
2171 kref_get(&sdp->d_ref);
2172 read_unlock_irqrestore(&sg_index_lock, flags);
James Bottomley7c07d612007-08-05 13:36:11 -05002173
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 return sdp;
2175}
2176
Tony Battersbyc6517b792009-01-21 14:45:50 -05002177static void sg_put_dev(struct sg_device *sdp)
2178{
2179 kref_put(&sdp->d_ref, sg_device_destroy);
2180}
2181
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182#ifdef CONFIG_SCSI_PROC_FS
2183
2184static struct proc_dir_entry *sg_proc_sgp = NULL;
2185
2186static char sg_proc_sg_dirname[] = "scsi/sg";
2187
2188static int sg_proc_seq_show_int(struct seq_file *s, void *v);
2189
2190static int sg_proc_single_open_adio(struct inode *inode, struct file *file);
2191static ssize_t sg_proc_write_adio(struct file *filp, const char __user *buffer,
2192 size_t count, loff_t *off);
2193static struct file_operations adio_fops = {
2194 /* .owner, .read and .llseek added in sg_proc_init() */
2195 .open = sg_proc_single_open_adio,
2196 .write = sg_proc_write_adio,
2197 .release = single_release,
2198};
2199
2200static int sg_proc_single_open_dressz(struct inode *inode, struct file *file);
2201static ssize_t sg_proc_write_dressz(struct file *filp,
2202 const char __user *buffer, size_t count, loff_t *off);
2203static struct file_operations dressz_fops = {
2204 .open = sg_proc_single_open_dressz,
2205 .write = sg_proc_write_dressz,
2206 .release = single_release,
2207};
2208
2209static int sg_proc_seq_show_version(struct seq_file *s, void *v);
2210static int sg_proc_single_open_version(struct inode *inode, struct file *file);
2211static struct file_operations version_fops = {
2212 .open = sg_proc_single_open_version,
2213 .release = single_release,
2214};
2215
2216static int sg_proc_seq_show_devhdr(struct seq_file *s, void *v);
2217static int sg_proc_single_open_devhdr(struct inode *inode, struct file *file);
2218static struct file_operations devhdr_fops = {
2219 .open = sg_proc_single_open_devhdr,
2220 .release = single_release,
2221};
2222
2223static int sg_proc_seq_show_dev(struct seq_file *s, void *v);
2224static int sg_proc_open_dev(struct inode *inode, struct file *file);
2225static void * dev_seq_start(struct seq_file *s, loff_t *pos);
2226static void * dev_seq_next(struct seq_file *s, void *v, loff_t *pos);
2227static void dev_seq_stop(struct seq_file *s, void *v);
2228static struct file_operations dev_fops = {
2229 .open = sg_proc_open_dev,
2230 .release = seq_release,
2231};
2232static struct seq_operations dev_seq_ops = {
2233 .start = dev_seq_start,
2234 .next = dev_seq_next,
2235 .stop = dev_seq_stop,
2236 .show = sg_proc_seq_show_dev,
2237};
2238
2239static int sg_proc_seq_show_devstrs(struct seq_file *s, void *v);
2240static int sg_proc_open_devstrs(struct inode *inode, struct file *file);
2241static struct file_operations devstrs_fops = {
2242 .open = sg_proc_open_devstrs,
2243 .release = seq_release,
2244};
2245static struct seq_operations devstrs_seq_ops = {
2246 .start = dev_seq_start,
2247 .next = dev_seq_next,
2248 .stop = dev_seq_stop,
2249 .show = sg_proc_seq_show_devstrs,
2250};
2251
2252static int sg_proc_seq_show_debug(struct seq_file *s, void *v);
2253static int sg_proc_open_debug(struct inode *inode, struct file *file);
2254static struct file_operations debug_fops = {
2255 .open = sg_proc_open_debug,
2256 .release = seq_release,
2257};
2258static struct seq_operations debug_seq_ops = {
2259 .start = dev_seq_start,
2260 .next = dev_seq_next,
2261 .stop = dev_seq_stop,
2262 .show = sg_proc_seq_show_debug,
2263};
2264
2265
2266struct sg_proc_leaf {
2267 const char * name;
2268 struct file_operations * fops;
2269};
2270
2271static struct sg_proc_leaf sg_proc_leaf_arr[] = {
2272 {"allow_dio", &adio_fops},
2273 {"debug", &debug_fops},
2274 {"def_reserved_size", &dressz_fops},
2275 {"device_hdr", &devhdr_fops},
2276 {"devices", &dev_fops},
2277 {"device_strs", &devstrs_fops},
2278 {"version", &version_fops}
2279};
2280
2281static int
2282sg_proc_init(void)
2283{
2284 int k, mask;
Tobias Klauser6391a112006-06-08 22:23:48 -07002285 int num_leaves = ARRAY_SIZE(sg_proc_leaf_arr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 struct sg_proc_leaf * leaf;
2287
Al Viro66600222005-09-28 22:32:57 +01002288 sg_proc_sgp = proc_mkdir(sg_proc_sg_dirname, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 if (!sg_proc_sgp)
2290 return 1;
2291 for (k = 0; k < num_leaves; ++k) {
2292 leaf = &sg_proc_leaf_arr[k];
2293 mask = leaf->fops->write ? S_IRUGO | S_IWUSR : S_IRUGO;
Denis V. Luneva9739092008-04-29 01:02:17 -07002294 leaf->fops->owner = THIS_MODULE;
2295 leaf->fops->read = seq_read;
2296 leaf->fops->llseek = seq_lseek;
2297 proc_create(leaf->name, mask, sg_proc_sgp, leaf->fops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 }
2299 return 0;
2300}
2301
2302static void
2303sg_proc_cleanup(void)
2304{
2305 int k;
Tobias Klauser6391a112006-06-08 22:23:48 -07002306 int num_leaves = ARRAY_SIZE(sg_proc_leaf_arr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307
2308 if (!sg_proc_sgp)
2309 return;
2310 for (k = 0; k < num_leaves; ++k)
2311 remove_proc_entry(sg_proc_leaf_arr[k].name, sg_proc_sgp);
2312 remove_proc_entry(sg_proc_sg_dirname, NULL);
2313}
2314
2315
2316static int sg_proc_seq_show_int(struct seq_file *s, void *v)
2317{
2318 seq_printf(s, "%d\n", *((int *)s->private));
2319 return 0;
2320}
2321
2322static int sg_proc_single_open_adio(struct inode *inode, struct file *file)
2323{
2324 return single_open(file, sg_proc_seq_show_int, &sg_allow_dio);
2325}
2326
2327static ssize_t
2328sg_proc_write_adio(struct file *filp, const char __user *buffer,
2329 size_t count, loff_t *off)
2330{
2331 int num;
2332 char buff[11];
2333
2334 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
2335 return -EACCES;
2336 num = (count < 10) ? count : 10;
2337 if (copy_from_user(buff, buffer, num))
2338 return -EFAULT;
2339 buff[num] = '\0';
2340 sg_allow_dio = simple_strtoul(buff, NULL, 10) ? 1 : 0;
2341 return count;
2342}
2343
2344static int sg_proc_single_open_dressz(struct inode *inode, struct file *file)
2345{
2346 return single_open(file, sg_proc_seq_show_int, &sg_big_buff);
2347}
2348
2349static ssize_t
2350sg_proc_write_dressz(struct file *filp, const char __user *buffer,
2351 size_t count, loff_t *off)
2352{
2353 int num;
2354 unsigned long k = ULONG_MAX;
2355 char buff[11];
2356
2357 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
2358 return -EACCES;
2359 num = (count < 10) ? count : 10;
2360 if (copy_from_user(buff, buffer, num))
2361 return -EFAULT;
2362 buff[num] = '\0';
2363 k = simple_strtoul(buff, NULL, 10);
2364 if (k <= 1048576) { /* limit "big buff" to 1 MB */
2365 sg_big_buff = k;
2366 return count;
2367 }
2368 return -ERANGE;
2369}
2370
2371static int sg_proc_seq_show_version(struct seq_file *s, void *v)
2372{
2373 seq_printf(s, "%d\t%s [%s]\n", sg_version_num, SG_VERSION_STR,
2374 sg_version_date);
2375 return 0;
2376}
2377
2378static int sg_proc_single_open_version(struct inode *inode, struct file *file)
2379{
2380 return single_open(file, sg_proc_seq_show_version, NULL);
2381}
2382
2383static int sg_proc_seq_show_devhdr(struct seq_file *s, void *v)
2384{
2385 seq_printf(s, "host\tchan\tid\tlun\ttype\topens\tqdepth\tbusy\t"
2386 "online\n");
2387 return 0;
2388}
2389
2390static int sg_proc_single_open_devhdr(struct inode *inode, struct file *file)
2391{
2392 return single_open(file, sg_proc_seq_show_devhdr, NULL);
2393}
2394
2395struct sg_proc_deviter {
2396 loff_t index;
2397 size_t max;
2398};
2399
2400static void * dev_seq_start(struct seq_file *s, loff_t *pos)
2401{
2402 struct sg_proc_deviter * it = kmalloc(sizeof(*it), GFP_KERNEL);
2403
Jan Blunck729d70f2005-08-27 11:07:52 -07002404 s->private = it;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 if (! it)
2406 return NULL;
Jan Blunck729d70f2005-08-27 11:07:52 -07002407
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 it->index = *pos;
2409 it->max = sg_last_dev();
2410 if (it->index >= it->max)
Jan Blunck729d70f2005-08-27 11:07:52 -07002411 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 return it;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413}
2414
2415static void * dev_seq_next(struct seq_file *s, void *v, loff_t *pos)
2416{
Jan Blunck729d70f2005-08-27 11:07:52 -07002417 struct sg_proc_deviter * it = s->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418
2419 *pos = ++it->index;
2420 return (it->index < it->max) ? it : NULL;
2421}
2422
2423static void dev_seq_stop(struct seq_file *s, void *v)
2424{
Jan Blunck729d70f2005-08-27 11:07:52 -07002425 kfree(s->private);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426}
2427
2428static int sg_proc_open_dev(struct inode *inode, struct file *file)
2429{
2430 return seq_open(file, &dev_seq_ops);
2431}
2432
2433static int sg_proc_seq_show_dev(struct seq_file *s, void *v)
2434{
2435 struct sg_proc_deviter * it = (struct sg_proc_deviter *) v;
2436 Sg_device *sdp;
2437 struct scsi_device *scsidp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002438 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439
Tony Battersbyc6517b792009-01-21 14:45:50 -05002440 read_lock_irqsave(&sg_index_lock, iflags);
2441 sdp = it ? sg_lookup_dev(it->index) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 if (sdp && (scsidp = sdp->device) && (!sdp->detached))
2443 seq_printf(s, "%d\t%d\t%d\t%d\t%d\t%d\t%d\t%d\t%d\n",
2444 scsidp->host->host_no, scsidp->channel,
2445 scsidp->id, scsidp->lun, (int) scsidp->type,
2446 1,
2447 (int) scsidp->queue_depth,
2448 (int) scsidp->device_busy,
2449 (int) scsi_device_online(scsidp));
2450 else
2451 seq_printf(s, "-1\t-1\t-1\t-1\t-1\t-1\t-1\t-1\t-1\n");
Tony Battersbyc6517b792009-01-21 14:45:50 -05002452 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 return 0;
2454}
2455
2456static int sg_proc_open_devstrs(struct inode *inode, struct file *file)
2457{
2458 return seq_open(file, &devstrs_seq_ops);
2459}
2460
2461static int sg_proc_seq_show_devstrs(struct seq_file *s, void *v)
2462{
2463 struct sg_proc_deviter * it = (struct sg_proc_deviter *) v;
2464 Sg_device *sdp;
2465 struct scsi_device *scsidp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002466 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467
Tony Battersbyc6517b792009-01-21 14:45:50 -05002468 read_lock_irqsave(&sg_index_lock, iflags);
2469 sdp = it ? sg_lookup_dev(it->index) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470 if (sdp && (scsidp = sdp->device) && (!sdp->detached))
2471 seq_printf(s, "%8.8s\t%16.16s\t%4.4s\n",
2472 scsidp->vendor, scsidp->model, scsidp->rev);
2473 else
2474 seq_printf(s, "<no active device>\n");
Tony Battersbyc6517b792009-01-21 14:45:50 -05002475 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 return 0;
2477}
2478
Tony Battersbyc6517b792009-01-21 14:45:50 -05002479/* must be called while holding sg_index_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480static void sg_proc_debug_helper(struct seq_file *s, Sg_device * sdp)
2481{
2482 int k, m, new_interface, blen, usg;
2483 Sg_request *srp;
2484 Sg_fd *fp;
2485 const sg_io_hdr_t *hp;
2486 const char * cp;
cb59e842005-04-02 13:51:23 -06002487 unsigned int ms;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002489 k = 0;
2490 list_for_each_entry(fp, &sdp->sfds, sfd_siblings) {
2491 k++;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002492 read_lock(&fp->rq_list_lock); /* irqs already disabled */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 seq_printf(s, " FD(%d): timeout=%dms bufflen=%d "
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002494 "(res)sgat=%d low_dma=%d\n", k,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 jiffies_to_msecs(fp->timeout),
2496 fp->reserve.bufflen,
2497 (int) fp->reserve.k_use_sg,
2498 (int) fp->low_dma);
2499 seq_printf(s, " cmd_q=%d f_packid=%d k_orphan=%d closed=%d\n",
2500 (int) fp->cmd_q, (int) fp->force_packid,
2501 (int) fp->keep_orphan, (int) fp->closed);
Tony Battersbyc6517b792009-01-21 14:45:50 -05002502 for (m = 0, srp = fp->headrp;
2503 srp != NULL;
2504 ++m, srp = srp->nextrp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 hp = &srp->header;
2506 new_interface = (hp->interface_id == '\0') ? 0 : 1;
2507 if (srp->res_used) {
2508 if (new_interface &&
2509 (SG_FLAG_MMAP_IO & hp->flags))
2510 cp = " mmap>> ";
2511 else
2512 cp = " rb>> ";
2513 } else {
2514 if (SG_INFO_DIRECT_IO_MASK & hp->info)
2515 cp = " dio>> ";
2516 else
2517 cp = " ";
2518 }
2519 seq_printf(s, cp);
Mike Christied6b10342005-11-08 04:06:41 -06002520 blen = srp->data.bufflen;
2521 usg = srp->data.k_use_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 seq_printf(s, srp->done ?
2523 ((1 == srp->done) ? "rcv:" : "fin:")
Mike Christied6b10342005-11-08 04:06:41 -06002524 : "act:");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525 seq_printf(s, " id=%d blen=%d",
2526 srp->header.pack_id, blen);
2527 if (srp->done)
2528 seq_printf(s, " dur=%d", hp->duration);
cb59e842005-04-02 13:51:23 -06002529 else {
2530 ms = jiffies_to_msecs(jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 seq_printf(s, " t_o/elap=%d/%d",
cb59e842005-04-02 13:51:23 -06002532 (new_interface ? hp->timeout :
2533 jiffies_to_msecs(fp->timeout)),
2534 (ms > hp->duration ? ms - hp->duration : 0));
2535 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 seq_printf(s, "ms sgat=%d op=0x%02x\n", usg,
2537 (int) srp->data.cmd_opcode);
2538 }
2539 if (0 == m)
2540 seq_printf(s, " No requests active\n");
Tony Battersbyc6517b792009-01-21 14:45:50 -05002541 read_unlock(&fp->rq_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 }
2543}
2544
2545static int sg_proc_open_debug(struct inode *inode, struct file *file)
2546{
2547 return seq_open(file, &debug_seq_ops);
2548}
2549
2550static int sg_proc_seq_show_debug(struct seq_file *s, void *v)
2551{
2552 struct sg_proc_deviter * it = (struct sg_proc_deviter *) v;
2553 Sg_device *sdp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002554 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555
2556 if (it && (0 == it->index)) {
James Bottomley7c07d612007-08-05 13:36:11 -05002557 seq_printf(s, "max_active_device=%d(origin 1)\n",
2558 (int)it->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 seq_printf(s, " def_reserved_size=%d\n", sg_big_buff);
2560 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05002561
2562 read_lock_irqsave(&sg_index_lock, iflags);
2563 sdp = it ? sg_lookup_dev(it->index) : NULL;
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002564 if (sdp && !list_empty(&sdp->sfds)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 struct scsi_device *scsidp = sdp->device;
2566
Tony Battersbyc6517b792009-01-21 14:45:50 -05002567 seq_printf(s, " >>> device=%s ", sdp->disk->disk_name);
2568 if (sdp->detached)
2569 seq_printf(s, "detached pending close ");
2570 else
2571 seq_printf
2572 (s, "scsi%d chan=%d id=%d lun=%d em=%d",
2573 scsidp->host->host_no,
2574 scsidp->channel, scsidp->id,
2575 scsidp->lun,
2576 scsidp->host->hostt->emulated);
2577 seq_printf(s, " sg_tablesize=%d excl=%d\n",
2578 sdp->sg_tablesize, sdp->exclude);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 sg_proc_debug_helper(s, sdp);
2580 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05002581 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 return 0;
2583}
2584
2585#endif /* CONFIG_SCSI_PROC_FS */
2586
2587module_init(init_sg);
2588module_exit(exit_sg);