blob: 9c0ee192f0f9c8e9825c01b6fd91b9df96bbcd5b [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
Arnd Bergmann78ed0012019-12-04 09:35:00 +0100408static int get_sg_io_pack_id(int *pack_id, void __user *buf, size_t count)
409{
410 struct sg_header __user *old_hdr = buf;
411 int reply_len;
412
413 if (count >= SZ_SG_HEADER) {
414 /* negative reply_len means v3 format, otherwise v1/v2 */
415 if (get_user(reply_len, &old_hdr->reply_len))
416 return -EFAULT;
417
418 if (reply_len >= 0)
419 return get_user(*pack_id, &old_hdr->pack_id);
420
421 if (in_compat_syscall() &&
422 count >= sizeof(struct compat_sg_io_hdr)) {
423 struct compat_sg_io_hdr __user *hp = buf;
424
425 return get_user(*pack_id, &hp->pack_id);
426 }
427
428 if (count >= sizeof(struct sg_io_hdr)) {
429 struct sg_io_hdr __user *hp = buf;
430
431 return get_user(*pack_id, &hp->pack_id);
432 }
433 }
434
435 /* no valid header was passed, so ignore the pack_id */
436 *pack_id = -1;
437 return 0;
438}
439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440static ssize_t
441sg_read(struct file *filp, char __user *buf, size_t count, loff_t * ppos)
442{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 Sg_device *sdp;
444 Sg_fd *sfp;
445 Sg_request *srp;
446 int req_pack_id = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 sg_io_hdr_t *hp;
Arnd Bergmann78ed0012019-12-04 09:35:00 +0100448 struct sg_header *old_hdr;
449 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Jann Horn26b5b872018-06-25 16:25:44 +0200451 /*
452 * This could cause a response to be stranded. Close the associated
453 * file descriptor to free up any resources being held.
454 */
455 retval = sg_check_file_access(filp, __func__);
456 if (retval)
457 return retval;
458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
460 return -ENXIO;
Hannes Reinecke95e159d2014-06-25 16:39:55 +0200461 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
462 "sg_read: count=%d\n", (int) count));
Mike Christied6b10342005-11-08 04:06:41 -0600463
Arnd Bergmann78ed0012019-12-04 09:35:00 +0100464 if (sfp->force_packid)
465 retval = get_sg_io_pack_id(&req_pack_id, buf, count);
466 if (retval)
467 return retval;
468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 srp = sg_get_rq_mark(sfp, req_pack_id);
470 if (!srp) { /* now wait on packet to arrive */
Arnd Bergmann78ed0012019-12-04 09:35:00 +0100471 if (atomic_read(&sdp->detaching))
472 return -ENODEV;
473 if (filp->f_flags & O_NONBLOCK)
474 return -EAGAIN;
Jörn Engel3f0c6ab2012-04-12 17:33:25 -0400475 retval = wait_event_interruptible(sfp->read_wait,
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200476 (atomic_read(&sdp->detaching) ||
Jörn Engel3f0c6ab2012-04-12 17:33:25 -0400477 (srp = sg_get_rq_mark(sfp, req_pack_id))));
Arnd Bergmann78ed0012019-12-04 09:35:00 +0100478 if (atomic_read(&sdp->detaching))
479 return -ENODEV;
480 if (retval)
cb59e842005-04-02 13:51:23 -0600481 /* -ERESTARTSYS as signal hit process */
Arnd Bergmann78ed0012019-12-04 09:35:00 +0100482 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 }
Arnd Bergmann78ed0012019-12-04 09:35:00 +0100484 if (srp->header.interface_id != '\0')
485 return sg_new_read(sfp, buf, count, srp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
487 hp = &srp->header;
Arnd Bergmann78ed0012019-12-04 09:35:00 +0100488 old_hdr = kzalloc(SZ_SG_HEADER, GFP_KERNEL);
489 if (!old_hdr)
490 return -ENOMEM;
491
cb59e842005-04-02 13:51:23 -0600492 old_hdr->reply_len = (int) hp->timeout;
493 old_hdr->pack_len = old_hdr->reply_len; /* old, strange behaviour */
494 old_hdr->pack_id = hp->pack_id;
495 old_hdr->twelve_byte =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 ((srp->data.cmd_opcode >= 0xc0) && (12 == hp->cmd_len)) ? 1 : 0;
cb59e842005-04-02 13:51:23 -0600497 old_hdr->target_status = hp->masked_status;
498 old_hdr->host_status = hp->host_status;
499 old_hdr->driver_status = hp->driver_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 if ((CHECK_CONDITION & hp->masked_status) ||
501 (DRIVER_SENSE & hp->driver_status))
cb59e842005-04-02 13:51:23 -0600502 memcpy(old_hdr->sense_buffer, srp->sense_b,
503 sizeof (old_hdr->sense_buffer));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 switch (hp->host_status) {
505 /* This setup of 'result' is for backward compatibility and is best
506 ignored by the user who should use target, host + driver status */
507 case DID_OK:
508 case DID_PASSTHROUGH:
509 case DID_SOFT_ERROR:
cb59e842005-04-02 13:51:23 -0600510 old_hdr->result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 break;
512 case DID_NO_CONNECT:
513 case DID_BUS_BUSY:
514 case DID_TIME_OUT:
cb59e842005-04-02 13:51:23 -0600515 old_hdr->result = EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 break;
517 case DID_BAD_TARGET:
518 case DID_ABORT:
519 case DID_PARITY:
520 case DID_RESET:
521 case DID_BAD_INTR:
cb59e842005-04-02 13:51:23 -0600522 old_hdr->result = EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 break;
524 case DID_ERROR:
cb59e842005-04-02 13:51:23 -0600525 old_hdr->result = (srp->sense_b[0] == 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 hp->masked_status == GOOD) ? 0 : EIO;
527 break;
528 default:
cb59e842005-04-02 13:51:23 -0600529 old_hdr->result = EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 break;
531 }
532
533 /* Now copy the result back to the user buffer. */
534 if (count >= SZ_SG_HEADER) {
Al Viroc8c12792019-10-17 20:39:23 +0100535 if (copy_to_user(buf, old_hdr, SZ_SG_HEADER)) {
cb59e842005-04-02 13:51:23 -0600536 retval = -EFAULT;
537 goto free_old_hdr;
538 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 buf += SZ_SG_HEADER;
cb59e842005-04-02 13:51:23 -0600540 if (count > old_hdr->reply_len)
541 count = old_hdr->reply_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 if (count > SZ_SG_HEADER) {
cb59e842005-04-02 13:51:23 -0600543 if (sg_read_oxfer(srp, buf, count - SZ_SG_HEADER)) {
544 retval = -EFAULT;
545 goto free_old_hdr;
546 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 }
548 } else
cb59e842005-04-02 13:51:23 -0600549 count = (old_hdr->result == 0) ? 0 : -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 sg_finish_rem_req(srp);
Hannes Reinecke97d27b0dd2017-04-07 09:34:17 +0200551 sg_remove_request(sfp, srp);
cb59e842005-04-02 13:51:23 -0600552 retval = count;
553free_old_hdr:
Jesper Juhlc9475cb2005-11-07 01:01:26 -0800554 kfree(old_hdr);
cb59e842005-04-02 13:51:23 -0600555 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556}
557
558static ssize_t
559sg_new_read(Sg_fd * sfp, char __user *buf, size_t count, Sg_request * srp)
560{
561 sg_io_hdr_t *hp = &srp->header;
Tony Battersby3b524a62015-02-11 11:32:06 -0500562 int err = 0, err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 int len;
564
Arnd Bergmann78ed0012019-12-04 09:35:00 +0100565 if (in_compat_syscall()) {
566 if (count < sizeof(struct compat_sg_io_hdr)) {
567 err = -EINVAL;
568 goto err_out;
569 }
570 } else if (count < SZ_SG_IO_HDR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 err = -EINVAL;
572 goto err_out;
573 }
574 hp->sb_len_wr = 0;
575 if ((hp->mx_sb_len > 0) && hp->sbp) {
576 if ((CHECK_CONDITION & hp->masked_status) ||
577 (DRIVER_SENSE & hp->driver_status)) {
Mike Christied6b10342005-11-08 04:06:41 -0600578 int sb_len = SCSI_SENSE_BUFFERSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 sb_len = (hp->mx_sb_len > sb_len) ? sb_len : hp->mx_sb_len;
580 len = 8 + (int) srp->sense_b[7]; /* Additional sense length field */
581 len = (len > sb_len) ? sb_len : len;
582 if (copy_to_user(hp->sbp, srp->sense_b, len)) {
583 err = -EFAULT;
584 goto err_out;
585 }
586 hp->sb_len_wr = len;
587 }
588 }
589 if (hp->masked_status || hp->host_status || hp->driver_status)
590 hp->info |= SG_INFO_CHECK;
Arnd Bergmann98aaaec2019-03-14 17:45:18 +0100591 err = put_sg_io_hdr(hp, buf);
FUJITA Tomonori0b6cb262008-09-02 22:50:07 +0900592err_out:
Tony Battersby3b524a62015-02-11 11:32:06 -0500593 err2 = sg_finish_rem_req(srp);
Hannes Reinecke97d27b0dd2017-04-07 09:34:17 +0200594 sg_remove_request(sfp, srp);
Tony Battersby3b524a62015-02-11 11:32:06 -0500595 return err ? : err2 ? : count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596}
597
598static ssize_t
599sg_write(struct file *filp, const char __user *buf, size_t count, loff_t * ppos)
600{
601 int mxsize, cmd_size, k;
602 int input_size, blocking;
603 unsigned char opcode;
604 Sg_device *sdp;
605 Sg_fd *sfp;
606 Sg_request *srp;
607 struct sg_header old_hdr;
608 sg_io_hdr_t *hp;
Douglas Gilbert65c26a02014-06-03 13:18:18 -0400609 unsigned char cmnd[SG_MAX_CDB_SIZE];
Jann Horn26b5b872018-06-25 16:25:44 +0200610 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Jann Horn26b5b872018-06-25 16:25:44 +0200612 retval = sg_check_file_access(filp, __func__);
613 if (retval)
614 return retval;
Al Viro128394e2016-12-16 13:42:06 -0500615
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
617 return -ENXIO;
Hannes Reinecke95e159d2014-06-25 16:39:55 +0200618 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
619 "sg_write: count=%d\n", (int) count));
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200620 if (atomic_read(&sdp->detaching))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 return -ENODEV;
622 if (!((filp->f_flags & O_NONBLOCK) ||
623 scsi_block_when_processing_errors(sdp->device)))
624 return -ENXIO;
625
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 if (count < SZ_SG_HEADER)
627 return -EIO;
Al Viroa64e5a82019-10-17 20:39:24 +0100628 if (copy_from_user(&old_hdr, buf, SZ_SG_HEADER))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 return -EFAULT;
630 blocking = !(filp->f_flags & O_NONBLOCK);
631 if (old_hdr.reply_len < 0)
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500632 return sg_new_write(sfp, filp, buf, count,
633 blocking, 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 if (count < (SZ_SG_HEADER + 6))
635 return -EIO; /* The minimum scsi command length is 6 bytes. */
636
Al Viro062c9d42019-10-17 20:39:20 +0100637 buf += SZ_SG_HEADER;
Al Viroa64e5a82019-10-17 20:39:24 +0100638 if (get_user(opcode, buf))
Al Viro062c9d42019-10-17 20:39:20 +0100639 return -EFAULT;
640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 if (!(srp = sg_add_request(sfp))) {
Hannes Reinecke95e159d2014-06-25 16:39:55 +0200642 SCSI_LOG_TIMEOUT(1, sg_printk(KERN_INFO, sdp,
643 "sg_write: queue full\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 return -EDOM;
645 }
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +0200646 mutex_lock(&sfp->f_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 if (sfp->next_cmd_len > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 cmd_size = sfp->next_cmd_len;
649 sfp->next_cmd_len = 0; /* reset so only this write() effected */
650 } else {
651 cmd_size = COMMAND_SIZE(opcode); /* based on SCSI command group */
652 if ((opcode >= 0xc0) && old_hdr.twelve_byte)
653 cmd_size = 12;
654 }
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +0200655 mutex_unlock(&sfp->f_mutex);
Hannes Reinecke95e159d2014-06-25 16:39:55 +0200656 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sdp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 "sg_write: scsi opcode=0x%02x, cmd_size=%d\n", (int) opcode, cmd_size));
658/* Determine buffer size. */
659 input_size = count - cmd_size;
660 mxsize = (input_size > old_hdr.reply_len) ? input_size : old_hdr.reply_len;
661 mxsize -= SZ_SG_HEADER;
662 input_size -= SZ_SG_HEADER;
663 if (input_size < 0) {
664 sg_remove_request(sfp, srp);
665 return -EIO; /* User did not pass enough bytes for this command. */
666 }
667 hp = &srp->header;
668 hp->interface_id = '\0'; /* indicator of old interface tunnelled */
669 hp->cmd_len = (unsigned char) cmd_size;
670 hp->iovec_count = 0;
671 hp->mx_sb_len = 0;
672 if (input_size > 0)
673 hp->dxfer_direction = (old_hdr.reply_len > SZ_SG_HEADER) ?
674 SG_DXFER_TO_FROM_DEV : SG_DXFER_TO_DEV;
675 else
676 hp->dxfer_direction = (mxsize > 0) ? SG_DXFER_FROM_DEV : SG_DXFER_NONE;
677 hp->dxfer_len = mxsize;
Douglas Gilbert5ecee0a2016-03-03 00:31:29 -0500678 if ((hp->dxfer_direction == SG_DXFER_TO_DEV) ||
679 (hp->dxfer_direction == SG_DXFER_TO_FROM_DEV))
FUJITA Tomonorifad7f012008-09-02 16:20:20 +0900680 hp->dxferp = (char __user *)buf + cmd_size;
681 else
682 hp->dxferp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 hp->sbp = NULL;
684 hp->timeout = old_hdr.reply_len; /* structure abuse ... */
685 hp->flags = input_size; /* structure abuse ... */
686 hp->pack_id = old_hdr.pack_id;
687 hp->usr_ptr = NULL;
Al Viroa64e5a82019-10-17 20:39:24 +0100688 if (copy_from_user(cmnd, buf, cmd_size))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 return -EFAULT;
690 /*
691 * SG_DXFER_TO_FROM_DEV is functionally equivalent to SG_DXFER_FROM_DEV,
692 * but is is possible that the app intended SG_DXFER_TO_DEV, because there
693 * is a non-zero input_size, so emit a warning.
694 */
Andi Kleeneaa3e222008-01-13 17:41:43 +0100695 if (hp->dxfer_direction == SG_DXFER_TO_FROM_DEV) {
Johannes Thumshirn28676d82017-04-07 09:34:15 +0200696 printk_ratelimited(KERN_WARNING
697 "sg_write: data in/out %d/%d bytes "
698 "for SCSI command 0x%x-- guessing "
699 "data in;\n program %s not setting "
700 "count and/or reply_len properly\n",
701 old_hdr.reply_len - (int)SZ_SG_HEADER,
702 input_size, (unsigned int) cmnd[0],
703 current->comm);
Andi Kleeneaa3e222008-01-13 17:41:43 +0100704 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 k = sg_common_write(sfp, srp, cmnd, sfp->timeout, blocking);
706 return (k < 0) ? k : count;
707}
708
709static ssize_t
Adel Gadllah0b07de82008-06-26 13:48:27 +0200710sg_new_write(Sg_fd *sfp, struct file *file, const char __user *buf,
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500711 size_t count, int blocking, int read_only, int sg_io_owned,
Adel Gadllah0b07de82008-06-26 13:48:27 +0200712 Sg_request **o_srp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713{
714 int k;
715 Sg_request *srp;
716 sg_io_hdr_t *hp;
Douglas Gilbert65c26a02014-06-03 13:18:18 -0400717 unsigned char cmnd[SG_MAX_CDB_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 int timeout;
719 unsigned long ul_timeout;
720
721 if (count < SZ_SG_IO_HDR)
722 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
724 sfp->cmd_q = 1; /* when sg_io_hdr seen, set command queuing on */
725 if (!(srp = sg_add_request(sfp))) {
Hannes Reinecke95e159d2014-06-25 16:39:55 +0200726 SCSI_LOG_TIMEOUT(1, sg_printk(KERN_INFO, sfp->parentdp,
727 "sg_new_write: queue full\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 return -EDOM;
729 }
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500730 srp->sg_io_owned = sg_io_owned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 hp = &srp->header;
Arnd Bergmann98aaaec2019-03-14 17:45:18 +0100732 if (get_sg_io_hdr(hp, buf)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 sg_remove_request(sfp, srp);
734 return -EFAULT;
735 }
736 if (hp->interface_id != 'S') {
737 sg_remove_request(sfp, srp);
738 return -ENOSYS;
739 }
740 if (hp->flags & SG_FLAG_MMAP_IO) {
741 if (hp->dxfer_len > sfp->reserve.bufflen) {
742 sg_remove_request(sfp, srp);
743 return -ENOMEM; /* MMAP_IO size must fit in reserve buffer */
744 }
745 if (hp->flags & SG_FLAG_DIRECT_IO) {
746 sg_remove_request(sfp, srp);
747 return -EINVAL; /* either MMAP_IO or DIRECT_IO (not both) */
748 }
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +0200749 if (sfp->res_in_use) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 sg_remove_request(sfp, srp);
751 return -EBUSY; /* reserve buffer already being used */
752 }
753 }
754 ul_timeout = msecs_to_jiffies(srp->header.timeout);
755 timeout = (ul_timeout < INT_MAX) ? ul_timeout : INT_MAX;
756 if ((!hp->cmdp) || (hp->cmd_len < 6) || (hp->cmd_len > sizeof (cmnd))) {
757 sg_remove_request(sfp, srp);
758 return -EMSGSIZE;
759 }
Al Viroa62726c2019-10-17 20:39:19 +0100760 if (copy_from_user(cmnd, hp->cmdp, hp->cmd_len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 sg_remove_request(sfp, srp);
762 return -EFAULT;
763 }
FUJITA Tomonori14e507b2008-07-26 18:03:24 +0900764 if (read_only && sg_allow_access(file, cmnd)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 sg_remove_request(sfp, srp);
766 return -EPERM;
767 }
768 k = sg_common_write(sfp, srp, cmnd, timeout, blocking);
769 if (k < 0)
770 return k;
771 if (o_srp)
772 *o_srp = srp;
773 return count;
774}
775
776static int
777sg_common_write(Sg_fd * sfp, Sg_request * srp,
778 unsigned char *cmnd, int timeout, int blocking)
779{
Bart Van Assche5af2e382015-01-30 16:22:38 +0100780 int k, at_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 Sg_device *sdp = sfp->parentdp;
782 sg_io_hdr_t *hp = &srp->header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
784 srp->data.cmd_opcode = cmnd[0]; /* hold opcode of command */
785 hp->status = 0;
786 hp->masked_status = 0;
787 hp->msg_status = 0;
788 hp->info = 0;
789 hp->host_status = 0;
790 hp->driver_status = 0;
791 hp->resid = 0;
Hannes Reinecke95e159d2014-06-25 16:39:55 +0200792 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
793 "sg_common_write: scsi opcode=0x%02x, cmd_size=%d\n",
794 (int) cmnd[0], (int) hp->cmd_len));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Li Bin849f8582020-04-13 19:29:21 +0800796 if (hp->dxfer_len >= SZ_256M) {
797 sg_remove_request(sfp, srp);
Johannes Thumshirn28676d82017-04-07 09:34:15 +0200798 return -EINVAL;
Li Bin849f8582020-04-13 19:29:21 +0800799 }
Johannes Thumshirn28676d82017-04-07 09:34:15 +0200800
FUJITA Tomonori10865df2008-08-28 16:17:07 +0900801 k = sg_start_req(srp, cmnd);
802 if (k) {
Hannes Reinecke95e159d2014-06-25 16:39:55 +0200803 SCSI_LOG_TIMEOUT(1, sg_printk(KERN_INFO, sfp->parentdp,
804 "sg_common_write: start_req err=%d\n", k));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 sg_finish_rem_req(srp);
Hannes Reinecke97d27b0dd2017-04-07 09:34:17 +0200806 sg_remove_request(sfp, srp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 return k; /* probably out of space --> ENOMEM */
808 }
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200809 if (atomic_read(&sdp->detaching)) {
Calvin Owensf3951a32015-10-30 16:57:00 -0700810 if (srp->bio) {
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100811 scsi_req_free_cmd(scsi_req(srp->rq));
Jens Axboeabaf75d2018-10-16 08:38:47 -0600812 blk_put_request(srp->rq);
Calvin Owensf3951a32015-10-30 16:57:00 -0700813 srp->rq = NULL;
814 }
815
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 sg_finish_rem_req(srp);
Hannes Reinecke97d27b0dd2017-04-07 09:34:17 +0200817 sg_remove_request(sfp, srp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 return -ENODEV;
819 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
cb59e842005-04-02 13:51:23 -0600821 hp->duration = jiffies_to_msecs(jiffies);
Douglas Gilbert16070cc2014-06-04 10:58:30 -0400822 if (hp->interface_id != '\0' && /* v3 (or later) interface */
823 (SG_FLAG_Q_AT_TAIL & hp->flags))
824 at_head = 0;
825 else
826 at_head = 1;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +0200827
828 srp->rq->timeout = timeout;
Tony Battersbyc6517b792009-01-21 14:45:50 -0500829 kref_get(&sfp->f_ref); /* sg_rq_end_io() does kref_put(). */
FUJITA Tomonori10db10d2008-08-29 12:32:18 +0200830 blk_execute_rq_nowait(sdp->device->request_queue, sdp->disk,
Douglas Gilbert16070cc2014-06-04 10:58:30 -0400831 srp->rq, at_head, sg_rq_end_io);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +0200832 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833}
834
Jörn Engel6acddc52012-04-12 17:33:58 -0400835static int srp_done(Sg_fd *sfp, Sg_request *srp)
836{
837 unsigned long flags;
838 int ret;
839
840 read_lock_irqsave(&sfp->rq_list_lock, flags);
841 ret = srp->done;
842 read_unlock_irqrestore(&sfp->rq_list_lock, flags);
843 return ret;
844}
845
Akinobu Mita46f69e62014-06-02 22:56:46 +0900846static int max_sectors_bytes(struct request_queue *q)
847{
848 unsigned int max_sectors = queue_max_sectors(q);
849
850 max_sectors = min_t(unsigned int, max_sectors, INT_MAX >> 9);
851
852 return max_sectors << 9;
853}
854
Hannes Reinecke4759df92017-09-15 14:05:15 +0200855static void
856sg_fill_request_table(Sg_fd *sfp, sg_req_info_t *rinfo)
857{
858 Sg_request *srp;
859 int val;
860 unsigned int ms;
861
862 val = 0;
863 list_for_each_entry(srp, &sfp->rq_list, entry) {
Ben Hutchings587c3c92017-10-15 18:16:33 +0100864 if (val >= SG_MAX_QUEUE)
Hannes Reinecke4759df92017-09-15 14:05:15 +0200865 break;
Hannes Reinecke4759df92017-09-15 14:05:15 +0200866 rinfo[val].req_state = srp->done + 1;
867 rinfo[val].problem =
868 srp->header.masked_status &
869 srp->header.host_status &
870 srp->header.driver_status;
871 if (srp->done)
872 rinfo[val].duration =
873 srp->header.duration;
874 else {
875 ms = jiffies_to_msecs(jiffies);
876 rinfo[val].duration =
877 (ms > srp->header.duration) ?
878 (ms - srp->header.duration) : 0;
879 }
880 rinfo[val].orphan = srp->orphan;
881 rinfo[val].sg_io_owned = srp->sg_io_owned;
882 rinfo[val].pack_id = srp->header.pack_id;
883 rinfo[val].usr_ptr = srp->header.usr_ptr;
884 val++;
885 }
886}
887
Arnd Bergmannfd6c3d52018-08-24 14:53:13 +0200888#ifdef CONFIG_COMPAT
889struct compat_sg_req_info { /* used by SG_GET_REQUEST_TABLE ioctl() */
890 char req_state;
891 char orphan;
892 char sg_io_owned;
893 char problem;
894 int pack_id;
895 compat_uptr_t usr_ptr;
896 unsigned int duration;
897 int unused;
898};
899
900static int put_compat_request_table(struct compat_sg_req_info __user *o,
901 struct sg_req_info *rinfo)
902{
903 int i;
904 for (i = 0; i < SG_MAX_QUEUE; i++) {
905 if (copy_to_user(o + i, rinfo + i, offsetof(sg_req_info_t, usr_ptr)) ||
906 put_user((uintptr_t)rinfo[i].usr_ptr, &o[i].usr_ptr) ||
907 put_user(rinfo[i].duration, &o[i].duration) ||
908 put_user(rinfo[i].unused, &o[i].unused))
909 return -EFAULT;
910 }
911 return 0;
912}
913#endif
914
Jörn Engel37b9d1e2012-04-12 17:35:05 -0400915static long
Arnd Bergmannd320a952019-03-15 17:39:44 +0100916sg_ioctl_common(struct file *filp, Sg_device *sdp, Sg_fd *sfp,
917 unsigned int cmd_in, void __user *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 int __user *ip = p;
Christoph Hellwig176aa9d2014-10-11 12:06:47 +0200920 int result, val, read_only;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 Sg_request *srp;
922 unsigned long iflags;
923
Hannes Reinecke95e159d2014-06-25 16:39:55 +0200924 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
925 "sg_ioctl: cmd=0x%x\n", (int) cmd_in));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 read_only = (O_RDWR != (filp->f_flags & O_ACCMODE));
927
928 switch (cmd_in) {
929 case SG_IO:
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200930 if (atomic_read(&sdp->detaching))
Jörn Engeldddbf8d2012-04-12 17:32:17 -0400931 return -ENODEV;
932 if (!scsi_block_when_processing_errors(sdp->device))
933 return -ENXIO;
Jörn Engeldddbf8d2012-04-12 17:32:17 -0400934 result = sg_new_write(sfp, filp, p, SZ_SG_IO_HDR,
935 1, read_only, 1, &srp);
936 if (result < 0)
937 return result;
Jörn Engel3f0c6ab2012-04-12 17:33:25 -0400938 result = wait_event_interruptible(sfp->read_wait,
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200939 (srp_done(sfp, srp) || atomic_read(&sdp->detaching)));
940 if (atomic_read(&sdp->detaching))
Jörn Engel794c10f2012-04-12 17:32:48 -0400941 return -ENODEV;
942 write_lock_irq(&sfp->rq_list_lock);
943 if (srp->done) {
944 srp->done = 2;
Jörn Engeldddbf8d2012-04-12 17:32:17 -0400945 write_unlock_irq(&sfp->rq_list_lock);
Jörn Engel794c10f2012-04-12 17:32:48 -0400946 result = sg_new_read(sfp, p, SZ_SG_IO_HDR, srp);
947 return (result < 0) ? result : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 }
Jörn Engel794c10f2012-04-12 17:32:48 -0400949 srp->orphan = 1;
950 write_unlock_irq(&sfp->rq_list_lock);
951 return result; /* -ERESTARTSYS because signal hit process */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 case SG_SET_TIMEOUT:
953 result = get_user(val, ip);
954 if (result)
955 return result;
956 if (val < 0)
957 return -EIO;
Paul Burtonf8630bd72016-08-19 17:43:57 +0100958 if (val >= mult_frac((s64)INT_MAX, USER_HZ, HZ))
959 val = min_t(s64, mult_frac((s64)INT_MAX, USER_HZ, HZ),
Paul Burtonb9b6e802016-08-19 17:43:56 +0100960 INT_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 sfp->timeout_user = val;
Paul Burtonf8630bd72016-08-19 17:43:57 +0100962 sfp->timeout = mult_frac(val, HZ, USER_HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
964 return 0;
965 case SG_GET_TIMEOUT: /* N.B. User receives timeout as return value */
966 /* strange ..., for backward compatibility */
967 return sfp->timeout_user;
968 case SG_SET_FORCE_LOW_DMA:
Hannes Reinecke745dfa02017-04-07 09:34:12 +0200969 /*
970 * N.B. This ioctl never worked properly, but failed to
971 * return an error value. So returning '0' to keep compability
972 * with legacy applications.
973 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 return 0;
975 case SG_GET_LOW_DMA:
Hannes Reinecke745dfa02017-04-07 09:34:12 +0200976 return put_user((int) sdp->device->host->unchecked_isa_dma, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 case SG_GET_SCSI_ID:
Al Viroa16a4742019-10-17 20:39:18 +0100978 {
979 sg_scsi_id_t v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200981 if (atomic_read(&sdp->detaching))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 return -ENODEV;
Al Viroa16a4742019-10-17 20:39:18 +0100983 memset(&v, 0, sizeof(v));
984 v.host_no = sdp->device->host->host_no;
985 v.channel = sdp->device->channel;
986 v.scsi_id = sdp->device->id;
987 v.lun = sdp->device->lun;
988 v.scsi_type = sdp->device->type;
989 v.h_cmd_per_lun = sdp->device->host->cmd_per_lun;
990 v.d_queue_depth = sdp->device->queue_depth;
991 if (copy_to_user(p, &v, sizeof(sg_scsi_id_t)))
992 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 return 0;
994 }
995 case SG_SET_FORCE_PACK_ID:
996 result = get_user(val, ip);
997 if (result)
998 return result;
999 sfp->force_packid = val ? 1 : 0;
1000 return 0;
1001 case SG_GET_PACK_ID:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 read_lock_irqsave(&sfp->rq_list_lock, iflags);
Hannes Reinecke109bade2017-04-07 09:34:16 +02001003 list_for_each_entry(srp, &sfp->rq_list, entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 if ((1 == srp->done) && (!srp->sg_io_owned)) {
1005 read_unlock_irqrestore(&sfp->rq_list_lock,
1006 iflags);
Al Viroa16a4742019-10-17 20:39:18 +01001007 return put_user(srp->header.pack_id, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 }
1009 }
1010 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
Al Viroa16a4742019-10-17 20:39:18 +01001011 return put_user(-1, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 case SG_GET_NUM_WAITING:
1013 read_lock_irqsave(&sfp->rq_list_lock, iflags);
Hannes Reinecke109bade2017-04-07 09:34:16 +02001014 val = 0;
1015 list_for_each_entry(srp, &sfp->rq_list, entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 if ((1 == srp->done) && (!srp->sg_io_owned))
1017 ++val;
1018 }
1019 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1020 return put_user(val, ip);
1021 case SG_GET_SG_TABLESIZE:
1022 return put_user(sdp->sg_tablesize, ip);
1023 case SG_SET_RESERVED_SIZE:
1024 result = get_user(val, ip);
1025 if (result)
1026 return result;
1027 if (val < 0)
1028 return -EINVAL;
Alan Stern44ec9542007-02-20 11:01:57 -05001029 val = min_t(int, val,
Akinobu Mita46f69e62014-06-02 22:56:46 +09001030 max_sectors_bytes(sdp->device->request_queue));
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001031 mutex_lock(&sfp->f_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 if (val != sfp->reserve.bufflen) {
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001033 if (sfp->mmap_called ||
1034 sfp->res_in_use) {
1035 mutex_unlock(&sfp->f_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 return -EBUSY;
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001037 }
1038
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001039 sg_remove_scat(sfp, &sfp->reserve);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 sg_build_reserve(sfp, val);
1041 }
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001042 mutex_unlock(&sfp->f_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 return 0;
1044 case SG_GET_RESERVED_SIZE:
Alan Stern44ec9542007-02-20 11:01:57 -05001045 val = min_t(int, sfp->reserve.bufflen,
Akinobu Mita46f69e62014-06-02 22:56:46 +09001046 max_sectors_bytes(sdp->device->request_queue));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 return put_user(val, ip);
1048 case SG_SET_COMMAND_Q:
1049 result = get_user(val, ip);
1050 if (result)
1051 return result;
1052 sfp->cmd_q = val ? 1 : 0;
1053 return 0;
1054 case SG_GET_COMMAND_Q:
1055 return put_user((int) sfp->cmd_q, ip);
1056 case SG_SET_KEEP_ORPHAN:
1057 result = get_user(val, ip);
1058 if (result)
1059 return result;
1060 sfp->keep_orphan = val;
1061 return 0;
1062 case SG_GET_KEEP_ORPHAN:
1063 return put_user((int) sfp->keep_orphan, ip);
1064 case SG_NEXT_CMD_LEN:
1065 result = get_user(val, ip);
1066 if (result)
1067 return result;
peter changbf33f872017-02-15 14:11:54 -08001068 if (val > SG_MAX_CDB_SIZE)
1069 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 sfp->next_cmd_len = (val > 0) ? val : 0;
1071 return 0;
1072 case SG_GET_VERSION_NUM:
1073 return put_user(sg_version_num, ip);
1074 case SG_GET_ACCESS_COUNT:
1075 /* faked - we don't have a real access count anymore */
1076 val = (sdp->device ? 1 : 0);
1077 return put_user(val, ip);
1078 case SG_GET_REQUEST_TABLE:
Arnd Bergmannfd6c3d52018-08-24 14:53:13 +02001079 {
cb59e842005-04-02 13:51:23 -06001080 sg_req_info_t *rinfo;
cb59e842005-04-02 13:51:23 -06001081
Kees Cook6396bb22018-06-12 14:03:40 -07001082 rinfo = kcalloc(SG_MAX_QUEUE, SZ_SG_REQ_INFO,
Hannes Reinecke3e009742017-09-15 14:05:16 +02001083 GFP_KERNEL);
cb59e842005-04-02 13:51:23 -06001084 if (!rinfo)
1085 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 read_lock_irqsave(&sfp->rq_list_lock, iflags);
Hannes Reinecke4759df92017-09-15 14:05:15 +02001087 sg_fill_request_table(sfp, rinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
Arnd Bergmannfd6c3d52018-08-24 14:53:13 +02001089 #ifdef CONFIG_COMPAT
1090 if (in_compat_syscall())
1091 result = put_compat_request_table(p, rinfo);
1092 else
1093 #endif
1094 result = copy_to_user(p, rinfo,
1095 SZ_SG_REQ_INFO * SG_MAX_QUEUE);
cb59e842005-04-02 13:51:23 -06001096 result = result ? -EFAULT : 0;
1097 kfree(rinfo);
1098 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 }
1100 case SG_EMULATED_HOST:
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001101 if (atomic_read(&sdp->detaching))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 return -ENODEV;
1103 return put_user(sdp->device->host->hostt->emulated, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 case SCSI_IOCTL_SEND_COMMAND:
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001105 if (atomic_read(&sdp->detaching))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 return -ENODEV;
Al Viroe915e872008-09-02 17:16:41 -04001107 return sg_scsi_ioctl(sdp->device->request_queue, NULL, filp->f_mode, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 case SG_SET_DEBUG:
1109 result = get_user(val, ip);
1110 if (result)
1111 return result;
1112 sdp->sgdebug = (char) val;
1113 return 0;
Alan Stern44ec9542007-02-20 11:01:57 -05001114 case BLKSECTGET:
Akinobu Mita46f69e62014-06-02 22:56:46 +09001115 return put_user(max_sectors_bytes(sdp->device->request_queue),
Alan Stern44ec9542007-02-20 11:01:57 -05001116 ip);
Christof Schmitt6da127a2008-01-11 10:09:43 +01001117 case BLKTRACESETUP:
1118 return blk_trace_setup(sdp->device->request_queue,
1119 sdp->disk->disk_name,
Martin Peschke76e3a192009-01-30 15:46:23 +01001120 MKDEV(SCSI_GENERIC_MAJOR, sdp->index),
Bart Van Assche7475c8a2017-08-25 13:46:36 -07001121 NULL, p);
Christof Schmitt6da127a2008-01-11 10:09:43 +01001122 case BLKTRACESTART:
1123 return blk_trace_startstop(sdp->device->request_queue, 1);
1124 case BLKTRACESTOP:
1125 return blk_trace_startstop(sdp->device->request_queue, 0);
1126 case BLKTRACETEARDOWN:
1127 return blk_trace_remove(sdp->device->request_queue);
Christoph Hellwig906d15f2014-10-11 16:25:31 +02001128 case SCSI_IOCTL_GET_IDLUN:
1129 case SCSI_IOCTL_GET_BUS_NUMBER:
1130 case SCSI_IOCTL_PROBE_HOST:
1131 case SG_GET_TRANSFORM:
1132 case SG_SCSI_RESET:
1133 if (atomic_read(&sdp->detaching))
1134 return -ENODEV;
1135 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 default:
1137 if (read_only)
1138 return -EPERM; /* don't know so take safe approach */
Christoph Hellwig906d15f2014-10-11 16:25:31 +02001139 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 }
Christoph Hellwig906d15f2014-10-11 16:25:31 +02001141
1142 result = scsi_ioctl_block_when_processing_errors(sdp->device,
1143 cmd_in, filp->f_flags & O_NDELAY);
1144 if (result)
1145 return result;
Arnd Bergmannd320a952019-03-15 17:39:44 +01001146
1147 return -ENOIOCTLCMD;
1148}
1149
1150static long
1151sg_ioctl(struct file *filp, unsigned int cmd_in, unsigned long arg)
1152{
1153 void __user *p = (void __user *)arg;
1154 Sg_device *sdp;
1155 Sg_fd *sfp;
1156 int ret;
1157
1158 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
1159 return -ENXIO;
1160
1161 ret = sg_ioctl_common(filp, sdp, sfp, cmd_in, p);
1162 if (ret != -ENOIOCTLCMD)
1163 return ret;
1164
Christoph Hellwig906d15f2014-10-11 16:25:31 +02001165 return scsi_ioctl(sdp->device, cmd_in, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166}
1167
1168#ifdef CONFIG_COMPAT
1169static long sg_compat_ioctl(struct file *filp, unsigned int cmd_in, unsigned long arg)
1170{
Arnd Bergmannd320a952019-03-15 17:39:44 +01001171 void __user *p = compat_ptr(arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 Sg_device *sdp;
1173 Sg_fd *sfp;
Arnd Bergmannd320a952019-03-15 17:39:44 +01001174 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
1176 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
1177 return -ENXIO;
1178
Arnd Bergmannd320a952019-03-15 17:39:44 +01001179 ret = sg_ioctl_common(filp, sdp, sfp, cmd_in, p);
1180 if (ret != -ENOIOCTLCMD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 return ret;
Arnd Bergmannd320a952019-03-15 17:39:44 +01001182
1183 return scsi_compat_ioctl(sdp->device, cmd_in, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184}
1185#endif
1186
Al Viroafc9a422017-07-03 06:39:46 -04001187static __poll_t
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188sg_poll(struct file *filp, poll_table * wait)
1189{
Al Viroafc9a422017-07-03 06:39:46 -04001190 __poll_t res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 Sg_device *sdp;
1192 Sg_fd *sfp;
1193 Sg_request *srp;
1194 int count = 0;
1195 unsigned long iflags;
1196
Jörn Engelebaf4662012-04-12 17:33:39 -04001197 sfp = filp->private_data;
1198 if (!sfp)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001199 return EPOLLERR;
Jörn Engelebaf4662012-04-12 17:33:39 -04001200 sdp = sfp->parentdp;
1201 if (!sdp)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001202 return EPOLLERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 poll_wait(filp, &sfp->read_wait, wait);
1204 read_lock_irqsave(&sfp->rq_list_lock, iflags);
Hannes Reinecke109bade2017-04-07 09:34:16 +02001205 list_for_each_entry(srp, &sfp->rq_list, entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 /* if any read waiting, flag it */
1207 if ((0 == res) && (1 == srp->done) && (!srp->sg_io_owned))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001208 res = EPOLLIN | EPOLLRDNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 ++count;
1210 }
1211 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1212
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001213 if (atomic_read(&sdp->detaching))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001214 res |= EPOLLHUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 else if (!sfp->cmd_q) {
1216 if (0 == count)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001217 res |= EPOLLOUT | EPOLLWRNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 } else if (count < SG_MAX_QUEUE)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001219 res |= EPOLLOUT | EPOLLWRNORM;
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001220 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
Al Virofcc5a652017-07-16 23:54:30 -04001221 "sg_poll: res=0x%x\n", (__force u32) res));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 return res;
1223}
1224
1225static int
1226sg_fasync(int fd, struct file *filp, int mode)
1227{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 Sg_device *sdp;
1229 Sg_fd *sfp;
1230
1231 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
1232 return -ENXIO;
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001233 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
1234 "sg_fasync: mode=%d\n", mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
Jonathan Corbet60aa4922009-02-01 14:52:56 -07001236 return fasync_helper(fd, filp, mode, &sfp->async_qp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237}
1238
Souptick Joarder0cac8e12018-04-15 00:17:41 +05301239static vm_fault_t
Dave Jiang11bac802017-02-24 14:56:41 -08001240sg_vma_fault(struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241{
Dave Jiang11bac802017-02-24 14:56:41 -08001242 struct vm_area_struct *vma = vmf->vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 Sg_fd *sfp;
Mike Christied6b10342005-11-08 04:06:41 -06001244 unsigned long offset, len, sa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 Sg_scatter_hold *rsv_schp;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001246 int k, length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247
1248 if ((NULL == vma) || (!(sfp = (Sg_fd *) vma->vm_private_data)))
Nick Piggina13ff0b2008-02-07 18:46:06 -08001249 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 rsv_schp = &sfp->reserve;
Nick Piggina13ff0b2008-02-07 18:46:06 -08001251 offset = vmf->pgoff << PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 if (offset >= rsv_schp->bufflen)
Nick Piggina13ff0b2008-02-07 18:46:06 -08001253 return VM_FAULT_SIGBUS;
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001254 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sfp->parentdp,
1255 "sg_vma_fault: offset=%lu, scatg=%d\n",
1256 offset, rsv_schp->k_use_sg));
Mike Christied6b10342005-11-08 04:06:41 -06001257 sa = vma->vm_start;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001258 length = 1 << (PAGE_SHIFT + rsv_schp->page_order);
1259 for (k = 0; k < rsv_schp->k_use_sg && sa < vma->vm_end; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06001260 len = vma->vm_end - sa;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001261 len = (len < length) ? len : length;
Mike Christied6b10342005-11-08 04:06:41 -06001262 if (offset < len) {
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001263 struct page *page = nth_page(rsv_schp->pages[k],
1264 offset >> PAGE_SHIFT);
Mike Christied6b10342005-11-08 04:06:41 -06001265 get_page(page); /* increment page count */
Nick Piggina13ff0b2008-02-07 18:46:06 -08001266 vmf->page = page;
1267 return 0; /* success */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 }
Mike Christied6b10342005-11-08 04:06:41 -06001269 sa += len;
1270 offset -= len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 }
Mike Christied6b10342005-11-08 04:06:41 -06001272
Nick Piggina13ff0b2008-02-07 18:46:06 -08001273 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274}
1275
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04001276static const struct vm_operations_struct sg_mmap_vm_ops = {
Nick Piggina13ff0b2008-02-07 18:46:06 -08001277 .fault = sg_vma_fault,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278};
1279
1280static int
1281sg_mmap(struct file *filp, struct vm_area_struct *vma)
1282{
1283 Sg_fd *sfp;
Mike Christied6b10342005-11-08 04:06:41 -06001284 unsigned long req_sz, len, sa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 Sg_scatter_hold *rsv_schp;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001286 int k, length;
Todd Poynor6a8dadc2017-08-15 22:41:08 -07001287 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
1289 if ((!filp) || (!vma) || (!(sfp = (Sg_fd *) filp->private_data)))
1290 return -ENXIO;
cb59e842005-04-02 13:51:23 -06001291 req_sz = vma->vm_end - vma->vm_start;
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001292 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sfp->parentdp,
1293 "sg_mmap starting, vm_start=%p, len=%d\n",
1294 (void *) vma->vm_start, (int) req_sz));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 if (vma->vm_pgoff)
1296 return -EINVAL; /* want no offset */
1297 rsv_schp = &sfp->reserve;
Todd Poynor6a8dadc2017-08-15 22:41:08 -07001298 mutex_lock(&sfp->f_mutex);
1299 if (req_sz > rsv_schp->bufflen) {
1300 ret = -ENOMEM; /* cannot map more than reserved buffer */
1301 goto out;
1302 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
Mike Christied6b10342005-11-08 04:06:41 -06001304 sa = vma->vm_start;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001305 length = 1 << (PAGE_SHIFT + rsv_schp->page_order);
1306 for (k = 0; k < rsv_schp->k_use_sg && sa < vma->vm_end; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06001307 len = vma->vm_end - sa;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001308 len = (len < length) ? len : length;
Mike Christied6b10342005-11-08 04:06:41 -06001309 sa += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 }
Mike Christied6b10342005-11-08 04:06:41 -06001311
Nick Pigginf9aed0e2006-03-22 00:08:30 -08001312 sfp->mmap_called = 1;
Kirill A. Shutemov461c7fa2016-02-02 16:57:35 -08001313 vma->vm_flags |= VM_IO | VM_DONTEXPAND | VM_DONTDUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 vma->vm_private_data = sfp;
1315 vma->vm_ops = &sg_mmap_vm_ops;
Todd Poynor6a8dadc2017-08-15 22:41:08 -07001316out:
1317 mutex_unlock(&sfp->f_mutex);
1318 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319}
1320
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001321static void
1322sg_rq_end_io_usercontext(struct work_struct *work)
FUJITA Tomonoric96952e2009-02-04 11:36:27 +09001323{
1324 struct sg_request *srp = container_of(work, struct sg_request, ew.work);
1325 struct sg_fd *sfp = srp->parentfp;
1326
1327 sg_finish_rem_req(srp);
Hannes Reinecke97d27b0dd2017-04-07 09:34:17 +02001328 sg_remove_request(sfp, srp);
FUJITA Tomonoric96952e2009-02-04 11:36:27 +09001329 kref_put(&sfp->f_ref, sg_remove_sfp);
1330}
1331
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001332/*
1333 * This function is a "bottom half" handler that is called by the mid
1334 * level when a command is completed (or has failed).
1335 */
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001336static void
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001337sg_rq_end_io(struct request *rq, blk_status_t status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338{
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001339 struct sg_request *srp = rq->end_io_data;
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001340 struct scsi_request *req = scsi_req(rq);
Tony Battersbyc6517b792009-01-21 14:45:50 -05001341 Sg_device *sdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 Sg_fd *sfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 unsigned long iflags;
cb59e842005-04-02 13:51:23 -06001344 unsigned int ms;
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001345 char *sense;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001346 int result, resid, done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
Tony Battersbyc6517b792009-01-21 14:45:50 -05001348 if (WARN_ON(srp->done != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 return;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001350
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 sfp = srp->parentfp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001352 if (WARN_ON(sfp == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 return;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001354
1355 sdp = sfp->parentdp;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001356 if (unlikely(atomic_read(&sdp->detaching)))
1357 pr_info("%s: device detaching\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001359 sense = req->sense;
Christoph Hellwig17d53632017-04-20 16:03:01 +02001360 result = req->result;
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001361 resid = req->resid_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001363 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sdp,
1364 "sg_cmd_done: pack_id=%d, res=0x%x\n",
1365 srp->header.pack_id, result));
Mike Christied6b10342005-11-08 04:06:41 -06001366 srp->header.resid = resid;
cb59e842005-04-02 13:51:23 -06001367 ms = jiffies_to_msecs(jiffies);
1368 srp->header.duration = (ms > srp->header.duration) ?
1369 (ms - srp->header.duration) : 0;
Mike Christied6b10342005-11-08 04:06:41 -06001370 if (0 != result) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 struct scsi_sense_hdr sshdr;
1372
Mike Christied6b10342005-11-08 04:06:41 -06001373 srp->header.status = 0xff & result;
1374 srp->header.masked_status = status_byte(result);
1375 srp->header.msg_status = msg_byte(result);
1376 srp->header.host_status = host_byte(result);
1377 srp->header.driver_status = driver_byte(result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 if ((sdp->sgdebug > 0) &&
1379 ((CHECK_CONDITION == srp->header.masked_status) ||
1380 (COMMAND_TERMINATED == srp->header.masked_status)))
Hannes Reinecked811b842014-10-24 14:26:45 +02001381 __scsi_print_sense(sdp->device, __func__, sense,
Mike Christied6b10342005-11-08 04:06:41 -06001382 SCSI_SENSE_BUFFERSIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
1384 /* Following if statement is a patch supplied by Eric Youngdale */
Mike Christied6b10342005-11-08 04:06:41 -06001385 if (driver_byte(result) != 0
1386 && scsi_normalize_sense(sense, SCSI_SENSE_BUFFERSIZE, &sshdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 && !scsi_sense_is_deferred(&sshdr)
1388 && sshdr.sense_key == UNIT_ATTENTION
1389 && sdp->device->removable) {
1390 /* Detected possible disc change. Set the bit - this */
1391 /* may be used if there are filesystems using this device */
1392 sdp->device->changed = 1;
1393 }
1394 }
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001395
1396 if (req->sense_len)
1397 memcpy(srp->sense_b, req->sense, SCSI_SENSE_BUFFERSIZE);
1398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 /* Rely on write phase to clean out srp status values, so no "else" */
1400
Tony Battersby75686152015-02-13 12:09:44 -05001401 /*
1402 * Free the request as soon as it is complete so that its resources
1403 * can be reused without waiting for userspace to read() the
1404 * result. But keep the associated bio (if any) around until
1405 * blk_rq_unmap_user() can be called from user context.
1406 */
1407 srp->rq = NULL;
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001408 scsi_req_free_cmd(scsi_req(rq));
Jens Axboe92bc5a22018-10-24 13:52:28 -06001409 blk_put_request(rq);
Tony Battersby75686152015-02-13 12:09:44 -05001410
Tony Battersbyc6517b792009-01-21 14:45:50 -05001411 write_lock_irqsave(&sfp->rq_list_lock, iflags);
1412 if (unlikely(srp->orphan)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 if (sfp->keep_orphan)
1414 srp->sg_io_owned = 0;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001415 else
1416 done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05001418 srp->done = done;
1419 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1420
1421 if (likely(done)) {
1422 /* Now wake up any sg_read() that is waiting for this
1423 * packet.
1424 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 wake_up_interruptible(&sfp->read_wait);
Tony Battersbyc6517b792009-01-21 14:45:50 -05001426 kill_fasync(&sfp->async_qp, SIGPOLL, POLL_IN);
FUJITA Tomonoric96952e2009-02-04 11:36:27 +09001427 kref_put(&sfp->f_ref, sg_remove_sfp);
FUJITA Tomonori015640e2009-04-03 19:28:06 +09001428 } else {
1429 INIT_WORK(&srp->ew.work, sg_rq_end_io_usercontext);
1430 schedule_work(&srp->ew.work);
1431 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432}
1433
Alexey Dobriyan828c0952009-10-01 15:43:56 -07001434static const struct file_operations sg_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 .owner = THIS_MODULE,
1436 .read = sg_read,
1437 .write = sg_write,
1438 .poll = sg_poll,
Jörn Engel37b9d1e2012-04-12 17:35:05 -04001439 .unlocked_ioctl = sg_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440#ifdef CONFIG_COMPAT
1441 .compat_ioctl = sg_compat_ioctl,
1442#endif
1443 .open = sg_open,
1444 .mmap = sg_mmap,
1445 .release = sg_release,
1446 .fasync = sg_fasync,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001447 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448};
1449
gregkh@suse.ded2538782005-03-23 09:55:22 -08001450static struct class *sg_sysfs_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
1452static int sg_sysfs_valid = 0;
1453
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001454static Sg_device *
1455sg_alloc(struct gendisk *disk, struct scsi_device *scsidp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456{
Mike Christied6b10342005-11-08 04:06:41 -06001457 struct request_queue *q = scsidp->request_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 Sg_device *sdp;
1459 unsigned long iflags;
James Bottomley7c07d612007-08-05 13:36:11 -05001460 int error;
1461 u32 k;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
Jes Sorensen24669f752006-01-16 10:31:18 -05001463 sdp = kzalloc(sizeof(Sg_device), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 if (!sdp) {
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001465 sdev_printk(KERN_WARNING, scsidp, "%s: kmalloc Sg_device "
1466 "failure\n", __func__);
James Bottomley7c07d612007-08-05 13:36:11 -05001467 return ERR_PTR(-ENOMEM);
1468 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05001469
Tejun Heob98c52b2013-02-27 17:04:42 -08001470 idr_preload(GFP_KERNEL);
James Bottomley7c07d612007-08-05 13:36:11 -05001471 write_lock_irqsave(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
Tejun Heob98c52b2013-02-27 17:04:42 -08001473 error = idr_alloc(&sg_index_idr, sdp, 0, SG_MAX_DEVS, GFP_NOWAIT);
1474 if (error < 0) {
1475 if (error == -ENOSPC) {
1476 sdev_printk(KERN_WARNING, scsidp,
1477 "Unable to attach sg device type=%d, minor number exceeds %d\n",
1478 scsidp->type, SG_MAX_DEVS - 1);
1479 error = -ENODEV;
1480 } else {
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001481 sdev_printk(KERN_WARNING, scsidp, "%s: idr "
1482 "allocation Sg_device failure: %d\n",
1483 __func__, error);
Tejun Heob98c52b2013-02-27 17:04:42 -08001484 }
1485 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 }
Tejun Heob98c52b2013-02-27 17:04:42 -08001487 k = error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001489 SCSI_LOG_TIMEOUT(3, sdev_printk(KERN_INFO, scsidp,
1490 "sg_alloc: dev=%d \n", k));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 sprintf(disk->disk_name, "sg%d", k);
1492 disk->first_minor = k;
1493 sdp->disk = disk;
1494 sdp->device = scsidp;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001495 mutex_init(&sdp->open_rel_lock);
FUJITA Tomonori3442f802009-02-16 13:26:53 +09001496 INIT_LIST_HEAD(&sdp->sfds);
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001497 init_waitqueue_head(&sdp->open_wait);
1498 atomic_set(&sdp->detaching, 0);
1499 rwlock_init(&sdp->sfd_lock);
Martin K. Petersen8a783622010-02-26 00:20:39 -05001500 sdp->sg_tablesize = queue_max_segments(q);
James Bottomley7c07d612007-08-05 13:36:11 -05001501 sdp->index = k;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001502 kref_init(&sdp->d_ref);
James Bottomley7c07d612007-08-05 13:36:11 -05001503 error = 0;
Tejun Heob98c52b2013-02-27 17:04:42 -08001504
1505out_unlock:
1506 write_unlock_irqrestore(&sg_index_lock, iflags);
1507 idr_preload_end();
1508
James Bottomley7c07d612007-08-05 13:36:11 -05001509 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 kfree(sdp);
James Bottomley7c07d612007-08-05 13:36:11 -05001511 return ERR_PTR(error);
1512 }
1513 return sdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514}
1515
1516static int
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001517sg_add_device(struct device *cl_dev, struct class_interface *cl_intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518{
Tony Jonesee959b02008-02-22 00:13:36 +01001519 struct scsi_device *scsidp = to_scsi_device(cl_dev->parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 struct gendisk *disk;
1521 Sg_device *sdp = NULL;
1522 struct cdev * cdev = NULL;
James Bottomley7c07d612007-08-05 13:36:11 -05001523 int error;
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001524 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
1526 disk = alloc_disk(1);
1527 if (!disk) {
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001528 pr_warn("%s: alloc_disk failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 return -ENOMEM;
1530 }
1531 disk->major = SCSI_GENERIC_MAJOR;
1532
1533 error = -ENOMEM;
1534 cdev = cdev_alloc();
1535 if (!cdev) {
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001536 pr_warn("%s: cdev_alloc failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 goto out;
1538 }
1539 cdev->owner = THIS_MODULE;
1540 cdev->ops = &sg_fops;
1541
James Bottomley7c07d612007-08-05 13:36:11 -05001542 sdp = sg_alloc(disk, scsidp);
1543 if (IS_ERR(sdp)) {
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001544 pr_warn("%s: sg_alloc failed\n", __func__);
James Bottomley7c07d612007-08-05 13:36:11 -05001545 error = PTR_ERR(sdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 goto out;
1547 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
James Bottomley7c07d612007-08-05 13:36:11 -05001549 error = cdev_add(cdev, MKDEV(SCSI_GENERIC_MAJOR, sdp->index), 1);
Greg KH5e3c34c2006-01-18 16:17:46 -08001550 if (error)
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001551 goto cdev_add_err;
Greg KH5e3c34c2006-01-18 16:17:46 -08001552
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 sdp->cdev = cdev;
1554 if (sg_sysfs_valid) {
Tony Jonesee959b02008-02-22 00:13:36 +01001555 struct device *sg_class_member;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
Greg Kroah-Hartmand73a1a672008-07-21 20:03:34 -07001557 sg_class_member = device_create(sg_sysfs_class, cl_dev->parent,
1558 MKDEV(SCSI_GENERIC_MAJOR,
1559 sdp->index),
1560 sdp, "%s", disk->disk_name);
FUJITA Tomonorid07e0362008-01-15 13:18:00 +09001561 if (IS_ERR(sg_class_member)) {
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001562 pr_err("%s: device_create failed\n", __func__);
FUJITA Tomonorid07e0362008-01-15 13:18:00 +09001563 error = PTR_ERR(sg_class_member);
1564 goto cdev_add_err;
1565 }
FUJITA Tomonorid07e0362008-01-15 13:18:00 +09001566 error = sysfs_create_link(&scsidp->sdev_gendev.kobj,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 &sg_class_member->kobj, "generic");
1568 if (error)
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001569 pr_err("%s: unable to make symlink 'generic' back "
1570 "to sg%d\n", __func__, sdp->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 } else
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001572 pr_warn("%s: sg_sys Invalid\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001574 sdev_printk(KERN_NOTICE, scsidp, "Attached scsi generic sg%d "
1575 "type %d\n", sdp->index, scsidp->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
Tony Jonesee959b02008-02-22 00:13:36 +01001577 dev_set_drvdata(cl_dev, sdp);
FUJITA Tomonoria24484f2008-01-15 13:17:47 +09001578
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 return 0;
1580
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001581cdev_add_err:
James Bottomley7c07d612007-08-05 13:36:11 -05001582 write_lock_irqsave(&sg_index_lock, iflags);
1583 idr_remove(&sg_index_idr, sdp->index);
1584 write_unlock_irqrestore(&sg_index_lock, iflags);
1585 kfree(sdp);
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001586
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587out:
1588 put_disk(disk);
1589 if (cdev)
1590 cdev_del(cdev);
1591 return error;
1592}
1593
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001594static void
1595sg_device_destroy(struct kref *kref)
Tony Battersbyc6517b792009-01-21 14:45:50 -05001596{
1597 struct sg_device *sdp = container_of(kref, struct sg_device, d_ref);
1598 unsigned long flags;
1599
1600 /* CAUTION! Note that the device can still be found via idr_find()
1601 * even though the refcount is 0. Therefore, do idr_remove() BEFORE
1602 * any other cleanup.
1603 */
1604
1605 write_lock_irqsave(&sg_index_lock, flags);
1606 idr_remove(&sg_index_idr, sdp->index);
1607 write_unlock_irqrestore(&sg_index_lock, flags);
1608
1609 SCSI_LOG_TIMEOUT(3,
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001610 sg_printk(KERN_INFO, sdp, "sg_device_destroy\n"));
Tony Battersbyc6517b792009-01-21 14:45:50 -05001611
1612 put_disk(sdp->disk);
1613 kfree(sdp);
1614}
1615
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001616static void
1617sg_remove_device(struct device *cl_dev, struct class_interface *cl_intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618{
Tony Jonesee959b02008-02-22 00:13:36 +01001619 struct scsi_device *scsidp = to_scsi_device(cl_dev->parent);
1620 Sg_device *sdp = dev_get_drvdata(cl_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 unsigned long iflags;
1622 Sg_fd *sfp;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001623 int val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001625 if (!sdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 return;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001627 /* want sdp->detaching non-zero as soon as possible */
1628 val = atomic_inc_return(&sdp->detaching);
1629 if (val > 1)
1630 return; /* only want to do following once per device */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001632 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
1633 "%s\n", __func__));
Tony Battersbyc6517b792009-01-21 14:45:50 -05001634
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001635 read_lock_irqsave(&sdp->sfd_lock, iflags);
FUJITA Tomonori3442f802009-02-16 13:26:53 +09001636 list_for_each_entry(sfp, &sdp->sfds, sfd_siblings) {
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001637 wake_up_interruptible_all(&sfp->read_wait);
Tony Battersbyc6517b792009-01-21 14:45:50 -05001638 kill_fasync(&sfp->async_qp, SIGPOLL, POLL_HUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 }
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001640 wake_up_interruptible_all(&sdp->open_wait);
1641 read_unlock_irqrestore(&sdp->sfd_lock, iflags);
James Bottomley7c07d612007-08-05 13:36:11 -05001642
1643 sysfs_remove_link(&scsidp->sdev_gendev.kobj, "generic");
Tony Jonesee959b02008-02-22 00:13:36 +01001644 device_destroy(sg_sysfs_class, MKDEV(SCSI_GENERIC_MAJOR, sdp->index));
James Bottomley7c07d612007-08-05 13:36:11 -05001645 cdev_del(sdp->cdev);
1646 sdp->cdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001648 kref_put(&sdp->d_ref, sg_device_destroy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649}
1650
Douglas Gilbert6460e752006-09-20 18:20:49 -04001651module_param_named(scatter_elem_sz, scatter_elem_sz, int, S_IRUGO | S_IWUSR);
1652module_param_named(def_reserved_size, def_reserved_size, int,
1653 S_IRUGO | S_IWUSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654module_param_named(allow_dio, sg_allow_dio, int, S_IRUGO | S_IWUSR);
1655
1656MODULE_AUTHOR("Douglas Gilbert");
1657MODULE_DESCRIPTION("SCSI generic (sg) driver");
1658MODULE_LICENSE("GPL");
1659MODULE_VERSION(SG_VERSION_STR);
Rene Hermanf018fa52006-03-08 00:14:20 -08001660MODULE_ALIAS_CHARDEV_MAJOR(SCSI_GENERIC_MAJOR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661
Douglas Gilbert6460e752006-09-20 18:20:49 -04001662MODULE_PARM_DESC(scatter_elem_sz, "scatter gather element "
1663 "size (default: max(SG_SCATTER_SZ, PAGE_SIZE))");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664MODULE_PARM_DESC(def_reserved_size, "size of buffer reserved for each fd");
1665MODULE_PARM_DESC(allow_dio, "allow direct I/O (default: 0 (disallow))");
1666
1667static int __init
1668init_sg(void)
1669{
1670 int rc;
1671
Douglas Gilbert6460e752006-09-20 18:20:49 -04001672 if (scatter_elem_sz < PAGE_SIZE) {
1673 scatter_elem_sz = PAGE_SIZE;
1674 scatter_elem_sz_prev = scatter_elem_sz;
1675 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 if (def_reserved_size >= 0)
1677 sg_big_buff = def_reserved_size;
Douglas Gilbert6460e752006-09-20 18:20:49 -04001678 else
1679 def_reserved_size = sg_big_buff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
1681 rc = register_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0),
1682 SG_MAX_DEVS, "sg");
1683 if (rc)
1684 return rc;
gregkh@suse.ded2538782005-03-23 09:55:22 -08001685 sg_sysfs_class = class_create(THIS_MODULE, "scsi_generic");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 if ( IS_ERR(sg_sysfs_class) ) {
1687 rc = PTR_ERR(sg_sysfs_class);
1688 goto err_out;
1689 }
1690 sg_sysfs_valid = 1;
1691 rc = scsi_register_interface(&sg_interface);
1692 if (0 == rc) {
1693#ifdef CONFIG_SCSI_PROC_FS
1694 sg_proc_init();
1695#endif /* CONFIG_SCSI_PROC_FS */
1696 return 0;
1697 }
gregkh@suse.ded2538782005-03-23 09:55:22 -08001698 class_destroy(sg_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699err_out:
1700 unregister_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0), SG_MAX_DEVS);
1701 return rc;
1702}
1703
1704static void __exit
1705exit_sg(void)
1706{
1707#ifdef CONFIG_SCSI_PROC_FS
Christoph Hellwigb8b14832018-04-11 11:26:22 +02001708 remove_proc_subtree("scsi/sg", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709#endif /* CONFIG_SCSI_PROC_FS */
1710 scsi_unregister_interface(&sg_interface);
gregkh@suse.ded2538782005-03-23 09:55:22 -08001711 class_destroy(sg_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 sg_sysfs_valid = 0;
1713 unregister_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0),
1714 SG_MAX_DEVS);
James Bottomley7c07d612007-08-05 13:36:11 -05001715 idr_destroy(&sg_index_idr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716}
1717
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001718static int
1719sg_start_req(Sg_request *srp, unsigned char *cmd)
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001720{
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001721 int res;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001722 struct request *rq;
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001723 struct scsi_request *req;
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001724 Sg_fd *sfp = srp->parentfp;
1725 sg_io_hdr_t *hp = &srp->header;
1726 int dxfer_len = (int) hp->dxfer_len;
1727 int dxfer_dir = hp->dxfer_direction;
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001728 unsigned int iov_count = hp->iovec_count;
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001729 Sg_scatter_hold *req_schp = &srp->data;
1730 Sg_scatter_hold *rsv_schp = &sfp->reserve;
1731 struct request_queue *q = sfp->parentdp->device->request_queue;
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001732 struct rq_map_data *md, map_data;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001733 int rw = hp->dxfer_direction == SG_DXFER_TO_DEV ? WRITE : READ;
Douglas Gilbert65c26a02014-06-03 13:18:18 -04001734 unsigned char *long_cmdp = NULL;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001735
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001736 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
1737 "sg_start_req: dxfer_len=%d\n",
1738 dxfer_len));
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001739
Douglas Gilbert65c26a02014-06-03 13:18:18 -04001740 if (hp->cmd_len > BLK_MAX_CDB) {
1741 long_cmdp = kzalloc(hp->cmd_len, GFP_KERNEL);
1742 if (!long_cmdp)
1743 return -ENOMEM;
1744 }
1745
Tony Battersby77728552015-02-13 12:10:58 -05001746 /*
1747 * NOTE
1748 *
1749 * With scsi-mq enabled, there are a fixed number of preallocated
1750 * requests equal in number to shost->can_queue. If all of the
Tony Battersby8e4a4182018-07-12 18:09:21 -04001751 * preallocated requests are already in use, then blk_get_request()
1752 * will sleep until an active command completes, freeing up a request.
1753 * Although waiting in an asynchronous interface is less than ideal, we
1754 * do not want to use BLK_MQ_REQ_NOWAIT here because userspace might
1755 * not expect an EWOULDBLOCK from this condition.
Tony Battersby77728552015-02-13 12:10:58 -05001756 */
Christoph Hellwigaebf5262017-01-31 16:57:31 +01001757 rq = blk_get_request(q, hp->dxfer_direction == SG_DXFER_TO_DEV ?
Christoph Hellwigff005a02018-05-09 09:54:05 +02001758 REQ_OP_SCSI_OUT : REQ_OP_SCSI_IN, 0);
Joe Lawrencea492f072014-08-28 08:15:21 -06001759 if (IS_ERR(rq)) {
Douglas Gilbert65c26a02014-06-03 13:18:18 -04001760 kfree(long_cmdp);
Joe Lawrencea492f072014-08-28 08:15:21 -06001761 return PTR_ERR(rq);
Douglas Gilbert65c26a02014-06-03 13:18:18 -04001762 }
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001763 req = scsi_req(rq);
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001764
Douglas Gilbert65c26a02014-06-03 13:18:18 -04001765 if (hp->cmd_len > BLK_MAX_CDB)
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001766 req->cmd = long_cmdp;
1767 memcpy(req->cmd, cmd, hp->cmd_len);
1768 req->cmd_len = hp->cmd_len;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001769
1770 srp->rq = rq;
1771 rq->end_io_data = srp;
Christoph Hellwig64c7f1d2017-04-05 19:18:12 +02001772 req->retries = SG_DEFAULT_RETRIES;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001773
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 if ((dxfer_len <= 0) || (dxfer_dir == SG_DXFER_NONE))
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001775 return 0;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001776
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001777 if (sg_allow_dio && hp->flags & SG_FLAG_DIRECT_IO &&
1778 dxfer_dir != SG_DXFER_UNKNOWN && !iov_count &&
1779 !sfp->parentdp->device->host->unchecked_isa_dma &&
Namhyung Kim2610a252010-09-16 12:55:57 +09001780 blk_rq_aligned(q, (unsigned long)hp->dxferp, dxfer_len))
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001781 md = NULL;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001782 else
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001783 md = &map_data;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001784
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001785 if (md) {
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001786 mutex_lock(&sfp->f_mutex);
1787 if (dxfer_len <= rsv_schp->bufflen &&
1788 !sfp->res_in_use) {
1789 sfp->res_in_use = 1;
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001790 sg_link_reserve(sfp, srp, dxfer_len);
Todd Poynor8d26f492017-08-15 21:48:43 -07001791 } else if (hp->flags & SG_FLAG_MMAP_IO) {
1792 res = -EBUSY; /* sfp->res_in_use == 1 */
1793 if (dxfer_len > rsv_schp->bufflen)
1794 res = -ENOMEM;
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001795 mutex_unlock(&sfp->f_mutex);
Todd Poynor8d26f492017-08-15 21:48:43 -07001796 return res;
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001797 } else {
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001798 res = sg_build_indirect(req_schp, sfp, dxfer_len);
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001799 if (res) {
1800 mutex_unlock(&sfp->f_mutex);
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001801 return res;
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001802 }
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001803 }
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001804 mutex_unlock(&sfp->f_mutex);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001805
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001806 md->pages = req_schp->pages;
1807 md->page_order = req_schp->page_order;
1808 md->nr_entries = req_schp->k_use_sg;
FUJITA Tomonori56c451f2008-12-18 14:49:37 +09001809 md->offset = 0;
FUJITA Tomonori97ae77a2008-12-18 14:49:38 +09001810 md->null_mapped = hp->dxferp ? 0 : 1;
FUJITA Tomonoriecb554a2009-07-09 14:46:53 +02001811 if (dxfer_dir == SG_DXFER_TO_FROM_DEV)
1812 md->from_user = 1;
1813 else
1814 md->from_user = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001816
FUJITA Tomonori0fdf96b2009-04-03 09:12:20 +09001817 if (iov_count) {
Al Virofdc81f42015-03-21 20:25:30 -04001818 struct iovec *iov = NULL;
Kent Overstreet26e49cf2015-01-18 16:16:31 +01001819 struct iov_iter i;
FUJITA Tomonori0fdf96b2009-04-03 09:12:20 +09001820
Arnd Bergmann98aaaec2019-03-14 17:45:18 +01001821#ifdef CONFIG_COMPAT
1822 if (in_compat_syscall())
1823 res = compat_import_iovec(rw, hp->dxferp, iov_count,
1824 0, &iov, &i);
1825 else
1826#endif
1827 res = import_iovec(rw, hp->dxferp, iov_count,
1828 0, &iov, &i);
Al Virofdc81f42015-03-21 20:25:30 -04001829 if (res < 0)
1830 return res;
FUJITA Tomonori0fdf96b2009-04-03 09:12:20 +09001831
Al Virofdc81f42015-03-21 20:25:30 -04001832 iov_iter_truncate(&i, hp->dxfer_len);
Al Viro137d01d2017-02-19 07:15:27 +00001833 if (!iov_iter_count(&i)) {
1834 kfree(iov);
1835 return -EINVAL;
1836 }
FUJITA Tomonori0fdf96b2009-04-03 09:12:20 +09001837
Kent Overstreet26e49cf2015-01-18 16:16:31 +01001838 res = blk_rq_map_user_iov(q, rq, md, &i, GFP_ATOMIC);
FUJITA Tomonori0fdf96b2009-04-03 09:12:20 +09001839 kfree(iov);
1840 } else
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001841 res = blk_rq_map_user(q, rq, md, hp->dxferp,
1842 hp->dxfer_len, GFP_ATOMIC);
1843
1844 if (!res) {
1845 srp->bio = rq->bio;
1846
1847 if (!md) {
1848 req_schp->dio_in_use = 1;
1849 hp->info |= SG_INFO_DIRECT_IO;
1850 }
1851 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001852 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853}
1854
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001855static int
1856sg_finish_rem_req(Sg_request *srp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857{
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +09001858 int ret = 0;
1859
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 Sg_fd *sfp = srp->parentfp;
1861 Sg_scatter_hold *req_schp = &srp->data;
1862
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001863 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
1864 "sg_finish_rem_req: res_used=%d\n",
1865 (int) srp->res_used));
Tony Battersby75686152015-02-13 12:09:44 -05001866 if (srp->bio)
1867 ret = blk_rq_unmap_user(srp->bio);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001868
Tony Battersby75686152015-02-13 12:09:44 -05001869 if (srp->rq) {
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001870 scsi_req_free_cmd(scsi_req(srp->rq));
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001871 blk_put_request(srp->rq);
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001872 }
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001873
Christof Schmitte27168f2009-09-17 09:10:14 +02001874 if (srp->res_used)
1875 sg_unlink_reserve(sfp, srp);
1876 else
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001877 sg_remove_scat(sfp, req_schp);
Christof Schmitte27168f2009-09-17 09:10:14 +02001878
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +09001879 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880}
1881
1882static int
1883sg_build_sgat(Sg_scatter_hold * schp, const Sg_fd * sfp, int tablesize)
1884{
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001885 int sg_bufflen = tablesize * sizeof(struct page *);
Al Viro2d20eaf2006-02-01 06:31:40 -05001886 gfp_t gfp_flags = GFP_ATOMIC | __GFP_NOWARN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001888 schp->pages = kzalloc(sg_bufflen, gfp_flags);
1889 if (!schp->pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 schp->sglist_len = sg_bufflen;
Mike Christied6b10342005-11-08 04:06:41 -06001892 return tablesize; /* number of scat_gath elements allocated */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893}
1894
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895static int
1896sg_build_indirect(Sg_scatter_hold * schp, Sg_fd * sfp, int buff_size)
1897{
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001898 int ret_sz = 0, i, k, rem_sz, num, mx_sc_elems;
Mike Christied6b10342005-11-08 04:06:41 -06001899 int sg_tablesize = sfp->parentdp->sg_tablesize;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001900 int blk_size = buff_size, order;
Jeff Moyer5b9d3972018-06-18 09:57:12 -04001901 gfp_t gfp_mask = GFP_ATOMIC | __GFP_COMP | __GFP_NOWARN | __GFP_ZERO;
Hannes Reinecke745dfa02017-04-07 09:34:12 +02001902 struct sg_device *sdp = sfp->parentdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
Eric Sesterhennfb119932007-05-23 14:41:36 -07001904 if (blk_size < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 return -EFAULT;
1906 if (0 == blk_size)
1907 ++blk_size; /* don't know why */
FUJITA Tomonorib2ed6c62009-02-12 02:42:57 +09001908 /* round request up to next highest SG_SECTOR_SZ byte boundary */
1909 blk_size = ALIGN(blk_size, SG_SECTOR_SZ);
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001910 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
1911 "sg_build_indirect: buff_size=%d, blk_size=%d\n",
1912 buff_size, blk_size));
Mike Christied6b10342005-11-08 04:06:41 -06001913
1914 /* N.B. ret_sz carried into this block ... */
1915 mx_sc_elems = sg_build_sgat(schp, sfp, sg_tablesize);
1916 if (mx_sc_elems < 0)
1917 return mx_sc_elems; /* most likely -ENOMEM */
1918
Douglas Gilbert6460e752006-09-20 18:20:49 -04001919 num = scatter_elem_sz;
1920 if (unlikely(num != scatter_elem_sz_prev)) {
1921 if (num < PAGE_SIZE) {
1922 scatter_elem_sz = PAGE_SIZE;
1923 scatter_elem_sz_prev = PAGE_SIZE;
1924 } else
1925 scatter_elem_sz_prev = num;
1926 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001927
Hannes Reinecke745dfa02017-04-07 09:34:12 +02001928 if (sdp->device->host->unchecked_isa_dma)
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001929 gfp_mask |= GFP_DMA;
1930
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001931 order = get_order(num);
1932retry:
1933 ret_sz = 1 << (PAGE_SHIFT + order);
1934
1935 for (k = 0, rem_sz = blk_size; rem_sz > 0 && k < mx_sc_elems;
1936 k++, rem_sz -= ret_sz) {
1937
Douglas Gilbert6460e752006-09-20 18:20:49 -04001938 num = (rem_sz > scatter_elem_sz_prev) ?
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001939 scatter_elem_sz_prev : rem_sz;
1940
Jeff Moyer5b9d3972018-06-18 09:57:12 -04001941 schp->pages[k] = alloc_pages(gfp_mask, order);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001942 if (!schp->pages[k])
1943 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944
Douglas Gilbert6460e752006-09-20 18:20:49 -04001945 if (num == scatter_elem_sz_prev) {
1946 if (unlikely(ret_sz > scatter_elem_sz_prev)) {
1947 scatter_elem_sz = ret_sz;
1948 scatter_elem_sz_prev = ret_sz;
1949 }
1950 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001952 SCSI_LOG_TIMEOUT(5, sg_printk(KERN_INFO, sfp->parentdp,
1953 "sg_build_indirect: k=%d, num=%d, ret_sz=%d\n",
1954 k, num, ret_sz));
Mike Christied6b10342005-11-08 04:06:41 -06001955 } /* end of for loop */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001957 schp->page_order = order;
Mike Christied6b10342005-11-08 04:06:41 -06001958 schp->k_use_sg = k;
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001959 SCSI_LOG_TIMEOUT(5, sg_printk(KERN_INFO, sfp->parentdp,
1960 "sg_build_indirect: k_use_sg=%d, rem_sz=%d\n",
1961 k, rem_sz));
Mike Christied6b10342005-11-08 04:06:41 -06001962
1963 schp->bufflen = blk_size;
1964 if (rem_sz > 0) /* must have failed */
1965 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 return 0;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001967out:
1968 for (i = 0; i < k; i++)
Michal Schmidte71044e2009-09-03 14:27:08 +02001969 __free_pages(schp->pages[i], order);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001970
1971 if (--order >= 0)
1972 goto retry;
1973
1974 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975}
1976
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977static void
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001978sg_remove_scat(Sg_fd * sfp, Sg_scatter_hold * schp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979{
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001980 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
1981 "sg_remove_scat: k_use_sg=%d\n", schp->k_use_sg));
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001982 if (schp->pages && schp->sglist_len > 0) {
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001983 if (!schp->dio_in_use) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 int k;
1985
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001986 for (k = 0; k < schp->k_use_sg && schp->pages[k]; k++) {
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001987 SCSI_LOG_TIMEOUT(5,
1988 sg_printk(KERN_INFO, sfp->parentdp,
1989 "sg_remove_scat: k=%d, pg=0x%p\n",
1990 k, schp->pages[k]));
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001991 __free_pages(schp->pages[k], schp->page_order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 }
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001993
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001994 kfree(schp->pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 }
Mike Christied6b10342005-11-08 04:06:41 -06001996 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 memset(schp, 0, sizeof (*schp));
1998}
1999
2000static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001sg_read_oxfer(Sg_request * srp, char __user *outp, int num_read_xfer)
2002{
2003 Sg_scatter_hold *schp = &srp->data;
Mike Christied6b10342005-11-08 04:06:41 -06002004 int k, num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002006 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, srp->parentfp->parentdp,
2007 "sg_read_oxfer: num_read_xfer=%d\n",
2008 num_read_xfer));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 if ((!outp) || (num_read_xfer <= 0))
2010 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02002012 num = 1 << (PAGE_SHIFT + schp->page_order);
2013 for (k = 0; k < schp->k_use_sg && schp->pages[k]; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06002014 if (num > num_read_xfer) {
Al Viroc8c12792019-10-17 20:39:23 +01002015 if (copy_to_user(outp, page_address(schp->pages[k]),
Mike Christied6b10342005-11-08 04:06:41 -06002016 num_read_xfer))
2017 return -EFAULT;
2018 break;
2019 } else {
Al Viroc8c12792019-10-17 20:39:23 +01002020 if (copy_to_user(outp, page_address(schp->pages[k]),
Mike Christied6b10342005-11-08 04:06:41 -06002021 num))
2022 return -EFAULT;
2023 num_read_xfer -= num;
2024 if (num_read_xfer <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 break;
Mike Christied6b10342005-11-08 04:06:41 -06002026 outp += num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 }
Mike Christied6b10342005-11-08 04:06:41 -06002029
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 return 0;
2031}
2032
2033static void
2034sg_build_reserve(Sg_fd * sfp, int req_size)
2035{
2036 Sg_scatter_hold *schp = &sfp->reserve;
2037
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002038 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
2039 "sg_build_reserve: req_size=%d\n", req_size));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 do {
2041 if (req_size < PAGE_SIZE)
2042 req_size = PAGE_SIZE;
2043 if (0 == sg_build_indirect(schp, sfp, req_size))
2044 return;
2045 else
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002046 sg_remove_scat(sfp, schp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 req_size >>= 1; /* divide by 2 */
2048 } while (req_size > (PAGE_SIZE / 2));
2049}
2050
2051static void
2052sg_link_reserve(Sg_fd * sfp, Sg_request * srp, int size)
2053{
2054 Sg_scatter_hold *req_schp = &srp->data;
2055 Sg_scatter_hold *rsv_schp = &sfp->reserve;
Mike Christied6b10342005-11-08 04:06:41 -06002056 int k, num, rem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057
2058 srp->res_used = 1;
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002059 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
2060 "sg_link_reserve: size=%d\n", size));
Brian Kingeca7be52006-02-14 12:42:24 -06002061 rem = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02002063 num = 1 << (PAGE_SHIFT + rsv_schp->page_order);
2064 for (k = 0; k < rsv_schp->k_use_sg; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06002065 if (rem <= num) {
Mike Christied6b10342005-11-08 04:06:41 -06002066 req_schp->k_use_sg = k + 1;
2067 req_schp->sglist_len = rsv_schp->sglist_len;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02002068 req_schp->pages = rsv_schp->pages;
Mike Christied6b10342005-11-08 04:06:41 -06002069
2070 req_schp->bufflen = size;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02002071 req_schp->page_order = rsv_schp->page_order;
Mike Christied6b10342005-11-08 04:06:41 -06002072 break;
2073 } else
2074 rem -= num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 }
Mike Christied6b10342005-11-08 04:06:41 -06002076
2077 if (k >= rsv_schp->k_use_sg)
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002078 SCSI_LOG_TIMEOUT(1, sg_printk(KERN_INFO, sfp->parentdp,
2079 "sg_link_reserve: BAD size\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080}
2081
2082static void
2083sg_unlink_reserve(Sg_fd * sfp, Sg_request * srp)
2084{
2085 Sg_scatter_hold *req_schp = &srp->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002087 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, srp->parentfp->parentdp,
2088 "sg_unlink_reserve: req->k_use_sg=%d\n",
2089 (int) req_schp->k_use_sg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 req_schp->k_use_sg = 0;
2091 req_schp->bufflen = 0;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02002092 req_schp->pages = NULL;
2093 req_schp->page_order = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 req_schp->sglist_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 srp->res_used = 0;
Hannes Reineckee791ce22017-04-24 10:26:36 +02002096 /* Called without mutex lock to avoid deadlock */
2097 sfp->res_in_use = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098}
2099
2100static Sg_request *
2101sg_get_rq_mark(Sg_fd * sfp, int pack_id)
2102{
2103 Sg_request *resp;
2104 unsigned long iflags;
2105
2106 write_lock_irqsave(&sfp->rq_list_lock, iflags);
Hannes Reinecke109bade2017-04-07 09:34:16 +02002107 list_for_each_entry(resp, &sfp->rq_list, entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 /* look for requests that are ready + not SG_IO owned */
2109 if ((1 == resp->done) && (!resp->sg_io_owned) &&
2110 ((-1 == pack_id) || (resp->header.pack_id == pack_id))) {
2111 resp->done = 2; /* guard against other readers */
Johannes Thumshirn48ae8482017-05-10 09:53:40 +02002112 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
2113 return resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 }
2115 }
2116 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
Johannes Thumshirn48ae8482017-05-10 09:53:40 +02002117 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118}
2119
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120/* always adds to end of list */
2121static Sg_request *
2122sg_add_request(Sg_fd * sfp)
2123{
2124 int k;
2125 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 Sg_request *rp = sfp->req_arr;
2127
2128 write_lock_irqsave(&sfp->rq_list_lock, iflags);
Hannes Reinecke109bade2017-04-07 09:34:16 +02002129 if (!list_empty(&sfp->rq_list)) {
2130 if (!sfp->cmd_q)
2131 goto out_unlock;
2132
2133 for (k = 0; k < SG_MAX_QUEUE; ++k, ++rp) {
2134 if (!rp->parentfp)
2135 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 }
Hannes Reinecke109bade2017-04-07 09:34:16 +02002137 if (k >= SG_MAX_QUEUE)
2138 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 }
Hannes Reinecke109bade2017-04-07 09:34:16 +02002140 memset(rp, 0, sizeof (Sg_request));
2141 rp->parentfp = sfp;
2142 rp->header.duration = jiffies_to_msecs(jiffies);
2143 list_add_tail(&rp->entry, &sfp->rq_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
Hannes Reinecke109bade2017-04-07 09:34:16 +02002145 return rp;
2146out_unlock:
2147 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
2148 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149}
2150
2151/* Return of 1 for found; 0 for not found */
2152static int
2153sg_remove_request(Sg_fd * sfp, Sg_request * srp)
2154{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 unsigned long iflags;
2156 int res = 0;
2157
Hannes Reinecke109bade2017-04-07 09:34:16 +02002158 if (!sfp || !srp || list_empty(&sfp->rq_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 return res;
2160 write_lock_irqsave(&sfp->rq_list_lock, iflags);
Hannes Reinecke109bade2017-04-07 09:34:16 +02002161 if (!list_empty(&srp->entry)) {
2162 list_del(&srp->entry);
2163 srp->parentfp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 res = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 }
2166 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
2167 return res;
2168}
2169
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170static Sg_fd *
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002171sg_add_sfp(Sg_device * sdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172{
2173 Sg_fd *sfp;
2174 unsigned long iflags;
Alan Stern44ec9542007-02-20 11:01:57 -05002175 int bufflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176
Mike Christied6b10342005-11-08 04:06:41 -06002177 sfp = kzalloc(sizeof(*sfp), GFP_ATOMIC | __GFP_NOWARN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 if (!sfp)
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002179 return ERR_PTR(-ENOMEM);
Mike Christied6b10342005-11-08 04:06:41 -06002180
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 init_waitqueue_head(&sfp->read_wait);
2182 rwlock_init(&sfp->rq_list_lock);
Hannes Reinecke109bade2017-04-07 09:34:16 +02002183 INIT_LIST_HEAD(&sfp->rq_list);
Tony Battersbyc6517b792009-01-21 14:45:50 -05002184 kref_init(&sfp->f_ref);
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02002185 mutex_init(&sfp->f_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 sfp->timeout = SG_DEFAULT_TIMEOUT;
2187 sfp->timeout_user = SG_DEFAULT_TIMEOUT_USER;
2188 sfp->force_packid = SG_DEF_FORCE_PACK_ID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 sfp->cmd_q = SG_DEF_COMMAND_Q;
2190 sfp->keep_orphan = SG_DEF_KEEP_ORPHAN;
2191 sfp->parentdp = sdp;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002192 write_lock_irqsave(&sdp->sfd_lock, iflags);
2193 if (atomic_read(&sdp->detaching)) {
2194 write_unlock_irqrestore(&sdp->sfd_lock, iflags);
Tony Battersbyc170e5a2018-07-12 16:30:45 -04002195 kfree(sfp);
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002196 return ERR_PTR(-ENODEV);
2197 }
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002198 list_add_tail(&sfp->sfd_siblings, &sdp->sfds);
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002199 write_unlock_irqrestore(&sdp->sfd_lock, iflags);
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002200 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
2201 "sg_add_sfp: sfp=0x%p\n", sfp));
Douglas Gilbert6460e752006-09-20 18:20:49 -04002202 if (unlikely(sg_big_buff != def_reserved_size))
2203 sg_big_buff = def_reserved_size;
2204
Alan Stern44ec9542007-02-20 11:01:57 -05002205 bufflen = min_t(int, sg_big_buff,
Akinobu Mita46f69e62014-06-02 22:56:46 +09002206 max_sectors_bytes(sdp->device->request_queue));
Alan Stern44ec9542007-02-20 11:01:57 -05002207 sg_build_reserve(sfp, bufflen);
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002208 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
2209 "sg_add_sfp: bufflen=%d, k_use_sg=%d\n",
2210 sfp->reserve.bufflen,
2211 sfp->reserve.k_use_sg));
Tony Battersbyc6517b792009-01-21 14:45:50 -05002212
2213 kref_get(&sdp->d_ref);
2214 __module_get(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 return sfp;
2216}
2217
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002218static void
2219sg_remove_sfp_usercontext(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220{
Tony Battersbyc6517b792009-01-21 14:45:50 -05002221 struct sg_fd *sfp = container_of(work, struct sg_fd, ew.work);
2222 struct sg_device *sdp = sfp->parentdp;
Hannes Reinecke109bade2017-04-07 09:34:16 +02002223 Sg_request *srp;
Hannes Reinecke97d27b0dd2017-04-07 09:34:17 +02002224 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225
Tony Battersbyc6517b792009-01-21 14:45:50 -05002226 /* Cleanup any responses which were never read(). */
Hannes Reinecke97d27b0dd2017-04-07 09:34:17 +02002227 write_lock_irqsave(&sfp->rq_list_lock, iflags);
Hannes Reinecke109bade2017-04-07 09:34:16 +02002228 while (!list_empty(&sfp->rq_list)) {
2229 srp = list_first_entry(&sfp->rq_list, Sg_request, entry);
2230 sg_finish_rem_req(srp);
Hannes Reinecke97d27b0dd2017-04-07 09:34:17 +02002231 list_del(&srp->entry);
2232 srp->parentfp = NULL;
Hannes Reinecke109bade2017-04-07 09:34:16 +02002233 }
Hannes Reinecke97d27b0dd2017-04-07 09:34:17 +02002234 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
Tony Battersbyc6517b792009-01-21 14:45:50 -05002235
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 if (sfp->reserve.bufflen > 0) {
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002237 SCSI_LOG_TIMEOUT(6, sg_printk(KERN_INFO, sdp,
2238 "sg_remove_sfp: bufflen=%d, k_use_sg=%d\n",
Tony Battersbyc6517b792009-01-21 14:45:50 -05002239 (int) sfp->reserve.bufflen,
2240 (int) sfp->reserve.k_use_sg));
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002241 sg_remove_scat(sfp, &sfp->reserve);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05002243
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002244 SCSI_LOG_TIMEOUT(6, sg_printk(KERN_INFO, sdp,
2245 "sg_remove_sfp: sfp=0x%p\n", sfp));
Mike Christied6b10342005-11-08 04:06:41 -06002246 kfree(sfp);
Tony Battersbyc6517b792009-01-21 14:45:50 -05002247
2248 scsi_device_put(sdp->device);
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002249 kref_put(&sdp->d_ref, sg_device_destroy);
Tony Battersbyc6517b792009-01-21 14:45:50 -05002250 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251}
2252
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002253static void
2254sg_remove_sfp(struct kref *kref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255{
Tony Battersbyc6517b792009-01-21 14:45:50 -05002256 struct sg_fd *sfp = container_of(kref, struct sg_fd, f_ref);
James Bottomley065b4a22013-10-25 10:27:02 +01002257 struct sg_device *sdp = sfp->parentdp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002258 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002260 write_lock_irqsave(&sdp->sfd_lock, iflags);
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002261 list_del(&sfp->sfd_siblings);
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002262 write_unlock_irqrestore(&sdp->sfd_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263
FUJITA Tomonori015640e2009-04-03 19:28:06 +09002264 INIT_WORK(&sfp->ew.work, sg_remove_sfp_usercontext);
2265 schedule_work(&sfp->ew.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266}
2267
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268#ifdef CONFIG_SCSI_PROC_FS
2269static int
James Bottomley7c07d612007-08-05 13:36:11 -05002270sg_idr_max_id(int id, void *p, void *data)
2271{
2272 int *k = data;
2273
2274 if (*k < id)
2275 *k = id;
2276
2277 return 0;
2278}
2279
2280static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281sg_last_dev(void)
2282{
Tony Battersby53474c02008-01-22 15:25:49 -05002283 int k = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 unsigned long iflags;
2285
James Bottomley7c07d612007-08-05 13:36:11 -05002286 read_lock_irqsave(&sg_index_lock, iflags);
2287 idr_for_each(&sg_index_idr, sg_idr_max_id, &k);
2288 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 return k + 1; /* origin 1 */
2290}
2291#endif
2292
Tony Battersbyc6517b792009-01-21 14:45:50 -05002293/* must be called with sg_index_lock held */
2294static Sg_device *sg_lookup_dev(int dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295{
Tony Battersbyc6517b792009-01-21 14:45:50 -05002296 return idr_find(&sg_index_idr, dev);
2297}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002299static Sg_device *
2300sg_get_dev(int dev)
Tony Battersbyc6517b792009-01-21 14:45:50 -05002301{
2302 struct sg_device *sdp;
2303 unsigned long flags;
2304
2305 read_lock_irqsave(&sg_index_lock, flags);
2306 sdp = sg_lookup_dev(dev);
2307 if (!sdp)
2308 sdp = ERR_PTR(-ENXIO);
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002309 else if (atomic_read(&sdp->detaching)) {
2310 /* If sdp->detaching, then the refcount may already be 0, in
Tony Battersbyc6517b792009-01-21 14:45:50 -05002311 * which case it would be a bug to do kref_get().
2312 */
2313 sdp = ERR_PTR(-ENODEV);
2314 } else
2315 kref_get(&sdp->d_ref);
2316 read_unlock_irqrestore(&sg_index_lock, flags);
James Bottomley7c07d612007-08-05 13:36:11 -05002317
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 return sdp;
2319}
2320
2321#ifdef CONFIG_SCSI_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322static int sg_proc_seq_show_int(struct seq_file *s, void *v);
2323
2324static int sg_proc_single_open_adio(struct inode *inode, struct file *file);
2325static ssize_t sg_proc_write_adio(struct file *filp, const char __user *buffer,
2326 size_t count, loff_t *off);
Alexey Dobriyan97a32532020-02-03 17:37:17 -08002327static const struct proc_ops adio_proc_ops = {
2328 .proc_open = sg_proc_single_open_adio,
2329 .proc_read = seq_read,
2330 .proc_lseek = seq_lseek,
2331 .proc_write = sg_proc_write_adio,
2332 .proc_release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333};
2334
2335static int sg_proc_single_open_dressz(struct inode *inode, struct file *file);
2336static ssize_t sg_proc_write_dressz(struct file *filp,
2337 const char __user *buffer, size_t count, loff_t *off);
Alexey Dobriyan97a32532020-02-03 17:37:17 -08002338static const struct proc_ops dressz_proc_ops = {
2339 .proc_open = sg_proc_single_open_dressz,
2340 .proc_read = seq_read,
2341 .proc_lseek = seq_lseek,
2342 .proc_write = sg_proc_write_dressz,
2343 .proc_release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344};
2345
2346static int sg_proc_seq_show_version(struct seq_file *s, void *v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347static int sg_proc_seq_show_devhdr(struct seq_file *s, void *v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348static int sg_proc_seq_show_dev(struct seq_file *s, void *v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349static void * dev_seq_start(struct seq_file *s, loff_t *pos);
2350static void * dev_seq_next(struct seq_file *s, void *v, loff_t *pos);
2351static void dev_seq_stop(struct seq_file *s, void *v);
James Morris88e9d342009-09-22 16:43:43 -07002352static const struct seq_operations dev_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 .start = dev_seq_start,
2354 .next = dev_seq_next,
2355 .stop = dev_seq_stop,
2356 .show = sg_proc_seq_show_dev,
2357};
2358
2359static int sg_proc_seq_show_devstrs(struct seq_file *s, void *v);
James Morris88e9d342009-09-22 16:43:43 -07002360static const struct seq_operations devstrs_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 .start = dev_seq_start,
2362 .next = dev_seq_next,
2363 .stop = dev_seq_stop,
2364 .show = sg_proc_seq_show_devstrs,
2365};
2366
2367static int sg_proc_seq_show_debug(struct seq_file *s, void *v);
James Morris88e9d342009-09-22 16:43:43 -07002368static const struct seq_operations debug_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 .start = dev_seq_start,
2370 .next = dev_seq_next,
2371 .stop = dev_seq_stop,
2372 .show = sg_proc_seq_show_debug,
2373};
2374
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375static int
2376sg_proc_init(void)
2377{
Christoph Hellwigb8b14832018-04-11 11:26:22 +02002378 struct proc_dir_entry *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379
Christoph Hellwigb8b14832018-04-11 11:26:22 +02002380 p = proc_mkdir("scsi/sg", NULL);
2381 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 return 1;
Christoph Hellwigb8b14832018-04-11 11:26:22 +02002383
Alexey Dobriyan97a32532020-02-03 17:37:17 -08002384 proc_create("allow_dio", S_IRUGO | S_IWUSR, p, &adio_proc_ops);
Christoph Hellwigb8b14832018-04-11 11:26:22 +02002385 proc_create_seq("debug", S_IRUGO, p, &debug_seq_ops);
Alexey Dobriyan97a32532020-02-03 17:37:17 -08002386 proc_create("def_reserved_size", S_IRUGO | S_IWUSR, p, &dressz_proc_ops);
Christoph Hellwigb8b14832018-04-11 11:26:22 +02002387 proc_create_single("device_hdr", S_IRUGO, p, sg_proc_seq_show_devhdr);
2388 proc_create_seq("devices", S_IRUGO, p, &dev_seq_ops);
2389 proc_create_seq("device_strs", S_IRUGO, p, &devstrs_seq_ops);
2390 proc_create_single("version", S_IRUGO, p, sg_proc_seq_show_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 return 0;
2392}
2393
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394
2395static int sg_proc_seq_show_int(struct seq_file *s, void *v)
2396{
2397 seq_printf(s, "%d\n", *((int *)s->private));
2398 return 0;
2399}
2400
2401static int sg_proc_single_open_adio(struct inode *inode, struct file *file)
2402{
2403 return single_open(file, sg_proc_seq_show_int, &sg_allow_dio);
2404}
2405
2406static ssize_t
2407sg_proc_write_adio(struct file *filp, const char __user *buffer,
2408 size_t count, loff_t *off)
2409{
Stephen Boyd7e95fff2012-01-10 15:42:34 -08002410 int err;
2411 unsigned long num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412
2413 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
2414 return -EACCES;
Stephen Boyd7e95fff2012-01-10 15:42:34 -08002415 err = kstrtoul_from_user(buffer, count, 0, &num);
2416 if (err)
2417 return err;
2418 sg_allow_dio = num ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 return count;
2420}
2421
2422static int sg_proc_single_open_dressz(struct inode *inode, struct file *file)
2423{
2424 return single_open(file, sg_proc_seq_show_int, &sg_big_buff);
2425}
2426
2427static ssize_t
2428sg_proc_write_dressz(struct file *filp, const char __user *buffer,
2429 size_t count, loff_t *off)
2430{
Stephen Boyd7e95fff2012-01-10 15:42:34 -08002431 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 unsigned long k = ULONG_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433
2434 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
2435 return -EACCES;
Stephen Boyd7e95fff2012-01-10 15:42:34 -08002436
2437 err = kstrtoul_from_user(buffer, count, 0, &k);
2438 if (err)
2439 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 if (k <= 1048576) { /* limit "big buff" to 1 MB */
2441 sg_big_buff = k;
2442 return count;
2443 }
2444 return -ERANGE;
2445}
2446
2447static int sg_proc_seq_show_version(struct seq_file *s, void *v)
2448{
2449 seq_printf(s, "%d\t%s [%s]\n", sg_version_num, SG_VERSION_STR,
2450 sg_version_date);
2451 return 0;
2452}
2453
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454static int sg_proc_seq_show_devhdr(struct seq_file *s, void *v)
2455{
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002456 seq_puts(s, "host\tchan\tid\tlun\ttype\topens\tqdepth\tbusy\tonline\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 return 0;
2458}
2459
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460struct sg_proc_deviter {
2461 loff_t index;
2462 size_t max;
2463};
2464
2465static void * dev_seq_start(struct seq_file *s, loff_t *pos)
2466{
2467 struct sg_proc_deviter * it = kmalloc(sizeof(*it), GFP_KERNEL);
2468
Jan Blunck729d70f2005-08-27 11:07:52 -07002469 s->private = it;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470 if (! it)
2471 return NULL;
Jan Blunck729d70f2005-08-27 11:07:52 -07002472
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 it->index = *pos;
2474 it->max = sg_last_dev();
2475 if (it->index >= it->max)
Jan Blunck729d70f2005-08-27 11:07:52 -07002476 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 return it;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478}
2479
2480static void * dev_seq_next(struct seq_file *s, void *v, loff_t *pos)
2481{
Jan Blunck729d70f2005-08-27 11:07:52 -07002482 struct sg_proc_deviter * it = s->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483
2484 *pos = ++it->index;
2485 return (it->index < it->max) ? it : NULL;
2486}
2487
2488static void dev_seq_stop(struct seq_file *s, void *v)
2489{
Jan Blunck729d70f2005-08-27 11:07:52 -07002490 kfree(s->private);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491}
2492
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493static int sg_proc_seq_show_dev(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 if ((NULL == sdp) || (NULL == sdp->device) ||
2503 (atomic_read(&sdp->detaching)))
2504 seq_puts(s, "-1\t-1\t-1\t-1\t-1\t-1\t-1\t-1\t-1\n");
2505 else {
2506 scsidp = sdp->device;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002507 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 -07002508 scsidp->host->host_no, scsidp->channel,
2509 scsidp->id, scsidp->lun, (int) scsidp->type,
2510 1,
2511 (int) scsidp->queue_depth,
Christoph Hellwig71e75c92014-04-11 19:07:01 +02002512 (int) atomic_read(&scsidp->device_busy),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 (int) scsi_device_online(scsidp));
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002514 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05002515 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 return 0;
2517}
2518
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519static int sg_proc_seq_show_devstrs(struct seq_file *s, void *v)
2520{
2521 struct sg_proc_deviter * it = (struct sg_proc_deviter *) v;
2522 Sg_device *sdp;
2523 struct scsi_device *scsidp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002524 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525
Tony Battersbyc6517b792009-01-21 14:45:50 -05002526 read_lock_irqsave(&sg_index_lock, iflags);
2527 sdp = it ? sg_lookup_dev(it->index) : NULL;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002528 scsidp = sdp ? sdp->device : NULL;
2529 if (sdp && scsidp && (!atomic_read(&sdp->detaching)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 seq_printf(s, "%8.8s\t%16.16s\t%4.4s\n",
2531 scsidp->vendor, scsidp->model, scsidp->rev);
2532 else
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002533 seq_puts(s, "<no active device>\n");
Tony Battersbyc6517b792009-01-21 14:45:50 -05002534 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 return 0;
2536}
2537
James Bottomleyc0d3b9c2013-10-25 10:21:57 +01002538/* must be called while holding sg_index_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539static void sg_proc_debug_helper(struct seq_file *s, Sg_device * sdp)
2540{
Hannes Reinecke109bade2017-04-07 09:34:16 +02002541 int k, new_interface, blen, usg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 Sg_request *srp;
2543 Sg_fd *fp;
2544 const sg_io_hdr_t *hp;
2545 const char * cp;
cb59e842005-04-02 13:51:23 -06002546 unsigned int ms;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002548 k = 0;
2549 list_for_each_entry(fp, &sdp->sfds, sfd_siblings) {
2550 k++;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002551 read_lock(&fp->rq_list_lock); /* irqs already disabled */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 seq_printf(s, " FD(%d): timeout=%dms bufflen=%d "
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002553 "(res)sgat=%d low_dma=%d\n", k,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 jiffies_to_msecs(fp->timeout),
2555 fp->reserve.bufflen,
2556 (int) fp->reserve.k_use_sg,
Hannes Reinecke745dfa02017-04-07 09:34:12 +02002557 (int) sdp->device->host->unchecked_isa_dma);
Jörn Engelebaf4662012-04-12 17:33:39 -04002558 seq_printf(s, " cmd_q=%d f_packid=%d k_orphan=%d closed=0\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 (int) fp->cmd_q, (int) fp->force_packid,
Jörn Engelebaf4662012-04-12 17:33:39 -04002560 (int) fp->keep_orphan);
Hannes Reinecke109bade2017-04-07 09:34:16 +02002561 list_for_each_entry(srp, &fp->rq_list, entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 hp = &srp->header;
2563 new_interface = (hp->interface_id == '\0') ? 0 : 1;
2564 if (srp->res_used) {
Hannes Reinecke109bade2017-04-07 09:34:16 +02002565 if (new_interface &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 (SG_FLAG_MMAP_IO & hp->flags))
2567 cp = " mmap>> ";
2568 else
2569 cp = " rb>> ";
2570 } else {
2571 if (SG_INFO_DIRECT_IO_MASK & hp->info)
2572 cp = " dio>> ";
2573 else
2574 cp = " ";
2575 }
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002576 seq_puts(s, cp);
Mike Christied6b10342005-11-08 04:06:41 -06002577 blen = srp->data.bufflen;
2578 usg = srp->data.k_use_sg;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002579 seq_puts(s, srp->done ?
2580 ((1 == srp->done) ? "rcv:" : "fin:")
2581 : "act:");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 seq_printf(s, " id=%d blen=%d",
2583 srp->header.pack_id, blen);
2584 if (srp->done)
2585 seq_printf(s, " dur=%d", hp->duration);
cb59e842005-04-02 13:51:23 -06002586 else {
2587 ms = jiffies_to_msecs(jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 seq_printf(s, " t_o/elap=%d/%d",
cb59e842005-04-02 13:51:23 -06002589 (new_interface ? hp->timeout :
2590 jiffies_to_msecs(fp->timeout)),
2591 (ms > hp->duration ? ms - hp->duration : 0));
2592 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 seq_printf(s, "ms sgat=%d op=0x%02x\n", usg,
2594 (int) srp->data.cmd_opcode);
2595 }
Hannes Reinecke109bade2017-04-07 09:34:16 +02002596 if (list_empty(&fp->rq_list))
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002597 seq_puts(s, " No requests active\n");
Tony Battersbyc6517b792009-01-21 14:45:50 -05002598 read_unlock(&fp->rq_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 }
2600}
2601
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602static int sg_proc_seq_show_debug(struct seq_file *s, void *v)
2603{
2604 struct sg_proc_deviter * it = (struct sg_proc_deviter *) v;
2605 Sg_device *sdp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002606 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002608 if (it && (0 == it->index))
2609 seq_printf(s, "max_active_device=%d def_reserved_size=%d\n",
2610 (int)it->max, sg_big_buff);
Tony Battersbyc6517b792009-01-21 14:45:50 -05002611
2612 read_lock_irqsave(&sg_index_lock, iflags);
2613 sdp = it ? sg_lookup_dev(it->index) : NULL;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002614 if (NULL == sdp)
2615 goto skip;
2616 read_lock(&sdp->sfd_lock);
2617 if (!list_empty(&sdp->sfds)) {
James Bottomleyc0d3b9c2013-10-25 10:21:57 +01002618 seq_printf(s, " >>> device=%s ", sdp->disk->disk_name);
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002619 if (atomic_read(&sdp->detaching))
2620 seq_puts(s, "detaching pending close ");
2621 else if (sdp->device) {
2622 struct scsi_device *scsidp = sdp->device;
2623
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002624 seq_printf(s, "%d:%d:%d:%llu em=%d",
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002625 scsidp->host->host_no,
2626 scsidp->channel, scsidp->id,
2627 scsidp->lun,
2628 scsidp->host->hostt->emulated);
2629 }
2630 seq_printf(s, " sg_tablesize=%d excl=%d open_cnt=%d\n",
2631 sdp->sg_tablesize, sdp->exclude, sdp->open_cnt);
James Bottomleyc0d3b9c2013-10-25 10:21:57 +01002632 sg_proc_debug_helper(s, sdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 }
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002634 read_unlock(&sdp->sfd_lock);
2635skip:
Tony Battersbyc6517b792009-01-21 14:45:50 -05002636 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637 return 0;
2638}
2639
2640#endif /* CONFIG_SCSI_PROC_FS */
2641
2642module_init(init_sg);
2643module_exit(exit_sg);