blob: def7ec3bbaf948dba4289800bd6943c7695352e9 [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(). */
Guoqing Jiang8eeed0b2021-01-25 05:49:57 +0100832 blk_execute_rq_nowait(sdp->disk, srp->rq, at_head, sg_rq_end_io);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +0200833 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834}
835
Jörn Engel6acddc52012-04-12 17:33:58 -0400836static int srp_done(Sg_fd *sfp, Sg_request *srp)
837{
838 unsigned long flags;
839 int ret;
840
841 read_lock_irqsave(&sfp->rq_list_lock, flags);
842 ret = srp->done;
843 read_unlock_irqrestore(&sfp->rq_list_lock, flags);
844 return ret;
845}
846
Akinobu Mita46f69e62014-06-02 22:56:46 +0900847static int max_sectors_bytes(struct request_queue *q)
848{
849 unsigned int max_sectors = queue_max_sectors(q);
850
851 max_sectors = min_t(unsigned int, max_sectors, INT_MAX >> 9);
852
853 return max_sectors << 9;
854}
855
Hannes Reinecke4759df92017-09-15 14:05:15 +0200856static void
857sg_fill_request_table(Sg_fd *sfp, sg_req_info_t *rinfo)
858{
859 Sg_request *srp;
860 int val;
861 unsigned int ms;
862
863 val = 0;
864 list_for_each_entry(srp, &sfp->rq_list, entry) {
Ben Hutchings587c3c92017-10-15 18:16:33 +0100865 if (val >= SG_MAX_QUEUE)
Hannes Reinecke4759df92017-09-15 14:05:15 +0200866 break;
Hannes Reinecke4759df92017-09-15 14:05:15 +0200867 rinfo[val].req_state = srp->done + 1;
868 rinfo[val].problem =
869 srp->header.masked_status &
870 srp->header.host_status &
871 srp->header.driver_status;
872 if (srp->done)
873 rinfo[val].duration =
874 srp->header.duration;
875 else {
876 ms = jiffies_to_msecs(jiffies);
877 rinfo[val].duration =
878 (ms > srp->header.duration) ?
879 (ms - srp->header.duration) : 0;
880 }
881 rinfo[val].orphan = srp->orphan;
882 rinfo[val].sg_io_owned = srp->sg_io_owned;
883 rinfo[val].pack_id = srp->header.pack_id;
884 rinfo[val].usr_ptr = srp->header.usr_ptr;
885 val++;
886 }
887}
888
Arnd Bergmannfd6c3d52018-08-24 14:53:13 +0200889#ifdef CONFIG_COMPAT
890struct compat_sg_req_info { /* used by SG_GET_REQUEST_TABLE ioctl() */
891 char req_state;
892 char orphan;
893 char sg_io_owned;
894 char problem;
895 int pack_id;
896 compat_uptr_t usr_ptr;
897 unsigned int duration;
898 int unused;
899};
900
901static int put_compat_request_table(struct compat_sg_req_info __user *o,
902 struct sg_req_info *rinfo)
903{
904 int i;
905 for (i = 0; i < SG_MAX_QUEUE; i++) {
906 if (copy_to_user(o + i, rinfo + i, offsetof(sg_req_info_t, usr_ptr)) ||
907 put_user((uintptr_t)rinfo[i].usr_ptr, &o[i].usr_ptr) ||
908 put_user(rinfo[i].duration, &o[i].duration) ||
909 put_user(rinfo[i].unused, &o[i].unused))
910 return -EFAULT;
911 }
912 return 0;
913}
914#endif
915
Jörn Engel37b9d1e2012-04-12 17:35:05 -0400916static long
Arnd Bergmannd320a952019-03-15 17:39:44 +0100917sg_ioctl_common(struct file *filp, Sg_device *sdp, Sg_fd *sfp,
918 unsigned int cmd_in, void __user *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 int __user *ip = p;
Christoph Hellwig176aa9d2014-10-11 12:06:47 +0200921 int result, val, read_only;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 Sg_request *srp;
923 unsigned long iflags;
924
Hannes Reinecke95e159d2014-06-25 16:39:55 +0200925 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
926 "sg_ioctl: cmd=0x%x\n", (int) cmd_in));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 read_only = (O_RDWR != (filp->f_flags & O_ACCMODE));
928
929 switch (cmd_in) {
930 case SG_IO:
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200931 if (atomic_read(&sdp->detaching))
Jörn Engeldddbf8d2012-04-12 17:32:17 -0400932 return -ENODEV;
933 if (!scsi_block_when_processing_errors(sdp->device))
934 return -ENXIO;
Jörn Engeldddbf8d2012-04-12 17:32:17 -0400935 result = sg_new_write(sfp, filp, p, SZ_SG_IO_HDR,
936 1, read_only, 1, &srp);
937 if (result < 0)
938 return result;
Jörn Engel3f0c6ab2012-04-12 17:33:25 -0400939 result = wait_event_interruptible(sfp->read_wait,
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200940 (srp_done(sfp, srp) || atomic_read(&sdp->detaching)));
941 if (atomic_read(&sdp->detaching))
Jörn Engel794c10f2012-04-12 17:32:48 -0400942 return -ENODEV;
943 write_lock_irq(&sfp->rq_list_lock);
944 if (srp->done) {
945 srp->done = 2;
Jörn Engeldddbf8d2012-04-12 17:32:17 -0400946 write_unlock_irq(&sfp->rq_list_lock);
Jörn Engel794c10f2012-04-12 17:32:48 -0400947 result = sg_new_read(sfp, p, SZ_SG_IO_HDR, srp);
948 return (result < 0) ? result : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 }
Jörn Engel794c10f2012-04-12 17:32:48 -0400950 srp->orphan = 1;
951 write_unlock_irq(&sfp->rq_list_lock);
952 return result; /* -ERESTARTSYS because signal hit process */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 case SG_SET_TIMEOUT:
954 result = get_user(val, ip);
955 if (result)
956 return result;
957 if (val < 0)
958 return -EIO;
Paul Burtonf8630bd72016-08-19 17:43:57 +0100959 if (val >= mult_frac((s64)INT_MAX, USER_HZ, HZ))
960 val = min_t(s64, mult_frac((s64)INT_MAX, USER_HZ, HZ),
Paul Burtonb9b6e802016-08-19 17:43:56 +0100961 INT_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 sfp->timeout_user = val;
Paul Burtonf8630bd72016-08-19 17:43:57 +0100963 sfp->timeout = mult_frac(val, HZ, USER_HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
965 return 0;
966 case SG_GET_TIMEOUT: /* N.B. User receives timeout as return value */
967 /* strange ..., for backward compatibility */
968 return sfp->timeout_user;
969 case SG_SET_FORCE_LOW_DMA:
Hannes Reinecke745dfa0d2017-04-07 09:34:12 +0200970 /*
971 * N.B. This ioctl never worked properly, but failed to
972 * return an error value. So returning '0' to keep compability
973 * with legacy applications.
974 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 return 0;
976 case SG_GET_LOW_DMA:
Christoph Hellwigaaff5eb2021-03-31 09:29:58 +0200977 return put_user(0, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 case SG_GET_SCSI_ID:
Al Viroa16a4742019-10-17 20:39:18 +0100979 {
980 sg_scsi_id_t v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
Douglas Gilbertcc833ac2014-06-25 14:08:03 +0200982 if (atomic_read(&sdp->detaching))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 return -ENODEV;
Al Viroa16a4742019-10-17 20:39:18 +0100984 memset(&v, 0, sizeof(v));
985 v.host_no = sdp->device->host->host_no;
986 v.channel = sdp->device->channel;
987 v.scsi_id = sdp->device->id;
988 v.lun = sdp->device->lun;
989 v.scsi_type = sdp->device->type;
990 v.h_cmd_per_lun = sdp->device->host->cmd_per_lun;
991 v.d_queue_depth = sdp->device->queue_depth;
992 if (copy_to_user(p, &v, sizeof(sg_scsi_id_t)))
993 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 return 0;
995 }
996 case SG_SET_FORCE_PACK_ID:
997 result = get_user(val, ip);
998 if (result)
999 return result;
1000 sfp->force_packid = val ? 1 : 0;
1001 return 0;
1002 case SG_GET_PACK_ID:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 read_lock_irqsave(&sfp->rq_list_lock, iflags);
Hannes Reinecke109bade2017-04-07 09:34:16 +02001004 list_for_each_entry(srp, &sfp->rq_list, entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 if ((1 == srp->done) && (!srp->sg_io_owned)) {
1006 read_unlock_irqrestore(&sfp->rq_list_lock,
1007 iflags);
Al Viroa16a4742019-10-17 20:39:18 +01001008 return put_user(srp->header.pack_id, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 }
1010 }
1011 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
Al Viroa16a4742019-10-17 20:39:18 +01001012 return put_user(-1, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 case SG_GET_NUM_WAITING:
1014 read_lock_irqsave(&sfp->rq_list_lock, iflags);
Hannes Reinecke109bade2017-04-07 09:34:16 +02001015 val = 0;
1016 list_for_each_entry(srp, &sfp->rq_list, entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 if ((1 == srp->done) && (!srp->sg_io_owned))
1018 ++val;
1019 }
1020 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1021 return put_user(val, ip);
1022 case SG_GET_SG_TABLESIZE:
1023 return put_user(sdp->sg_tablesize, ip);
1024 case SG_SET_RESERVED_SIZE:
1025 result = get_user(val, ip);
1026 if (result)
1027 return result;
1028 if (val < 0)
1029 return -EINVAL;
Alan Stern44ec9542007-02-20 11:01:57 -05001030 val = min_t(int, val,
Akinobu Mita46f69e62014-06-02 22:56:46 +09001031 max_sectors_bytes(sdp->device->request_queue));
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001032 mutex_lock(&sfp->f_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 if (val != sfp->reserve.bufflen) {
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001034 if (sfp->mmap_called ||
1035 sfp->res_in_use) {
1036 mutex_unlock(&sfp->f_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 return -EBUSY;
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001038 }
1039
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001040 sg_remove_scat(sfp, &sfp->reserve);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 sg_build_reserve(sfp, val);
1042 }
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001043 mutex_unlock(&sfp->f_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 return 0;
1045 case SG_GET_RESERVED_SIZE:
Alan Stern44ec9542007-02-20 11:01:57 -05001046 val = min_t(int, sfp->reserve.bufflen,
Akinobu Mita46f69e62014-06-02 22:56:46 +09001047 max_sectors_bytes(sdp->device->request_queue));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 return put_user(val, ip);
1049 case SG_SET_COMMAND_Q:
1050 result = get_user(val, ip);
1051 if (result)
1052 return result;
1053 sfp->cmd_q = val ? 1 : 0;
1054 return 0;
1055 case SG_GET_COMMAND_Q:
1056 return put_user((int) sfp->cmd_q, ip);
1057 case SG_SET_KEEP_ORPHAN:
1058 result = get_user(val, ip);
1059 if (result)
1060 return result;
1061 sfp->keep_orphan = val;
1062 return 0;
1063 case SG_GET_KEEP_ORPHAN:
1064 return put_user((int) sfp->keep_orphan, ip);
1065 case SG_NEXT_CMD_LEN:
1066 result = get_user(val, ip);
1067 if (result)
1068 return result;
peter changbf33f872017-02-15 14:11:54 -08001069 if (val > SG_MAX_CDB_SIZE)
1070 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 sfp->next_cmd_len = (val > 0) ? val : 0;
1072 return 0;
1073 case SG_GET_VERSION_NUM:
1074 return put_user(sg_version_num, ip);
1075 case SG_GET_ACCESS_COUNT:
1076 /* faked - we don't have a real access count anymore */
1077 val = (sdp->device ? 1 : 0);
1078 return put_user(val, ip);
1079 case SG_GET_REQUEST_TABLE:
Arnd Bergmannfd6c3d52018-08-24 14:53:13 +02001080 {
cb59e842005-04-02 13:51:23 -06001081 sg_req_info_t *rinfo;
cb59e842005-04-02 13:51:23 -06001082
Kees Cook6396bb22018-06-12 14:03:40 -07001083 rinfo = kcalloc(SG_MAX_QUEUE, SZ_SG_REQ_INFO,
Hannes Reinecke3e009742017-09-15 14:05:16 +02001084 GFP_KERNEL);
cb59e842005-04-02 13:51:23 -06001085 if (!rinfo)
1086 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 read_lock_irqsave(&sfp->rq_list_lock, iflags);
Hannes Reinecke4759df92017-09-15 14:05:15 +02001088 sg_fill_request_table(sfp, rinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
Arnd Bergmannfd6c3d52018-08-24 14:53:13 +02001090 #ifdef CONFIG_COMPAT
1091 if (in_compat_syscall())
1092 result = put_compat_request_table(p, rinfo);
1093 else
1094 #endif
1095 result = copy_to_user(p, rinfo,
1096 SZ_SG_REQ_INFO * SG_MAX_QUEUE);
cb59e842005-04-02 13:51:23 -06001097 result = result ? -EFAULT : 0;
1098 kfree(rinfo);
1099 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 }
1101 case SG_EMULATED_HOST:
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001102 if (atomic_read(&sdp->detaching))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 return -ENODEV;
1104 return put_user(sdp->device->host->hostt->emulated, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 case SCSI_IOCTL_SEND_COMMAND:
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001106 if (atomic_read(&sdp->detaching))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 return -ENODEV;
Al Viroe915e872008-09-02 17:16:41 -04001108 return sg_scsi_ioctl(sdp->device->request_queue, NULL, filp->f_mode, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 case SG_SET_DEBUG:
1110 result = get_user(val, ip);
1111 if (result)
1112 return result;
1113 sdp->sgdebug = (char) val;
1114 return 0;
Alan Stern44ec9542007-02-20 11:01:57 -05001115 case BLKSECTGET:
Akinobu Mita46f69e62014-06-02 22:56:46 +09001116 return put_user(max_sectors_bytes(sdp->device->request_queue),
Alan Stern44ec9542007-02-20 11:01:57 -05001117 ip);
Christof Schmitt6da127a2008-01-11 10:09:43 +01001118 case BLKTRACESETUP:
1119 return blk_trace_setup(sdp->device->request_queue,
1120 sdp->disk->disk_name,
Martin Peschke76e3a192009-01-30 15:46:23 +01001121 MKDEV(SCSI_GENERIC_MAJOR, sdp->index),
Bart Van Assche7475c8a2017-08-25 13:46:36 -07001122 NULL, p);
Christof Schmitt6da127a2008-01-11 10:09:43 +01001123 case BLKTRACESTART:
1124 return blk_trace_startstop(sdp->device->request_queue, 1);
1125 case BLKTRACESTOP:
1126 return blk_trace_startstop(sdp->device->request_queue, 0);
1127 case BLKTRACETEARDOWN:
1128 return blk_trace_remove(sdp->device->request_queue);
Christoph Hellwig906d15f2014-10-11 16:25:31 +02001129 case SCSI_IOCTL_GET_IDLUN:
1130 case SCSI_IOCTL_GET_BUS_NUMBER:
1131 case SCSI_IOCTL_PROBE_HOST:
1132 case SG_GET_TRANSFORM:
1133 case SG_SCSI_RESET:
1134 if (atomic_read(&sdp->detaching))
1135 return -ENODEV;
1136 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 default:
1138 if (read_only)
1139 return -EPERM; /* don't know so take safe approach */
Christoph Hellwig906d15f2014-10-11 16:25:31 +02001140 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 }
Christoph Hellwig906d15f2014-10-11 16:25:31 +02001142
1143 result = scsi_ioctl_block_when_processing_errors(sdp->device,
1144 cmd_in, filp->f_flags & O_NDELAY);
1145 if (result)
1146 return result;
Arnd Bergmannd320a952019-03-15 17:39:44 +01001147
1148 return -ENOIOCTLCMD;
1149}
1150
1151static long
1152sg_ioctl(struct file *filp, unsigned int cmd_in, unsigned long arg)
1153{
1154 void __user *p = (void __user *)arg;
1155 Sg_device *sdp;
1156 Sg_fd *sfp;
1157 int ret;
1158
1159 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
1160 return -ENXIO;
1161
1162 ret = sg_ioctl_common(filp, sdp, sfp, cmd_in, p);
1163 if (ret != -ENOIOCTLCMD)
1164 return ret;
1165
Christoph Hellwig906d15f2014-10-11 16:25:31 +02001166 return scsi_ioctl(sdp->device, cmd_in, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167}
1168
1169#ifdef CONFIG_COMPAT
1170static long sg_compat_ioctl(struct file *filp, unsigned int cmd_in, unsigned long arg)
1171{
Arnd Bergmannd320a952019-03-15 17:39:44 +01001172 void __user *p = compat_ptr(arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 Sg_device *sdp;
1174 Sg_fd *sfp;
Arnd Bergmannd320a952019-03-15 17:39:44 +01001175 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
1177 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
1178 return -ENXIO;
1179
Arnd Bergmannd320a952019-03-15 17:39:44 +01001180 ret = sg_ioctl_common(filp, sdp, sfp, cmd_in, p);
1181 if (ret != -ENOIOCTLCMD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 return ret;
Arnd Bergmannd320a952019-03-15 17:39:44 +01001183
1184 return scsi_compat_ioctl(sdp->device, cmd_in, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185}
1186#endif
1187
Al Viroafc9a422017-07-03 06:39:46 -04001188static __poll_t
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189sg_poll(struct file *filp, poll_table * wait)
1190{
Al Viroafc9a422017-07-03 06:39:46 -04001191 __poll_t res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 Sg_device *sdp;
1193 Sg_fd *sfp;
1194 Sg_request *srp;
1195 int count = 0;
1196 unsigned long iflags;
1197
Jörn Engelebaf4662012-04-12 17:33:39 -04001198 sfp = filp->private_data;
1199 if (!sfp)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001200 return EPOLLERR;
Jörn Engelebaf4662012-04-12 17:33:39 -04001201 sdp = sfp->parentdp;
1202 if (!sdp)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001203 return EPOLLERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 poll_wait(filp, &sfp->read_wait, wait);
1205 read_lock_irqsave(&sfp->rq_list_lock, iflags);
Hannes Reinecke109bade2017-04-07 09:34:16 +02001206 list_for_each_entry(srp, &sfp->rq_list, entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 /* if any read waiting, flag it */
1208 if ((0 == res) && (1 == srp->done) && (!srp->sg_io_owned))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001209 res = EPOLLIN | EPOLLRDNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 ++count;
1211 }
1212 read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1213
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001214 if (atomic_read(&sdp->detaching))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001215 res |= EPOLLHUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 else if (!sfp->cmd_q) {
1217 if (0 == count)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001218 res |= EPOLLOUT | EPOLLWRNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 } else if (count < SG_MAX_QUEUE)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08001220 res |= EPOLLOUT | EPOLLWRNORM;
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001221 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
Al Virofcc5a652017-07-16 23:54:30 -04001222 "sg_poll: res=0x%x\n", (__force u32) res));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 return res;
1224}
1225
1226static int
1227sg_fasync(int fd, struct file *filp, int mode)
1228{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 Sg_device *sdp;
1230 Sg_fd *sfp;
1231
1232 if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
1233 return -ENXIO;
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001234 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
1235 "sg_fasync: mode=%d\n", mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
Jonathan Corbet60aa4922009-02-01 14:52:56 -07001237 return fasync_helper(fd, filp, mode, &sfp->async_qp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238}
1239
Souptick Joarder0cac8e12018-04-15 00:17:41 +05301240static vm_fault_t
Dave Jiang11bac802017-02-24 14:56:41 -08001241sg_vma_fault(struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242{
Dave Jiang11bac802017-02-24 14:56:41 -08001243 struct vm_area_struct *vma = vmf->vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 Sg_fd *sfp;
Mike Christied6b10342005-11-08 04:06:41 -06001245 unsigned long offset, len, sa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 Sg_scatter_hold *rsv_schp;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001247 int k, length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
1249 if ((NULL == vma) || (!(sfp = (Sg_fd *) vma->vm_private_data)))
Nick Piggina13ff0b2008-02-07 18:46:06 -08001250 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 rsv_schp = &sfp->reserve;
Nick Piggina13ff0b2008-02-07 18:46:06 -08001252 offset = vmf->pgoff << PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 if (offset >= rsv_schp->bufflen)
Nick Piggina13ff0b2008-02-07 18:46:06 -08001254 return VM_FAULT_SIGBUS;
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001255 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sfp->parentdp,
1256 "sg_vma_fault: offset=%lu, scatg=%d\n",
1257 offset, rsv_schp->k_use_sg));
Mike Christied6b10342005-11-08 04:06:41 -06001258 sa = vma->vm_start;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001259 length = 1 << (PAGE_SHIFT + rsv_schp->page_order);
1260 for (k = 0; k < rsv_schp->k_use_sg && sa < vma->vm_end; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06001261 len = vma->vm_end - sa;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001262 len = (len < length) ? len : length;
Mike Christied6b10342005-11-08 04:06:41 -06001263 if (offset < len) {
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001264 struct page *page = nth_page(rsv_schp->pages[k],
1265 offset >> PAGE_SHIFT);
Mike Christied6b10342005-11-08 04:06:41 -06001266 get_page(page); /* increment page count */
Nick Piggina13ff0b2008-02-07 18:46:06 -08001267 vmf->page = page;
1268 return 0; /* success */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 }
Mike Christied6b10342005-11-08 04:06:41 -06001270 sa += len;
1271 offset -= len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 }
Mike Christied6b10342005-11-08 04:06:41 -06001273
Nick Piggina13ff0b2008-02-07 18:46:06 -08001274 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275}
1276
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04001277static const struct vm_operations_struct sg_mmap_vm_ops = {
Nick Piggina13ff0b2008-02-07 18:46:06 -08001278 .fault = sg_vma_fault,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279};
1280
1281static int
1282sg_mmap(struct file *filp, struct vm_area_struct *vma)
1283{
1284 Sg_fd *sfp;
Mike Christied6b10342005-11-08 04:06:41 -06001285 unsigned long req_sz, len, sa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 Sg_scatter_hold *rsv_schp;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001287 int k, length;
Todd Poynor6a8dadc2017-08-15 22:41:08 -07001288 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
1290 if ((!filp) || (!vma) || (!(sfp = (Sg_fd *) filp->private_data)))
1291 return -ENXIO;
cb59e842005-04-02 13:51:23 -06001292 req_sz = vma->vm_end - vma->vm_start;
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001293 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sfp->parentdp,
1294 "sg_mmap starting, vm_start=%p, len=%d\n",
1295 (void *) vma->vm_start, (int) req_sz));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 if (vma->vm_pgoff)
1297 return -EINVAL; /* want no offset */
1298 rsv_schp = &sfp->reserve;
Todd Poynor6a8dadc2017-08-15 22:41:08 -07001299 mutex_lock(&sfp->f_mutex);
1300 if (req_sz > rsv_schp->bufflen) {
1301 ret = -ENOMEM; /* cannot map more than reserved buffer */
1302 goto out;
1303 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
Mike Christied6b10342005-11-08 04:06:41 -06001305 sa = vma->vm_start;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001306 length = 1 << (PAGE_SHIFT + rsv_schp->page_order);
1307 for (k = 0; k < rsv_schp->k_use_sg && sa < vma->vm_end; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06001308 len = vma->vm_end - sa;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001309 len = (len < length) ? len : length;
Mike Christied6b10342005-11-08 04:06:41 -06001310 sa += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 }
Mike Christied6b10342005-11-08 04:06:41 -06001312
Nick Pigginf9aed0e2006-03-22 00:08:30 -08001313 sfp->mmap_called = 1;
Kirill A. Shutemov461c7fa2016-02-02 16:57:35 -08001314 vma->vm_flags |= VM_IO | VM_DONTEXPAND | VM_DONTDUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 vma->vm_private_data = sfp;
1316 vma->vm_ops = &sg_mmap_vm_ops;
Todd Poynor6a8dadc2017-08-15 22:41:08 -07001317out:
1318 mutex_unlock(&sfp->f_mutex);
1319 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320}
1321
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001322static void
1323sg_rq_end_io_usercontext(struct work_struct *work)
FUJITA Tomonoric96952e2009-02-04 11:36:27 +09001324{
1325 struct sg_request *srp = container_of(work, struct sg_request, ew.work);
1326 struct sg_fd *sfp = srp->parentfp;
1327
1328 sg_finish_rem_req(srp);
Hannes Reinecke97d27b0dd2017-04-07 09:34:17 +02001329 sg_remove_request(sfp, srp);
FUJITA Tomonoric96952e2009-02-04 11:36:27 +09001330 kref_put(&sfp->f_ref, sg_remove_sfp);
1331}
1332
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001333/*
1334 * This function is a "bottom half" handler that is called by the mid
1335 * level when a command is completed (or has failed).
1336 */
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001337static void
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001338sg_rq_end_io(struct request *rq, blk_status_t status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339{
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001340 struct sg_request *srp = rq->end_io_data;
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001341 struct scsi_request *req = scsi_req(rq);
Tony Battersbyc6517b792009-01-21 14:45:50 -05001342 Sg_device *sdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 Sg_fd *sfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 unsigned long iflags;
cb59e842005-04-02 13:51:23 -06001345 unsigned int ms;
FUJITA Tomonoria91a3a22008-09-02 22:50:01 +09001346 char *sense;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001347 int result, resid, done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
Tony Battersbyc6517b792009-01-21 14:45:50 -05001349 if (WARN_ON(srp->done != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 return;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001351
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 sfp = srp->parentfp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001353 if (WARN_ON(sfp == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 return;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001355
1356 sdp = sfp->parentdp;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001357 if (unlikely(atomic_read(&sdp->detaching)))
1358 pr_info("%s: device detaching\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001360 sense = req->sense;
Christoph Hellwig17d53632017-04-20 16:03:01 +02001361 result = req->result;
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001362 resid = req->resid_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001364 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sdp,
1365 "sg_cmd_done: pack_id=%d, res=0x%x\n",
1366 srp->header.pack_id, result));
Mike Christied6b10342005-11-08 04:06:41 -06001367 srp->header.resid = resid;
cb59e842005-04-02 13:51:23 -06001368 ms = jiffies_to_msecs(jiffies);
1369 srp->header.duration = (ms > srp->header.duration) ?
1370 (ms - srp->header.duration) : 0;
Mike Christied6b10342005-11-08 04:06:41 -06001371 if (0 != result) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 struct scsi_sense_hdr sshdr;
1373
Mike Christied6b10342005-11-08 04:06:41 -06001374 srp->header.status = 0xff & result;
1375 srp->header.masked_status = status_byte(result);
1376 srp->header.msg_status = msg_byte(result);
1377 srp->header.host_status = host_byte(result);
1378 srp->header.driver_status = driver_byte(result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 if ((sdp->sgdebug > 0) &&
1380 ((CHECK_CONDITION == srp->header.masked_status) ||
1381 (COMMAND_TERMINATED == srp->header.masked_status)))
Hannes Reinecked811b842014-10-24 14:26:45 +02001382 __scsi_print_sense(sdp->device, __func__, sense,
Mike Christied6b10342005-11-08 04:06:41 -06001383 SCSI_SENSE_BUFFERSIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
1385 /* Following if statement is a patch supplied by Eric Youngdale */
Mike Christied6b10342005-11-08 04:06:41 -06001386 if (driver_byte(result) != 0
1387 && scsi_normalize_sense(sense, SCSI_SENSE_BUFFERSIZE, &sshdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 && !scsi_sense_is_deferred(&sshdr)
1389 && sshdr.sense_key == UNIT_ATTENTION
1390 && sdp->device->removable) {
1391 /* Detected possible disc change. Set the bit - this */
1392 /* may be used if there are filesystems using this device */
1393 sdp->device->changed = 1;
1394 }
1395 }
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001396
1397 if (req->sense_len)
1398 memcpy(srp->sense_b, req->sense, SCSI_SENSE_BUFFERSIZE);
1399
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 /* Rely on write phase to clean out srp status values, so no "else" */
1401
Tony Battersby75686152015-02-13 12:09:44 -05001402 /*
1403 * Free the request as soon as it is complete so that its resources
1404 * can be reused without waiting for userspace to read() the
1405 * result. But keep the associated bio (if any) around until
1406 * blk_rq_unmap_user() can be called from user context.
1407 */
1408 srp->rq = NULL;
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001409 scsi_req_free_cmd(scsi_req(rq));
Jens Axboe92bc5a22018-10-24 13:52:28 -06001410 blk_put_request(rq);
Tony Battersby75686152015-02-13 12:09:44 -05001411
Tony Battersbyc6517b792009-01-21 14:45:50 -05001412 write_lock_irqsave(&sfp->rq_list_lock, iflags);
1413 if (unlikely(srp->orphan)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 if (sfp->keep_orphan)
1415 srp->sg_io_owned = 0;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001416 else
1417 done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05001419 srp->done = done;
1420 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1421
1422 if (likely(done)) {
1423 /* Now wake up any sg_read() that is waiting for this
1424 * packet.
1425 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 wake_up_interruptible(&sfp->read_wait);
Tony Battersbyc6517b792009-01-21 14:45:50 -05001427 kill_fasync(&sfp->async_qp, SIGPOLL, POLL_IN);
FUJITA Tomonoric96952e2009-02-04 11:36:27 +09001428 kref_put(&sfp->f_ref, sg_remove_sfp);
FUJITA Tomonori015640e2009-04-03 19:28:06 +09001429 } else {
1430 INIT_WORK(&srp->ew.work, sg_rq_end_io_usercontext);
1431 schedule_work(&srp->ew.work);
1432 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433}
1434
Alexey Dobriyan828c0952009-10-01 15:43:56 -07001435static const struct file_operations sg_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 .owner = THIS_MODULE,
1437 .read = sg_read,
1438 .write = sg_write,
1439 .poll = sg_poll,
Jörn Engel37b9d1e2012-04-12 17:35:05 -04001440 .unlocked_ioctl = sg_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441#ifdef CONFIG_COMPAT
1442 .compat_ioctl = sg_compat_ioctl,
1443#endif
1444 .open = sg_open,
1445 .mmap = sg_mmap,
1446 .release = sg_release,
1447 .fasync = sg_fasync,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001448 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449};
1450
gregkh@suse.ded2538782005-03-23 09:55:22 -08001451static struct class *sg_sysfs_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452
1453static int sg_sysfs_valid = 0;
1454
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001455static Sg_device *
1456sg_alloc(struct gendisk *disk, struct scsi_device *scsidp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457{
Mike Christied6b10342005-11-08 04:06:41 -06001458 struct request_queue *q = scsidp->request_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 Sg_device *sdp;
1460 unsigned long iflags;
James Bottomley7c07d612007-08-05 13:36:11 -05001461 int error;
1462 u32 k;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463
Jes Sorensen24669f752006-01-16 10:31:18 -05001464 sdp = kzalloc(sizeof(Sg_device), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 if (!sdp) {
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001466 sdev_printk(KERN_WARNING, scsidp, "%s: kmalloc Sg_device "
1467 "failure\n", __func__);
James Bottomley7c07d612007-08-05 13:36:11 -05001468 return ERR_PTR(-ENOMEM);
1469 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05001470
Tejun Heob98c52b2013-02-27 17:04:42 -08001471 idr_preload(GFP_KERNEL);
James Bottomley7c07d612007-08-05 13:36:11 -05001472 write_lock_irqsave(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
Tejun Heob98c52b2013-02-27 17:04:42 -08001474 error = idr_alloc(&sg_index_idr, sdp, 0, SG_MAX_DEVS, GFP_NOWAIT);
1475 if (error < 0) {
1476 if (error == -ENOSPC) {
1477 sdev_printk(KERN_WARNING, scsidp,
1478 "Unable to attach sg device type=%d, minor number exceeds %d\n",
1479 scsidp->type, SG_MAX_DEVS - 1);
1480 error = -ENODEV;
1481 } else {
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001482 sdev_printk(KERN_WARNING, scsidp, "%s: idr "
1483 "allocation Sg_device failure: %d\n",
1484 __func__, error);
Tejun Heob98c52b2013-02-27 17:04:42 -08001485 }
1486 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 }
Tejun Heob98c52b2013-02-27 17:04:42 -08001488 k = error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001490 SCSI_LOG_TIMEOUT(3, sdev_printk(KERN_INFO, scsidp,
1491 "sg_alloc: dev=%d \n", k));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 sprintf(disk->disk_name, "sg%d", k);
1493 disk->first_minor = k;
1494 sdp->disk = disk;
1495 sdp->device = scsidp;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001496 mutex_init(&sdp->open_rel_lock);
FUJITA Tomonori3442f802009-02-16 13:26:53 +09001497 INIT_LIST_HEAD(&sdp->sfds);
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001498 init_waitqueue_head(&sdp->open_wait);
1499 atomic_set(&sdp->detaching, 0);
1500 rwlock_init(&sdp->sfd_lock);
Martin K. Petersen8a783622010-02-26 00:20:39 -05001501 sdp->sg_tablesize = queue_max_segments(q);
James Bottomley7c07d612007-08-05 13:36:11 -05001502 sdp->index = k;
Tony Battersbyc6517b792009-01-21 14:45:50 -05001503 kref_init(&sdp->d_ref);
James Bottomley7c07d612007-08-05 13:36:11 -05001504 error = 0;
Tejun Heob98c52b2013-02-27 17:04:42 -08001505
1506out_unlock:
1507 write_unlock_irqrestore(&sg_index_lock, iflags);
1508 idr_preload_end();
1509
James Bottomley7c07d612007-08-05 13:36:11 -05001510 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 kfree(sdp);
James Bottomley7c07d612007-08-05 13:36:11 -05001512 return ERR_PTR(error);
1513 }
1514 return sdp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515}
1516
1517static int
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001518sg_add_device(struct device *cl_dev, struct class_interface *cl_intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519{
Tony Jonesee959b02008-02-22 00:13:36 +01001520 struct scsi_device *scsidp = to_scsi_device(cl_dev->parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 struct gendisk *disk;
1522 Sg_device *sdp = NULL;
1523 struct cdev * cdev = NULL;
James Bottomley7c07d612007-08-05 13:36:11 -05001524 int error;
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001525 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
1527 disk = alloc_disk(1);
1528 if (!disk) {
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001529 pr_warn("%s: alloc_disk failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 return -ENOMEM;
1531 }
1532 disk->major = SCSI_GENERIC_MAJOR;
1533
1534 error = -ENOMEM;
1535 cdev = cdev_alloc();
1536 if (!cdev) {
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001537 pr_warn("%s: cdev_alloc failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 goto out;
1539 }
1540 cdev->owner = THIS_MODULE;
1541 cdev->ops = &sg_fops;
1542
James Bottomley7c07d612007-08-05 13:36:11 -05001543 sdp = sg_alloc(disk, scsidp);
1544 if (IS_ERR(sdp)) {
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001545 pr_warn("%s: sg_alloc failed\n", __func__);
James Bottomley7c07d612007-08-05 13:36:11 -05001546 error = PTR_ERR(sdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 goto out;
1548 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
James Bottomley7c07d612007-08-05 13:36:11 -05001550 error = cdev_add(cdev, MKDEV(SCSI_GENERIC_MAJOR, sdp->index), 1);
Greg KH5e3c34c2006-01-18 16:17:46 -08001551 if (error)
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001552 goto cdev_add_err;
Greg KH5e3c34c2006-01-18 16:17:46 -08001553
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 sdp->cdev = cdev;
1555 if (sg_sysfs_valid) {
Tony Jonesee959b02008-02-22 00:13:36 +01001556 struct device *sg_class_member;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
Greg Kroah-Hartmand73a1a672008-07-21 20:03:34 -07001558 sg_class_member = device_create(sg_sysfs_class, cl_dev->parent,
1559 MKDEV(SCSI_GENERIC_MAJOR,
1560 sdp->index),
1561 sdp, "%s", disk->disk_name);
FUJITA Tomonorid07e0362008-01-15 13:18:00 +09001562 if (IS_ERR(sg_class_member)) {
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001563 pr_err("%s: device_create failed\n", __func__);
FUJITA Tomonorid07e0362008-01-15 13:18:00 +09001564 error = PTR_ERR(sg_class_member);
1565 goto cdev_add_err;
1566 }
FUJITA Tomonorid07e0362008-01-15 13:18:00 +09001567 error = sysfs_create_link(&scsidp->sdev_gendev.kobj,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 &sg_class_member->kobj, "generic");
1569 if (error)
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001570 pr_err("%s: unable to make symlink 'generic' back "
1571 "to sg%d\n", __func__, sdp->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 } else
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001573 pr_warn("%s: sg_sys Invalid\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001575 sdev_printk(KERN_NOTICE, scsidp, "Attached scsi generic sg%d "
1576 "type %d\n", sdp->index, scsidp->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
Tony Jonesee959b02008-02-22 00:13:36 +01001578 dev_set_drvdata(cl_dev, sdp);
FUJITA Tomonoria24484f2008-01-15 13:17:47 +09001579
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 return 0;
1581
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001582cdev_add_err:
James Bottomley7c07d612007-08-05 13:36:11 -05001583 write_lock_irqsave(&sg_index_lock, iflags);
1584 idr_remove(&sg_index_idr, sdp->index);
1585 write_unlock_irqrestore(&sg_index_lock, iflags);
1586 kfree(sdp);
Ishai Rabinovitz454e8952006-06-29 16:39:54 +03001587
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588out:
1589 put_disk(disk);
1590 if (cdev)
1591 cdev_del(cdev);
1592 return error;
1593}
1594
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001595static void
1596sg_device_destroy(struct kref *kref)
Tony Battersbyc6517b792009-01-21 14:45:50 -05001597{
1598 struct sg_device *sdp = container_of(kref, struct sg_device, d_ref);
1599 unsigned long flags;
1600
1601 /* CAUTION! Note that the device can still be found via idr_find()
1602 * even though the refcount is 0. Therefore, do idr_remove() BEFORE
1603 * any other cleanup.
1604 */
1605
1606 write_lock_irqsave(&sg_index_lock, flags);
1607 idr_remove(&sg_index_idr, sdp->index);
1608 write_unlock_irqrestore(&sg_index_lock, flags);
1609
1610 SCSI_LOG_TIMEOUT(3,
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001611 sg_printk(KERN_INFO, sdp, "sg_device_destroy\n"));
Tony Battersbyc6517b792009-01-21 14:45:50 -05001612
1613 put_disk(sdp->disk);
1614 kfree(sdp);
1615}
1616
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001617static void
1618sg_remove_device(struct device *cl_dev, struct class_interface *cl_intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619{
Tony Jonesee959b02008-02-22 00:13:36 +01001620 struct scsi_device *scsidp = to_scsi_device(cl_dev->parent);
1621 Sg_device *sdp = dev_get_drvdata(cl_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 unsigned long iflags;
1623 Sg_fd *sfp;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001624 int val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001626 if (!sdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 return;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001628 /* want sdp->detaching non-zero as soon as possible */
1629 val = atomic_inc_return(&sdp->detaching);
1630 if (val > 1)
1631 return; /* only want to do following once per device */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001633 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
1634 "%s\n", __func__));
Tony Battersbyc6517b792009-01-21 14:45:50 -05001635
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001636 read_lock_irqsave(&sdp->sfd_lock, iflags);
FUJITA Tomonori3442f802009-02-16 13:26:53 +09001637 list_for_each_entry(sfp, &sdp->sfds, sfd_siblings) {
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001638 wake_up_interruptible_all(&sfp->read_wait);
Tony Battersbyc6517b792009-01-21 14:45:50 -05001639 kill_fasync(&sfp->async_qp, SIGPOLL, POLL_HUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 }
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001641 wake_up_interruptible_all(&sdp->open_wait);
1642 read_unlock_irqrestore(&sdp->sfd_lock, iflags);
James Bottomley7c07d612007-08-05 13:36:11 -05001643
1644 sysfs_remove_link(&scsidp->sdev_gendev.kobj, "generic");
Tony Jonesee959b02008-02-22 00:13:36 +01001645 device_destroy(sg_sysfs_class, MKDEV(SCSI_GENERIC_MAJOR, sdp->index));
James Bottomley7c07d612007-08-05 13:36:11 -05001646 cdev_del(sdp->cdev);
1647 sdp->cdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001649 kref_put(&sdp->d_ref, sg_device_destroy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650}
1651
Douglas Gilbert6460e752006-09-20 18:20:49 -04001652module_param_named(scatter_elem_sz, scatter_elem_sz, int, S_IRUGO | S_IWUSR);
1653module_param_named(def_reserved_size, def_reserved_size, int,
1654 S_IRUGO | S_IWUSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655module_param_named(allow_dio, sg_allow_dio, int, S_IRUGO | S_IWUSR);
1656
1657MODULE_AUTHOR("Douglas Gilbert");
1658MODULE_DESCRIPTION("SCSI generic (sg) driver");
1659MODULE_LICENSE("GPL");
1660MODULE_VERSION(SG_VERSION_STR);
Rene Hermanf018fa52006-03-08 00:14:20 -08001661MODULE_ALIAS_CHARDEV_MAJOR(SCSI_GENERIC_MAJOR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662
Douglas Gilbert6460e752006-09-20 18:20:49 -04001663MODULE_PARM_DESC(scatter_elem_sz, "scatter gather element "
1664 "size (default: max(SG_SCATTER_SZ, PAGE_SIZE))");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665MODULE_PARM_DESC(def_reserved_size, "size of buffer reserved for each fd");
1666MODULE_PARM_DESC(allow_dio, "allow direct I/O (default: 0 (disallow))");
1667
1668static int __init
1669init_sg(void)
1670{
1671 int rc;
1672
Douglas Gilbert6460e752006-09-20 18:20:49 -04001673 if (scatter_elem_sz < PAGE_SIZE) {
1674 scatter_elem_sz = PAGE_SIZE;
1675 scatter_elem_sz_prev = scatter_elem_sz;
1676 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 if (def_reserved_size >= 0)
1678 sg_big_buff = def_reserved_size;
Douglas Gilbert6460e752006-09-20 18:20:49 -04001679 else
1680 def_reserved_size = sg_big_buff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
1682 rc = register_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0),
1683 SG_MAX_DEVS, "sg");
1684 if (rc)
1685 return rc;
gregkh@suse.ded2538782005-03-23 09:55:22 -08001686 sg_sysfs_class = class_create(THIS_MODULE, "scsi_generic");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 if ( IS_ERR(sg_sysfs_class) ) {
1688 rc = PTR_ERR(sg_sysfs_class);
1689 goto err_out;
1690 }
1691 sg_sysfs_valid = 1;
1692 rc = scsi_register_interface(&sg_interface);
1693 if (0 == rc) {
1694#ifdef CONFIG_SCSI_PROC_FS
1695 sg_proc_init();
1696#endif /* CONFIG_SCSI_PROC_FS */
1697 return 0;
1698 }
gregkh@suse.ded2538782005-03-23 09:55:22 -08001699 class_destroy(sg_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700err_out:
1701 unregister_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0), SG_MAX_DEVS);
1702 return rc;
1703}
1704
1705static void __exit
1706exit_sg(void)
1707{
1708#ifdef CONFIG_SCSI_PROC_FS
Christoph Hellwigb8b14832018-04-11 11:26:22 +02001709 remove_proc_subtree("scsi/sg", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710#endif /* CONFIG_SCSI_PROC_FS */
1711 scsi_unregister_interface(&sg_interface);
gregkh@suse.ded2538782005-03-23 09:55:22 -08001712 class_destroy(sg_sysfs_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 sg_sysfs_valid = 0;
1714 unregister_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0),
1715 SG_MAX_DEVS);
James Bottomley7c07d612007-08-05 13:36:11 -05001716 idr_destroy(&sg_index_idr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717}
1718
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001719static int
1720sg_start_req(Sg_request *srp, unsigned char *cmd)
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001721{
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001722 int res;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001723 struct request *rq;
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001724 struct scsi_request *req;
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001725 Sg_fd *sfp = srp->parentfp;
1726 sg_io_hdr_t *hp = &srp->header;
1727 int dxfer_len = (int) hp->dxfer_len;
1728 int dxfer_dir = hp->dxfer_direction;
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001729 unsigned int iov_count = hp->iovec_count;
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001730 Sg_scatter_hold *req_schp = &srp->data;
1731 Sg_scatter_hold *rsv_schp = &sfp->reserve;
1732 struct request_queue *q = sfp->parentdp->device->request_queue;
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001733 struct rq_map_data *md, map_data;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001734 int rw = hp->dxfer_direction == SG_DXFER_TO_DEV ? WRITE : READ;
Douglas Gilbert65c26a02014-06-03 13:18:18 -04001735 unsigned char *long_cmdp = NULL;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001736
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001737 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
1738 "sg_start_req: dxfer_len=%d\n",
1739 dxfer_len));
FUJITA Tomonori44c7b0e2008-09-02 22:50:04 +09001740
Douglas Gilbert65c26a02014-06-03 13:18:18 -04001741 if (hp->cmd_len > BLK_MAX_CDB) {
1742 long_cmdp = kzalloc(hp->cmd_len, GFP_KERNEL);
1743 if (!long_cmdp)
1744 return -ENOMEM;
1745 }
1746
Tony Battersby77728552015-02-13 12:10:58 -05001747 /*
1748 * NOTE
1749 *
1750 * With scsi-mq enabled, there are a fixed number of preallocated
1751 * requests equal in number to shost->can_queue. If all of the
Tony Battersby8e4a4182018-07-12 18:09:21 -04001752 * preallocated requests are already in use, then blk_get_request()
1753 * will sleep until an active command completes, freeing up a request.
1754 * Although waiting in an asynchronous interface is less than ideal, we
1755 * do not want to use BLK_MQ_REQ_NOWAIT here because userspace might
1756 * not expect an EWOULDBLOCK from this condition.
Tony Battersby77728552015-02-13 12:10:58 -05001757 */
Christoph Hellwigaebf5262017-01-31 16:57:31 +01001758 rq = blk_get_request(q, hp->dxfer_direction == SG_DXFER_TO_DEV ?
Christoph Hellwigff005a02018-05-09 09:54:05 +02001759 REQ_OP_SCSI_OUT : REQ_OP_SCSI_IN, 0);
Joe Lawrencea492f072014-08-28 08:15:21 -06001760 if (IS_ERR(rq)) {
Douglas Gilbert65c26a02014-06-03 13:18:18 -04001761 kfree(long_cmdp);
Joe Lawrencea492f072014-08-28 08:15:21 -06001762 return PTR_ERR(rq);
Douglas Gilbert65c26a02014-06-03 13:18:18 -04001763 }
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001764 req = scsi_req(rq);
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001765
Douglas Gilbert65c26a02014-06-03 13:18:18 -04001766 if (hp->cmd_len > BLK_MAX_CDB)
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001767 req->cmd = long_cmdp;
1768 memcpy(req->cmd, cmd, hp->cmd_len);
1769 req->cmd_len = hp->cmd_len;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001770
1771 srp->rq = rq;
1772 rq->end_io_data = srp;
Christoph Hellwig64c7f1d2017-04-05 19:18:12 +02001773 req->retries = SG_DEFAULT_RETRIES;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001774
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 if ((dxfer_len <= 0) || (dxfer_dir == SG_DXFER_NONE))
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001776 return 0;
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001777
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001778 if (sg_allow_dio && hp->flags & SG_FLAG_DIRECT_IO &&
1779 dxfer_dir != SG_DXFER_UNKNOWN && !iov_count &&
Namhyung Kim2610a252010-09-16 12:55:57 +09001780 blk_rq_aligned(q, (unsigned long)hp->dxferp, dxfer_len))
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001781 md = NULL;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001782 else
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001783 md = &map_data;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001784
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001785 if (md) {
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001786 mutex_lock(&sfp->f_mutex);
1787 if (dxfer_len <= rsv_schp->bufflen &&
1788 !sfp->res_in_use) {
1789 sfp->res_in_use = 1;
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001790 sg_link_reserve(sfp, srp, dxfer_len);
Todd Poynor8d26f492017-08-15 21:48:43 -07001791 } else if (hp->flags & SG_FLAG_MMAP_IO) {
1792 res = -EBUSY; /* sfp->res_in_use == 1 */
1793 if (dxfer_len > rsv_schp->bufflen)
1794 res = -ENOMEM;
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001795 mutex_unlock(&sfp->f_mutex);
Todd Poynor8d26f492017-08-15 21:48:43 -07001796 return res;
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001797 } else {
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001798 res = sg_build_indirect(req_schp, sfp, dxfer_len);
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001799 if (res) {
1800 mutex_unlock(&sfp->f_mutex);
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001801 return res;
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001802 }
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001803 }
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02001804 mutex_unlock(&sfp->f_mutex);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001805
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001806 md->pages = req_schp->pages;
1807 md->page_order = req_schp->page_order;
1808 md->nr_entries = req_schp->k_use_sg;
FUJITA Tomonori56c451f2008-12-18 14:49:37 +09001809 md->offset = 0;
FUJITA Tomonori97ae77a2008-12-18 14:49:38 +09001810 md->null_mapped = hp->dxferp ? 0 : 1;
FUJITA Tomonoriecb554a2009-07-09 14:46:53 +02001811 if (dxfer_dir == SG_DXFER_TO_FROM_DEV)
1812 md->from_user = 1;
1813 else
1814 md->from_user = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001816
FUJITA Tomonori0fdf96b2009-04-03 09:12:20 +09001817 if (iov_count) {
Al Virofdc81f42015-03-21 20:25:30 -04001818 struct iovec *iov = NULL;
Kent Overstreet26e49cf2015-01-18 16:16:31 +01001819 struct iov_iter i;
FUJITA Tomonori0fdf96b2009-04-03 09:12:20 +09001820
Christoph Hellwig89cd35c2020-09-25 06:51:41 +02001821 res = import_iovec(rw, hp->dxferp, iov_count, 0, &iov, &i);
Al Virofdc81f42015-03-21 20:25:30 -04001822 if (res < 0)
1823 return res;
FUJITA Tomonori0fdf96b2009-04-03 09:12:20 +09001824
Al Virofdc81f42015-03-21 20:25:30 -04001825 iov_iter_truncate(&i, hp->dxfer_len);
Al Viro137d01d2017-02-19 07:15:27 +00001826 if (!iov_iter_count(&i)) {
1827 kfree(iov);
1828 return -EINVAL;
1829 }
FUJITA Tomonori0fdf96b2009-04-03 09:12:20 +09001830
Kent Overstreet26e49cf2015-01-18 16:16:31 +01001831 res = blk_rq_map_user_iov(q, rq, md, &i, GFP_ATOMIC);
FUJITA Tomonori0fdf96b2009-04-03 09:12:20 +09001832 kfree(iov);
1833 } else
FUJITA Tomonori626710c2008-09-02 22:50:05 +09001834 res = blk_rq_map_user(q, rq, md, hp->dxferp,
1835 hp->dxfer_len, GFP_ATOMIC);
1836
1837 if (!res) {
1838 srp->bio = rq->bio;
1839
1840 if (!md) {
1841 req_schp->dio_in_use = 1;
1842 hp->info |= SG_INFO_DIRECT_IO;
1843 }
1844 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001845 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846}
1847
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02001848static int
1849sg_finish_rem_req(Sg_request *srp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850{
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +09001851 int ret = 0;
1852
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 Sg_fd *sfp = srp->parentfp;
1854 Sg_scatter_hold *req_schp = &srp->data;
1855
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001856 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
1857 "sg_finish_rem_req: res_used=%d\n",
1858 (int) srp->res_used));
Tony Battersby75686152015-02-13 12:09:44 -05001859 if (srp->bio)
1860 ret = blk_rq_unmap_user(srp->bio);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001861
Tony Battersby75686152015-02-13 12:09:44 -05001862 if (srp->rq) {
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001863 scsi_req_free_cmd(scsi_req(srp->rq));
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001864 blk_put_request(srp->rq);
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001865 }
FUJITA Tomonori10865df2008-08-28 16:17:07 +09001866
Christof Schmitte27168f2009-09-17 09:10:14 +02001867 if (srp->res_used)
1868 sg_unlink_reserve(sfp, srp);
1869 else
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001870 sg_remove_scat(sfp, req_schp);
Christof Schmitte27168f2009-09-17 09:10:14 +02001871
FUJITA Tomonorie7ee4cc2009-04-04 00:35:42 +09001872 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873}
1874
1875static int
1876sg_build_sgat(Sg_scatter_hold * schp, const Sg_fd * sfp, int tablesize)
1877{
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001878 int sg_bufflen = tablesize * sizeof(struct page *);
Al Viro2d20eaf2006-02-01 06:31:40 -05001879 gfp_t gfp_flags = GFP_ATOMIC | __GFP_NOWARN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001881 schp->pages = kzalloc(sg_bufflen, gfp_flags);
1882 if (!schp->pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 schp->sglist_len = sg_bufflen;
Mike Christied6b10342005-11-08 04:06:41 -06001885 return tablesize; /* number of scat_gath elements allocated */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886}
1887
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888static int
1889sg_build_indirect(Sg_scatter_hold * schp, Sg_fd * sfp, int buff_size)
1890{
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001891 int ret_sz = 0, i, k, rem_sz, num, mx_sc_elems;
Mike Christied6b10342005-11-08 04:06:41 -06001892 int sg_tablesize = sfp->parentdp->sg_tablesize;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001893 int blk_size = buff_size, order;
Jeff Moyer5b9d3972018-06-18 09:57:12 -04001894 gfp_t gfp_mask = GFP_ATOMIC | __GFP_COMP | __GFP_NOWARN | __GFP_ZERO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895
Eric Sesterhennfb119932007-05-23 14:41:36 -07001896 if (blk_size < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 return -EFAULT;
1898 if (0 == blk_size)
1899 ++blk_size; /* don't know why */
FUJITA Tomonorib2ed6c62009-02-12 02:42:57 +09001900 /* round request up to next highest SG_SECTOR_SZ byte boundary */
1901 blk_size = ALIGN(blk_size, SG_SECTOR_SZ);
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001902 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
1903 "sg_build_indirect: buff_size=%d, blk_size=%d\n",
1904 buff_size, blk_size));
Mike Christied6b10342005-11-08 04:06:41 -06001905
1906 /* N.B. ret_sz carried into this block ... */
1907 mx_sc_elems = sg_build_sgat(schp, sfp, sg_tablesize);
1908 if (mx_sc_elems < 0)
1909 return mx_sc_elems; /* most likely -ENOMEM */
1910
Douglas Gilbert6460e752006-09-20 18:20:49 -04001911 num = scatter_elem_sz;
1912 if (unlikely(num != scatter_elem_sz_prev)) {
1913 if (num < PAGE_SIZE) {
1914 scatter_elem_sz = PAGE_SIZE;
1915 scatter_elem_sz_prev = PAGE_SIZE;
1916 } else
1917 scatter_elem_sz_prev = num;
1918 }
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001919
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001920 order = get_order(num);
1921retry:
1922 ret_sz = 1 << (PAGE_SHIFT + order);
1923
1924 for (k = 0, rem_sz = blk_size; rem_sz > 0 && k < mx_sc_elems;
1925 k++, rem_sz -= ret_sz) {
1926
Douglas Gilbert6460e752006-09-20 18:20:49 -04001927 num = (rem_sz > scatter_elem_sz_prev) ?
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001928 scatter_elem_sz_prev : rem_sz;
1929
Jeff Moyer5b9d3972018-06-18 09:57:12 -04001930 schp->pages[k] = alloc_pages(gfp_mask, order);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001931 if (!schp->pages[k])
1932 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
Douglas Gilbert6460e752006-09-20 18:20:49 -04001934 if (num == scatter_elem_sz_prev) {
1935 if (unlikely(ret_sz > scatter_elem_sz_prev)) {
1936 scatter_elem_sz = ret_sz;
1937 scatter_elem_sz_prev = ret_sz;
1938 }
1939 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001941 SCSI_LOG_TIMEOUT(5, sg_printk(KERN_INFO, sfp->parentdp,
1942 "sg_build_indirect: k=%d, num=%d, ret_sz=%d\n",
1943 k, num, ret_sz));
Mike Christied6b10342005-11-08 04:06:41 -06001944 } /* end of for loop */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001946 schp->page_order = order;
Mike Christied6b10342005-11-08 04:06:41 -06001947 schp->k_use_sg = k;
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001948 SCSI_LOG_TIMEOUT(5, sg_printk(KERN_INFO, sfp->parentdp,
1949 "sg_build_indirect: k_use_sg=%d, rem_sz=%d\n",
1950 k, rem_sz));
Mike Christied6b10342005-11-08 04:06:41 -06001951
1952 schp->bufflen = blk_size;
1953 if (rem_sz > 0) /* must have failed */
1954 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 return 0;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001956out:
1957 for (i = 0; i < k; i++)
Michal Schmidte71044e2009-09-03 14:27:08 +02001958 __free_pages(schp->pages[i], order);
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001959
1960 if (--order >= 0)
1961 goto retry;
1962
1963 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964}
1965
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966static void
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001967sg_remove_scat(Sg_fd * sfp, Sg_scatter_hold * schp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968{
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001969 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
1970 "sg_remove_scat: k_use_sg=%d\n", schp->k_use_sg));
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001971 if (schp->pages && schp->sglist_len > 0) {
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001972 if (!schp->dio_in_use) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 int k;
1974
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001975 for (k = 0; k < schp->k_use_sg && schp->pages[k]; k++) {
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001976 SCSI_LOG_TIMEOUT(5,
1977 sg_printk(KERN_INFO, sfp->parentdp,
1978 "sg_remove_scat: k=%d, pg=0x%p\n",
1979 k, schp->pages[k]));
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001980 __free_pages(schp->pages[k], schp->page_order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 }
FUJITA Tomonori6e5a30c2008-08-28 16:17:08 +09001982
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02001983 kfree(schp->pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 }
Mike Christied6b10342005-11-08 04:06:41 -06001985 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 memset(schp, 0, sizeof (*schp));
1987}
1988
1989static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990sg_read_oxfer(Sg_request * srp, char __user *outp, int num_read_xfer)
1991{
1992 Sg_scatter_hold *schp = &srp->data;
Mike Christied6b10342005-11-08 04:06:41 -06001993 int k, num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994
Hannes Reinecke95e159d2014-06-25 16:39:55 +02001995 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, srp->parentfp->parentdp,
1996 "sg_read_oxfer: num_read_xfer=%d\n",
1997 num_read_xfer));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 if ((!outp) || (num_read_xfer <= 0))
1999 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02002001 num = 1 << (PAGE_SHIFT + schp->page_order);
2002 for (k = 0; k < schp->k_use_sg && schp->pages[k]; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06002003 if (num > num_read_xfer) {
Al Viroc8c12792019-10-17 20:39:23 +01002004 if (copy_to_user(outp, page_address(schp->pages[k]),
Mike Christied6b10342005-11-08 04:06:41 -06002005 num_read_xfer))
2006 return -EFAULT;
2007 break;
2008 } else {
Al Viroc8c12792019-10-17 20:39:23 +01002009 if (copy_to_user(outp, page_address(schp->pages[k]),
Mike Christied6b10342005-11-08 04:06:41 -06002010 num))
2011 return -EFAULT;
2012 num_read_xfer -= num;
2013 if (num_read_xfer <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 break;
Mike Christied6b10342005-11-08 04:06:41 -06002015 outp += num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 }
Mike Christied6b10342005-11-08 04:06:41 -06002018
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 return 0;
2020}
2021
2022static void
2023sg_build_reserve(Sg_fd * sfp, int req_size)
2024{
2025 Sg_scatter_hold *schp = &sfp->reserve;
2026
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002027 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
2028 "sg_build_reserve: req_size=%d\n", req_size));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 do {
2030 if (req_size < PAGE_SIZE)
2031 req_size = PAGE_SIZE;
2032 if (0 == sg_build_indirect(schp, sfp, req_size))
2033 return;
2034 else
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002035 sg_remove_scat(sfp, schp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 req_size >>= 1; /* divide by 2 */
2037 } while (req_size > (PAGE_SIZE / 2));
2038}
2039
2040static void
2041sg_link_reserve(Sg_fd * sfp, Sg_request * srp, int size)
2042{
2043 Sg_scatter_hold *req_schp = &srp->data;
2044 Sg_scatter_hold *rsv_schp = &sfp->reserve;
Mike Christied6b10342005-11-08 04:06:41 -06002045 int k, num, rem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
2047 srp->res_used = 1;
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002048 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
2049 "sg_link_reserve: size=%d\n", size));
Brian Kingeca7be52006-02-14 12:42:24 -06002050 rem = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02002052 num = 1 << (PAGE_SHIFT + rsv_schp->page_order);
2053 for (k = 0; k < rsv_schp->k_use_sg; k++) {
Mike Christied6b10342005-11-08 04:06:41 -06002054 if (rem <= num) {
Mike Christied6b10342005-11-08 04:06:41 -06002055 req_schp->k_use_sg = k + 1;
2056 req_schp->sglist_len = rsv_schp->sglist_len;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02002057 req_schp->pages = rsv_schp->pages;
Mike Christied6b10342005-11-08 04:06:41 -06002058
2059 req_schp->bufflen = size;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02002060 req_schp->page_order = rsv_schp->page_order;
Mike Christied6b10342005-11-08 04:06:41 -06002061 break;
2062 } else
2063 rem -= num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 }
Mike Christied6b10342005-11-08 04:06:41 -06002065
2066 if (k >= rsv_schp->k_use_sg)
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002067 SCSI_LOG_TIMEOUT(1, sg_printk(KERN_INFO, sfp->parentdp,
2068 "sg_link_reserve: BAD size\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069}
2070
2071static void
2072sg_unlink_reserve(Sg_fd * sfp, Sg_request * srp)
2073{
2074 Sg_scatter_hold *req_schp = &srp->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002076 SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, srp->parentfp->parentdp,
2077 "sg_unlink_reserve: req->k_use_sg=%d\n",
2078 (int) req_schp->k_use_sg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 req_schp->k_use_sg = 0;
2080 req_schp->bufflen = 0;
FUJITA Tomonori10db10d2008-08-29 12:32:18 +02002081 req_schp->pages = NULL;
2082 req_schp->page_order = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 req_schp->sglist_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 srp->res_used = 0;
Hannes Reineckee791ce22017-04-24 10:26:36 +02002085 /* Called without mutex lock to avoid deadlock */
2086 sfp->res_in_use = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087}
2088
2089static Sg_request *
2090sg_get_rq_mark(Sg_fd * sfp, int pack_id)
2091{
2092 Sg_request *resp;
2093 unsigned long iflags;
2094
2095 write_lock_irqsave(&sfp->rq_list_lock, iflags);
Hannes Reinecke109bade2017-04-07 09:34:16 +02002096 list_for_each_entry(resp, &sfp->rq_list, entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 /* look for requests that are ready + not SG_IO owned */
2098 if ((1 == resp->done) && (!resp->sg_io_owned) &&
2099 ((-1 == pack_id) || (resp->header.pack_id == pack_id))) {
2100 resp->done = 2; /* guard against other readers */
Johannes Thumshirn48ae8482017-05-10 09:53:40 +02002101 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
2102 return resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 }
2104 }
2105 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
Johannes Thumshirn48ae8482017-05-10 09:53:40 +02002106 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107}
2108
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109/* always adds to end of list */
2110static Sg_request *
2111sg_add_request(Sg_fd * sfp)
2112{
2113 int k;
2114 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 Sg_request *rp = sfp->req_arr;
2116
2117 write_lock_irqsave(&sfp->rq_list_lock, iflags);
Hannes Reinecke109bade2017-04-07 09:34:16 +02002118 if (!list_empty(&sfp->rq_list)) {
2119 if (!sfp->cmd_q)
2120 goto out_unlock;
2121
2122 for (k = 0; k < SG_MAX_QUEUE; ++k, ++rp) {
2123 if (!rp->parentfp)
2124 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 }
Hannes Reinecke109bade2017-04-07 09:34:16 +02002126 if (k >= SG_MAX_QUEUE)
2127 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 }
Hannes Reinecke109bade2017-04-07 09:34:16 +02002129 memset(rp, 0, sizeof (Sg_request));
2130 rp->parentfp = sfp;
2131 rp->header.duration = jiffies_to_msecs(jiffies);
2132 list_add_tail(&rp->entry, &sfp->rq_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
Hannes Reinecke109bade2017-04-07 09:34:16 +02002134 return rp;
2135out_unlock:
2136 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
2137 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138}
2139
2140/* Return of 1 for found; 0 for not found */
2141static int
2142sg_remove_request(Sg_fd * sfp, Sg_request * srp)
2143{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 unsigned long iflags;
2145 int res = 0;
2146
Hannes Reinecke109bade2017-04-07 09:34:16 +02002147 if (!sfp || !srp || list_empty(&sfp->rq_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 return res;
2149 write_lock_irqsave(&sfp->rq_list_lock, iflags);
Hannes Reinecke109bade2017-04-07 09:34:16 +02002150 if (!list_empty(&srp->entry)) {
2151 list_del(&srp->entry);
2152 srp->parentfp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 res = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 }
2155 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
2156 return res;
2157}
2158
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159static Sg_fd *
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002160sg_add_sfp(Sg_device * sdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161{
2162 Sg_fd *sfp;
2163 unsigned long iflags;
Alan Stern44ec9542007-02-20 11:01:57 -05002164 int bufflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165
Mike Christied6b10342005-11-08 04:06:41 -06002166 sfp = kzalloc(sizeof(*sfp), GFP_ATOMIC | __GFP_NOWARN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 if (!sfp)
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002168 return ERR_PTR(-ENOMEM);
Mike Christied6b10342005-11-08 04:06:41 -06002169
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 init_waitqueue_head(&sfp->read_wait);
2171 rwlock_init(&sfp->rq_list_lock);
Hannes Reinecke109bade2017-04-07 09:34:16 +02002172 INIT_LIST_HEAD(&sfp->rq_list);
Tony Battersbyc6517b792009-01-21 14:45:50 -05002173 kref_init(&sfp->f_ref);
Hannes Reinecke1bc0eb02017-04-07 09:34:14 +02002174 mutex_init(&sfp->f_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 sfp->timeout = SG_DEFAULT_TIMEOUT;
2176 sfp->timeout_user = SG_DEFAULT_TIMEOUT_USER;
2177 sfp->force_packid = SG_DEF_FORCE_PACK_ID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 sfp->cmd_q = SG_DEF_COMMAND_Q;
2179 sfp->keep_orphan = SG_DEF_KEEP_ORPHAN;
2180 sfp->parentdp = sdp;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002181 write_lock_irqsave(&sdp->sfd_lock, iflags);
2182 if (atomic_read(&sdp->detaching)) {
2183 write_unlock_irqrestore(&sdp->sfd_lock, iflags);
Tony Battersbyc170e5a2018-07-12 16:30:45 -04002184 kfree(sfp);
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002185 return ERR_PTR(-ENODEV);
2186 }
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002187 list_add_tail(&sfp->sfd_siblings, &sdp->sfds);
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002188 write_unlock_irqrestore(&sdp->sfd_lock, iflags);
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002189 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
2190 "sg_add_sfp: sfp=0x%p\n", sfp));
Douglas Gilbert6460e752006-09-20 18:20:49 -04002191 if (unlikely(sg_big_buff != def_reserved_size))
2192 sg_big_buff = def_reserved_size;
2193
Alan Stern44ec9542007-02-20 11:01:57 -05002194 bufflen = min_t(int, sg_big_buff,
Akinobu Mita46f69e62014-06-02 22:56:46 +09002195 max_sectors_bytes(sdp->device->request_queue));
Alan Stern44ec9542007-02-20 11:01:57 -05002196 sg_build_reserve(sfp, bufflen);
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002197 SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
2198 "sg_add_sfp: bufflen=%d, k_use_sg=%d\n",
2199 sfp->reserve.bufflen,
2200 sfp->reserve.k_use_sg));
Tony Battersbyc6517b792009-01-21 14:45:50 -05002201
2202 kref_get(&sdp->d_ref);
2203 __module_get(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 return sfp;
2205}
2206
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002207static void
2208sg_remove_sfp_usercontext(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209{
Tony Battersbyc6517b792009-01-21 14:45:50 -05002210 struct sg_fd *sfp = container_of(work, struct sg_fd, ew.work);
2211 struct sg_device *sdp = sfp->parentdp;
Hannes Reinecke109bade2017-04-07 09:34:16 +02002212 Sg_request *srp;
Hannes Reinecke97d27b0dd2017-04-07 09:34:17 +02002213 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214
Tony Battersbyc6517b792009-01-21 14:45:50 -05002215 /* Cleanup any responses which were never read(). */
Hannes Reinecke97d27b0dd2017-04-07 09:34:17 +02002216 write_lock_irqsave(&sfp->rq_list_lock, iflags);
Hannes Reinecke109bade2017-04-07 09:34:16 +02002217 while (!list_empty(&sfp->rq_list)) {
2218 srp = list_first_entry(&sfp->rq_list, Sg_request, entry);
2219 sg_finish_rem_req(srp);
Hannes Reinecke97d27b0dd2017-04-07 09:34:17 +02002220 list_del(&srp->entry);
2221 srp->parentfp = NULL;
Hannes Reinecke109bade2017-04-07 09:34:16 +02002222 }
Hannes Reinecke97d27b0dd2017-04-07 09:34:17 +02002223 write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
Tony Battersbyc6517b792009-01-21 14:45:50 -05002224
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 if (sfp->reserve.bufflen > 0) {
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002226 SCSI_LOG_TIMEOUT(6, sg_printk(KERN_INFO, sdp,
2227 "sg_remove_sfp: bufflen=%d, k_use_sg=%d\n",
Tony Battersbyc6517b792009-01-21 14:45:50 -05002228 (int) sfp->reserve.bufflen,
2229 (int) sfp->reserve.k_use_sg));
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002230 sg_remove_scat(sfp, &sfp->reserve);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05002232
Hannes Reinecke95e159d2014-06-25 16:39:55 +02002233 SCSI_LOG_TIMEOUT(6, sg_printk(KERN_INFO, sdp,
2234 "sg_remove_sfp: sfp=0x%p\n", sfp));
Mike Christied6b10342005-11-08 04:06:41 -06002235 kfree(sfp);
Tony Battersbyc6517b792009-01-21 14:45:50 -05002236
2237 scsi_device_put(sdp->device);
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002238 kref_put(&sdp->d_ref, sg_device_destroy);
Tony Battersbyc6517b792009-01-21 14:45:50 -05002239 module_put(THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240}
2241
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002242static void
2243sg_remove_sfp(struct kref *kref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244{
Tony Battersbyc6517b792009-01-21 14:45:50 -05002245 struct sg_fd *sfp = container_of(kref, struct sg_fd, f_ref);
James Bottomley065b4a22013-10-25 10:27:02 +01002246 struct sg_device *sdp = sfp->parentdp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002247 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002249 write_lock_irqsave(&sdp->sfd_lock, iflags);
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002250 list_del(&sfp->sfd_siblings);
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002251 write_unlock_irqrestore(&sdp->sfd_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252
FUJITA Tomonori015640e2009-04-03 19:28:06 +09002253 INIT_WORK(&sfp->ew.work, sg_remove_sfp_usercontext);
2254 schedule_work(&sfp->ew.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255}
2256
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257#ifdef CONFIG_SCSI_PROC_FS
2258static int
James Bottomley7c07d612007-08-05 13:36:11 -05002259sg_idr_max_id(int id, void *p, void *data)
2260{
2261 int *k = data;
2262
2263 if (*k < id)
2264 *k = id;
2265
2266 return 0;
2267}
2268
2269static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270sg_last_dev(void)
2271{
Tony Battersby53474c02008-01-22 15:25:49 -05002272 int k = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 unsigned long iflags;
2274
James Bottomley7c07d612007-08-05 13:36:11 -05002275 read_lock_irqsave(&sg_index_lock, iflags);
2276 idr_for_each(&sg_index_idr, sg_idr_max_id, &k);
2277 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 return k + 1; /* origin 1 */
2279}
2280#endif
2281
Tony Battersbyc6517b792009-01-21 14:45:50 -05002282/* must be called with sg_index_lock held */
2283static Sg_device *sg_lookup_dev(int dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284{
Tony Battersbyc6517b792009-01-21 14:45:50 -05002285 return idr_find(&sg_index_idr, dev);
2286}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002288static Sg_device *
2289sg_get_dev(int dev)
Tony Battersbyc6517b792009-01-21 14:45:50 -05002290{
2291 struct sg_device *sdp;
2292 unsigned long flags;
2293
2294 read_lock_irqsave(&sg_index_lock, flags);
2295 sdp = sg_lookup_dev(dev);
2296 if (!sdp)
2297 sdp = ERR_PTR(-ENXIO);
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002298 else if (atomic_read(&sdp->detaching)) {
2299 /* If sdp->detaching, then the refcount may already be 0, in
Tony Battersbyc6517b792009-01-21 14:45:50 -05002300 * which case it would be a bug to do kref_get().
2301 */
2302 sdp = ERR_PTR(-ENODEV);
2303 } else
2304 kref_get(&sdp->d_ref);
2305 read_unlock_irqrestore(&sg_index_lock, flags);
James Bottomley7c07d612007-08-05 13:36:11 -05002306
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 return sdp;
2308}
2309
2310#ifdef CONFIG_SCSI_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311static int sg_proc_seq_show_int(struct seq_file *s, void *v);
2312
2313static int sg_proc_single_open_adio(struct inode *inode, struct file *file);
2314static ssize_t sg_proc_write_adio(struct file *filp, const char __user *buffer,
2315 size_t count, loff_t *off);
Alexey Dobriyan97a32532020-02-03 17:37:17 -08002316static const struct proc_ops adio_proc_ops = {
2317 .proc_open = sg_proc_single_open_adio,
2318 .proc_read = seq_read,
2319 .proc_lseek = seq_lseek,
2320 .proc_write = sg_proc_write_adio,
2321 .proc_release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322};
2323
2324static int sg_proc_single_open_dressz(struct inode *inode, struct file *file);
2325static ssize_t sg_proc_write_dressz(struct file *filp,
2326 const char __user *buffer, size_t count, loff_t *off);
Alexey Dobriyan97a32532020-02-03 17:37:17 -08002327static const struct proc_ops dressz_proc_ops = {
2328 .proc_open = sg_proc_single_open_dressz,
2329 .proc_read = seq_read,
2330 .proc_lseek = seq_lseek,
2331 .proc_write = sg_proc_write_dressz,
2332 .proc_release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333};
2334
2335static int sg_proc_seq_show_version(struct seq_file *s, void *v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336static int sg_proc_seq_show_devhdr(struct seq_file *s, void *v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337static int sg_proc_seq_show_dev(struct seq_file *s, void *v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338static void * dev_seq_start(struct seq_file *s, loff_t *pos);
2339static void * dev_seq_next(struct seq_file *s, void *v, loff_t *pos);
2340static void dev_seq_stop(struct seq_file *s, void *v);
James Morris88e9d342009-09-22 16:43:43 -07002341static const struct seq_operations dev_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 .start = dev_seq_start,
2343 .next = dev_seq_next,
2344 .stop = dev_seq_stop,
2345 .show = sg_proc_seq_show_dev,
2346};
2347
2348static int sg_proc_seq_show_devstrs(struct seq_file *s, void *v);
James Morris88e9d342009-09-22 16:43:43 -07002349static const struct seq_operations devstrs_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 .start = dev_seq_start,
2351 .next = dev_seq_next,
2352 .stop = dev_seq_stop,
2353 .show = sg_proc_seq_show_devstrs,
2354};
2355
2356static int sg_proc_seq_show_debug(struct seq_file *s, void *v);
James Morris88e9d342009-09-22 16:43:43 -07002357static const struct seq_operations debug_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 .start = dev_seq_start,
2359 .next = dev_seq_next,
2360 .stop = dev_seq_stop,
2361 .show = sg_proc_seq_show_debug,
2362};
2363
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364static int
2365sg_proc_init(void)
2366{
Christoph Hellwigb8b14832018-04-11 11:26:22 +02002367 struct proc_dir_entry *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368
Christoph Hellwigb8b14832018-04-11 11:26:22 +02002369 p = proc_mkdir("scsi/sg", NULL);
2370 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 return 1;
Christoph Hellwigb8b14832018-04-11 11:26:22 +02002372
Alexey Dobriyan97a32532020-02-03 17:37:17 -08002373 proc_create("allow_dio", S_IRUGO | S_IWUSR, p, &adio_proc_ops);
Christoph Hellwigb8b14832018-04-11 11:26:22 +02002374 proc_create_seq("debug", S_IRUGO, p, &debug_seq_ops);
Alexey Dobriyan97a32532020-02-03 17:37:17 -08002375 proc_create("def_reserved_size", S_IRUGO | S_IWUSR, p, &dressz_proc_ops);
Christoph Hellwigb8b14832018-04-11 11:26:22 +02002376 proc_create_single("device_hdr", S_IRUGO, p, sg_proc_seq_show_devhdr);
2377 proc_create_seq("devices", S_IRUGO, p, &dev_seq_ops);
2378 proc_create_seq("device_strs", S_IRUGO, p, &devstrs_seq_ops);
2379 proc_create_single("version", S_IRUGO, p, sg_proc_seq_show_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 return 0;
2381}
2382
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383
2384static int sg_proc_seq_show_int(struct seq_file *s, void *v)
2385{
2386 seq_printf(s, "%d\n", *((int *)s->private));
2387 return 0;
2388}
2389
2390static int sg_proc_single_open_adio(struct inode *inode, struct file *file)
2391{
2392 return single_open(file, sg_proc_seq_show_int, &sg_allow_dio);
2393}
2394
2395static ssize_t
2396sg_proc_write_adio(struct file *filp, const char __user *buffer,
2397 size_t count, loff_t *off)
2398{
Stephen Boyd7e95fff2012-01-10 15:42:34 -08002399 int err;
2400 unsigned long num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401
2402 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
2403 return -EACCES;
Stephen Boyd7e95fff2012-01-10 15:42:34 -08002404 err = kstrtoul_from_user(buffer, count, 0, &num);
2405 if (err)
2406 return err;
2407 sg_allow_dio = num ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 return count;
2409}
2410
2411static int sg_proc_single_open_dressz(struct inode *inode, struct file *file)
2412{
2413 return single_open(file, sg_proc_seq_show_int, &sg_big_buff);
2414}
2415
2416static ssize_t
2417sg_proc_write_dressz(struct file *filp, const char __user *buffer,
2418 size_t count, loff_t *off)
2419{
Stephen Boyd7e95fff2012-01-10 15:42:34 -08002420 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 unsigned long k = ULONG_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422
2423 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
2424 return -EACCES;
Stephen Boyd7e95fff2012-01-10 15:42:34 -08002425
2426 err = kstrtoul_from_user(buffer, count, 0, &k);
2427 if (err)
2428 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 if (k <= 1048576) { /* limit "big buff" to 1 MB */
2430 sg_big_buff = k;
2431 return count;
2432 }
2433 return -ERANGE;
2434}
2435
2436static int sg_proc_seq_show_version(struct seq_file *s, void *v)
2437{
2438 seq_printf(s, "%d\t%s [%s]\n", sg_version_num, SG_VERSION_STR,
2439 sg_version_date);
2440 return 0;
2441}
2442
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443static int sg_proc_seq_show_devhdr(struct seq_file *s, void *v)
2444{
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002445 seq_puts(s, "host\tchan\tid\tlun\ttype\topens\tqdepth\tbusy\tonline\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 return 0;
2447}
2448
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449struct sg_proc_deviter {
2450 loff_t index;
2451 size_t max;
2452};
2453
2454static void * dev_seq_start(struct seq_file *s, loff_t *pos)
2455{
2456 struct sg_proc_deviter * it = kmalloc(sizeof(*it), GFP_KERNEL);
2457
Jan Blunck729d70f2005-08-27 11:07:52 -07002458 s->private = it;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 if (! it)
2460 return NULL;
Jan Blunck729d70f2005-08-27 11:07:52 -07002461
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 it->index = *pos;
2463 it->max = sg_last_dev();
2464 if (it->index >= it->max)
Jan Blunck729d70f2005-08-27 11:07:52 -07002465 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 return it;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467}
2468
2469static void * dev_seq_next(struct seq_file *s, void *v, loff_t *pos)
2470{
Jan Blunck729d70f2005-08-27 11:07:52 -07002471 struct sg_proc_deviter * it = s->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472
2473 *pos = ++it->index;
2474 return (it->index < it->max) ? it : NULL;
2475}
2476
2477static void dev_seq_stop(struct seq_file *s, void *v)
2478{
Jan Blunck729d70f2005-08-27 11:07:52 -07002479 kfree(s->private);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480}
2481
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482static int sg_proc_seq_show_dev(struct seq_file *s, void *v)
2483{
2484 struct sg_proc_deviter * it = (struct sg_proc_deviter *) v;
2485 Sg_device *sdp;
2486 struct scsi_device *scsidp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002487 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488
Tony Battersbyc6517b792009-01-21 14:45:50 -05002489 read_lock_irqsave(&sg_index_lock, iflags);
2490 sdp = it ? sg_lookup_dev(it->index) : NULL;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002491 if ((NULL == sdp) || (NULL == sdp->device) ||
2492 (atomic_read(&sdp->detaching)))
2493 seq_puts(s, "-1\t-1\t-1\t-1\t-1\t-1\t-1\t-1\t-1\n");
2494 else {
2495 scsidp = sdp->device;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002496 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 -07002497 scsidp->host->host_no, scsidp->channel,
2498 scsidp->id, scsidp->lun, (int) scsidp->type,
2499 1,
2500 (int) scsidp->queue_depth,
Ming Lei82788072021-01-22 10:33:15 +08002501 (int) scsi_device_busy(scsidp),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 (int) scsi_device_online(scsidp));
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002503 }
Tony Battersbyc6517b792009-01-21 14:45:50 -05002504 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 return 0;
2506}
2507
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508static int sg_proc_seq_show_devstrs(struct seq_file *s, void *v)
2509{
2510 struct sg_proc_deviter * it = (struct sg_proc_deviter *) v;
2511 Sg_device *sdp;
2512 struct scsi_device *scsidp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002513 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514
Tony Battersbyc6517b792009-01-21 14:45:50 -05002515 read_lock_irqsave(&sg_index_lock, iflags);
2516 sdp = it ? sg_lookup_dev(it->index) : NULL;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002517 scsidp = sdp ? sdp->device : NULL;
2518 if (sdp && scsidp && (!atomic_read(&sdp->detaching)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 seq_printf(s, "%8.8s\t%16.16s\t%4.4s\n",
2520 scsidp->vendor, scsidp->model, scsidp->rev);
2521 else
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002522 seq_puts(s, "<no active device>\n");
Tony Battersbyc6517b792009-01-21 14:45:50 -05002523 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 return 0;
2525}
2526
James Bottomleyc0d3b9c2013-10-25 10:21:57 +01002527/* must be called while holding sg_index_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528static void sg_proc_debug_helper(struct seq_file *s, Sg_device * sdp)
2529{
Hannes Reinecke109bade2017-04-07 09:34:16 +02002530 int k, new_interface, blen, usg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 Sg_request *srp;
2532 Sg_fd *fp;
2533 const sg_io_hdr_t *hp;
2534 const char * cp;
cb59e842005-04-02 13:51:23 -06002535 unsigned int ms;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002537 k = 0;
2538 list_for_each_entry(fp, &sdp->sfds, sfd_siblings) {
2539 k++;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002540 read_lock(&fp->rq_list_lock); /* irqs already disabled */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 seq_printf(s, " FD(%d): timeout=%dms bufflen=%d "
FUJITA Tomonori3442f802009-02-16 13:26:53 +09002542 "(res)sgat=%d low_dma=%d\n", k,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 jiffies_to_msecs(fp->timeout),
2544 fp->reserve.bufflen,
Christoph Hellwigaaff5eb2021-03-31 09:29:58 +02002545 (int) fp->reserve.k_use_sg, 0);
Jörn Engelebaf4662012-04-12 17:33:39 -04002546 seq_printf(s, " cmd_q=%d f_packid=%d k_orphan=%d closed=0\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 (int) fp->cmd_q, (int) fp->force_packid,
Jörn Engelebaf4662012-04-12 17:33:39 -04002548 (int) fp->keep_orphan);
Hannes Reinecke109bade2017-04-07 09:34:16 +02002549 list_for_each_entry(srp, &fp->rq_list, entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 hp = &srp->header;
2551 new_interface = (hp->interface_id == '\0') ? 0 : 1;
2552 if (srp->res_used) {
Hannes Reinecke109bade2017-04-07 09:34:16 +02002553 if (new_interface &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 (SG_FLAG_MMAP_IO & hp->flags))
2555 cp = " mmap>> ";
2556 else
2557 cp = " rb>> ";
2558 } else {
2559 if (SG_INFO_DIRECT_IO_MASK & hp->info)
2560 cp = " dio>> ";
2561 else
2562 cp = " ";
2563 }
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002564 seq_puts(s, cp);
Mike Christied6b10342005-11-08 04:06:41 -06002565 blen = srp->data.bufflen;
2566 usg = srp->data.k_use_sg;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002567 seq_puts(s, srp->done ?
2568 ((1 == srp->done) ? "rcv:" : "fin:")
2569 : "act:");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 seq_printf(s, " id=%d blen=%d",
2571 srp->header.pack_id, blen);
2572 if (srp->done)
2573 seq_printf(s, " dur=%d", hp->duration);
cb59e842005-04-02 13:51:23 -06002574 else {
2575 ms = jiffies_to_msecs(jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576 seq_printf(s, " t_o/elap=%d/%d",
cb59e842005-04-02 13:51:23 -06002577 (new_interface ? hp->timeout :
2578 jiffies_to_msecs(fp->timeout)),
2579 (ms > hp->duration ? ms - hp->duration : 0));
2580 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 seq_printf(s, "ms sgat=%d op=0x%02x\n", usg,
2582 (int) srp->data.cmd_opcode);
2583 }
Hannes Reinecke109bade2017-04-07 09:34:16 +02002584 if (list_empty(&fp->rq_list))
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002585 seq_puts(s, " No requests active\n");
Tony Battersbyc6517b792009-01-21 14:45:50 -05002586 read_unlock(&fp->rq_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 }
2588}
2589
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590static int sg_proc_seq_show_debug(struct seq_file *s, void *v)
2591{
2592 struct sg_proc_deviter * it = (struct sg_proc_deviter *) v;
2593 Sg_device *sdp;
Tony Battersbyc6517b792009-01-21 14:45:50 -05002594 unsigned long iflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002596 if (it && (0 == it->index))
2597 seq_printf(s, "max_active_device=%d def_reserved_size=%d\n",
2598 (int)it->max, sg_big_buff);
Tony Battersbyc6517b792009-01-21 14:45:50 -05002599
2600 read_lock_irqsave(&sg_index_lock, iflags);
2601 sdp = it ? sg_lookup_dev(it->index) : NULL;
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002602 if (NULL == sdp)
2603 goto skip;
2604 read_lock(&sdp->sfd_lock);
2605 if (!list_empty(&sdp->sfds)) {
James Bottomleyc0d3b9c2013-10-25 10:21:57 +01002606 seq_printf(s, " >>> device=%s ", sdp->disk->disk_name);
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002607 if (atomic_read(&sdp->detaching))
2608 seq_puts(s, "detaching pending close ");
2609 else if (sdp->device) {
2610 struct scsi_device *scsidp = sdp->device;
2611
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002612 seq_printf(s, "%d:%d:%d:%llu em=%d",
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002613 scsidp->host->host_no,
2614 scsidp->channel, scsidp->id,
2615 scsidp->lun,
2616 scsidp->host->hostt->emulated);
2617 }
2618 seq_printf(s, " sg_tablesize=%d excl=%d open_cnt=%d\n",
2619 sdp->sg_tablesize, sdp->exclude, sdp->open_cnt);
James Bottomleyc0d3b9c2013-10-25 10:21:57 +01002620 sg_proc_debug_helper(s, sdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 }
Douglas Gilbertcc833ac2014-06-25 14:08:03 +02002622 read_unlock(&sdp->sfd_lock);
2623skip:
Tony Battersbyc6517b792009-01-21 14:45:50 -05002624 read_unlock_irqrestore(&sg_index_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 return 0;
2626}
2627
2628#endif /* CONFIG_SCSI_PROC_FS */
2629
2630module_init(init_sg);
2631module_exit(exit_sg);