blob: 20472aaaf630a4627abaa4287dbfe2a384474b49 [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;
Wu Bo83c6f232020-04-14 10:13:28 +0800688 if (copy_from_user(cmnd, buf, cmd_size)) {
689 sg_remove_request(sfp, srp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 return -EFAULT;
Wu Bo83c6f232020-04-14 10:13:28 +0800691 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 /*
693 * SG_DXFER_TO_FROM_DEV is functionally equivalent to SG_DXFER_FROM_DEV,
694 * but is is possible that the app intended SG_DXFER_TO_DEV, because there
695 * is a non-zero input_size, so emit a warning.
696 */
Andi Kleeneaa3e222008-01-13 17:41:43 +0100697 if (hp->dxfer_direction == SG_DXFER_TO_FROM_DEV) {
Johannes Thumshirn28676d82017-04-07 09:34:15 +0200698 printk_ratelimited(KERN_WARNING
699 "sg_write: data in/out %d/%d bytes "
700 "for SCSI command 0x%x-- guessing "
701 "data in;\n program %s not setting "
702 "count and/or reply_len properly\n",
703 old_hdr.reply_len - (int)SZ_SG_HEADER,
704 input_size, (unsigned int) cmnd[0],
705 current->comm);
Andi Kleeneaa3e222008-01-13 17:41:43 +0100706 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 k = sg_common_write(sfp, srp, cmnd, sfp->timeout, blocking);
708 return (k < 0) ? k : count;
709}
710
711static ssize_t
Adel Gadllah0b07de82008-06-26 13:48:27 +0200712sg_new_write(Sg_fd *sfp, struct file *file, const char __user *buf,
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500713 size_t count, int blocking, int read_only, int sg_io_owned,
Adel Gadllah0b07de82008-06-26 13:48:27 +0200714 Sg_request **o_srp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715{
716 int k;
717 Sg_request *srp;
718 sg_io_hdr_t *hp;
Douglas Gilbert65c26a02014-06-03 13:18:18 -0400719 unsigned char cmnd[SG_MAX_CDB_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 int timeout;
721 unsigned long ul_timeout;
722
723 if (count < SZ_SG_IO_HDR)
724 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
726 sfp->cmd_q = 1; /* when sg_io_hdr seen, set command queuing on */
727 if (!(srp = sg_add_request(sfp))) {
Hannes Reinecke95e159d2014-06-25 16:39:55 +0200728 SCSI_LOG_TIMEOUT(1, sg_printk(KERN_INFO, sfp->parentdp,
729 "sg_new_write: queue full\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 return -EDOM;
731 }
Tony Battersbya2dd3b42009-01-20 17:00:09 -0500732 srp->sg_io_owned = sg_io_owned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 hp = &srp->header;
Arnd Bergmann98aaaec2019-03-14 17:45:18 +0100734 if (get_sg_io_hdr(hp, buf)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 sg_remove_request(sfp, srp);
736 return -EFAULT;
737 }
738 if (hp->interface_id != 'S') {
739 sg_remove_request(sfp, srp);
740 return -ENOSYS;
741 }
742 if (hp->flags & SG_FLAG_MMAP_IO) {
743 if (hp->dxfer_len > sfp->reserve.bufflen) {
744 sg_remove_request(sfp, srp);
745 return -ENOMEM; /* MMAP_IO size must fit in reserve buffer */
746 }
747 if (hp->flags & SG_FLAG_DIRECT_IO) {
748 sg_remove_request(sfp, srp);
749 return -EINVAL; /* either MMAP_IO or DIRECT_IO (not both) */
750 }
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +0200751 if (sfp->res_in_use) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 sg_remove_request(sfp, srp);
753 return -EBUSY; /* reserve buffer already being used */
754 }
755 }
756 ul_timeout = msecs_to_jiffies(srp->header.timeout);
757 timeout = (ul_timeout < INT_MAX) ? ul_timeout : INT_MAX;
758 if ((!hp->cmdp) || (hp->cmd_len < 6) || (hp->cmd_len > sizeof (cmnd))) {
759 sg_remove_request(sfp, srp);
760 return -EMSGSIZE;
761 }
Al Viroa62726c2019-10-17 20:39:19 +0100762 if (copy_from_user(cmnd, hp->cmdp, hp->cmd_len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 sg_remove_request(sfp, srp);
764 return -EFAULT;
765 }
FUJITA Tomonori14e507b2008-07-26 18:03:24 +0900766 if (read_only && sg_allow_access(file, cmnd)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 sg_remove_request(sfp, srp);
768 return -EPERM;
769 }
770 k = sg_common_write(sfp, srp, cmnd, timeout, blocking);
771 if (k < 0)
772 return k;
773 if (o_srp)
774 *o_srp = srp;
775 return count;
776}
777
778static int
779sg_common_write(Sg_fd * sfp, Sg_request * srp,
780 unsigned char *cmnd, int timeout, int blocking)
781{
Bart Van Assche5af2e382015-01-30 16:22:38 +0100782 int k, at_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 Sg_device *sdp = sfp->parentdp;
784 sg_io_hdr_t *hp = &srp->header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
786 srp->data.cmd_opcode = cmnd[0]; /* hold opcode of command */
787 hp->status = 0;
788 hp->masked_status = 0;
789 hp->msg_status = 0;
790 hp->info = 0;
791 hp->host_status = 0;
792 hp->driver_status = 0;
793 hp->resid = 0;
Hannes Reinecke95e159d2014-06-25 16:39:55 +0200794 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
795 "sg_common_write: scsi opcode=0x%02x, cmd_size=%d\n",
796 (int) cmnd[0], (int) hp->cmd_len));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Li Bin849f8582020-04-13 19:29:21 +0800798 if (hp->dxfer_len >= SZ_256M) {
799 sg_remove_request(sfp, srp);
Johannes Thumshirn28676d82017-04-07 09:34:15 +0200800 return -EINVAL;
Li Bin849f8582020-04-13 19:29:21 +0800801 }
Johannes Thumshirn28676d82017-04-07 09:34:15 +0200802
FUJITA Tomonori10865df2008-08-28 16:17:07 +0900803 k = sg_start_req(srp, cmnd);
804 if (k) {
Hannes Reinecke95e159d2014-06-25 16:39:55 +0200805 SCSI_LOG_TIMEOUT(1, sg_printk(KERN_INFO, sfp->parentdp,
806 "sg_common_write: start_req err=%d\n", k));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 sg_finish_rem_req(srp);
Hannes Reinecke97d27b0dd2017-04-07 09:34:17 +0200808 sg_remove_request(sfp, srp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 return k; /* probably out of space --> ENOMEM */
810 }
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200811 if (atomic_read(&sdp->detaching)) {
Calvin Owensf3951a32015-10-30 16:57:00 -0700812 if (srp->bio) {
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100813 scsi_req_free_cmd(scsi_req(srp->rq));
Jens Axboeabaf75d2018-10-16 08:38:47 -0600814 blk_put_request(srp->rq);
Calvin Owensf3951a32015-10-30 16:57:00 -0700815 srp->rq = NULL;
816 }
817
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 sg_finish_rem_req(srp);
Hannes Reinecke97d27b0dd2017-04-07 09:34:17 +0200819 sg_remove_request(sfp, srp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 return -ENODEV;
821 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
cb59e842005-04-02 13:51:23 -0600823 hp->duration = jiffies_to_msecs(jiffies);
Douglas Gilbert16070cc2014-06-04 10:58:30 -0400824 if (hp->interface_id != '\0' && /* v3 (or later) interface */
825 (SG_FLAG_Q_AT_TAIL & hp->flags))
826 at_head = 0;
827 else
828 at_head = 1;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +0200829
830 srp->rq->timeout = timeout;
Tony Battersbyc6517b792009-01-21 14:45:50 -0500831 kref_get(&sfp->f_ref); /* sg_rq_end_io() does kref_put(). */
FUJITA Tomonori10db10d2008-08-29 12:32:18 +0200832 blk_execute_rq_nowait(sdp->device->request_queue, sdp->disk,
Douglas Gilbert16070cc2014-06-04 10:58:30 -0400833 srp->rq, at_head, sg_rq_end_io);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +0200834 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835}
836
Jörn Engel6acddc52012-04-12 17:33:58 -0400837static int srp_done(Sg_fd *sfp, Sg_request *srp)
838{
839 unsigned long flags;
840 int ret;
841
842 read_lock_irqsave(&sfp->rq_list_lock, flags);
843 ret = srp->done;
844 read_unlock_irqrestore(&sfp->rq_list_lock, flags);
845 return ret;
846}
847
Akinobu Mita46f69e62014-06-02 22:56:46 +0900848static int max_sectors_bytes(struct request_queue *q)
849{
850 unsigned int max_sectors = queue_max_sectors(q);
851
852 max_sectors = min_t(unsigned int, max_sectors, INT_MAX >> 9);
853
854 return max_sectors << 9;
855}
856
Hannes Reinecke4759df92017-09-15 14:05:15 +0200857static void
858sg_fill_request_table(Sg_fd *sfp, sg_req_info_t *rinfo)
859{
860 Sg_request *srp;
861 int val;
862 unsigned int ms;
863
864 val = 0;
865 list_for_each_entry(srp, &sfp->rq_list, entry) {
Ben Hutchings587c3c92017-10-15 18:16:33 +0100866 if (val >= SG_MAX_QUEUE)
Hannes Reinecke4759df92017-09-15 14:05:15 +0200867 break;
Hannes Reinecke4759df92017-09-15 14:05:15 +0200868 rinfo[val].req_state = srp->done + 1;
869 rinfo[val].problem =
870 srp->header.masked_status &
871 srp->header.host_status &
872 srp->header.driver_status;
873 if (srp->done)
874 rinfo[val].duration =
875 srp->header.duration;
876 else {
877 ms = jiffies_to_msecs(jiffies);
878 rinfo[val].duration =
879 (ms > srp->header.duration) ?
880 (ms - srp->header.duration) : 0;
881 }
882 rinfo[val].orphan = srp->orphan;
883 rinfo[val].sg_io_owned = srp->sg_io_owned;
884 rinfo[val].pack_id = srp->header.pack_id;
885 rinfo[val].usr_ptr = srp->header.usr_ptr;
886 val++;
887 }
888}
889
Arnd Bergmannfd6c3d52018-08-24 14:53:13 +0200890#ifdef CONFIG_COMPAT
891struct compat_sg_req_info { /* used by SG_GET_REQUEST_TABLE ioctl() */
892 char req_state;
893 char orphan;
894 char sg_io_owned;
895 char problem;
896 int pack_id;
897 compat_uptr_t usr_ptr;
898 unsigned int duration;
899 int unused;
900};
901
902static int put_compat_request_table(struct compat_sg_req_info __user *o,
903 struct sg_req_info *rinfo)
904{
905 int i;
906 for (i = 0; i < SG_MAX_QUEUE; i++) {
907 if (copy_to_user(o + i, rinfo + i, offsetof(sg_req_info_t, usr_ptr)) ||
908 put_user((uintptr_t)rinfo[i].usr_ptr, &o[i].usr_ptr) ||
909 put_user(rinfo[i].duration, &o[i].duration) ||
910 put_user(rinfo[i].unused, &o[i].unused))
911 return -EFAULT;
912 }
913 return 0;
914}
915#endif
916
Jörn Engel37b9d1e2012-04-12 17:35:05 -0400917static long
Arnd Bergmannd320a952019-03-15 17:39:44 +0100918sg_ioctl_common(struct file *filp, Sg_device *sdp, Sg_fd *sfp,
919 unsigned int cmd_in, void __user *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 int __user *ip = p;
Christoph Hellwig176aa9d2014-10-11 12:06:47 +0200922 int result, val, read_only;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 Sg_request *srp;
924 unsigned long iflags;
925
Hannes Reinecke95e159d2014-06-25 16:39:55 +0200926 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
927 "sg_ioctl: cmd=0x%x\n", (int) cmd_in));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 read_only = (O_RDWR != (filp->f_flags & O_ACCMODE));
929
930 switch (cmd_in) {
931 case SG_IO:
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200932 if (atomic_read(&sdp->detaching))
Jörn Engeldddbf8d2012-04-12 17:32:17 -0400933 return -ENODEV;
934 if (!scsi_block_when_processing_errors(sdp->device))
935 return -ENXIO;
Jörn Engeldddbf8d2012-04-12 17:32:17 -0400936 result = sg_new_write(sfp, filp, p, SZ_SG_IO_HDR,
937 1, read_only, 1, &srp);
938 if (result < 0)
939 return result;
Jörn Engel3f0c6ab2012-04-12 17:33:25 -0400940 result = wait_event_interruptible(sfp->read_wait,
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200941 (srp_done(sfp, srp) || atomic_read(&sdp->detaching)));
942 if (atomic_read(&sdp->detaching))
Jörn Engel794c10f2012-04-12 17:32:48 -0400943 return -ENODEV;
944 write_lock_irq(&sfp->rq_list_lock);
945 if (srp->done) {
946 srp->done = 2;
Jörn Engeldddbf8d2012-04-12 17:32:17 -0400947 write_unlock_irq(&sfp->rq_list_lock);
Jörn Engel794c10f2012-04-12 17:32:48 -0400948 result = sg_new_read(sfp, p, SZ_SG_IO_HDR, srp);
949 return (result < 0) ? result : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 }
Jörn Engel794c10f2012-04-12 17:32:48 -0400951 srp->orphan = 1;
952 write_unlock_irq(&sfp->rq_list_lock);
953 return result; /* -ERESTARTSYS because signal hit process */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 case SG_SET_TIMEOUT:
955 result = get_user(val, ip);
956 if (result)
957 return result;
958 if (val < 0)
959 return -EIO;
Paul Burtonf8630bd72016-08-19 17:43:57 +0100960 if (val >= mult_frac((s64)INT_MAX, USER_HZ, HZ))
961 val = min_t(s64, mult_frac((s64)INT_MAX, USER_HZ, HZ),
Paul Burtonb9b6e802016-08-19 17:43:56 +0100962 INT_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 sfp->timeout_user = val;
Paul Burtonf8630bd72016-08-19 17:43:57 +0100964 sfp->timeout = mult_frac(val, HZ, USER_HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
966 return 0;
967 case SG_GET_TIMEOUT: /* N.B. User receives timeout as return value */
968 /* strange ..., for backward compatibility */
969 return sfp->timeout_user;
970 case SG_SET_FORCE_LOW_DMA:
Hannes Reinecke745dfa02017-04-07 09:34:12 +0200971 /*
972 * N.B. This ioctl never worked properly, but failed to
973 * return an error value. So returning '0' to keep compability
974 * with legacy applications.
975 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 return 0;
977 case SG_GET_LOW_DMA:
Hannes Reinecke745dfa02017-04-07 09:34:12 +0200978 return put_user((int) sdp->device->host->unchecked_isa_dma, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 case SG_GET_SCSI_ID:
Al Viroa16a4742019-10-17 20:39:18 +0100980 {
981 sg_scsi_id_t v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200983 if (atomic_read(&sdp->detaching))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 return -ENODEV;
Al Viroa16a4742019-10-17 20:39:18 +0100985 memset(&v, 0, sizeof(v));
986 v.host_no = sdp->device->host->host_no;
987 v.channel = sdp->device->channel;
988 v.scsi_id = sdp->device->id;
989 v.lun = sdp->device->lun;
990 v.scsi_type = sdp->device->type;
991 v.h_cmd_per_lun = sdp->device->host->cmd_per_lun;
992 v.d_queue_depth = sdp->device->queue_depth;
993 if (copy_to_user(p, &v, sizeof(sg_scsi_id_t)))
994 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 return 0;
996 }
997 case SG_SET_FORCE_PACK_ID:
998 result = get_user(val, ip);
999 if (result)
1000 return result;
1001 sfp->force_packid = val ? 1 : 0;
1002 return 0;
1003 case SG_GET_PACK_ID:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 read_lock_irqsave(&sfp->rq_list_lock, iflags);
Hannes Reinecke109bade2017-04-07 09:34:16 +02001005 list_for_each_entry(srp, &sfp->rq_list, entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 if ((1 == srp->done) && (!srp->sg_io_owned)) {
1007 read_unlock_irqrestore(&sfp->rq_list_lock,
1008 iflags);
Al Viroa16a4742019-10-17 20:39:18 +01001009 return put_user(srp->header.pack_id, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 }
1011 }
1012 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
Al Viroa16a4742019-10-17 20:39:18 +01001013 return put_user(-1, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 case SG_GET_NUM_WAITING:
1015 read_lock_irqsave(&sfp->rq_list_lock, iflags);
Hannes Reinecke109bade2017-04-07 09:34:16 +02001016 val = 0;
1017 list_for_each_entry(srp, &sfp->rq_list, entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 if ((1 == srp->done) && (!srp->sg_io_owned))
1019 ++val;
1020 }
1021 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1022 return put_user(val, ip);
1023 case SG_GET_SG_TABLESIZE:
1024 return put_user(sdp->sg_tablesize, ip);
1025 case SG_SET_RESERVED_SIZE:
1026 result = get_user(val, ip);
1027 if (result)
1028 return result;
1029 if (val < 0)
1030 return -EINVAL;
Alan Stern44ec9542007-02-20 11:01:57 -05001031 val = min_t(int, val,
Akinobu Mita46f69e62014-06-02 22:56:46 +09001032 max_sectors_bytes(sdp->device->request_queue));
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001033 mutex_lock(&sfp->f_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 if (val != sfp->reserve.bufflen) {
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001035 if (sfp->mmap_called ||
1036 sfp->res_in_use) {
1037 mutex_unlock(&sfp->f_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 return -EBUSY;
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001039 }
1040
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001041 sg_remove_scat(sfp, &sfp->reserve);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 sg_build_reserve(sfp, val);
1043 }
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001044 mutex_unlock(&sfp->f_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 return 0;
1046 case SG_GET_RESERVED_SIZE:
Alan Stern44ec9542007-02-20 11:01:57 -05001047 val = min_t(int, sfp->reserve.bufflen,
Akinobu Mita46f69e62014-06-02 22:56:46 +09001048 max_sectors_bytes(sdp->device->request_queue));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 return put_user(val, ip);
1050 case SG_SET_COMMAND_Q:
1051 result = get_user(val, ip);
1052 if (result)
1053 return result;
1054 sfp->cmd_q = val ? 1 : 0;
1055 return 0;
1056 case SG_GET_COMMAND_Q:
1057 return put_user((int) sfp->cmd_q, ip);
1058 case SG_SET_KEEP_ORPHAN:
1059 result = get_user(val, ip);
1060 if (result)
1061 return result;
1062 sfp->keep_orphan = val;
1063 return 0;
1064 case SG_GET_KEEP_ORPHAN:
1065 return put_user((int) sfp->keep_orphan, ip);
1066 case SG_NEXT_CMD_LEN:
1067 result = get_user(val, ip);
1068 if (result)
1069 return result;
peter changbf33f872017-02-15 14:11:54 -08001070 if (val > SG_MAX_CDB_SIZE)
1071 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 sfp->next_cmd_len = (val > 0) ? val : 0;
1073 return 0;
1074 case SG_GET_VERSION_NUM:
1075 return put_user(sg_version_num, ip);
1076 case SG_GET_ACCESS_COUNT:
1077 /* faked - we don't have a real access count anymore */
1078 val = (sdp->device ? 1 : 0);
1079 return put_user(val, ip);
1080 case SG_GET_REQUEST_TABLE:
Arnd Bergmannfd6c3d52018-08-24 14:53:13 +02001081 {
cb59e842005-04-02 13:51:23 -06001082 sg_req_info_t *rinfo;
cb59e842005-04-02 13:51:23 -06001083
Kees Cook6396bb22018-06-12 14:03:40 -07001084 rinfo = kcalloc(SG_MAX_QUEUE, SZ_SG_REQ_INFO,
Hannes Reinecke3e009742017-09-15 14:05:16 +02001085 GFP_KERNEL);
cb59e842005-04-02 13:51:23 -06001086 if (!rinfo)
1087 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 read_lock_irqsave(&sfp->rq_list_lock, iflags);
Hannes Reinecke4759df92017-09-15 14:05:15 +02001089 sg_fill_request_table(sfp, rinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
Arnd Bergmannfd6c3d52018-08-24 14:53:13 +02001091 #ifdef CONFIG_COMPAT
1092 if (in_compat_syscall())
1093 result = put_compat_request_table(p, rinfo);
1094 else
1095 #endif
1096 result = copy_to_user(p, rinfo,
1097 SZ_SG_REQ_INFO * SG_MAX_QUEUE);
cb59e842005-04-02 13:51:23 -06001098 result = result ? -EFAULT : 0;
1099 kfree(rinfo);
1100 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 }
1102 case SG_EMULATED_HOST:
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001103 if (atomic_read(&sdp->detaching))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 return -ENODEV;
1105 return put_user(sdp->device->host->hostt->emulated, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 case SCSI_IOCTL_SEND_COMMAND:
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001107 if (atomic_read(&sdp->detaching))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 return -ENODEV;
Al Viroe915e872008-09-02 17:16:41 -04001109 return sg_scsi_ioctl(sdp->device->request_queue, NULL, filp->f_mode, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 case SG_SET_DEBUG:
1111 result = get_user(val, ip);
1112 if (result)
1113 return result;
1114 sdp->sgdebug = (char) val;
1115 return 0;
Alan Stern44ec9542007-02-20 11:01:57 -05001116 case BLKSECTGET:
Akinobu Mita46f69e62014-06-02 22:56:46 +09001117 return put_user(max_sectors_bytes(sdp->device->request_queue),
Alan Stern44ec9542007-02-20 11:01:57 -05001118 ip);
Christof Schmitt6da127a2008-01-11 10:09:43 +01001119 case BLKTRACESETUP:
1120 return blk_trace_setup(sdp->device->request_queue,
1121 sdp->disk->disk_name,
Martin Peschke76e3a192009-01-30 15:46:23 +01001122 MKDEV(SCSI_GENERIC_MAJOR, sdp->index),
Bart Van Assche7475c8a2017-08-25 13:46:36 -07001123 NULL, p);
Christof Schmitt6da127a2008-01-11 10:09:43 +01001124 case BLKTRACESTART:
1125 return blk_trace_startstop(sdp->device->request_queue, 1);
1126 case BLKTRACESTOP:
1127 return blk_trace_startstop(sdp->device->request_queue, 0);
1128 case BLKTRACETEARDOWN:
1129 return blk_trace_remove(sdp->device->request_queue);
Christoph Hellwig906d15f2014-10-11 16:25:31 +02001130 case SCSI_IOCTL_GET_IDLUN:
1131 case SCSI_IOCTL_GET_BUS_NUMBER:
1132 case SCSI_IOCTL_PROBE_HOST:
1133 case SG_GET_TRANSFORM:
1134 case SG_SCSI_RESET:
1135 if (atomic_read(&sdp->detaching))
1136 return -ENODEV;
1137 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 default:
1139 if (read_only)
1140 return -EPERM; /* don't know so take safe approach */
Christoph Hellwig906d15f2014-10-11 16:25:31 +02001141 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 }
Christoph Hellwig906d15f2014-10-11 16:25:31 +02001143
1144 result = scsi_ioctl_block_when_processing_errors(sdp->device,
1145 cmd_in, filp->f_flags & O_NDELAY);
1146 if (result)
1147 return result;
Arnd Bergmannd320a952019-03-15 17:39:44 +01001148
1149 return -ENOIOCTLCMD;
1150}
1151
1152static long
1153sg_ioctl(struct file *filp, unsigned int cmd_in, unsigned long arg)
1154{
1155 void __user *p = (void __user *)arg;
1156 Sg_device *sdp;
1157 Sg_fd *sfp;
1158 int ret;
1159
1160 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
1161 return -ENXIO;
1162
1163 ret = sg_ioctl_common(filp, sdp, sfp, cmd_in, p);
1164 if (ret != -ENOIOCTLCMD)
1165 return ret;
1166
Christoph Hellwig906d15f2014-10-11 16:25:31 +02001167 return scsi_ioctl(sdp->device, cmd_in, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168}
1169
1170#ifdef CONFIG_COMPAT
1171static long sg_compat_ioctl(struct file *filp, unsigned int cmd_in, unsigned long arg)
1172{
Arnd Bergmannd320a952019-03-15 17:39:44 +01001173 void __user *p = compat_ptr(arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 Sg_device *sdp;
1175 Sg_fd *sfp;
Arnd Bergmannd320a952019-03-15 17:39:44 +01001176 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
1178 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
1179 return -ENXIO;
1180
Arnd Bergmannd320a952019-03-15 17:39:44 +01001181 ret = sg_ioctl_common(filp, sdp, sfp, cmd_in, p);
1182 if (ret != -ENOIOCTLCMD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 return ret;
Arnd Bergmannd320a952019-03-15 17:39:44 +01001184
1185 return scsi_compat_ioctl(sdp->device, cmd_in, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186}
1187#endif
1188
Al Viroafc9a422017-07-03 06:39:46 -04001189static __poll_t
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190sg_poll(struct file *filp, poll_table * wait)
1191{
Al Viroafc9a422017-07-03 06:39:46 -04001192 __poll_t res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 Sg_device *sdp;
1194 Sg_fd *sfp;
1195 Sg_request *srp;
1196 int count = 0;
1197 unsigned long iflags;
1198
Jörn Engelebaf4662012-04-12 17:33:39 -04001199 sfp = filp->private_data;
1200 if (!sfp)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001201 return EPOLLERR;
Jörn Engelebaf4662012-04-12 17:33:39 -04001202 sdp = sfp->parentdp;
1203 if (!sdp)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001204 return EPOLLERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 poll_wait(filp, &sfp->read_wait, wait);
1206 read_lock_irqsave(&sfp->rq_list_lock, iflags);
Hannes Reinecke109bade2017-04-07 09:34:16 +02001207 list_for_each_entry(srp, &sfp->rq_list, entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 /* if any read waiting, flag it */
1209 if ((0 == res) && (1 == srp->done) && (!srp->sg_io_owned))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001210 res = EPOLLIN | EPOLLRDNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 ++count;
1212 }
1213 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1214
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001215 if (atomic_read(&sdp->detaching))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001216 res |= EPOLLHUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 else if (!sfp->cmd_q) {
1218 if (0 == count)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001219 res |= EPOLLOUT | EPOLLWRNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 } else if (count < SG_MAX_QUEUE)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001221 res |= EPOLLOUT | EPOLLWRNORM;
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001222 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
Al Virofcc5a652017-07-16 23:54:30 -04001223 "sg_poll: res=0x%x\n", (__force u32) res));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 return res;
1225}
1226
1227static int
1228sg_fasync(int fd, struct file *filp, int mode)
1229{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 Sg_device *sdp;
1231 Sg_fd *sfp;
1232
1233 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
1234 return -ENXIO;
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001235 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
1236 "sg_fasync: mode=%d\n", mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
Jonathan Corbet60aa4922009-02-01 14:52:56 -07001238 return fasync_helper(fd, filp, mode, &sfp->async_qp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239}
1240
Souptick Joarder0cac8e12018-04-15 00:17:41 +05301241static vm_fault_t
Dave Jiang11bac802017-02-24 14:56:41 -08001242sg_vma_fault(struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243{
Dave Jiang11bac802017-02-24 14:56:41 -08001244 struct vm_area_struct *vma = vmf->vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 Sg_fd *sfp;
Mike Christied6b10342005-11-08 04:06:41 -06001246 unsigned long offset, len, sa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 Sg_scatter_hold *rsv_schp;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001248 int k, length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
1250 if ((NULL == vma) || (!(sfp = (Sg_fd *) vma->vm_private_data)))
Nick Piggina13ff0b2008-02-07 18:46:06 -08001251 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 rsv_schp = &sfp->reserve;
Nick Piggina13ff0b2008-02-07 18:46:06 -08001253 offset = vmf->pgoff << PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 if (offset >= rsv_schp->bufflen)
Nick Piggina13ff0b2008-02-07 18:46:06 -08001255 return VM_FAULT_SIGBUS;
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001256 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sfp->parentdp,
1257 "sg_vma_fault: offset=%lu, scatg=%d\n",
1258 offset, rsv_schp->k_use_sg));
Mike Christied6b10342005-11-08 04:06:41 -06001259 sa = vma->vm_start;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001260 length = 1 << (PAGE_SHIFT + rsv_schp->page_order);
1261 for (k = 0; k < rsv_schp->k_use_sg && sa < vma->vm_end; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06001262 len = vma->vm_end - sa;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001263 len = (len < length) ? len : length;
Mike Christied6b10342005-11-08 04:06:41 -06001264 if (offset < len) {
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001265 struct page *page = nth_page(rsv_schp->pages[k],
1266 offset >> PAGE_SHIFT);
Mike Christied6b10342005-11-08 04:06:41 -06001267 get_page(page); /* increment page count */
Nick Piggina13ff0b2008-02-07 18:46:06 -08001268 vmf->page = page;
1269 return 0; /* success */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 }
Mike Christied6b10342005-11-08 04:06:41 -06001271 sa += len;
1272 offset -= len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 }
Mike Christied6b10342005-11-08 04:06:41 -06001274
Nick Piggina13ff0b2008-02-07 18:46:06 -08001275 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276}
1277
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04001278static const struct vm_operations_struct sg_mmap_vm_ops = {
Nick Piggina13ff0b2008-02-07 18:46:06 -08001279 .fault = sg_vma_fault,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280};
1281
1282static int
1283sg_mmap(struct file *filp, struct vm_area_struct *vma)
1284{
1285 Sg_fd *sfp;
Mike Christied6b10342005-11-08 04:06:41 -06001286 unsigned long req_sz, len, sa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 Sg_scatter_hold *rsv_schp;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001288 int k, length;
Todd Poynor6a8dadc2017-08-15 22:41:08 -07001289 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
1291 if ((!filp) || (!vma) || (!(sfp = (Sg_fd *) filp->private_data)))
1292 return -ENXIO;
cb59e842005-04-02 13:51:23 -06001293 req_sz = vma->vm_end - vma->vm_start;
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001294 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sfp->parentdp,
1295 "sg_mmap starting, vm_start=%p, len=%d\n",
1296 (void *) vma->vm_start, (int) req_sz));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 if (vma->vm_pgoff)
1298 return -EINVAL; /* want no offset */
1299 rsv_schp = &sfp->reserve;
Todd Poynor6a8dadc2017-08-15 22:41:08 -07001300 mutex_lock(&sfp->f_mutex);
1301 if (req_sz > rsv_schp->bufflen) {
1302 ret = -ENOMEM; /* cannot map more than reserved buffer */
1303 goto out;
1304 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
Mike Christied6b10342005-11-08 04:06:41 -06001306 sa = vma->vm_start;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001307 length = 1 << (PAGE_SHIFT + rsv_schp->page_order);
1308 for (k = 0; k < rsv_schp->k_use_sg && sa < vma->vm_end; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06001309 len = vma->vm_end - sa;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001310 len = (len < length) ? len : length;
Mike Christied6b10342005-11-08 04:06:41 -06001311 sa += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 }
Mike Christied6b10342005-11-08 04:06:41 -06001313
Nick Pigginf9aed0e2006-03-22 00:08:30 -08001314 sfp->mmap_called = 1;
Kirill A. Shutemov461c7fa2016-02-02 16:57:35 -08001315 vma->vm_flags |= VM_IO | VM_DONTEXPAND | VM_DONTDUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 vma->vm_private_data = sfp;
1317 vma->vm_ops = &sg_mmap_vm_ops;
Todd Poynor6a8dadc2017-08-15 22:41:08 -07001318out:
1319 mutex_unlock(&sfp->f_mutex);
1320 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321}
1322
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001323static void
1324sg_rq_end_io_usercontext(struct work_struct *work)
FUJITA Tomonoric96952e2009-02-04 11:36:27 +09001325{
1326 struct sg_request *srp = container_of(work, struct sg_request, ew.work);
1327 struct sg_fd *sfp = srp->parentfp;
1328
1329 sg_finish_rem_req(srp);
Hannes Reinecke97d27b0dd2017-04-07 09:34:17 +02001330 sg_remove_request(sfp, srp);
FUJITA Tomonoric96952e2009-02-04 11:36:27 +09001331 kref_put(&sfp->f_ref, sg_remove_sfp);
1332}
1333
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001334/*
1335 * This function is a "bottom half" handler that is called by the mid
1336 * level when a command is completed (or has failed).
1337 */
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001338static void
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001339sg_rq_end_io(struct request *rq, blk_status_t status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340{
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001341 struct sg_request *srp = rq->end_io_data;
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001342 struct scsi_request *req = scsi_req(rq);
Tony Battersbyc6517b792009-01-21 14:45:50 -05001343 Sg_device *sdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 Sg_fd *sfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 unsigned long iflags;
cb59e842005-04-02 13:51:23 -06001346 unsigned int ms;
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001347 char *sense;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001348 int result, resid, done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
Tony Battersbyc6517b792009-01-21 14:45:50 -05001350 if (WARN_ON(srp->done != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 return;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001352
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 sfp = srp->parentfp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001354 if (WARN_ON(sfp == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 return;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001356
1357 sdp = sfp->parentdp;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001358 if (unlikely(atomic_read(&sdp->detaching)))
1359 pr_info("%s: device detaching\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001361 sense = req->sense;
Christoph Hellwig17d53632017-04-20 16:03:01 +02001362 result = req->result;
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001363 resid = req->resid_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001365 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sdp,
1366 "sg_cmd_done: pack_id=%d, res=0x%x\n",
1367 srp->header.pack_id, result));
Mike Christied6b10342005-11-08 04:06:41 -06001368 srp->header.resid = resid;
cb59e842005-04-02 13:51:23 -06001369 ms = jiffies_to_msecs(jiffies);
1370 srp->header.duration = (ms > srp->header.duration) ?
1371 (ms - srp->header.duration) : 0;
Mike Christied6b10342005-11-08 04:06:41 -06001372 if (0 != result) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 struct scsi_sense_hdr sshdr;
1374
Mike Christied6b10342005-11-08 04:06:41 -06001375 srp->header.status = 0xff & result;
1376 srp->header.masked_status = status_byte(result);
1377 srp->header.msg_status = msg_byte(result);
1378 srp->header.host_status = host_byte(result);
1379 srp->header.driver_status = driver_byte(result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 if ((sdp->sgdebug > 0) &&
1381 ((CHECK_CONDITION == srp->header.masked_status) ||
1382 (COMMAND_TERMINATED == srp->header.masked_status)))
Hannes Reinecked811b842014-10-24 14:26:45 +02001383 __scsi_print_sense(sdp->device, __func__, sense,
Mike Christied6b10342005-11-08 04:06:41 -06001384 SCSI_SENSE_BUFFERSIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
1386 /* Following if statement is a patch supplied by Eric Youngdale */
Mike Christied6b10342005-11-08 04:06:41 -06001387 if (driver_byte(result) != 0
1388 && scsi_normalize_sense(sense, SCSI_SENSE_BUFFERSIZE, &sshdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 && !scsi_sense_is_deferred(&sshdr)
1390 && sshdr.sense_key == UNIT_ATTENTION
1391 && sdp->device->removable) {
1392 /* Detected possible disc change. Set the bit - this */
1393 /* may be used if there are filesystems using this device */
1394 sdp->device->changed = 1;
1395 }
1396 }
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001397
1398 if (req->sense_len)
1399 memcpy(srp->sense_b, req->sense, SCSI_SENSE_BUFFERSIZE);
1400
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 /* Rely on write phase to clean out srp status values, so no "else" */
1402
Tony Battersby75686152015-02-13 12:09:44 -05001403 /*
1404 * Free the request as soon as it is complete so that its resources
1405 * can be reused without waiting for userspace to read() the
1406 * result. But keep the associated bio (if any) around until
1407 * blk_rq_unmap_user() can be called from user context.
1408 */
1409 srp->rq = NULL;
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001410 scsi_req_free_cmd(scsi_req(rq));
Jens Axboe92bc5a22018-10-24 13:52:28 -06001411 blk_put_request(rq);
Tony Battersby75686152015-02-13 12:09:44 -05001412
Tony Battersbyc6517b792009-01-21 14:45:50 -05001413 write_lock_irqsave(&sfp->rq_list_lock, iflags);
1414 if (unlikely(srp->orphan)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 if (sfp->keep_orphan)
1416 srp->sg_io_owned = 0;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001417 else
1418 done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05001420 srp->done = done;
1421 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1422
1423 if (likely(done)) {
1424 /* Now wake up any sg_read() that is waiting for this
1425 * packet.
1426 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 wake_up_interruptible(&sfp->read_wait);
Tony Battersbyc6517b792009-01-21 14:45:50 -05001428 kill_fasync(&sfp->async_qp, SIGPOLL, POLL_IN);
FUJITA Tomonoric96952e2009-02-04 11:36:27 +09001429 kref_put(&sfp->f_ref, sg_remove_sfp);
FUJITA Tomonori015640e2009-04-03 19:28:06 +09001430 } else {
1431 INIT_WORK(&srp->ew.work, sg_rq_end_io_usercontext);
1432 schedule_work(&srp->ew.work);
1433 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434}
1435
Alexey Dobriyan828c0952009-10-01 15:43:56 -07001436static const struct file_operations sg_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 .owner = THIS_MODULE,
1438 .read = sg_read,
1439 .write = sg_write,
1440 .poll = sg_poll,
Jörn Engel37b9d1e2012-04-12 17:35:05 -04001441 .unlocked_ioctl = sg_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442#ifdef CONFIG_COMPAT
1443 .compat_ioctl = sg_compat_ioctl,
1444#endif
1445 .open = sg_open,
1446 .mmap = sg_mmap,
1447 .release = sg_release,
1448 .fasync = sg_fasync,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001449 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450};
1451
gregkh@suse.ded2538782005-03-23 09:55:22 -08001452static struct class *sg_sysfs_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453
1454static int sg_sysfs_valid = 0;
1455
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001456static Sg_device *
1457sg_alloc(struct gendisk *disk, struct scsi_device *scsidp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458{
Mike Christied6b10342005-11-08 04:06:41 -06001459 struct request_queue *q = scsidp->request_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 Sg_device *sdp;
1461 unsigned long iflags;
James Bottomley7c07d612007-08-05 13:36:11 -05001462 int error;
1463 u32 k;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
Jes Sorensen24669f752006-01-16 10:31:18 -05001465 sdp = kzalloc(sizeof(Sg_device), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 if (!sdp) {
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001467 sdev_printk(KERN_WARNING, scsidp, "%s: kmalloc Sg_device "
1468 "failure\n", __func__);
James Bottomley7c07d612007-08-05 13:36:11 -05001469 return ERR_PTR(-ENOMEM);
1470 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05001471
Tejun Heob98c52b2013-02-27 17:04:42 -08001472 idr_preload(GFP_KERNEL);
James Bottomley7c07d612007-08-05 13:36:11 -05001473 write_lock_irqsave(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
Tejun Heob98c52b2013-02-27 17:04:42 -08001475 error = idr_alloc(&sg_index_idr, sdp, 0, SG_MAX_DEVS, GFP_NOWAIT);
1476 if (error < 0) {
1477 if (error == -ENOSPC) {
1478 sdev_printk(KERN_WARNING, scsidp,
1479 "Unable to attach sg device type=%d, minor number exceeds %d\n",
1480 scsidp->type, SG_MAX_DEVS - 1);
1481 error = -ENODEV;
1482 } else {
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001483 sdev_printk(KERN_WARNING, scsidp, "%s: idr "
1484 "allocation Sg_device failure: %d\n",
1485 __func__, error);
Tejun Heob98c52b2013-02-27 17:04:42 -08001486 }
1487 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 }
Tejun Heob98c52b2013-02-27 17:04:42 -08001489 k = error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001491 SCSI_LOG_TIMEOUT(3, sdev_printk(KERN_INFO, scsidp,
1492 "sg_alloc: dev=%d \n", k));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 sprintf(disk->disk_name, "sg%d", k);
1494 disk->first_minor = k;
1495 sdp->disk = disk;
1496 sdp->device = scsidp;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001497 mutex_init(&sdp->open_rel_lock);
FUJITA Tomonori3442f802009-02-16 13:26:53 +09001498 INIT_LIST_HEAD(&sdp->sfds);
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001499 init_waitqueue_head(&sdp->open_wait);
1500 atomic_set(&sdp->detaching, 0);
1501 rwlock_init(&sdp->sfd_lock);
Martin K. Petersen8a783622010-02-26 00:20:39 -05001502 sdp->sg_tablesize = queue_max_segments(q);
James Bottomley7c07d612007-08-05 13:36:11 -05001503 sdp->index = k;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001504 kref_init(&sdp->d_ref);
James Bottomley7c07d612007-08-05 13:36:11 -05001505 error = 0;
Tejun Heob98c52b2013-02-27 17:04:42 -08001506
1507out_unlock:
1508 write_unlock_irqrestore(&sg_index_lock, iflags);
1509 idr_preload_end();
1510
James Bottomley7c07d612007-08-05 13:36:11 -05001511 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 kfree(sdp);
James Bottomley7c07d612007-08-05 13:36:11 -05001513 return ERR_PTR(error);
1514 }
1515 return sdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516}
1517
1518static int
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001519sg_add_device(struct device *cl_dev, struct class_interface *cl_intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520{
Tony Jonesee959b02008-02-22 00:13:36 +01001521 struct scsi_device *scsidp = to_scsi_device(cl_dev->parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 struct gendisk *disk;
1523 Sg_device *sdp = NULL;
1524 struct cdev * cdev = NULL;
James Bottomley7c07d612007-08-05 13:36:11 -05001525 int error;
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001526 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
1528 disk = alloc_disk(1);
1529 if (!disk) {
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001530 pr_warn("%s: alloc_disk failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 return -ENOMEM;
1532 }
1533 disk->major = SCSI_GENERIC_MAJOR;
1534
1535 error = -ENOMEM;
1536 cdev = cdev_alloc();
1537 if (!cdev) {
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001538 pr_warn("%s: cdev_alloc failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 goto out;
1540 }
1541 cdev->owner = THIS_MODULE;
1542 cdev->ops = &sg_fops;
1543
James Bottomley7c07d612007-08-05 13:36:11 -05001544 sdp = sg_alloc(disk, scsidp);
1545 if (IS_ERR(sdp)) {
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001546 pr_warn("%s: sg_alloc failed\n", __func__);
James Bottomley7c07d612007-08-05 13:36:11 -05001547 error = PTR_ERR(sdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 goto out;
1549 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
James Bottomley7c07d612007-08-05 13:36:11 -05001551 error = cdev_add(cdev, MKDEV(SCSI_GENERIC_MAJOR, sdp->index), 1);
Greg KH5e3c34c2006-01-18 16:17:46 -08001552 if (error)
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001553 goto cdev_add_err;
Greg KH5e3c34c2006-01-18 16:17:46 -08001554
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 sdp->cdev = cdev;
1556 if (sg_sysfs_valid) {
Tony Jonesee959b02008-02-22 00:13:36 +01001557 struct device *sg_class_member;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
Greg Kroah-Hartmand73a1a672008-07-21 20:03:34 -07001559 sg_class_member = device_create(sg_sysfs_class, cl_dev->parent,
1560 MKDEV(SCSI_GENERIC_MAJOR,
1561 sdp->index),
1562 sdp, "%s", disk->disk_name);
FUJITA Tomonorid07e0362008-01-15 13:18:00 +09001563 if (IS_ERR(sg_class_member)) {
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001564 pr_err("%s: device_create failed\n", __func__);
FUJITA Tomonorid07e0362008-01-15 13:18:00 +09001565 error = PTR_ERR(sg_class_member);
1566 goto cdev_add_err;
1567 }
FUJITA Tomonorid07e0362008-01-15 13:18:00 +09001568 error = sysfs_create_link(&scsidp->sdev_gendev.kobj,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 &sg_class_member->kobj, "generic");
1570 if (error)
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001571 pr_err("%s: unable to make symlink 'generic' back "
1572 "to sg%d\n", __func__, sdp->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 } else
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001574 pr_warn("%s: sg_sys Invalid\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001576 sdev_printk(KERN_NOTICE, scsidp, "Attached scsi generic sg%d "
1577 "type %d\n", sdp->index, scsidp->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
Tony Jonesee959b02008-02-22 00:13:36 +01001579 dev_set_drvdata(cl_dev, sdp);
FUJITA Tomonoria24484f2008-01-15 13:17:47 +09001580
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 return 0;
1582
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001583cdev_add_err:
James Bottomley7c07d612007-08-05 13:36:11 -05001584 write_lock_irqsave(&sg_index_lock, iflags);
1585 idr_remove(&sg_index_idr, sdp->index);
1586 write_unlock_irqrestore(&sg_index_lock, iflags);
1587 kfree(sdp);
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001588
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589out:
1590 put_disk(disk);
1591 if (cdev)
1592 cdev_del(cdev);
1593 return error;
1594}
1595
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001596static void
1597sg_device_destroy(struct kref *kref)
Tony Battersbyc6517b792009-01-21 14:45:50 -05001598{
1599 struct sg_device *sdp = container_of(kref, struct sg_device, d_ref);
1600 unsigned long flags;
1601
1602 /* CAUTION! Note that the device can still be found via idr_find()
1603 * even though the refcount is 0. Therefore, do idr_remove() BEFORE
1604 * any other cleanup.
1605 */
1606
1607 write_lock_irqsave(&sg_index_lock, flags);
1608 idr_remove(&sg_index_idr, sdp->index);
1609 write_unlock_irqrestore(&sg_index_lock, flags);
1610
1611 SCSI_LOG_TIMEOUT(3,
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001612 sg_printk(KERN_INFO, sdp, "sg_device_destroy\n"));
Tony Battersbyc6517b792009-01-21 14:45:50 -05001613
1614 put_disk(sdp->disk);
1615 kfree(sdp);
1616}
1617
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001618static void
1619sg_remove_device(struct device *cl_dev, struct class_interface *cl_intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620{
Tony Jonesee959b02008-02-22 00:13:36 +01001621 struct scsi_device *scsidp = to_scsi_device(cl_dev->parent);
1622 Sg_device *sdp = dev_get_drvdata(cl_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 unsigned long iflags;
1624 Sg_fd *sfp;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001625 int val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001627 if (!sdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 return;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001629 /* want sdp->detaching non-zero as soon as possible */
1630 val = atomic_inc_return(&sdp->detaching);
1631 if (val > 1)
1632 return; /* only want to do following once per device */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001634 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
1635 "%s\n", __func__));
Tony Battersbyc6517b792009-01-21 14:45:50 -05001636
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001637 read_lock_irqsave(&sdp->sfd_lock, iflags);
FUJITA Tomonori3442f802009-02-16 13:26:53 +09001638 list_for_each_entry(sfp, &sdp->sfds, sfd_siblings) {
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001639 wake_up_interruptible_all(&sfp->read_wait);
Tony Battersbyc6517b792009-01-21 14:45:50 -05001640 kill_fasync(&sfp->async_qp, SIGPOLL, POLL_HUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 }
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001642 wake_up_interruptible_all(&sdp->open_wait);
1643 read_unlock_irqrestore(&sdp->sfd_lock, iflags);
James Bottomley7c07d612007-08-05 13:36:11 -05001644
1645 sysfs_remove_link(&scsidp->sdev_gendev.kobj, "generic");
Tony Jonesee959b02008-02-22 00:13:36 +01001646 device_destroy(sg_sysfs_class, MKDEV(SCSI_GENERIC_MAJOR, sdp->index));
James Bottomley7c07d612007-08-05 13:36:11 -05001647 cdev_del(sdp->cdev);
1648 sdp->cdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001650 kref_put(&sdp->d_ref, sg_device_destroy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651}
1652
Douglas Gilbert6460e752006-09-20 18:20:49 -04001653module_param_named(scatter_elem_sz, scatter_elem_sz, int, S_IRUGO | S_IWUSR);
1654module_param_named(def_reserved_size, def_reserved_size, int,
1655 S_IRUGO | S_IWUSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656module_param_named(allow_dio, sg_allow_dio, int, S_IRUGO | S_IWUSR);
1657
1658MODULE_AUTHOR("Douglas Gilbert");
1659MODULE_DESCRIPTION("SCSI generic (sg) driver");
1660MODULE_LICENSE("GPL");
1661MODULE_VERSION(SG_VERSION_STR);
Rene Hermanf018fa52006-03-08 00:14:20 -08001662MODULE_ALIAS_CHARDEV_MAJOR(SCSI_GENERIC_MAJOR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663
Douglas Gilbert6460e752006-09-20 18:20:49 -04001664MODULE_PARM_DESC(scatter_elem_sz, "scatter gather element "
1665 "size (default: max(SG_SCATTER_SZ, PAGE_SIZE))");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666MODULE_PARM_DESC(def_reserved_size, "size of buffer reserved for each fd");
1667MODULE_PARM_DESC(allow_dio, "allow direct I/O (default: 0 (disallow))");
1668
1669static int __init
1670init_sg(void)
1671{
1672 int rc;
1673
Douglas Gilbert6460e752006-09-20 18:20:49 -04001674 if (scatter_elem_sz < PAGE_SIZE) {
1675 scatter_elem_sz = PAGE_SIZE;
1676 scatter_elem_sz_prev = scatter_elem_sz;
1677 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 if (def_reserved_size >= 0)
1679 sg_big_buff = def_reserved_size;
Douglas Gilbert6460e752006-09-20 18:20:49 -04001680 else
1681 def_reserved_size = sg_big_buff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682
1683 rc = register_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0),
1684 SG_MAX_DEVS, "sg");
1685 if (rc)
1686 return rc;
gregkh@suse.ded2538782005-03-23 09:55:22 -08001687 sg_sysfs_class = class_create(THIS_MODULE, "scsi_generic");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 if ( IS_ERR(sg_sysfs_class) ) {
1689 rc = PTR_ERR(sg_sysfs_class);
1690 goto err_out;
1691 }
1692 sg_sysfs_valid = 1;
1693 rc = scsi_register_interface(&sg_interface);
1694 if (0 == rc) {
1695#ifdef CONFIG_SCSI_PROC_FS
1696 sg_proc_init();
1697#endif /* CONFIG_SCSI_PROC_FS */
1698 return 0;
1699 }
gregkh@suse.ded2538782005-03-23 09:55:22 -08001700 class_destroy(sg_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701err_out:
1702 unregister_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0), SG_MAX_DEVS);
1703 return rc;
1704}
1705
1706static void __exit
1707exit_sg(void)
1708{
1709#ifdef CONFIG_SCSI_PROC_FS
Christoph Hellwigb8b14832018-04-11 11:26:22 +02001710 remove_proc_subtree("scsi/sg", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711#endif /* CONFIG_SCSI_PROC_FS */
1712 scsi_unregister_interface(&sg_interface);
gregkh@suse.ded2538782005-03-23 09:55:22 -08001713 class_destroy(sg_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 sg_sysfs_valid = 0;
1715 unregister_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0),
1716 SG_MAX_DEVS);
James Bottomley7c07d612007-08-05 13:36:11 -05001717 idr_destroy(&sg_index_idr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718}
1719
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001720static int
1721sg_start_req(Sg_request *srp, unsigned char *cmd)
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001722{
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001723 int res;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001724 struct request *rq;
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001725 struct scsi_request *req;
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001726 Sg_fd *sfp = srp->parentfp;
1727 sg_io_hdr_t *hp = &srp->header;
1728 int dxfer_len = (int) hp->dxfer_len;
1729 int dxfer_dir = hp->dxfer_direction;
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001730 unsigned int iov_count = hp->iovec_count;
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001731 Sg_scatter_hold *req_schp = &srp->data;
1732 Sg_scatter_hold *rsv_schp = &sfp->reserve;
1733 struct request_queue *q = sfp->parentdp->device->request_queue;
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001734 struct rq_map_data *md, map_data;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001735 int rw = hp->dxfer_direction == SG_DXFER_TO_DEV ? WRITE : READ;
Douglas Gilbert65c26a02014-06-03 13:18:18 -04001736 unsigned char *long_cmdp = NULL;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001737
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001738 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
1739 "sg_start_req: dxfer_len=%d\n",
1740 dxfer_len));
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001741
Douglas Gilbert65c26a02014-06-03 13:18:18 -04001742 if (hp->cmd_len > BLK_MAX_CDB) {
1743 long_cmdp = kzalloc(hp->cmd_len, GFP_KERNEL);
1744 if (!long_cmdp)
1745 return -ENOMEM;
1746 }
1747
Tony Battersby77728552015-02-13 12:10:58 -05001748 /*
1749 * NOTE
1750 *
1751 * With scsi-mq enabled, there are a fixed number of preallocated
1752 * requests equal in number to shost->can_queue. If all of the
Tony Battersby8e4a4182018-07-12 18:09:21 -04001753 * preallocated requests are already in use, then blk_get_request()
1754 * will sleep until an active command completes, freeing up a request.
1755 * Although waiting in an asynchronous interface is less than ideal, we
1756 * do not want to use BLK_MQ_REQ_NOWAIT here because userspace might
1757 * not expect an EWOULDBLOCK from this condition.
Tony Battersby77728552015-02-13 12:10:58 -05001758 */
Christoph Hellwigaebf5262017-01-31 16:57:31 +01001759 rq = blk_get_request(q, hp->dxfer_direction == SG_DXFER_TO_DEV ?
Christoph Hellwigff005a02018-05-09 09:54:05 +02001760 REQ_OP_SCSI_OUT : REQ_OP_SCSI_IN, 0);
Joe Lawrencea492f072014-08-28 08:15:21 -06001761 if (IS_ERR(rq)) {
Douglas Gilbert65c26a02014-06-03 13:18:18 -04001762 kfree(long_cmdp);
Joe Lawrencea492f072014-08-28 08:15:21 -06001763 return PTR_ERR(rq);
Douglas Gilbert65c26a02014-06-03 13:18:18 -04001764 }
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001765 req = scsi_req(rq);
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001766
Douglas Gilbert65c26a02014-06-03 13:18:18 -04001767 if (hp->cmd_len > BLK_MAX_CDB)
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001768 req->cmd = long_cmdp;
1769 memcpy(req->cmd, cmd, hp->cmd_len);
1770 req->cmd_len = hp->cmd_len;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001771
1772 srp->rq = rq;
1773 rq->end_io_data = srp;
Christoph Hellwig64c7f1d2017-04-05 19:18:12 +02001774 req->retries = SG_DEFAULT_RETRIES;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001775
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 if ((dxfer_len <= 0) || (dxfer_dir == SG_DXFER_NONE))
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001777 return 0;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001778
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001779 if (sg_allow_dio && hp->flags & SG_FLAG_DIRECT_IO &&
1780 dxfer_dir != SG_DXFER_UNKNOWN && !iov_count &&
1781 !sfp->parentdp->device->host->unchecked_isa_dma &&
Namhyung Kim2610a252010-09-16 12:55:57 +09001782 blk_rq_aligned(q, (unsigned long)hp->dxferp, dxfer_len))
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001783 md = NULL;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001784 else
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001785 md = &map_data;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001786
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001787 if (md) {
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001788 mutex_lock(&sfp->f_mutex);
1789 if (dxfer_len <= rsv_schp->bufflen &&
1790 !sfp->res_in_use) {
1791 sfp->res_in_use = 1;
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001792 sg_link_reserve(sfp, srp, dxfer_len);
Todd Poynor8d26f492017-08-15 21:48:43 -07001793 } else if (hp->flags & SG_FLAG_MMAP_IO) {
1794 res = -EBUSY; /* sfp->res_in_use == 1 */
1795 if (dxfer_len > rsv_schp->bufflen)
1796 res = -ENOMEM;
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001797 mutex_unlock(&sfp->f_mutex);
Todd Poynor8d26f492017-08-15 21:48:43 -07001798 return res;
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001799 } else {
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001800 res = sg_build_indirect(req_schp, sfp, dxfer_len);
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001801 if (res) {
1802 mutex_unlock(&sfp->f_mutex);
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001803 return res;
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001804 }
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001805 }
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001806 mutex_unlock(&sfp->f_mutex);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001807
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001808 md->pages = req_schp->pages;
1809 md->page_order = req_schp->page_order;
1810 md->nr_entries = req_schp->k_use_sg;
FUJITA Tomonori56c451f2008-12-18 14:49:37 +09001811 md->offset = 0;
FUJITA Tomonori97ae77a2008-12-18 14:49:38 +09001812 md->null_mapped = hp->dxferp ? 0 : 1;
FUJITA Tomonoriecb554a2009-07-09 14:46:53 +02001813 if (dxfer_dir == SG_DXFER_TO_FROM_DEV)
1814 md->from_user = 1;
1815 else
1816 md->from_user = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001818
FUJITA Tomonori0fdf96b2009-04-03 09:12:20 +09001819 if (iov_count) {
Al Virofdc81f42015-03-21 20:25:30 -04001820 struct iovec *iov = NULL;
Kent Overstreet26e49cf2015-01-18 16:16:31 +01001821 struct iov_iter i;
FUJITA Tomonori0fdf96b2009-04-03 09:12:20 +09001822
Arnd Bergmann98aaaec2019-03-14 17:45:18 +01001823#ifdef CONFIG_COMPAT
1824 if (in_compat_syscall())
1825 res = compat_import_iovec(rw, hp->dxferp, iov_count,
1826 0, &iov, &i);
1827 else
1828#endif
1829 res = import_iovec(rw, hp->dxferp, iov_count,
1830 0, &iov, &i);
Al Virofdc81f42015-03-21 20:25:30 -04001831 if (res < 0)
1832 return res;
FUJITA Tomonori0fdf96b2009-04-03 09:12:20 +09001833
Al Virofdc81f42015-03-21 20:25:30 -04001834 iov_iter_truncate(&i, hp->dxfer_len);
Al Viro137d01d2017-02-19 07:15:27 +00001835 if (!iov_iter_count(&i)) {
1836 kfree(iov);
1837 return -EINVAL;
1838 }
FUJITA Tomonori0fdf96b2009-04-03 09:12:20 +09001839
Kent Overstreet26e49cf2015-01-18 16:16:31 +01001840 res = blk_rq_map_user_iov(q, rq, md, &i, GFP_ATOMIC);
FUJITA Tomonori0fdf96b2009-04-03 09:12:20 +09001841 kfree(iov);
1842 } else
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001843 res = blk_rq_map_user(q, rq, md, hp->dxferp,
1844 hp->dxfer_len, GFP_ATOMIC);
1845
1846 if (!res) {
1847 srp->bio = rq->bio;
1848
1849 if (!md) {
1850 req_schp->dio_in_use = 1;
1851 hp->info |= SG_INFO_DIRECT_IO;
1852 }
1853 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001854 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855}
1856
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001857static int
1858sg_finish_rem_req(Sg_request *srp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859{
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +09001860 int ret = 0;
1861
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 Sg_fd *sfp = srp->parentfp;
1863 Sg_scatter_hold *req_schp = &srp->data;
1864
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001865 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
1866 "sg_finish_rem_req: res_used=%d\n",
1867 (int) srp->res_used));
Tony Battersby75686152015-02-13 12:09:44 -05001868 if (srp->bio)
1869 ret = blk_rq_unmap_user(srp->bio);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001870
Tony Battersby75686152015-02-13 12:09:44 -05001871 if (srp->rq) {
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001872 scsi_req_free_cmd(scsi_req(srp->rq));
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001873 blk_put_request(srp->rq);
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001874 }
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001875
Christof Schmitte27168f2009-09-17 09:10:14 +02001876 if (srp->res_used)
1877 sg_unlink_reserve(sfp, srp);
1878 else
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001879 sg_remove_scat(sfp, req_schp);
Christof Schmitte27168f2009-09-17 09:10:14 +02001880
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +09001881 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882}
1883
1884static int
1885sg_build_sgat(Sg_scatter_hold * schp, const Sg_fd * sfp, int tablesize)
1886{
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001887 int sg_bufflen = tablesize * sizeof(struct page *);
Al Viro2d20eaf2006-02-01 06:31:40 -05001888 gfp_t gfp_flags = GFP_ATOMIC | __GFP_NOWARN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001890 schp->pages = kzalloc(sg_bufflen, gfp_flags);
1891 if (!schp->pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 schp->sglist_len = sg_bufflen;
Mike Christied6b10342005-11-08 04:06:41 -06001894 return tablesize; /* number of scat_gath elements allocated */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895}
1896
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897static int
1898sg_build_indirect(Sg_scatter_hold * schp, Sg_fd * sfp, int buff_size)
1899{
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001900 int ret_sz = 0, i, k, rem_sz, num, mx_sc_elems;
Mike Christied6b10342005-11-08 04:06:41 -06001901 int sg_tablesize = sfp->parentdp->sg_tablesize;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001902 int blk_size = buff_size, order;
Jeff Moyer5b9d3972018-06-18 09:57:12 -04001903 gfp_t gfp_mask = GFP_ATOMIC | __GFP_COMP | __GFP_NOWARN | __GFP_ZERO;
Hannes Reinecke745dfa02017-04-07 09:34:12 +02001904 struct sg_device *sdp = sfp->parentdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905
Eric Sesterhennfb119932007-05-23 14:41:36 -07001906 if (blk_size < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 return -EFAULT;
1908 if (0 == blk_size)
1909 ++blk_size; /* don't know why */
FUJITA Tomonorib2ed6c62009-02-12 02:42:57 +09001910 /* round request up to next highest SG_SECTOR_SZ byte boundary */
1911 blk_size = ALIGN(blk_size, SG_SECTOR_SZ);
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001912 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
1913 "sg_build_indirect: buff_size=%d, blk_size=%d\n",
1914 buff_size, blk_size));
Mike Christied6b10342005-11-08 04:06:41 -06001915
1916 /* N.B. ret_sz carried into this block ... */
1917 mx_sc_elems = sg_build_sgat(schp, sfp, sg_tablesize);
1918 if (mx_sc_elems < 0)
1919 return mx_sc_elems; /* most likely -ENOMEM */
1920
Douglas Gilbert6460e752006-09-20 18:20:49 -04001921 num = scatter_elem_sz;
1922 if (unlikely(num != scatter_elem_sz_prev)) {
1923 if (num < PAGE_SIZE) {
1924 scatter_elem_sz = PAGE_SIZE;
1925 scatter_elem_sz_prev = PAGE_SIZE;
1926 } else
1927 scatter_elem_sz_prev = num;
1928 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001929
Hannes Reinecke745dfa02017-04-07 09:34:12 +02001930 if (sdp->device->host->unchecked_isa_dma)
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001931 gfp_mask |= GFP_DMA;
1932
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001933 order = get_order(num);
1934retry:
1935 ret_sz = 1 << (PAGE_SHIFT + order);
1936
1937 for (k = 0, rem_sz = blk_size; rem_sz > 0 && k < mx_sc_elems;
1938 k++, rem_sz -= ret_sz) {
1939
Douglas Gilbert6460e752006-09-20 18:20:49 -04001940 num = (rem_sz > scatter_elem_sz_prev) ?
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001941 scatter_elem_sz_prev : rem_sz;
1942
Jeff Moyer5b9d3972018-06-18 09:57:12 -04001943 schp->pages[k] = alloc_pages(gfp_mask, order);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001944 if (!schp->pages[k])
1945 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946
Douglas Gilbert6460e752006-09-20 18:20:49 -04001947 if (num == scatter_elem_sz_prev) {
1948 if (unlikely(ret_sz > scatter_elem_sz_prev)) {
1949 scatter_elem_sz = ret_sz;
1950 scatter_elem_sz_prev = ret_sz;
1951 }
1952 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001954 SCSI_LOG_TIMEOUT(5, sg_printk(KERN_INFO, sfp->parentdp,
1955 "sg_build_indirect: k=%d, num=%d, ret_sz=%d\n",
1956 k, num, ret_sz));
Mike Christied6b10342005-11-08 04:06:41 -06001957 } /* end of for loop */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001959 schp->page_order = order;
Mike Christied6b10342005-11-08 04:06:41 -06001960 schp->k_use_sg = k;
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001961 SCSI_LOG_TIMEOUT(5, sg_printk(KERN_INFO, sfp->parentdp,
1962 "sg_build_indirect: k_use_sg=%d, rem_sz=%d\n",
1963 k, rem_sz));
Mike Christied6b10342005-11-08 04:06:41 -06001964
1965 schp->bufflen = blk_size;
1966 if (rem_sz > 0) /* must have failed */
1967 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 return 0;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001969out:
1970 for (i = 0; i < k; i++)
Michal Schmidte71044e2009-09-03 14:27:08 +02001971 __free_pages(schp->pages[i], order);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001972
1973 if (--order >= 0)
1974 goto retry;
1975
1976 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977}
1978
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979static void
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001980sg_remove_scat(Sg_fd * sfp, Sg_scatter_hold * schp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981{
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001982 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
1983 "sg_remove_scat: k_use_sg=%d\n", schp->k_use_sg));
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001984 if (schp->pages && schp->sglist_len > 0) {
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001985 if (!schp->dio_in_use) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 int k;
1987
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001988 for (k = 0; k < schp->k_use_sg && schp->pages[k]; k++) {
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001989 SCSI_LOG_TIMEOUT(5,
1990 sg_printk(KERN_INFO, sfp->parentdp,
1991 "sg_remove_scat: k=%d, pg=0x%p\n",
1992 k, schp->pages[k]));
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001993 __free_pages(schp->pages[k], schp->page_order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 }
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001995
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001996 kfree(schp->pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 }
Mike Christied6b10342005-11-08 04:06:41 -06001998 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 memset(schp, 0, sizeof (*schp));
2000}
2001
2002static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003sg_read_oxfer(Sg_request * srp, char __user *outp, int num_read_xfer)
2004{
2005 Sg_scatter_hold *schp = &srp->data;
Mike Christied6b10342005-11-08 04:06:41 -06002006 int k, num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002008 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, srp->parentfp->parentdp,
2009 "sg_read_oxfer: num_read_xfer=%d\n",
2010 num_read_xfer));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 if ((!outp) || (num_read_xfer <= 0))
2012 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02002014 num = 1 << (PAGE_SHIFT + schp->page_order);
2015 for (k = 0; k < schp->k_use_sg && schp->pages[k]; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06002016 if (num > num_read_xfer) {
Al Viroc8c12792019-10-17 20:39:23 +01002017 if (copy_to_user(outp, page_address(schp->pages[k]),
Mike Christied6b10342005-11-08 04:06:41 -06002018 num_read_xfer))
2019 return -EFAULT;
2020 break;
2021 } else {
Al Viroc8c12792019-10-17 20:39:23 +01002022 if (copy_to_user(outp, page_address(schp->pages[k]),
Mike Christied6b10342005-11-08 04:06:41 -06002023 num))
2024 return -EFAULT;
2025 num_read_xfer -= num;
2026 if (num_read_xfer <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 break;
Mike Christied6b10342005-11-08 04:06:41 -06002028 outp += num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 }
Mike Christied6b10342005-11-08 04:06:41 -06002031
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 return 0;
2033}
2034
2035static void
2036sg_build_reserve(Sg_fd * sfp, int req_size)
2037{
2038 Sg_scatter_hold *schp = &sfp->reserve;
2039
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002040 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
2041 "sg_build_reserve: req_size=%d\n", req_size));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 do {
2043 if (req_size < PAGE_SIZE)
2044 req_size = PAGE_SIZE;
2045 if (0 == sg_build_indirect(schp, sfp, req_size))
2046 return;
2047 else
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002048 sg_remove_scat(sfp, schp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 req_size >>= 1; /* divide by 2 */
2050 } while (req_size > (PAGE_SIZE / 2));
2051}
2052
2053static void
2054sg_link_reserve(Sg_fd * sfp, Sg_request * srp, int size)
2055{
2056 Sg_scatter_hold *req_schp = &srp->data;
2057 Sg_scatter_hold *rsv_schp = &sfp->reserve;
Mike Christied6b10342005-11-08 04:06:41 -06002058 int k, num, rem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059
2060 srp->res_used = 1;
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002061 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
2062 "sg_link_reserve: size=%d\n", size));
Brian Kingeca7be52006-02-14 12:42:24 -06002063 rem = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02002065 num = 1 << (PAGE_SHIFT + rsv_schp->page_order);
2066 for (k = 0; k < rsv_schp->k_use_sg; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06002067 if (rem <= num) {
Mike Christied6b10342005-11-08 04:06:41 -06002068 req_schp->k_use_sg = k + 1;
2069 req_schp->sglist_len = rsv_schp->sglist_len;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02002070 req_schp->pages = rsv_schp->pages;
Mike Christied6b10342005-11-08 04:06:41 -06002071
2072 req_schp->bufflen = size;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02002073 req_schp->page_order = rsv_schp->page_order;
Mike Christied6b10342005-11-08 04:06:41 -06002074 break;
2075 } else
2076 rem -= num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 }
Mike Christied6b10342005-11-08 04:06:41 -06002078
2079 if (k >= rsv_schp->k_use_sg)
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002080 SCSI_LOG_TIMEOUT(1, sg_printk(KERN_INFO, sfp->parentdp,
2081 "sg_link_reserve: BAD size\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082}
2083
2084static void
2085sg_unlink_reserve(Sg_fd * sfp, Sg_request * srp)
2086{
2087 Sg_scatter_hold *req_schp = &srp->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002089 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, srp->parentfp->parentdp,
2090 "sg_unlink_reserve: req->k_use_sg=%d\n",
2091 (int) req_schp->k_use_sg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 req_schp->k_use_sg = 0;
2093 req_schp->bufflen = 0;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02002094 req_schp->pages = NULL;
2095 req_schp->page_order = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 req_schp->sglist_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 srp->res_used = 0;
Hannes Reineckee791ce22017-04-24 10:26:36 +02002098 /* Called without mutex lock to avoid deadlock */
2099 sfp->res_in_use = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100}
2101
2102static Sg_request *
2103sg_get_rq_mark(Sg_fd * sfp, int pack_id)
2104{
2105 Sg_request *resp;
2106 unsigned long iflags;
2107
2108 write_lock_irqsave(&sfp->rq_list_lock, iflags);
Hannes Reinecke109bade2017-04-07 09:34:16 +02002109 list_for_each_entry(resp, &sfp->rq_list, entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 /* look for requests that are ready + not SG_IO owned */
2111 if ((1 == resp->done) && (!resp->sg_io_owned) &&
2112 ((-1 == pack_id) || (resp->header.pack_id == pack_id))) {
2113 resp->done = 2; /* guard against other readers */
Johannes Thumshirn48ae8482017-05-10 09:53:40 +02002114 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
2115 return resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 }
2117 }
2118 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
Johannes Thumshirn48ae8482017-05-10 09:53:40 +02002119 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120}
2121
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122/* always adds to end of list */
2123static Sg_request *
2124sg_add_request(Sg_fd * sfp)
2125{
2126 int k;
2127 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 Sg_request *rp = sfp->req_arr;
2129
2130 write_lock_irqsave(&sfp->rq_list_lock, iflags);
Hannes Reinecke109bade2017-04-07 09:34:16 +02002131 if (!list_empty(&sfp->rq_list)) {
2132 if (!sfp->cmd_q)
2133 goto out_unlock;
2134
2135 for (k = 0; k < SG_MAX_QUEUE; ++k, ++rp) {
2136 if (!rp->parentfp)
2137 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 }
Hannes Reinecke109bade2017-04-07 09:34:16 +02002139 if (k >= SG_MAX_QUEUE)
2140 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 }
Hannes Reinecke109bade2017-04-07 09:34:16 +02002142 memset(rp, 0, sizeof (Sg_request));
2143 rp->parentfp = sfp;
2144 rp->header.duration = jiffies_to_msecs(jiffies);
2145 list_add_tail(&rp->entry, &sfp->rq_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
Hannes Reinecke109bade2017-04-07 09:34:16 +02002147 return rp;
2148out_unlock:
2149 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
2150 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151}
2152
2153/* Return of 1 for found; 0 for not found */
2154static int
2155sg_remove_request(Sg_fd * sfp, Sg_request * srp)
2156{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 unsigned long iflags;
2158 int res = 0;
2159
Hannes Reinecke109bade2017-04-07 09:34:16 +02002160 if (!sfp || !srp || list_empty(&sfp->rq_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 return res;
2162 write_lock_irqsave(&sfp->rq_list_lock, iflags);
Hannes Reinecke109bade2017-04-07 09:34:16 +02002163 if (!list_empty(&srp->entry)) {
2164 list_del(&srp->entry);
2165 srp->parentfp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 res = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 }
2168 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
2169 return res;
2170}
2171
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172static Sg_fd *
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002173sg_add_sfp(Sg_device * sdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174{
2175 Sg_fd *sfp;
2176 unsigned long iflags;
Alan Stern44ec9542007-02-20 11:01:57 -05002177 int bufflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
Mike Christied6b10342005-11-08 04:06:41 -06002179 sfp = kzalloc(sizeof(*sfp), GFP_ATOMIC | __GFP_NOWARN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 if (!sfp)
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002181 return ERR_PTR(-ENOMEM);
Mike Christied6b10342005-11-08 04:06:41 -06002182
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 init_waitqueue_head(&sfp->read_wait);
2184 rwlock_init(&sfp->rq_list_lock);
Hannes Reinecke109bade2017-04-07 09:34:16 +02002185 INIT_LIST_HEAD(&sfp->rq_list);
Tony Battersbyc6517b792009-01-21 14:45:50 -05002186 kref_init(&sfp->f_ref);
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02002187 mutex_init(&sfp->f_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 sfp->timeout = SG_DEFAULT_TIMEOUT;
2189 sfp->timeout_user = SG_DEFAULT_TIMEOUT_USER;
2190 sfp->force_packid = SG_DEF_FORCE_PACK_ID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 sfp->cmd_q = SG_DEF_COMMAND_Q;
2192 sfp->keep_orphan = SG_DEF_KEEP_ORPHAN;
2193 sfp->parentdp = sdp;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002194 write_lock_irqsave(&sdp->sfd_lock, iflags);
2195 if (atomic_read(&sdp->detaching)) {
2196 write_unlock_irqrestore(&sdp->sfd_lock, iflags);
Tony Battersbyc170e5a2018-07-12 16:30:45 -04002197 kfree(sfp);
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002198 return ERR_PTR(-ENODEV);
2199 }
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002200 list_add_tail(&sfp->sfd_siblings, &sdp->sfds);
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002201 write_unlock_irqrestore(&sdp->sfd_lock, iflags);
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002202 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
2203 "sg_add_sfp: sfp=0x%p\n", sfp));
Douglas Gilbert6460e752006-09-20 18:20:49 -04002204 if (unlikely(sg_big_buff != def_reserved_size))
2205 sg_big_buff = def_reserved_size;
2206
Alan Stern44ec9542007-02-20 11:01:57 -05002207 bufflen = min_t(int, sg_big_buff,
Akinobu Mita46f69e62014-06-02 22:56:46 +09002208 max_sectors_bytes(sdp->device->request_queue));
Alan Stern44ec9542007-02-20 11:01:57 -05002209 sg_build_reserve(sfp, bufflen);
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002210 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
2211 "sg_add_sfp: bufflen=%d, k_use_sg=%d\n",
2212 sfp->reserve.bufflen,
2213 sfp->reserve.k_use_sg));
Tony Battersbyc6517b792009-01-21 14:45:50 -05002214
2215 kref_get(&sdp->d_ref);
2216 __module_get(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 return sfp;
2218}
2219
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002220static void
2221sg_remove_sfp_usercontext(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222{
Tony Battersbyc6517b792009-01-21 14:45:50 -05002223 struct sg_fd *sfp = container_of(work, struct sg_fd, ew.work);
2224 struct sg_device *sdp = sfp->parentdp;
Hannes Reinecke109bade2017-04-07 09:34:16 +02002225 Sg_request *srp;
Hannes Reinecke97d27b0dd2017-04-07 09:34:17 +02002226 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227
Tony Battersbyc6517b792009-01-21 14:45:50 -05002228 /* Cleanup any responses which were never read(). */
Hannes Reinecke97d27b0dd2017-04-07 09:34:17 +02002229 write_lock_irqsave(&sfp->rq_list_lock, iflags);
Hannes Reinecke109bade2017-04-07 09:34:16 +02002230 while (!list_empty(&sfp->rq_list)) {
2231 srp = list_first_entry(&sfp->rq_list, Sg_request, entry);
2232 sg_finish_rem_req(srp);
Hannes Reinecke97d27b0dd2017-04-07 09:34:17 +02002233 list_del(&srp->entry);
2234 srp->parentfp = NULL;
Hannes Reinecke109bade2017-04-07 09:34:16 +02002235 }
Hannes Reinecke97d27b0dd2017-04-07 09:34:17 +02002236 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
Tony Battersbyc6517b792009-01-21 14:45:50 -05002237
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 if (sfp->reserve.bufflen > 0) {
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002239 SCSI_LOG_TIMEOUT(6, sg_printk(KERN_INFO, sdp,
2240 "sg_remove_sfp: bufflen=%d, k_use_sg=%d\n",
Tony Battersbyc6517b792009-01-21 14:45:50 -05002241 (int) sfp->reserve.bufflen,
2242 (int) sfp->reserve.k_use_sg));
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002243 sg_remove_scat(sfp, &sfp->reserve);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05002245
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002246 SCSI_LOG_TIMEOUT(6, sg_printk(KERN_INFO, sdp,
2247 "sg_remove_sfp: sfp=0x%p\n", sfp));
Mike Christied6b10342005-11-08 04:06:41 -06002248 kfree(sfp);
Tony Battersbyc6517b792009-01-21 14:45:50 -05002249
2250 scsi_device_put(sdp->device);
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002251 kref_put(&sdp->d_ref, sg_device_destroy);
Tony Battersbyc6517b792009-01-21 14:45:50 -05002252 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253}
2254
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002255static void
2256sg_remove_sfp(struct kref *kref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257{
Tony Battersbyc6517b792009-01-21 14:45:50 -05002258 struct sg_fd *sfp = container_of(kref, struct sg_fd, f_ref);
James Bottomley065b4a22013-10-25 10:27:02 +01002259 struct sg_device *sdp = sfp->parentdp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002260 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002262 write_lock_irqsave(&sdp->sfd_lock, iflags);
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002263 list_del(&sfp->sfd_siblings);
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002264 write_unlock_irqrestore(&sdp->sfd_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265
FUJITA Tomonori015640e2009-04-03 19:28:06 +09002266 INIT_WORK(&sfp->ew.work, sg_remove_sfp_usercontext);
2267 schedule_work(&sfp->ew.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268}
2269
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270#ifdef CONFIG_SCSI_PROC_FS
2271static int
James Bottomley7c07d612007-08-05 13:36:11 -05002272sg_idr_max_id(int id, void *p, void *data)
2273{
2274 int *k = data;
2275
2276 if (*k < id)
2277 *k = id;
2278
2279 return 0;
2280}
2281
2282static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283sg_last_dev(void)
2284{
Tony Battersby53474c02008-01-22 15:25:49 -05002285 int k = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 unsigned long iflags;
2287
James Bottomley7c07d612007-08-05 13:36:11 -05002288 read_lock_irqsave(&sg_index_lock, iflags);
2289 idr_for_each(&sg_index_idr, sg_idr_max_id, &k);
2290 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 return k + 1; /* origin 1 */
2292}
2293#endif
2294
Tony Battersbyc6517b792009-01-21 14:45:50 -05002295/* must be called with sg_index_lock held */
2296static Sg_device *sg_lookup_dev(int dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297{
Tony Battersbyc6517b792009-01-21 14:45:50 -05002298 return idr_find(&sg_index_idr, dev);
2299}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002301static Sg_device *
2302sg_get_dev(int dev)
Tony Battersbyc6517b792009-01-21 14:45:50 -05002303{
2304 struct sg_device *sdp;
2305 unsigned long flags;
2306
2307 read_lock_irqsave(&sg_index_lock, flags);
2308 sdp = sg_lookup_dev(dev);
2309 if (!sdp)
2310 sdp = ERR_PTR(-ENXIO);
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002311 else if (atomic_read(&sdp->detaching)) {
2312 /* If sdp->detaching, then the refcount may already be 0, in
Tony Battersbyc6517b792009-01-21 14:45:50 -05002313 * which case it would be a bug to do kref_get().
2314 */
2315 sdp = ERR_PTR(-ENODEV);
2316 } else
2317 kref_get(&sdp->d_ref);
2318 read_unlock_irqrestore(&sg_index_lock, flags);
James Bottomley7c07d612007-08-05 13:36:11 -05002319
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 return sdp;
2321}
2322
2323#ifdef CONFIG_SCSI_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324static int sg_proc_seq_show_int(struct seq_file *s, void *v);
2325
2326static int sg_proc_single_open_adio(struct inode *inode, struct file *file);
2327static ssize_t sg_proc_write_adio(struct file *filp, const char __user *buffer,
2328 size_t count, loff_t *off);
Alexey Dobriyan97a32532020-02-03 17:37:17 -08002329static const struct proc_ops adio_proc_ops = {
2330 .proc_open = sg_proc_single_open_adio,
2331 .proc_read = seq_read,
2332 .proc_lseek = seq_lseek,
2333 .proc_write = sg_proc_write_adio,
2334 .proc_release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335};
2336
2337static int sg_proc_single_open_dressz(struct inode *inode, struct file *file);
2338static ssize_t sg_proc_write_dressz(struct file *filp,
2339 const char __user *buffer, size_t count, loff_t *off);
Alexey Dobriyan97a32532020-02-03 17:37:17 -08002340static const struct proc_ops dressz_proc_ops = {
2341 .proc_open = sg_proc_single_open_dressz,
2342 .proc_read = seq_read,
2343 .proc_lseek = seq_lseek,
2344 .proc_write = sg_proc_write_dressz,
2345 .proc_release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346};
2347
2348static int sg_proc_seq_show_version(struct seq_file *s, void *v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349static int sg_proc_seq_show_devhdr(struct seq_file *s, void *v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350static int sg_proc_seq_show_dev(struct seq_file *s, void *v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351static void * dev_seq_start(struct seq_file *s, loff_t *pos);
2352static void * dev_seq_next(struct seq_file *s, void *v, loff_t *pos);
2353static void dev_seq_stop(struct seq_file *s, void *v);
James Morris88e9d342009-09-22 16:43:43 -07002354static const struct seq_operations dev_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 .start = dev_seq_start,
2356 .next = dev_seq_next,
2357 .stop = dev_seq_stop,
2358 .show = sg_proc_seq_show_dev,
2359};
2360
2361static int sg_proc_seq_show_devstrs(struct seq_file *s, void *v);
James Morris88e9d342009-09-22 16:43:43 -07002362static const struct seq_operations devstrs_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 .start = dev_seq_start,
2364 .next = dev_seq_next,
2365 .stop = dev_seq_stop,
2366 .show = sg_proc_seq_show_devstrs,
2367};
2368
2369static int sg_proc_seq_show_debug(struct seq_file *s, void *v);
James Morris88e9d342009-09-22 16:43:43 -07002370static const struct seq_operations debug_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 .start = dev_seq_start,
2372 .next = dev_seq_next,
2373 .stop = dev_seq_stop,
2374 .show = sg_proc_seq_show_debug,
2375};
2376
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377static int
2378sg_proc_init(void)
2379{
Christoph Hellwigb8b14832018-04-11 11:26:22 +02002380 struct proc_dir_entry *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381
Christoph Hellwigb8b14832018-04-11 11:26:22 +02002382 p = proc_mkdir("scsi/sg", NULL);
2383 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 return 1;
Christoph Hellwigb8b14832018-04-11 11:26:22 +02002385
Alexey Dobriyan97a32532020-02-03 17:37:17 -08002386 proc_create("allow_dio", S_IRUGO | S_IWUSR, p, &adio_proc_ops);
Christoph Hellwigb8b14832018-04-11 11:26:22 +02002387 proc_create_seq("debug", S_IRUGO, p, &debug_seq_ops);
Alexey Dobriyan97a32532020-02-03 17:37:17 -08002388 proc_create("def_reserved_size", S_IRUGO | S_IWUSR, p, &dressz_proc_ops);
Christoph Hellwigb8b14832018-04-11 11:26:22 +02002389 proc_create_single("device_hdr", S_IRUGO, p, sg_proc_seq_show_devhdr);
2390 proc_create_seq("devices", S_IRUGO, p, &dev_seq_ops);
2391 proc_create_seq("device_strs", S_IRUGO, p, &devstrs_seq_ops);
2392 proc_create_single("version", S_IRUGO, p, sg_proc_seq_show_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 return 0;
2394}
2395
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396
2397static int sg_proc_seq_show_int(struct seq_file *s, void *v)
2398{
2399 seq_printf(s, "%d\n", *((int *)s->private));
2400 return 0;
2401}
2402
2403static int sg_proc_single_open_adio(struct inode *inode, struct file *file)
2404{
2405 return single_open(file, sg_proc_seq_show_int, &sg_allow_dio);
2406}
2407
2408static ssize_t
2409sg_proc_write_adio(struct file *filp, const char __user *buffer,
2410 size_t count, loff_t *off)
2411{
Stephen Boyd7e95fff2012-01-10 15:42:34 -08002412 int err;
2413 unsigned long num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414
2415 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
2416 return -EACCES;
Stephen Boyd7e95fff2012-01-10 15:42:34 -08002417 err = kstrtoul_from_user(buffer, count, 0, &num);
2418 if (err)
2419 return err;
2420 sg_allow_dio = num ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 return count;
2422}
2423
2424static int sg_proc_single_open_dressz(struct inode *inode, struct file *file)
2425{
2426 return single_open(file, sg_proc_seq_show_int, &sg_big_buff);
2427}
2428
2429static ssize_t
2430sg_proc_write_dressz(struct file *filp, const char __user *buffer,
2431 size_t count, loff_t *off)
2432{
Stephen Boyd7e95fff2012-01-10 15:42:34 -08002433 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 unsigned long k = ULONG_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435
2436 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
2437 return -EACCES;
Stephen Boyd7e95fff2012-01-10 15:42:34 -08002438
2439 err = kstrtoul_from_user(buffer, count, 0, &k);
2440 if (err)
2441 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 if (k <= 1048576) { /* limit "big buff" to 1 MB */
2443 sg_big_buff = k;
2444 return count;
2445 }
2446 return -ERANGE;
2447}
2448
2449static int sg_proc_seq_show_version(struct seq_file *s, void *v)
2450{
2451 seq_printf(s, "%d\t%s [%s]\n", sg_version_num, SG_VERSION_STR,
2452 sg_version_date);
2453 return 0;
2454}
2455
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456static int sg_proc_seq_show_devhdr(struct seq_file *s, void *v)
2457{
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002458 seq_puts(s, "host\tchan\tid\tlun\ttype\topens\tqdepth\tbusy\tonline\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 return 0;
2460}
2461
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462struct sg_proc_deviter {
2463 loff_t index;
2464 size_t max;
2465};
2466
2467static void * dev_seq_start(struct seq_file *s, loff_t *pos)
2468{
2469 struct sg_proc_deviter * it = kmalloc(sizeof(*it), GFP_KERNEL);
2470
Jan Blunck729d70f2005-08-27 11:07:52 -07002471 s->private = it;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 if (! it)
2473 return NULL;
Jan Blunck729d70f2005-08-27 11:07:52 -07002474
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 it->index = *pos;
2476 it->max = sg_last_dev();
2477 if (it->index >= it->max)
Jan Blunck729d70f2005-08-27 11:07:52 -07002478 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 return it;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480}
2481
2482static void * dev_seq_next(struct seq_file *s, void *v, loff_t *pos)
2483{
Jan Blunck729d70f2005-08-27 11:07:52 -07002484 struct sg_proc_deviter * it = s->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485
2486 *pos = ++it->index;
2487 return (it->index < it->max) ? it : NULL;
2488}
2489
2490static void dev_seq_stop(struct seq_file *s, void *v)
2491{
Jan Blunck729d70f2005-08-27 11:07:52 -07002492 kfree(s->private);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493}
2494
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495static int sg_proc_seq_show_dev(struct seq_file *s, void *v)
2496{
2497 struct sg_proc_deviter * it = (struct sg_proc_deviter *) v;
2498 Sg_device *sdp;
2499 struct scsi_device *scsidp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002500 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501
Tony Battersbyc6517b792009-01-21 14:45:50 -05002502 read_lock_irqsave(&sg_index_lock, iflags);
2503 sdp = it ? sg_lookup_dev(it->index) : NULL;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002504 if ((NULL == sdp) || (NULL == sdp->device) ||
2505 (atomic_read(&sdp->detaching)))
2506 seq_puts(s, "-1\t-1\t-1\t-1\t-1\t-1\t-1\t-1\t-1\n");
2507 else {
2508 scsidp = sdp->device;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002509 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 -07002510 scsidp->host->host_no, scsidp->channel,
2511 scsidp->id, scsidp->lun, (int) scsidp->type,
2512 1,
2513 (int) scsidp->queue_depth,
Christoph Hellwig71e75c92014-04-11 19:07:01 +02002514 (int) atomic_read(&scsidp->device_busy),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 (int) scsi_device_online(scsidp));
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002516 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05002517 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 return 0;
2519}
2520
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521static int sg_proc_seq_show_devstrs(struct seq_file *s, void *v)
2522{
2523 struct sg_proc_deviter * it = (struct sg_proc_deviter *) v;
2524 Sg_device *sdp;
2525 struct scsi_device *scsidp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002526 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527
Tony Battersbyc6517b792009-01-21 14:45:50 -05002528 read_lock_irqsave(&sg_index_lock, iflags);
2529 sdp = it ? sg_lookup_dev(it->index) : NULL;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002530 scsidp = sdp ? sdp->device : NULL;
2531 if (sdp && scsidp && (!atomic_read(&sdp->detaching)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 seq_printf(s, "%8.8s\t%16.16s\t%4.4s\n",
2533 scsidp->vendor, scsidp->model, scsidp->rev);
2534 else
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002535 seq_puts(s, "<no active device>\n");
Tony Battersbyc6517b792009-01-21 14:45:50 -05002536 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537 return 0;
2538}
2539
James Bottomleyc0d3b9c2013-10-25 10:21:57 +01002540/* must be called while holding sg_index_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541static void sg_proc_debug_helper(struct seq_file *s, Sg_device * sdp)
2542{
Hannes Reinecke109bade2017-04-07 09:34:16 +02002543 int k, new_interface, blen, usg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 Sg_request *srp;
2545 Sg_fd *fp;
2546 const sg_io_hdr_t *hp;
2547 const char * cp;
cb59e842005-04-02 13:51:23 -06002548 unsigned int ms;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002550 k = 0;
2551 list_for_each_entry(fp, &sdp->sfds, sfd_siblings) {
2552 k++;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002553 read_lock(&fp->rq_list_lock); /* irqs already disabled */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 seq_printf(s, " FD(%d): timeout=%dms bufflen=%d "
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002555 "(res)sgat=%d low_dma=%d\n", k,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 jiffies_to_msecs(fp->timeout),
2557 fp->reserve.bufflen,
2558 (int) fp->reserve.k_use_sg,
Hannes Reinecke745dfa02017-04-07 09:34:12 +02002559 (int) sdp->device->host->unchecked_isa_dma);
Jörn Engelebaf4662012-04-12 17:33:39 -04002560 seq_printf(s, " cmd_q=%d f_packid=%d k_orphan=%d closed=0\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 (int) fp->cmd_q, (int) fp->force_packid,
Jörn Engelebaf4662012-04-12 17:33:39 -04002562 (int) fp->keep_orphan);
Hannes Reinecke109bade2017-04-07 09:34:16 +02002563 list_for_each_entry(srp, &fp->rq_list, entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 hp = &srp->header;
2565 new_interface = (hp->interface_id == '\0') ? 0 : 1;
2566 if (srp->res_used) {
Hannes Reinecke109bade2017-04-07 09:34:16 +02002567 if (new_interface &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 (SG_FLAG_MMAP_IO & hp->flags))
2569 cp = " mmap>> ";
2570 else
2571 cp = " rb>> ";
2572 } else {
2573 if (SG_INFO_DIRECT_IO_MASK & hp->info)
2574 cp = " dio>> ";
2575 else
2576 cp = " ";
2577 }
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002578 seq_puts(s, cp);
Mike Christied6b10342005-11-08 04:06:41 -06002579 blen = srp->data.bufflen;
2580 usg = srp->data.k_use_sg;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002581 seq_puts(s, srp->done ?
2582 ((1 == srp->done) ? "rcv:" : "fin:")
2583 : "act:");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 seq_printf(s, " id=%d blen=%d",
2585 srp->header.pack_id, blen);
2586 if (srp->done)
2587 seq_printf(s, " dur=%d", hp->duration);
cb59e842005-04-02 13:51:23 -06002588 else {
2589 ms = jiffies_to_msecs(jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 seq_printf(s, " t_o/elap=%d/%d",
cb59e842005-04-02 13:51:23 -06002591 (new_interface ? hp->timeout :
2592 jiffies_to_msecs(fp->timeout)),
2593 (ms > hp->duration ? ms - hp->duration : 0));
2594 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 seq_printf(s, "ms sgat=%d op=0x%02x\n", usg,
2596 (int) srp->data.cmd_opcode);
2597 }
Hannes Reinecke109bade2017-04-07 09:34:16 +02002598 if (list_empty(&fp->rq_list))
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002599 seq_puts(s, " No requests active\n");
Tony Battersbyc6517b792009-01-21 14:45:50 -05002600 read_unlock(&fp->rq_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 }
2602}
2603
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604static int sg_proc_seq_show_debug(struct seq_file *s, void *v)
2605{
2606 struct sg_proc_deviter * it = (struct sg_proc_deviter *) v;
2607 Sg_device *sdp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002608 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002610 if (it && (0 == it->index))
2611 seq_printf(s, "max_active_device=%d def_reserved_size=%d\n",
2612 (int)it->max, sg_big_buff);
Tony Battersbyc6517b792009-01-21 14:45:50 -05002613
2614 read_lock_irqsave(&sg_index_lock, iflags);
2615 sdp = it ? sg_lookup_dev(it->index) : NULL;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002616 if (NULL == sdp)
2617 goto skip;
2618 read_lock(&sdp->sfd_lock);
2619 if (!list_empty(&sdp->sfds)) {
James Bottomleyc0d3b9c2013-10-25 10:21:57 +01002620 seq_printf(s, " >>> device=%s ", sdp->disk->disk_name);
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002621 if (atomic_read(&sdp->detaching))
2622 seq_puts(s, "detaching pending close ");
2623 else if (sdp->device) {
2624 struct scsi_device *scsidp = sdp->device;
2625
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002626 seq_printf(s, "%d:%d:%d:%llu em=%d",
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002627 scsidp->host->host_no,
2628 scsidp->channel, scsidp->id,
2629 scsidp->lun,
2630 scsidp->host->hostt->emulated);
2631 }
2632 seq_printf(s, " sg_tablesize=%d excl=%d open_cnt=%d\n",
2633 sdp->sg_tablesize, sdp->exclude, sdp->open_cnt);
James Bottomleyc0d3b9c2013-10-25 10:21:57 +01002634 sg_proc_debug_helper(s, sdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 }
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002636 read_unlock(&sdp->sfd_lock);
2637skip:
Tony Battersbyc6517b792009-01-21 14:45:50 -05002638 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 return 0;
2640}
2641
2642#endif /* CONFIG_SCSI_PROC_FS */
2643
2644module_init(init_sg);
2645module_exit(exit_sg);