blob: 4e6af592f018e77b54c81624b8860de3826b594a [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
Johannes Thumshirnf930c702017-07-27 09:11:26 +0200796 if (hp->dxfer_len >= SZ_256M)
Johannes Thumshirn28676d82017-04-07 09:34:15 +0200797 return -EINVAL;
798
FUJITA Tomonori10865df2008-08-28 16:17:07 +0900799 k = sg_start_req(srp, cmnd);
800 if (k) {
Hannes Reinecke95e159d2014-06-25 16:39:55 +0200801 SCSI_LOG_TIMEOUT(1, sg_printk(KERN_INFO, sfp->parentdp,
802 "sg_common_write: start_req err=%d\n", k));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 sg_finish_rem_req(srp);
Hannes Reinecke97d27b0dd2017-04-07 09:34:17 +0200804 sg_remove_request(sfp, srp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 return k; /* probably out of space --> ENOMEM */
806 }
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200807 if (atomic_read(&sdp->detaching)) {
Calvin Owensf3951a32015-10-30 16:57:00 -0700808 if (srp->bio) {
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100809 scsi_req_free_cmd(scsi_req(srp->rq));
Jens Axboeabaf75d2018-10-16 08:38:47 -0600810 blk_put_request(srp->rq);
Calvin Owensf3951a32015-10-30 16:57:00 -0700811 srp->rq = NULL;
812 }
813
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 sg_finish_rem_req(srp);
Hannes Reinecke97d27b0dd2017-04-07 09:34:17 +0200815 sg_remove_request(sfp, srp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 return -ENODEV;
817 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
cb59e842005-04-02 13:51:23 -0600819 hp->duration = jiffies_to_msecs(jiffies);
Douglas Gilbert16070cc2014-06-04 10:58:30 -0400820 if (hp->interface_id != '\0' && /* v3 (or later) interface */
821 (SG_FLAG_Q_AT_TAIL & hp->flags))
822 at_head = 0;
823 else
824 at_head = 1;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +0200825
826 srp->rq->timeout = timeout;
Tony Battersbyc6517b792009-01-21 14:45:50 -0500827 kref_get(&sfp->f_ref); /* sg_rq_end_io() does kref_put(). */
FUJITA Tomonori10db10d2008-08-29 12:32:18 +0200828 blk_execute_rq_nowait(sdp->device->request_queue, sdp->disk,
Douglas Gilbert16070cc2014-06-04 10:58:30 -0400829 srp->rq, at_head, sg_rq_end_io);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +0200830 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831}
832
Jörn Engel6acddc52012-04-12 17:33:58 -0400833static int srp_done(Sg_fd *sfp, Sg_request *srp)
834{
835 unsigned long flags;
836 int ret;
837
838 read_lock_irqsave(&sfp->rq_list_lock, flags);
839 ret = srp->done;
840 read_unlock_irqrestore(&sfp->rq_list_lock, flags);
841 return ret;
842}
843
Akinobu Mita46f69e62014-06-02 22:56:46 +0900844static int max_sectors_bytes(struct request_queue *q)
845{
846 unsigned int max_sectors = queue_max_sectors(q);
847
848 max_sectors = min_t(unsigned int, max_sectors, INT_MAX >> 9);
849
850 return max_sectors << 9;
851}
852
Hannes Reinecke4759df92017-09-15 14:05:15 +0200853static void
854sg_fill_request_table(Sg_fd *sfp, sg_req_info_t *rinfo)
855{
856 Sg_request *srp;
857 int val;
858 unsigned int ms;
859
860 val = 0;
861 list_for_each_entry(srp, &sfp->rq_list, entry) {
Ben Hutchings587c3c92017-10-15 18:16:33 +0100862 if (val >= SG_MAX_QUEUE)
Hannes Reinecke4759df92017-09-15 14:05:15 +0200863 break;
Hannes Reinecke4759df92017-09-15 14:05:15 +0200864 rinfo[val].req_state = srp->done + 1;
865 rinfo[val].problem =
866 srp->header.masked_status &
867 srp->header.host_status &
868 srp->header.driver_status;
869 if (srp->done)
870 rinfo[val].duration =
871 srp->header.duration;
872 else {
873 ms = jiffies_to_msecs(jiffies);
874 rinfo[val].duration =
875 (ms > srp->header.duration) ?
876 (ms - srp->header.duration) : 0;
877 }
878 rinfo[val].orphan = srp->orphan;
879 rinfo[val].sg_io_owned = srp->sg_io_owned;
880 rinfo[val].pack_id = srp->header.pack_id;
881 rinfo[val].usr_ptr = srp->header.usr_ptr;
882 val++;
883 }
884}
885
Arnd Bergmannfd6c3d52018-08-24 14:53:13 +0200886#ifdef CONFIG_COMPAT
887struct compat_sg_req_info { /* used by SG_GET_REQUEST_TABLE ioctl() */
888 char req_state;
889 char orphan;
890 char sg_io_owned;
891 char problem;
892 int pack_id;
893 compat_uptr_t usr_ptr;
894 unsigned int duration;
895 int unused;
896};
897
898static int put_compat_request_table(struct compat_sg_req_info __user *o,
899 struct sg_req_info *rinfo)
900{
901 int i;
902 for (i = 0; i < SG_MAX_QUEUE; i++) {
903 if (copy_to_user(o + i, rinfo + i, offsetof(sg_req_info_t, usr_ptr)) ||
904 put_user((uintptr_t)rinfo[i].usr_ptr, &o[i].usr_ptr) ||
905 put_user(rinfo[i].duration, &o[i].duration) ||
906 put_user(rinfo[i].unused, &o[i].unused))
907 return -EFAULT;
908 }
909 return 0;
910}
911#endif
912
Jörn Engel37b9d1e2012-04-12 17:35:05 -0400913static long
Arnd Bergmannd320a952019-03-15 17:39:44 +0100914sg_ioctl_common(struct file *filp, Sg_device *sdp, Sg_fd *sfp,
915 unsigned int cmd_in, void __user *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 int __user *ip = p;
Christoph Hellwig176aa9d2014-10-11 12:06:47 +0200918 int result, val, read_only;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 Sg_request *srp;
920 unsigned long iflags;
921
Hannes Reinecke95e159d2014-06-25 16:39:55 +0200922 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
923 "sg_ioctl: cmd=0x%x\n", (int) cmd_in));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 read_only = (O_RDWR != (filp->f_flags & O_ACCMODE));
925
926 switch (cmd_in) {
927 case SG_IO:
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200928 if (atomic_read(&sdp->detaching))
Jörn Engeldddbf8d2012-04-12 17:32:17 -0400929 return -ENODEV;
930 if (!scsi_block_when_processing_errors(sdp->device))
931 return -ENXIO;
Jörn Engeldddbf8d2012-04-12 17:32:17 -0400932 result = sg_new_write(sfp, filp, p, SZ_SG_IO_HDR,
933 1, read_only, 1, &srp);
934 if (result < 0)
935 return result;
Jörn Engel3f0c6ab2012-04-12 17:33:25 -0400936 result = wait_event_interruptible(sfp->read_wait,
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200937 (srp_done(sfp, srp) || atomic_read(&sdp->detaching)));
938 if (atomic_read(&sdp->detaching))
Jörn Engel794c10f2012-04-12 17:32:48 -0400939 return -ENODEV;
940 write_lock_irq(&sfp->rq_list_lock);
941 if (srp->done) {
942 srp->done = 2;
Jörn Engeldddbf8d2012-04-12 17:32:17 -0400943 write_unlock_irq(&sfp->rq_list_lock);
Jörn Engel794c10f2012-04-12 17:32:48 -0400944 result = sg_new_read(sfp, p, SZ_SG_IO_HDR, srp);
945 return (result < 0) ? result : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 }
Jörn Engel794c10f2012-04-12 17:32:48 -0400947 srp->orphan = 1;
948 write_unlock_irq(&sfp->rq_list_lock);
949 return result; /* -ERESTARTSYS because signal hit process */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 case SG_SET_TIMEOUT:
951 result = get_user(val, ip);
952 if (result)
953 return result;
954 if (val < 0)
955 return -EIO;
Paul Burtonf8630bd72016-08-19 17:43:57 +0100956 if (val >= mult_frac((s64)INT_MAX, USER_HZ, HZ))
957 val = min_t(s64, mult_frac((s64)INT_MAX, USER_HZ, HZ),
Paul Burtonb9b6e802016-08-19 17:43:56 +0100958 INT_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 sfp->timeout_user = val;
Paul Burtonf8630bd72016-08-19 17:43:57 +0100960 sfp->timeout = mult_frac(val, HZ, USER_HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
962 return 0;
963 case SG_GET_TIMEOUT: /* N.B. User receives timeout as return value */
964 /* strange ..., for backward compatibility */
965 return sfp->timeout_user;
966 case SG_SET_FORCE_LOW_DMA:
Hannes Reinecke745dfa02017-04-07 09:34:12 +0200967 /*
968 * N.B. This ioctl never worked properly, but failed to
969 * return an error value. So returning '0' to keep compability
970 * with legacy applications.
971 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 return 0;
973 case SG_GET_LOW_DMA:
Hannes Reinecke745dfa02017-04-07 09:34:12 +0200974 return put_user((int) sdp->device->host->unchecked_isa_dma, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 case SG_GET_SCSI_ID:
Al Viroa16a4742019-10-17 20:39:18 +0100976 {
977 sg_scsi_id_t v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200979 if (atomic_read(&sdp->detaching))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 return -ENODEV;
Al Viroa16a4742019-10-17 20:39:18 +0100981 memset(&v, 0, sizeof(v));
982 v.host_no = sdp->device->host->host_no;
983 v.channel = sdp->device->channel;
984 v.scsi_id = sdp->device->id;
985 v.lun = sdp->device->lun;
986 v.scsi_type = sdp->device->type;
987 v.h_cmd_per_lun = sdp->device->host->cmd_per_lun;
988 v.d_queue_depth = sdp->device->queue_depth;
989 if (copy_to_user(p, &v, sizeof(sg_scsi_id_t)))
990 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 return 0;
992 }
993 case SG_SET_FORCE_PACK_ID:
994 result = get_user(val, ip);
995 if (result)
996 return result;
997 sfp->force_packid = val ? 1 : 0;
998 return 0;
999 case SG_GET_PACK_ID:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 read_lock_irqsave(&sfp->rq_list_lock, iflags);
Hannes Reinecke109bade2017-04-07 09:34:16 +02001001 list_for_each_entry(srp, &sfp->rq_list, entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 if ((1 == srp->done) && (!srp->sg_io_owned)) {
1003 read_unlock_irqrestore(&sfp->rq_list_lock,
1004 iflags);
Al Viroa16a4742019-10-17 20:39:18 +01001005 return put_user(srp->header.pack_id, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 }
1007 }
1008 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
Al Viroa16a4742019-10-17 20:39:18 +01001009 return put_user(-1, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 case SG_GET_NUM_WAITING:
1011 read_lock_irqsave(&sfp->rq_list_lock, iflags);
Hannes Reinecke109bade2017-04-07 09:34:16 +02001012 val = 0;
1013 list_for_each_entry(srp, &sfp->rq_list, entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 if ((1 == srp->done) && (!srp->sg_io_owned))
1015 ++val;
1016 }
1017 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1018 return put_user(val, ip);
1019 case SG_GET_SG_TABLESIZE:
1020 return put_user(sdp->sg_tablesize, ip);
1021 case SG_SET_RESERVED_SIZE:
1022 result = get_user(val, ip);
1023 if (result)
1024 return result;
1025 if (val < 0)
1026 return -EINVAL;
Alan Stern44ec9542007-02-20 11:01:57 -05001027 val = min_t(int, val,
Akinobu Mita46f69e62014-06-02 22:56:46 +09001028 max_sectors_bytes(sdp->device->request_queue));
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001029 mutex_lock(&sfp->f_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 if (val != sfp->reserve.bufflen) {
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001031 if (sfp->mmap_called ||
1032 sfp->res_in_use) {
1033 mutex_unlock(&sfp->f_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 return -EBUSY;
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001035 }
1036
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001037 sg_remove_scat(sfp, &sfp->reserve);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 sg_build_reserve(sfp, val);
1039 }
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001040 mutex_unlock(&sfp->f_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 return 0;
1042 case SG_GET_RESERVED_SIZE:
Alan Stern44ec9542007-02-20 11:01:57 -05001043 val = min_t(int, sfp->reserve.bufflen,
Akinobu Mita46f69e62014-06-02 22:56:46 +09001044 max_sectors_bytes(sdp->device->request_queue));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 return put_user(val, ip);
1046 case SG_SET_COMMAND_Q:
1047 result = get_user(val, ip);
1048 if (result)
1049 return result;
1050 sfp->cmd_q = val ? 1 : 0;
1051 return 0;
1052 case SG_GET_COMMAND_Q:
1053 return put_user((int) sfp->cmd_q, ip);
1054 case SG_SET_KEEP_ORPHAN:
1055 result = get_user(val, ip);
1056 if (result)
1057 return result;
1058 sfp->keep_orphan = val;
1059 return 0;
1060 case SG_GET_KEEP_ORPHAN:
1061 return put_user((int) sfp->keep_orphan, ip);
1062 case SG_NEXT_CMD_LEN:
1063 result = get_user(val, ip);
1064 if (result)
1065 return result;
peter changbf33f872017-02-15 14:11:54 -08001066 if (val > SG_MAX_CDB_SIZE)
1067 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 sfp->next_cmd_len = (val > 0) ? val : 0;
1069 return 0;
1070 case SG_GET_VERSION_NUM:
1071 return put_user(sg_version_num, ip);
1072 case SG_GET_ACCESS_COUNT:
1073 /* faked - we don't have a real access count anymore */
1074 val = (sdp->device ? 1 : 0);
1075 return put_user(val, ip);
1076 case SG_GET_REQUEST_TABLE:
Arnd Bergmannfd6c3d52018-08-24 14:53:13 +02001077 {
cb59e842005-04-02 13:51:23 -06001078 sg_req_info_t *rinfo;
cb59e842005-04-02 13:51:23 -06001079
Kees Cook6396bb22018-06-12 14:03:40 -07001080 rinfo = kcalloc(SG_MAX_QUEUE, SZ_SG_REQ_INFO,
Hannes Reinecke3e009742017-09-15 14:05:16 +02001081 GFP_KERNEL);
cb59e842005-04-02 13:51:23 -06001082 if (!rinfo)
1083 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 read_lock_irqsave(&sfp->rq_list_lock, iflags);
Hannes Reinecke4759df92017-09-15 14:05:15 +02001085 sg_fill_request_table(sfp, rinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
Arnd Bergmannfd6c3d52018-08-24 14:53:13 +02001087 #ifdef CONFIG_COMPAT
1088 if (in_compat_syscall())
1089 result = put_compat_request_table(p, rinfo);
1090 else
1091 #endif
1092 result = copy_to_user(p, rinfo,
1093 SZ_SG_REQ_INFO * SG_MAX_QUEUE);
cb59e842005-04-02 13:51:23 -06001094 result = result ? -EFAULT : 0;
1095 kfree(rinfo);
1096 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 }
1098 case SG_EMULATED_HOST:
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001099 if (atomic_read(&sdp->detaching))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 return -ENODEV;
1101 return put_user(sdp->device->host->hostt->emulated, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 case SCSI_IOCTL_SEND_COMMAND:
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001103 if (atomic_read(&sdp->detaching))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 return -ENODEV;
Al Viroe915e872008-09-02 17:16:41 -04001105 return sg_scsi_ioctl(sdp->device->request_queue, NULL, filp->f_mode, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 case SG_SET_DEBUG:
1107 result = get_user(val, ip);
1108 if (result)
1109 return result;
1110 sdp->sgdebug = (char) val;
1111 return 0;
Alan Stern44ec9542007-02-20 11:01:57 -05001112 case BLKSECTGET:
Akinobu Mita46f69e62014-06-02 22:56:46 +09001113 return put_user(max_sectors_bytes(sdp->device->request_queue),
Alan Stern44ec9542007-02-20 11:01:57 -05001114 ip);
Christof Schmitt6da127a2008-01-11 10:09:43 +01001115 case BLKTRACESETUP:
1116 return blk_trace_setup(sdp->device->request_queue,
1117 sdp->disk->disk_name,
Martin Peschke76e3a192009-01-30 15:46:23 +01001118 MKDEV(SCSI_GENERIC_MAJOR, sdp->index),
Bart Van Assche7475c8a2017-08-25 13:46:36 -07001119 NULL, p);
Christof Schmitt6da127a2008-01-11 10:09:43 +01001120 case BLKTRACESTART:
1121 return blk_trace_startstop(sdp->device->request_queue, 1);
1122 case BLKTRACESTOP:
1123 return blk_trace_startstop(sdp->device->request_queue, 0);
1124 case BLKTRACETEARDOWN:
1125 return blk_trace_remove(sdp->device->request_queue);
Christoph Hellwig906d15f2014-10-11 16:25:31 +02001126 case SCSI_IOCTL_GET_IDLUN:
1127 case SCSI_IOCTL_GET_BUS_NUMBER:
1128 case SCSI_IOCTL_PROBE_HOST:
1129 case SG_GET_TRANSFORM:
1130 case SG_SCSI_RESET:
1131 if (atomic_read(&sdp->detaching))
1132 return -ENODEV;
1133 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 default:
1135 if (read_only)
1136 return -EPERM; /* don't know so take safe approach */
Christoph Hellwig906d15f2014-10-11 16:25:31 +02001137 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 }
Christoph Hellwig906d15f2014-10-11 16:25:31 +02001139
1140 result = scsi_ioctl_block_when_processing_errors(sdp->device,
1141 cmd_in, filp->f_flags & O_NDELAY);
1142 if (result)
1143 return result;
Arnd Bergmannd320a952019-03-15 17:39:44 +01001144
1145 return -ENOIOCTLCMD;
1146}
1147
1148static long
1149sg_ioctl(struct file *filp, unsigned int cmd_in, unsigned long arg)
1150{
1151 void __user *p = (void __user *)arg;
1152 Sg_device *sdp;
1153 Sg_fd *sfp;
1154 int ret;
1155
1156 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
1157 return -ENXIO;
1158
1159 ret = sg_ioctl_common(filp, sdp, sfp, cmd_in, p);
1160 if (ret != -ENOIOCTLCMD)
1161 return ret;
1162
Christoph Hellwig906d15f2014-10-11 16:25:31 +02001163 return scsi_ioctl(sdp->device, cmd_in, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164}
1165
1166#ifdef CONFIG_COMPAT
1167static long sg_compat_ioctl(struct file *filp, unsigned int cmd_in, unsigned long arg)
1168{
Arnd Bergmannd320a952019-03-15 17:39:44 +01001169 void __user *p = compat_ptr(arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 Sg_device *sdp;
1171 Sg_fd *sfp;
Arnd Bergmannd320a952019-03-15 17:39:44 +01001172 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
1174 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
1175 return -ENXIO;
1176
Arnd Bergmannd320a952019-03-15 17:39:44 +01001177 ret = sg_ioctl_common(filp, sdp, sfp, cmd_in, p);
1178 if (ret != -ENOIOCTLCMD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 return ret;
Arnd Bergmannd320a952019-03-15 17:39:44 +01001180
1181 return scsi_compat_ioctl(sdp->device, cmd_in, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182}
1183#endif
1184
Al Viroafc9a422017-07-03 06:39:46 -04001185static __poll_t
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186sg_poll(struct file *filp, poll_table * wait)
1187{
Al Viroafc9a422017-07-03 06:39:46 -04001188 __poll_t res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 Sg_device *sdp;
1190 Sg_fd *sfp;
1191 Sg_request *srp;
1192 int count = 0;
1193 unsigned long iflags;
1194
Jörn Engelebaf4662012-04-12 17:33:39 -04001195 sfp = filp->private_data;
1196 if (!sfp)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001197 return EPOLLERR;
Jörn Engelebaf4662012-04-12 17:33:39 -04001198 sdp = sfp->parentdp;
1199 if (!sdp)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001200 return EPOLLERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 poll_wait(filp, &sfp->read_wait, wait);
1202 read_lock_irqsave(&sfp->rq_list_lock, iflags);
Hannes Reinecke109bade2017-04-07 09:34:16 +02001203 list_for_each_entry(srp, &sfp->rq_list, entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 /* if any read waiting, flag it */
1205 if ((0 == res) && (1 == srp->done) && (!srp->sg_io_owned))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001206 res = EPOLLIN | EPOLLRDNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 ++count;
1208 }
1209 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1210
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001211 if (atomic_read(&sdp->detaching))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001212 res |= EPOLLHUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 else if (!sfp->cmd_q) {
1214 if (0 == count)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001215 res |= EPOLLOUT | EPOLLWRNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 } else if (count < SG_MAX_QUEUE)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001217 res |= EPOLLOUT | EPOLLWRNORM;
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001218 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
Al Virofcc5a652017-07-16 23:54:30 -04001219 "sg_poll: res=0x%x\n", (__force u32) res));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 return res;
1221}
1222
1223static int
1224sg_fasync(int fd, struct file *filp, int mode)
1225{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 Sg_device *sdp;
1227 Sg_fd *sfp;
1228
1229 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
1230 return -ENXIO;
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001231 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
1232 "sg_fasync: mode=%d\n", mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
Jonathan Corbet60aa4922009-02-01 14:52:56 -07001234 return fasync_helper(fd, filp, mode, &sfp->async_qp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235}
1236
Souptick Joarder0cac8e12018-04-15 00:17:41 +05301237static vm_fault_t
Dave Jiang11bac802017-02-24 14:56:41 -08001238sg_vma_fault(struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239{
Dave Jiang11bac802017-02-24 14:56:41 -08001240 struct vm_area_struct *vma = vmf->vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 Sg_fd *sfp;
Mike Christied6b10342005-11-08 04:06:41 -06001242 unsigned long offset, len, sa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 Sg_scatter_hold *rsv_schp;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001244 int k, length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
1246 if ((NULL == vma) || (!(sfp = (Sg_fd *) vma->vm_private_data)))
Nick Piggina13ff0b2008-02-07 18:46:06 -08001247 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 rsv_schp = &sfp->reserve;
Nick Piggina13ff0b2008-02-07 18:46:06 -08001249 offset = vmf->pgoff << PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 if (offset >= rsv_schp->bufflen)
Nick Piggina13ff0b2008-02-07 18:46:06 -08001251 return VM_FAULT_SIGBUS;
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001252 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sfp->parentdp,
1253 "sg_vma_fault: offset=%lu, scatg=%d\n",
1254 offset, rsv_schp->k_use_sg));
Mike Christied6b10342005-11-08 04:06:41 -06001255 sa = vma->vm_start;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001256 length = 1 << (PAGE_SHIFT + rsv_schp->page_order);
1257 for (k = 0; k < rsv_schp->k_use_sg && sa < vma->vm_end; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06001258 len = vma->vm_end - sa;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001259 len = (len < length) ? len : length;
Mike Christied6b10342005-11-08 04:06:41 -06001260 if (offset < len) {
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001261 struct page *page = nth_page(rsv_schp->pages[k],
1262 offset >> PAGE_SHIFT);
Mike Christied6b10342005-11-08 04:06:41 -06001263 get_page(page); /* increment page count */
Nick Piggina13ff0b2008-02-07 18:46:06 -08001264 vmf->page = page;
1265 return 0; /* success */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 }
Mike Christied6b10342005-11-08 04:06:41 -06001267 sa += len;
1268 offset -= len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 }
Mike Christied6b10342005-11-08 04:06:41 -06001270
Nick Piggina13ff0b2008-02-07 18:46:06 -08001271 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272}
1273
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04001274static const struct vm_operations_struct sg_mmap_vm_ops = {
Nick Piggina13ff0b2008-02-07 18:46:06 -08001275 .fault = sg_vma_fault,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276};
1277
1278static int
1279sg_mmap(struct file *filp, struct vm_area_struct *vma)
1280{
1281 Sg_fd *sfp;
Mike Christied6b10342005-11-08 04:06:41 -06001282 unsigned long req_sz, len, sa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 Sg_scatter_hold *rsv_schp;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001284 int k, length;
Todd Poynor6a8dadc2017-08-15 22:41:08 -07001285 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
1287 if ((!filp) || (!vma) || (!(sfp = (Sg_fd *) filp->private_data)))
1288 return -ENXIO;
cb59e842005-04-02 13:51:23 -06001289 req_sz = vma->vm_end - vma->vm_start;
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001290 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sfp->parentdp,
1291 "sg_mmap starting, vm_start=%p, len=%d\n",
1292 (void *) vma->vm_start, (int) req_sz));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 if (vma->vm_pgoff)
1294 return -EINVAL; /* want no offset */
1295 rsv_schp = &sfp->reserve;
Todd Poynor6a8dadc2017-08-15 22:41:08 -07001296 mutex_lock(&sfp->f_mutex);
1297 if (req_sz > rsv_schp->bufflen) {
1298 ret = -ENOMEM; /* cannot map more than reserved buffer */
1299 goto out;
1300 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
Mike Christied6b10342005-11-08 04:06:41 -06001302 sa = vma->vm_start;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001303 length = 1 << (PAGE_SHIFT + rsv_schp->page_order);
1304 for (k = 0; k < rsv_schp->k_use_sg && sa < vma->vm_end; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06001305 len = vma->vm_end - sa;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001306 len = (len < length) ? len : length;
Mike Christied6b10342005-11-08 04:06:41 -06001307 sa += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 }
Mike Christied6b10342005-11-08 04:06:41 -06001309
Nick Pigginf9aed0e2006-03-22 00:08:30 -08001310 sfp->mmap_called = 1;
Kirill A. Shutemov461c7fa2016-02-02 16:57:35 -08001311 vma->vm_flags |= VM_IO | VM_DONTEXPAND | VM_DONTDUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 vma->vm_private_data = sfp;
1313 vma->vm_ops = &sg_mmap_vm_ops;
Todd Poynor6a8dadc2017-08-15 22:41:08 -07001314out:
1315 mutex_unlock(&sfp->f_mutex);
1316 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317}
1318
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001319static void
1320sg_rq_end_io_usercontext(struct work_struct *work)
FUJITA Tomonoric96952e2009-02-04 11:36:27 +09001321{
1322 struct sg_request *srp = container_of(work, struct sg_request, ew.work);
1323 struct sg_fd *sfp = srp->parentfp;
1324
1325 sg_finish_rem_req(srp);
Hannes Reinecke97d27b0dd2017-04-07 09:34:17 +02001326 sg_remove_request(sfp, srp);
FUJITA Tomonoric96952e2009-02-04 11:36:27 +09001327 kref_put(&sfp->f_ref, sg_remove_sfp);
1328}
1329
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001330/*
1331 * This function is a "bottom half" handler that is called by the mid
1332 * level when a command is completed (or has failed).
1333 */
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001334static void
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001335sg_rq_end_io(struct request *rq, blk_status_t status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336{
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001337 struct sg_request *srp = rq->end_io_data;
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001338 struct scsi_request *req = scsi_req(rq);
Tony Battersbyc6517b792009-01-21 14:45:50 -05001339 Sg_device *sdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 Sg_fd *sfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 unsigned long iflags;
cb59e842005-04-02 13:51:23 -06001342 unsigned int ms;
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001343 char *sense;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001344 int result, resid, done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
Tony Battersbyc6517b792009-01-21 14:45:50 -05001346 if (WARN_ON(srp->done != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 return;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001348
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 sfp = srp->parentfp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001350 if (WARN_ON(sfp == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 return;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001352
1353 sdp = sfp->parentdp;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001354 if (unlikely(atomic_read(&sdp->detaching)))
1355 pr_info("%s: device detaching\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001357 sense = req->sense;
Christoph Hellwig17d53632017-04-20 16:03:01 +02001358 result = req->result;
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001359 resid = req->resid_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001361 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sdp,
1362 "sg_cmd_done: pack_id=%d, res=0x%x\n",
1363 srp->header.pack_id, result));
Mike Christied6b10342005-11-08 04:06:41 -06001364 srp->header.resid = resid;
cb59e842005-04-02 13:51:23 -06001365 ms = jiffies_to_msecs(jiffies);
1366 srp->header.duration = (ms > srp->header.duration) ?
1367 (ms - srp->header.duration) : 0;
Mike Christied6b10342005-11-08 04:06:41 -06001368 if (0 != result) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 struct scsi_sense_hdr sshdr;
1370
Mike Christied6b10342005-11-08 04:06:41 -06001371 srp->header.status = 0xff & result;
1372 srp->header.masked_status = status_byte(result);
1373 srp->header.msg_status = msg_byte(result);
1374 srp->header.host_status = host_byte(result);
1375 srp->header.driver_status = driver_byte(result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 if ((sdp->sgdebug > 0) &&
1377 ((CHECK_CONDITION == srp->header.masked_status) ||
1378 (COMMAND_TERMINATED == srp->header.masked_status)))
Hannes Reinecked811b842014-10-24 14:26:45 +02001379 __scsi_print_sense(sdp->device, __func__, sense,
Mike Christied6b10342005-11-08 04:06:41 -06001380 SCSI_SENSE_BUFFERSIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
1382 /* Following if statement is a patch supplied by Eric Youngdale */
Mike Christied6b10342005-11-08 04:06:41 -06001383 if (driver_byte(result) != 0
1384 && scsi_normalize_sense(sense, SCSI_SENSE_BUFFERSIZE, &sshdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 && !scsi_sense_is_deferred(&sshdr)
1386 && sshdr.sense_key == UNIT_ATTENTION
1387 && sdp->device->removable) {
1388 /* Detected possible disc change. Set the bit - this */
1389 /* may be used if there are filesystems using this device */
1390 sdp->device->changed = 1;
1391 }
1392 }
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001393
1394 if (req->sense_len)
1395 memcpy(srp->sense_b, req->sense, SCSI_SENSE_BUFFERSIZE);
1396
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 /* Rely on write phase to clean out srp status values, so no "else" */
1398
Tony Battersby75686152015-02-13 12:09:44 -05001399 /*
1400 * Free the request as soon as it is complete so that its resources
1401 * can be reused without waiting for userspace to read() the
1402 * result. But keep the associated bio (if any) around until
1403 * blk_rq_unmap_user() can be called from user context.
1404 */
1405 srp->rq = NULL;
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001406 scsi_req_free_cmd(scsi_req(rq));
Jens Axboe92bc5a22018-10-24 13:52:28 -06001407 blk_put_request(rq);
Tony Battersby75686152015-02-13 12:09:44 -05001408
Tony Battersbyc6517b792009-01-21 14:45:50 -05001409 write_lock_irqsave(&sfp->rq_list_lock, iflags);
1410 if (unlikely(srp->orphan)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 if (sfp->keep_orphan)
1412 srp->sg_io_owned = 0;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001413 else
1414 done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05001416 srp->done = done;
1417 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1418
1419 if (likely(done)) {
1420 /* Now wake up any sg_read() that is waiting for this
1421 * packet.
1422 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 wake_up_interruptible(&sfp->read_wait);
Tony Battersbyc6517b792009-01-21 14:45:50 -05001424 kill_fasync(&sfp->async_qp, SIGPOLL, POLL_IN);
FUJITA Tomonoric96952e2009-02-04 11:36:27 +09001425 kref_put(&sfp->f_ref, sg_remove_sfp);
FUJITA Tomonori015640e2009-04-03 19:28:06 +09001426 } else {
1427 INIT_WORK(&srp->ew.work, sg_rq_end_io_usercontext);
1428 schedule_work(&srp->ew.work);
1429 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430}
1431
Alexey Dobriyan828c0952009-10-01 15:43:56 -07001432static const struct file_operations sg_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 .owner = THIS_MODULE,
1434 .read = sg_read,
1435 .write = sg_write,
1436 .poll = sg_poll,
Jörn Engel37b9d1e2012-04-12 17:35:05 -04001437 .unlocked_ioctl = sg_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438#ifdef CONFIG_COMPAT
1439 .compat_ioctl = sg_compat_ioctl,
1440#endif
1441 .open = sg_open,
1442 .mmap = sg_mmap,
1443 .release = sg_release,
1444 .fasync = sg_fasync,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001445 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446};
1447
gregkh@suse.ded2538782005-03-23 09:55:22 -08001448static struct class *sg_sysfs_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
1450static int sg_sysfs_valid = 0;
1451
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001452static Sg_device *
1453sg_alloc(struct gendisk *disk, struct scsi_device *scsidp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454{
Mike Christied6b10342005-11-08 04:06:41 -06001455 struct request_queue *q = scsidp->request_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 Sg_device *sdp;
1457 unsigned long iflags;
James Bottomley7c07d612007-08-05 13:36:11 -05001458 int error;
1459 u32 k;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
Jes Sorensen24669f752006-01-16 10:31:18 -05001461 sdp = kzalloc(sizeof(Sg_device), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 if (!sdp) {
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001463 sdev_printk(KERN_WARNING, scsidp, "%s: kmalloc Sg_device "
1464 "failure\n", __func__);
James Bottomley7c07d612007-08-05 13:36:11 -05001465 return ERR_PTR(-ENOMEM);
1466 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05001467
Tejun Heob98c52b2013-02-27 17:04:42 -08001468 idr_preload(GFP_KERNEL);
James Bottomley7c07d612007-08-05 13:36:11 -05001469 write_lock_irqsave(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
Tejun Heob98c52b2013-02-27 17:04:42 -08001471 error = idr_alloc(&sg_index_idr, sdp, 0, SG_MAX_DEVS, GFP_NOWAIT);
1472 if (error < 0) {
1473 if (error == -ENOSPC) {
1474 sdev_printk(KERN_WARNING, scsidp,
1475 "Unable to attach sg device type=%d, minor number exceeds %d\n",
1476 scsidp->type, SG_MAX_DEVS - 1);
1477 error = -ENODEV;
1478 } else {
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001479 sdev_printk(KERN_WARNING, scsidp, "%s: idr "
1480 "allocation Sg_device failure: %d\n",
1481 __func__, error);
Tejun Heob98c52b2013-02-27 17:04:42 -08001482 }
1483 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 }
Tejun Heob98c52b2013-02-27 17:04:42 -08001485 k = error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001487 SCSI_LOG_TIMEOUT(3, sdev_printk(KERN_INFO, scsidp,
1488 "sg_alloc: dev=%d \n", k));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 sprintf(disk->disk_name, "sg%d", k);
1490 disk->first_minor = k;
1491 sdp->disk = disk;
1492 sdp->device = scsidp;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001493 mutex_init(&sdp->open_rel_lock);
FUJITA Tomonori3442f802009-02-16 13:26:53 +09001494 INIT_LIST_HEAD(&sdp->sfds);
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001495 init_waitqueue_head(&sdp->open_wait);
1496 atomic_set(&sdp->detaching, 0);
1497 rwlock_init(&sdp->sfd_lock);
Martin K. Petersen8a783622010-02-26 00:20:39 -05001498 sdp->sg_tablesize = queue_max_segments(q);
James Bottomley7c07d612007-08-05 13:36:11 -05001499 sdp->index = k;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001500 kref_init(&sdp->d_ref);
James Bottomley7c07d612007-08-05 13:36:11 -05001501 error = 0;
Tejun Heob98c52b2013-02-27 17:04:42 -08001502
1503out_unlock:
1504 write_unlock_irqrestore(&sg_index_lock, iflags);
1505 idr_preload_end();
1506
James Bottomley7c07d612007-08-05 13:36:11 -05001507 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 kfree(sdp);
James Bottomley7c07d612007-08-05 13:36:11 -05001509 return ERR_PTR(error);
1510 }
1511 return sdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512}
1513
1514static int
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001515sg_add_device(struct device *cl_dev, struct class_interface *cl_intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516{
Tony Jonesee959b02008-02-22 00:13:36 +01001517 struct scsi_device *scsidp = to_scsi_device(cl_dev->parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 struct gendisk *disk;
1519 Sg_device *sdp = NULL;
1520 struct cdev * cdev = NULL;
James Bottomley7c07d612007-08-05 13:36:11 -05001521 int error;
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001522 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
1524 disk = alloc_disk(1);
1525 if (!disk) {
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001526 pr_warn("%s: alloc_disk failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 return -ENOMEM;
1528 }
1529 disk->major = SCSI_GENERIC_MAJOR;
1530
1531 error = -ENOMEM;
1532 cdev = cdev_alloc();
1533 if (!cdev) {
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001534 pr_warn("%s: cdev_alloc failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 goto out;
1536 }
1537 cdev->owner = THIS_MODULE;
1538 cdev->ops = &sg_fops;
1539
James Bottomley7c07d612007-08-05 13:36:11 -05001540 sdp = sg_alloc(disk, scsidp);
1541 if (IS_ERR(sdp)) {
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001542 pr_warn("%s: sg_alloc failed\n", __func__);
James Bottomley7c07d612007-08-05 13:36:11 -05001543 error = PTR_ERR(sdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 goto out;
1545 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
James Bottomley7c07d612007-08-05 13:36:11 -05001547 error = cdev_add(cdev, MKDEV(SCSI_GENERIC_MAJOR, sdp->index), 1);
Greg KH5e3c34c2006-01-18 16:17:46 -08001548 if (error)
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001549 goto cdev_add_err;
Greg KH5e3c34c2006-01-18 16:17:46 -08001550
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 sdp->cdev = cdev;
1552 if (sg_sysfs_valid) {
Tony Jonesee959b02008-02-22 00:13:36 +01001553 struct device *sg_class_member;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554
Greg Kroah-Hartmand73a1a672008-07-21 20:03:34 -07001555 sg_class_member = device_create(sg_sysfs_class, cl_dev->parent,
1556 MKDEV(SCSI_GENERIC_MAJOR,
1557 sdp->index),
1558 sdp, "%s", disk->disk_name);
FUJITA Tomonorid07e0362008-01-15 13:18:00 +09001559 if (IS_ERR(sg_class_member)) {
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001560 pr_err("%s: device_create failed\n", __func__);
FUJITA Tomonorid07e0362008-01-15 13:18:00 +09001561 error = PTR_ERR(sg_class_member);
1562 goto cdev_add_err;
1563 }
FUJITA Tomonorid07e0362008-01-15 13:18:00 +09001564 error = sysfs_create_link(&scsidp->sdev_gendev.kobj,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 &sg_class_member->kobj, "generic");
1566 if (error)
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001567 pr_err("%s: unable to make symlink 'generic' back "
1568 "to sg%d\n", __func__, sdp->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 } else
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001570 pr_warn("%s: sg_sys Invalid\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001572 sdev_printk(KERN_NOTICE, scsidp, "Attached scsi generic sg%d "
1573 "type %d\n", sdp->index, scsidp->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
Tony Jonesee959b02008-02-22 00:13:36 +01001575 dev_set_drvdata(cl_dev, sdp);
FUJITA Tomonoria24484f2008-01-15 13:17:47 +09001576
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 return 0;
1578
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001579cdev_add_err:
James Bottomley7c07d612007-08-05 13:36:11 -05001580 write_lock_irqsave(&sg_index_lock, iflags);
1581 idr_remove(&sg_index_idr, sdp->index);
1582 write_unlock_irqrestore(&sg_index_lock, iflags);
1583 kfree(sdp);
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001584
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585out:
1586 put_disk(disk);
1587 if (cdev)
1588 cdev_del(cdev);
1589 return error;
1590}
1591
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001592static void
1593sg_device_destroy(struct kref *kref)
Tony Battersbyc6517b792009-01-21 14:45:50 -05001594{
1595 struct sg_device *sdp = container_of(kref, struct sg_device, d_ref);
1596 unsigned long flags;
1597
1598 /* CAUTION! Note that the device can still be found via idr_find()
1599 * even though the refcount is 0. Therefore, do idr_remove() BEFORE
1600 * any other cleanup.
1601 */
1602
1603 write_lock_irqsave(&sg_index_lock, flags);
1604 idr_remove(&sg_index_idr, sdp->index);
1605 write_unlock_irqrestore(&sg_index_lock, flags);
1606
1607 SCSI_LOG_TIMEOUT(3,
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001608 sg_printk(KERN_INFO, sdp, "sg_device_destroy\n"));
Tony Battersbyc6517b792009-01-21 14:45:50 -05001609
1610 put_disk(sdp->disk);
1611 kfree(sdp);
1612}
1613
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001614static void
1615sg_remove_device(struct device *cl_dev, struct class_interface *cl_intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616{
Tony Jonesee959b02008-02-22 00:13:36 +01001617 struct scsi_device *scsidp = to_scsi_device(cl_dev->parent);
1618 Sg_device *sdp = dev_get_drvdata(cl_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 unsigned long iflags;
1620 Sg_fd *sfp;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001621 int val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001623 if (!sdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 return;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001625 /* want sdp->detaching non-zero as soon as possible */
1626 val = atomic_inc_return(&sdp->detaching);
1627 if (val > 1)
1628 return; /* only want to do following once per device */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001630 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
1631 "%s\n", __func__));
Tony Battersbyc6517b792009-01-21 14:45:50 -05001632
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001633 read_lock_irqsave(&sdp->sfd_lock, iflags);
FUJITA Tomonori3442f802009-02-16 13:26:53 +09001634 list_for_each_entry(sfp, &sdp->sfds, sfd_siblings) {
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001635 wake_up_interruptible_all(&sfp->read_wait);
Tony Battersbyc6517b792009-01-21 14:45:50 -05001636 kill_fasync(&sfp->async_qp, SIGPOLL, POLL_HUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 }
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001638 wake_up_interruptible_all(&sdp->open_wait);
1639 read_unlock_irqrestore(&sdp->sfd_lock, iflags);
James Bottomley7c07d612007-08-05 13:36:11 -05001640
1641 sysfs_remove_link(&scsidp->sdev_gendev.kobj, "generic");
Tony Jonesee959b02008-02-22 00:13:36 +01001642 device_destroy(sg_sysfs_class, MKDEV(SCSI_GENERIC_MAJOR, sdp->index));
James Bottomley7c07d612007-08-05 13:36:11 -05001643 cdev_del(sdp->cdev);
1644 sdp->cdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001646 kref_put(&sdp->d_ref, sg_device_destroy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647}
1648
Douglas Gilbert6460e752006-09-20 18:20:49 -04001649module_param_named(scatter_elem_sz, scatter_elem_sz, int, S_IRUGO | S_IWUSR);
1650module_param_named(def_reserved_size, def_reserved_size, int,
1651 S_IRUGO | S_IWUSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652module_param_named(allow_dio, sg_allow_dio, int, S_IRUGO | S_IWUSR);
1653
1654MODULE_AUTHOR("Douglas Gilbert");
1655MODULE_DESCRIPTION("SCSI generic (sg) driver");
1656MODULE_LICENSE("GPL");
1657MODULE_VERSION(SG_VERSION_STR);
Rene Hermanf018fa52006-03-08 00:14:20 -08001658MODULE_ALIAS_CHARDEV_MAJOR(SCSI_GENERIC_MAJOR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
Douglas Gilbert6460e752006-09-20 18:20:49 -04001660MODULE_PARM_DESC(scatter_elem_sz, "scatter gather element "
1661 "size (default: max(SG_SCATTER_SZ, PAGE_SIZE))");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662MODULE_PARM_DESC(def_reserved_size, "size of buffer reserved for each fd");
1663MODULE_PARM_DESC(allow_dio, "allow direct I/O (default: 0 (disallow))");
1664
1665static int __init
1666init_sg(void)
1667{
1668 int rc;
1669
Douglas Gilbert6460e752006-09-20 18:20:49 -04001670 if (scatter_elem_sz < PAGE_SIZE) {
1671 scatter_elem_sz = PAGE_SIZE;
1672 scatter_elem_sz_prev = scatter_elem_sz;
1673 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 if (def_reserved_size >= 0)
1675 sg_big_buff = def_reserved_size;
Douglas Gilbert6460e752006-09-20 18:20:49 -04001676 else
1677 def_reserved_size = sg_big_buff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678
1679 rc = register_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0),
1680 SG_MAX_DEVS, "sg");
1681 if (rc)
1682 return rc;
gregkh@suse.ded2538782005-03-23 09:55:22 -08001683 sg_sysfs_class = class_create(THIS_MODULE, "scsi_generic");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 if ( IS_ERR(sg_sysfs_class) ) {
1685 rc = PTR_ERR(sg_sysfs_class);
1686 goto err_out;
1687 }
1688 sg_sysfs_valid = 1;
1689 rc = scsi_register_interface(&sg_interface);
1690 if (0 == rc) {
1691#ifdef CONFIG_SCSI_PROC_FS
1692 sg_proc_init();
1693#endif /* CONFIG_SCSI_PROC_FS */
1694 return 0;
1695 }
gregkh@suse.ded2538782005-03-23 09:55:22 -08001696 class_destroy(sg_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697err_out:
1698 unregister_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0), SG_MAX_DEVS);
1699 return rc;
1700}
1701
1702static void __exit
1703exit_sg(void)
1704{
1705#ifdef CONFIG_SCSI_PROC_FS
Christoph Hellwigb8b14832018-04-11 11:26:22 +02001706 remove_proc_subtree("scsi/sg", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707#endif /* CONFIG_SCSI_PROC_FS */
1708 scsi_unregister_interface(&sg_interface);
gregkh@suse.ded2538782005-03-23 09:55:22 -08001709 class_destroy(sg_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 sg_sysfs_valid = 0;
1711 unregister_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0),
1712 SG_MAX_DEVS);
James Bottomley7c07d612007-08-05 13:36:11 -05001713 idr_destroy(&sg_index_idr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714}
1715
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001716static int
1717sg_start_req(Sg_request *srp, unsigned char *cmd)
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001718{
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001719 int res;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001720 struct request *rq;
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001721 struct scsi_request *req;
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001722 Sg_fd *sfp = srp->parentfp;
1723 sg_io_hdr_t *hp = &srp->header;
1724 int dxfer_len = (int) hp->dxfer_len;
1725 int dxfer_dir = hp->dxfer_direction;
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001726 unsigned int iov_count = hp->iovec_count;
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001727 Sg_scatter_hold *req_schp = &srp->data;
1728 Sg_scatter_hold *rsv_schp = &sfp->reserve;
1729 struct request_queue *q = sfp->parentdp->device->request_queue;
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001730 struct rq_map_data *md, map_data;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001731 int rw = hp->dxfer_direction == SG_DXFER_TO_DEV ? WRITE : READ;
Douglas Gilbert65c26a02014-06-03 13:18:18 -04001732 unsigned char *long_cmdp = NULL;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001733
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001734 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
1735 "sg_start_req: dxfer_len=%d\n",
1736 dxfer_len));
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001737
Douglas Gilbert65c26a02014-06-03 13:18:18 -04001738 if (hp->cmd_len > BLK_MAX_CDB) {
1739 long_cmdp = kzalloc(hp->cmd_len, GFP_KERNEL);
1740 if (!long_cmdp)
1741 return -ENOMEM;
1742 }
1743
Tony Battersby77728552015-02-13 12:10:58 -05001744 /*
1745 * NOTE
1746 *
1747 * With scsi-mq enabled, there are a fixed number of preallocated
1748 * requests equal in number to shost->can_queue. If all of the
Tony Battersby8e4a4182018-07-12 18:09:21 -04001749 * preallocated requests are already in use, then blk_get_request()
1750 * will sleep until an active command completes, freeing up a request.
1751 * Although waiting in an asynchronous interface is less than ideal, we
1752 * do not want to use BLK_MQ_REQ_NOWAIT here because userspace might
1753 * not expect an EWOULDBLOCK from this condition.
Tony Battersby77728552015-02-13 12:10:58 -05001754 */
Christoph Hellwigaebf5262017-01-31 16:57:31 +01001755 rq = blk_get_request(q, hp->dxfer_direction == SG_DXFER_TO_DEV ?
Christoph Hellwigff005a02018-05-09 09:54:05 +02001756 REQ_OP_SCSI_OUT : REQ_OP_SCSI_IN, 0);
Joe Lawrencea492f072014-08-28 08:15:21 -06001757 if (IS_ERR(rq)) {
Douglas Gilbert65c26a02014-06-03 13:18:18 -04001758 kfree(long_cmdp);
Joe Lawrencea492f072014-08-28 08:15:21 -06001759 return PTR_ERR(rq);
Douglas Gilbert65c26a02014-06-03 13:18:18 -04001760 }
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001761 req = scsi_req(rq);
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001762
Douglas Gilbert65c26a02014-06-03 13:18:18 -04001763 if (hp->cmd_len > BLK_MAX_CDB)
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001764 req->cmd = long_cmdp;
1765 memcpy(req->cmd, cmd, hp->cmd_len);
1766 req->cmd_len = hp->cmd_len;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001767
1768 srp->rq = rq;
1769 rq->end_io_data = srp;
Christoph Hellwig64c7f1d2017-04-05 19:18:12 +02001770 req->retries = SG_DEFAULT_RETRIES;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001771
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 if ((dxfer_len <= 0) || (dxfer_dir == SG_DXFER_NONE))
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001773 return 0;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001774
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001775 if (sg_allow_dio && hp->flags & SG_FLAG_DIRECT_IO &&
1776 dxfer_dir != SG_DXFER_UNKNOWN && !iov_count &&
1777 !sfp->parentdp->device->host->unchecked_isa_dma &&
Namhyung Kim2610a252010-09-16 12:55:57 +09001778 blk_rq_aligned(q, (unsigned long)hp->dxferp, dxfer_len))
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001779 md = NULL;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001780 else
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001781 md = &map_data;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001782
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001783 if (md) {
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001784 mutex_lock(&sfp->f_mutex);
1785 if (dxfer_len <= rsv_schp->bufflen &&
1786 !sfp->res_in_use) {
1787 sfp->res_in_use = 1;
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001788 sg_link_reserve(sfp, srp, dxfer_len);
Todd Poynor8d26f492017-08-15 21:48:43 -07001789 } else if (hp->flags & SG_FLAG_MMAP_IO) {
1790 res = -EBUSY; /* sfp->res_in_use == 1 */
1791 if (dxfer_len > rsv_schp->bufflen)
1792 res = -ENOMEM;
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001793 mutex_unlock(&sfp->f_mutex);
Todd Poynor8d26f492017-08-15 21:48:43 -07001794 return res;
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001795 } else {
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001796 res = sg_build_indirect(req_schp, sfp, dxfer_len);
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001797 if (res) {
1798 mutex_unlock(&sfp->f_mutex);
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001799 return res;
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001800 }
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001801 }
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001802 mutex_unlock(&sfp->f_mutex);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001803
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001804 md->pages = req_schp->pages;
1805 md->page_order = req_schp->page_order;
1806 md->nr_entries = req_schp->k_use_sg;
FUJITA Tomonori56c451f2008-12-18 14:49:37 +09001807 md->offset = 0;
FUJITA Tomonori97ae77a2008-12-18 14:49:38 +09001808 md->null_mapped = hp->dxferp ? 0 : 1;
FUJITA Tomonoriecb554a2009-07-09 14:46:53 +02001809 if (dxfer_dir == SG_DXFER_TO_FROM_DEV)
1810 md->from_user = 1;
1811 else
1812 md->from_user = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001814
FUJITA Tomonori0fdf96b2009-04-03 09:12:20 +09001815 if (iov_count) {
Al Virofdc81f42015-03-21 20:25:30 -04001816 struct iovec *iov = NULL;
Kent Overstreet26e49cf2015-01-18 16:16:31 +01001817 struct iov_iter i;
FUJITA Tomonori0fdf96b2009-04-03 09:12:20 +09001818
Arnd Bergmann98aaaec2019-03-14 17:45:18 +01001819#ifdef CONFIG_COMPAT
1820 if (in_compat_syscall())
1821 res = compat_import_iovec(rw, hp->dxferp, iov_count,
1822 0, &iov, &i);
1823 else
1824#endif
1825 res = import_iovec(rw, hp->dxferp, iov_count,
1826 0, &iov, &i);
Al Virofdc81f42015-03-21 20:25:30 -04001827 if (res < 0)
1828 return res;
FUJITA Tomonori0fdf96b2009-04-03 09:12:20 +09001829
Al Virofdc81f42015-03-21 20:25:30 -04001830 iov_iter_truncate(&i, hp->dxfer_len);
Al Viro137d01d2017-02-19 07:15:27 +00001831 if (!iov_iter_count(&i)) {
1832 kfree(iov);
1833 return -EINVAL;
1834 }
FUJITA Tomonori0fdf96b2009-04-03 09:12:20 +09001835
Kent Overstreet26e49cf2015-01-18 16:16:31 +01001836 res = blk_rq_map_user_iov(q, rq, md, &i, GFP_ATOMIC);
FUJITA Tomonori0fdf96b2009-04-03 09:12:20 +09001837 kfree(iov);
1838 } else
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001839 res = blk_rq_map_user(q, rq, md, hp->dxferp,
1840 hp->dxfer_len, GFP_ATOMIC);
1841
1842 if (!res) {
1843 srp->bio = rq->bio;
1844
1845 if (!md) {
1846 req_schp->dio_in_use = 1;
1847 hp->info |= SG_INFO_DIRECT_IO;
1848 }
1849 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001850 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851}
1852
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001853static int
1854sg_finish_rem_req(Sg_request *srp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855{
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +09001856 int ret = 0;
1857
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 Sg_fd *sfp = srp->parentfp;
1859 Sg_scatter_hold *req_schp = &srp->data;
1860
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001861 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
1862 "sg_finish_rem_req: res_used=%d\n",
1863 (int) srp->res_used));
Tony Battersby75686152015-02-13 12:09:44 -05001864 if (srp->bio)
1865 ret = blk_rq_unmap_user(srp->bio);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001866
Tony Battersby75686152015-02-13 12:09:44 -05001867 if (srp->rq) {
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001868 scsi_req_free_cmd(scsi_req(srp->rq));
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001869 blk_put_request(srp->rq);
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001870 }
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001871
Christof Schmitte27168f2009-09-17 09:10:14 +02001872 if (srp->res_used)
1873 sg_unlink_reserve(sfp, srp);
1874 else
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001875 sg_remove_scat(sfp, req_schp);
Christof Schmitte27168f2009-09-17 09:10:14 +02001876
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +09001877 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878}
1879
1880static int
1881sg_build_sgat(Sg_scatter_hold * schp, const Sg_fd * sfp, int tablesize)
1882{
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001883 int sg_bufflen = tablesize * sizeof(struct page *);
Al Viro2d20eaf2006-02-01 06:31:40 -05001884 gfp_t gfp_flags = GFP_ATOMIC | __GFP_NOWARN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001886 schp->pages = kzalloc(sg_bufflen, gfp_flags);
1887 if (!schp->pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 schp->sglist_len = sg_bufflen;
Mike Christied6b10342005-11-08 04:06:41 -06001890 return tablesize; /* number of scat_gath elements allocated */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891}
1892
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893static int
1894sg_build_indirect(Sg_scatter_hold * schp, Sg_fd * sfp, int buff_size)
1895{
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001896 int ret_sz = 0, i, k, rem_sz, num, mx_sc_elems;
Mike Christied6b10342005-11-08 04:06:41 -06001897 int sg_tablesize = sfp->parentdp->sg_tablesize;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001898 int blk_size = buff_size, order;
Jeff Moyer5b9d3972018-06-18 09:57:12 -04001899 gfp_t gfp_mask = GFP_ATOMIC | __GFP_COMP | __GFP_NOWARN | __GFP_ZERO;
Hannes Reinecke745dfa02017-04-07 09:34:12 +02001900 struct sg_device *sdp = sfp->parentdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901
Eric Sesterhennfb119932007-05-23 14:41:36 -07001902 if (blk_size < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 return -EFAULT;
1904 if (0 == blk_size)
1905 ++blk_size; /* don't know why */
FUJITA Tomonorib2ed6c62009-02-12 02:42:57 +09001906 /* round request up to next highest SG_SECTOR_SZ byte boundary */
1907 blk_size = ALIGN(blk_size, SG_SECTOR_SZ);
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001908 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
1909 "sg_build_indirect: buff_size=%d, blk_size=%d\n",
1910 buff_size, blk_size));
Mike Christied6b10342005-11-08 04:06:41 -06001911
1912 /* N.B. ret_sz carried into this block ... */
1913 mx_sc_elems = sg_build_sgat(schp, sfp, sg_tablesize);
1914 if (mx_sc_elems < 0)
1915 return mx_sc_elems; /* most likely -ENOMEM */
1916
Douglas Gilbert6460e752006-09-20 18:20:49 -04001917 num = scatter_elem_sz;
1918 if (unlikely(num != scatter_elem_sz_prev)) {
1919 if (num < PAGE_SIZE) {
1920 scatter_elem_sz = PAGE_SIZE;
1921 scatter_elem_sz_prev = PAGE_SIZE;
1922 } else
1923 scatter_elem_sz_prev = num;
1924 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001925
Hannes Reinecke745dfa02017-04-07 09:34:12 +02001926 if (sdp->device->host->unchecked_isa_dma)
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001927 gfp_mask |= GFP_DMA;
1928
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001929 order = get_order(num);
1930retry:
1931 ret_sz = 1 << (PAGE_SHIFT + order);
1932
1933 for (k = 0, rem_sz = blk_size; rem_sz > 0 && k < mx_sc_elems;
1934 k++, rem_sz -= ret_sz) {
1935
Douglas Gilbert6460e752006-09-20 18:20:49 -04001936 num = (rem_sz > scatter_elem_sz_prev) ?
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001937 scatter_elem_sz_prev : rem_sz;
1938
Jeff Moyer5b9d3972018-06-18 09:57:12 -04001939 schp->pages[k] = alloc_pages(gfp_mask, order);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001940 if (!schp->pages[k])
1941 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942
Douglas Gilbert6460e752006-09-20 18:20:49 -04001943 if (num == scatter_elem_sz_prev) {
1944 if (unlikely(ret_sz > scatter_elem_sz_prev)) {
1945 scatter_elem_sz = ret_sz;
1946 scatter_elem_sz_prev = ret_sz;
1947 }
1948 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001950 SCSI_LOG_TIMEOUT(5, sg_printk(KERN_INFO, sfp->parentdp,
1951 "sg_build_indirect: k=%d, num=%d, ret_sz=%d\n",
1952 k, num, ret_sz));
Mike Christied6b10342005-11-08 04:06:41 -06001953 } /* end of for loop */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001955 schp->page_order = order;
Mike Christied6b10342005-11-08 04:06:41 -06001956 schp->k_use_sg = k;
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001957 SCSI_LOG_TIMEOUT(5, sg_printk(KERN_INFO, sfp->parentdp,
1958 "sg_build_indirect: k_use_sg=%d, rem_sz=%d\n",
1959 k, rem_sz));
Mike Christied6b10342005-11-08 04:06:41 -06001960
1961 schp->bufflen = blk_size;
1962 if (rem_sz > 0) /* must have failed */
1963 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 return 0;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001965out:
1966 for (i = 0; i < k; i++)
Michal Schmidte71044e2009-09-03 14:27:08 +02001967 __free_pages(schp->pages[i], order);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001968
1969 if (--order >= 0)
1970 goto retry;
1971
1972 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973}
1974
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975static void
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001976sg_remove_scat(Sg_fd * sfp, Sg_scatter_hold * schp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977{
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001978 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
1979 "sg_remove_scat: k_use_sg=%d\n", schp->k_use_sg));
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001980 if (schp->pages && schp->sglist_len > 0) {
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001981 if (!schp->dio_in_use) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 int k;
1983
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001984 for (k = 0; k < schp->k_use_sg && schp->pages[k]; k++) {
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001985 SCSI_LOG_TIMEOUT(5,
1986 sg_printk(KERN_INFO, sfp->parentdp,
1987 "sg_remove_scat: k=%d, pg=0x%p\n",
1988 k, schp->pages[k]));
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001989 __free_pages(schp->pages[k], schp->page_order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 }
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001991
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001992 kfree(schp->pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 }
Mike Christied6b10342005-11-08 04:06:41 -06001994 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 memset(schp, 0, sizeof (*schp));
1996}
1997
1998static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999sg_read_oxfer(Sg_request * srp, char __user *outp, int num_read_xfer)
2000{
2001 Sg_scatter_hold *schp = &srp->data;
Mike Christied6b10342005-11-08 04:06:41 -06002002 int k, num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002004 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, srp->parentfp->parentdp,
2005 "sg_read_oxfer: num_read_xfer=%d\n",
2006 num_read_xfer));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 if ((!outp) || (num_read_xfer <= 0))
2008 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02002010 num = 1 << (PAGE_SHIFT + schp->page_order);
2011 for (k = 0; k < schp->k_use_sg && schp->pages[k]; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06002012 if (num > num_read_xfer) {
Al Viroc8c12792019-10-17 20:39:23 +01002013 if (copy_to_user(outp, page_address(schp->pages[k]),
Mike Christied6b10342005-11-08 04:06:41 -06002014 num_read_xfer))
2015 return -EFAULT;
2016 break;
2017 } else {
Al Viroc8c12792019-10-17 20:39:23 +01002018 if (copy_to_user(outp, page_address(schp->pages[k]),
Mike Christied6b10342005-11-08 04:06:41 -06002019 num))
2020 return -EFAULT;
2021 num_read_xfer -= num;
2022 if (num_read_xfer <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 break;
Mike Christied6b10342005-11-08 04:06:41 -06002024 outp += num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 }
Mike Christied6b10342005-11-08 04:06:41 -06002027
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 return 0;
2029}
2030
2031static void
2032sg_build_reserve(Sg_fd * sfp, int req_size)
2033{
2034 Sg_scatter_hold *schp = &sfp->reserve;
2035
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002036 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
2037 "sg_build_reserve: req_size=%d\n", req_size));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 do {
2039 if (req_size < PAGE_SIZE)
2040 req_size = PAGE_SIZE;
2041 if (0 == sg_build_indirect(schp, sfp, req_size))
2042 return;
2043 else
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002044 sg_remove_scat(sfp, schp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 req_size >>= 1; /* divide by 2 */
2046 } while (req_size > (PAGE_SIZE / 2));
2047}
2048
2049static void
2050sg_link_reserve(Sg_fd * sfp, Sg_request * srp, int size)
2051{
2052 Sg_scatter_hold *req_schp = &srp->data;
2053 Sg_scatter_hold *rsv_schp = &sfp->reserve;
Mike Christied6b10342005-11-08 04:06:41 -06002054 int k, num, rem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055
2056 srp->res_used = 1;
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002057 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
2058 "sg_link_reserve: size=%d\n", size));
Brian Kingeca7be52006-02-14 12:42:24 -06002059 rem = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02002061 num = 1 << (PAGE_SHIFT + rsv_schp->page_order);
2062 for (k = 0; k < rsv_schp->k_use_sg; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06002063 if (rem <= num) {
Mike Christied6b10342005-11-08 04:06:41 -06002064 req_schp->k_use_sg = k + 1;
2065 req_schp->sglist_len = rsv_schp->sglist_len;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02002066 req_schp->pages = rsv_schp->pages;
Mike Christied6b10342005-11-08 04:06:41 -06002067
2068 req_schp->bufflen = size;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02002069 req_schp->page_order = rsv_schp->page_order;
Mike Christied6b10342005-11-08 04:06:41 -06002070 break;
2071 } else
2072 rem -= num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 }
Mike Christied6b10342005-11-08 04:06:41 -06002074
2075 if (k >= rsv_schp->k_use_sg)
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002076 SCSI_LOG_TIMEOUT(1, sg_printk(KERN_INFO, sfp->parentdp,
2077 "sg_link_reserve: BAD size\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078}
2079
2080static void
2081sg_unlink_reserve(Sg_fd * sfp, Sg_request * srp)
2082{
2083 Sg_scatter_hold *req_schp = &srp->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002085 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, srp->parentfp->parentdp,
2086 "sg_unlink_reserve: req->k_use_sg=%d\n",
2087 (int) req_schp->k_use_sg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 req_schp->k_use_sg = 0;
2089 req_schp->bufflen = 0;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02002090 req_schp->pages = NULL;
2091 req_schp->page_order = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 req_schp->sglist_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 srp->res_used = 0;
Hannes Reineckee791ce22017-04-24 10:26:36 +02002094 /* Called without mutex lock to avoid deadlock */
2095 sfp->res_in_use = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096}
2097
2098static Sg_request *
2099sg_get_rq_mark(Sg_fd * sfp, int pack_id)
2100{
2101 Sg_request *resp;
2102 unsigned long iflags;
2103
2104 write_lock_irqsave(&sfp->rq_list_lock, iflags);
Hannes Reinecke109bade2017-04-07 09:34:16 +02002105 list_for_each_entry(resp, &sfp->rq_list, entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 /* look for requests that are ready + not SG_IO owned */
2107 if ((1 == resp->done) && (!resp->sg_io_owned) &&
2108 ((-1 == pack_id) || (resp->header.pack_id == pack_id))) {
2109 resp->done = 2; /* guard against other readers */
Johannes Thumshirn48ae8482017-05-10 09:53:40 +02002110 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
2111 return resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 }
2113 }
2114 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
Johannes Thumshirn48ae8482017-05-10 09:53:40 +02002115 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116}
2117
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118/* always adds to end of list */
2119static Sg_request *
2120sg_add_request(Sg_fd * sfp)
2121{
2122 int k;
2123 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 Sg_request *rp = sfp->req_arr;
2125
2126 write_lock_irqsave(&sfp->rq_list_lock, iflags);
Hannes Reinecke109bade2017-04-07 09:34:16 +02002127 if (!list_empty(&sfp->rq_list)) {
2128 if (!sfp->cmd_q)
2129 goto out_unlock;
2130
2131 for (k = 0; k < SG_MAX_QUEUE; ++k, ++rp) {
2132 if (!rp->parentfp)
2133 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 }
Hannes Reinecke109bade2017-04-07 09:34:16 +02002135 if (k >= SG_MAX_QUEUE)
2136 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 }
Hannes Reinecke109bade2017-04-07 09:34:16 +02002138 memset(rp, 0, sizeof (Sg_request));
2139 rp->parentfp = sfp;
2140 rp->header.duration = jiffies_to_msecs(jiffies);
2141 list_add_tail(&rp->entry, &sfp->rq_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
Hannes Reinecke109bade2017-04-07 09:34:16 +02002143 return rp;
2144out_unlock:
2145 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
2146 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147}
2148
2149/* Return of 1 for found; 0 for not found */
2150static int
2151sg_remove_request(Sg_fd * sfp, Sg_request * srp)
2152{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 unsigned long iflags;
2154 int res = 0;
2155
Hannes Reinecke109bade2017-04-07 09:34:16 +02002156 if (!sfp || !srp || list_empty(&sfp->rq_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 return res;
2158 write_lock_irqsave(&sfp->rq_list_lock, iflags);
Hannes Reinecke109bade2017-04-07 09:34:16 +02002159 if (!list_empty(&srp->entry)) {
2160 list_del(&srp->entry);
2161 srp->parentfp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 res = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 }
2164 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
2165 return res;
2166}
2167
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168static Sg_fd *
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002169sg_add_sfp(Sg_device * sdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170{
2171 Sg_fd *sfp;
2172 unsigned long iflags;
Alan Stern44ec9542007-02-20 11:01:57 -05002173 int bufflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174
Mike Christied6b10342005-11-08 04:06:41 -06002175 sfp = kzalloc(sizeof(*sfp), GFP_ATOMIC | __GFP_NOWARN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 if (!sfp)
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002177 return ERR_PTR(-ENOMEM);
Mike Christied6b10342005-11-08 04:06:41 -06002178
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 init_waitqueue_head(&sfp->read_wait);
2180 rwlock_init(&sfp->rq_list_lock);
Hannes Reinecke109bade2017-04-07 09:34:16 +02002181 INIT_LIST_HEAD(&sfp->rq_list);
Tony Battersbyc6517b792009-01-21 14:45:50 -05002182 kref_init(&sfp->f_ref);
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02002183 mutex_init(&sfp->f_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 sfp->timeout = SG_DEFAULT_TIMEOUT;
2185 sfp->timeout_user = SG_DEFAULT_TIMEOUT_USER;
2186 sfp->force_packid = SG_DEF_FORCE_PACK_ID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 sfp->cmd_q = SG_DEF_COMMAND_Q;
2188 sfp->keep_orphan = SG_DEF_KEEP_ORPHAN;
2189 sfp->parentdp = sdp;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002190 write_lock_irqsave(&sdp->sfd_lock, iflags);
2191 if (atomic_read(&sdp->detaching)) {
2192 write_unlock_irqrestore(&sdp->sfd_lock, iflags);
Tony Battersbyc170e5a2018-07-12 16:30:45 -04002193 kfree(sfp);
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002194 return ERR_PTR(-ENODEV);
2195 }
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002196 list_add_tail(&sfp->sfd_siblings, &sdp->sfds);
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002197 write_unlock_irqrestore(&sdp->sfd_lock, iflags);
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002198 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
2199 "sg_add_sfp: sfp=0x%p\n", sfp));
Douglas Gilbert6460e752006-09-20 18:20:49 -04002200 if (unlikely(sg_big_buff != def_reserved_size))
2201 sg_big_buff = def_reserved_size;
2202
Alan Stern44ec9542007-02-20 11:01:57 -05002203 bufflen = min_t(int, sg_big_buff,
Akinobu Mita46f69e62014-06-02 22:56:46 +09002204 max_sectors_bytes(sdp->device->request_queue));
Alan Stern44ec9542007-02-20 11:01:57 -05002205 sg_build_reserve(sfp, bufflen);
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002206 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
2207 "sg_add_sfp: bufflen=%d, k_use_sg=%d\n",
2208 sfp->reserve.bufflen,
2209 sfp->reserve.k_use_sg));
Tony Battersbyc6517b792009-01-21 14:45:50 -05002210
2211 kref_get(&sdp->d_ref);
2212 __module_get(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 return sfp;
2214}
2215
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002216static void
2217sg_remove_sfp_usercontext(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218{
Tony Battersbyc6517b792009-01-21 14:45:50 -05002219 struct sg_fd *sfp = container_of(work, struct sg_fd, ew.work);
2220 struct sg_device *sdp = sfp->parentdp;
Hannes Reinecke109bade2017-04-07 09:34:16 +02002221 Sg_request *srp;
Hannes Reinecke97d27b0dd2017-04-07 09:34:17 +02002222 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223
Tony Battersbyc6517b792009-01-21 14:45:50 -05002224 /* Cleanup any responses which were never read(). */
Hannes Reinecke97d27b0dd2017-04-07 09:34:17 +02002225 write_lock_irqsave(&sfp->rq_list_lock, iflags);
Hannes Reinecke109bade2017-04-07 09:34:16 +02002226 while (!list_empty(&sfp->rq_list)) {
2227 srp = list_first_entry(&sfp->rq_list, Sg_request, entry);
2228 sg_finish_rem_req(srp);
Hannes Reinecke97d27b0dd2017-04-07 09:34:17 +02002229 list_del(&srp->entry);
2230 srp->parentfp = NULL;
Hannes Reinecke109bade2017-04-07 09:34:16 +02002231 }
Hannes Reinecke97d27b0dd2017-04-07 09:34:17 +02002232 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
Tony Battersbyc6517b792009-01-21 14:45:50 -05002233
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 if (sfp->reserve.bufflen > 0) {
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002235 SCSI_LOG_TIMEOUT(6, sg_printk(KERN_INFO, sdp,
2236 "sg_remove_sfp: bufflen=%d, k_use_sg=%d\n",
Tony Battersbyc6517b792009-01-21 14:45:50 -05002237 (int) sfp->reserve.bufflen,
2238 (int) sfp->reserve.k_use_sg));
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002239 sg_remove_scat(sfp, &sfp->reserve);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05002241
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002242 SCSI_LOG_TIMEOUT(6, sg_printk(KERN_INFO, sdp,
2243 "sg_remove_sfp: sfp=0x%p\n", sfp));
Mike Christied6b10342005-11-08 04:06:41 -06002244 kfree(sfp);
Tony Battersbyc6517b792009-01-21 14:45:50 -05002245
2246 scsi_device_put(sdp->device);
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002247 kref_put(&sdp->d_ref, sg_device_destroy);
Tony Battersbyc6517b792009-01-21 14:45:50 -05002248 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249}
2250
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002251static void
2252sg_remove_sfp(struct kref *kref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253{
Tony Battersbyc6517b792009-01-21 14:45:50 -05002254 struct sg_fd *sfp = container_of(kref, struct sg_fd, f_ref);
James Bottomley065b4a22013-10-25 10:27:02 +01002255 struct sg_device *sdp = sfp->parentdp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002256 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002258 write_lock_irqsave(&sdp->sfd_lock, iflags);
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002259 list_del(&sfp->sfd_siblings);
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002260 write_unlock_irqrestore(&sdp->sfd_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261
FUJITA Tomonori015640e2009-04-03 19:28:06 +09002262 INIT_WORK(&sfp->ew.work, sg_remove_sfp_usercontext);
2263 schedule_work(&sfp->ew.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264}
2265
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266#ifdef CONFIG_SCSI_PROC_FS
2267static int
James Bottomley7c07d612007-08-05 13:36:11 -05002268sg_idr_max_id(int id, void *p, void *data)
2269{
2270 int *k = data;
2271
2272 if (*k < id)
2273 *k = id;
2274
2275 return 0;
2276}
2277
2278static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279sg_last_dev(void)
2280{
Tony Battersby53474c02008-01-22 15:25:49 -05002281 int k = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 unsigned long iflags;
2283
James Bottomley7c07d612007-08-05 13:36:11 -05002284 read_lock_irqsave(&sg_index_lock, iflags);
2285 idr_for_each(&sg_index_idr, sg_idr_max_id, &k);
2286 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 return k + 1; /* origin 1 */
2288}
2289#endif
2290
Tony Battersbyc6517b792009-01-21 14:45:50 -05002291/* must be called with sg_index_lock held */
2292static Sg_device *sg_lookup_dev(int dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293{
Tony Battersbyc6517b792009-01-21 14:45:50 -05002294 return idr_find(&sg_index_idr, dev);
2295}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002297static Sg_device *
2298sg_get_dev(int dev)
Tony Battersbyc6517b792009-01-21 14:45:50 -05002299{
2300 struct sg_device *sdp;
2301 unsigned long flags;
2302
2303 read_lock_irqsave(&sg_index_lock, flags);
2304 sdp = sg_lookup_dev(dev);
2305 if (!sdp)
2306 sdp = ERR_PTR(-ENXIO);
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002307 else if (atomic_read(&sdp->detaching)) {
2308 /* If sdp->detaching, then the refcount may already be 0, in
Tony Battersbyc6517b792009-01-21 14:45:50 -05002309 * which case it would be a bug to do kref_get().
2310 */
2311 sdp = ERR_PTR(-ENODEV);
2312 } else
2313 kref_get(&sdp->d_ref);
2314 read_unlock_irqrestore(&sg_index_lock, flags);
James Bottomley7c07d612007-08-05 13:36:11 -05002315
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 return sdp;
2317}
2318
2319#ifdef CONFIG_SCSI_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320static int sg_proc_seq_show_int(struct seq_file *s, void *v);
2321
2322static int sg_proc_single_open_adio(struct inode *inode, struct file *file);
2323static ssize_t sg_proc_write_adio(struct file *filp, const char __user *buffer,
2324 size_t count, loff_t *off);
Alexey Dobriyan97a32532020-02-03 17:37:17 -08002325static const struct proc_ops adio_proc_ops = {
2326 .proc_open = sg_proc_single_open_adio,
2327 .proc_read = seq_read,
2328 .proc_lseek = seq_lseek,
2329 .proc_write = sg_proc_write_adio,
2330 .proc_release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331};
2332
2333static int sg_proc_single_open_dressz(struct inode *inode, struct file *file);
2334static ssize_t sg_proc_write_dressz(struct file *filp,
2335 const char __user *buffer, size_t count, loff_t *off);
Alexey Dobriyan97a32532020-02-03 17:37:17 -08002336static const struct proc_ops dressz_proc_ops = {
2337 .proc_open = sg_proc_single_open_dressz,
2338 .proc_read = seq_read,
2339 .proc_lseek = seq_lseek,
2340 .proc_write = sg_proc_write_dressz,
2341 .proc_release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342};
2343
2344static int sg_proc_seq_show_version(struct seq_file *s, void *v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345static int sg_proc_seq_show_devhdr(struct seq_file *s, void *v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346static int sg_proc_seq_show_dev(struct seq_file *s, void *v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347static void * dev_seq_start(struct seq_file *s, loff_t *pos);
2348static void * dev_seq_next(struct seq_file *s, void *v, loff_t *pos);
2349static void dev_seq_stop(struct seq_file *s, void *v);
James Morris88e9d342009-09-22 16:43:43 -07002350static const struct seq_operations dev_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 .start = dev_seq_start,
2352 .next = dev_seq_next,
2353 .stop = dev_seq_stop,
2354 .show = sg_proc_seq_show_dev,
2355};
2356
2357static int sg_proc_seq_show_devstrs(struct seq_file *s, void *v);
James Morris88e9d342009-09-22 16:43:43 -07002358static const struct seq_operations devstrs_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 .start = dev_seq_start,
2360 .next = dev_seq_next,
2361 .stop = dev_seq_stop,
2362 .show = sg_proc_seq_show_devstrs,
2363};
2364
2365static int sg_proc_seq_show_debug(struct seq_file *s, void *v);
James Morris88e9d342009-09-22 16:43:43 -07002366static const struct seq_operations debug_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 .start = dev_seq_start,
2368 .next = dev_seq_next,
2369 .stop = dev_seq_stop,
2370 .show = sg_proc_seq_show_debug,
2371};
2372
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373static int
2374sg_proc_init(void)
2375{
Christoph Hellwigb8b14832018-04-11 11:26:22 +02002376 struct proc_dir_entry *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377
Christoph Hellwigb8b14832018-04-11 11:26:22 +02002378 p = proc_mkdir("scsi/sg", NULL);
2379 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 return 1;
Christoph Hellwigb8b14832018-04-11 11:26:22 +02002381
Alexey Dobriyan97a32532020-02-03 17:37:17 -08002382 proc_create("allow_dio", S_IRUGO | S_IWUSR, p, &adio_proc_ops);
Christoph Hellwigb8b14832018-04-11 11:26:22 +02002383 proc_create_seq("debug", S_IRUGO, p, &debug_seq_ops);
Alexey Dobriyan97a32532020-02-03 17:37:17 -08002384 proc_create("def_reserved_size", S_IRUGO | S_IWUSR, p, &dressz_proc_ops);
Christoph Hellwigb8b14832018-04-11 11:26:22 +02002385 proc_create_single("device_hdr", S_IRUGO, p, sg_proc_seq_show_devhdr);
2386 proc_create_seq("devices", S_IRUGO, p, &dev_seq_ops);
2387 proc_create_seq("device_strs", S_IRUGO, p, &devstrs_seq_ops);
2388 proc_create_single("version", S_IRUGO, p, sg_proc_seq_show_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 return 0;
2390}
2391
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392
2393static int sg_proc_seq_show_int(struct seq_file *s, void *v)
2394{
2395 seq_printf(s, "%d\n", *((int *)s->private));
2396 return 0;
2397}
2398
2399static int sg_proc_single_open_adio(struct inode *inode, struct file *file)
2400{
2401 return single_open(file, sg_proc_seq_show_int, &sg_allow_dio);
2402}
2403
2404static ssize_t
2405sg_proc_write_adio(struct file *filp, const char __user *buffer,
2406 size_t count, loff_t *off)
2407{
Stephen Boyd7e95fff2012-01-10 15:42:34 -08002408 int err;
2409 unsigned long num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410
2411 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
2412 return -EACCES;
Stephen Boyd7e95fff2012-01-10 15:42:34 -08002413 err = kstrtoul_from_user(buffer, count, 0, &num);
2414 if (err)
2415 return err;
2416 sg_allow_dio = num ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 return count;
2418}
2419
2420static int sg_proc_single_open_dressz(struct inode *inode, struct file *file)
2421{
2422 return single_open(file, sg_proc_seq_show_int, &sg_big_buff);
2423}
2424
2425static ssize_t
2426sg_proc_write_dressz(struct file *filp, const char __user *buffer,
2427 size_t count, loff_t *off)
2428{
Stephen Boyd7e95fff2012-01-10 15:42:34 -08002429 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 unsigned long k = ULONG_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431
2432 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
2433 return -EACCES;
Stephen Boyd7e95fff2012-01-10 15:42:34 -08002434
2435 err = kstrtoul_from_user(buffer, count, 0, &k);
2436 if (err)
2437 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 if (k <= 1048576) { /* limit "big buff" to 1 MB */
2439 sg_big_buff = k;
2440 return count;
2441 }
2442 return -ERANGE;
2443}
2444
2445static int sg_proc_seq_show_version(struct seq_file *s, void *v)
2446{
2447 seq_printf(s, "%d\t%s [%s]\n", sg_version_num, SG_VERSION_STR,
2448 sg_version_date);
2449 return 0;
2450}
2451
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452static int sg_proc_seq_show_devhdr(struct seq_file *s, void *v)
2453{
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002454 seq_puts(s, "host\tchan\tid\tlun\ttype\topens\tqdepth\tbusy\tonline\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 return 0;
2456}
2457
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458struct sg_proc_deviter {
2459 loff_t index;
2460 size_t max;
2461};
2462
2463static void * dev_seq_start(struct seq_file *s, loff_t *pos)
2464{
2465 struct sg_proc_deviter * it = kmalloc(sizeof(*it), GFP_KERNEL);
2466
Jan Blunck729d70f2005-08-27 11:07:52 -07002467 s->private = it;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 if (! it)
2469 return NULL;
Jan Blunck729d70f2005-08-27 11:07:52 -07002470
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 it->index = *pos;
2472 it->max = sg_last_dev();
2473 if (it->index >= it->max)
Jan Blunck729d70f2005-08-27 11:07:52 -07002474 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 return it;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476}
2477
2478static void * dev_seq_next(struct seq_file *s, void *v, loff_t *pos)
2479{
Jan Blunck729d70f2005-08-27 11:07:52 -07002480 struct sg_proc_deviter * it = s->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481
2482 *pos = ++it->index;
2483 return (it->index < it->max) ? it : NULL;
2484}
2485
2486static void dev_seq_stop(struct seq_file *s, void *v)
2487{
Jan Blunck729d70f2005-08-27 11:07:52 -07002488 kfree(s->private);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489}
2490
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491static int sg_proc_seq_show_dev(struct seq_file *s, void *v)
2492{
2493 struct sg_proc_deviter * it = (struct sg_proc_deviter *) v;
2494 Sg_device *sdp;
2495 struct scsi_device *scsidp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002496 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497
Tony Battersbyc6517b792009-01-21 14:45:50 -05002498 read_lock_irqsave(&sg_index_lock, iflags);
2499 sdp = it ? sg_lookup_dev(it->index) : NULL;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002500 if ((NULL == sdp) || (NULL == sdp->device) ||
2501 (atomic_read(&sdp->detaching)))
2502 seq_puts(s, "-1\t-1\t-1\t-1\t-1\t-1\t-1\t-1\t-1\n");
2503 else {
2504 scsidp = sdp->device;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002505 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 -07002506 scsidp->host->host_no, scsidp->channel,
2507 scsidp->id, scsidp->lun, (int) scsidp->type,
2508 1,
2509 (int) scsidp->queue_depth,
Christoph Hellwig71e75c92014-04-11 19:07:01 +02002510 (int) atomic_read(&scsidp->device_busy),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 (int) scsi_device_online(scsidp));
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002512 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05002513 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 return 0;
2515}
2516
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517static int sg_proc_seq_show_devstrs(struct seq_file *s, void *v)
2518{
2519 struct sg_proc_deviter * it = (struct sg_proc_deviter *) v;
2520 Sg_device *sdp;
2521 struct scsi_device *scsidp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002522 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523
Tony Battersbyc6517b792009-01-21 14:45:50 -05002524 read_lock_irqsave(&sg_index_lock, iflags);
2525 sdp = it ? sg_lookup_dev(it->index) : NULL;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002526 scsidp = sdp ? sdp->device : NULL;
2527 if (sdp && scsidp && (!atomic_read(&sdp->detaching)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 seq_printf(s, "%8.8s\t%16.16s\t%4.4s\n",
2529 scsidp->vendor, scsidp->model, scsidp->rev);
2530 else
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002531 seq_puts(s, "<no active device>\n");
Tony Battersbyc6517b792009-01-21 14:45:50 -05002532 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 return 0;
2534}
2535
James Bottomleyc0d3b9c2013-10-25 10:21:57 +01002536/* must be called while holding sg_index_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537static void sg_proc_debug_helper(struct seq_file *s, Sg_device * sdp)
2538{
Hannes Reinecke109bade2017-04-07 09:34:16 +02002539 int k, new_interface, blen, usg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 Sg_request *srp;
2541 Sg_fd *fp;
2542 const sg_io_hdr_t *hp;
2543 const char * cp;
cb59e842005-04-02 13:51:23 -06002544 unsigned int ms;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002546 k = 0;
2547 list_for_each_entry(fp, &sdp->sfds, sfd_siblings) {
2548 k++;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002549 read_lock(&fp->rq_list_lock); /* irqs already disabled */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 seq_printf(s, " FD(%d): timeout=%dms bufflen=%d "
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002551 "(res)sgat=%d low_dma=%d\n", k,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 jiffies_to_msecs(fp->timeout),
2553 fp->reserve.bufflen,
2554 (int) fp->reserve.k_use_sg,
Hannes Reinecke745dfa02017-04-07 09:34:12 +02002555 (int) sdp->device->host->unchecked_isa_dma);
Jörn Engelebaf4662012-04-12 17:33:39 -04002556 seq_printf(s, " cmd_q=%d f_packid=%d k_orphan=%d closed=0\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 (int) fp->cmd_q, (int) fp->force_packid,
Jörn Engelebaf4662012-04-12 17:33:39 -04002558 (int) fp->keep_orphan);
Hannes Reinecke109bade2017-04-07 09:34:16 +02002559 list_for_each_entry(srp, &fp->rq_list, entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 hp = &srp->header;
2561 new_interface = (hp->interface_id == '\0') ? 0 : 1;
2562 if (srp->res_used) {
Hannes Reinecke109bade2017-04-07 09:34:16 +02002563 if (new_interface &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 (SG_FLAG_MMAP_IO & hp->flags))
2565 cp = " mmap>> ";
2566 else
2567 cp = " rb>> ";
2568 } else {
2569 if (SG_INFO_DIRECT_IO_MASK & hp->info)
2570 cp = " dio>> ";
2571 else
2572 cp = " ";
2573 }
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002574 seq_puts(s, cp);
Mike Christied6b10342005-11-08 04:06:41 -06002575 blen = srp->data.bufflen;
2576 usg = srp->data.k_use_sg;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002577 seq_puts(s, srp->done ?
2578 ((1 == srp->done) ? "rcv:" : "fin:")
2579 : "act:");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580 seq_printf(s, " id=%d blen=%d",
2581 srp->header.pack_id, blen);
2582 if (srp->done)
2583 seq_printf(s, " dur=%d", hp->duration);
cb59e842005-04-02 13:51:23 -06002584 else {
2585 ms = jiffies_to_msecs(jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 seq_printf(s, " t_o/elap=%d/%d",
cb59e842005-04-02 13:51:23 -06002587 (new_interface ? hp->timeout :
2588 jiffies_to_msecs(fp->timeout)),
2589 (ms > hp->duration ? ms - hp->duration : 0));
2590 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 seq_printf(s, "ms sgat=%d op=0x%02x\n", usg,
2592 (int) srp->data.cmd_opcode);
2593 }
Hannes Reinecke109bade2017-04-07 09:34:16 +02002594 if (list_empty(&fp->rq_list))
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002595 seq_puts(s, " No requests active\n");
Tony Battersbyc6517b792009-01-21 14:45:50 -05002596 read_unlock(&fp->rq_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 }
2598}
2599
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600static int sg_proc_seq_show_debug(struct seq_file *s, void *v)
2601{
2602 struct sg_proc_deviter * it = (struct sg_proc_deviter *) v;
2603 Sg_device *sdp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002604 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002606 if (it && (0 == it->index))
2607 seq_printf(s, "max_active_device=%d def_reserved_size=%d\n",
2608 (int)it->max, sg_big_buff);
Tony Battersbyc6517b792009-01-21 14:45:50 -05002609
2610 read_lock_irqsave(&sg_index_lock, iflags);
2611 sdp = it ? sg_lookup_dev(it->index) : NULL;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002612 if (NULL == sdp)
2613 goto skip;
2614 read_lock(&sdp->sfd_lock);
2615 if (!list_empty(&sdp->sfds)) {
James Bottomleyc0d3b9c2013-10-25 10:21:57 +01002616 seq_printf(s, " >>> device=%s ", sdp->disk->disk_name);
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002617 if (atomic_read(&sdp->detaching))
2618 seq_puts(s, "detaching pending close ");
2619 else if (sdp->device) {
2620 struct scsi_device *scsidp = sdp->device;
2621
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002622 seq_printf(s, "%d:%d:%d:%llu em=%d",
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002623 scsidp->host->host_no,
2624 scsidp->channel, scsidp->id,
2625 scsidp->lun,
2626 scsidp->host->hostt->emulated);
2627 }
2628 seq_printf(s, " sg_tablesize=%d excl=%d open_cnt=%d\n",
2629 sdp->sg_tablesize, sdp->exclude, sdp->open_cnt);
James Bottomleyc0d3b9c2013-10-25 10:21:57 +01002630 sg_proc_debug_helper(s, sdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 }
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002632 read_unlock(&sdp->sfd_lock);
2633skip:
Tony Battersbyc6517b792009-01-21 14:45:50 -05002634 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 return 0;
2636}
2637
2638#endif /* CONFIG_SCSI_PROC_FS */
2639
2640module_init(init_sg);
2641module_exit(exit_sg);