blob: cce7575063839abc5aebd02f4f03933508b3039c [file] [log] [blame]
Thomas Gleixner8d7c56d2019-05-20 19:08:10 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * History:
4 * Started: Aug 9 by Lawrence Foard (entropy@world.std.com),
5 * to allow user process control of SCSI devices.
6 * Development Sponsored by Killy Corp. NY NY
7 *
8 * Original driver (sg.c):
9 * Copyright (C) 1992 Lawrence Foard
10 * Version 2 and 3 extensions to driver:
Douglas Gilbert65c26a02014-06-03 13:18:18 -040011 * Copyright (C) 1998 - 2014 Douglas Gilbert
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 */
13
Douglas Gilbert65c26a02014-06-03 13:18:18 -040014static int sg_version_num = 30536; /* 2 digits for each component */
15#define SG_VERSION_STR "3.5.36"
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
17/*
Douglas Gilbert65c26a02014-06-03 13:18:18 -040018 * D. P. Gilbert (dgilbert@interlog.com), notes:
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * - scsi logging is available via SCSI_LOG_TIMEOUT macros. First
20 * the kernel/module needs to be built with CONFIG_SCSI_LOGGING
21 * (otherwise the macros compile to empty statements).
22 *
23 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/module.h>
25
26#include <linux/fs.h>
27#include <linux/kernel.h>
28#include <linux/sched.h>
29#include <linux/string.h>
30#include <linux/mm.h>
31#include <linux/errno.h>
32#include <linux/mtio.h>
33#include <linux/ioctl.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/fcntl.h>
36#include <linux/init.h>
37#include <linux/poll.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/moduleparam.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/cdev.h>
James Bottomley7c07d612007-08-05 13:36:11 -050040#include <linux/idr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/seq_file.h>
42#include <linux/blkdev.h>
43#include <linux/delay.h>
Christof Schmitt6da127a2008-01-11 10:09:43 +010044#include <linux/blktrace_api.h>
Arnd Bergmannc45d15d2010-06-02 14:28:52 +020045#include <linux/mutex.h>
Douglas Gilbertcc833ac2014-06-25 14:08:03 +020046#include <linux/atomic.h>
Christian Dietrich2fe038e2011-06-04 17:36:10 +020047#include <linux/ratelimit.h>
Christoph Hellwige2e40f22015-02-22 08:58:50 -080048#include <linux/uio.h>
Jann Horn26b5b872018-06-25 16:25:44 +020049#include <linux/cred.h> /* for sg_check_file_access() */
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51#include "scsi.h"
db9dff32005-04-03 14:53:59 -050052#include <scsi/scsi_dbg.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <scsi/scsi_host.h>
54#include <scsi/scsi_driver.h>
55#include <scsi/scsi_ioctl.h>
56#include <scsi/sg.h>
57
58#include "scsi_logging.h"
59
60#ifdef CONFIG_SCSI_PROC_FS
61#include <linux/proc_fs.h>
Douglas Gilbert65c26a02014-06-03 13:18:18 -040062static char *sg_version_date = "20140603";
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64static int sg_proc_init(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#endif
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#define SG_ALLOW_DIO_DEF 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69#define SG_MAX_DEVS 32768
70
Douglas Gilbert65c26a02014-06-03 13:18:18 -040071/* SG_MAX_CDB_SIZE should be 260 (spc4r37 section 3.1.30) however the type
72 * of sg_io_hdr::cmd_len can only represent 255. All SCSI commands greater
73 * than 16 bytes are "variable length" whose length is a multiple of 4
74 */
75#define SG_MAX_CDB_SIZE 252
76
Paul Burtonf8630bd72016-08-19 17:43:57 +010077#define SG_DEFAULT_TIMEOUT mult_frac(SG_DEFAULT_TIMEOUT_USER, HZ, USER_HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79int sg_big_buff = SG_DEF_RESERVED_SIZE;
80/* N.B. This variable is readable and writeable via
81 /proc/scsi/sg/def_reserved_size . Each time sg_open() is called a buffer
82 of this size (or less if there is not enough memory) will be reserved
83 for use by this file descriptor. [Deprecated usage: this variable is also
84 readable via /proc/sys/kernel/sg-big-buff if the sg driver is built into
85 the kernel (i.e. it is not a module).] */
86static int def_reserved_size = -1; /* picks up init parameter */
87static int sg_allow_dio = SG_ALLOW_DIO_DEF;
88
Douglas Gilbert6460e752006-09-20 18:20:49 -040089static int scatter_elem_sz = SG_SCATTER_SZ;
90static int scatter_elem_sz_prev = SG_SCATTER_SZ;
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092#define SG_SECTOR_SZ 512
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Douglas Gilbertcc833ac2014-06-25 14:08:03 +020094static int sg_add_device(struct device *, struct class_interface *);
95static void sg_remove_device(struct device *, struct class_interface *);
James Bottomley98481ff2013-10-25 10:26:38 +010096
James Bottomley7c07d612007-08-05 13:36:11 -050097static DEFINE_IDR(sg_index_idr);
James Bottomleyc0d3b9c2013-10-25 10:21:57 +010098static DEFINE_RWLOCK(sg_index_lock); /* Also used to lock
99 file descriptor list for device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101static struct class_interface sg_interface = {
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200102 .add_dev = sg_add_device,
103 .remove_dev = sg_remove_device,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104};
105
106typedef struct sg_scatter_hold { /* holding area for scsi scatter gather info */
107 unsigned short k_use_sg; /* Count of kernel scatter-gather pieces */
FUJITA Tomonoriea312552007-08-06 00:31:24 +0900108 unsigned sglist_len; /* size of malloc'd scatter-gather list ++ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 unsigned bufflen; /* Size of (aggregate) data buffer */
FUJITA Tomonori10db10d2008-08-29 12:32:18 +0200110 struct page **pages;
111 int page_order;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 char dio_in_use; /* 0->indirect IO (or mmap), 1->dio */
113 unsigned char cmd_opcode; /* first byte of command */
114} Sg_scatter_hold;
115
116struct sg_device; /* forward declarations */
117struct sg_fd;
118
119typedef struct sg_request { /* SG_MAX_QUEUE requests outstanding per file */
Hannes Reinecke109bade2017-04-07 09:34:16 +0200120 struct list_head entry; /* list entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 struct sg_fd *parentfp; /* NULL -> not in use */
122 Sg_scatter_hold data; /* hold buffer, perhaps scatter list */
123 sg_io_hdr_t header; /* scsi command+info, see <scsi/sg.h> */
Mike Christied6b10342005-11-08 04:06:41 -0600124 unsigned char sense_b[SCSI_SENSE_BUFFERSIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 char res_used; /* 1 -> using reserve buffer, 0 -> not ... */
126 char orphan; /* 1 -> drop on sight, 0 -> normal */
127 char sg_io_owned; /* 1 -> packet belongs to SG_IO */
Jörn Engel6acddc52012-04-12 17:33:58 -0400128 /* done protected by rq_list_lock */
129 char done; /* 0->before bh, 1->before read, 2->read */
FUJITA Tomonori10865df2008-08-28 16:17:07 +0900130 struct request *rq;
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +0900131 struct bio *bio;
FUJITA Tomonoric96952e2009-02-04 11:36:27 +0900132 struct execute_work ew;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133} Sg_request;
134
135typedef struct sg_fd { /* holds the state of a file descriptor */
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200136 struct list_head sfd_siblings; /* protected by device's sfd_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 struct sg_device *parentdp; /* owning device */
138 wait_queue_head_t read_wait; /* queue read until command done */
139 rwlock_t rq_list_lock; /* protect access to list in req_arr */
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +0200140 struct mutex f_mutex; /* protect against changes in this fd */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 int timeout; /* defaults to SG_DEFAULT_TIMEOUT */
142 int timeout_user; /* defaults to SG_DEFAULT_TIMEOUT_USER */
143 Sg_scatter_hold reserve; /* buffer held for this file descriptor */
Hannes Reinecke109bade2017-04-07 09:34:16 +0200144 struct list_head rq_list; /* head of request list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 struct fasync_struct *async_qp; /* used by asynchronous notification */
146 Sg_request req_arr[SG_MAX_QUEUE]; /* used as singly-linked list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 char force_packid; /* 1 -> pack_id input to read(), 0 -> ignored */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 char cmd_q; /* 1 -> allow command queuing, 0 -> don't */
Douglas Gilbert65c26a02014-06-03 13:18:18 -0400149 unsigned char next_cmd_len; /* 0: automatic, >0: use on next write() */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 char keep_orphan; /* 0 -> drop orphan (def), 1 -> keep for read() */
151 char mmap_called; /* 0 -> mmap() never called on this fd */
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +0200152 char res_in_use; /* 1 -> 'reserve' array in use */
Tony Battersbyc6517b792009-01-21 14:45:50 -0500153 struct kref f_ref;
154 struct execute_work ew;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155} Sg_fd;
156
157typedef struct sg_device { /* holds the state of each scsi generic device */
158 struct scsi_device *device;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200159 wait_queue_head_t open_wait; /* queue open() when O_EXCL present */
160 struct mutex open_rel_lock; /* held when in open() or release() */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 int sg_tablesize; /* adapter's max scatter-gather table size */
James Bottomley7c07d612007-08-05 13:36:11 -0500162 u32 index; /* device index number */
FUJITA Tomonori3442f802009-02-16 13:26:53 +0900163 struct list_head sfds;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200164 rwlock_t sfd_lock; /* protect access to sfd list */
165 atomic_t detaching; /* 0->device usable, 1->device detaching */
166 bool exclude; /* 1->open(O_EXCL) succeeded and is active */
167 int open_cnt; /* count of opens (perhaps < num(sfds) ) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 char sgdebug; /* 0->off, 1->sense, 9->dump dev, 10-> all devs */
169 struct gendisk *disk;
170 struct cdev * cdev; /* char_dev [sysfs: /sys/cdev/major/sg<n>] */
Tony Battersbyc6517b792009-01-21 14:45:50 -0500171 struct kref d_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172} Sg_device;
173
Mike Christied6b10342005-11-08 04:06:41 -0600174/* tasklet or soft irq callback */
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200175static void sg_rq_end_io(struct request *rq, blk_status_t status);
FUJITA Tomonori10865df2008-08-28 16:17:07 +0900176static int sg_start_req(Sg_request *srp, unsigned char *cmd);
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +0900177static int sg_finish_rem_req(Sg_request * srp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178static int sg_build_indirect(Sg_scatter_hold * schp, Sg_fd * sfp, int buff_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179static ssize_t sg_new_read(Sg_fd * sfp, char __user *buf, size_t count,
180 Sg_request * srp);
Adel Gadllah0b07de82008-06-26 13:48:27 +0200181static ssize_t sg_new_write(Sg_fd *sfp, struct file *file,
182 const char __user *buf, size_t count, int blocking,
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500183 int read_only, int sg_io_owned, Sg_request **o_srp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184static int sg_common_write(Sg_fd * sfp, Sg_request * srp,
185 unsigned char *cmnd, int timeout, int blocking);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186static int sg_read_oxfer(Sg_request * srp, char __user *outp, int num_read_xfer);
Hannes Reinecke95e159d2014-06-25 16:39:55 +0200187static void sg_remove_scat(Sg_fd * sfp, Sg_scatter_hold * schp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188static void sg_build_reserve(Sg_fd * sfp, int req_size);
189static void sg_link_reserve(Sg_fd * sfp, Sg_request * srp, int size);
190static void sg_unlink_reserve(Sg_fd * sfp, Sg_request * srp);
Hannes Reinecke95e159d2014-06-25 16:39:55 +0200191static Sg_fd *sg_add_sfp(Sg_device * sdp);
Tony Battersbyc6517b792009-01-21 14:45:50 -0500192static void sg_remove_sfp(struct kref *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193static Sg_request *sg_get_rq_mark(Sg_fd * sfp, int pack_id);
194static Sg_request *sg_add_request(Sg_fd * sfp);
195static int sg_remove_request(Sg_fd * sfp, Sg_request * srp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196static Sg_device *sg_get_dev(int dev);
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200197static void sg_device_destroy(struct kref *kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199#define SZ_SG_HEADER sizeof(struct sg_header)
200#define SZ_SG_IO_HDR sizeof(sg_io_hdr_t)
201#define SZ_SG_IOVEC sizeof(sg_iovec_t)
202#define SZ_SG_REQ_INFO sizeof(sg_req_info_t)
203
Hannes Reinecke95e159d2014-06-25 16:39:55 +0200204#define sg_printk(prefix, sdp, fmt, a...) \
Hannes Reinecke22e0d992014-10-24 14:26:44 +0200205 sdev_prefix_printk(prefix, (sdp)->device, \
206 (sdp)->disk->disk_name, fmt, ##a)
Hannes Reinecke95e159d2014-06-25 16:39:55 +0200207
Jann Horn26b5b872018-06-25 16:25:44 +0200208/*
209 * The SCSI interfaces that use read() and write() as an asynchronous variant of
210 * ioctl(..., SG_IO, ...) are fundamentally unsafe, since there are lots of ways
211 * to trigger read() and write() calls from various contexts with elevated
212 * privileges. This can lead to kernel memory corruption (e.g. if these
213 * interfaces are called through splice()) and privilege escalation inside
214 * userspace (e.g. if a process with access to such a device passes a file
215 * descriptor to a SUID binary as stdin/stdout/stderr).
216 *
217 * This function provides protection for the legacy API by restricting the
218 * calling context.
219 */
220static int sg_check_file_access(struct file *filp, const char *caller)
221{
222 if (filp->f_cred != current_real_cred()) {
223 pr_err_once("%s: process %d (%s) changed security contexts after opening file descriptor, this is not allowed.\n",
224 caller, task_tgid_vnr(current), current->comm);
225 return -EPERM;
226 }
227 if (uaccess_kernel()) {
228 pr_err_once("%s: process %d (%s) called from kernel context, this is not allowed.\n",
229 caller, task_tgid_vnr(current), current->comm);
230 return -EACCES;
231 }
232 return 0;
233}
234
FUJITA Tomonori14e507b2008-07-26 18:03:24 +0900235static int sg_allow_access(struct file *filp, unsigned char *cmd)
236{
Joe Perches35df8392010-09-04 18:52:46 -0700237 struct sg_fd *sfp = filp->private_data;
FUJITA Tomonori14e507b2008-07-26 18:03:24 +0900238
239 if (sfp->parentdp->device->type == TYPE_SCANNER)
240 return 0;
241
Christoph Hellwigf00c4d82017-11-05 10:36:31 +0300242 return blk_verify_command(cmd, filp->f_mode);
FUJITA Tomonori14e507b2008-07-26 18:03:24 +0900243}
244
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200245static int
246open_wait(Sg_device *sdp, int flags)
James Bottomley98481ff2013-10-25 10:26:38 +0100247{
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200248 int retval = 0;
James Bottomley98481ff2013-10-25 10:26:38 +0100249
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200250 if (flags & O_EXCL) {
251 while (sdp->open_cnt > 0) {
252 mutex_unlock(&sdp->open_rel_lock);
253 retval = wait_event_interruptible(sdp->open_wait,
254 (atomic_read(&sdp->detaching) ||
255 !sdp->open_cnt));
256 mutex_lock(&sdp->open_rel_lock);
257
258 if (retval) /* -ERESTARTSYS */
259 return retval;
260 if (atomic_read(&sdp->detaching))
261 return -ENODEV;
262 }
263 } else {
264 while (sdp->exclude) {
265 mutex_unlock(&sdp->open_rel_lock);
266 retval = wait_event_interruptible(sdp->open_wait,
267 (atomic_read(&sdp->detaching) ||
268 !sdp->exclude));
269 mutex_lock(&sdp->open_rel_lock);
270
271 if (retval) /* -ERESTARTSYS */
272 return retval;
273 if (atomic_read(&sdp->detaching))
274 return -ENODEV;
275 }
276 }
277
278 return retval;
James Bottomley98481ff2013-10-25 10:26:38 +0100279}
280
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200281/* Returns 0 on success, else a negated errno value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282static int
283sg_open(struct inode *inode, struct file *filp)
284{
285 int dev = iminor(inode);
286 int flags = filp->f_flags;
Mike Christied6b10342005-11-08 04:06:41 -0600287 struct request_queue *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 Sg_device *sdp;
289 Sg_fd *sfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 int retval;
291
292 nonseekable_open(inode, filp);
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200293 if ((flags & O_EXCL) && (O_RDONLY == (flags & O_ACCMODE)))
294 return -EPERM; /* Can't lock it with read only access */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 sdp = sg_get_dev(dev);
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200296 if (IS_ERR(sdp))
297 return PTR_ERR(sdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Hannes Reinecke95e159d2014-06-25 16:39:55 +0200299 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
300 "sg_open: flags=0x%x\n", flags));
301
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 /* This driver's module count bumped by fops_get in <linux/fs.h> */
303 /* Prevent the device driver from vanishing while we sleep */
304 retval = scsi_device_get(sdp->device);
Tony Battersbyc6517b792009-01-21 14:45:50 -0500305 if (retval)
306 goto sg_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Alan Sternbc4f2402010-06-17 10:41:42 -0400308 retval = scsi_autopm_get_device(sdp->device);
309 if (retval)
310 goto sdp_put;
311
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200312 /* scsi_block_when_processing_errors() may block so bypass
313 * check if O_NONBLOCK. Permits SCSI commands to be issued
314 * during error recovery. Tread carefully. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 if (!((flags & O_NONBLOCK) ||
316 scsi_block_when_processing_errors(sdp->device))) {
317 retval = -ENXIO;
318 /* we are in error recovery for this device */
319 goto error_out;
320 }
321
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200322 mutex_lock(&sdp->open_rel_lock);
323 if (flags & O_NONBLOCK) {
324 if (flags & O_EXCL) {
325 if (sdp->open_cnt > 0) {
326 retval = -EBUSY;
327 goto error_mutex_locked;
328 }
329 } else {
330 if (sdp->exclude) {
331 retval = -EBUSY;
332 goto error_mutex_locked;
333 }
Vaughan Cao15b06f92013-08-29 10:00:36 +0800334 }
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200335 } else {
336 retval = open_wait(sdp, flags);
337 if (retval) /* -ERESTARTSYS or -ENODEV */
338 goto error_mutex_locked;
Vaughan Cao15b06f92013-08-29 10:00:36 +0800339 }
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200340
341 /* N.B. at this point we are holding the open_rel_lock */
342 if (flags & O_EXCL)
343 sdp->exclude = true;
344
345 if (sdp->open_cnt < 1) { /* no existing opens */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 sdp->sgdebug = 0;
Mike Christied6b10342005-11-08 04:06:41 -0600347 q = sdp->device->request_queue;
Martin K. Petersen8a783622010-02-26 00:20:39 -0500348 sdp->sg_tablesize = queue_max_segments(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 }
Hannes Reinecke95e159d2014-06-25 16:39:55 +0200350 sfp = sg_add_sfp(sdp);
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200351 if (IS_ERR(sfp)) {
352 retval = PTR_ERR(sfp);
353 goto out_undo;
James Bottomley065b4a22013-10-25 10:27:02 +0100354 }
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200355
356 filp->private_data = sfp;
357 sdp->open_cnt++;
358 mutex_unlock(&sdp->open_rel_lock);
359
James Bottomley065b4a22013-10-25 10:27:02 +0100360 retval = 0;
Tony Battersbyc6517b792009-01-21 14:45:50 -0500361sg_put:
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200362 kref_put(&sdp->d_ref, sg_device_destroy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 return retval;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200364
365out_undo:
366 if (flags & O_EXCL) {
367 sdp->exclude = false; /* undo if error */
368 wake_up_interruptible(&sdp->open_wait);
369 }
370error_mutex_locked:
371 mutex_unlock(&sdp->open_rel_lock);
372error_out:
373 scsi_autopm_put_device(sdp->device);
374sdp_put:
375 scsi_device_put(sdp->device);
376 goto sg_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377}
378
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200379/* Release resources associated with a successful sg_open()
380 * Returns 0 on success, else a negated errno value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381static int
382sg_release(struct inode *inode, struct file *filp)
383{
384 Sg_device *sdp;
385 Sg_fd *sfp;
386
387 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
388 return -ENXIO;
Hannes Reinecke95e159d2014-06-25 16:39:55 +0200389 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp, "sg_release\n"));
Tony Battersbyc6517b792009-01-21 14:45:50 -0500390
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200391 mutex_lock(&sdp->open_rel_lock);
Alan Sternbc4f2402010-06-17 10:41:42 -0400392 scsi_autopm_put_device(sdp->device);
Tony Battersbyc6517b792009-01-21 14:45:50 -0500393 kref_put(&sfp->f_ref, sg_remove_sfp);
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200394 sdp->open_cnt--;
395
396 /* possibly many open()s waiting on exlude clearing, start many;
397 * only open(O_EXCL)s wait on 0==open_cnt so only start one */
398 if (sdp->exclude) {
399 sdp->exclude = false;
400 wake_up_interruptible_all(&sdp->open_wait);
401 } else if (0 == sdp->open_cnt) {
402 wake_up_interruptible(&sdp->open_wait);
403 }
404 mutex_unlock(&sdp->open_rel_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 return 0;
406}
407
408static ssize_t
409sg_read(struct file *filp, char __user *buf, size_t count, loff_t * ppos)
410{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 Sg_device *sdp;
412 Sg_fd *sfp;
413 Sg_request *srp;
414 int req_pack_id = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 sg_io_hdr_t *hp;
cb59e842005-04-02 13:51:23 -0600416 struct sg_header *old_hdr = NULL;
417 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Jann Horn26b5b872018-06-25 16:25:44 +0200419 /*
420 * This could cause a response to be stranded. Close the associated
421 * file descriptor to free up any resources being held.
422 */
423 retval = sg_check_file_access(filp, __func__);
424 if (retval)
425 return retval;
426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
428 return -ENXIO;
Hannes Reinecke95e159d2014-06-25 16:39:55 +0200429 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
430 "sg_read: count=%d\n", (int) count));
Mike Christied6b10342005-11-08 04:06:41 -0600431
Linus Torvalds96d4f262019-01-03 18:57:57 -0800432 if (!access_ok(buf, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 return -EFAULT;
434 if (sfp->force_packid && (count >= SZ_SG_HEADER)) {
cb59e842005-04-02 13:51:23 -0600435 old_hdr = kmalloc(SZ_SG_HEADER, GFP_KERNEL);
436 if (!old_hdr)
437 return -ENOMEM;
438 if (__copy_from_user(old_hdr, buf, SZ_SG_HEADER)) {
439 retval = -EFAULT;
440 goto free_old_hdr;
441 }
442 if (old_hdr->reply_len < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 if (count >= SZ_SG_IO_HDR) {
cb59e842005-04-02 13:51:23 -0600444 sg_io_hdr_t *new_hdr;
445 new_hdr = kmalloc(SZ_SG_IO_HDR, GFP_KERNEL);
446 if (!new_hdr) {
447 retval = -ENOMEM;
448 goto free_old_hdr;
449 }
450 retval =__copy_from_user
451 (new_hdr, buf, SZ_SG_IO_HDR);
452 req_pack_id = new_hdr->pack_id;
453 kfree(new_hdr);
454 if (retval) {
455 retval = -EFAULT;
456 goto free_old_hdr;
457 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 }
459 } else
cb59e842005-04-02 13:51:23 -0600460 req_pack_id = old_hdr->pack_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 }
462 srp = sg_get_rq_mark(sfp, req_pack_id);
463 if (!srp) { /* now wait on packet to arrive */
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200464 if (atomic_read(&sdp->detaching)) {
cb59e842005-04-02 13:51:23 -0600465 retval = -ENODEV;
466 goto free_old_hdr;
467 }
468 if (filp->f_flags & O_NONBLOCK) {
469 retval = -EAGAIN;
470 goto free_old_hdr;
471 }
Jörn Engel3f0c6ab2012-04-12 17:33:25 -0400472 retval = wait_event_interruptible(sfp->read_wait,
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200473 (atomic_read(&sdp->detaching) ||
Jörn Engel3f0c6ab2012-04-12 17:33:25 -0400474 (srp = sg_get_rq_mark(sfp, req_pack_id))));
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200475 if (atomic_read(&sdp->detaching)) {
Jörn Engel794c10f2012-04-12 17:32:48 -0400476 retval = -ENODEV;
477 goto free_old_hdr;
478 }
479 if (retval) {
cb59e842005-04-02 13:51:23 -0600480 /* -ERESTARTSYS as signal hit process */
481 goto free_old_hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 }
483 }
cb59e842005-04-02 13:51:23 -0600484 if (srp->header.interface_id != '\0') {
485 retval = sg_new_read(sfp, buf, count, srp);
486 goto free_old_hdr;
487 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
489 hp = &srp->header;
cb59e842005-04-02 13:51:23 -0600490 if (old_hdr == NULL) {
491 old_hdr = kmalloc(SZ_SG_HEADER, GFP_KERNEL);
492 if (! old_hdr) {
493 retval = -ENOMEM;
494 goto free_old_hdr;
495 }
496 }
497 memset(old_hdr, 0, SZ_SG_HEADER);
498 old_hdr->reply_len = (int) hp->timeout;
499 old_hdr->pack_len = old_hdr->reply_len; /* old, strange behaviour */
500 old_hdr->pack_id = hp->pack_id;
501 old_hdr->twelve_byte =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 ((srp->data.cmd_opcode >= 0xc0) && (12 == hp->cmd_len)) ? 1 : 0;
cb59e842005-04-02 13:51:23 -0600503 old_hdr->target_status = hp->masked_status;
504 old_hdr->host_status = hp->host_status;
505 old_hdr->driver_status = hp->driver_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 if ((CHECK_CONDITION & hp->masked_status) ||
507 (DRIVER_SENSE & hp->driver_status))
cb59e842005-04-02 13:51:23 -0600508 memcpy(old_hdr->sense_buffer, srp->sense_b,
509 sizeof (old_hdr->sense_buffer));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 switch (hp->host_status) {
511 /* This setup of 'result' is for backward compatibility and is best
512 ignored by the user who should use target, host + driver status */
513 case DID_OK:
514 case DID_PASSTHROUGH:
515 case DID_SOFT_ERROR:
cb59e842005-04-02 13:51:23 -0600516 old_hdr->result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 break;
518 case DID_NO_CONNECT:
519 case DID_BUS_BUSY:
520 case DID_TIME_OUT:
cb59e842005-04-02 13:51:23 -0600521 old_hdr->result = EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 break;
523 case DID_BAD_TARGET:
524 case DID_ABORT:
525 case DID_PARITY:
526 case DID_RESET:
527 case DID_BAD_INTR:
cb59e842005-04-02 13:51:23 -0600528 old_hdr->result = EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 break;
530 case DID_ERROR:
cb59e842005-04-02 13:51:23 -0600531 old_hdr->result = (srp->sense_b[0] == 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 hp->masked_status == GOOD) ? 0 : EIO;
533 break;
534 default:
cb59e842005-04-02 13:51:23 -0600535 old_hdr->result = EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 break;
537 }
538
539 /* Now copy the result back to the user buffer. */
540 if (count >= SZ_SG_HEADER) {
cb59e842005-04-02 13:51:23 -0600541 if (__copy_to_user(buf, old_hdr, SZ_SG_HEADER)) {
542 retval = -EFAULT;
543 goto free_old_hdr;
544 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 buf += SZ_SG_HEADER;
cb59e842005-04-02 13:51:23 -0600546 if (count > old_hdr->reply_len)
547 count = old_hdr->reply_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 if (count > SZ_SG_HEADER) {
cb59e842005-04-02 13:51:23 -0600549 if (sg_read_oxfer(srp, buf, count - SZ_SG_HEADER)) {
550 retval = -EFAULT;
551 goto free_old_hdr;
552 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 }
554 } else
cb59e842005-04-02 13:51:23 -0600555 count = (old_hdr->result == 0) ? 0 : -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 sg_finish_rem_req(srp);
Hannes Reinecke97d27b0dd2017-04-07 09:34:17 +0200557 sg_remove_request(sfp, srp);
cb59e842005-04-02 13:51:23 -0600558 retval = count;
559free_old_hdr:
Jesper Juhlc9475cb2005-11-07 01:01:26 -0800560 kfree(old_hdr);
cb59e842005-04-02 13:51:23 -0600561 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562}
563
564static ssize_t
565sg_new_read(Sg_fd * sfp, char __user *buf, size_t count, Sg_request * srp)
566{
567 sg_io_hdr_t *hp = &srp->header;
Tony Battersby3b524a62015-02-11 11:32:06 -0500568 int err = 0, err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 int len;
570
571 if (count < SZ_SG_IO_HDR) {
572 err = -EINVAL;
573 goto err_out;
574 }
575 hp->sb_len_wr = 0;
576 if ((hp->mx_sb_len > 0) && hp->sbp) {
577 if ((CHECK_CONDITION & hp->masked_status) ||
578 (DRIVER_SENSE & hp->driver_status)) {
Mike Christied6b10342005-11-08 04:06:41 -0600579 int sb_len = SCSI_SENSE_BUFFERSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 sb_len = (hp->mx_sb_len > sb_len) ? sb_len : hp->mx_sb_len;
581 len = 8 + (int) srp->sense_b[7]; /* Additional sense length field */
582 len = (len > sb_len) ? sb_len : len;
583 if (copy_to_user(hp->sbp, srp->sense_b, len)) {
584 err = -EFAULT;
585 goto err_out;
586 }
587 hp->sb_len_wr = len;
588 }
589 }
590 if (hp->masked_status || hp->host_status || hp->driver_status)
591 hp->info |= SG_INFO_CHECK;
592 if (copy_to_user(buf, hp, SZ_SG_IO_HDR)) {
593 err = -EFAULT;
594 goto err_out;
595 }
FUJITA Tomonori0b6cb262008-09-02 22:50:07 +0900596err_out:
Tony Battersby3b524a62015-02-11 11:32:06 -0500597 err2 = sg_finish_rem_req(srp);
Hannes Reinecke97d27b0dd2017-04-07 09:34:17 +0200598 sg_remove_request(sfp, srp);
Tony Battersby3b524a62015-02-11 11:32:06 -0500599 return err ? : err2 ? : count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600}
601
602static ssize_t
603sg_write(struct file *filp, const char __user *buf, size_t count, loff_t * ppos)
604{
605 int mxsize, cmd_size, k;
606 int input_size, blocking;
607 unsigned char opcode;
608 Sg_device *sdp;
609 Sg_fd *sfp;
610 Sg_request *srp;
611 struct sg_header old_hdr;
612 sg_io_hdr_t *hp;
Douglas Gilbert65c26a02014-06-03 13:18:18 -0400613 unsigned char cmnd[SG_MAX_CDB_SIZE];
Jann Horn26b5b872018-06-25 16:25:44 +0200614 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Jann Horn26b5b872018-06-25 16:25:44 +0200616 retval = sg_check_file_access(filp, __func__);
617 if (retval)
618 return retval;
Al Viro128394e2016-12-16 13:42:06 -0500619
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
621 return -ENXIO;
Hannes Reinecke95e159d2014-06-25 16:39:55 +0200622 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
623 "sg_write: count=%d\n", (int) count));
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200624 if (atomic_read(&sdp->detaching))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 return -ENODEV;
626 if (!((filp->f_flags & O_NONBLOCK) ||
627 scsi_block_when_processing_errors(sdp->device)))
628 return -ENXIO;
629
Linus Torvalds96d4f262019-01-03 18:57:57 -0800630 if (!access_ok(buf, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 return -EFAULT; /* protects following copy_from_user()s + get_user()s */
632 if (count < SZ_SG_HEADER)
633 return -EIO;
634 if (__copy_from_user(&old_hdr, buf, SZ_SG_HEADER))
635 return -EFAULT;
636 blocking = !(filp->f_flags & O_NONBLOCK);
637 if (old_hdr.reply_len < 0)
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500638 return sg_new_write(sfp, filp, buf, count,
639 blocking, 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 if (count < (SZ_SG_HEADER + 6))
641 return -EIO; /* The minimum scsi command length is 6 bytes. */
642
643 if (!(srp = sg_add_request(sfp))) {
Hannes Reinecke95e159d2014-06-25 16:39:55 +0200644 SCSI_LOG_TIMEOUT(1, sg_printk(KERN_INFO, sdp,
645 "sg_write: queue full\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 return -EDOM;
647 }
648 buf += SZ_SG_HEADER;
649 __get_user(opcode, buf);
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +0200650 mutex_lock(&sfp->f_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 if (sfp->next_cmd_len > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 cmd_size = sfp->next_cmd_len;
653 sfp->next_cmd_len = 0; /* reset so only this write() effected */
654 } else {
655 cmd_size = COMMAND_SIZE(opcode); /* based on SCSI command group */
656 if ((opcode >= 0xc0) && old_hdr.twelve_byte)
657 cmd_size = 12;
658 }
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +0200659 mutex_unlock(&sfp->f_mutex);
Hannes Reinecke95e159d2014-06-25 16:39:55 +0200660 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sdp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 "sg_write: scsi opcode=0x%02x, cmd_size=%d\n", (int) opcode, cmd_size));
662/* Determine buffer size. */
663 input_size = count - cmd_size;
664 mxsize = (input_size > old_hdr.reply_len) ? input_size : old_hdr.reply_len;
665 mxsize -= SZ_SG_HEADER;
666 input_size -= SZ_SG_HEADER;
667 if (input_size < 0) {
668 sg_remove_request(sfp, srp);
669 return -EIO; /* User did not pass enough bytes for this command. */
670 }
671 hp = &srp->header;
672 hp->interface_id = '\0'; /* indicator of old interface tunnelled */
673 hp->cmd_len = (unsigned char) cmd_size;
674 hp->iovec_count = 0;
675 hp->mx_sb_len = 0;
676 if (input_size > 0)
677 hp->dxfer_direction = (old_hdr.reply_len > SZ_SG_HEADER) ?
678 SG_DXFER_TO_FROM_DEV : SG_DXFER_TO_DEV;
679 else
680 hp->dxfer_direction = (mxsize > 0) ? SG_DXFER_FROM_DEV : SG_DXFER_NONE;
681 hp->dxfer_len = mxsize;
Douglas Gilbert5ecee0a2016-03-03 00:31:29 -0500682 if ((hp->dxfer_direction == SG_DXFER_TO_DEV) ||
683 (hp->dxfer_direction == SG_DXFER_TO_FROM_DEV))
FUJITA Tomonorifad7f012008-09-02 16:20:20 +0900684 hp->dxferp = (char __user *)buf + cmd_size;
685 else
686 hp->dxferp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 hp->sbp = NULL;
688 hp->timeout = old_hdr.reply_len; /* structure abuse ... */
689 hp->flags = input_size; /* structure abuse ... */
690 hp->pack_id = old_hdr.pack_id;
691 hp->usr_ptr = NULL;
692 if (__copy_from_user(cmnd, buf, cmd_size))
693 return -EFAULT;
694 /*
695 * SG_DXFER_TO_FROM_DEV is functionally equivalent to SG_DXFER_FROM_DEV,
696 * but is is possible that the app intended SG_DXFER_TO_DEV, because there
697 * is a non-zero input_size, so emit a warning.
698 */
Andi Kleeneaa3e222008-01-13 17:41:43 +0100699 if (hp->dxfer_direction == SG_DXFER_TO_FROM_DEV) {
Johannes Thumshirn28676d82017-04-07 09:34:15 +0200700 printk_ratelimited(KERN_WARNING
701 "sg_write: data in/out %d/%d bytes "
702 "for SCSI command 0x%x-- guessing "
703 "data in;\n program %s not setting "
704 "count and/or reply_len properly\n",
705 old_hdr.reply_len - (int)SZ_SG_HEADER,
706 input_size, (unsigned int) cmnd[0],
707 current->comm);
Andi Kleeneaa3e222008-01-13 17:41:43 +0100708 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 k = sg_common_write(sfp, srp, cmnd, sfp->timeout, blocking);
710 return (k < 0) ? k : count;
711}
712
713static ssize_t
Adel Gadllah0b07de82008-06-26 13:48:27 +0200714sg_new_write(Sg_fd *sfp, struct file *file, const char __user *buf,
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500715 size_t count, int blocking, int read_only, int sg_io_owned,
Adel Gadllah0b07de82008-06-26 13:48:27 +0200716 Sg_request **o_srp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717{
718 int k;
719 Sg_request *srp;
720 sg_io_hdr_t *hp;
Douglas Gilbert65c26a02014-06-03 13:18:18 -0400721 unsigned char cmnd[SG_MAX_CDB_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 int timeout;
723 unsigned long ul_timeout;
724
725 if (count < SZ_SG_IO_HDR)
726 return -EINVAL;
Linus Torvalds96d4f262019-01-03 18:57:57 -0800727 if (!access_ok(buf, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 return -EFAULT; /* protects following copy_from_user()s + get_user()s */
729
730 sfp->cmd_q = 1; /* when sg_io_hdr seen, set command queuing on */
731 if (!(srp = sg_add_request(sfp))) {
Hannes Reinecke95e159d2014-06-25 16:39:55 +0200732 SCSI_LOG_TIMEOUT(1, sg_printk(KERN_INFO, sfp->parentdp,
733 "sg_new_write: queue full\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 return -EDOM;
735 }
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500736 srp->sg_io_owned = sg_io_owned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 hp = &srp->header;
738 if (__copy_from_user(hp, buf, SZ_SG_IO_HDR)) {
739 sg_remove_request(sfp, srp);
740 return -EFAULT;
741 }
742 if (hp->interface_id != 'S') {
743 sg_remove_request(sfp, srp);
744 return -ENOSYS;
745 }
746 if (hp->flags & SG_FLAG_MMAP_IO) {
747 if (hp->dxfer_len > sfp->reserve.bufflen) {
748 sg_remove_request(sfp, srp);
749 return -ENOMEM; /* MMAP_IO size must fit in reserve buffer */
750 }
751 if (hp->flags & SG_FLAG_DIRECT_IO) {
752 sg_remove_request(sfp, srp);
753 return -EINVAL; /* either MMAP_IO or DIRECT_IO (not both) */
754 }
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +0200755 if (sfp->res_in_use) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 sg_remove_request(sfp, srp);
757 return -EBUSY; /* reserve buffer already being used */
758 }
759 }
760 ul_timeout = msecs_to_jiffies(srp->header.timeout);
761 timeout = (ul_timeout < INT_MAX) ? ul_timeout : INT_MAX;
762 if ((!hp->cmdp) || (hp->cmd_len < 6) || (hp->cmd_len > sizeof (cmnd))) {
763 sg_remove_request(sfp, srp);
764 return -EMSGSIZE;
765 }
Linus Torvalds96d4f262019-01-03 18:57:57 -0800766 if (!access_ok(hp->cmdp, hp->cmd_len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 sg_remove_request(sfp, srp);
768 return -EFAULT; /* protects following copy_from_user()s + get_user()s */
769 }
770 if (__copy_from_user(cmnd, hp->cmdp, hp->cmd_len)) {
771 sg_remove_request(sfp, srp);
772 return -EFAULT;
773 }
FUJITA Tomonori14e507b2008-07-26 18:03:24 +0900774 if (read_only && sg_allow_access(file, cmnd)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 sg_remove_request(sfp, srp);
776 return -EPERM;
777 }
778 k = sg_common_write(sfp, srp, cmnd, timeout, blocking);
779 if (k < 0)
780 return k;
781 if (o_srp)
782 *o_srp = srp;
783 return count;
784}
785
786static int
787sg_common_write(Sg_fd * sfp, Sg_request * srp,
788 unsigned char *cmnd, int timeout, int blocking)
789{
Bart Van Assche5af2e382015-01-30 16:22:38 +0100790 int k, at_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 Sg_device *sdp = sfp->parentdp;
792 sg_io_hdr_t *hp = &srp->header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
794 srp->data.cmd_opcode = cmnd[0]; /* hold opcode of command */
795 hp->status = 0;
796 hp->masked_status = 0;
797 hp->msg_status = 0;
798 hp->info = 0;
799 hp->host_status = 0;
800 hp->driver_status = 0;
801 hp->resid = 0;
Hannes Reinecke95e159d2014-06-25 16:39:55 +0200802 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
803 "sg_common_write: scsi opcode=0x%02x, cmd_size=%d\n",
804 (int) cmnd[0], (int) hp->cmd_len));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
Johannes Thumshirnf930c702017-07-27 09:11:26 +0200806 if (hp->dxfer_len >= SZ_256M)
Johannes Thumshirn28676d82017-04-07 09:34:15 +0200807 return -EINVAL;
808
FUJITA Tomonori10865df2008-08-28 16:17:07 +0900809 k = sg_start_req(srp, cmnd);
810 if (k) {
Hannes Reinecke95e159d2014-06-25 16:39:55 +0200811 SCSI_LOG_TIMEOUT(1, sg_printk(KERN_INFO, sfp->parentdp,
812 "sg_common_write: start_req err=%d\n", k));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 sg_finish_rem_req(srp);
Hannes Reinecke97d27b0dd2017-04-07 09:34:17 +0200814 sg_remove_request(sfp, srp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 return k; /* probably out of space --> ENOMEM */
816 }
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200817 if (atomic_read(&sdp->detaching)) {
Calvin Owensf3951a32015-10-30 16:57:00 -0700818 if (srp->bio) {
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100819 scsi_req_free_cmd(scsi_req(srp->rq));
Jens Axboeabaf75d2018-10-16 08:38:47 -0600820 blk_put_request(srp->rq);
Calvin Owensf3951a32015-10-30 16:57:00 -0700821 srp->rq = NULL;
822 }
823
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 sg_finish_rem_req(srp);
Hannes Reinecke97d27b0dd2017-04-07 09:34:17 +0200825 sg_remove_request(sfp, srp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 return -ENODEV;
827 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
cb59e842005-04-02 13:51:23 -0600829 hp->duration = jiffies_to_msecs(jiffies);
Douglas Gilbert16070cc2014-06-04 10:58:30 -0400830 if (hp->interface_id != '\0' && /* v3 (or later) interface */
831 (SG_FLAG_Q_AT_TAIL & hp->flags))
832 at_head = 0;
833 else
834 at_head = 1;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +0200835
836 srp->rq->timeout = timeout;
Tony Battersbyc6517b792009-01-21 14:45:50 -0500837 kref_get(&sfp->f_ref); /* sg_rq_end_io() does kref_put(). */
FUJITA Tomonori10db10d2008-08-29 12:32:18 +0200838 blk_execute_rq_nowait(sdp->device->request_queue, sdp->disk,
Douglas Gilbert16070cc2014-06-04 10:58:30 -0400839 srp->rq, at_head, sg_rq_end_io);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +0200840 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841}
842
Jörn Engel6acddc52012-04-12 17:33:58 -0400843static int srp_done(Sg_fd *sfp, Sg_request *srp)
844{
845 unsigned long flags;
846 int ret;
847
848 read_lock_irqsave(&sfp->rq_list_lock, flags);
849 ret = srp->done;
850 read_unlock_irqrestore(&sfp->rq_list_lock, flags);
851 return ret;
852}
853
Akinobu Mita46f69e62014-06-02 22:56:46 +0900854static int max_sectors_bytes(struct request_queue *q)
855{
856 unsigned int max_sectors = queue_max_sectors(q);
857
858 max_sectors = min_t(unsigned int, max_sectors, INT_MAX >> 9);
859
860 return max_sectors << 9;
861}
862
Hannes Reinecke4759df92017-09-15 14:05:15 +0200863static void
864sg_fill_request_table(Sg_fd *sfp, sg_req_info_t *rinfo)
865{
866 Sg_request *srp;
867 int val;
868 unsigned int ms;
869
870 val = 0;
871 list_for_each_entry(srp, &sfp->rq_list, entry) {
Ben Hutchings587c3c92017-10-15 18:16:33 +0100872 if (val >= SG_MAX_QUEUE)
Hannes Reinecke4759df92017-09-15 14:05:15 +0200873 break;
Hannes Reinecke4759df92017-09-15 14:05:15 +0200874 rinfo[val].req_state = srp->done + 1;
875 rinfo[val].problem =
876 srp->header.masked_status &
877 srp->header.host_status &
878 srp->header.driver_status;
879 if (srp->done)
880 rinfo[val].duration =
881 srp->header.duration;
882 else {
883 ms = jiffies_to_msecs(jiffies);
884 rinfo[val].duration =
885 (ms > srp->header.duration) ?
886 (ms - srp->header.duration) : 0;
887 }
888 rinfo[val].orphan = srp->orphan;
889 rinfo[val].sg_io_owned = srp->sg_io_owned;
890 rinfo[val].pack_id = srp->header.pack_id;
891 rinfo[val].usr_ptr = srp->header.usr_ptr;
892 val++;
893 }
894}
895
Jörn Engel37b9d1e2012-04-12 17:35:05 -0400896static long
Arnd Bergmannf4927c42010-04-27 00:24:01 +0200897sg_ioctl(struct file *filp, unsigned int cmd_in, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898{
899 void __user *p = (void __user *)arg;
900 int __user *ip = p;
Christoph Hellwig176aa9d2014-10-11 12:06:47 +0200901 int result, val, read_only;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 Sg_device *sdp;
903 Sg_fd *sfp;
904 Sg_request *srp;
905 unsigned long iflags;
906
907 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
908 return -ENXIO;
FUJITA Tomonoriabf54392008-08-16 14:10:05 +0900909
Hannes Reinecke95e159d2014-06-25 16:39:55 +0200910 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
911 "sg_ioctl: cmd=0x%x\n", (int) cmd_in));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 read_only = (O_RDWR != (filp->f_flags & O_ACCMODE));
913
914 switch (cmd_in) {
915 case SG_IO:
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200916 if (atomic_read(&sdp->detaching))
Jörn Engeldddbf8d2012-04-12 17:32:17 -0400917 return -ENODEV;
918 if (!scsi_block_when_processing_errors(sdp->device))
919 return -ENXIO;
Linus Torvalds96d4f262019-01-03 18:57:57 -0800920 if (!access_ok(p, SZ_SG_IO_HDR))
Jörn Engeldddbf8d2012-04-12 17:32:17 -0400921 return -EFAULT;
922 result = sg_new_write(sfp, filp, p, SZ_SG_IO_HDR,
923 1, read_only, 1, &srp);
924 if (result < 0)
925 return result;
Jörn Engel3f0c6ab2012-04-12 17:33:25 -0400926 result = wait_event_interruptible(sfp->read_wait,
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200927 (srp_done(sfp, srp) || atomic_read(&sdp->detaching)));
928 if (atomic_read(&sdp->detaching))
Jörn Engel794c10f2012-04-12 17:32:48 -0400929 return -ENODEV;
930 write_lock_irq(&sfp->rq_list_lock);
931 if (srp->done) {
932 srp->done = 2;
Jörn Engeldddbf8d2012-04-12 17:32:17 -0400933 write_unlock_irq(&sfp->rq_list_lock);
Jörn Engel794c10f2012-04-12 17:32:48 -0400934 result = sg_new_read(sfp, p, SZ_SG_IO_HDR, srp);
935 return (result < 0) ? result : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 }
Jörn Engel794c10f2012-04-12 17:32:48 -0400937 srp->orphan = 1;
938 write_unlock_irq(&sfp->rq_list_lock);
939 return result; /* -ERESTARTSYS because signal hit process */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 case SG_SET_TIMEOUT:
941 result = get_user(val, ip);
942 if (result)
943 return result;
944 if (val < 0)
945 return -EIO;
Paul Burtonf8630bd72016-08-19 17:43:57 +0100946 if (val >= mult_frac((s64)INT_MAX, USER_HZ, HZ))
947 val = min_t(s64, mult_frac((s64)INT_MAX, USER_HZ, HZ),
Paul Burtonb9b6e802016-08-19 17:43:56 +0100948 INT_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 sfp->timeout_user = val;
Paul Burtonf8630bd72016-08-19 17:43:57 +0100950 sfp->timeout = mult_frac(val, HZ, USER_HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
952 return 0;
953 case SG_GET_TIMEOUT: /* N.B. User receives timeout as return value */
954 /* strange ..., for backward compatibility */
955 return sfp->timeout_user;
956 case SG_SET_FORCE_LOW_DMA:
Hannes Reinecke745dfa02017-04-07 09:34:12 +0200957 /*
958 * N.B. This ioctl never worked properly, but failed to
959 * return an error value. So returning '0' to keep compability
960 * with legacy applications.
961 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 return 0;
963 case SG_GET_LOW_DMA:
Hannes Reinecke745dfa02017-04-07 09:34:12 +0200964 return put_user((int) sdp->device->host->unchecked_isa_dma, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 case SG_GET_SCSI_ID:
Linus Torvalds96d4f262019-01-03 18:57:57 -0800966 if (!access_ok(p, sizeof (sg_scsi_id_t)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 return -EFAULT;
968 else {
969 sg_scsi_id_t __user *sg_idp = p;
970
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200971 if (atomic_read(&sdp->detaching))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 return -ENODEV;
973 __put_user((int) sdp->device->host->host_no,
974 &sg_idp->host_no);
975 __put_user((int) sdp->device->channel,
976 &sg_idp->channel);
977 __put_user((int) sdp->device->id, &sg_idp->scsi_id);
978 __put_user((int) sdp->device->lun, &sg_idp->lun);
979 __put_user((int) sdp->device->type, &sg_idp->scsi_type);
980 __put_user((short) sdp->device->host->cmd_per_lun,
981 &sg_idp->h_cmd_per_lun);
982 __put_user((short) sdp->device->queue_depth,
983 &sg_idp->d_queue_depth);
984 __put_user(0, &sg_idp->unused[0]);
985 __put_user(0, &sg_idp->unused[1]);
986 return 0;
987 }
988 case SG_SET_FORCE_PACK_ID:
989 result = get_user(val, ip);
990 if (result)
991 return result;
992 sfp->force_packid = val ? 1 : 0;
993 return 0;
994 case SG_GET_PACK_ID:
Linus Torvalds96d4f262019-01-03 18:57:57 -0800995 if (!access_ok(ip, sizeof (int)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 return -EFAULT;
997 read_lock_irqsave(&sfp->rq_list_lock, iflags);
Hannes Reinecke109bade2017-04-07 09:34:16 +0200998 list_for_each_entry(srp, &sfp->rq_list, entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 if ((1 == srp->done) && (!srp->sg_io_owned)) {
1000 read_unlock_irqrestore(&sfp->rq_list_lock,
1001 iflags);
1002 __put_user(srp->header.pack_id, ip);
1003 return 0;
1004 }
1005 }
1006 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1007 __put_user(-1, ip);
1008 return 0;
1009 case SG_GET_NUM_WAITING:
1010 read_lock_irqsave(&sfp->rq_list_lock, iflags);
Hannes Reinecke109bade2017-04-07 09:34:16 +02001011 val = 0;
1012 list_for_each_entry(srp, &sfp->rq_list, entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 if ((1 == srp->done) && (!srp->sg_io_owned))
1014 ++val;
1015 }
1016 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1017 return put_user(val, ip);
1018 case SG_GET_SG_TABLESIZE:
1019 return put_user(sdp->sg_tablesize, ip);
1020 case SG_SET_RESERVED_SIZE:
1021 result = get_user(val, ip);
1022 if (result)
1023 return result;
1024 if (val < 0)
1025 return -EINVAL;
Alan Stern44ec9542007-02-20 11:01:57 -05001026 val = min_t(int, val,
Akinobu Mita46f69e62014-06-02 22:56:46 +09001027 max_sectors_bytes(sdp->device->request_queue));
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001028 mutex_lock(&sfp->f_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 if (val != sfp->reserve.bufflen) {
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001030 if (sfp->mmap_called ||
1031 sfp->res_in_use) {
1032 mutex_unlock(&sfp->f_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 return -EBUSY;
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001034 }
1035
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001036 sg_remove_scat(sfp, &sfp->reserve);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 sg_build_reserve(sfp, val);
1038 }
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001039 mutex_unlock(&sfp->f_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 return 0;
1041 case SG_GET_RESERVED_SIZE:
Alan Stern44ec9542007-02-20 11:01:57 -05001042 val = min_t(int, sfp->reserve.bufflen,
Akinobu Mita46f69e62014-06-02 22:56:46 +09001043 max_sectors_bytes(sdp->device->request_queue));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 return put_user(val, ip);
1045 case SG_SET_COMMAND_Q:
1046 result = get_user(val, ip);
1047 if (result)
1048 return result;
1049 sfp->cmd_q = val ? 1 : 0;
1050 return 0;
1051 case SG_GET_COMMAND_Q:
1052 return put_user((int) sfp->cmd_q, ip);
1053 case SG_SET_KEEP_ORPHAN:
1054 result = get_user(val, ip);
1055 if (result)
1056 return result;
1057 sfp->keep_orphan = val;
1058 return 0;
1059 case SG_GET_KEEP_ORPHAN:
1060 return put_user((int) sfp->keep_orphan, ip);
1061 case SG_NEXT_CMD_LEN:
1062 result = get_user(val, ip);
1063 if (result)
1064 return result;
peter changbf33f872017-02-15 14:11:54 -08001065 if (val > SG_MAX_CDB_SIZE)
1066 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 sfp->next_cmd_len = (val > 0) ? val : 0;
1068 return 0;
1069 case SG_GET_VERSION_NUM:
1070 return put_user(sg_version_num, ip);
1071 case SG_GET_ACCESS_COUNT:
1072 /* faked - we don't have a real access count anymore */
1073 val = (sdp->device ? 1 : 0);
1074 return put_user(val, ip);
1075 case SG_GET_REQUEST_TABLE:
Linus Torvalds96d4f262019-01-03 18:57:57 -08001076 if (!access_ok(p, SZ_SG_REQ_INFO * SG_MAX_QUEUE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 return -EFAULT;
1078 else {
cb59e842005-04-02 13:51:23 -06001079 sg_req_info_t *rinfo;
cb59e842005-04-02 13:51:23 -06001080
Kees Cook6396bb22018-06-12 14:03:40 -07001081 rinfo = kcalloc(SG_MAX_QUEUE, SZ_SG_REQ_INFO,
Hannes Reinecke3e009742017-09-15 14:05:16 +02001082 GFP_KERNEL);
cb59e842005-04-02 13:51:23 -06001083 if (!rinfo)
1084 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 read_lock_irqsave(&sfp->rq_list_lock, iflags);
Hannes Reinecke4759df92017-09-15 14:05:15 +02001086 sg_fill_request_table(sfp, rinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
Hannes Reinecke109bade2017-04-07 09:34:16 +02001088 result = __copy_to_user(p, rinfo,
cb59e842005-04-02 13:51:23 -06001089 SZ_SG_REQ_INFO * SG_MAX_QUEUE);
1090 result = result ? -EFAULT : 0;
1091 kfree(rinfo);
1092 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 }
1094 case SG_EMULATED_HOST:
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001095 if (atomic_read(&sdp->detaching))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 return -ENODEV;
1097 return put_user(sdp->device->host->hostt->emulated, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 case SCSI_IOCTL_SEND_COMMAND:
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001099 if (atomic_read(&sdp->detaching))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 return -ENODEV;
Al Viroe915e872008-09-02 17:16:41 -04001101 return sg_scsi_ioctl(sdp->device->request_queue, NULL, filp->f_mode, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 case SG_SET_DEBUG:
1103 result = get_user(val, ip);
1104 if (result)
1105 return result;
1106 sdp->sgdebug = (char) val;
1107 return 0;
Alan Stern44ec9542007-02-20 11:01:57 -05001108 case BLKSECTGET:
Akinobu Mita46f69e62014-06-02 22:56:46 +09001109 return put_user(max_sectors_bytes(sdp->device->request_queue),
Alan Stern44ec9542007-02-20 11:01:57 -05001110 ip);
Christof Schmitt6da127a2008-01-11 10:09:43 +01001111 case BLKTRACESETUP:
1112 return blk_trace_setup(sdp->device->request_queue,
1113 sdp->disk->disk_name,
Martin Peschke76e3a192009-01-30 15:46:23 +01001114 MKDEV(SCSI_GENERIC_MAJOR, sdp->index),
Bart Van Assche7475c8a2017-08-25 13:46:36 -07001115 NULL, p);
Christof Schmitt6da127a2008-01-11 10:09:43 +01001116 case BLKTRACESTART:
1117 return blk_trace_startstop(sdp->device->request_queue, 1);
1118 case BLKTRACESTOP:
1119 return blk_trace_startstop(sdp->device->request_queue, 0);
1120 case BLKTRACETEARDOWN:
1121 return blk_trace_remove(sdp->device->request_queue);
Christoph Hellwig906d15f2014-10-11 16:25:31 +02001122 case SCSI_IOCTL_GET_IDLUN:
1123 case SCSI_IOCTL_GET_BUS_NUMBER:
1124 case SCSI_IOCTL_PROBE_HOST:
1125 case SG_GET_TRANSFORM:
1126 case SG_SCSI_RESET:
1127 if (atomic_read(&sdp->detaching))
1128 return -ENODEV;
1129 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 default:
1131 if (read_only)
1132 return -EPERM; /* don't know so take safe approach */
Christoph Hellwig906d15f2014-10-11 16:25:31 +02001133 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 }
Christoph Hellwig906d15f2014-10-11 16:25:31 +02001135
1136 result = scsi_ioctl_block_when_processing_errors(sdp->device,
1137 cmd_in, filp->f_flags & O_NDELAY);
1138 if (result)
1139 return result;
1140 return scsi_ioctl(sdp->device, cmd_in, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141}
1142
1143#ifdef CONFIG_COMPAT
1144static long sg_compat_ioctl(struct file *filp, unsigned int cmd_in, unsigned long arg)
1145{
1146 Sg_device *sdp;
1147 Sg_fd *sfp;
1148 struct scsi_device *sdev;
1149
1150 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
1151 return -ENXIO;
1152
1153 sdev = sdp->device;
1154 if (sdev->host->hostt->compat_ioctl) {
1155 int ret;
1156
1157 ret = sdev->host->hostt->compat_ioctl(sdev, cmd_in, (void __user *)arg);
1158
1159 return ret;
1160 }
1161
1162 return -ENOIOCTLCMD;
1163}
1164#endif
1165
Al Viroafc9a422017-07-03 06:39:46 -04001166static __poll_t
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167sg_poll(struct file *filp, poll_table * wait)
1168{
Al Viroafc9a422017-07-03 06:39:46 -04001169 __poll_t res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 Sg_device *sdp;
1171 Sg_fd *sfp;
1172 Sg_request *srp;
1173 int count = 0;
1174 unsigned long iflags;
1175
Jörn Engelebaf4662012-04-12 17:33:39 -04001176 sfp = filp->private_data;
1177 if (!sfp)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001178 return EPOLLERR;
Jörn Engelebaf4662012-04-12 17:33:39 -04001179 sdp = sfp->parentdp;
1180 if (!sdp)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001181 return EPOLLERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 poll_wait(filp, &sfp->read_wait, wait);
1183 read_lock_irqsave(&sfp->rq_list_lock, iflags);
Hannes Reinecke109bade2017-04-07 09:34:16 +02001184 list_for_each_entry(srp, &sfp->rq_list, entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 /* if any read waiting, flag it */
1186 if ((0 == res) && (1 == srp->done) && (!srp->sg_io_owned))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001187 res = EPOLLIN | EPOLLRDNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 ++count;
1189 }
1190 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1191
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001192 if (atomic_read(&sdp->detaching))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001193 res |= EPOLLHUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 else if (!sfp->cmd_q) {
1195 if (0 == count)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001196 res |= EPOLLOUT | EPOLLWRNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 } else if (count < SG_MAX_QUEUE)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001198 res |= EPOLLOUT | EPOLLWRNORM;
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001199 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
Al Virofcc5a652017-07-16 23:54:30 -04001200 "sg_poll: res=0x%x\n", (__force u32) res));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 return res;
1202}
1203
1204static int
1205sg_fasync(int fd, struct file *filp, int mode)
1206{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 Sg_device *sdp;
1208 Sg_fd *sfp;
1209
1210 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
1211 return -ENXIO;
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001212 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
1213 "sg_fasync: mode=%d\n", mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
Jonathan Corbet60aa4922009-02-01 14:52:56 -07001215 return fasync_helper(fd, filp, mode, &sfp->async_qp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216}
1217
Souptick Joarder0cac8e12018-04-15 00:17:41 +05301218static vm_fault_t
Dave Jiang11bac802017-02-24 14:56:41 -08001219sg_vma_fault(struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220{
Dave Jiang11bac802017-02-24 14:56:41 -08001221 struct vm_area_struct *vma = vmf->vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 Sg_fd *sfp;
Mike Christied6b10342005-11-08 04:06:41 -06001223 unsigned long offset, len, sa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 Sg_scatter_hold *rsv_schp;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001225 int k, length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
1227 if ((NULL == vma) || (!(sfp = (Sg_fd *) vma->vm_private_data)))
Nick Piggina13ff0b2008-02-07 18:46:06 -08001228 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 rsv_schp = &sfp->reserve;
Nick Piggina13ff0b2008-02-07 18:46:06 -08001230 offset = vmf->pgoff << PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 if (offset >= rsv_schp->bufflen)
Nick Piggina13ff0b2008-02-07 18:46:06 -08001232 return VM_FAULT_SIGBUS;
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001233 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sfp->parentdp,
1234 "sg_vma_fault: offset=%lu, scatg=%d\n",
1235 offset, rsv_schp->k_use_sg));
Mike Christied6b10342005-11-08 04:06:41 -06001236 sa = vma->vm_start;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001237 length = 1 << (PAGE_SHIFT + rsv_schp->page_order);
1238 for (k = 0; k < rsv_schp->k_use_sg && sa < vma->vm_end; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06001239 len = vma->vm_end - sa;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001240 len = (len < length) ? len : length;
Mike Christied6b10342005-11-08 04:06:41 -06001241 if (offset < len) {
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001242 struct page *page = nth_page(rsv_schp->pages[k],
1243 offset >> PAGE_SHIFT);
Mike Christied6b10342005-11-08 04:06:41 -06001244 get_page(page); /* increment page count */
Nick Piggina13ff0b2008-02-07 18:46:06 -08001245 vmf->page = page;
1246 return 0; /* success */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 }
Mike Christied6b10342005-11-08 04:06:41 -06001248 sa += len;
1249 offset -= len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 }
Mike Christied6b10342005-11-08 04:06:41 -06001251
Nick Piggina13ff0b2008-02-07 18:46:06 -08001252 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253}
1254
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04001255static const struct vm_operations_struct sg_mmap_vm_ops = {
Nick Piggina13ff0b2008-02-07 18:46:06 -08001256 .fault = sg_vma_fault,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257};
1258
1259static int
1260sg_mmap(struct file *filp, struct vm_area_struct *vma)
1261{
1262 Sg_fd *sfp;
Mike Christied6b10342005-11-08 04:06:41 -06001263 unsigned long req_sz, len, sa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 Sg_scatter_hold *rsv_schp;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001265 int k, length;
Todd Poynor6a8dadc2017-08-15 22:41:08 -07001266 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
1268 if ((!filp) || (!vma) || (!(sfp = (Sg_fd *) filp->private_data)))
1269 return -ENXIO;
cb59e842005-04-02 13:51:23 -06001270 req_sz = vma->vm_end - vma->vm_start;
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001271 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sfp->parentdp,
1272 "sg_mmap starting, vm_start=%p, len=%d\n",
1273 (void *) vma->vm_start, (int) req_sz));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 if (vma->vm_pgoff)
1275 return -EINVAL; /* want no offset */
1276 rsv_schp = &sfp->reserve;
Todd Poynor6a8dadc2017-08-15 22:41:08 -07001277 mutex_lock(&sfp->f_mutex);
1278 if (req_sz > rsv_schp->bufflen) {
1279 ret = -ENOMEM; /* cannot map more than reserved buffer */
1280 goto out;
1281 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
Mike Christied6b10342005-11-08 04:06:41 -06001283 sa = vma->vm_start;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001284 length = 1 << (PAGE_SHIFT + rsv_schp->page_order);
1285 for (k = 0; k < rsv_schp->k_use_sg && sa < vma->vm_end; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06001286 len = vma->vm_end - sa;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001287 len = (len < length) ? len : length;
Mike Christied6b10342005-11-08 04:06:41 -06001288 sa += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 }
Mike Christied6b10342005-11-08 04:06:41 -06001290
Nick Pigginf9aed0e2006-03-22 00:08:30 -08001291 sfp->mmap_called = 1;
Kirill A. Shutemov461c7fa2016-02-02 16:57:35 -08001292 vma->vm_flags |= VM_IO | VM_DONTEXPAND | VM_DONTDUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 vma->vm_private_data = sfp;
1294 vma->vm_ops = &sg_mmap_vm_ops;
Todd Poynor6a8dadc2017-08-15 22:41:08 -07001295out:
1296 mutex_unlock(&sfp->f_mutex);
1297 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298}
1299
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001300static void
1301sg_rq_end_io_usercontext(struct work_struct *work)
FUJITA Tomonoric96952e2009-02-04 11:36:27 +09001302{
1303 struct sg_request *srp = container_of(work, struct sg_request, ew.work);
1304 struct sg_fd *sfp = srp->parentfp;
1305
1306 sg_finish_rem_req(srp);
Hannes Reinecke97d27b0dd2017-04-07 09:34:17 +02001307 sg_remove_request(sfp, srp);
FUJITA Tomonoric96952e2009-02-04 11:36:27 +09001308 kref_put(&sfp->f_ref, sg_remove_sfp);
1309}
1310
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001311/*
1312 * This function is a "bottom half" handler that is called by the mid
1313 * level when a command is completed (or has failed).
1314 */
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001315static void
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001316sg_rq_end_io(struct request *rq, blk_status_t status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317{
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001318 struct sg_request *srp = rq->end_io_data;
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001319 struct scsi_request *req = scsi_req(rq);
Tony Battersbyc6517b792009-01-21 14:45:50 -05001320 Sg_device *sdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 Sg_fd *sfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 unsigned long iflags;
cb59e842005-04-02 13:51:23 -06001323 unsigned int ms;
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001324 char *sense;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001325 int result, resid, done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
Tony Battersbyc6517b792009-01-21 14:45:50 -05001327 if (WARN_ON(srp->done != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 return;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001329
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 sfp = srp->parentfp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001331 if (WARN_ON(sfp == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 return;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001333
1334 sdp = sfp->parentdp;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001335 if (unlikely(atomic_read(&sdp->detaching)))
1336 pr_info("%s: device detaching\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001338 sense = req->sense;
Christoph Hellwig17d53632017-04-20 16:03:01 +02001339 result = req->result;
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001340 resid = req->resid_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001342 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sdp,
1343 "sg_cmd_done: pack_id=%d, res=0x%x\n",
1344 srp->header.pack_id, result));
Mike Christied6b10342005-11-08 04:06:41 -06001345 srp->header.resid = resid;
cb59e842005-04-02 13:51:23 -06001346 ms = jiffies_to_msecs(jiffies);
1347 srp->header.duration = (ms > srp->header.duration) ?
1348 (ms - srp->header.duration) : 0;
Mike Christied6b10342005-11-08 04:06:41 -06001349 if (0 != result) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 struct scsi_sense_hdr sshdr;
1351
Mike Christied6b10342005-11-08 04:06:41 -06001352 srp->header.status = 0xff & result;
1353 srp->header.masked_status = status_byte(result);
1354 srp->header.msg_status = msg_byte(result);
1355 srp->header.host_status = host_byte(result);
1356 srp->header.driver_status = driver_byte(result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 if ((sdp->sgdebug > 0) &&
1358 ((CHECK_CONDITION == srp->header.masked_status) ||
1359 (COMMAND_TERMINATED == srp->header.masked_status)))
Hannes Reinecked811b842014-10-24 14:26:45 +02001360 __scsi_print_sense(sdp->device, __func__, sense,
Mike Christied6b10342005-11-08 04:06:41 -06001361 SCSI_SENSE_BUFFERSIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
1363 /* Following if statement is a patch supplied by Eric Youngdale */
Mike Christied6b10342005-11-08 04:06:41 -06001364 if (driver_byte(result) != 0
1365 && scsi_normalize_sense(sense, SCSI_SENSE_BUFFERSIZE, &sshdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 && !scsi_sense_is_deferred(&sshdr)
1367 && sshdr.sense_key == UNIT_ATTENTION
1368 && sdp->device->removable) {
1369 /* Detected possible disc change. Set the bit - this */
1370 /* may be used if there are filesystems using this device */
1371 sdp->device->changed = 1;
1372 }
1373 }
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001374
1375 if (req->sense_len)
1376 memcpy(srp->sense_b, req->sense, SCSI_SENSE_BUFFERSIZE);
1377
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 /* Rely on write phase to clean out srp status values, so no "else" */
1379
Tony Battersby75686152015-02-13 12:09:44 -05001380 /*
1381 * Free the request as soon as it is complete so that its resources
1382 * can be reused without waiting for userspace to read() the
1383 * result. But keep the associated bio (if any) around until
1384 * blk_rq_unmap_user() can be called from user context.
1385 */
1386 srp->rq = NULL;
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001387 scsi_req_free_cmd(scsi_req(rq));
Jens Axboe92bc5a22018-10-24 13:52:28 -06001388 blk_put_request(rq);
Tony Battersby75686152015-02-13 12:09:44 -05001389
Tony Battersbyc6517b792009-01-21 14:45:50 -05001390 write_lock_irqsave(&sfp->rq_list_lock, iflags);
1391 if (unlikely(srp->orphan)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 if (sfp->keep_orphan)
1393 srp->sg_io_owned = 0;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001394 else
1395 done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05001397 srp->done = done;
1398 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1399
1400 if (likely(done)) {
1401 /* Now wake up any sg_read() that is waiting for this
1402 * packet.
1403 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 wake_up_interruptible(&sfp->read_wait);
Tony Battersbyc6517b792009-01-21 14:45:50 -05001405 kill_fasync(&sfp->async_qp, SIGPOLL, POLL_IN);
FUJITA Tomonoric96952e2009-02-04 11:36:27 +09001406 kref_put(&sfp->f_ref, sg_remove_sfp);
FUJITA Tomonori015640e2009-04-03 19:28:06 +09001407 } else {
1408 INIT_WORK(&srp->ew.work, sg_rq_end_io_usercontext);
1409 schedule_work(&srp->ew.work);
1410 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411}
1412
Alexey Dobriyan828c0952009-10-01 15:43:56 -07001413static const struct file_operations sg_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 .owner = THIS_MODULE,
1415 .read = sg_read,
1416 .write = sg_write,
1417 .poll = sg_poll,
Jörn Engel37b9d1e2012-04-12 17:35:05 -04001418 .unlocked_ioctl = sg_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419#ifdef CONFIG_COMPAT
1420 .compat_ioctl = sg_compat_ioctl,
1421#endif
1422 .open = sg_open,
1423 .mmap = sg_mmap,
1424 .release = sg_release,
1425 .fasync = sg_fasync,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001426 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427};
1428
gregkh@suse.ded2538782005-03-23 09:55:22 -08001429static struct class *sg_sysfs_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
1431static int sg_sysfs_valid = 0;
1432
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001433static Sg_device *
1434sg_alloc(struct gendisk *disk, struct scsi_device *scsidp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435{
Mike Christied6b10342005-11-08 04:06:41 -06001436 struct request_queue *q = scsidp->request_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 Sg_device *sdp;
1438 unsigned long iflags;
James Bottomley7c07d612007-08-05 13:36:11 -05001439 int error;
1440 u32 k;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
Jes Sorensen24669f752006-01-16 10:31:18 -05001442 sdp = kzalloc(sizeof(Sg_device), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 if (!sdp) {
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001444 sdev_printk(KERN_WARNING, scsidp, "%s: kmalloc Sg_device "
1445 "failure\n", __func__);
James Bottomley7c07d612007-08-05 13:36:11 -05001446 return ERR_PTR(-ENOMEM);
1447 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05001448
Tejun Heob98c52b2013-02-27 17:04:42 -08001449 idr_preload(GFP_KERNEL);
James Bottomley7c07d612007-08-05 13:36:11 -05001450 write_lock_irqsave(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
Tejun Heob98c52b2013-02-27 17:04:42 -08001452 error = idr_alloc(&sg_index_idr, sdp, 0, SG_MAX_DEVS, GFP_NOWAIT);
1453 if (error < 0) {
1454 if (error == -ENOSPC) {
1455 sdev_printk(KERN_WARNING, scsidp,
1456 "Unable to attach sg device type=%d, minor number exceeds %d\n",
1457 scsidp->type, SG_MAX_DEVS - 1);
1458 error = -ENODEV;
1459 } else {
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001460 sdev_printk(KERN_WARNING, scsidp, "%s: idr "
1461 "allocation Sg_device failure: %d\n",
1462 __func__, error);
Tejun Heob98c52b2013-02-27 17:04:42 -08001463 }
1464 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 }
Tejun Heob98c52b2013-02-27 17:04:42 -08001466 k = error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001468 SCSI_LOG_TIMEOUT(3, sdev_printk(KERN_INFO, scsidp,
1469 "sg_alloc: dev=%d \n", k));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 sprintf(disk->disk_name, "sg%d", k);
1471 disk->first_minor = k;
1472 sdp->disk = disk;
1473 sdp->device = scsidp;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001474 mutex_init(&sdp->open_rel_lock);
FUJITA Tomonori3442f802009-02-16 13:26:53 +09001475 INIT_LIST_HEAD(&sdp->sfds);
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001476 init_waitqueue_head(&sdp->open_wait);
1477 atomic_set(&sdp->detaching, 0);
1478 rwlock_init(&sdp->sfd_lock);
Martin K. Petersen8a783622010-02-26 00:20:39 -05001479 sdp->sg_tablesize = queue_max_segments(q);
James Bottomley7c07d612007-08-05 13:36:11 -05001480 sdp->index = k;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001481 kref_init(&sdp->d_ref);
James Bottomley7c07d612007-08-05 13:36:11 -05001482 error = 0;
Tejun Heob98c52b2013-02-27 17:04:42 -08001483
1484out_unlock:
1485 write_unlock_irqrestore(&sg_index_lock, iflags);
1486 idr_preload_end();
1487
James Bottomley7c07d612007-08-05 13:36:11 -05001488 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 kfree(sdp);
James Bottomley7c07d612007-08-05 13:36:11 -05001490 return ERR_PTR(error);
1491 }
1492 return sdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493}
1494
1495static int
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001496sg_add_device(struct device *cl_dev, struct class_interface *cl_intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497{
Tony Jonesee959b02008-02-22 00:13:36 +01001498 struct scsi_device *scsidp = to_scsi_device(cl_dev->parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 struct gendisk *disk;
1500 Sg_device *sdp = NULL;
1501 struct cdev * cdev = NULL;
James Bottomley7c07d612007-08-05 13:36:11 -05001502 int error;
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001503 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
1505 disk = alloc_disk(1);
1506 if (!disk) {
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001507 pr_warn("%s: alloc_disk failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 return -ENOMEM;
1509 }
1510 disk->major = SCSI_GENERIC_MAJOR;
1511
1512 error = -ENOMEM;
1513 cdev = cdev_alloc();
1514 if (!cdev) {
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001515 pr_warn("%s: cdev_alloc failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 goto out;
1517 }
1518 cdev->owner = THIS_MODULE;
1519 cdev->ops = &sg_fops;
1520
James Bottomley7c07d612007-08-05 13:36:11 -05001521 sdp = sg_alloc(disk, scsidp);
1522 if (IS_ERR(sdp)) {
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001523 pr_warn("%s: sg_alloc failed\n", __func__);
James Bottomley7c07d612007-08-05 13:36:11 -05001524 error = PTR_ERR(sdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 goto out;
1526 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
James Bottomley7c07d612007-08-05 13:36:11 -05001528 error = cdev_add(cdev, MKDEV(SCSI_GENERIC_MAJOR, sdp->index), 1);
Greg KH5e3c34c2006-01-18 16:17:46 -08001529 if (error)
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001530 goto cdev_add_err;
Greg KH5e3c34c2006-01-18 16:17:46 -08001531
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 sdp->cdev = cdev;
1533 if (sg_sysfs_valid) {
Tony Jonesee959b02008-02-22 00:13:36 +01001534 struct device *sg_class_member;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
Greg Kroah-Hartmand73a1a672008-07-21 20:03:34 -07001536 sg_class_member = device_create(sg_sysfs_class, cl_dev->parent,
1537 MKDEV(SCSI_GENERIC_MAJOR,
1538 sdp->index),
1539 sdp, "%s", disk->disk_name);
FUJITA Tomonorid07e0362008-01-15 13:18:00 +09001540 if (IS_ERR(sg_class_member)) {
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001541 pr_err("%s: device_create failed\n", __func__);
FUJITA Tomonorid07e0362008-01-15 13:18:00 +09001542 error = PTR_ERR(sg_class_member);
1543 goto cdev_add_err;
1544 }
FUJITA Tomonorid07e0362008-01-15 13:18:00 +09001545 error = sysfs_create_link(&scsidp->sdev_gendev.kobj,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 &sg_class_member->kobj, "generic");
1547 if (error)
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001548 pr_err("%s: unable to make symlink 'generic' back "
1549 "to sg%d\n", __func__, sdp->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 } else
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001551 pr_warn("%s: sg_sys Invalid\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001553 sdev_printk(KERN_NOTICE, scsidp, "Attached scsi generic sg%d "
1554 "type %d\n", sdp->index, scsidp->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
Tony Jonesee959b02008-02-22 00:13:36 +01001556 dev_set_drvdata(cl_dev, sdp);
FUJITA Tomonoria24484f2008-01-15 13:17:47 +09001557
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 return 0;
1559
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001560cdev_add_err:
James Bottomley7c07d612007-08-05 13:36:11 -05001561 write_lock_irqsave(&sg_index_lock, iflags);
1562 idr_remove(&sg_index_idr, sdp->index);
1563 write_unlock_irqrestore(&sg_index_lock, iflags);
1564 kfree(sdp);
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001565
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566out:
1567 put_disk(disk);
1568 if (cdev)
1569 cdev_del(cdev);
1570 return error;
1571}
1572
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001573static void
1574sg_device_destroy(struct kref *kref)
Tony Battersbyc6517b792009-01-21 14:45:50 -05001575{
1576 struct sg_device *sdp = container_of(kref, struct sg_device, d_ref);
1577 unsigned long flags;
1578
1579 /* CAUTION! Note that the device can still be found via idr_find()
1580 * even though the refcount is 0. Therefore, do idr_remove() BEFORE
1581 * any other cleanup.
1582 */
1583
1584 write_lock_irqsave(&sg_index_lock, flags);
1585 idr_remove(&sg_index_idr, sdp->index);
1586 write_unlock_irqrestore(&sg_index_lock, flags);
1587
1588 SCSI_LOG_TIMEOUT(3,
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001589 sg_printk(KERN_INFO, sdp, "sg_device_destroy\n"));
Tony Battersbyc6517b792009-01-21 14:45:50 -05001590
1591 put_disk(sdp->disk);
1592 kfree(sdp);
1593}
1594
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001595static void
1596sg_remove_device(struct device *cl_dev, struct class_interface *cl_intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597{
Tony Jonesee959b02008-02-22 00:13:36 +01001598 struct scsi_device *scsidp = to_scsi_device(cl_dev->parent);
1599 Sg_device *sdp = dev_get_drvdata(cl_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 unsigned long iflags;
1601 Sg_fd *sfp;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001602 int val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001604 if (!sdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 return;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001606 /* want sdp->detaching non-zero as soon as possible */
1607 val = atomic_inc_return(&sdp->detaching);
1608 if (val > 1)
1609 return; /* only want to do following once per device */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001611 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
1612 "%s\n", __func__));
Tony Battersbyc6517b792009-01-21 14:45:50 -05001613
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001614 read_lock_irqsave(&sdp->sfd_lock, iflags);
FUJITA Tomonori3442f802009-02-16 13:26:53 +09001615 list_for_each_entry(sfp, &sdp->sfds, sfd_siblings) {
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001616 wake_up_interruptible_all(&sfp->read_wait);
Tony Battersbyc6517b792009-01-21 14:45:50 -05001617 kill_fasync(&sfp->async_qp, SIGPOLL, POLL_HUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 }
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001619 wake_up_interruptible_all(&sdp->open_wait);
1620 read_unlock_irqrestore(&sdp->sfd_lock, iflags);
James Bottomley7c07d612007-08-05 13:36:11 -05001621
1622 sysfs_remove_link(&scsidp->sdev_gendev.kobj, "generic");
Tony Jonesee959b02008-02-22 00:13:36 +01001623 device_destroy(sg_sysfs_class, MKDEV(SCSI_GENERIC_MAJOR, sdp->index));
James Bottomley7c07d612007-08-05 13:36:11 -05001624 cdev_del(sdp->cdev);
1625 sdp->cdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001627 kref_put(&sdp->d_ref, sg_device_destroy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628}
1629
Douglas Gilbert6460e752006-09-20 18:20:49 -04001630module_param_named(scatter_elem_sz, scatter_elem_sz, int, S_IRUGO | S_IWUSR);
1631module_param_named(def_reserved_size, def_reserved_size, int,
1632 S_IRUGO | S_IWUSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633module_param_named(allow_dio, sg_allow_dio, int, S_IRUGO | S_IWUSR);
1634
1635MODULE_AUTHOR("Douglas Gilbert");
1636MODULE_DESCRIPTION("SCSI generic (sg) driver");
1637MODULE_LICENSE("GPL");
1638MODULE_VERSION(SG_VERSION_STR);
Rene Hermanf018fa52006-03-08 00:14:20 -08001639MODULE_ALIAS_CHARDEV_MAJOR(SCSI_GENERIC_MAJOR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
Douglas Gilbert6460e752006-09-20 18:20:49 -04001641MODULE_PARM_DESC(scatter_elem_sz, "scatter gather element "
1642 "size (default: max(SG_SCATTER_SZ, PAGE_SIZE))");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643MODULE_PARM_DESC(def_reserved_size, "size of buffer reserved for each fd");
1644MODULE_PARM_DESC(allow_dio, "allow direct I/O (default: 0 (disallow))");
1645
1646static int __init
1647init_sg(void)
1648{
1649 int rc;
1650
Douglas Gilbert6460e752006-09-20 18:20:49 -04001651 if (scatter_elem_sz < PAGE_SIZE) {
1652 scatter_elem_sz = PAGE_SIZE;
1653 scatter_elem_sz_prev = scatter_elem_sz;
1654 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 if (def_reserved_size >= 0)
1656 sg_big_buff = def_reserved_size;
Douglas Gilbert6460e752006-09-20 18:20:49 -04001657 else
1658 def_reserved_size = sg_big_buff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
1660 rc = register_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0),
1661 SG_MAX_DEVS, "sg");
1662 if (rc)
1663 return rc;
gregkh@suse.ded2538782005-03-23 09:55:22 -08001664 sg_sysfs_class = class_create(THIS_MODULE, "scsi_generic");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 if ( IS_ERR(sg_sysfs_class) ) {
1666 rc = PTR_ERR(sg_sysfs_class);
1667 goto err_out;
1668 }
1669 sg_sysfs_valid = 1;
1670 rc = scsi_register_interface(&sg_interface);
1671 if (0 == rc) {
1672#ifdef CONFIG_SCSI_PROC_FS
1673 sg_proc_init();
1674#endif /* CONFIG_SCSI_PROC_FS */
1675 return 0;
1676 }
gregkh@suse.ded2538782005-03-23 09:55:22 -08001677 class_destroy(sg_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678err_out:
1679 unregister_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0), SG_MAX_DEVS);
1680 return rc;
1681}
1682
1683static void __exit
1684exit_sg(void)
1685{
1686#ifdef CONFIG_SCSI_PROC_FS
Christoph Hellwigb8b14832018-04-11 11:26:22 +02001687 remove_proc_subtree("scsi/sg", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688#endif /* CONFIG_SCSI_PROC_FS */
1689 scsi_unregister_interface(&sg_interface);
gregkh@suse.ded2538782005-03-23 09:55:22 -08001690 class_destroy(sg_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 sg_sysfs_valid = 0;
1692 unregister_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0),
1693 SG_MAX_DEVS);
James Bottomley7c07d612007-08-05 13:36:11 -05001694 idr_destroy(&sg_index_idr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695}
1696
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001697static int
1698sg_start_req(Sg_request *srp, unsigned char *cmd)
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001699{
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001700 int res;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001701 struct request *rq;
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001702 struct scsi_request *req;
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001703 Sg_fd *sfp = srp->parentfp;
1704 sg_io_hdr_t *hp = &srp->header;
1705 int dxfer_len = (int) hp->dxfer_len;
1706 int dxfer_dir = hp->dxfer_direction;
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001707 unsigned int iov_count = hp->iovec_count;
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001708 Sg_scatter_hold *req_schp = &srp->data;
1709 Sg_scatter_hold *rsv_schp = &sfp->reserve;
1710 struct request_queue *q = sfp->parentdp->device->request_queue;
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001711 struct rq_map_data *md, map_data;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001712 int rw = hp->dxfer_direction == SG_DXFER_TO_DEV ? WRITE : READ;
Douglas Gilbert65c26a02014-06-03 13:18:18 -04001713 unsigned char *long_cmdp = NULL;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001714
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001715 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
1716 "sg_start_req: dxfer_len=%d\n",
1717 dxfer_len));
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001718
Douglas Gilbert65c26a02014-06-03 13:18:18 -04001719 if (hp->cmd_len > BLK_MAX_CDB) {
1720 long_cmdp = kzalloc(hp->cmd_len, GFP_KERNEL);
1721 if (!long_cmdp)
1722 return -ENOMEM;
1723 }
1724
Tony Battersby77728552015-02-13 12:10:58 -05001725 /*
1726 * NOTE
1727 *
1728 * With scsi-mq enabled, there are a fixed number of preallocated
1729 * requests equal in number to shost->can_queue. If all of the
Tony Battersby8e4a4182018-07-12 18:09:21 -04001730 * preallocated requests are already in use, then blk_get_request()
1731 * will sleep until an active command completes, freeing up a request.
1732 * Although waiting in an asynchronous interface is less than ideal, we
1733 * do not want to use BLK_MQ_REQ_NOWAIT here because userspace might
1734 * not expect an EWOULDBLOCK from this condition.
Tony Battersby77728552015-02-13 12:10:58 -05001735 */
Christoph Hellwigaebf5262017-01-31 16:57:31 +01001736 rq = blk_get_request(q, hp->dxfer_direction == SG_DXFER_TO_DEV ?
Christoph Hellwigff005a02018-05-09 09:54:05 +02001737 REQ_OP_SCSI_OUT : REQ_OP_SCSI_IN, 0);
Joe Lawrencea492f072014-08-28 08:15:21 -06001738 if (IS_ERR(rq)) {
Douglas Gilbert65c26a02014-06-03 13:18:18 -04001739 kfree(long_cmdp);
Joe Lawrencea492f072014-08-28 08:15:21 -06001740 return PTR_ERR(rq);
Douglas Gilbert65c26a02014-06-03 13:18:18 -04001741 }
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001742 req = scsi_req(rq);
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001743
Douglas Gilbert65c26a02014-06-03 13:18:18 -04001744 if (hp->cmd_len > BLK_MAX_CDB)
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001745 req->cmd = long_cmdp;
1746 memcpy(req->cmd, cmd, hp->cmd_len);
1747 req->cmd_len = hp->cmd_len;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001748
1749 srp->rq = rq;
1750 rq->end_io_data = srp;
Christoph Hellwig64c7f1d2017-04-05 19:18:12 +02001751 req->retries = SG_DEFAULT_RETRIES;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001752
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 if ((dxfer_len <= 0) || (dxfer_dir == SG_DXFER_NONE))
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001754 return 0;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001755
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001756 if (sg_allow_dio && hp->flags & SG_FLAG_DIRECT_IO &&
1757 dxfer_dir != SG_DXFER_UNKNOWN && !iov_count &&
1758 !sfp->parentdp->device->host->unchecked_isa_dma &&
Namhyung Kim2610a252010-09-16 12:55:57 +09001759 blk_rq_aligned(q, (unsigned long)hp->dxferp, dxfer_len))
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001760 md = NULL;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001761 else
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001762 md = &map_data;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001763
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001764 if (md) {
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001765 mutex_lock(&sfp->f_mutex);
1766 if (dxfer_len <= rsv_schp->bufflen &&
1767 !sfp->res_in_use) {
1768 sfp->res_in_use = 1;
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001769 sg_link_reserve(sfp, srp, dxfer_len);
Todd Poynor8d26f492017-08-15 21:48:43 -07001770 } else if (hp->flags & SG_FLAG_MMAP_IO) {
1771 res = -EBUSY; /* sfp->res_in_use == 1 */
1772 if (dxfer_len > rsv_schp->bufflen)
1773 res = -ENOMEM;
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001774 mutex_unlock(&sfp->f_mutex);
Todd Poynor8d26f492017-08-15 21:48:43 -07001775 return res;
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001776 } else {
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001777 res = sg_build_indirect(req_schp, sfp, dxfer_len);
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001778 if (res) {
1779 mutex_unlock(&sfp->f_mutex);
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001780 return res;
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001781 }
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001782 }
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001783 mutex_unlock(&sfp->f_mutex);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001784
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001785 md->pages = req_schp->pages;
1786 md->page_order = req_schp->page_order;
1787 md->nr_entries = req_schp->k_use_sg;
FUJITA Tomonori56c451f2008-12-18 14:49:37 +09001788 md->offset = 0;
FUJITA Tomonori97ae77a2008-12-18 14:49:38 +09001789 md->null_mapped = hp->dxferp ? 0 : 1;
FUJITA Tomonoriecb554a2009-07-09 14:46:53 +02001790 if (dxfer_dir == SG_DXFER_TO_FROM_DEV)
1791 md->from_user = 1;
1792 else
1793 md->from_user = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001795
FUJITA Tomonori0fdf96b2009-04-03 09:12:20 +09001796 if (iov_count) {
Al Virofdc81f42015-03-21 20:25:30 -04001797 struct iovec *iov = NULL;
Kent Overstreet26e49cf2015-01-18 16:16:31 +01001798 struct iov_iter i;
FUJITA Tomonori0fdf96b2009-04-03 09:12:20 +09001799
Al Virofdc81f42015-03-21 20:25:30 -04001800 res = import_iovec(rw, hp->dxferp, iov_count, 0, &iov, &i);
1801 if (res < 0)
1802 return res;
FUJITA Tomonori0fdf96b2009-04-03 09:12:20 +09001803
Al Virofdc81f42015-03-21 20:25:30 -04001804 iov_iter_truncate(&i, hp->dxfer_len);
Al Viro137d01d2017-02-19 07:15:27 +00001805 if (!iov_iter_count(&i)) {
1806 kfree(iov);
1807 return -EINVAL;
1808 }
FUJITA Tomonori0fdf96b2009-04-03 09:12:20 +09001809
Kent Overstreet26e49cf2015-01-18 16:16:31 +01001810 res = blk_rq_map_user_iov(q, rq, md, &i, GFP_ATOMIC);
FUJITA Tomonori0fdf96b2009-04-03 09:12:20 +09001811 kfree(iov);
1812 } else
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001813 res = blk_rq_map_user(q, rq, md, hp->dxferp,
1814 hp->dxfer_len, GFP_ATOMIC);
1815
1816 if (!res) {
1817 srp->bio = rq->bio;
1818
1819 if (!md) {
1820 req_schp->dio_in_use = 1;
1821 hp->info |= SG_INFO_DIRECT_IO;
1822 }
1823 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001824 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825}
1826
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001827static int
1828sg_finish_rem_req(Sg_request *srp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829{
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +09001830 int ret = 0;
1831
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 Sg_fd *sfp = srp->parentfp;
1833 Sg_scatter_hold *req_schp = &srp->data;
1834
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001835 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
1836 "sg_finish_rem_req: res_used=%d\n",
1837 (int) srp->res_used));
Tony Battersby75686152015-02-13 12:09:44 -05001838 if (srp->bio)
1839 ret = blk_rq_unmap_user(srp->bio);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001840
Tony Battersby75686152015-02-13 12:09:44 -05001841 if (srp->rq) {
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001842 scsi_req_free_cmd(scsi_req(srp->rq));
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001843 blk_put_request(srp->rq);
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001844 }
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001845
Christof Schmitte27168f2009-09-17 09:10:14 +02001846 if (srp->res_used)
1847 sg_unlink_reserve(sfp, srp);
1848 else
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001849 sg_remove_scat(sfp, req_schp);
Christof Schmitte27168f2009-09-17 09:10:14 +02001850
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +09001851 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852}
1853
1854static int
1855sg_build_sgat(Sg_scatter_hold * schp, const Sg_fd * sfp, int tablesize)
1856{
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001857 int sg_bufflen = tablesize * sizeof(struct page *);
Al Viro2d20eaf2006-02-01 06:31:40 -05001858 gfp_t gfp_flags = GFP_ATOMIC | __GFP_NOWARN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001860 schp->pages = kzalloc(sg_bufflen, gfp_flags);
1861 if (!schp->pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 schp->sglist_len = sg_bufflen;
Mike Christied6b10342005-11-08 04:06:41 -06001864 return tablesize; /* number of scat_gath elements allocated */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865}
1866
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867static int
1868sg_build_indirect(Sg_scatter_hold * schp, Sg_fd * sfp, int buff_size)
1869{
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001870 int ret_sz = 0, i, k, rem_sz, num, mx_sc_elems;
Mike Christied6b10342005-11-08 04:06:41 -06001871 int sg_tablesize = sfp->parentdp->sg_tablesize;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001872 int blk_size = buff_size, order;
Jeff Moyer5b9d3972018-06-18 09:57:12 -04001873 gfp_t gfp_mask = GFP_ATOMIC | __GFP_COMP | __GFP_NOWARN | __GFP_ZERO;
Hannes Reinecke745dfa02017-04-07 09:34:12 +02001874 struct sg_device *sdp = sfp->parentdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875
Eric Sesterhennfb119932007-05-23 14:41:36 -07001876 if (blk_size < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 return -EFAULT;
1878 if (0 == blk_size)
1879 ++blk_size; /* don't know why */
FUJITA Tomonorib2ed6c62009-02-12 02:42:57 +09001880 /* round request up to next highest SG_SECTOR_SZ byte boundary */
1881 blk_size = ALIGN(blk_size, SG_SECTOR_SZ);
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001882 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
1883 "sg_build_indirect: buff_size=%d, blk_size=%d\n",
1884 buff_size, blk_size));
Mike Christied6b10342005-11-08 04:06:41 -06001885
1886 /* N.B. ret_sz carried into this block ... */
1887 mx_sc_elems = sg_build_sgat(schp, sfp, sg_tablesize);
1888 if (mx_sc_elems < 0)
1889 return mx_sc_elems; /* most likely -ENOMEM */
1890
Douglas Gilbert6460e752006-09-20 18:20:49 -04001891 num = scatter_elem_sz;
1892 if (unlikely(num != scatter_elem_sz_prev)) {
1893 if (num < PAGE_SIZE) {
1894 scatter_elem_sz = PAGE_SIZE;
1895 scatter_elem_sz_prev = PAGE_SIZE;
1896 } else
1897 scatter_elem_sz_prev = num;
1898 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001899
Hannes Reinecke745dfa02017-04-07 09:34:12 +02001900 if (sdp->device->host->unchecked_isa_dma)
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001901 gfp_mask |= GFP_DMA;
1902
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001903 order = get_order(num);
1904retry:
1905 ret_sz = 1 << (PAGE_SHIFT + order);
1906
1907 for (k = 0, rem_sz = blk_size; rem_sz > 0 && k < mx_sc_elems;
1908 k++, rem_sz -= ret_sz) {
1909
Douglas Gilbert6460e752006-09-20 18:20:49 -04001910 num = (rem_sz > scatter_elem_sz_prev) ?
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001911 scatter_elem_sz_prev : rem_sz;
1912
Jeff Moyer5b9d3972018-06-18 09:57:12 -04001913 schp->pages[k] = alloc_pages(gfp_mask, order);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001914 if (!schp->pages[k])
1915 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916
Douglas Gilbert6460e752006-09-20 18:20:49 -04001917 if (num == scatter_elem_sz_prev) {
1918 if (unlikely(ret_sz > scatter_elem_sz_prev)) {
1919 scatter_elem_sz = ret_sz;
1920 scatter_elem_sz_prev = ret_sz;
1921 }
1922 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001924 SCSI_LOG_TIMEOUT(5, sg_printk(KERN_INFO, sfp->parentdp,
1925 "sg_build_indirect: k=%d, num=%d, ret_sz=%d\n",
1926 k, num, ret_sz));
Mike Christied6b10342005-11-08 04:06:41 -06001927 } /* end of for loop */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001929 schp->page_order = order;
Mike Christied6b10342005-11-08 04:06:41 -06001930 schp->k_use_sg = k;
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001931 SCSI_LOG_TIMEOUT(5, sg_printk(KERN_INFO, sfp->parentdp,
1932 "sg_build_indirect: k_use_sg=%d, rem_sz=%d\n",
1933 k, rem_sz));
Mike Christied6b10342005-11-08 04:06:41 -06001934
1935 schp->bufflen = blk_size;
1936 if (rem_sz > 0) /* must have failed */
1937 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 return 0;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001939out:
1940 for (i = 0; i < k; i++)
Michal Schmidte71044e2009-09-03 14:27:08 +02001941 __free_pages(schp->pages[i], order);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001942
1943 if (--order >= 0)
1944 goto retry;
1945
1946 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947}
1948
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949static void
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001950sg_remove_scat(Sg_fd * sfp, Sg_scatter_hold * schp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951{
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001952 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
1953 "sg_remove_scat: k_use_sg=%d\n", schp->k_use_sg));
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001954 if (schp->pages && schp->sglist_len > 0) {
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001955 if (!schp->dio_in_use) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 int k;
1957
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001958 for (k = 0; k < schp->k_use_sg && schp->pages[k]; k++) {
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001959 SCSI_LOG_TIMEOUT(5,
1960 sg_printk(KERN_INFO, sfp->parentdp,
1961 "sg_remove_scat: k=%d, pg=0x%p\n",
1962 k, schp->pages[k]));
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001963 __free_pages(schp->pages[k], schp->page_order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 }
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001965
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001966 kfree(schp->pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 }
Mike Christied6b10342005-11-08 04:06:41 -06001968 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 memset(schp, 0, sizeof (*schp));
1970}
1971
1972static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973sg_read_oxfer(Sg_request * srp, char __user *outp, int num_read_xfer)
1974{
1975 Sg_scatter_hold *schp = &srp->data;
Mike Christied6b10342005-11-08 04:06:41 -06001976 int k, num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001978 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, srp->parentfp->parentdp,
1979 "sg_read_oxfer: num_read_xfer=%d\n",
1980 num_read_xfer));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 if ((!outp) || (num_read_xfer <= 0))
1982 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001984 num = 1 << (PAGE_SHIFT + schp->page_order);
1985 for (k = 0; k < schp->k_use_sg && schp->pages[k]; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06001986 if (num > num_read_xfer) {
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001987 if (__copy_to_user(outp, page_address(schp->pages[k]),
Mike Christied6b10342005-11-08 04:06:41 -06001988 num_read_xfer))
1989 return -EFAULT;
1990 break;
1991 } else {
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001992 if (__copy_to_user(outp, page_address(schp->pages[k]),
Mike Christied6b10342005-11-08 04:06:41 -06001993 num))
1994 return -EFAULT;
1995 num_read_xfer -= num;
1996 if (num_read_xfer <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 break;
Mike Christied6b10342005-11-08 04:06:41 -06001998 outp += num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 }
Mike Christied6b10342005-11-08 04:06:41 -06002001
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 return 0;
2003}
2004
2005static void
2006sg_build_reserve(Sg_fd * sfp, int req_size)
2007{
2008 Sg_scatter_hold *schp = &sfp->reserve;
2009
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002010 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
2011 "sg_build_reserve: req_size=%d\n", req_size));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 do {
2013 if (req_size < PAGE_SIZE)
2014 req_size = PAGE_SIZE;
2015 if (0 == sg_build_indirect(schp, sfp, req_size))
2016 return;
2017 else
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002018 sg_remove_scat(sfp, schp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 req_size >>= 1; /* divide by 2 */
2020 } while (req_size > (PAGE_SIZE / 2));
2021}
2022
2023static void
2024sg_link_reserve(Sg_fd * sfp, Sg_request * srp, int size)
2025{
2026 Sg_scatter_hold *req_schp = &srp->data;
2027 Sg_scatter_hold *rsv_schp = &sfp->reserve;
Mike Christied6b10342005-11-08 04:06:41 -06002028 int k, num, rem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029
2030 srp->res_used = 1;
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002031 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
2032 "sg_link_reserve: size=%d\n", size));
Brian Kingeca7be52006-02-14 12:42:24 -06002033 rem = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02002035 num = 1 << (PAGE_SHIFT + rsv_schp->page_order);
2036 for (k = 0; k < rsv_schp->k_use_sg; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06002037 if (rem <= num) {
Mike Christied6b10342005-11-08 04:06:41 -06002038 req_schp->k_use_sg = k + 1;
2039 req_schp->sglist_len = rsv_schp->sglist_len;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02002040 req_schp->pages = rsv_schp->pages;
Mike Christied6b10342005-11-08 04:06:41 -06002041
2042 req_schp->bufflen = size;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02002043 req_schp->page_order = rsv_schp->page_order;
Mike Christied6b10342005-11-08 04:06:41 -06002044 break;
2045 } else
2046 rem -= num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 }
Mike Christied6b10342005-11-08 04:06:41 -06002048
2049 if (k >= rsv_schp->k_use_sg)
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002050 SCSI_LOG_TIMEOUT(1, sg_printk(KERN_INFO, sfp->parentdp,
2051 "sg_link_reserve: BAD size\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052}
2053
2054static void
2055sg_unlink_reserve(Sg_fd * sfp, Sg_request * srp)
2056{
2057 Sg_scatter_hold *req_schp = &srp->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002059 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, srp->parentfp->parentdp,
2060 "sg_unlink_reserve: req->k_use_sg=%d\n",
2061 (int) req_schp->k_use_sg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 req_schp->k_use_sg = 0;
2063 req_schp->bufflen = 0;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02002064 req_schp->pages = NULL;
2065 req_schp->page_order = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 req_schp->sglist_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 srp->res_used = 0;
Hannes Reineckee791ce22017-04-24 10:26:36 +02002068 /* Called without mutex lock to avoid deadlock */
2069 sfp->res_in_use = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070}
2071
2072static Sg_request *
2073sg_get_rq_mark(Sg_fd * sfp, int pack_id)
2074{
2075 Sg_request *resp;
2076 unsigned long iflags;
2077
2078 write_lock_irqsave(&sfp->rq_list_lock, iflags);
Hannes Reinecke109bade2017-04-07 09:34:16 +02002079 list_for_each_entry(resp, &sfp->rq_list, entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 /* look for requests that are ready + not SG_IO owned */
2081 if ((1 == resp->done) && (!resp->sg_io_owned) &&
2082 ((-1 == pack_id) || (resp->header.pack_id == pack_id))) {
2083 resp->done = 2; /* guard against other readers */
Johannes Thumshirn48ae8482017-05-10 09:53:40 +02002084 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
2085 return resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 }
2087 }
2088 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
Johannes Thumshirn48ae8482017-05-10 09:53:40 +02002089 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090}
2091
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092/* always adds to end of list */
2093static Sg_request *
2094sg_add_request(Sg_fd * sfp)
2095{
2096 int k;
2097 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 Sg_request *rp = sfp->req_arr;
2099
2100 write_lock_irqsave(&sfp->rq_list_lock, iflags);
Hannes Reinecke109bade2017-04-07 09:34:16 +02002101 if (!list_empty(&sfp->rq_list)) {
2102 if (!sfp->cmd_q)
2103 goto out_unlock;
2104
2105 for (k = 0; k < SG_MAX_QUEUE; ++k, ++rp) {
2106 if (!rp->parentfp)
2107 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 }
Hannes Reinecke109bade2017-04-07 09:34:16 +02002109 if (k >= SG_MAX_QUEUE)
2110 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 }
Hannes Reinecke109bade2017-04-07 09:34:16 +02002112 memset(rp, 0, sizeof (Sg_request));
2113 rp->parentfp = sfp;
2114 rp->header.duration = jiffies_to_msecs(jiffies);
2115 list_add_tail(&rp->entry, &sfp->rq_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
Hannes Reinecke109bade2017-04-07 09:34:16 +02002117 return rp;
2118out_unlock:
2119 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
2120 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121}
2122
2123/* Return of 1 for found; 0 for not found */
2124static int
2125sg_remove_request(Sg_fd * sfp, Sg_request * srp)
2126{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 unsigned long iflags;
2128 int res = 0;
2129
Hannes Reinecke109bade2017-04-07 09:34:16 +02002130 if (!sfp || !srp || list_empty(&sfp->rq_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 return res;
2132 write_lock_irqsave(&sfp->rq_list_lock, iflags);
Hannes Reinecke109bade2017-04-07 09:34:16 +02002133 if (!list_empty(&srp->entry)) {
2134 list_del(&srp->entry);
2135 srp->parentfp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 res = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 }
2138 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
2139 return res;
2140}
2141
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142static Sg_fd *
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002143sg_add_sfp(Sg_device * sdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144{
2145 Sg_fd *sfp;
2146 unsigned long iflags;
Alan Stern44ec9542007-02-20 11:01:57 -05002147 int bufflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
Mike Christied6b10342005-11-08 04:06:41 -06002149 sfp = kzalloc(sizeof(*sfp), GFP_ATOMIC | __GFP_NOWARN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 if (!sfp)
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002151 return ERR_PTR(-ENOMEM);
Mike Christied6b10342005-11-08 04:06:41 -06002152
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 init_waitqueue_head(&sfp->read_wait);
2154 rwlock_init(&sfp->rq_list_lock);
Hannes Reinecke109bade2017-04-07 09:34:16 +02002155 INIT_LIST_HEAD(&sfp->rq_list);
Tony Battersbyc6517b792009-01-21 14:45:50 -05002156 kref_init(&sfp->f_ref);
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02002157 mutex_init(&sfp->f_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 sfp->timeout = SG_DEFAULT_TIMEOUT;
2159 sfp->timeout_user = SG_DEFAULT_TIMEOUT_USER;
2160 sfp->force_packid = SG_DEF_FORCE_PACK_ID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 sfp->cmd_q = SG_DEF_COMMAND_Q;
2162 sfp->keep_orphan = SG_DEF_KEEP_ORPHAN;
2163 sfp->parentdp = sdp;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002164 write_lock_irqsave(&sdp->sfd_lock, iflags);
2165 if (atomic_read(&sdp->detaching)) {
2166 write_unlock_irqrestore(&sdp->sfd_lock, iflags);
Tony Battersbyc170e5a2018-07-12 16:30:45 -04002167 kfree(sfp);
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002168 return ERR_PTR(-ENODEV);
2169 }
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002170 list_add_tail(&sfp->sfd_siblings, &sdp->sfds);
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002171 write_unlock_irqrestore(&sdp->sfd_lock, iflags);
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002172 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
2173 "sg_add_sfp: sfp=0x%p\n", sfp));
Douglas Gilbert6460e752006-09-20 18:20:49 -04002174 if (unlikely(sg_big_buff != def_reserved_size))
2175 sg_big_buff = def_reserved_size;
2176
Alan Stern44ec9542007-02-20 11:01:57 -05002177 bufflen = min_t(int, sg_big_buff,
Akinobu Mita46f69e62014-06-02 22:56:46 +09002178 max_sectors_bytes(sdp->device->request_queue));
Alan Stern44ec9542007-02-20 11:01:57 -05002179 sg_build_reserve(sfp, bufflen);
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002180 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
2181 "sg_add_sfp: bufflen=%d, k_use_sg=%d\n",
2182 sfp->reserve.bufflen,
2183 sfp->reserve.k_use_sg));
Tony Battersbyc6517b792009-01-21 14:45:50 -05002184
2185 kref_get(&sdp->d_ref);
2186 __module_get(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 return sfp;
2188}
2189
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002190static void
2191sg_remove_sfp_usercontext(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192{
Tony Battersbyc6517b792009-01-21 14:45:50 -05002193 struct sg_fd *sfp = container_of(work, struct sg_fd, ew.work);
2194 struct sg_device *sdp = sfp->parentdp;
Hannes Reinecke109bade2017-04-07 09:34:16 +02002195 Sg_request *srp;
Hannes Reinecke97d27b0dd2017-04-07 09:34:17 +02002196 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197
Tony Battersbyc6517b792009-01-21 14:45:50 -05002198 /* Cleanup any responses which were never read(). */
Hannes Reinecke97d27b0dd2017-04-07 09:34:17 +02002199 write_lock_irqsave(&sfp->rq_list_lock, iflags);
Hannes Reinecke109bade2017-04-07 09:34:16 +02002200 while (!list_empty(&sfp->rq_list)) {
2201 srp = list_first_entry(&sfp->rq_list, Sg_request, entry);
2202 sg_finish_rem_req(srp);
Hannes Reinecke97d27b0dd2017-04-07 09:34:17 +02002203 list_del(&srp->entry);
2204 srp->parentfp = NULL;
Hannes Reinecke109bade2017-04-07 09:34:16 +02002205 }
Hannes Reinecke97d27b0dd2017-04-07 09:34:17 +02002206 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
Tony Battersbyc6517b792009-01-21 14:45:50 -05002207
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 if (sfp->reserve.bufflen > 0) {
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002209 SCSI_LOG_TIMEOUT(6, sg_printk(KERN_INFO, sdp,
2210 "sg_remove_sfp: bufflen=%d, k_use_sg=%d\n",
Tony Battersbyc6517b792009-01-21 14:45:50 -05002211 (int) sfp->reserve.bufflen,
2212 (int) sfp->reserve.k_use_sg));
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002213 sg_remove_scat(sfp, &sfp->reserve);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05002215
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002216 SCSI_LOG_TIMEOUT(6, sg_printk(KERN_INFO, sdp,
2217 "sg_remove_sfp: sfp=0x%p\n", sfp));
Mike Christied6b10342005-11-08 04:06:41 -06002218 kfree(sfp);
Tony Battersbyc6517b792009-01-21 14:45:50 -05002219
2220 scsi_device_put(sdp->device);
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002221 kref_put(&sdp->d_ref, sg_device_destroy);
Tony Battersbyc6517b792009-01-21 14:45:50 -05002222 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223}
2224
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002225static void
2226sg_remove_sfp(struct kref *kref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227{
Tony Battersbyc6517b792009-01-21 14:45:50 -05002228 struct sg_fd *sfp = container_of(kref, struct sg_fd, f_ref);
James Bottomley065b4a22013-10-25 10:27:02 +01002229 struct sg_device *sdp = sfp->parentdp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002230 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002232 write_lock_irqsave(&sdp->sfd_lock, iflags);
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002233 list_del(&sfp->sfd_siblings);
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002234 write_unlock_irqrestore(&sdp->sfd_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235
FUJITA Tomonori015640e2009-04-03 19:28:06 +09002236 INIT_WORK(&sfp->ew.work, sg_remove_sfp_usercontext);
2237 schedule_work(&sfp->ew.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238}
2239
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240#ifdef CONFIG_SCSI_PROC_FS
2241static int
James Bottomley7c07d612007-08-05 13:36:11 -05002242sg_idr_max_id(int id, void *p, void *data)
2243{
2244 int *k = data;
2245
2246 if (*k < id)
2247 *k = id;
2248
2249 return 0;
2250}
2251
2252static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253sg_last_dev(void)
2254{
Tony Battersby53474c02008-01-22 15:25:49 -05002255 int k = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 unsigned long iflags;
2257
James Bottomley7c07d612007-08-05 13:36:11 -05002258 read_lock_irqsave(&sg_index_lock, iflags);
2259 idr_for_each(&sg_index_idr, sg_idr_max_id, &k);
2260 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 return k + 1; /* origin 1 */
2262}
2263#endif
2264
Tony Battersbyc6517b792009-01-21 14:45:50 -05002265/* must be called with sg_index_lock held */
2266static Sg_device *sg_lookup_dev(int dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267{
Tony Battersbyc6517b792009-01-21 14:45:50 -05002268 return idr_find(&sg_index_idr, dev);
2269}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002271static Sg_device *
2272sg_get_dev(int dev)
Tony Battersbyc6517b792009-01-21 14:45:50 -05002273{
2274 struct sg_device *sdp;
2275 unsigned long flags;
2276
2277 read_lock_irqsave(&sg_index_lock, flags);
2278 sdp = sg_lookup_dev(dev);
2279 if (!sdp)
2280 sdp = ERR_PTR(-ENXIO);
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002281 else if (atomic_read(&sdp->detaching)) {
2282 /* If sdp->detaching, then the refcount may already be 0, in
Tony Battersbyc6517b792009-01-21 14:45:50 -05002283 * which case it would be a bug to do kref_get().
2284 */
2285 sdp = ERR_PTR(-ENODEV);
2286 } else
2287 kref_get(&sdp->d_ref);
2288 read_unlock_irqrestore(&sg_index_lock, flags);
James Bottomley7c07d612007-08-05 13:36:11 -05002289
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 return sdp;
2291}
2292
2293#ifdef CONFIG_SCSI_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294static int sg_proc_seq_show_int(struct seq_file *s, void *v);
2295
2296static int sg_proc_single_open_adio(struct inode *inode, struct file *file);
2297static ssize_t sg_proc_write_adio(struct file *filp, const char __user *buffer,
2298 size_t count, loff_t *off);
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002299static const struct file_operations adio_fops = {
2300 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 .open = sg_proc_single_open_adio,
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002302 .read = seq_read,
2303 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 .write = sg_proc_write_adio,
2305 .release = single_release,
2306};
2307
2308static int sg_proc_single_open_dressz(struct inode *inode, struct file *file);
2309static ssize_t sg_proc_write_dressz(struct file *filp,
2310 const char __user *buffer, size_t count, loff_t *off);
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002311static const struct file_operations dressz_fops = {
2312 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 .open = sg_proc_single_open_dressz,
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002314 .read = seq_read,
2315 .llseek = seq_lseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 .write = sg_proc_write_dressz,
2317 .release = single_release,
2318};
2319
2320static int sg_proc_seq_show_version(struct seq_file *s, void *v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321static int sg_proc_seq_show_devhdr(struct seq_file *s, void *v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322static int sg_proc_seq_show_dev(struct seq_file *s, void *v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323static void * dev_seq_start(struct seq_file *s, loff_t *pos);
2324static void * dev_seq_next(struct seq_file *s, void *v, loff_t *pos);
2325static void dev_seq_stop(struct seq_file *s, void *v);
James Morris88e9d342009-09-22 16:43:43 -07002326static const struct seq_operations dev_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 .start = dev_seq_start,
2328 .next = dev_seq_next,
2329 .stop = dev_seq_stop,
2330 .show = sg_proc_seq_show_dev,
2331};
2332
2333static int sg_proc_seq_show_devstrs(struct seq_file *s, void *v);
James Morris88e9d342009-09-22 16:43:43 -07002334static const struct seq_operations devstrs_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 .start = dev_seq_start,
2336 .next = dev_seq_next,
2337 .stop = dev_seq_stop,
2338 .show = sg_proc_seq_show_devstrs,
2339};
2340
2341static int sg_proc_seq_show_debug(struct seq_file *s, void *v);
James Morris88e9d342009-09-22 16:43:43 -07002342static const struct seq_operations debug_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 .start = dev_seq_start,
2344 .next = dev_seq_next,
2345 .stop = dev_seq_stop,
2346 .show = sg_proc_seq_show_debug,
2347};
2348
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349static int
2350sg_proc_init(void)
2351{
Christoph Hellwigb8b14832018-04-11 11:26:22 +02002352 struct proc_dir_entry *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353
Christoph Hellwigb8b14832018-04-11 11:26:22 +02002354 p = proc_mkdir("scsi/sg", NULL);
2355 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 return 1;
Christoph Hellwigb8b14832018-04-11 11:26:22 +02002357
2358 proc_create("allow_dio", S_IRUGO | S_IWUSR, p, &adio_fops);
2359 proc_create_seq("debug", S_IRUGO, p, &debug_seq_ops);
2360 proc_create("def_reserved_size", S_IRUGO | S_IWUSR, p, &dressz_fops);
2361 proc_create_single("device_hdr", S_IRUGO, p, sg_proc_seq_show_devhdr);
2362 proc_create_seq("devices", S_IRUGO, p, &dev_seq_ops);
2363 proc_create_seq("device_strs", S_IRUGO, p, &devstrs_seq_ops);
2364 proc_create_single("version", S_IRUGO, p, sg_proc_seq_show_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 return 0;
2366}
2367
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368
2369static int sg_proc_seq_show_int(struct seq_file *s, void *v)
2370{
2371 seq_printf(s, "%d\n", *((int *)s->private));
2372 return 0;
2373}
2374
2375static int sg_proc_single_open_adio(struct inode *inode, struct file *file)
2376{
2377 return single_open(file, sg_proc_seq_show_int, &sg_allow_dio);
2378}
2379
2380static ssize_t
2381sg_proc_write_adio(struct file *filp, const char __user *buffer,
2382 size_t count, loff_t *off)
2383{
Stephen Boyd7e95fff2012-01-10 15:42:34 -08002384 int err;
2385 unsigned long num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386
2387 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
2388 return -EACCES;
Stephen Boyd7e95fff2012-01-10 15:42:34 -08002389 err = kstrtoul_from_user(buffer, count, 0, &num);
2390 if (err)
2391 return err;
2392 sg_allow_dio = num ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 return count;
2394}
2395
2396static int sg_proc_single_open_dressz(struct inode *inode, struct file *file)
2397{
2398 return single_open(file, sg_proc_seq_show_int, &sg_big_buff);
2399}
2400
2401static ssize_t
2402sg_proc_write_dressz(struct file *filp, const char __user *buffer,
2403 size_t count, loff_t *off)
2404{
Stephen Boyd7e95fff2012-01-10 15:42:34 -08002405 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 unsigned long k = ULONG_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407
2408 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
2409 return -EACCES;
Stephen Boyd7e95fff2012-01-10 15:42:34 -08002410
2411 err = kstrtoul_from_user(buffer, count, 0, &k);
2412 if (err)
2413 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 if (k <= 1048576) { /* limit "big buff" to 1 MB */
2415 sg_big_buff = k;
2416 return count;
2417 }
2418 return -ERANGE;
2419}
2420
2421static int sg_proc_seq_show_version(struct seq_file *s, void *v)
2422{
2423 seq_printf(s, "%d\t%s [%s]\n", sg_version_num, SG_VERSION_STR,
2424 sg_version_date);
2425 return 0;
2426}
2427
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428static int sg_proc_seq_show_devhdr(struct seq_file *s, void *v)
2429{
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002430 seq_puts(s, "host\tchan\tid\tlun\ttype\topens\tqdepth\tbusy\tonline\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 return 0;
2432}
2433
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434struct sg_proc_deviter {
2435 loff_t index;
2436 size_t max;
2437};
2438
2439static void * dev_seq_start(struct seq_file *s, loff_t *pos)
2440{
2441 struct sg_proc_deviter * it = kmalloc(sizeof(*it), GFP_KERNEL);
2442
Jan Blunck729d70f2005-08-27 11:07:52 -07002443 s->private = it;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 if (! it)
2445 return NULL;
Jan Blunck729d70f2005-08-27 11:07:52 -07002446
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 it->index = *pos;
2448 it->max = sg_last_dev();
2449 if (it->index >= it->max)
Jan Blunck729d70f2005-08-27 11:07:52 -07002450 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 return it;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452}
2453
2454static void * dev_seq_next(struct seq_file *s, void *v, loff_t *pos)
2455{
Jan Blunck729d70f2005-08-27 11:07:52 -07002456 struct sg_proc_deviter * it = s->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457
2458 *pos = ++it->index;
2459 return (it->index < it->max) ? it : NULL;
2460}
2461
2462static void dev_seq_stop(struct seq_file *s, void *v)
2463{
Jan Blunck729d70f2005-08-27 11:07:52 -07002464 kfree(s->private);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465}
2466
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467static int sg_proc_seq_show_dev(struct seq_file *s, void *v)
2468{
2469 struct sg_proc_deviter * it = (struct sg_proc_deviter *) v;
2470 Sg_device *sdp;
2471 struct scsi_device *scsidp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002472 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473
Tony Battersbyc6517b792009-01-21 14:45:50 -05002474 read_lock_irqsave(&sg_index_lock, iflags);
2475 sdp = it ? sg_lookup_dev(it->index) : NULL;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002476 if ((NULL == sdp) || (NULL == sdp->device) ||
2477 (atomic_read(&sdp->detaching)))
2478 seq_puts(s, "-1\t-1\t-1\t-1\t-1\t-1\t-1\t-1\t-1\n");
2479 else {
2480 scsidp = sdp->device;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002481 seq_printf(s, "%d\t%d\t%d\t%llu\t%d\t%d\t%d\t%d\t%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 scsidp->host->host_no, scsidp->channel,
2483 scsidp->id, scsidp->lun, (int) scsidp->type,
2484 1,
2485 (int) scsidp->queue_depth,
Christoph Hellwig71e75c92014-04-11 19:07:01 +02002486 (int) atomic_read(&scsidp->device_busy),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 (int) scsi_device_online(scsidp));
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002488 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05002489 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 return 0;
2491}
2492
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493static int sg_proc_seq_show_devstrs(struct seq_file *s, void *v)
2494{
2495 struct sg_proc_deviter * it = (struct sg_proc_deviter *) v;
2496 Sg_device *sdp;
2497 struct scsi_device *scsidp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002498 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499
Tony Battersbyc6517b792009-01-21 14:45:50 -05002500 read_lock_irqsave(&sg_index_lock, iflags);
2501 sdp = it ? sg_lookup_dev(it->index) : NULL;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002502 scsidp = sdp ? sdp->device : NULL;
2503 if (sdp && scsidp && (!atomic_read(&sdp->detaching)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 seq_printf(s, "%8.8s\t%16.16s\t%4.4s\n",
2505 scsidp->vendor, scsidp->model, scsidp->rev);
2506 else
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002507 seq_puts(s, "<no active device>\n");
Tony Battersbyc6517b792009-01-21 14:45:50 -05002508 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 return 0;
2510}
2511
James Bottomleyc0d3b9c2013-10-25 10:21:57 +01002512/* must be called while holding sg_index_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513static void sg_proc_debug_helper(struct seq_file *s, Sg_device * sdp)
2514{
Hannes Reinecke109bade2017-04-07 09:34:16 +02002515 int k, new_interface, blen, usg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 Sg_request *srp;
2517 Sg_fd *fp;
2518 const sg_io_hdr_t *hp;
2519 const char * cp;
cb59e842005-04-02 13:51:23 -06002520 unsigned int ms;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002522 k = 0;
2523 list_for_each_entry(fp, &sdp->sfds, sfd_siblings) {
2524 k++;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002525 read_lock(&fp->rq_list_lock); /* irqs already disabled */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 seq_printf(s, " FD(%d): timeout=%dms bufflen=%d "
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002527 "(res)sgat=%d low_dma=%d\n", k,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 jiffies_to_msecs(fp->timeout),
2529 fp->reserve.bufflen,
2530 (int) fp->reserve.k_use_sg,
Hannes Reinecke745dfa02017-04-07 09:34:12 +02002531 (int) sdp->device->host->unchecked_isa_dma);
Jörn Engelebaf4662012-04-12 17:33:39 -04002532 seq_printf(s, " cmd_q=%d f_packid=%d k_orphan=%d closed=0\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 (int) fp->cmd_q, (int) fp->force_packid,
Jörn Engelebaf4662012-04-12 17:33:39 -04002534 (int) fp->keep_orphan);
Hannes Reinecke109bade2017-04-07 09:34:16 +02002535 list_for_each_entry(srp, &fp->rq_list, entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 hp = &srp->header;
2537 new_interface = (hp->interface_id == '\0') ? 0 : 1;
2538 if (srp->res_used) {
Hannes Reinecke109bade2017-04-07 09:34:16 +02002539 if (new_interface &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 (SG_FLAG_MMAP_IO & hp->flags))
2541 cp = " mmap>> ";
2542 else
2543 cp = " rb>> ";
2544 } else {
2545 if (SG_INFO_DIRECT_IO_MASK & hp->info)
2546 cp = " dio>> ";
2547 else
2548 cp = " ";
2549 }
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002550 seq_puts(s, cp);
Mike Christied6b10342005-11-08 04:06:41 -06002551 blen = srp->data.bufflen;
2552 usg = srp->data.k_use_sg;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002553 seq_puts(s, srp->done ?
2554 ((1 == srp->done) ? "rcv:" : "fin:")
2555 : "act:");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 seq_printf(s, " id=%d blen=%d",
2557 srp->header.pack_id, blen);
2558 if (srp->done)
2559 seq_printf(s, " dur=%d", hp->duration);
cb59e842005-04-02 13:51:23 -06002560 else {
2561 ms = jiffies_to_msecs(jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 seq_printf(s, " t_o/elap=%d/%d",
cb59e842005-04-02 13:51:23 -06002563 (new_interface ? hp->timeout :
2564 jiffies_to_msecs(fp->timeout)),
2565 (ms > hp->duration ? ms - hp->duration : 0));
2566 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 seq_printf(s, "ms sgat=%d op=0x%02x\n", usg,
2568 (int) srp->data.cmd_opcode);
2569 }
Hannes Reinecke109bade2017-04-07 09:34:16 +02002570 if (list_empty(&fp->rq_list))
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002571 seq_puts(s, " No requests active\n");
Tony Battersbyc6517b792009-01-21 14:45:50 -05002572 read_unlock(&fp->rq_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 }
2574}
2575
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576static int sg_proc_seq_show_debug(struct seq_file *s, void *v)
2577{
2578 struct sg_proc_deviter * it = (struct sg_proc_deviter *) v;
2579 Sg_device *sdp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002580 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002582 if (it && (0 == it->index))
2583 seq_printf(s, "max_active_device=%d def_reserved_size=%d\n",
2584 (int)it->max, sg_big_buff);
Tony Battersbyc6517b792009-01-21 14:45:50 -05002585
2586 read_lock_irqsave(&sg_index_lock, iflags);
2587 sdp = it ? sg_lookup_dev(it->index) : NULL;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002588 if (NULL == sdp)
2589 goto skip;
2590 read_lock(&sdp->sfd_lock);
2591 if (!list_empty(&sdp->sfds)) {
James Bottomleyc0d3b9c2013-10-25 10:21:57 +01002592 seq_printf(s, " >>> device=%s ", sdp->disk->disk_name);
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002593 if (atomic_read(&sdp->detaching))
2594 seq_puts(s, "detaching pending close ");
2595 else if (sdp->device) {
2596 struct scsi_device *scsidp = sdp->device;
2597
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002598 seq_printf(s, "%d:%d:%d:%llu em=%d",
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002599 scsidp->host->host_no,
2600 scsidp->channel, scsidp->id,
2601 scsidp->lun,
2602 scsidp->host->hostt->emulated);
2603 }
2604 seq_printf(s, " sg_tablesize=%d excl=%d open_cnt=%d\n",
2605 sdp->sg_tablesize, sdp->exclude, sdp->open_cnt);
James Bottomleyc0d3b9c2013-10-25 10:21:57 +01002606 sg_proc_debug_helper(s, sdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 }
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002608 read_unlock(&sdp->sfd_lock);
2609skip:
Tony Battersbyc6517b792009-01-21 14:45:50 -05002610 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 return 0;
2612}
2613
2614#endif /* CONFIG_SCSI_PROC_FS */
2615
2616module_init(init_sg);
2617module_exit(exit_sg);