blob: 18d079e3990ea48063e1d61eb071c5ac6ba7c6b3 [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
101#define SG_SECTOR_MSK (SG_SECTOR_SZ - 1)
102
Tony Jonesee959b02008-02-22 00:13:36 +0100103static int sg_add(struct device *, struct class_interface *);
Tony Battersbyc6517b792009-01-21 14:45:50 -0500104static void sg_device_destroy(struct kref *kref);
Tony Jonesee959b02008-02-22 00:13:36 +0100105static void sg_remove(struct device *, struct class_interface *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
James Bottomley7c07d612007-08-05 13:36:11 -0500107static DEFINE_IDR(sg_index_idr);
108static DEFINE_RWLOCK(sg_index_lock); /* Also used to lock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 file descriptor list for device */
110
111static struct class_interface sg_interface = {
Tony Jonesee959b02008-02-22 00:13:36 +0100112 .add_dev = sg_add,
113 .remove_dev = sg_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114};
115
116typedef struct sg_scatter_hold { /* holding area for scsi scatter gather info */
117 unsigned short k_use_sg; /* Count of kernel scatter-gather pieces */
FUJITA Tomonoriea312552007-08-06 00:31:24 +0900118 unsigned sglist_len; /* size of malloc'd scatter-gather list ++ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 unsigned bufflen; /* Size of (aggregate) data buffer */
FUJITA Tomonori10db10d2008-08-29 12:32:18 +0200120 struct page **pages;
121 int page_order;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 char dio_in_use; /* 0->indirect IO (or mmap), 1->dio */
123 unsigned char cmd_opcode; /* first byte of command */
124} Sg_scatter_hold;
125
126struct sg_device; /* forward declarations */
127struct sg_fd;
128
129typedef struct sg_request { /* SG_MAX_QUEUE requests outstanding per file */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 struct sg_request *nextrp; /* NULL -> tail request (slist) */
131 struct sg_fd *parentfp; /* NULL -> not in use */
132 Sg_scatter_hold data; /* hold buffer, perhaps scatter list */
133 sg_io_hdr_t header; /* scsi command+info, see <scsi/sg.h> */
Mike Christied6b10342005-11-08 04:06:41 -0600134 unsigned char sense_b[SCSI_SENSE_BUFFERSIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 char res_used; /* 1 -> using reserve buffer, 0 -> not ... */
136 char orphan; /* 1 -> drop on sight, 0 -> normal */
137 char sg_io_owned; /* 1 -> packet belongs to SG_IO */
138 volatile char done; /* 0->before bh, 1->before read, 2->read */
FUJITA Tomonori10865df2008-08-28 16:17:07 +0900139 struct request *rq;
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +0900140 struct bio *bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141} Sg_request;
142
143typedef struct sg_fd { /* holds the state of a file descriptor */
144 struct sg_fd *nextfp; /* NULL when last opened fd on this device */
145 struct sg_device *parentdp; /* owning device */
146 wait_queue_head_t read_wait; /* queue read until command done */
147 rwlock_t rq_list_lock; /* protect access to list in req_arr */
148 int timeout; /* defaults to SG_DEFAULT_TIMEOUT */
149 int timeout_user; /* defaults to SG_DEFAULT_TIMEOUT_USER */
150 Sg_scatter_hold reserve; /* buffer held for this file descriptor */
151 unsigned save_scat_len; /* original length of trunc. scat. element */
152 Sg_request *headrp; /* head of request slist, NULL->empty */
153 struct fasync_struct *async_qp; /* used by asynchronous notification */
154 Sg_request req_arr[SG_MAX_QUEUE]; /* used as singly-linked list */
155 char low_dma; /* as in parent but possibly overridden to 1 */
156 char force_packid; /* 1 -> pack_id input to read(), 0 -> ignored */
157 volatile char closed; /* 1 -> fd closed but request(s) outstanding */
158 char cmd_q; /* 1 -> allow command queuing, 0 -> don't */
159 char next_cmd_len; /* 0 -> automatic (def), >0 -> use on next write() */
160 char keep_orphan; /* 0 -> drop orphan (def), 1 -> keep for read() */
161 char mmap_called; /* 0 -> mmap() never called on this fd */
Tony Battersbyc6517b792009-01-21 14:45:50 -0500162 struct kref f_ref;
163 struct execute_work ew;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164} Sg_fd;
165
166typedef struct sg_device { /* holds the state of each scsi generic device */
167 struct scsi_device *device;
168 wait_queue_head_t o_excl_wait; /* queue open() when O_EXCL in use */
169 int sg_tablesize; /* adapter's max scatter-gather table size */
James Bottomley7c07d612007-08-05 13:36:11 -0500170 u32 index; /* device index number */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 Sg_fd *headfp; /* first open fd belonging to this device */
172 volatile char detached; /* 0->attached, 1->detached pending removal */
173 volatile char exclude; /* opened for exclusive access */
174 char sgdebug; /* 0->off, 1->sense, 9->dump dev, 10-> all devs */
175 struct gendisk *disk;
176 struct cdev * cdev; /* char_dev [sysfs: /sys/cdev/major/sg<n>] */
Tony Battersbyc6517b792009-01-21 14:45:50 -0500177 struct kref d_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178} Sg_device;
179
180static int sg_fasync(int fd, struct file *filp, int mode);
Mike Christied6b10342005-11-08 04:06:41 -0600181/* tasklet or soft irq callback */
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +0900182static void sg_rq_end_io(struct request *rq, int uptodate);
FUJITA Tomonori10865df2008-08-28 16:17:07 +0900183static int sg_start_req(Sg_request *srp, unsigned char *cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184static void sg_finish_rem_req(Sg_request * srp);
185static int sg_build_indirect(Sg_scatter_hold * schp, Sg_fd * sfp, int buff_size);
186static int sg_build_sgat(Sg_scatter_hold * schp, const Sg_fd * sfp,
187 int tablesize);
188static ssize_t sg_new_read(Sg_fd * sfp, char __user *buf, size_t count,
189 Sg_request * srp);
Adel Gadllah0b07de82008-06-26 13:48:27 +0200190static ssize_t sg_new_write(Sg_fd *sfp, struct file *file,
191 const char __user *buf, size_t count, int blocking,
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500192 int read_only, int sg_io_owned, Sg_request **o_srp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193static int sg_common_write(Sg_fd * sfp, Sg_request * srp,
194 unsigned char *cmnd, int timeout, int blocking);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195static int sg_read_oxfer(Sg_request * srp, char __user *outp, int num_read_xfer);
196static void sg_remove_scat(Sg_scatter_hold * schp);
197static void sg_build_reserve(Sg_fd * sfp, int req_size);
198static void sg_link_reserve(Sg_fd * sfp, Sg_request * srp, int size);
199static void sg_unlink_reserve(Sg_fd * sfp, Sg_request * srp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200static Sg_fd *sg_add_sfp(Sg_device * sdp, int dev);
Tony Battersbyc6517b792009-01-21 14:45:50 -0500201static void sg_remove_sfp(struct kref *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202static Sg_request *sg_get_rq_mark(Sg_fd * sfp, int pack_id);
203static Sg_request *sg_add_request(Sg_fd * sfp);
204static int sg_remove_request(Sg_fd * sfp, Sg_request * srp);
205static int sg_res_in_use(Sg_fd * sfp);
Tony Battersbyc6517b792009-01-21 14:45:50 -0500206static Sg_device *sg_lookup_dev(int dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207static Sg_device *sg_get_dev(int dev);
Tony Battersbyc6517b792009-01-21 14:45:50 -0500208static void sg_put_dev(Sg_device *sdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209#ifdef CONFIG_SCSI_PROC_FS
210static int sg_last_dev(void);
211#endif
212
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213#define SZ_SG_HEADER sizeof(struct sg_header)
214#define SZ_SG_IO_HDR sizeof(sg_io_hdr_t)
215#define SZ_SG_IOVEC sizeof(sg_iovec_t)
216#define SZ_SG_REQ_INFO sizeof(sg_req_info_t)
217
FUJITA Tomonori14e507b2008-07-26 18:03:24 +0900218static int sg_allow_access(struct file *filp, unsigned char *cmd)
219{
220 struct sg_fd *sfp = (struct sg_fd *)filp->private_data;
221 struct request_queue *q = sfp->parentdp->device->request_queue;
222
223 if (sfp->parentdp->device->type == TYPE_SCANNER)
224 return 0;
225
226 return blk_verify_command(&q->cmd_filter,
227 cmd, filp->f_mode & FMODE_WRITE);
228}
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230static int
231sg_open(struct inode *inode, struct file *filp)
232{
233 int dev = iminor(inode);
234 int flags = filp->f_flags;
Mike Christied6b10342005-11-08 04:06:41 -0600235 struct request_queue *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 Sg_device *sdp;
237 Sg_fd *sfp;
238 int res;
239 int retval;
240
Jonathan Corbeteb09d3d2008-05-15 12:22:06 -0600241 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 nonseekable_open(inode, filp);
243 SCSI_LOG_TIMEOUT(3, printk("sg_open: dev=%d, flags=0x%x\n", dev, flags));
244 sdp = sg_get_dev(dev);
Tony Battersbyc6517b792009-01-21 14:45:50 -0500245 if (IS_ERR(sdp)) {
246 retval = PTR_ERR(sdp);
247 sdp = NULL;
248 goto sg_put;
Jonathan Corbeteb09d3d2008-05-15 12:22:06 -0600249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251 /* This driver's module count bumped by fops_get in <linux/fs.h> */
252 /* Prevent the device driver from vanishing while we sleep */
253 retval = scsi_device_get(sdp->device);
Tony Battersbyc6517b792009-01-21 14:45:50 -0500254 if (retval)
255 goto sg_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
257 if (!((flags & O_NONBLOCK) ||
258 scsi_block_when_processing_errors(sdp->device))) {
259 retval = -ENXIO;
260 /* we are in error recovery for this device */
261 goto error_out;
262 }
263
264 if (flags & O_EXCL) {
265 if (O_RDONLY == (flags & O_ACCMODE)) {
266 retval = -EPERM; /* Can't lock it with read only access */
267 goto error_out;
268 }
269 if (sdp->headfp && (flags & O_NONBLOCK)) {
270 retval = -EBUSY;
271 goto error_out;
272 }
273 res = 0;
274 __wait_event_interruptible(sdp->o_excl_wait,
275 ((sdp->headfp || sdp->exclude) ? 0 : (sdp->exclude = 1)), res);
276 if (res) {
277 retval = res; /* -ERESTARTSYS because signal hit process */
278 goto error_out;
279 }
280 } else if (sdp->exclude) { /* some other fd has an exclusive lock on dev */
281 if (flags & O_NONBLOCK) {
282 retval = -EBUSY;
283 goto error_out;
284 }
285 res = 0;
286 __wait_event_interruptible(sdp->o_excl_wait, (!sdp->exclude),
287 res);
288 if (res) {
289 retval = res; /* -ERESTARTSYS because signal hit process */
290 goto error_out;
291 }
292 }
293 if (sdp->detached) {
294 retval = -ENODEV;
295 goto error_out;
296 }
297 if (!sdp->headfp) { /* no existing opens on this device */
298 sdp->sgdebug = 0;
Mike Christied6b10342005-11-08 04:06:41 -0600299 q = sdp->device->request_queue;
300 sdp->sg_tablesize = min(q->max_hw_segments,
301 q->max_phys_segments);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 }
303 if ((sfp = sg_add_sfp(sdp, dev)))
304 filp->private_data = sfp;
305 else {
Tony Battersbyc6517b792009-01-21 14:45:50 -0500306 if (flags & O_EXCL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 sdp->exclude = 0; /* undo if error */
Tony Battersbyc6517b792009-01-21 14:45:50 -0500308 wake_up_interruptible(&sdp->o_excl_wait);
309 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 retval = -ENOMEM;
311 goto error_out;
312 }
Tony Battersbyc6517b792009-01-21 14:45:50 -0500313 retval = 0;
314error_out:
315 if (retval)
316 scsi_device_put(sdp->device);
317sg_put:
318 if (sdp)
319 sg_put_dev(sdp);
Jonathan Corbeteb09d3d2008-05-15 12:22:06 -0600320 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 return retval;
322}
323
324/* Following function was formerly called 'sg_close' */
325static int
326sg_release(struct inode *inode, struct file *filp)
327{
328 Sg_device *sdp;
329 Sg_fd *sfp;
330
331 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
332 return -ENXIO;
333 SCSI_LOG_TIMEOUT(3, printk("sg_release: %s\n", sdp->disk->disk_name));
Tony Battersbyc6517b792009-01-21 14:45:50 -0500334
335 sfp->closed = 1;
336
337 sdp->exclude = 0;
338 wake_up_interruptible(&sdp->o_excl_wait);
339
340 kref_put(&sfp->f_ref, sg_remove_sfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 return 0;
342}
343
344static ssize_t
345sg_read(struct file *filp, char __user *buf, size_t count, loff_t * ppos)
346{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 Sg_device *sdp;
348 Sg_fd *sfp;
349 Sg_request *srp;
350 int req_pack_id = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 sg_io_hdr_t *hp;
cb59e842005-04-02 13:51:23 -0600352 struct sg_header *old_hdr = NULL;
353 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
355 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
356 return -ENXIO;
357 SCSI_LOG_TIMEOUT(3, printk("sg_read: %s, count=%d\n",
358 sdp->disk->disk_name, (int) count));
Mike Christied6b10342005-11-08 04:06:41 -0600359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 if (!access_ok(VERIFY_WRITE, buf, count))
361 return -EFAULT;
362 if (sfp->force_packid && (count >= SZ_SG_HEADER)) {
cb59e842005-04-02 13:51:23 -0600363 old_hdr = kmalloc(SZ_SG_HEADER, GFP_KERNEL);
364 if (!old_hdr)
365 return -ENOMEM;
366 if (__copy_from_user(old_hdr, buf, SZ_SG_HEADER)) {
367 retval = -EFAULT;
368 goto free_old_hdr;
369 }
370 if (old_hdr->reply_len < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 if (count >= SZ_SG_IO_HDR) {
cb59e842005-04-02 13:51:23 -0600372 sg_io_hdr_t *new_hdr;
373 new_hdr = kmalloc(SZ_SG_IO_HDR, GFP_KERNEL);
374 if (!new_hdr) {
375 retval = -ENOMEM;
376 goto free_old_hdr;
377 }
378 retval =__copy_from_user
379 (new_hdr, buf, SZ_SG_IO_HDR);
380 req_pack_id = new_hdr->pack_id;
381 kfree(new_hdr);
382 if (retval) {
383 retval = -EFAULT;
384 goto free_old_hdr;
385 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 }
387 } else
cb59e842005-04-02 13:51:23 -0600388 req_pack_id = old_hdr->pack_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 }
390 srp = sg_get_rq_mark(sfp, req_pack_id);
391 if (!srp) { /* now wait on packet to arrive */
cb59e842005-04-02 13:51:23 -0600392 if (sdp->detached) {
393 retval = -ENODEV;
394 goto free_old_hdr;
395 }
396 if (filp->f_flags & O_NONBLOCK) {
397 retval = -EAGAIN;
398 goto free_old_hdr;
399 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 while (1) {
cb59e842005-04-02 13:51:23 -0600401 retval = 0; /* following macro beats race condition */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 __wait_event_interruptible(sfp->read_wait,
cb59e842005-04-02 13:51:23 -0600403 (sdp->detached ||
404 (srp = sg_get_rq_mark(sfp, req_pack_id))),
405 retval);
406 if (sdp->detached) {
407 retval = -ENODEV;
408 goto free_old_hdr;
409 }
410 if (0 == retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 break;
cb59e842005-04-02 13:51:23 -0600412
413 /* -ERESTARTSYS as signal hit process */
414 goto free_old_hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 }
416 }
cb59e842005-04-02 13:51:23 -0600417 if (srp->header.interface_id != '\0') {
418 retval = sg_new_read(sfp, buf, count, srp);
419 goto free_old_hdr;
420 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
422 hp = &srp->header;
cb59e842005-04-02 13:51:23 -0600423 if (old_hdr == NULL) {
424 old_hdr = kmalloc(SZ_SG_HEADER, GFP_KERNEL);
425 if (! old_hdr) {
426 retval = -ENOMEM;
427 goto free_old_hdr;
428 }
429 }
430 memset(old_hdr, 0, SZ_SG_HEADER);
431 old_hdr->reply_len = (int) hp->timeout;
432 old_hdr->pack_len = old_hdr->reply_len; /* old, strange behaviour */
433 old_hdr->pack_id = hp->pack_id;
434 old_hdr->twelve_byte =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 ((srp->data.cmd_opcode >= 0xc0) && (12 == hp->cmd_len)) ? 1 : 0;
cb59e842005-04-02 13:51:23 -0600436 old_hdr->target_status = hp->masked_status;
437 old_hdr->host_status = hp->host_status;
438 old_hdr->driver_status = hp->driver_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 if ((CHECK_CONDITION & hp->masked_status) ||
440 (DRIVER_SENSE & hp->driver_status))
cb59e842005-04-02 13:51:23 -0600441 memcpy(old_hdr->sense_buffer, srp->sense_b,
442 sizeof (old_hdr->sense_buffer));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 switch (hp->host_status) {
444 /* This setup of 'result' is for backward compatibility and is best
445 ignored by the user who should use target, host + driver status */
446 case DID_OK:
447 case DID_PASSTHROUGH:
448 case DID_SOFT_ERROR:
cb59e842005-04-02 13:51:23 -0600449 old_hdr->result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 break;
451 case DID_NO_CONNECT:
452 case DID_BUS_BUSY:
453 case DID_TIME_OUT:
cb59e842005-04-02 13:51:23 -0600454 old_hdr->result = EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 break;
456 case DID_BAD_TARGET:
457 case DID_ABORT:
458 case DID_PARITY:
459 case DID_RESET:
460 case DID_BAD_INTR:
cb59e842005-04-02 13:51:23 -0600461 old_hdr->result = EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 break;
463 case DID_ERROR:
cb59e842005-04-02 13:51:23 -0600464 old_hdr->result = (srp->sense_b[0] == 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 hp->masked_status == GOOD) ? 0 : EIO;
466 break;
467 default:
cb59e842005-04-02 13:51:23 -0600468 old_hdr->result = EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 break;
470 }
471
472 /* Now copy the result back to the user buffer. */
473 if (count >= SZ_SG_HEADER) {
cb59e842005-04-02 13:51:23 -0600474 if (__copy_to_user(buf, old_hdr, SZ_SG_HEADER)) {
475 retval = -EFAULT;
476 goto free_old_hdr;
477 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 buf += SZ_SG_HEADER;
cb59e842005-04-02 13:51:23 -0600479 if (count > old_hdr->reply_len)
480 count = old_hdr->reply_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 if (count > SZ_SG_HEADER) {
cb59e842005-04-02 13:51:23 -0600482 if (sg_read_oxfer(srp, buf, count - SZ_SG_HEADER)) {
483 retval = -EFAULT;
484 goto free_old_hdr;
485 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 }
487 } else
cb59e842005-04-02 13:51:23 -0600488 count = (old_hdr->result == 0) ? 0 : -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 sg_finish_rem_req(srp);
cb59e842005-04-02 13:51:23 -0600490 retval = count;
491free_old_hdr:
Jesper Juhlc9475cb2005-11-07 01:01:26 -0800492 kfree(old_hdr);
cb59e842005-04-02 13:51:23 -0600493 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494}
495
496static ssize_t
497sg_new_read(Sg_fd * sfp, char __user *buf, size_t count, Sg_request * srp)
498{
499 sg_io_hdr_t *hp = &srp->header;
500 int err = 0;
501 int len;
502
503 if (count < SZ_SG_IO_HDR) {
504 err = -EINVAL;
505 goto err_out;
506 }
507 hp->sb_len_wr = 0;
508 if ((hp->mx_sb_len > 0) && hp->sbp) {
509 if ((CHECK_CONDITION & hp->masked_status) ||
510 (DRIVER_SENSE & hp->driver_status)) {
Mike Christied6b10342005-11-08 04:06:41 -0600511 int sb_len = SCSI_SENSE_BUFFERSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 sb_len = (hp->mx_sb_len > sb_len) ? sb_len : hp->mx_sb_len;
513 len = 8 + (int) srp->sense_b[7]; /* Additional sense length field */
514 len = (len > sb_len) ? sb_len : len;
515 if (copy_to_user(hp->sbp, srp->sense_b, len)) {
516 err = -EFAULT;
517 goto err_out;
518 }
519 hp->sb_len_wr = len;
520 }
521 }
522 if (hp->masked_status || hp->host_status || hp->driver_status)
523 hp->info |= SG_INFO_CHECK;
524 if (copy_to_user(buf, hp, SZ_SG_IO_HDR)) {
525 err = -EFAULT;
526 goto err_out;
527 }
FUJITA Tomonori0b6cb262008-09-02 22:50:07 +0900528err_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 sg_finish_rem_req(srp);
530 return (0 == err) ? count : err;
531}
532
533static ssize_t
534sg_write(struct file *filp, const char __user *buf, size_t count, loff_t * ppos)
535{
536 int mxsize, cmd_size, k;
537 int input_size, blocking;
538 unsigned char opcode;
539 Sg_device *sdp;
540 Sg_fd *sfp;
541 Sg_request *srp;
542 struct sg_header old_hdr;
543 sg_io_hdr_t *hp;
Mike Christied6b10342005-11-08 04:06:41 -0600544 unsigned char cmnd[MAX_COMMAND_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
546 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
547 return -ENXIO;
548 SCSI_LOG_TIMEOUT(3, printk("sg_write: %s, count=%d\n",
549 sdp->disk->disk_name, (int) count));
550 if (sdp->detached)
551 return -ENODEV;
552 if (!((filp->f_flags & O_NONBLOCK) ||
553 scsi_block_when_processing_errors(sdp->device)))
554 return -ENXIO;
555
556 if (!access_ok(VERIFY_READ, buf, count))
557 return -EFAULT; /* protects following copy_from_user()s + get_user()s */
558 if (count < SZ_SG_HEADER)
559 return -EIO;
560 if (__copy_from_user(&old_hdr, buf, SZ_SG_HEADER))
561 return -EFAULT;
562 blocking = !(filp->f_flags & O_NONBLOCK);
563 if (old_hdr.reply_len < 0)
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500564 return sg_new_write(sfp, filp, buf, count,
565 blocking, 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 if (count < (SZ_SG_HEADER + 6))
567 return -EIO; /* The minimum scsi command length is 6 bytes. */
568
569 if (!(srp = sg_add_request(sfp))) {
570 SCSI_LOG_TIMEOUT(1, printk("sg_write: queue full\n"));
571 return -EDOM;
572 }
573 buf += SZ_SG_HEADER;
574 __get_user(opcode, buf);
575 if (sfp->next_cmd_len > 0) {
576 if (sfp->next_cmd_len > MAX_COMMAND_SIZE) {
577 SCSI_LOG_TIMEOUT(1, printk("sg_write: command length too long\n"));
578 sfp->next_cmd_len = 0;
579 sg_remove_request(sfp, srp);
580 return -EIO;
581 }
582 cmd_size = sfp->next_cmd_len;
583 sfp->next_cmd_len = 0; /* reset so only this write() effected */
584 } else {
585 cmd_size = COMMAND_SIZE(opcode); /* based on SCSI command group */
586 if ((opcode >= 0xc0) && old_hdr.twelve_byte)
587 cmd_size = 12;
588 }
589 SCSI_LOG_TIMEOUT(4, printk(
590 "sg_write: scsi opcode=0x%02x, cmd_size=%d\n", (int) opcode, cmd_size));
591/* Determine buffer size. */
592 input_size = count - cmd_size;
593 mxsize = (input_size > old_hdr.reply_len) ? input_size : old_hdr.reply_len;
594 mxsize -= SZ_SG_HEADER;
595 input_size -= SZ_SG_HEADER;
596 if (input_size < 0) {
597 sg_remove_request(sfp, srp);
598 return -EIO; /* User did not pass enough bytes for this command. */
599 }
600 hp = &srp->header;
601 hp->interface_id = '\0'; /* indicator of old interface tunnelled */
602 hp->cmd_len = (unsigned char) cmd_size;
603 hp->iovec_count = 0;
604 hp->mx_sb_len = 0;
605 if (input_size > 0)
606 hp->dxfer_direction = (old_hdr.reply_len > SZ_SG_HEADER) ?
607 SG_DXFER_TO_FROM_DEV : SG_DXFER_TO_DEV;
608 else
609 hp->dxfer_direction = (mxsize > 0) ? SG_DXFER_FROM_DEV : SG_DXFER_NONE;
610 hp->dxfer_len = mxsize;
FUJITA Tomonorifad7f012008-09-02 16:20:20 +0900611 if (hp->dxfer_direction == SG_DXFER_TO_DEV)
612 hp->dxferp = (char __user *)buf + cmd_size;
613 else
614 hp->dxferp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 hp->sbp = NULL;
616 hp->timeout = old_hdr.reply_len; /* structure abuse ... */
617 hp->flags = input_size; /* structure abuse ... */
618 hp->pack_id = old_hdr.pack_id;
619 hp->usr_ptr = NULL;
620 if (__copy_from_user(cmnd, buf, cmd_size))
621 return -EFAULT;
622 /*
623 * SG_DXFER_TO_FROM_DEV is functionally equivalent to SG_DXFER_FROM_DEV,
624 * but is is possible that the app intended SG_DXFER_TO_DEV, because there
625 * is a non-zero input_size, so emit a warning.
626 */
Andi Kleeneaa3e222008-01-13 17:41:43 +0100627 if (hp->dxfer_direction == SG_DXFER_TO_FROM_DEV) {
628 static char cmd[TASK_COMM_LEN];
629 if (strcmp(current->comm, cmd) && printk_ratelimit()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 printk(KERN_WARNING
631 "sg_write: data in/out %d/%d bytes for SCSI command 0x%x--"
632 "guessing data in;\n" KERN_WARNING " "
633 "program %s not setting count and/or reply_len properly\n",
634 old_hdr.reply_len - (int)SZ_SG_HEADER,
635 input_size, (unsigned int) cmnd[0],
636 current->comm);
Andi Kleeneaa3e222008-01-13 17:41:43 +0100637 strcpy(cmd, current->comm);
638 }
639 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 k = sg_common_write(sfp, srp, cmnd, sfp->timeout, blocking);
641 return (k < 0) ? k : count;
642}
643
644static ssize_t
Adel Gadllah0b07de82008-06-26 13:48:27 +0200645sg_new_write(Sg_fd *sfp, struct file *file, const char __user *buf,
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500646 size_t count, int blocking, int read_only, int sg_io_owned,
Adel Gadllah0b07de82008-06-26 13:48:27 +0200647 Sg_request **o_srp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
649 int k;
650 Sg_request *srp;
651 sg_io_hdr_t *hp;
Mike Christied6b10342005-11-08 04:06:41 -0600652 unsigned char cmnd[MAX_COMMAND_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 int timeout;
654 unsigned long ul_timeout;
655
656 if (count < SZ_SG_IO_HDR)
657 return -EINVAL;
658 if (!access_ok(VERIFY_READ, buf, count))
659 return -EFAULT; /* protects following copy_from_user()s + get_user()s */
660
661 sfp->cmd_q = 1; /* when sg_io_hdr seen, set command queuing on */
662 if (!(srp = sg_add_request(sfp))) {
663 SCSI_LOG_TIMEOUT(1, printk("sg_new_write: queue full\n"));
664 return -EDOM;
665 }
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500666 srp->sg_io_owned = sg_io_owned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 hp = &srp->header;
668 if (__copy_from_user(hp, buf, SZ_SG_IO_HDR)) {
669 sg_remove_request(sfp, srp);
670 return -EFAULT;
671 }
672 if (hp->interface_id != 'S') {
673 sg_remove_request(sfp, srp);
674 return -ENOSYS;
675 }
676 if (hp->flags & SG_FLAG_MMAP_IO) {
677 if (hp->dxfer_len > sfp->reserve.bufflen) {
678 sg_remove_request(sfp, srp);
679 return -ENOMEM; /* MMAP_IO size must fit in reserve buffer */
680 }
681 if (hp->flags & SG_FLAG_DIRECT_IO) {
682 sg_remove_request(sfp, srp);
683 return -EINVAL; /* either MMAP_IO or DIRECT_IO (not both) */
684 }
685 if (sg_res_in_use(sfp)) {
686 sg_remove_request(sfp, srp);
687 return -EBUSY; /* reserve buffer already being used */
688 }
689 }
690 ul_timeout = msecs_to_jiffies(srp->header.timeout);
691 timeout = (ul_timeout < INT_MAX) ? ul_timeout : INT_MAX;
692 if ((!hp->cmdp) || (hp->cmd_len < 6) || (hp->cmd_len > sizeof (cmnd))) {
693 sg_remove_request(sfp, srp);
694 return -EMSGSIZE;
695 }
696 if (!access_ok(VERIFY_READ, hp->cmdp, hp->cmd_len)) {
697 sg_remove_request(sfp, srp);
698 return -EFAULT; /* protects following copy_from_user()s + get_user()s */
699 }
700 if (__copy_from_user(cmnd, hp->cmdp, hp->cmd_len)) {
701 sg_remove_request(sfp, srp);
702 return -EFAULT;
703 }
FUJITA Tomonori14e507b2008-07-26 18:03:24 +0900704 if (read_only && sg_allow_access(file, cmnd)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 sg_remove_request(sfp, srp);
706 return -EPERM;
707 }
708 k = sg_common_write(sfp, srp, cmnd, timeout, blocking);
709 if (k < 0)
710 return k;
711 if (o_srp)
712 *o_srp = srp;
713 return count;
714}
715
716static int
717sg_common_write(Sg_fd * sfp, Sg_request * srp,
718 unsigned char *cmnd, int timeout, int blocking)
719{
Mike Christied6b10342005-11-08 04:06:41 -0600720 int k, data_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 Sg_device *sdp = sfp->parentdp;
722 sg_io_hdr_t *hp = &srp->header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
724 srp->data.cmd_opcode = cmnd[0]; /* hold opcode of command */
725 hp->status = 0;
726 hp->masked_status = 0;
727 hp->msg_status = 0;
728 hp->info = 0;
729 hp->host_status = 0;
730 hp->driver_status = 0;
731 hp->resid = 0;
732 SCSI_LOG_TIMEOUT(4, printk("sg_common_write: scsi opcode=0x%02x, cmd_size=%d\n",
733 (int) cmnd[0], (int) hp->cmd_len));
734
FUJITA Tomonori10865df2008-08-28 16:17:07 +0900735 k = sg_start_req(srp, cmnd);
736 if (k) {
Douglas Gilbert7ca63cb2006-10-27 17:47:49 -0400737 SCSI_LOG_TIMEOUT(1, printk("sg_common_write: start_req err=%d\n", k));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 sg_finish_rem_req(srp);
739 return k; /* probably out of space --> ENOMEM */
740 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 if (sdp->detached) {
742 sg_finish_rem_req(srp);
743 return -ENODEV;
744 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 switch (hp->dxfer_direction) {
747 case SG_DXFER_TO_FROM_DEV:
748 case SG_DXFER_FROM_DEV:
Mike Christied6b10342005-11-08 04:06:41 -0600749 data_dir = DMA_FROM_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 break;
751 case SG_DXFER_TO_DEV:
Mike Christied6b10342005-11-08 04:06:41 -0600752 data_dir = DMA_TO_DEVICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 break;
754 case SG_DXFER_UNKNOWN:
Mike Christied6b10342005-11-08 04:06:41 -0600755 data_dir = DMA_BIDIRECTIONAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 break;
757 default:
Mike Christied6b10342005-11-08 04:06:41 -0600758 data_dir = DMA_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 break;
760 }
cb59e842005-04-02 13:51:23 -0600761 hp->duration = jiffies_to_msecs(jiffies);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +0200762
763 srp->rq->timeout = timeout;
Tony Battersbyc6517b792009-01-21 14:45:50 -0500764 kref_get(&sfp->f_ref); /* sg_rq_end_io() does kref_put(). */
FUJITA Tomonori10db10d2008-08-29 12:32:18 +0200765 blk_execute_rq_nowait(sdp->device->request_queue, sdp->disk,
766 srp->rq, 1, sg_rq_end_io);
767 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768}
769
770static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771sg_ioctl(struct inode *inode, struct file *filp,
772 unsigned int cmd_in, unsigned long arg)
773{
774 void __user *p = (void __user *)arg;
775 int __user *ip = p;
776 int result, val, read_only;
777 Sg_device *sdp;
778 Sg_fd *sfp;
779 Sg_request *srp;
780 unsigned long iflags;
781
782 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
783 return -ENXIO;
FUJITA Tomonoriabf54392008-08-16 14:10:05 +0900784
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 SCSI_LOG_TIMEOUT(3, printk("sg_ioctl: %s, cmd=0x%x\n",
786 sdp->disk->disk_name, (int) cmd_in));
787 read_only = (O_RDWR != (filp->f_flags & O_ACCMODE));
788
789 switch (cmd_in) {
790 case SG_IO:
791 {
792 int blocking = 1; /* ignore O_NONBLOCK flag */
793
794 if (sdp->detached)
795 return -ENODEV;
796 if (!scsi_block_when_processing_errors(sdp->device))
797 return -ENXIO;
798 if (!access_ok(VERIFY_WRITE, p, SZ_SG_IO_HDR))
799 return -EFAULT;
800 result =
Adel Gadllah0b07de82008-06-26 13:48:27 +0200801 sg_new_write(sfp, filp, p, SZ_SG_IO_HDR,
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500802 blocking, read_only, 1, &srp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 if (result < 0)
804 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 while (1) {
806 result = 0; /* following macro to beat race condition */
807 __wait_event_interruptible(sfp->read_wait,
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500808 (srp->done || sdp->detached),
809 result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 if (sdp->detached)
811 return -ENODEV;
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500812 write_lock_irq(&sfp->rq_list_lock);
813 if (srp->done) {
814 srp->done = 2;
815 write_unlock_irq(&sfp->rq_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 break;
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500817 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 srp->orphan = 1;
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500819 write_unlock_irq(&sfp->rq_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 return result; /* -ERESTARTSYS because signal hit process */
821 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 result = sg_new_read(sfp, p, SZ_SG_IO_HDR, srp);
823 return (result < 0) ? result : 0;
824 }
825 case SG_SET_TIMEOUT:
826 result = get_user(val, ip);
827 if (result)
828 return result;
829 if (val < 0)
830 return -EIO;
831 if (val >= MULDIV (INT_MAX, USER_HZ, HZ))
832 val = MULDIV (INT_MAX, USER_HZ, HZ);
833 sfp->timeout_user = val;
834 sfp->timeout = MULDIV (val, HZ, USER_HZ);
835
836 return 0;
837 case SG_GET_TIMEOUT: /* N.B. User receives timeout as return value */
838 /* strange ..., for backward compatibility */
839 return sfp->timeout_user;
840 case SG_SET_FORCE_LOW_DMA:
841 result = get_user(val, ip);
842 if (result)
843 return result;
844 if (val) {
845 sfp->low_dma = 1;
846 if ((0 == sfp->low_dma) && (0 == sg_res_in_use(sfp))) {
847 val = (int) sfp->reserve.bufflen;
848 sg_remove_scat(&sfp->reserve);
849 sg_build_reserve(sfp, val);
850 }
851 } else {
852 if (sdp->detached)
853 return -ENODEV;
854 sfp->low_dma = sdp->device->host->unchecked_isa_dma;
855 }
856 return 0;
857 case SG_GET_LOW_DMA:
858 return put_user((int) sfp->low_dma, ip);
859 case SG_GET_SCSI_ID:
860 if (!access_ok(VERIFY_WRITE, p, sizeof (sg_scsi_id_t)))
861 return -EFAULT;
862 else {
863 sg_scsi_id_t __user *sg_idp = p;
864
865 if (sdp->detached)
866 return -ENODEV;
867 __put_user((int) sdp->device->host->host_no,
868 &sg_idp->host_no);
869 __put_user((int) sdp->device->channel,
870 &sg_idp->channel);
871 __put_user((int) sdp->device->id, &sg_idp->scsi_id);
872 __put_user((int) sdp->device->lun, &sg_idp->lun);
873 __put_user((int) sdp->device->type, &sg_idp->scsi_type);
874 __put_user((short) sdp->device->host->cmd_per_lun,
875 &sg_idp->h_cmd_per_lun);
876 __put_user((short) sdp->device->queue_depth,
877 &sg_idp->d_queue_depth);
878 __put_user(0, &sg_idp->unused[0]);
879 __put_user(0, &sg_idp->unused[1]);
880 return 0;
881 }
882 case SG_SET_FORCE_PACK_ID:
883 result = get_user(val, ip);
884 if (result)
885 return result;
886 sfp->force_packid = val ? 1 : 0;
887 return 0;
888 case SG_GET_PACK_ID:
889 if (!access_ok(VERIFY_WRITE, ip, sizeof (int)))
890 return -EFAULT;
891 read_lock_irqsave(&sfp->rq_list_lock, iflags);
892 for (srp = sfp->headrp; srp; srp = srp->nextrp) {
893 if ((1 == srp->done) && (!srp->sg_io_owned)) {
894 read_unlock_irqrestore(&sfp->rq_list_lock,
895 iflags);
896 __put_user(srp->header.pack_id, ip);
897 return 0;
898 }
899 }
900 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
901 __put_user(-1, ip);
902 return 0;
903 case SG_GET_NUM_WAITING:
904 read_lock_irqsave(&sfp->rq_list_lock, iflags);
905 for (val = 0, srp = sfp->headrp; srp; srp = srp->nextrp) {
906 if ((1 == srp->done) && (!srp->sg_io_owned))
907 ++val;
908 }
909 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
910 return put_user(val, ip);
911 case SG_GET_SG_TABLESIZE:
912 return put_user(sdp->sg_tablesize, ip);
913 case SG_SET_RESERVED_SIZE:
914 result = get_user(val, ip);
915 if (result)
916 return result;
917 if (val < 0)
918 return -EINVAL;
Alan Stern44ec9542007-02-20 11:01:57 -0500919 val = min_t(int, val,
920 sdp->device->request_queue->max_sectors * 512);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 if (val != sfp->reserve.bufflen) {
922 if (sg_res_in_use(sfp) || sfp->mmap_called)
923 return -EBUSY;
924 sg_remove_scat(&sfp->reserve);
925 sg_build_reserve(sfp, val);
926 }
927 return 0;
928 case SG_GET_RESERVED_SIZE:
Alan Stern44ec9542007-02-20 11:01:57 -0500929 val = min_t(int, sfp->reserve.bufflen,
930 sdp->device->request_queue->max_sectors * 512);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 return put_user(val, ip);
932 case SG_SET_COMMAND_Q:
933 result = get_user(val, ip);
934 if (result)
935 return result;
936 sfp->cmd_q = val ? 1 : 0;
937 return 0;
938 case SG_GET_COMMAND_Q:
939 return put_user((int) sfp->cmd_q, ip);
940 case SG_SET_KEEP_ORPHAN:
941 result = get_user(val, ip);
942 if (result)
943 return result;
944 sfp->keep_orphan = val;
945 return 0;
946 case SG_GET_KEEP_ORPHAN:
947 return put_user((int) sfp->keep_orphan, ip);
948 case SG_NEXT_CMD_LEN:
949 result = get_user(val, ip);
950 if (result)
951 return result;
952 sfp->next_cmd_len = (val > 0) ? val : 0;
953 return 0;
954 case SG_GET_VERSION_NUM:
955 return put_user(sg_version_num, ip);
956 case SG_GET_ACCESS_COUNT:
957 /* faked - we don't have a real access count anymore */
958 val = (sdp->device ? 1 : 0);
959 return put_user(val, ip);
960 case SG_GET_REQUEST_TABLE:
961 if (!access_ok(VERIFY_WRITE, p, SZ_SG_REQ_INFO * SG_MAX_QUEUE))
962 return -EFAULT;
963 else {
cb59e842005-04-02 13:51:23 -0600964 sg_req_info_t *rinfo;
965 unsigned int ms;
966
967 rinfo = kmalloc(SZ_SG_REQ_INFO * SG_MAX_QUEUE,
968 GFP_KERNEL);
969 if (!rinfo)
970 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 read_lock_irqsave(&sfp->rq_list_lock, iflags);
972 for (srp = sfp->headrp, val = 0; val < SG_MAX_QUEUE;
973 ++val, srp = srp ? srp->nextrp : srp) {
974 memset(&rinfo[val], 0, SZ_SG_REQ_INFO);
975 if (srp) {
976 rinfo[val].req_state = srp->done + 1;
977 rinfo[val].problem =
978 srp->header.masked_status &
979 srp->header.host_status &
980 srp->header.driver_status;
cb59e842005-04-02 13:51:23 -0600981 if (srp->done)
982 rinfo[val].duration =
983 srp->header.duration;
984 else {
985 ms = jiffies_to_msecs(jiffies);
986 rinfo[val].duration =
987 (ms > srp->header.duration) ?
988 (ms - srp->header.duration) : 0;
989 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 rinfo[val].orphan = srp->orphan;
cb59e842005-04-02 13:51:23 -0600991 rinfo[val].sg_io_owned =
992 srp->sg_io_owned;
993 rinfo[val].pack_id =
994 srp->header.pack_id;
995 rinfo[val].usr_ptr =
996 srp->header.usr_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 }
998 }
999 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
cb59e842005-04-02 13:51:23 -06001000 result = __copy_to_user(p, rinfo,
1001 SZ_SG_REQ_INFO * SG_MAX_QUEUE);
1002 result = result ? -EFAULT : 0;
1003 kfree(rinfo);
1004 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 }
1006 case SG_EMULATED_HOST:
1007 if (sdp->detached)
1008 return -ENODEV;
1009 return put_user(sdp->device->host->hostt->emulated, ip);
1010 case SG_SCSI_RESET:
1011 if (sdp->detached)
1012 return -ENODEV;
1013 if (filp->f_flags & O_NONBLOCK) {
James Bottomley939647e2005-09-18 15:05:20 -05001014 if (scsi_host_in_recovery(sdp->device->host))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 return -EBUSY;
1016 } else if (!scsi_block_when_processing_errors(sdp->device))
1017 return -EBUSY;
1018 result = get_user(val, ip);
1019 if (result)
1020 return result;
1021 if (SG_SCSI_RESET_NOTHING == val)
1022 return 0;
1023 switch (val) {
1024 case SG_SCSI_RESET_DEVICE:
1025 val = SCSI_TRY_RESET_DEVICE;
1026 break;
Brian King39120e12008-07-01 13:03:19 -05001027 case SG_SCSI_RESET_TARGET:
1028 val = SCSI_TRY_RESET_TARGET;
1029 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 case SG_SCSI_RESET_BUS:
1031 val = SCSI_TRY_RESET_BUS;
1032 break;
1033 case SG_SCSI_RESET_HOST:
1034 val = SCSI_TRY_RESET_HOST;
1035 break;
1036 default:
1037 return -EINVAL;
1038 }
1039 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
1040 return -EACCES;
1041 return (scsi_reset_provider(sdp->device, val) ==
1042 SUCCESS) ? 0 : -EIO;
1043 case SCSI_IOCTL_SEND_COMMAND:
1044 if (sdp->detached)
1045 return -ENODEV;
1046 if (read_only) {
1047 unsigned char opcode = WRITE_6;
1048 Scsi_Ioctl_Command __user *siocp = p;
1049
1050 if (copy_from_user(&opcode, siocp->data, 1))
1051 return -EFAULT;
FUJITA Tomonori14e507b2008-07-26 18:03:24 +09001052 if (sg_allow_access(filp, &opcode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 return -EPERM;
1054 }
Al Viroe915e872008-09-02 17:16:41 -04001055 return sg_scsi_ioctl(sdp->device->request_queue, NULL, filp->f_mode, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 case SG_SET_DEBUG:
1057 result = get_user(val, ip);
1058 if (result)
1059 return result;
1060 sdp->sgdebug = (char) val;
1061 return 0;
1062 case SCSI_IOCTL_GET_IDLUN:
1063 case SCSI_IOCTL_GET_BUS_NUMBER:
1064 case SCSI_IOCTL_PROBE_HOST:
1065 case SG_GET_TRANSFORM:
1066 if (sdp->detached)
1067 return -ENODEV;
1068 return scsi_ioctl(sdp->device, cmd_in, p);
Alan Stern44ec9542007-02-20 11:01:57 -05001069 case BLKSECTGET:
1070 return put_user(sdp->device->request_queue->max_sectors * 512,
1071 ip);
Christof Schmitt6da127a2008-01-11 10:09:43 +01001072 case BLKTRACESETUP:
1073 return blk_trace_setup(sdp->device->request_queue,
1074 sdp->disk->disk_name,
Martin Peschke76e3a192009-01-30 15:46:23 +01001075 MKDEV(SCSI_GENERIC_MAJOR, sdp->index),
Christof Schmitt6da127a2008-01-11 10:09:43 +01001076 (char *)arg);
1077 case BLKTRACESTART:
1078 return blk_trace_startstop(sdp->device->request_queue, 1);
1079 case BLKTRACESTOP:
1080 return blk_trace_startstop(sdp->device->request_queue, 0);
1081 case BLKTRACETEARDOWN:
1082 return blk_trace_remove(sdp->device->request_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 default:
1084 if (read_only)
1085 return -EPERM; /* don't know so take safe approach */
1086 return scsi_ioctl(sdp->device, cmd_in, p);
1087 }
1088}
1089
1090#ifdef CONFIG_COMPAT
1091static long sg_compat_ioctl(struct file *filp, unsigned int cmd_in, unsigned long arg)
1092{
1093 Sg_device *sdp;
1094 Sg_fd *sfp;
1095 struct scsi_device *sdev;
1096
1097 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
1098 return -ENXIO;
1099
1100 sdev = sdp->device;
1101 if (sdev->host->hostt->compat_ioctl) {
1102 int ret;
1103
1104 ret = sdev->host->hostt->compat_ioctl(sdev, cmd_in, (void __user *)arg);
1105
1106 return ret;
1107 }
1108
1109 return -ENOIOCTLCMD;
1110}
1111#endif
1112
1113static unsigned int
1114sg_poll(struct file *filp, poll_table * wait)
1115{
1116 unsigned int res = 0;
1117 Sg_device *sdp;
1118 Sg_fd *sfp;
1119 Sg_request *srp;
1120 int count = 0;
1121 unsigned long iflags;
1122
1123 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp))
1124 || sfp->closed)
1125 return POLLERR;
1126 poll_wait(filp, &sfp->read_wait, wait);
1127 read_lock_irqsave(&sfp->rq_list_lock, iflags);
1128 for (srp = sfp->headrp; srp; srp = srp->nextrp) {
1129 /* if any read waiting, flag it */
1130 if ((0 == res) && (1 == srp->done) && (!srp->sg_io_owned))
1131 res = POLLIN | POLLRDNORM;
1132 ++count;
1133 }
1134 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1135
1136 if (sdp->detached)
1137 res |= POLLHUP;
1138 else if (!sfp->cmd_q) {
1139 if (0 == count)
1140 res |= POLLOUT | POLLWRNORM;
1141 } else if (count < SG_MAX_QUEUE)
1142 res |= POLLOUT | POLLWRNORM;
1143 SCSI_LOG_TIMEOUT(3, printk("sg_poll: %s, res=0x%x\n",
1144 sdp->disk->disk_name, (int) res));
1145 return res;
1146}
1147
1148static int
1149sg_fasync(int fd, struct file *filp, int mode)
1150{
1151 int retval;
1152 Sg_device *sdp;
1153 Sg_fd *sfp;
1154
1155 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
1156 return -ENXIO;
1157 SCSI_LOG_TIMEOUT(3, printk("sg_fasync: %s, mode=%d\n",
1158 sdp->disk->disk_name, mode));
1159
1160 retval = fasync_helper(fd, filp, mode, &sfp->async_qp);
1161 return (retval < 0) ? retval : 0;
1162}
1163
Nick Piggina13ff0b2008-02-07 18:46:06 -08001164static int
1165sg_vma_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166{
1167 Sg_fd *sfp;
Mike Christied6b10342005-11-08 04:06:41 -06001168 unsigned long offset, len, sa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 Sg_scatter_hold *rsv_schp;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001170 int k, length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
1172 if ((NULL == vma) || (!(sfp = (Sg_fd *) vma->vm_private_data)))
Nick Piggina13ff0b2008-02-07 18:46:06 -08001173 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 rsv_schp = &sfp->reserve;
Nick Piggina13ff0b2008-02-07 18:46:06 -08001175 offset = vmf->pgoff << PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 if (offset >= rsv_schp->bufflen)
Nick Piggina13ff0b2008-02-07 18:46:06 -08001177 return VM_FAULT_SIGBUS;
1178 SCSI_LOG_TIMEOUT(3, printk("sg_vma_fault: offset=%lu, scatg=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 offset, rsv_schp->k_use_sg));
Mike Christied6b10342005-11-08 04:06:41 -06001180 sa = vma->vm_start;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001181 length = 1 << (PAGE_SHIFT + rsv_schp->page_order);
1182 for (k = 0; k < rsv_schp->k_use_sg && sa < vma->vm_end; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06001183 len = vma->vm_end - sa;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001184 len = (len < length) ? len : length;
Mike Christied6b10342005-11-08 04:06:41 -06001185 if (offset < len) {
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001186 struct page *page = nth_page(rsv_schp->pages[k],
1187 offset >> PAGE_SHIFT);
Mike Christied6b10342005-11-08 04:06:41 -06001188 get_page(page); /* increment page count */
Nick Piggina13ff0b2008-02-07 18:46:06 -08001189 vmf->page = page;
1190 return 0; /* success */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 }
Mike Christied6b10342005-11-08 04:06:41 -06001192 sa += len;
1193 offset -= len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 }
Mike Christied6b10342005-11-08 04:06:41 -06001195
Nick Piggina13ff0b2008-02-07 18:46:06 -08001196 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197}
1198
1199static struct vm_operations_struct sg_mmap_vm_ops = {
Nick Piggina13ff0b2008-02-07 18:46:06 -08001200 .fault = sg_vma_fault,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201};
1202
1203static int
1204sg_mmap(struct file *filp, struct vm_area_struct *vma)
1205{
1206 Sg_fd *sfp;
Mike Christied6b10342005-11-08 04:06:41 -06001207 unsigned long req_sz, len, sa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 Sg_scatter_hold *rsv_schp;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001209 int k, length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
1211 if ((!filp) || (!vma) || (!(sfp = (Sg_fd *) filp->private_data)))
1212 return -ENXIO;
cb59e842005-04-02 13:51:23 -06001213 req_sz = vma->vm_end - vma->vm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 SCSI_LOG_TIMEOUT(3, printk("sg_mmap starting, vm_start=%p, len=%d\n",
1215 (void *) vma->vm_start, (int) req_sz));
1216 if (vma->vm_pgoff)
1217 return -EINVAL; /* want no offset */
1218 rsv_schp = &sfp->reserve;
1219 if (req_sz > rsv_schp->bufflen)
1220 return -ENOMEM; /* cannot map more than reserved buffer */
1221
Mike Christied6b10342005-11-08 04:06:41 -06001222 sa = vma->vm_start;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001223 length = 1 << (PAGE_SHIFT + rsv_schp->page_order);
1224 for (k = 0; k < rsv_schp->k_use_sg && sa < vma->vm_end; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06001225 len = vma->vm_end - sa;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001226 len = (len < length) ? len : length;
Mike Christied6b10342005-11-08 04:06:41 -06001227 sa += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 }
Mike Christied6b10342005-11-08 04:06:41 -06001229
Nick Pigginf9aed0e2006-03-22 00:08:30 -08001230 sfp->mmap_called = 1;
Douglas Gilbert1c8e71d2005-09-09 17:18:57 +10001231 vma->vm_flags |= VM_RESERVED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 vma->vm_private_data = sfp;
1233 vma->vm_ops = &sg_mmap_vm_ops;
1234 return 0;
1235}
1236
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001237/*
1238 * This function is a "bottom half" handler that is called by the mid
1239 * level when a command is completed (or has failed).
1240 */
1241static void sg_rq_end_io(struct request *rq, int uptodate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242{
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001243 struct sg_request *srp = rq->end_io_data;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001244 Sg_device *sdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 Sg_fd *sfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 unsigned long iflags;
cb59e842005-04-02 13:51:23 -06001247 unsigned int ms;
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001248 char *sense;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001249 int result, resid, done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
Tony Battersbyc6517b792009-01-21 14:45:50 -05001251 if (WARN_ON(srp->done != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 return;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001253
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 sfp = srp->parentfp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001255 if (WARN_ON(sfp == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 return;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001257
1258 sdp = sfp->parentdp;
1259 if (unlikely(sdp->detached))
1260 printk(KERN_INFO "sg_rq_end_io: device detached\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001262 sense = rq->sense;
1263 result = rq->errors;
1264 resid = rq->data_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
1266 SCSI_LOG_TIMEOUT(4, printk("sg_cmd_done: %s, pack_id=%d, res=0x%x\n",
Mike Christied6b10342005-11-08 04:06:41 -06001267 sdp->disk->disk_name, srp->header.pack_id, result));
1268 srp->header.resid = resid;
cb59e842005-04-02 13:51:23 -06001269 ms = jiffies_to_msecs(jiffies);
1270 srp->header.duration = (ms > srp->header.duration) ?
1271 (ms - srp->header.duration) : 0;
Mike Christied6b10342005-11-08 04:06:41 -06001272 if (0 != result) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 struct scsi_sense_hdr sshdr;
1274
Mike Christied6b10342005-11-08 04:06:41 -06001275 srp->header.status = 0xff & result;
1276 srp->header.masked_status = status_byte(result);
1277 srp->header.msg_status = msg_byte(result);
1278 srp->header.host_status = host_byte(result);
1279 srp->header.driver_status = driver_byte(result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 if ((sdp->sgdebug > 0) &&
1281 ((CHECK_CONDITION == srp->header.masked_status) ||
1282 (COMMAND_TERMINATED == srp->header.masked_status)))
Mike Christied6b10342005-11-08 04:06:41 -06001283 __scsi_print_sense("sg_cmd_done", sense,
1284 SCSI_SENSE_BUFFERSIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
1286 /* Following if statement is a patch supplied by Eric Youngdale */
Mike Christied6b10342005-11-08 04:06:41 -06001287 if (driver_byte(result) != 0
1288 && scsi_normalize_sense(sense, SCSI_SENSE_BUFFERSIZE, &sshdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 && !scsi_sense_is_deferred(&sshdr)
1290 && sshdr.sense_key == UNIT_ATTENTION
1291 && sdp->device->removable) {
1292 /* Detected possible disc change. Set the bit - this */
1293 /* may be used if there are filesystems using this device */
1294 sdp->device->changed = 1;
1295 }
1296 }
1297 /* Rely on write phase to clean out srp status values, so no "else" */
1298
Tony Battersbyc6517b792009-01-21 14:45:50 -05001299 write_lock_irqsave(&sfp->rq_list_lock, iflags);
1300 if (unlikely(srp->orphan)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 if (sfp->keep_orphan)
1302 srp->sg_io_owned = 0;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001303 else
1304 done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05001306 srp->done = done;
1307 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1308
1309 if (likely(done)) {
1310 /* Now wake up any sg_read() that is waiting for this
1311 * packet.
1312 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 wake_up_interruptible(&sfp->read_wait);
Tony Battersbyc6517b792009-01-21 14:45:50 -05001314 kill_fasync(&sfp->async_qp, SIGPOLL, POLL_IN);
1315 } else
1316 sg_finish_rem_req(srp); /* call with srp->done == 0 */
1317
1318 kref_put(&sfp->f_ref, sg_remove_sfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319}
1320
1321static struct file_operations sg_fops = {
1322 .owner = THIS_MODULE,
1323 .read = sg_read,
1324 .write = sg_write,
1325 .poll = sg_poll,
1326 .ioctl = sg_ioctl,
1327#ifdef CONFIG_COMPAT
1328 .compat_ioctl = sg_compat_ioctl,
1329#endif
1330 .open = sg_open,
1331 .mmap = sg_mmap,
1332 .release = sg_release,
1333 .fasync = sg_fasync,
1334};
1335
gregkh@suse.ded2538782005-03-23 09:55:22 -08001336static struct class *sg_sysfs_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
1338static int sg_sysfs_valid = 0;
1339
James Bottomley7c07d612007-08-05 13:36:11 -05001340static Sg_device *sg_alloc(struct gendisk *disk, struct scsi_device *scsidp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341{
Mike Christied6b10342005-11-08 04:06:41 -06001342 struct request_queue *q = scsidp->request_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 Sg_device *sdp;
1344 unsigned long iflags;
James Bottomley7c07d612007-08-05 13:36:11 -05001345 int error;
1346 u32 k;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
Jes Sorensen24669f752006-01-16 10:31:18 -05001348 sdp = kzalloc(sizeof(Sg_device), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 if (!sdp) {
1350 printk(KERN_WARNING "kmalloc Sg_device failure\n");
James Bottomley7c07d612007-08-05 13:36:11 -05001351 return ERR_PTR(-ENOMEM);
1352 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05001353
James Bottomley7c07d612007-08-05 13:36:11 -05001354 if (!idr_pre_get(&sg_index_idr, GFP_KERNEL)) {
1355 printk(KERN_WARNING "idr expansion Sg_device failure\n");
Tony Battersbyc6517b792009-01-21 14:45:50 -05001356 error = -ENOMEM;
James Bottomley7c07d612007-08-05 13:36:11 -05001357 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 }
1359
James Bottomley7c07d612007-08-05 13:36:11 -05001360 write_lock_irqsave(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361
Tony Battersbyc6517b792009-01-21 14:45:50 -05001362 error = idr_get_new(&sg_index_idr, sdp, &k);
James Bottomley7c07d612007-08-05 13:36:11 -05001363 if (error) {
Tony Battersbyc6517b792009-01-21 14:45:50 -05001364 write_unlock_irqrestore(&sg_index_lock, iflags);
James Bottomley7c07d612007-08-05 13:36:11 -05001365 printk(KERN_WARNING "idr allocation Sg_device failure: %d\n",
1366 error);
1367 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 }
1369
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 if (unlikely(k >= SG_MAX_DEVS))
1371 goto overflow;
1372
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 SCSI_LOG_TIMEOUT(3, printk("sg_alloc: dev=%d \n", k));
1374 sprintf(disk->disk_name, "sg%d", k);
1375 disk->first_minor = k;
1376 sdp->disk = disk;
1377 sdp->device = scsidp;
1378 init_waitqueue_head(&sdp->o_excl_wait);
Mike Christied6b10342005-11-08 04:06:41 -06001379 sdp->sg_tablesize = min(q->max_hw_segments, q->max_phys_segments);
James Bottomley7c07d612007-08-05 13:36:11 -05001380 sdp->index = k;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001381 kref_init(&sdp->d_ref);
1382
1383 write_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
James Bottomley7c07d612007-08-05 13:36:11 -05001385 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 out:
James Bottomley7c07d612007-08-05 13:36:11 -05001387 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 kfree(sdp);
James Bottomley7c07d612007-08-05 13:36:11 -05001389 return ERR_PTR(error);
1390 }
1391 return sdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
1393 overflow:
Tony Battersbyc6517b792009-01-21 14:45:50 -05001394 idr_remove(&sg_index_idr, k);
1395 write_unlock_irqrestore(&sg_index_lock, iflags);
James Bottomley9ccfc752005-10-02 11:45:08 -05001396 sdev_printk(KERN_WARNING, scsidp,
1397 "Unable to attach sg device type=%d, minor "
1398 "number exceeds %d\n", scsidp->type, SG_MAX_DEVS - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 error = -ENODEV;
1400 goto out;
1401}
1402
1403static int
Tony Jonesee959b02008-02-22 00:13:36 +01001404sg_add(struct device *cl_dev, struct class_interface *cl_intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405{
Tony Jonesee959b02008-02-22 00:13:36 +01001406 struct scsi_device *scsidp = to_scsi_device(cl_dev->parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 struct gendisk *disk;
1408 Sg_device *sdp = NULL;
1409 struct cdev * cdev = NULL;
James Bottomley7c07d612007-08-05 13:36:11 -05001410 int error;
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001411 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
1413 disk = alloc_disk(1);
1414 if (!disk) {
1415 printk(KERN_WARNING "alloc_disk failed\n");
1416 return -ENOMEM;
1417 }
1418 disk->major = SCSI_GENERIC_MAJOR;
1419
1420 error = -ENOMEM;
1421 cdev = cdev_alloc();
1422 if (!cdev) {
1423 printk(KERN_WARNING "cdev_alloc failed\n");
1424 goto out;
1425 }
1426 cdev->owner = THIS_MODULE;
1427 cdev->ops = &sg_fops;
1428
James Bottomley7c07d612007-08-05 13:36:11 -05001429 sdp = sg_alloc(disk, scsidp);
1430 if (IS_ERR(sdp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 printk(KERN_WARNING "sg_alloc failed\n");
James Bottomley7c07d612007-08-05 13:36:11 -05001432 error = PTR_ERR(sdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 goto out;
1434 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435
James Bottomley7c07d612007-08-05 13:36:11 -05001436 error = cdev_add(cdev, MKDEV(SCSI_GENERIC_MAJOR, sdp->index), 1);
Greg KH5e3c34c2006-01-18 16:17:46 -08001437 if (error)
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001438 goto cdev_add_err;
Greg KH5e3c34c2006-01-18 16:17:46 -08001439
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 sdp->cdev = cdev;
1441 if (sg_sysfs_valid) {
Tony Jonesee959b02008-02-22 00:13:36 +01001442 struct device *sg_class_member;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
Greg Kroah-Hartmand73a1a62008-07-21 20:03:34 -07001444 sg_class_member = device_create(sg_sysfs_class, cl_dev->parent,
1445 MKDEV(SCSI_GENERIC_MAJOR,
1446 sdp->index),
1447 sdp, "%s", disk->disk_name);
FUJITA Tomonorid07e0362008-01-15 13:18:00 +09001448 if (IS_ERR(sg_class_member)) {
1449 printk(KERN_ERR "sg_add: "
Tony Jonesee959b02008-02-22 00:13:36 +01001450 "device_create failed\n");
FUJITA Tomonorid07e0362008-01-15 13:18:00 +09001451 error = PTR_ERR(sg_class_member);
1452 goto cdev_add_err;
1453 }
FUJITA Tomonorid07e0362008-01-15 13:18:00 +09001454 error = sysfs_create_link(&scsidp->sdev_gendev.kobj,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 &sg_class_member->kobj, "generic");
1456 if (error)
1457 printk(KERN_ERR "sg_add: unable to make symlink "
James Bottomley7c07d612007-08-05 13:36:11 -05001458 "'generic' back to sg%d\n", sdp->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 } else
James Bottomley7c07d612007-08-05 13:36:11 -05001460 printk(KERN_WARNING "sg_add: sg_sys Invalid\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
James Bottomley9ccfc752005-10-02 11:45:08 -05001462 sdev_printk(KERN_NOTICE, scsidp,
James Bottomley7c07d612007-08-05 13:36:11 -05001463 "Attached scsi generic sg%d type %d\n", sdp->index,
1464 scsidp->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
Tony Jonesee959b02008-02-22 00:13:36 +01001466 dev_set_drvdata(cl_dev, sdp);
FUJITA Tomonoria24484f2008-01-15 13:17:47 +09001467
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 return 0;
1469
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001470cdev_add_err:
James Bottomley7c07d612007-08-05 13:36:11 -05001471 write_lock_irqsave(&sg_index_lock, iflags);
1472 idr_remove(&sg_index_idr, sdp->index);
1473 write_unlock_irqrestore(&sg_index_lock, iflags);
1474 kfree(sdp);
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001475
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476out:
1477 put_disk(disk);
1478 if (cdev)
1479 cdev_del(cdev);
1480 return error;
1481}
1482
Tony Battersbyc6517b792009-01-21 14:45:50 -05001483static void sg_device_destroy(struct kref *kref)
1484{
1485 struct sg_device *sdp = container_of(kref, struct sg_device, d_ref);
1486 unsigned long flags;
1487
1488 /* CAUTION! Note that the device can still be found via idr_find()
1489 * even though the refcount is 0. Therefore, do idr_remove() BEFORE
1490 * any other cleanup.
1491 */
1492
1493 write_lock_irqsave(&sg_index_lock, flags);
1494 idr_remove(&sg_index_idr, sdp->index);
1495 write_unlock_irqrestore(&sg_index_lock, flags);
1496
1497 SCSI_LOG_TIMEOUT(3,
1498 printk("sg_device_destroy: %s\n",
1499 sdp->disk->disk_name));
1500
1501 put_disk(sdp->disk);
1502 kfree(sdp);
1503}
1504
1505static void sg_remove(struct device *cl_dev, struct class_interface *cl_intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506{
Tony Jonesee959b02008-02-22 00:13:36 +01001507 struct scsi_device *scsidp = to_scsi_device(cl_dev->parent);
1508 Sg_device *sdp = dev_get_drvdata(cl_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 unsigned long iflags;
1510 Sg_fd *sfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
Tony Battersbyc6517b792009-01-21 14:45:50 -05001512 if (!sdp || sdp->detached)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
Tony Battersbyc6517b792009-01-21 14:45:50 -05001515 SCSI_LOG_TIMEOUT(3, printk("sg_remove: %s\n", sdp->disk->disk_name));
1516
1517 /* Need a write lock to set sdp->detached. */
James Bottomley7c07d612007-08-05 13:36:11 -05001518 write_lock_irqsave(&sg_index_lock, iflags);
Tony Battersbyc6517b792009-01-21 14:45:50 -05001519 sdp->detached = 1;
1520 for (sfp = sdp->headfp; sfp; sfp = sfp->nextfp) {
1521 wake_up_interruptible(&sfp->read_wait);
1522 kill_fasync(&sfp->async_qp, SIGPOLL, POLL_HUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 }
James Bottomley7c07d612007-08-05 13:36:11 -05001524 write_unlock_irqrestore(&sg_index_lock, iflags);
1525
1526 sysfs_remove_link(&scsidp->sdev_gendev.kobj, "generic");
Tony Jonesee959b02008-02-22 00:13:36 +01001527 device_destroy(sg_sysfs_class, MKDEV(SCSI_GENERIC_MAJOR, sdp->index));
James Bottomley7c07d612007-08-05 13:36:11 -05001528 cdev_del(sdp->cdev);
1529 sdp->cdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530
Tony Battersbyc6517b792009-01-21 14:45:50 -05001531 sg_put_dev(sdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532}
1533
Douglas Gilbert6460e752006-09-20 18:20:49 -04001534module_param_named(scatter_elem_sz, scatter_elem_sz, int, S_IRUGO | S_IWUSR);
1535module_param_named(def_reserved_size, def_reserved_size, int,
1536 S_IRUGO | S_IWUSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537module_param_named(allow_dio, sg_allow_dio, int, S_IRUGO | S_IWUSR);
1538
1539MODULE_AUTHOR("Douglas Gilbert");
1540MODULE_DESCRIPTION("SCSI generic (sg) driver");
1541MODULE_LICENSE("GPL");
1542MODULE_VERSION(SG_VERSION_STR);
Rene Hermanf018fa52006-03-08 00:14:20 -08001543MODULE_ALIAS_CHARDEV_MAJOR(SCSI_GENERIC_MAJOR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
Douglas Gilbert6460e752006-09-20 18:20:49 -04001545MODULE_PARM_DESC(scatter_elem_sz, "scatter gather element "
1546 "size (default: max(SG_SCATTER_SZ, PAGE_SIZE))");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547MODULE_PARM_DESC(def_reserved_size, "size of buffer reserved for each fd");
1548MODULE_PARM_DESC(allow_dio, "allow direct I/O (default: 0 (disallow))");
1549
1550static int __init
1551init_sg(void)
1552{
1553 int rc;
1554
Douglas Gilbert6460e752006-09-20 18:20:49 -04001555 if (scatter_elem_sz < PAGE_SIZE) {
1556 scatter_elem_sz = PAGE_SIZE;
1557 scatter_elem_sz_prev = scatter_elem_sz;
1558 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 if (def_reserved_size >= 0)
1560 sg_big_buff = def_reserved_size;
Douglas Gilbert6460e752006-09-20 18:20:49 -04001561 else
1562 def_reserved_size = sg_big_buff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563
1564 rc = register_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0),
1565 SG_MAX_DEVS, "sg");
1566 if (rc)
1567 return rc;
gregkh@suse.ded2538782005-03-23 09:55:22 -08001568 sg_sysfs_class = class_create(THIS_MODULE, "scsi_generic");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 if ( IS_ERR(sg_sysfs_class) ) {
1570 rc = PTR_ERR(sg_sysfs_class);
1571 goto err_out;
1572 }
1573 sg_sysfs_valid = 1;
1574 rc = scsi_register_interface(&sg_interface);
1575 if (0 == rc) {
1576#ifdef CONFIG_SCSI_PROC_FS
1577 sg_proc_init();
1578#endif /* CONFIG_SCSI_PROC_FS */
1579 return 0;
1580 }
gregkh@suse.ded2538782005-03-23 09:55:22 -08001581 class_destroy(sg_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582err_out:
1583 unregister_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0), SG_MAX_DEVS);
1584 return rc;
1585}
1586
1587static void __exit
1588exit_sg(void)
1589{
1590#ifdef CONFIG_SCSI_PROC_FS
1591 sg_proc_cleanup();
1592#endif /* CONFIG_SCSI_PROC_FS */
1593 scsi_unregister_interface(&sg_interface);
gregkh@suse.ded2538782005-03-23 09:55:22 -08001594 class_destroy(sg_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 sg_sysfs_valid = 0;
1596 unregister_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0),
1597 SG_MAX_DEVS);
James Bottomley7c07d612007-08-05 13:36:11 -05001598 idr_destroy(&sg_index_idr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599}
1600
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001601static int sg_start_req(Sg_request *srp, unsigned char *cmd)
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001602{
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001603 int res;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001604 struct request *rq;
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001605 Sg_fd *sfp = srp->parentfp;
1606 sg_io_hdr_t *hp = &srp->header;
1607 int dxfer_len = (int) hp->dxfer_len;
1608 int dxfer_dir = hp->dxfer_direction;
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001609 unsigned int iov_count = hp->iovec_count;
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001610 Sg_scatter_hold *req_schp = &srp->data;
1611 Sg_scatter_hold *rsv_schp = &sfp->reserve;
1612 struct request_queue *q = sfp->parentdp->device->request_queue;
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001613 struct rq_map_data *md, map_data;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001614 int rw = hp->dxfer_direction == SG_DXFER_TO_DEV ? WRITE : READ;
1615
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001616 SCSI_LOG_TIMEOUT(4, printk(KERN_INFO "sg_start_req: dxfer_len=%d\n",
1617 dxfer_len));
1618
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001619 rq = blk_get_request(q, rw, GFP_ATOMIC);
1620 if (!rq)
1621 return -ENOMEM;
1622
1623 memcpy(rq->cmd, cmd, hp->cmd_len);
1624
1625 rq->cmd_len = hp->cmd_len;
1626 rq->cmd_type = REQ_TYPE_BLOCK_PC;
1627
1628 srp->rq = rq;
1629 rq->end_io_data = srp;
1630 rq->sense = srp->sense_b;
1631 rq->retries = SG_DEFAULT_RETRIES;
1632
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 if ((dxfer_len <= 0) || (dxfer_dir == SG_DXFER_NONE))
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001634 return 0;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001635
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001636 if (sg_allow_dio && hp->flags & SG_FLAG_DIRECT_IO &&
1637 dxfer_dir != SG_DXFER_UNKNOWN && !iov_count &&
1638 !sfp->parentdp->device->host->unchecked_isa_dma &&
FUJITA Tomonori01cfcdd2008-08-28 15:05:59 +09001639 blk_rq_aligned(q, hp->dxferp, dxfer_len))
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001640 md = NULL;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001641 else
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001642 md = &map_data;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001643
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001644 if (md) {
1645 if (!sg_res_in_use(sfp) && dxfer_len <= rsv_schp->bufflen)
1646 sg_link_reserve(sfp, srp, dxfer_len);
1647 else {
1648 res = sg_build_indirect(req_schp, sfp, dxfer_len);
1649 if (res)
1650 return res;
1651 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001652
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001653 md->pages = req_schp->pages;
1654 md->page_order = req_schp->page_order;
1655 md->nr_entries = req_schp->k_use_sg;
FUJITA Tomonori56c451f2008-12-18 14:49:37 +09001656 md->offset = 0;
FUJITA Tomonori97ae77a2008-12-18 14:49:38 +09001657 md->null_mapped = hp->dxferp ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001659
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001660 if (iov_count)
1661 res = blk_rq_map_user_iov(q, rq, md, hp->dxferp, iov_count,
1662 hp->dxfer_len, GFP_ATOMIC);
1663 else
1664 res = blk_rq_map_user(q, rq, md, hp->dxferp,
1665 hp->dxfer_len, GFP_ATOMIC);
1666
1667 if (!res) {
1668 srp->bio = rq->bio;
1669
1670 if (!md) {
1671 req_schp->dio_in_use = 1;
1672 hp->info |= SG_INFO_DIRECT_IO;
1673 }
1674 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001675 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676}
1677
1678static void
1679sg_finish_rem_req(Sg_request * srp)
1680{
1681 Sg_fd *sfp = srp->parentfp;
1682 Sg_scatter_hold *req_schp = &srp->data;
1683
1684 SCSI_LOG_TIMEOUT(4, printk("sg_finish_rem_req: res_used=%d\n", (int) srp->res_used));
1685 if (srp->res_used)
1686 sg_unlink_reserve(sfp, srp);
1687 else
1688 sg_remove_scat(req_schp);
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001689
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001690 if (srp->rq) {
1691 if (srp->bio)
1692 blk_rq_unmap_user(srp->bio);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001693
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001694 blk_put_request(srp->rq);
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001695 }
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001696
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 sg_remove_request(sfp, srp);
1698}
1699
1700static int
1701sg_build_sgat(Sg_scatter_hold * schp, const Sg_fd * sfp, int tablesize)
1702{
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001703 int sg_bufflen = tablesize * sizeof(struct page *);
Al Viro2d20eaf2006-02-01 06:31:40 -05001704 gfp_t gfp_flags = GFP_ATOMIC | __GFP_NOWARN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001706 schp->pages = kzalloc(sg_bufflen, gfp_flags);
1707 if (!schp->pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 schp->sglist_len = sg_bufflen;
Mike Christied6b10342005-11-08 04:06:41 -06001710 return tablesize; /* number of scat_gath elements allocated */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711}
1712
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713static int
1714sg_build_indirect(Sg_scatter_hold * schp, Sg_fd * sfp, int buff_size)
1715{
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001716 int ret_sz = 0, i, k, rem_sz, num, mx_sc_elems;
Mike Christied6b10342005-11-08 04:06:41 -06001717 int sg_tablesize = sfp->parentdp->sg_tablesize;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001718 int blk_size = buff_size, order;
1719 gfp_t gfp_mask = GFP_ATOMIC | __GFP_COMP | __GFP_NOWARN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
Eric Sesterhennfb119932007-05-23 14:41:36 -07001721 if (blk_size < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 return -EFAULT;
1723 if (0 == blk_size)
1724 ++blk_size; /* don't know why */
1725/* round request up to next highest SG_SECTOR_SZ byte boundary */
1726 blk_size = (blk_size + SG_SECTOR_MSK) & (~SG_SECTOR_MSK);
1727 SCSI_LOG_TIMEOUT(4, printk("sg_build_indirect: buff_size=%d, blk_size=%d\n",
1728 buff_size, blk_size));
Mike Christied6b10342005-11-08 04:06:41 -06001729
1730 /* N.B. ret_sz carried into this block ... */
1731 mx_sc_elems = sg_build_sgat(schp, sfp, sg_tablesize);
1732 if (mx_sc_elems < 0)
1733 return mx_sc_elems; /* most likely -ENOMEM */
1734
Douglas Gilbert6460e752006-09-20 18:20:49 -04001735 num = scatter_elem_sz;
1736 if (unlikely(num != scatter_elem_sz_prev)) {
1737 if (num < PAGE_SIZE) {
1738 scatter_elem_sz = PAGE_SIZE;
1739 scatter_elem_sz_prev = PAGE_SIZE;
1740 } else
1741 scatter_elem_sz_prev = num;
1742 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001743
1744 if (sfp->low_dma)
1745 gfp_mask |= GFP_DMA;
1746
1747 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
1748 gfp_mask |= __GFP_ZERO;
1749
1750 order = get_order(num);
1751retry:
1752 ret_sz = 1 << (PAGE_SHIFT + order);
1753
1754 for (k = 0, rem_sz = blk_size; rem_sz > 0 && k < mx_sc_elems;
1755 k++, rem_sz -= ret_sz) {
1756
Douglas Gilbert6460e752006-09-20 18:20:49 -04001757 num = (rem_sz > scatter_elem_sz_prev) ?
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001758 scatter_elem_sz_prev : rem_sz;
1759
1760 schp->pages[k] = alloc_pages(gfp_mask, order);
1761 if (!schp->pages[k])
1762 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763
Douglas Gilbert6460e752006-09-20 18:20:49 -04001764 if (num == scatter_elem_sz_prev) {
1765 if (unlikely(ret_sz > scatter_elem_sz_prev)) {
1766 scatter_elem_sz = ret_sz;
1767 scatter_elem_sz_prev = ret_sz;
1768 }
1769 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
Douglas Gilbert7ca63cb2006-10-27 17:47:49 -04001771 SCSI_LOG_TIMEOUT(5, printk("sg_build_indirect: k=%d, num=%d, "
1772 "ret_sz=%d\n", k, num, ret_sz));
Mike Christied6b10342005-11-08 04:06:41 -06001773 } /* end of for loop */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001775 schp->page_order = order;
Mike Christied6b10342005-11-08 04:06:41 -06001776 schp->k_use_sg = k;
Douglas Gilbert7ca63cb2006-10-27 17:47:49 -04001777 SCSI_LOG_TIMEOUT(5, printk("sg_build_indirect: k_use_sg=%d, "
1778 "rem_sz=%d\n", k, rem_sz));
Mike Christied6b10342005-11-08 04:06:41 -06001779
1780 schp->bufflen = blk_size;
1781 if (rem_sz > 0) /* must have failed */
1782 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 return 0;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001784out:
1785 for (i = 0; i < k; i++)
1786 __free_pages(schp->pages[k], order);
1787
1788 if (--order >= 0)
1789 goto retry;
1790
1791 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792}
1793
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794static void
1795sg_remove_scat(Sg_scatter_hold * schp)
1796{
1797 SCSI_LOG_TIMEOUT(4, printk("sg_remove_scat: k_use_sg=%d\n", schp->k_use_sg));
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001798 if (schp->pages && schp->sglist_len > 0) {
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001799 if (!schp->dio_in_use) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 int k;
1801
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001802 for (k = 0; k < schp->k_use_sg && schp->pages[k]; k++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 SCSI_LOG_TIMEOUT(5, printk(
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001804 "sg_remove_scat: k=%d, pg=0x%p\n",
1805 k, schp->pages[k]));
1806 __free_pages(schp->pages[k], schp->page_order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 }
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001808
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001809 kfree(schp->pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 }
Mike Christied6b10342005-11-08 04:06:41 -06001811 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 memset(schp, 0, sizeof (*schp));
1813}
1814
1815static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816sg_read_oxfer(Sg_request * srp, char __user *outp, int num_read_xfer)
1817{
1818 Sg_scatter_hold *schp = &srp->data;
Mike Christied6b10342005-11-08 04:06:41 -06001819 int k, num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820
1821 SCSI_LOG_TIMEOUT(4, printk("sg_read_oxfer: num_read_xfer=%d\n",
1822 num_read_xfer));
1823 if ((!outp) || (num_read_xfer <= 0))
1824 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001826 num = 1 << (PAGE_SHIFT + schp->page_order);
1827 for (k = 0; k < schp->k_use_sg && schp->pages[k]; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06001828 if (num > num_read_xfer) {
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001829 if (__copy_to_user(outp, page_address(schp->pages[k]),
Mike Christied6b10342005-11-08 04:06:41 -06001830 num_read_xfer))
1831 return -EFAULT;
1832 break;
1833 } else {
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001834 if (__copy_to_user(outp, page_address(schp->pages[k]),
Mike Christied6b10342005-11-08 04:06:41 -06001835 num))
1836 return -EFAULT;
1837 num_read_xfer -= num;
1838 if (num_read_xfer <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 break;
Mike Christied6b10342005-11-08 04:06:41 -06001840 outp += num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 }
Mike Christied6b10342005-11-08 04:06:41 -06001843
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 return 0;
1845}
1846
1847static void
1848sg_build_reserve(Sg_fd * sfp, int req_size)
1849{
1850 Sg_scatter_hold *schp = &sfp->reserve;
1851
1852 SCSI_LOG_TIMEOUT(4, printk("sg_build_reserve: req_size=%d\n", req_size));
1853 do {
1854 if (req_size < PAGE_SIZE)
1855 req_size = PAGE_SIZE;
1856 if (0 == sg_build_indirect(schp, sfp, req_size))
1857 return;
1858 else
1859 sg_remove_scat(schp);
1860 req_size >>= 1; /* divide by 2 */
1861 } while (req_size > (PAGE_SIZE / 2));
1862}
1863
1864static void
1865sg_link_reserve(Sg_fd * sfp, Sg_request * srp, int size)
1866{
1867 Sg_scatter_hold *req_schp = &srp->data;
1868 Sg_scatter_hold *rsv_schp = &sfp->reserve;
Mike Christied6b10342005-11-08 04:06:41 -06001869 int k, num, rem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870
1871 srp->res_used = 1;
1872 SCSI_LOG_TIMEOUT(4, printk("sg_link_reserve: size=%d\n", size));
Brian Kingeca7be52006-02-14 12:42:24 -06001873 rem = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001875 num = 1 << (PAGE_SHIFT + rsv_schp->page_order);
1876 for (k = 0; k < rsv_schp->k_use_sg; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06001877 if (rem <= num) {
Mike Christied6b10342005-11-08 04:06:41 -06001878 req_schp->k_use_sg = k + 1;
1879 req_schp->sglist_len = rsv_schp->sglist_len;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001880 req_schp->pages = rsv_schp->pages;
Mike Christied6b10342005-11-08 04:06:41 -06001881
1882 req_schp->bufflen = size;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001883 req_schp->page_order = rsv_schp->page_order;
Mike Christied6b10342005-11-08 04:06:41 -06001884 break;
1885 } else
1886 rem -= num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 }
Mike Christied6b10342005-11-08 04:06:41 -06001888
1889 if (k >= rsv_schp->k_use_sg)
1890 SCSI_LOG_TIMEOUT(1, printk("sg_link_reserve: BAD size\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891}
1892
1893static void
1894sg_unlink_reserve(Sg_fd * sfp, Sg_request * srp)
1895{
1896 Sg_scatter_hold *req_schp = &srp->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897
1898 SCSI_LOG_TIMEOUT(4, printk("sg_unlink_reserve: req->k_use_sg=%d\n",
1899 (int) req_schp->k_use_sg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 req_schp->k_use_sg = 0;
1901 req_schp->bufflen = 0;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001902 req_schp->pages = NULL;
1903 req_schp->page_order = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 req_schp->sglist_len = 0;
1905 sfp->save_scat_len = 0;
1906 srp->res_used = 0;
1907}
1908
1909static Sg_request *
1910sg_get_rq_mark(Sg_fd * sfp, int pack_id)
1911{
1912 Sg_request *resp;
1913 unsigned long iflags;
1914
1915 write_lock_irqsave(&sfp->rq_list_lock, iflags);
1916 for (resp = sfp->headrp; resp; resp = resp->nextrp) {
1917 /* look for requests that are ready + not SG_IO owned */
1918 if ((1 == resp->done) && (!resp->sg_io_owned) &&
1919 ((-1 == pack_id) || (resp->header.pack_id == pack_id))) {
1920 resp->done = 2; /* guard against other readers */
1921 break;
1922 }
1923 }
1924 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1925 return resp;
1926}
1927
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928/* always adds to end of list */
1929static Sg_request *
1930sg_add_request(Sg_fd * sfp)
1931{
1932 int k;
1933 unsigned long iflags;
1934 Sg_request *resp;
1935 Sg_request *rp = sfp->req_arr;
1936
1937 write_lock_irqsave(&sfp->rq_list_lock, iflags);
1938 resp = sfp->headrp;
1939 if (!resp) {
1940 memset(rp, 0, sizeof (Sg_request));
1941 rp->parentfp = sfp;
1942 resp = rp;
1943 sfp->headrp = resp;
1944 } else {
1945 if (0 == sfp->cmd_q)
1946 resp = NULL; /* command queuing disallowed */
1947 else {
1948 for (k = 0; k < SG_MAX_QUEUE; ++k, ++rp) {
1949 if (!rp->parentfp)
1950 break;
1951 }
1952 if (k < SG_MAX_QUEUE) {
1953 memset(rp, 0, sizeof (Sg_request));
1954 rp->parentfp = sfp;
1955 while (resp->nextrp)
1956 resp = resp->nextrp;
1957 resp->nextrp = rp;
1958 resp = rp;
1959 } else
1960 resp = NULL;
1961 }
1962 }
1963 if (resp) {
1964 resp->nextrp = NULL;
cb59e842005-04-02 13:51:23 -06001965 resp->header.duration = jiffies_to_msecs(jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 }
1967 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1968 return resp;
1969}
1970
1971/* Return of 1 for found; 0 for not found */
1972static int
1973sg_remove_request(Sg_fd * sfp, Sg_request * srp)
1974{
1975 Sg_request *prev_rp;
1976 Sg_request *rp;
1977 unsigned long iflags;
1978 int res = 0;
1979
1980 if ((!sfp) || (!srp) || (!sfp->headrp))
1981 return res;
1982 write_lock_irqsave(&sfp->rq_list_lock, iflags);
1983 prev_rp = sfp->headrp;
1984 if (srp == prev_rp) {
1985 sfp->headrp = prev_rp->nextrp;
1986 prev_rp->parentfp = NULL;
1987 res = 1;
1988 } else {
1989 while ((rp = prev_rp->nextrp)) {
1990 if (srp == rp) {
1991 prev_rp->nextrp = rp->nextrp;
1992 rp->parentfp = NULL;
1993 res = 1;
1994 break;
1995 }
1996 prev_rp = rp;
1997 }
1998 }
1999 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
2000 return res;
2001}
2002
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003static Sg_fd *
2004sg_add_sfp(Sg_device * sdp, int dev)
2005{
2006 Sg_fd *sfp;
2007 unsigned long iflags;
Alan Stern44ec9542007-02-20 11:01:57 -05002008 int bufflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009
Mike Christied6b10342005-11-08 04:06:41 -06002010 sfp = kzalloc(sizeof(*sfp), GFP_ATOMIC | __GFP_NOWARN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 if (!sfp)
2012 return NULL;
Mike Christied6b10342005-11-08 04:06:41 -06002013
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 init_waitqueue_head(&sfp->read_wait);
2015 rwlock_init(&sfp->rq_list_lock);
2016
Tony Battersbyc6517b792009-01-21 14:45:50 -05002017 kref_init(&sfp->f_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 sfp->timeout = SG_DEFAULT_TIMEOUT;
2019 sfp->timeout_user = SG_DEFAULT_TIMEOUT_USER;
2020 sfp->force_packid = SG_DEF_FORCE_PACK_ID;
2021 sfp->low_dma = (SG_DEF_FORCE_LOW_DMA == 0) ?
2022 sdp->device->host->unchecked_isa_dma : 1;
2023 sfp->cmd_q = SG_DEF_COMMAND_Q;
2024 sfp->keep_orphan = SG_DEF_KEEP_ORPHAN;
2025 sfp->parentdp = sdp;
James Bottomley7c07d612007-08-05 13:36:11 -05002026 write_lock_irqsave(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 if (!sdp->headfp)
2028 sdp->headfp = sfp;
2029 else { /* add to tail of existing list */
2030 Sg_fd *pfp = sdp->headfp;
2031 while (pfp->nextfp)
2032 pfp = pfp->nextfp;
2033 pfp->nextfp = sfp;
2034 }
James Bottomley7c07d612007-08-05 13:36:11 -05002035 write_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 SCSI_LOG_TIMEOUT(3, printk("sg_add_sfp: sfp=0x%p\n", sfp));
Douglas Gilbert6460e752006-09-20 18:20:49 -04002037 if (unlikely(sg_big_buff != def_reserved_size))
2038 sg_big_buff = def_reserved_size;
2039
Alan Stern44ec9542007-02-20 11:01:57 -05002040 bufflen = min_t(int, sg_big_buff,
2041 sdp->device->request_queue->max_sectors * 512);
2042 sg_build_reserve(sfp, bufflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 SCSI_LOG_TIMEOUT(3, printk("sg_add_sfp: bufflen=%d, k_use_sg=%d\n",
2044 sfp->reserve.bufflen, sfp->reserve.k_use_sg));
Tony Battersbyc6517b792009-01-21 14:45:50 -05002045
2046 kref_get(&sdp->d_ref);
2047 __module_get(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 return sfp;
2049}
2050
Tony Battersbyc6517b792009-01-21 14:45:50 -05002051static void sg_remove_sfp_usercontext(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052{
Tony Battersbyc6517b792009-01-21 14:45:50 -05002053 struct sg_fd *sfp = container_of(work, struct sg_fd, ew.work);
2054 struct sg_device *sdp = sfp->parentdp;
2055
2056 /* Cleanup any responses which were never read(). */
2057 while (sfp->headrp)
2058 sg_finish_rem_req(sfp->headrp);
2059
2060 if (sfp->reserve.bufflen > 0) {
2061 SCSI_LOG_TIMEOUT(6,
2062 printk("sg_remove_sfp: bufflen=%d, k_use_sg=%d\n",
2063 (int) sfp->reserve.bufflen,
2064 (int) sfp->reserve.k_use_sg));
2065 sg_remove_scat(&sfp->reserve);
2066 }
2067
2068 SCSI_LOG_TIMEOUT(6,
2069 printk("sg_remove_sfp: %s, sfp=0x%p\n",
2070 sdp->disk->disk_name,
2071 sfp));
2072 kfree(sfp);
2073
2074 scsi_device_put(sdp->device);
2075 sg_put_dev(sdp);
2076 module_put(THIS_MODULE);
2077}
2078
2079static void sg_remove_sfp(struct kref *kref)
2080{
2081 struct sg_fd *sfp = container_of(kref, struct sg_fd, f_ref);
2082 struct sg_device *sdp = sfp->parentdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 Sg_fd *fp;
2084 Sg_fd *prev_fp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002085 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086
Tony Battersbyc6517b792009-01-21 14:45:50 -05002087 /* CAUTION! Note that sfp can still be found by walking sdp->headfp
2088 * even though the refcount is now 0. Therefore, unlink sfp from
2089 * sdp->headfp BEFORE doing any other cleanup.
2090 */
2091
2092 write_lock_irqsave(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 prev_fp = sdp->headfp;
2094 if (sfp == prev_fp)
2095 sdp->headfp = prev_fp->nextfp;
2096 else {
2097 while ((fp = prev_fp->nextfp)) {
2098 if (sfp == fp) {
2099 prev_fp->nextfp = fp->nextfp;
2100 break;
2101 }
2102 prev_fp = fp;
2103 }
2104 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05002105 write_unlock_irqrestore(&sg_index_lock, iflags);
2106 wake_up_interruptible(&sdp->o_excl_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107
Tony Battersbyc6517b792009-01-21 14:45:50 -05002108 execute_in_process_context(sg_remove_sfp_usercontext, &sfp->ew);
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
Tony Battersbyc6517b792009-01-21 14:45:50 -05002489 for (k = 0, fp = sdp->headfp; fp != NULL; ++k, fp = fp->nextfp) {
2490 read_lock(&fp->rq_list_lock); /* irqs already disabled */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 seq_printf(s, " FD(%d): timeout=%dms bufflen=%d "
2492 "(res)sgat=%d low_dma=%d\n", k + 1,
2493 jiffies_to_msecs(fp->timeout),
2494 fp->reserve.bufflen,
2495 (int) fp->reserve.k_use_sg,
2496 (int) fp->low_dma);
2497 seq_printf(s, " cmd_q=%d f_packid=%d k_orphan=%d closed=%d\n",
2498 (int) fp->cmd_q, (int) fp->force_packid,
2499 (int) fp->keep_orphan, (int) fp->closed);
Tony Battersbyc6517b792009-01-21 14:45:50 -05002500 for (m = 0, srp = fp->headrp;
2501 srp != NULL;
2502 ++m, srp = srp->nextrp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 hp = &srp->header;
2504 new_interface = (hp->interface_id == '\0') ? 0 : 1;
2505 if (srp->res_used) {
2506 if (new_interface &&
2507 (SG_FLAG_MMAP_IO & hp->flags))
2508 cp = " mmap>> ";
2509 else
2510 cp = " rb>> ";
2511 } else {
2512 if (SG_INFO_DIRECT_IO_MASK & hp->info)
2513 cp = " dio>> ";
2514 else
2515 cp = " ";
2516 }
2517 seq_printf(s, cp);
Mike Christied6b10342005-11-08 04:06:41 -06002518 blen = srp->data.bufflen;
2519 usg = srp->data.k_use_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 seq_printf(s, srp->done ?
2521 ((1 == srp->done) ? "rcv:" : "fin:")
Mike Christied6b10342005-11-08 04:06:41 -06002522 : "act:");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 seq_printf(s, " id=%d blen=%d",
2524 srp->header.pack_id, blen);
2525 if (srp->done)
2526 seq_printf(s, " dur=%d", hp->duration);
cb59e842005-04-02 13:51:23 -06002527 else {
2528 ms = jiffies_to_msecs(jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 seq_printf(s, " t_o/elap=%d/%d",
cb59e842005-04-02 13:51:23 -06002530 (new_interface ? hp->timeout :
2531 jiffies_to_msecs(fp->timeout)),
2532 (ms > hp->duration ? ms - hp->duration : 0));
2533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 seq_printf(s, "ms sgat=%d op=0x%02x\n", usg,
2535 (int) srp->data.cmd_opcode);
2536 }
2537 if (0 == m)
2538 seq_printf(s, " No requests active\n");
Tony Battersbyc6517b792009-01-21 14:45:50 -05002539 read_unlock(&fp->rq_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 }
2541}
2542
2543static int sg_proc_open_debug(struct inode *inode, struct file *file)
2544{
2545 return seq_open(file, &debug_seq_ops);
2546}
2547
2548static int sg_proc_seq_show_debug(struct seq_file *s, void *v)
2549{
2550 struct sg_proc_deviter * it = (struct sg_proc_deviter *) v;
2551 Sg_device *sdp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002552 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553
2554 if (it && (0 == it->index)) {
James Bottomley7c07d612007-08-05 13:36:11 -05002555 seq_printf(s, "max_active_device=%d(origin 1)\n",
2556 (int)it->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 seq_printf(s, " def_reserved_size=%d\n", sg_big_buff);
2558 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05002559
2560 read_lock_irqsave(&sg_index_lock, iflags);
2561 sdp = it ? sg_lookup_dev(it->index) : NULL;
2562 if (sdp && sdp->headfp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 struct scsi_device *scsidp = sdp->device;
2564
Tony Battersbyc6517b792009-01-21 14:45:50 -05002565 seq_printf(s, " >>> device=%s ", sdp->disk->disk_name);
2566 if (sdp->detached)
2567 seq_printf(s, "detached pending close ");
2568 else
2569 seq_printf
2570 (s, "scsi%d chan=%d id=%d lun=%d em=%d",
2571 scsidp->host->host_no,
2572 scsidp->channel, scsidp->id,
2573 scsidp->lun,
2574 scsidp->host->hostt->emulated);
2575 seq_printf(s, " sg_tablesize=%d excl=%d\n",
2576 sdp->sg_tablesize, sdp->exclude);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 sg_proc_debug_helper(s, sdp);
2578 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05002579 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580 return 0;
2581}
2582
2583#endif /* CONFIG_SCSI_PROC_FS */
2584
2585module_init(init_sg);
2586module_exit(exit_sg);