sg.c 70.9 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0-or-later
L
Linus Torvalds 已提交
2 3 4 5 6 7 8 9 10
/*
 *  History:
 *  Started: Aug 9 by Lawrence Foard (entropy@world.std.com),
 *           to allow user process control of SCSI devices.
 *  Development Sponsored by Killy Corp. NY NY
 *
 * Original driver (sg.c):
 *        Copyright (C) 1992 Lawrence Foard
 * Version 2 and 3 extensions to driver:
11
 *        Copyright (C) 1998 - 2014 Douglas Gilbert
L
Linus Torvalds 已提交
12 13
 */

14 15
static int sg_version_num = 30536;	/* 2 digits for each component */
#define SG_VERSION_STR "3.5.36"
L
Linus Torvalds 已提交
16 17

/*
18
 *  D. P. Gilbert (dgilbert@interlog.com), notes:
L
Linus Torvalds 已提交
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
 *      - scsi logging is available via SCSI_LOG_TIMEOUT macros. First
 *        the kernel/module needs to be built with CONFIG_SCSI_LOGGING
 *        (otherwise the macros compile to empty statements).
 *
 */
#include <linux/module.h>

#include <linux/fs.h>
#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/string.h>
#include <linux/mm.h>
#include <linux/errno.h>
#include <linux/mtio.h>
#include <linux/ioctl.h>
34
#include <linux/slab.h>
L
Linus Torvalds 已提交
35 36 37 38 39
#include <linux/fcntl.h>
#include <linux/init.h>
#include <linux/poll.h>
#include <linux/moduleparam.h>
#include <linux/cdev.h>
40
#include <linux/idr.h>
L
Linus Torvalds 已提交
41 42 43
#include <linux/seq_file.h>
#include <linux/blkdev.h>
#include <linux/delay.h>
44
#include <linux/blktrace_api.h>
45
#include <linux/mutex.h>
46
#include <linux/atomic.h>
47
#include <linux/ratelimit.h>
48
#include <linux/uio.h>
J
Jann Horn 已提交
49
#include <linux/cred.h> /* for sg_check_file_access() */
L
Linus Torvalds 已提交
50 51

#include "scsi.h"
已提交
52
#include <scsi/scsi_dbg.h>
L
Linus Torvalds 已提交
53 54 55 56 57 58 59 60 61
#include <scsi/scsi_host.h>
#include <scsi/scsi_driver.h>
#include <scsi/scsi_ioctl.h>
#include <scsi/sg.h>

#include "scsi_logging.h"

#ifdef CONFIG_SCSI_PROC_FS
#include <linux/proc_fs.h>
62
static char *sg_version_date = "20140603";
L
Linus Torvalds 已提交
63 64 65 66 67 68 69 70

static int sg_proc_init(void);
#endif

#define SG_ALLOW_DIO_DEF 0

#define SG_MAX_DEVS 32768

71 72 73 74 75 76
/* SG_MAX_CDB_SIZE should be 260 (spc4r37 section 3.1.30) however the type
 * of sg_io_hdr::cmd_len can only represent 255. All SCSI commands greater
 * than 16 bytes are "variable length" whose length is a multiple of 4
 */
#define SG_MAX_CDB_SIZE 252

77
#define SG_DEFAULT_TIMEOUT mult_frac(SG_DEFAULT_TIMEOUT_USER, HZ, USER_HZ)
L
Linus Torvalds 已提交
78 79 80 81 82 83 84 85 86 87 88

int sg_big_buff = SG_DEF_RESERVED_SIZE;
/* N.B. This variable is readable and writeable via
   /proc/scsi/sg/def_reserved_size . Each time sg_open() is called a buffer
   of this size (or less if there is not enough memory) will be reserved
   for use by this file descriptor. [Deprecated usage: this variable is also
   readable via /proc/sys/kernel/sg-big-buff if the sg driver is built into
   the kernel (i.e. it is not a module).] */
static int def_reserved_size = -1;	/* picks up init parameter */
static int sg_allow_dio = SG_ALLOW_DIO_DEF;

89 90 91
static int scatter_elem_sz = SG_SCATTER_SZ;
static int scatter_elem_sz_prev = SG_SCATTER_SZ;

L
Linus Torvalds 已提交
92 93
#define SG_SECTOR_SZ 512

94 95
static int sg_add_device(struct device *, struct class_interface *);
static void sg_remove_device(struct device *, struct class_interface *);
96

97
static DEFINE_IDR(sg_index_idr);
98 99
static DEFINE_RWLOCK(sg_index_lock);	/* Also used to lock
							   file descriptor list for device */
L
Linus Torvalds 已提交
100 101

static struct class_interface sg_interface = {
102 103
	.add_dev        = sg_add_device,
	.remove_dev     = sg_remove_device,
L
Linus Torvalds 已提交
104 105 106 107
};

typedef struct sg_scatter_hold { /* holding area for scsi scatter gather info */
	unsigned short k_use_sg; /* Count of kernel scatter-gather pieces */
108
	unsigned sglist_len; /* size of malloc'd scatter-gather list ++ */
L
Linus Torvalds 已提交
109
	unsigned bufflen;	/* Size of (aggregate) data buffer */
110 111
	struct page **pages;
	int page_order;
L
Linus Torvalds 已提交
112 113 114 115 116 117 118 119
	char dio_in_use;	/* 0->indirect IO (or mmap), 1->dio */
	unsigned char cmd_opcode; /* first byte of command */
} Sg_scatter_hold;

struct sg_device;		/* forward declarations */
struct sg_fd;

typedef struct sg_request {	/* SG_MAX_QUEUE requests outstanding per file */
120
	struct list_head entry;	/* list entry */
L
Linus Torvalds 已提交
121 122 123
	struct sg_fd *parentfp;	/* NULL -> not in use */
	Sg_scatter_hold data;	/* hold buffer, perhaps scatter list */
	sg_io_hdr_t header;	/* scsi command+info, see <scsi/sg.h> */
124
	unsigned char sense_b[SCSI_SENSE_BUFFERSIZE];
L
Linus Torvalds 已提交
125 126 127
	char res_used;		/* 1 -> using reserve buffer, 0 -> not ... */
	char orphan;		/* 1 -> drop on sight, 0 -> normal */
	char sg_io_owned;	/* 1 -> packet belongs to SG_IO */
J
Jörn Engel 已提交
128 129
	/* done protected by rq_list_lock */
	char done;		/* 0->before bh, 1->before read, 2->read */
130
	struct request *rq;
131
	struct bio *bio;
132
	struct execute_work ew;
L
Linus Torvalds 已提交
133 134 135
} Sg_request;

typedef struct sg_fd {		/* holds the state of a file descriptor */
136
	struct list_head sfd_siblings;  /* protected by device's sfd_lock */
L
Linus Torvalds 已提交
137 138 139
	struct sg_device *parentdp;	/* owning device */
	wait_queue_head_t read_wait;	/* queue read until command done */
	rwlock_t rq_list_lock;	/* protect access to list in req_arr */
140
	struct mutex f_mutex;	/* protect against changes in this fd */
L
Linus Torvalds 已提交
141 142 143
	int timeout;		/* defaults to SG_DEFAULT_TIMEOUT      */
	int timeout_user;	/* defaults to SG_DEFAULT_TIMEOUT_USER */
	Sg_scatter_hold reserve;	/* buffer held for this file descriptor */
144
	struct list_head rq_list; /* head of request list */
L
Linus Torvalds 已提交
145 146 147 148
	struct fasync_struct *async_qp;	/* used by asynchronous notification */
	Sg_request req_arr[SG_MAX_QUEUE];	/* used as singly-linked list */
	char force_packid;	/* 1 -> pack_id input to read(), 0 -> ignored */
	char cmd_q;		/* 1 -> allow command queuing, 0 -> don't */
149
	unsigned char next_cmd_len; /* 0: automatic, >0: use on next write() */
L
Linus Torvalds 已提交
150 151
	char keep_orphan;	/* 0 -> drop orphan (def), 1 -> keep for read() */
	char mmap_called;	/* 0 -> mmap() never called on this fd */
152
	char res_in_use;	/* 1 -> 'reserve' array in use */
153 154
	struct kref f_ref;
	struct execute_work ew;
L
Linus Torvalds 已提交
155 156 157 158
} Sg_fd;

typedef struct sg_device { /* holds the state of each scsi generic device */
	struct scsi_device *device;
159 160
	wait_queue_head_t open_wait;    /* queue open() when O_EXCL present */
	struct mutex open_rel_lock;     /* held when in open() or release() */
L
Linus Torvalds 已提交
161
	int sg_tablesize;	/* adapter's max scatter-gather table size */
162
	u32 index;		/* device index number */
163
	struct list_head sfds;
164 165 166 167
	rwlock_t sfd_lock;      /* protect access to sfd list */
	atomic_t detaching;     /* 0->device usable, 1->device detaching */
	bool exclude;		/* 1->open(O_EXCL) succeeded and is active */
	int open_cnt;		/* count of opens (perhaps < num(sfds) ) */
L
Linus Torvalds 已提交
168 169 170
	char sgdebug;		/* 0->off, 1->sense, 9->dump dev, 10-> all devs */
	struct gendisk *disk;
	struct cdev * cdev;	/* char_dev [sysfs: /sys/cdev/major/sg<n>] */
171
	struct kref d_ref;
L
Linus Torvalds 已提交
172 173
} Sg_device;

174
/* tasklet or soft irq callback */
175
static void sg_rq_end_io(struct request *rq, blk_status_t status);
176
static int sg_start_req(Sg_request *srp, unsigned char *cmd);
177
static int sg_finish_rem_req(Sg_request * srp);
L
Linus Torvalds 已提交
178 179 180
static int sg_build_indirect(Sg_scatter_hold * schp, Sg_fd * sfp, int buff_size);
static ssize_t sg_new_read(Sg_fd * sfp, char __user *buf, size_t count,
			   Sg_request * srp);
181 182
static ssize_t sg_new_write(Sg_fd *sfp, struct file *file,
			const char __user *buf, size_t count, int blocking,
183
			int read_only, int sg_io_owned, Sg_request **o_srp);
L
Linus Torvalds 已提交
184 185 186
static int sg_common_write(Sg_fd * sfp, Sg_request * srp,
			   unsigned char *cmnd, int timeout, int blocking);
static int sg_read_oxfer(Sg_request * srp, char __user *outp, int num_read_xfer);
H
Hannes Reinecke 已提交
187
static void sg_remove_scat(Sg_fd * sfp, Sg_scatter_hold * schp);
L
Linus Torvalds 已提交
188 189 190
static void sg_build_reserve(Sg_fd * sfp, int req_size);
static void sg_link_reserve(Sg_fd * sfp, Sg_request * srp, int size);
static void sg_unlink_reserve(Sg_fd * sfp, Sg_request * srp);
H
Hannes Reinecke 已提交
191
static Sg_fd *sg_add_sfp(Sg_device * sdp);
192
static void sg_remove_sfp(struct kref *);
L
Linus Torvalds 已提交
193 194 195 196
static Sg_request *sg_get_rq_mark(Sg_fd * sfp, int pack_id);
static Sg_request *sg_add_request(Sg_fd * sfp);
static int sg_remove_request(Sg_fd * sfp, Sg_request * srp);
static Sg_device *sg_get_dev(int dev);
197
static void sg_device_destroy(struct kref *kref);
L
Linus Torvalds 已提交
198 199 200 201 202 203

#define SZ_SG_HEADER sizeof(struct sg_header)
#define SZ_SG_IO_HDR sizeof(sg_io_hdr_t)
#define SZ_SG_IOVEC sizeof(sg_iovec_t)
#define SZ_SG_REQ_INFO sizeof(sg_req_info_t)

H
Hannes Reinecke 已提交
204
#define sg_printk(prefix, sdp, fmt, a...) \
205 206
	sdev_prefix_printk(prefix, (sdp)->device,		\
			   (sdp)->disk->disk_name, fmt, ##a)
H
Hannes Reinecke 已提交
207

J
Jann Horn 已提交
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
/*
 * The SCSI interfaces that use read() and write() as an asynchronous variant of
 * ioctl(..., SG_IO, ...) are fundamentally unsafe, since there are lots of ways
 * to trigger read() and write() calls from various contexts with elevated
 * privileges. This can lead to kernel memory corruption (e.g. if these
 * interfaces are called through splice()) and privilege escalation inside
 * userspace (e.g. if a process with access to such a device passes a file
 * descriptor to a SUID binary as stdin/stdout/stderr).
 *
 * This function provides protection for the legacy API by restricting the
 * calling context.
 */
static int sg_check_file_access(struct file *filp, const char *caller)
{
	if (filp->f_cred != current_real_cred()) {
		pr_err_once("%s: process %d (%s) changed security contexts after opening file descriptor, this is not allowed.\n",
			caller, task_tgid_vnr(current), current->comm);
		return -EPERM;
	}
	if (uaccess_kernel()) {
		pr_err_once("%s: process %d (%s) called from kernel context, this is not allowed.\n",
			caller, task_tgid_vnr(current), current->comm);
		return -EACCES;
	}
	return 0;
}

235 236
static int sg_allow_access(struct file *filp, unsigned char *cmd)
{
237
	struct sg_fd *sfp = filp->private_data;
238 239 240 241

	if (sfp->parentdp->device->type == TYPE_SCANNER)
		return 0;

242
	return blk_verify_command(cmd, filp->f_mode);
243 244
}

245 246
static int
open_wait(Sg_device *sdp, int flags)
247
{
248
	int retval = 0;
249

250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
	if (flags & O_EXCL) {
		while (sdp->open_cnt > 0) {
			mutex_unlock(&sdp->open_rel_lock);
			retval = wait_event_interruptible(sdp->open_wait,
					(atomic_read(&sdp->detaching) ||
					 !sdp->open_cnt));
			mutex_lock(&sdp->open_rel_lock);

			if (retval) /* -ERESTARTSYS */
				return retval;
			if (atomic_read(&sdp->detaching))
				return -ENODEV;
		}
	} else {
		while (sdp->exclude) {
			mutex_unlock(&sdp->open_rel_lock);
			retval = wait_event_interruptible(sdp->open_wait,
					(atomic_read(&sdp->detaching) ||
					 !sdp->exclude));
			mutex_lock(&sdp->open_rel_lock);

			if (retval) /* -ERESTARTSYS */
				return retval;
			if (atomic_read(&sdp->detaching))
				return -ENODEV;
		}
	}
J
Jörn Engel 已提交
277

278
	return retval;
J
Jörn Engel 已提交
279 280
}

281
/* Returns 0 on success, else a negated errno value */
L
Linus Torvalds 已提交
282 283 284 285 286
static int
sg_open(struct inode *inode, struct file *filp)
{
	int dev = iminor(inode);
	int flags = filp->f_flags;
287
	struct request_queue *q;
L
Linus Torvalds 已提交
288 289 290 291 292
	Sg_device *sdp;
	Sg_fd *sfp;
	int retval;

	nonseekable_open(inode, filp);
293 294
	if ((flags & O_EXCL) && (O_RDONLY == (flags & O_ACCMODE)))
		return -EPERM; /* Can't lock it with read only access */
L
Linus Torvalds 已提交
295
	sdp = sg_get_dev(dev);
296 297
	if (IS_ERR(sdp))
		return PTR_ERR(sdp);
L
Linus Torvalds 已提交
298

H
Hannes Reinecke 已提交
299 300 301
	SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
				      "sg_open: flags=0x%x\n", flags));

L
Linus Torvalds 已提交
302 303 304
	/* This driver's module count bumped by fops_get in <linux/fs.h> */
	/* Prevent the device driver from vanishing while we sleep */
	retval = scsi_device_get(sdp->device);
305 306
	if (retval)
		goto sg_put;
L
Linus Torvalds 已提交
307

308 309 310 311
	retval = scsi_autopm_get_device(sdp->device);
	if (retval)
		goto sdp_put;

312 313 314
	/* scsi_block_when_processing_errors() may block so bypass
	 * check if O_NONBLOCK. Permits SCSI commands to be issued
	 * during error recovery. Tread carefully. */
L
Linus Torvalds 已提交
315 316 317 318 319 320 321
	if (!((flags & O_NONBLOCK) ||
	      scsi_block_when_processing_errors(sdp->device))) {
		retval = -ENXIO;
		/* we are in error recovery for this device */
		goto error_out;
	}

322 323 324 325 326 327 328 329 330 331 332 333
	mutex_lock(&sdp->open_rel_lock);
	if (flags & O_NONBLOCK) {
		if (flags & O_EXCL) {
			if (sdp->open_cnt > 0) {
				retval = -EBUSY;
				goto error_mutex_locked;
			}
		} else {
			if (sdp->exclude) {
				retval = -EBUSY;
				goto error_mutex_locked;
			}
L
Linus Torvalds 已提交
334
		}
335 336 337 338
	} else {
		retval = open_wait(sdp, flags);
		if (retval) /* -ERESTARTSYS or -ENODEV */
			goto error_mutex_locked;
L
Linus Torvalds 已提交
339
	}
340 341 342 343 344 345

	/* N.B. at this point we are holding the open_rel_lock */
	if (flags & O_EXCL)
		sdp->exclude = true;

	if (sdp->open_cnt < 1) {  /* no existing opens */
L
Linus Torvalds 已提交
346
		sdp->sgdebug = 0;
347
		q = sdp->device->request_queue;
348
		sdp->sg_tablesize = queue_max_segments(q);
L
Linus Torvalds 已提交
349
	}
H
Hannes Reinecke 已提交
350
	sfp = sg_add_sfp(sdp);
351 352 353
	if (IS_ERR(sfp)) {
		retval = PTR_ERR(sfp);
		goto out_undo;
354
	}
355 356 357 358 359

	filp->private_data = sfp;
	sdp->open_cnt++;
	mutex_unlock(&sdp->open_rel_lock);

360
	retval = 0;
361
sg_put:
362
	kref_put(&sdp->d_ref, sg_device_destroy);
L
Linus Torvalds 已提交
363
	return retval;
364 365 366 367 368 369 370 371 372 373 374 375 376

out_undo:
	if (flags & O_EXCL) {
		sdp->exclude = false;   /* undo if error */
		wake_up_interruptible(&sdp->open_wait);
	}
error_mutex_locked:
	mutex_unlock(&sdp->open_rel_lock);
error_out:
	scsi_autopm_put_device(sdp->device);
sdp_put:
	scsi_device_put(sdp->device);
	goto sg_put;
L
Linus Torvalds 已提交
377 378
}

379 380
/* Release resources associated with a successful sg_open()
 * Returns 0 on success, else a negated errno value */
L
Linus Torvalds 已提交
381 382 383 384 385 386 387 388
static int
sg_release(struct inode *inode, struct file *filp)
{
	Sg_device *sdp;
	Sg_fd *sfp;

	if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
		return -ENXIO;
H
Hannes Reinecke 已提交
389
	SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp, "sg_release\n"));
390

391
	mutex_lock(&sdp->open_rel_lock);
392
	scsi_autopm_put_device(sdp->device);
393
	kref_put(&sfp->f_ref, sg_remove_sfp);
394 395 396 397 398 399 400 401 402 403 404
	sdp->open_cnt--;

	/* possibly many open()s waiting on exlude clearing, start many;
	 * only open(O_EXCL)s wait on 0==open_cnt so only start one */
	if (sdp->exclude) {
		sdp->exclude = false;
		wake_up_interruptible_all(&sdp->open_wait);
	} else if (0 == sdp->open_cnt) {
		wake_up_interruptible(&sdp->open_wait);
	}
	mutex_unlock(&sdp->open_rel_lock);
L
Linus Torvalds 已提交
405 406 407
	return 0;
}

408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439
static int get_sg_io_pack_id(int *pack_id, void __user *buf, size_t count)
{
	struct sg_header __user *old_hdr = buf;
	int reply_len;

	if (count >= SZ_SG_HEADER) {
		/* negative reply_len means v3 format, otherwise v1/v2 */
		if (get_user(reply_len, &old_hdr->reply_len))
			return -EFAULT;

		if (reply_len >= 0)
			return get_user(*pack_id, &old_hdr->pack_id);

		if (in_compat_syscall() &&
		    count >= sizeof(struct compat_sg_io_hdr)) {
			struct compat_sg_io_hdr __user *hp = buf;

			return get_user(*pack_id, &hp->pack_id);
		}

		if (count >= sizeof(struct sg_io_hdr)) {
			struct sg_io_hdr __user *hp = buf;

			return get_user(*pack_id, &hp->pack_id);
		}
	}

	/* no valid header was passed, so ignore the pack_id */
	*pack_id = -1;
	return 0;
}

L
Linus Torvalds 已提交
440 441 442 443 444 445 446 447
static ssize_t
sg_read(struct file *filp, char __user *buf, size_t count, loff_t * ppos)
{
	Sg_device *sdp;
	Sg_fd *sfp;
	Sg_request *srp;
	int req_pack_id = -1;
	sg_io_hdr_t *hp;
448 449
	struct sg_header *old_hdr;
	int retval;
L
Linus Torvalds 已提交
450

J
Jann Horn 已提交
451 452 453 454 455 456 457 458
	/*
	 * This could cause a response to be stranded. Close the associated
	 * file descriptor to free up any resources being held.
	 */
	retval = sg_check_file_access(filp, __func__);
	if (retval)
		return retval;

L
Linus Torvalds 已提交
459 460
	if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
		return -ENXIO;
H
Hannes Reinecke 已提交
461 462
	SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
				      "sg_read: count=%d\n", (int) count));
463

464 465 466 467 468
	if (sfp->force_packid)
		retval = get_sg_io_pack_id(&req_pack_id, buf, count);
	if (retval)
		return retval;

L
Linus Torvalds 已提交
469 470
	srp = sg_get_rq_mark(sfp, req_pack_id);
	if (!srp) {		/* now wait on packet to arrive */
471 472 473 474
		if (atomic_read(&sdp->detaching))
			return -ENODEV;
		if (filp->f_flags & O_NONBLOCK)
			return -EAGAIN;
475
		retval = wait_event_interruptible(sfp->read_wait,
476
			(atomic_read(&sdp->detaching) ||
477
			(srp = sg_get_rq_mark(sfp, req_pack_id))));
478 479 480
		if (atomic_read(&sdp->detaching))
			return -ENODEV;
		if (retval)
已提交
481
			/* -ERESTARTSYS as signal hit process */
482
			return retval;
已提交
483
	}
484 485
	if (srp->header.interface_id != '\0')
		return sg_new_read(sfp, buf, count, srp);
L
Linus Torvalds 已提交
486 487

	hp = &srp->header;
488 489 490 491
	old_hdr = kzalloc(SZ_SG_HEADER, GFP_KERNEL);
	if (!old_hdr)
		return -ENOMEM;

已提交
492 493 494 495
	old_hdr->reply_len = (int) hp->timeout;
	old_hdr->pack_len = old_hdr->reply_len; /* old, strange behaviour */
	old_hdr->pack_id = hp->pack_id;
	old_hdr->twelve_byte =
L
Linus Torvalds 已提交
496
	    ((srp->data.cmd_opcode >= 0xc0) && (12 == hp->cmd_len)) ? 1 : 0;
已提交
497 498 499
	old_hdr->target_status = hp->masked_status;
	old_hdr->host_status = hp->host_status;
	old_hdr->driver_status = hp->driver_status;
L
Linus Torvalds 已提交
500 501
	if ((CHECK_CONDITION & hp->masked_status) ||
	    (DRIVER_SENSE & hp->driver_status))
已提交
502 503
		memcpy(old_hdr->sense_buffer, srp->sense_b,
		       sizeof (old_hdr->sense_buffer));
L
Linus Torvalds 已提交
504 505 506 507 508 509
	switch (hp->host_status) {
	/* This setup of 'result' is for backward compatibility and is best
	   ignored by the user who should use target, host + driver status */
	case DID_OK:
	case DID_PASSTHROUGH:
	case DID_SOFT_ERROR:
已提交
510
		old_hdr->result = 0;
L
Linus Torvalds 已提交
511 512 513 514
		break;
	case DID_NO_CONNECT:
	case DID_BUS_BUSY:
	case DID_TIME_OUT:
已提交
515
		old_hdr->result = EBUSY;
L
Linus Torvalds 已提交
516 517 518 519 520 521
		break;
	case DID_BAD_TARGET:
	case DID_ABORT:
	case DID_PARITY:
	case DID_RESET:
	case DID_BAD_INTR:
已提交
522
		old_hdr->result = EIO;
L
Linus Torvalds 已提交
523 524
		break;
	case DID_ERROR:
已提交
525
		old_hdr->result = (srp->sense_b[0] == 0 && 
L
Linus Torvalds 已提交
526 527 528
				  hp->masked_status == GOOD) ? 0 : EIO;
		break;
	default:
已提交
529
		old_hdr->result = EIO;
L
Linus Torvalds 已提交
530 531 532 533 534
		break;
	}

	/* Now copy the result back to the user buffer.  */
	if (count >= SZ_SG_HEADER) {
535
		if (copy_to_user(buf, old_hdr, SZ_SG_HEADER)) {
已提交
536 537 538
			retval = -EFAULT;
			goto free_old_hdr;
		}
L
Linus Torvalds 已提交
539
		buf += SZ_SG_HEADER;
已提交
540 541
		if (count > old_hdr->reply_len)
			count = old_hdr->reply_len;
L
Linus Torvalds 已提交
542
		if (count > SZ_SG_HEADER) {
已提交
543 544 545 546
			if (sg_read_oxfer(srp, buf, count - SZ_SG_HEADER)) {
				retval = -EFAULT;
				goto free_old_hdr;
			}
L
Linus Torvalds 已提交
547 548
		}
	} else
已提交
549
		count = (old_hdr->result == 0) ? 0 : -EIO;
L
Linus Torvalds 已提交
550
	sg_finish_rem_req(srp);
551
	sg_remove_request(sfp, srp);
已提交
552 553
	retval = count;
free_old_hdr:
J
Jesper Juhl 已提交
554
	kfree(old_hdr);
已提交
555
	return retval;
L
Linus Torvalds 已提交
556 557 558 559 560 561
}

static ssize_t
sg_new_read(Sg_fd * sfp, char __user *buf, size_t count, Sg_request * srp)
{
	sg_io_hdr_t *hp = &srp->header;
T
Tony Battersby 已提交
562
	int err = 0, err2;
L
Linus Torvalds 已提交
563 564
	int len;

565 566 567 568 569 570
	if (in_compat_syscall()) {
		if (count < sizeof(struct compat_sg_io_hdr)) {
			err = -EINVAL;
			goto err_out;
		}
	} else if (count < SZ_SG_IO_HDR) {
L
Linus Torvalds 已提交
571 572 573 574 575 576 577
		err = -EINVAL;
		goto err_out;
	}
	hp->sb_len_wr = 0;
	if ((hp->mx_sb_len > 0) && hp->sbp) {
		if ((CHECK_CONDITION & hp->masked_status) ||
		    (DRIVER_SENSE & hp->driver_status)) {
578
			int sb_len = SCSI_SENSE_BUFFERSIZE;
L
Linus Torvalds 已提交
579 580 581 582 583 584 585 586 587 588 589 590
			sb_len = (hp->mx_sb_len > sb_len) ? sb_len : hp->mx_sb_len;
			len = 8 + (int) srp->sense_b[7];	/* Additional sense length field */
			len = (len > sb_len) ? sb_len : len;
			if (copy_to_user(hp->sbp, srp->sense_b, len)) {
				err = -EFAULT;
				goto err_out;
			}
			hp->sb_len_wr = len;
		}
	}
	if (hp->masked_status || hp->host_status || hp->driver_status)
		hp->info |= SG_INFO_CHECK;
591
	err = put_sg_io_hdr(hp, buf);
F
FUJITA Tomonori 已提交
592
err_out:
T
Tony Battersby 已提交
593
	err2 = sg_finish_rem_req(srp);
594
	sg_remove_request(sfp, srp);
T
Tony Battersby 已提交
595
	return err ? : err2 ? : count;
L
Linus Torvalds 已提交
596 597 598 599 600 601 602 603 604 605 606 607 608
}

static ssize_t
sg_write(struct file *filp, const char __user *buf, size_t count, loff_t * ppos)
{
	int mxsize, cmd_size, k;
	int input_size, blocking;
	unsigned char opcode;
	Sg_device *sdp;
	Sg_fd *sfp;
	Sg_request *srp;
	struct sg_header old_hdr;
	sg_io_hdr_t *hp;
609
	unsigned char cmnd[SG_MAX_CDB_SIZE];
J
Jann Horn 已提交
610
	int retval;
L
Linus Torvalds 已提交
611

J
Jann Horn 已提交
612 613 614
	retval = sg_check_file_access(filp, __func__);
	if (retval)
		return retval;
615

L
Linus Torvalds 已提交
616 617
	if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
		return -ENXIO;
H
Hannes Reinecke 已提交
618 619
	SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
				      "sg_write: count=%d\n", (int) count));
620
	if (atomic_read(&sdp->detaching))
L
Linus Torvalds 已提交
621 622 623 624 625 626 627
		return -ENODEV;
	if (!((filp->f_flags & O_NONBLOCK) ||
	      scsi_block_when_processing_errors(sdp->device)))
		return -ENXIO;

	if (count < SZ_SG_HEADER)
		return -EIO;
628
	if (copy_from_user(&old_hdr, buf, SZ_SG_HEADER))
L
Linus Torvalds 已提交
629 630 631
		return -EFAULT;
	blocking = !(filp->f_flags & O_NONBLOCK);
	if (old_hdr.reply_len < 0)
632 633
		return sg_new_write(sfp, filp, buf, count,
				    blocking, 0, 0, NULL);
L
Linus Torvalds 已提交
634 635 636
	if (count < (SZ_SG_HEADER + 6))
		return -EIO;	/* The minimum scsi command length is 6 bytes. */

637
	buf += SZ_SG_HEADER;
638
	if (get_user(opcode, buf))
639 640
		return -EFAULT;

L
Linus Torvalds 已提交
641
	if (!(srp = sg_add_request(sfp))) {
H
Hannes Reinecke 已提交
642 643
		SCSI_LOG_TIMEOUT(1, sg_printk(KERN_INFO, sdp,
					      "sg_write: queue full\n"));
L
Linus Torvalds 已提交
644 645
		return -EDOM;
	}
646
	mutex_lock(&sfp->f_mutex);
L
Linus Torvalds 已提交
647 648 649 650 651 652 653 654
	if (sfp->next_cmd_len > 0) {
		cmd_size = sfp->next_cmd_len;
		sfp->next_cmd_len = 0;	/* reset so only this write() effected */
	} else {
		cmd_size = COMMAND_SIZE(opcode);	/* based on SCSI command group */
		if ((opcode >= 0xc0) && old_hdr.twelve_byte)
			cmd_size = 12;
	}
655
	mutex_unlock(&sfp->f_mutex);
H
Hannes Reinecke 已提交
656
	SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sdp,
L
Linus Torvalds 已提交
657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677
		"sg_write:   scsi opcode=0x%02x, cmd_size=%d\n", (int) opcode, cmd_size));
/* Determine buffer size.  */
	input_size = count - cmd_size;
	mxsize = (input_size > old_hdr.reply_len) ? input_size : old_hdr.reply_len;
	mxsize -= SZ_SG_HEADER;
	input_size -= SZ_SG_HEADER;
	if (input_size < 0) {
		sg_remove_request(sfp, srp);
		return -EIO;	/* User did not pass enough bytes for this command. */
	}
	hp = &srp->header;
	hp->interface_id = '\0';	/* indicator of old interface tunnelled */
	hp->cmd_len = (unsigned char) cmd_size;
	hp->iovec_count = 0;
	hp->mx_sb_len = 0;
	if (input_size > 0)
		hp->dxfer_direction = (old_hdr.reply_len > SZ_SG_HEADER) ?
		    SG_DXFER_TO_FROM_DEV : SG_DXFER_TO_DEV;
	else
		hp->dxfer_direction = (mxsize > 0) ? SG_DXFER_FROM_DEV : SG_DXFER_NONE;
	hp->dxfer_len = mxsize;
D
Douglas Gilbert 已提交
678 679
	if ((hp->dxfer_direction == SG_DXFER_TO_DEV) ||
	    (hp->dxfer_direction == SG_DXFER_TO_FROM_DEV))
680 681 682
		hp->dxferp = (char __user *)buf + cmd_size;
	else
		hp->dxferp = NULL;
L
Linus Torvalds 已提交
683 684 685 686 687
	hp->sbp = NULL;
	hp->timeout = old_hdr.reply_len;	/* structure abuse ... */
	hp->flags = input_size;	/* structure abuse ... */
	hp->pack_id = old_hdr.pack_id;
	hp->usr_ptr = NULL;
688 689
	if (copy_from_user(cmnd, buf, cmd_size)) {
		sg_remove_request(sfp, srp);
L
Linus Torvalds 已提交
690
		return -EFAULT;
691
	}
L
Linus Torvalds 已提交
692 693 694 695 696
	/*
	 * SG_DXFER_TO_FROM_DEV is functionally equivalent to SG_DXFER_FROM_DEV,
	 * but is is possible that the app intended SG_DXFER_TO_DEV, because there
	 * is a non-zero input_size, so emit a warning.
	 */
697
	if (hp->dxfer_direction == SG_DXFER_TO_FROM_DEV) {
698 699 700 701 702 703 704 705
		printk_ratelimited(KERN_WARNING
				   "sg_write: data in/out %d/%d bytes "
				   "for SCSI command 0x%x-- guessing "
				   "data in;\n   program %s not setting "
				   "count and/or reply_len properly\n",
				   old_hdr.reply_len - (int)SZ_SG_HEADER,
				   input_size, (unsigned int) cmnd[0],
				   current->comm);
706
	}
L
Linus Torvalds 已提交
707 708 709 710 711
	k = sg_common_write(sfp, srp, cmnd, sfp->timeout, blocking);
	return (k < 0) ? k : count;
}

static ssize_t
712
sg_new_write(Sg_fd *sfp, struct file *file, const char __user *buf,
713
		 size_t count, int blocking, int read_only, int sg_io_owned,
714
		 Sg_request **o_srp)
L
Linus Torvalds 已提交
715 716 717 718
{
	int k;
	Sg_request *srp;
	sg_io_hdr_t *hp;
719
	unsigned char cmnd[SG_MAX_CDB_SIZE];
L
Linus Torvalds 已提交
720 721 722 723 724 725 726 727
	int timeout;
	unsigned long ul_timeout;

	if (count < SZ_SG_IO_HDR)
		return -EINVAL;

	sfp->cmd_q = 1;	/* when sg_io_hdr seen, set command queuing on */
	if (!(srp = sg_add_request(sfp))) {
H
Hannes Reinecke 已提交
728 729
		SCSI_LOG_TIMEOUT(1, sg_printk(KERN_INFO, sfp->parentdp,
					      "sg_new_write: queue full\n"));
L
Linus Torvalds 已提交
730 731
		return -EDOM;
	}
732
	srp->sg_io_owned = sg_io_owned;
L
Linus Torvalds 已提交
733
	hp = &srp->header;
734
	if (get_sg_io_hdr(hp, buf)) {
L
Linus Torvalds 已提交
735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750
		sg_remove_request(sfp, srp);
		return -EFAULT;
	}
	if (hp->interface_id != 'S') {
		sg_remove_request(sfp, srp);
		return -ENOSYS;
	}
	if (hp->flags & SG_FLAG_MMAP_IO) {
		if (hp->dxfer_len > sfp->reserve.bufflen) {
			sg_remove_request(sfp, srp);
			return -ENOMEM;	/* MMAP_IO size must fit in reserve buffer */
		}
		if (hp->flags & SG_FLAG_DIRECT_IO) {
			sg_remove_request(sfp, srp);
			return -EINVAL;	/* either MMAP_IO or DIRECT_IO (not both) */
		}
751
		if (sfp->res_in_use) {
L
Linus Torvalds 已提交
752 753 754 755 756 757 758 759 760 761
			sg_remove_request(sfp, srp);
			return -EBUSY;	/* reserve buffer already being used */
		}
	}
	ul_timeout = msecs_to_jiffies(srp->header.timeout);
	timeout = (ul_timeout < INT_MAX) ? ul_timeout : INT_MAX;
	if ((!hp->cmdp) || (hp->cmd_len < 6) || (hp->cmd_len > sizeof (cmnd))) {
		sg_remove_request(sfp, srp);
		return -EMSGSIZE;
	}
762
	if (copy_from_user(cmnd, hp->cmdp, hp->cmd_len)) {
L
Linus Torvalds 已提交
763 764 765
		sg_remove_request(sfp, srp);
		return -EFAULT;
	}
766
	if (read_only && sg_allow_access(file, cmnd)) {
L
Linus Torvalds 已提交
767 768 769 770 771 772 773 774 775 776 777 778 779 780 781
		sg_remove_request(sfp, srp);
		return -EPERM;
	}
	k = sg_common_write(sfp, srp, cmnd, timeout, blocking);
	if (k < 0)
		return k;
	if (o_srp)
		*o_srp = srp;
	return count;
}

static int
sg_common_write(Sg_fd * sfp, Sg_request * srp,
		unsigned char *cmnd, int timeout, int blocking)
{
B
Bart Van Assche 已提交
782
	int k, at_head;
L
Linus Torvalds 已提交
783 784 785 786 787 788 789 790 791 792 793
	Sg_device *sdp = sfp->parentdp;
	sg_io_hdr_t *hp = &srp->header;

	srp->data.cmd_opcode = cmnd[0];	/* hold opcode of command */
	hp->status = 0;
	hp->masked_status = 0;
	hp->msg_status = 0;
	hp->info = 0;
	hp->host_status = 0;
	hp->driver_status = 0;
	hp->resid = 0;
H
Hannes Reinecke 已提交
794 795 796
	SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
			"sg_common_write:  scsi opcode=0x%02x, cmd_size=%d\n",
			(int) cmnd[0], (int) hp->cmd_len));
L
Linus Torvalds 已提交
797

798 799
	if (hp->dxfer_len >= SZ_256M) {
		sg_remove_request(sfp, srp);
800
		return -EINVAL;
801
	}
802

803 804
	k = sg_start_req(srp, cmnd);
	if (k) {
H
Hannes Reinecke 已提交
805 806
		SCSI_LOG_TIMEOUT(1, sg_printk(KERN_INFO, sfp->parentdp,
			"sg_common_write: start_req err=%d\n", k));
L
Linus Torvalds 已提交
807
		sg_finish_rem_req(srp);
808
		sg_remove_request(sfp, srp);
L
Linus Torvalds 已提交
809 810
		return k;	/* probably out of space --> ENOMEM */
	}
811
	if (atomic_read(&sdp->detaching)) {
812
		if (srp->bio) {
813
			scsi_req_free_cmd(scsi_req(srp->rq));
814
			blk_put_request(srp->rq);
815 816 817
			srp->rq = NULL;
		}

L
Linus Torvalds 已提交
818
		sg_finish_rem_req(srp);
819
		sg_remove_request(sfp, srp);
L
Linus Torvalds 已提交
820 821 822
		return -ENODEV;
	}

已提交
823
	hp->duration = jiffies_to_msecs(jiffies);
D
Douglas Gilbert 已提交
824 825 826 827 828
	if (hp->interface_id != '\0' &&	/* v3 (or later) interface */
	    (SG_FLAG_Q_AT_TAIL & hp->flags))
		at_head = 0;
	else
		at_head = 1;
829 830

	srp->rq->timeout = timeout;
831
	kref_get(&sfp->f_ref); /* sg_rq_end_io() does kref_put(). */
832
	blk_execute_rq_nowait(sdp->disk, srp->rq, at_head, sg_rq_end_io);
833
	return 0;
L
Linus Torvalds 已提交
834 835
}

J
Jörn Engel 已提交
836 837 838 839 840 841 842 843 844 845 846
static int srp_done(Sg_fd *sfp, Sg_request *srp)
{
	unsigned long flags;
	int ret;

	read_lock_irqsave(&sfp->rq_list_lock, flags);
	ret = srp->done;
	read_unlock_irqrestore(&sfp->rq_list_lock, flags);
	return ret;
}

847 848 849 850 851 852 853 854 855
static int max_sectors_bytes(struct request_queue *q)
{
	unsigned int max_sectors = queue_max_sectors(q);

	max_sectors = min_t(unsigned int, max_sectors, INT_MAX >> 9);

	return max_sectors << 9;
}

856 857 858 859 860 861 862 863 864
static void
sg_fill_request_table(Sg_fd *sfp, sg_req_info_t *rinfo)
{
	Sg_request *srp;
	int val;
	unsigned int ms;

	val = 0;
	list_for_each_entry(srp, &sfp->rq_list, entry) {
865
		if (val >= SG_MAX_QUEUE)
866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888
			break;
		rinfo[val].req_state = srp->done + 1;
		rinfo[val].problem =
			srp->header.masked_status &
			srp->header.host_status &
			srp->header.driver_status;
		if (srp->done)
			rinfo[val].duration =
				srp->header.duration;
		else {
			ms = jiffies_to_msecs(jiffies);
			rinfo[val].duration =
				(ms > srp->header.duration) ?
				(ms - srp->header.duration) : 0;
		}
		rinfo[val].orphan = srp->orphan;
		rinfo[val].sg_io_owned = srp->sg_io_owned;
		rinfo[val].pack_id = srp->header.pack_id;
		rinfo[val].usr_ptr = srp->header.usr_ptr;
		val++;
	}
}

889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915
#ifdef CONFIG_COMPAT
struct compat_sg_req_info { /* used by SG_GET_REQUEST_TABLE ioctl() */
	char req_state;
	char orphan;
	char sg_io_owned;
	char problem;
	int pack_id;
	compat_uptr_t usr_ptr;
	unsigned int duration;
	int unused;
};

static int put_compat_request_table(struct compat_sg_req_info __user *o,
				    struct sg_req_info *rinfo)
{
	int i;
	for (i = 0; i < SG_MAX_QUEUE; i++) {
		if (copy_to_user(o + i, rinfo + i, offsetof(sg_req_info_t, usr_ptr)) ||
		    put_user((uintptr_t)rinfo[i].usr_ptr, &o[i].usr_ptr) ||
		    put_user(rinfo[i].duration, &o[i].duration) ||
		    put_user(rinfo[i].unused, &o[i].unused))
			return -EFAULT;
	}
	return 0;
}
#endif

J
Jörn Engel 已提交
916
static long
917 918
sg_ioctl_common(struct file *filp, Sg_device *sdp, Sg_fd *sfp,
		unsigned int cmd_in, void __user *p)
L
Linus Torvalds 已提交
919 920
{
	int __user *ip = p;
921
	int result, val, read_only;
L
Linus Torvalds 已提交
922 923 924
	Sg_request *srp;
	unsigned long iflags;

H
Hannes Reinecke 已提交
925 926
	SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
				   "sg_ioctl: cmd=0x%x\n", (int) cmd_in));
L
Linus Torvalds 已提交
927 928 929 930
	read_only = (O_RDWR != (filp->f_flags & O_ACCMODE));

	switch (cmd_in) {
	case SG_IO:
931
		if (atomic_read(&sdp->detaching))
932 933 934 935 936 937 938
			return -ENODEV;
		if (!scsi_block_when_processing_errors(sdp->device))
			return -ENXIO;
		result = sg_new_write(sfp, filp, p, SZ_SG_IO_HDR,
				 1, read_only, 1, &srp);
		if (result < 0)
			return result;
939
		result = wait_event_interruptible(sfp->read_wait,
940 941
			(srp_done(sfp, srp) || atomic_read(&sdp->detaching)));
		if (atomic_read(&sdp->detaching))
942 943 944 945
			return -ENODEV;
		write_lock_irq(&sfp->rq_list_lock);
		if (srp->done) {
			srp->done = 2;
946
			write_unlock_irq(&sfp->rq_list_lock);
947 948
			result = sg_new_read(sfp, p, SZ_SG_IO_HDR, srp);
			return (result < 0) ? result : 0;
L
Linus Torvalds 已提交
949
		}
950 951 952
		srp->orphan = 1;
		write_unlock_irq(&sfp->rq_list_lock);
		return result;	/* -ERESTARTSYS because signal hit process */
L
Linus Torvalds 已提交
953 954 955 956 957 958
	case SG_SET_TIMEOUT:
		result = get_user(val, ip);
		if (result)
			return result;
		if (val < 0)
			return -EIO;
959 960
		if (val >= mult_frac((s64)INT_MAX, USER_HZ, HZ))
			val = min_t(s64, mult_frac((s64)INT_MAX, USER_HZ, HZ),
961
				    INT_MAX);
L
Linus Torvalds 已提交
962
		sfp->timeout_user = val;
963
		sfp->timeout = mult_frac(val, HZ, USER_HZ);
L
Linus Torvalds 已提交
964 965 966 967 968 969

		return 0;
	case SG_GET_TIMEOUT:	/* N.B. User receives timeout as return value */
				/* strange ..., for backward compatibility */
		return sfp->timeout_user;
	case SG_SET_FORCE_LOW_DMA:
970 971 972 973 974
		/*
		 * N.B. This ioctl never worked properly, but failed to
		 * return an error value. So returning '0' to keep compability
		 * with legacy applications.
		 */
L
Linus Torvalds 已提交
975 976
		return 0;
	case SG_GET_LOW_DMA:
977
		return put_user((int) sdp->device->host->unchecked_isa_dma, ip);
L
Linus Torvalds 已提交
978
	case SG_GET_SCSI_ID:
979 980
		{
			sg_scsi_id_t v;
L
Linus Torvalds 已提交
981

982
			if (atomic_read(&sdp->detaching))
L
Linus Torvalds 已提交
983
				return -ENODEV;
984 985 986 987 988 989 990 991 992 993
			memset(&v, 0, sizeof(v));
			v.host_no = sdp->device->host->host_no;
			v.channel = sdp->device->channel;
			v.scsi_id = sdp->device->id;
			v.lun = sdp->device->lun;
			v.scsi_type = sdp->device->type;
			v.h_cmd_per_lun = sdp->device->host->cmd_per_lun;
			v.d_queue_depth = sdp->device->queue_depth;
			if (copy_to_user(p, &v, sizeof(sg_scsi_id_t)))
				return -EFAULT;
L
Linus Torvalds 已提交
994 995 996 997 998 999 1000 1001 1002 1003
			return 0;
		}
	case SG_SET_FORCE_PACK_ID:
		result = get_user(val, ip);
		if (result)
			return result;
		sfp->force_packid = val ? 1 : 0;
		return 0;
	case SG_GET_PACK_ID:
		read_lock_irqsave(&sfp->rq_list_lock, iflags);
1004
		list_for_each_entry(srp, &sfp->rq_list, entry) {
L
Linus Torvalds 已提交
1005 1006 1007
			if ((1 == srp->done) && (!srp->sg_io_owned)) {
				read_unlock_irqrestore(&sfp->rq_list_lock,
						       iflags);
1008
				return put_user(srp->header.pack_id, ip);
L
Linus Torvalds 已提交
1009 1010 1011
			}
		}
		read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1012
		return put_user(-1, ip);
L
Linus Torvalds 已提交
1013 1014
	case SG_GET_NUM_WAITING:
		read_lock_irqsave(&sfp->rq_list_lock, iflags);
1015 1016
		val = 0;
		list_for_each_entry(srp, &sfp->rq_list, entry) {
L
Linus Torvalds 已提交
1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029
			if ((1 == srp->done) && (!srp->sg_io_owned))
				++val;
		}
		read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
		return put_user(val, ip);
	case SG_GET_SG_TABLESIZE:
		return put_user(sdp->sg_tablesize, ip);
	case SG_SET_RESERVED_SIZE:
		result = get_user(val, ip);
		if (result)
			return result;
                if (val < 0)
                        return -EINVAL;
1030
		val = min_t(int, val,
1031
			    max_sectors_bytes(sdp->device->request_queue));
1032
		mutex_lock(&sfp->f_mutex);
L
Linus Torvalds 已提交
1033
		if (val != sfp->reserve.bufflen) {
1034 1035 1036
			if (sfp->mmap_called ||
			    sfp->res_in_use) {
				mutex_unlock(&sfp->f_mutex);
L
Linus Torvalds 已提交
1037
				return -EBUSY;
1038 1039
			}

H
Hannes Reinecke 已提交
1040
			sg_remove_scat(sfp, &sfp->reserve);
L
Linus Torvalds 已提交
1041 1042
			sg_build_reserve(sfp, val);
		}
1043
		mutex_unlock(&sfp->f_mutex);
L
Linus Torvalds 已提交
1044 1045
		return 0;
	case SG_GET_RESERVED_SIZE:
1046
		val = min_t(int, sfp->reserve.bufflen,
1047
			    max_sectors_bytes(sdp->device->request_queue));
L
Linus Torvalds 已提交
1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068
		return put_user(val, ip);
	case SG_SET_COMMAND_Q:
		result = get_user(val, ip);
		if (result)
			return result;
		sfp->cmd_q = val ? 1 : 0;
		return 0;
	case SG_GET_COMMAND_Q:
		return put_user((int) sfp->cmd_q, ip);
	case SG_SET_KEEP_ORPHAN:
		result = get_user(val, ip);
		if (result)
			return result;
		sfp->keep_orphan = val;
		return 0;
	case SG_GET_KEEP_ORPHAN:
		return put_user((int) sfp->keep_orphan, ip);
	case SG_NEXT_CMD_LEN:
		result = get_user(val, ip);
		if (result)
			return result;
1069 1070
		if (val > SG_MAX_CDB_SIZE)
			return -ENOMEM;
L
Linus Torvalds 已提交
1071 1072 1073 1074 1075 1076 1077 1078 1079
		sfp->next_cmd_len = (val > 0) ? val : 0;
		return 0;
	case SG_GET_VERSION_NUM:
		return put_user(sg_version_num, ip);
	case SG_GET_ACCESS_COUNT:
		/* faked - we don't have a real access count anymore */
		val = (sdp->device ? 1 : 0);
		return put_user(val, ip);
	case SG_GET_REQUEST_TABLE:
1080
		{
已提交
1081 1082
			sg_req_info_t *rinfo;

K
Kees Cook 已提交
1083
			rinfo = kcalloc(SG_MAX_QUEUE, SZ_SG_REQ_INFO,
1084
					GFP_KERNEL);
已提交
1085 1086
			if (!rinfo)
				return -ENOMEM;
L
Linus Torvalds 已提交
1087
			read_lock_irqsave(&sfp->rq_list_lock, iflags);
1088
			sg_fill_request_table(sfp, rinfo);
L
Linus Torvalds 已提交
1089
			read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
1090 1091 1092 1093 1094 1095 1096
	#ifdef CONFIG_COMPAT
			if (in_compat_syscall())
				result = put_compat_request_table(p, rinfo);
			else
	#endif
				result = copy_to_user(p, rinfo,
						      SZ_SG_REQ_INFO * SG_MAX_QUEUE);
已提交
1097 1098 1099
			result = result ? -EFAULT : 0;
			kfree(rinfo);
			return result;
L
Linus Torvalds 已提交
1100 1101
		}
	case SG_EMULATED_HOST:
1102
		if (atomic_read(&sdp->detaching))
L
Linus Torvalds 已提交
1103 1104 1105
			return -ENODEV;
		return put_user(sdp->device->host->hostt->emulated, ip);
	case SCSI_IOCTL_SEND_COMMAND:
1106
		if (atomic_read(&sdp->detaching))
L
Linus Torvalds 已提交
1107
			return -ENODEV;
1108
		return sg_scsi_ioctl(sdp->device->request_queue, NULL, filp->f_mode, p);
L
Linus Torvalds 已提交
1109 1110 1111 1112 1113 1114
	case SG_SET_DEBUG:
		result = get_user(val, ip);
		if (result)
			return result;
		sdp->sgdebug = (char) val;
		return 0;
1115
	case BLKSECTGET:
1116
		return put_user(max_sectors_bytes(sdp->device->request_queue),
1117
				ip);
1118 1119 1120
	case BLKTRACESETUP:
		return blk_trace_setup(sdp->device->request_queue,
				       sdp->disk->disk_name,
1121
				       MKDEV(SCSI_GENERIC_MAJOR, sdp->index),
1122
				       NULL, p);
1123 1124 1125 1126 1127 1128
	case BLKTRACESTART:
		return blk_trace_startstop(sdp->device->request_queue, 1);
	case BLKTRACESTOP:
		return blk_trace_startstop(sdp->device->request_queue, 0);
	case BLKTRACETEARDOWN:
		return blk_trace_remove(sdp->device->request_queue);
1129 1130 1131 1132 1133 1134 1135 1136
	case SCSI_IOCTL_GET_IDLUN:
	case SCSI_IOCTL_GET_BUS_NUMBER:
	case SCSI_IOCTL_PROBE_HOST:
	case SG_GET_TRANSFORM:
	case SG_SCSI_RESET:
		if (atomic_read(&sdp->detaching))
			return -ENODEV;
		break;
L
Linus Torvalds 已提交
1137 1138 1139
	default:
		if (read_only)
			return -EPERM;	/* don't know so take safe approach */
1140
		break;
L
Linus Torvalds 已提交
1141
	}
1142 1143 1144 1145 1146

	result = scsi_ioctl_block_when_processing_errors(sdp->device,
			cmd_in, filp->f_flags & O_NDELAY);
	if (result)
		return result;
1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165

	return -ENOIOCTLCMD;
}

static long
sg_ioctl(struct file *filp, unsigned int cmd_in, unsigned long arg)
{
	void __user *p = (void __user *)arg;
	Sg_device *sdp;
	Sg_fd *sfp;
	int ret;

	if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
		return -ENXIO;

	ret = sg_ioctl_common(filp, sdp, sfp, cmd_in, p);
	if (ret != -ENOIOCTLCMD)
		return ret;

1166
	return scsi_ioctl(sdp->device, cmd_in, p);
L
Linus Torvalds 已提交
1167 1168 1169 1170 1171
}

#ifdef CONFIG_COMPAT
static long sg_compat_ioctl(struct file *filp, unsigned int cmd_in, unsigned long arg)
{
1172
	void __user *p = compat_ptr(arg);
L
Linus Torvalds 已提交
1173 1174
	Sg_device *sdp;
	Sg_fd *sfp;
1175
	int ret;
L
Linus Torvalds 已提交
1176 1177 1178 1179

	if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
		return -ENXIO;

1180 1181
	ret = sg_ioctl_common(filp, sdp, sfp, cmd_in, p);
	if (ret != -ENOIOCTLCMD)
L
Linus Torvalds 已提交
1182
		return ret;
1183 1184

	return scsi_compat_ioctl(sdp->device, cmd_in, p);
L
Linus Torvalds 已提交
1185 1186 1187
}
#endif

1188
static __poll_t
L
Linus Torvalds 已提交
1189 1190
sg_poll(struct file *filp, poll_table * wait)
{
1191
	__poll_t res = 0;
L
Linus Torvalds 已提交
1192 1193 1194 1195 1196 1197
	Sg_device *sdp;
	Sg_fd *sfp;
	Sg_request *srp;
	int count = 0;
	unsigned long iflags;

J
Jörn Engel 已提交
1198 1199
	sfp = filp->private_data;
	if (!sfp)
1200
		return EPOLLERR;
J
Jörn Engel 已提交
1201 1202
	sdp = sfp->parentdp;
	if (!sdp)
1203
		return EPOLLERR;
L
Linus Torvalds 已提交
1204 1205
	poll_wait(filp, &sfp->read_wait, wait);
	read_lock_irqsave(&sfp->rq_list_lock, iflags);
1206
	list_for_each_entry(srp, &sfp->rq_list, entry) {
L
Linus Torvalds 已提交
1207 1208
		/* if any read waiting, flag it */
		if ((0 == res) && (1 == srp->done) && (!srp->sg_io_owned))
1209
			res = EPOLLIN | EPOLLRDNORM;
L
Linus Torvalds 已提交
1210 1211 1212 1213
		++count;
	}
	read_unlock_irqrestore(&sfp->rq_list_lock, iflags);

1214
	if (atomic_read(&sdp->detaching))
1215
		res |= EPOLLHUP;
L
Linus Torvalds 已提交
1216 1217
	else if (!sfp->cmd_q) {
		if (0 == count)
1218
			res |= EPOLLOUT | EPOLLWRNORM;
L
Linus Torvalds 已提交
1219
	} else if (count < SG_MAX_QUEUE)
1220
		res |= EPOLLOUT | EPOLLWRNORM;
H
Hannes Reinecke 已提交
1221
	SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
1222
				      "sg_poll: res=0x%x\n", (__force u32) res));
L
Linus Torvalds 已提交
1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233
	return res;
}

static int
sg_fasync(int fd, struct file *filp, int mode)
{
	Sg_device *sdp;
	Sg_fd *sfp;

	if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
		return -ENXIO;
H
Hannes Reinecke 已提交
1234 1235
	SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
				      "sg_fasync: mode=%d\n", mode));
L
Linus Torvalds 已提交
1236

1237
	return fasync_helper(fd, filp, mode, &sfp->async_qp);
L
Linus Torvalds 已提交
1238 1239
}

1240
static vm_fault_t
1241
sg_vma_fault(struct vm_fault *vmf)
L
Linus Torvalds 已提交
1242
{
1243
	struct vm_area_struct *vma = vmf->vma;
L
Linus Torvalds 已提交
1244
	Sg_fd *sfp;
1245
	unsigned long offset, len, sa;
L
Linus Torvalds 已提交
1246
	Sg_scatter_hold *rsv_schp;
1247
	int k, length;
L
Linus Torvalds 已提交
1248 1249

	if ((NULL == vma) || (!(sfp = (Sg_fd *) vma->vm_private_data)))
N
Nick Piggin 已提交
1250
		return VM_FAULT_SIGBUS;
L
Linus Torvalds 已提交
1251
	rsv_schp = &sfp->reserve;
N
Nick Piggin 已提交
1252
	offset = vmf->pgoff << PAGE_SHIFT;
L
Linus Torvalds 已提交
1253
	if (offset >= rsv_schp->bufflen)
N
Nick Piggin 已提交
1254
		return VM_FAULT_SIGBUS;
H
Hannes Reinecke 已提交
1255 1256 1257
	SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sfp->parentdp,
				      "sg_vma_fault: offset=%lu, scatg=%d\n",
				      offset, rsv_schp->k_use_sg));
1258
	sa = vma->vm_start;
1259 1260
	length = 1 << (PAGE_SHIFT + rsv_schp->page_order);
	for (k = 0; k < rsv_schp->k_use_sg && sa < vma->vm_end; k++) {
1261
		len = vma->vm_end - sa;
1262
		len = (len < length) ? len : length;
1263
		if (offset < len) {
1264 1265
			struct page *page = nth_page(rsv_schp->pages[k],
						     offset >> PAGE_SHIFT);
1266
			get_page(page);	/* increment page count */
N
Nick Piggin 已提交
1267 1268
			vmf->page = page;
			return 0; /* success */
L
Linus Torvalds 已提交
1269
		}
1270 1271
		sa += len;
		offset -= len;
L
Linus Torvalds 已提交
1272
	}
1273

N
Nick Piggin 已提交
1274
	return VM_FAULT_SIGBUS;
L
Linus Torvalds 已提交
1275 1276
}

1277
static const struct vm_operations_struct sg_mmap_vm_ops = {
N
Nick Piggin 已提交
1278
	.fault = sg_vma_fault,
L
Linus Torvalds 已提交
1279 1280 1281 1282 1283 1284
};

static int
sg_mmap(struct file *filp, struct vm_area_struct *vma)
{
	Sg_fd *sfp;
1285
	unsigned long req_sz, len, sa;
L
Linus Torvalds 已提交
1286
	Sg_scatter_hold *rsv_schp;
1287
	int k, length;
1288
	int ret = 0;
L
Linus Torvalds 已提交
1289 1290 1291

	if ((!filp) || (!vma) || (!(sfp = (Sg_fd *) filp->private_data)))
		return -ENXIO;
已提交
1292
	req_sz = vma->vm_end - vma->vm_start;
H
Hannes Reinecke 已提交
1293 1294 1295
	SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sfp->parentdp,
				      "sg_mmap starting, vm_start=%p, len=%d\n",
				      (void *) vma->vm_start, (int) req_sz));
L
Linus Torvalds 已提交
1296 1297 1298
	if (vma->vm_pgoff)
		return -EINVAL;	/* want no offset */
	rsv_schp = &sfp->reserve;
1299 1300 1301 1302 1303
	mutex_lock(&sfp->f_mutex);
	if (req_sz > rsv_schp->bufflen) {
		ret = -ENOMEM;	/* cannot map more than reserved buffer */
		goto out;
	}
L
Linus Torvalds 已提交
1304

1305
	sa = vma->vm_start;
1306 1307
	length = 1 << (PAGE_SHIFT + rsv_schp->page_order);
	for (k = 0; k < rsv_schp->k_use_sg && sa < vma->vm_end; k++) {
1308
		len = vma->vm_end - sa;
1309
		len = (len < length) ? len : length;
1310
		sa += len;
L
Linus Torvalds 已提交
1311
	}
1312

N
Nick Piggin 已提交
1313
	sfp->mmap_called = 1;
1314
	vma->vm_flags |= VM_IO | VM_DONTEXPAND | VM_DONTDUMP;
L
Linus Torvalds 已提交
1315 1316
	vma->vm_private_data = sfp;
	vma->vm_ops = &sg_mmap_vm_ops;
1317 1318 1319
out:
	mutex_unlock(&sfp->f_mutex);
	return ret;
L
Linus Torvalds 已提交
1320 1321
}

1322 1323
static void
sg_rq_end_io_usercontext(struct work_struct *work)
1324 1325 1326 1327 1328
{
	struct sg_request *srp = container_of(work, struct sg_request, ew.work);
	struct sg_fd *sfp = srp->parentfp;

	sg_finish_rem_req(srp);
1329
	sg_remove_request(sfp, srp);
1330 1331 1332
	kref_put(&sfp->f_ref, sg_remove_sfp);
}

1333 1334 1335 1336
/*
 * This function is a "bottom half" handler that is called by the mid
 * level when a command is completed (or has failed).
 */
1337
static void
1338
sg_rq_end_io(struct request *rq, blk_status_t status)
L
Linus Torvalds 已提交
1339
{
1340
	struct sg_request *srp = rq->end_io_data;
1341
	struct scsi_request *req = scsi_req(rq);
1342
	Sg_device *sdp;
L
Linus Torvalds 已提交
1343 1344
	Sg_fd *sfp;
	unsigned long iflags;
已提交
1345
	unsigned int ms;
1346
	char *sense;
1347
	int result, resid, done = 1;
L
Linus Torvalds 已提交
1348

1349
	if (WARN_ON(srp->done != 0))
L
Linus Torvalds 已提交
1350
		return;
1351

L
Linus Torvalds 已提交
1352
	sfp = srp->parentfp;
1353
	if (WARN_ON(sfp == NULL))
L
Linus Torvalds 已提交
1354
		return;
1355 1356

	sdp = sfp->parentdp;
1357 1358
	if (unlikely(atomic_read(&sdp->detaching)))
		pr_info("%s: device detaching\n", __func__);
L
Linus Torvalds 已提交
1359

1360
	sense = req->sense;
1361
	result = req->result;
1362
	resid = req->resid_len;
L
Linus Torvalds 已提交
1363

H
Hannes Reinecke 已提交
1364 1365 1366
	SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sdp,
				      "sg_cmd_done: pack_id=%d, res=0x%x\n",
				      srp->header.pack_id, result));
1367
	srp->header.resid = resid;
已提交
1368 1369 1370
	ms = jiffies_to_msecs(jiffies);
	srp->header.duration = (ms > srp->header.duration) ?
				(ms - srp->header.duration) : 0;
1371
	if (0 != result) {
L
Linus Torvalds 已提交
1372 1373
		struct scsi_sense_hdr sshdr;

1374 1375 1376 1377 1378
		srp->header.status = 0xff & result;
		srp->header.masked_status = status_byte(result);
		srp->header.msg_status = msg_byte(result);
		srp->header.host_status = host_byte(result);
		srp->header.driver_status = driver_byte(result);
L
Linus Torvalds 已提交
1379 1380 1381
		if ((sdp->sgdebug > 0) &&
		    ((CHECK_CONDITION == srp->header.masked_status) ||
		     (COMMAND_TERMINATED == srp->header.masked_status)))
1382
			__scsi_print_sense(sdp->device, __func__, sense,
1383
					   SCSI_SENSE_BUFFERSIZE);
L
Linus Torvalds 已提交
1384 1385

		/* Following if statement is a patch supplied by Eric Youngdale */
1386 1387
		if (driver_byte(result) != 0
		    && scsi_normalize_sense(sense, SCSI_SENSE_BUFFERSIZE, &sshdr)
L
Linus Torvalds 已提交
1388 1389 1390 1391 1392 1393 1394 1395
		    && !scsi_sense_is_deferred(&sshdr)
		    && sshdr.sense_key == UNIT_ATTENTION
		    && sdp->device->removable) {
			/* Detected possible disc change. Set the bit - this */
			/* may be used if there are filesystems using this device */
			sdp->device->changed = 1;
		}
	}
1396 1397 1398 1399

	if (req->sense_len)
		memcpy(srp->sense_b, req->sense, SCSI_SENSE_BUFFERSIZE);

L
Linus Torvalds 已提交
1400 1401
	/* Rely on write phase to clean out srp status values, so no "else" */

1402 1403 1404 1405 1406 1407 1408
	/*
	 * Free the request as soon as it is complete so that its resources
	 * can be reused without waiting for userspace to read() the
	 * result.  But keep the associated bio (if any) around until
	 * blk_rq_unmap_user() can be called from user context.
	 */
	srp->rq = NULL;
1409
	scsi_req_free_cmd(scsi_req(rq));
J
Jens Axboe 已提交
1410
	blk_put_request(rq);
1411

1412 1413
	write_lock_irqsave(&sfp->rq_list_lock, iflags);
	if (unlikely(srp->orphan)) {
L
Linus Torvalds 已提交
1414 1415
		if (sfp->keep_orphan)
			srp->sg_io_owned = 0;
1416 1417
		else
			done = 0;
L
Linus Torvalds 已提交
1418
	}
1419 1420 1421 1422 1423 1424 1425
	srp->done = done;
	write_unlock_irqrestore(&sfp->rq_list_lock, iflags);

	if (likely(done)) {
		/* Now wake up any sg_read() that is waiting for this
		 * packet.
		 */
L
Linus Torvalds 已提交
1426
		wake_up_interruptible(&sfp->read_wait);
1427
		kill_fasync(&sfp->async_qp, SIGPOLL, POLL_IN);
1428
		kref_put(&sfp->f_ref, sg_remove_sfp);
1429 1430 1431 1432
	} else {
		INIT_WORK(&srp->ew.work, sg_rq_end_io_usercontext);
		schedule_work(&srp->ew.work);
	}
L
Linus Torvalds 已提交
1433 1434
}

1435
static const struct file_operations sg_fops = {
L
Linus Torvalds 已提交
1436 1437 1438 1439
	.owner = THIS_MODULE,
	.read = sg_read,
	.write = sg_write,
	.poll = sg_poll,
J
Jörn Engel 已提交
1440
	.unlocked_ioctl = sg_ioctl,
L
Linus Torvalds 已提交
1441 1442 1443 1444 1445 1446 1447
#ifdef CONFIG_COMPAT
	.compat_ioctl = sg_compat_ioctl,
#endif
	.open = sg_open,
	.mmap = sg_mmap,
	.release = sg_release,
	.fasync = sg_fasync,
1448
	.llseek = no_llseek,
L
Linus Torvalds 已提交
1449 1450
};

1451
static struct class *sg_sysfs_class;
L
Linus Torvalds 已提交
1452 1453 1454

static int sg_sysfs_valid = 0;

1455 1456
static Sg_device *
sg_alloc(struct gendisk *disk, struct scsi_device *scsidp)
L
Linus Torvalds 已提交
1457
{
1458
	struct request_queue *q = scsidp->request_queue;
L
Linus Torvalds 已提交
1459 1460
	Sg_device *sdp;
	unsigned long iflags;
1461 1462
	int error;
	u32 k;
L
Linus Torvalds 已提交
1463

J
Jes Sorensen 已提交
1464
	sdp = kzalloc(sizeof(Sg_device), GFP_KERNEL);
L
Linus Torvalds 已提交
1465
	if (!sdp) {
1466 1467
		sdev_printk(KERN_WARNING, scsidp, "%s: kmalloc Sg_device "
			    "failure\n", __func__);
1468 1469
		return ERR_PTR(-ENOMEM);
	}
1470

T
Tejun Heo 已提交
1471
	idr_preload(GFP_KERNEL);
1472
	write_lock_irqsave(&sg_index_lock, iflags);
L
Linus Torvalds 已提交
1473

T
Tejun Heo 已提交
1474 1475 1476 1477 1478 1479 1480 1481
	error = idr_alloc(&sg_index_idr, sdp, 0, SG_MAX_DEVS, GFP_NOWAIT);
	if (error < 0) {
		if (error == -ENOSPC) {
			sdev_printk(KERN_WARNING, scsidp,
				    "Unable to attach sg device type=%d, minor number exceeds %d\n",
				    scsidp->type, SG_MAX_DEVS - 1);
			error = -ENODEV;
		} else {
1482 1483 1484
			sdev_printk(KERN_WARNING, scsidp, "%s: idr "
				    "allocation Sg_device failure: %d\n",
				    __func__, error);
T
Tejun Heo 已提交
1485 1486
		}
		goto out_unlock;
L
Linus Torvalds 已提交
1487
	}
T
Tejun Heo 已提交
1488
	k = error;
L
Linus Torvalds 已提交
1489

H
Hannes Reinecke 已提交
1490 1491
	SCSI_LOG_TIMEOUT(3, sdev_printk(KERN_INFO, scsidp,
					"sg_alloc: dev=%d \n", k));
L
Linus Torvalds 已提交
1492 1493 1494 1495
	sprintf(disk->disk_name, "sg%d", k);
	disk->first_minor = k;
	sdp->disk = disk;
	sdp->device = scsidp;
1496
	mutex_init(&sdp->open_rel_lock);
1497
	INIT_LIST_HEAD(&sdp->sfds);
1498 1499 1500
	init_waitqueue_head(&sdp->open_wait);
	atomic_set(&sdp->detaching, 0);
	rwlock_init(&sdp->sfd_lock);
1501
	sdp->sg_tablesize = queue_max_segments(q);
1502
	sdp->index = k;
1503
	kref_init(&sdp->d_ref);
T
Tejun Heo 已提交
1504
	error = 0;
1505

T
Tejun Heo 已提交
1506
out_unlock:
1507
	write_unlock_irqrestore(&sg_index_lock, iflags);
T
Tejun Heo 已提交
1508
	idr_preload_end();
L
Linus Torvalds 已提交
1509

1510
	if (error) {
L
Linus Torvalds 已提交
1511
		kfree(sdp);
1512 1513 1514
		return ERR_PTR(error);
	}
	return sdp;
L
Linus Torvalds 已提交
1515 1516 1517
}

static int
1518
sg_add_device(struct device *cl_dev, struct class_interface *cl_intf)
L
Linus Torvalds 已提交
1519
{
1520
	struct scsi_device *scsidp = to_scsi_device(cl_dev->parent);
L
Linus Torvalds 已提交
1521 1522 1523
	struct gendisk *disk;
	Sg_device *sdp = NULL;
	struct cdev * cdev = NULL;
1524
	int error;
1525
	unsigned long iflags;
L
Linus Torvalds 已提交
1526 1527 1528

	disk = alloc_disk(1);
	if (!disk) {
1529
		pr_warn("%s: alloc_disk failed\n", __func__);
L
Linus Torvalds 已提交
1530 1531 1532 1533 1534 1535 1536
		return -ENOMEM;
	}
	disk->major = SCSI_GENERIC_MAJOR;

	error = -ENOMEM;
	cdev = cdev_alloc();
	if (!cdev) {
1537
		pr_warn("%s: cdev_alloc failed\n", __func__);
L
Linus Torvalds 已提交
1538 1539 1540 1541 1542
		goto out;
	}
	cdev->owner = THIS_MODULE;
	cdev->ops = &sg_fops;

1543 1544
	sdp = sg_alloc(disk, scsidp);
	if (IS_ERR(sdp)) {
1545
		pr_warn("%s: sg_alloc failed\n", __func__);
1546
		error = PTR_ERR(sdp);
L
Linus Torvalds 已提交
1547 1548 1549
		goto out;
	}

1550
	error = cdev_add(cdev, MKDEV(SCSI_GENERIC_MAJOR, sdp->index), 1);
1551
	if (error)
1552
		goto cdev_add_err;
1553

L
Linus Torvalds 已提交
1554 1555
	sdp->cdev = cdev;
	if (sg_sysfs_valid) {
1556
		struct device *sg_class_member;
L
Linus Torvalds 已提交
1557

1558 1559 1560 1561
		sg_class_member = device_create(sg_sysfs_class, cl_dev->parent,
						MKDEV(SCSI_GENERIC_MAJOR,
						      sdp->index),
						sdp, "%s", disk->disk_name);
1562
		if (IS_ERR(sg_class_member)) {
1563
			pr_err("%s: device_create failed\n", __func__);
1564 1565 1566 1567
			error = PTR_ERR(sg_class_member);
			goto cdev_add_err;
		}
		error = sysfs_create_link(&scsidp->sdev_gendev.kobj,
L
Linus Torvalds 已提交
1568 1569
					  &sg_class_member->kobj, "generic");
		if (error)
1570 1571
			pr_err("%s: unable to make symlink 'generic' back "
			       "to sg%d\n", __func__, sdp->index);
L
Linus Torvalds 已提交
1572
	} else
1573
		pr_warn("%s: sg_sys Invalid\n", __func__);
L
Linus Torvalds 已提交
1574

1575 1576
	sdev_printk(KERN_NOTICE, scsidp, "Attached scsi generic sg%d "
		    "type %d\n", sdp->index, scsidp->type);
L
Linus Torvalds 已提交
1577

1578
	dev_set_drvdata(cl_dev, sdp);
1579

L
Linus Torvalds 已提交
1580 1581
	return 0;

1582
cdev_add_err:
1583 1584 1585 1586
	write_lock_irqsave(&sg_index_lock, iflags);
	idr_remove(&sg_index_idr, sdp->index);
	write_unlock_irqrestore(&sg_index_lock, iflags);
	kfree(sdp);
1587

L
Linus Torvalds 已提交
1588 1589 1590 1591 1592 1593 1594
out:
	put_disk(disk);
	if (cdev)
		cdev_del(cdev);
	return error;
}

1595 1596
static void
sg_device_destroy(struct kref *kref)
1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610
{
	struct sg_device *sdp = container_of(kref, struct sg_device, d_ref);
	unsigned long flags;

	/* CAUTION!  Note that the device can still be found via idr_find()
	 * even though the refcount is 0.  Therefore, do idr_remove() BEFORE
	 * any other cleanup.
	 */

	write_lock_irqsave(&sg_index_lock, flags);
	idr_remove(&sg_index_idr, sdp->index);
	write_unlock_irqrestore(&sg_index_lock, flags);

	SCSI_LOG_TIMEOUT(3,
H
Hannes Reinecke 已提交
1611
		sg_printk(KERN_INFO, sdp, "sg_device_destroy\n"));
1612 1613 1614 1615 1616

	put_disk(sdp->disk);
	kfree(sdp);
}

1617 1618
static void
sg_remove_device(struct device *cl_dev, struct class_interface *cl_intf)
L
Linus Torvalds 已提交
1619
{
1620 1621
	struct scsi_device *scsidp = to_scsi_device(cl_dev->parent);
	Sg_device *sdp = dev_get_drvdata(cl_dev);
L
Linus Torvalds 已提交
1622 1623
	unsigned long iflags;
	Sg_fd *sfp;
1624
	int val;
L
Linus Torvalds 已提交
1625

1626
	if (!sdp)
L
Linus Torvalds 已提交
1627
		return;
1628 1629 1630 1631
	/* want sdp->detaching non-zero as soon as possible */
	val = atomic_inc_return(&sdp->detaching);
	if (val > 1)
		return; /* only want to do following once per device */
1632

H
Hannes Reinecke 已提交
1633 1634
	SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
				      "%s\n", __func__));
1635

1636
	read_lock_irqsave(&sdp->sfd_lock, iflags);
1637
	list_for_each_entry(sfp, &sdp->sfds, sfd_siblings) {
1638
		wake_up_interruptible_all(&sfp->read_wait);
1639
		kill_fasync(&sfp->async_qp, SIGPOLL, POLL_HUP);
1640
	}
1641 1642
	wake_up_interruptible_all(&sdp->open_wait);
	read_unlock_irqrestore(&sdp->sfd_lock, iflags);
1643 1644

	sysfs_remove_link(&scsidp->sdev_gendev.kobj, "generic");
1645
	device_destroy(sg_sysfs_class, MKDEV(SCSI_GENERIC_MAJOR, sdp->index));
1646 1647
	cdev_del(sdp->cdev);
	sdp->cdev = NULL;
L
Linus Torvalds 已提交
1648

1649
	kref_put(&sdp->d_ref, sg_device_destroy);
L
Linus Torvalds 已提交
1650 1651
}

1652 1653 1654
module_param_named(scatter_elem_sz, scatter_elem_sz, int, S_IRUGO | S_IWUSR);
module_param_named(def_reserved_size, def_reserved_size, int,
		   S_IRUGO | S_IWUSR);
L
Linus Torvalds 已提交
1655 1656 1657 1658 1659 1660
module_param_named(allow_dio, sg_allow_dio, int, S_IRUGO | S_IWUSR);

MODULE_AUTHOR("Douglas Gilbert");
MODULE_DESCRIPTION("SCSI generic (sg) driver");
MODULE_LICENSE("GPL");
MODULE_VERSION(SG_VERSION_STR);
1661
MODULE_ALIAS_CHARDEV_MAJOR(SCSI_GENERIC_MAJOR);
L
Linus Torvalds 已提交
1662

1663 1664
MODULE_PARM_DESC(scatter_elem_sz, "scatter gather element "
                "size (default: max(SG_SCATTER_SZ, PAGE_SIZE))");
L
Linus Torvalds 已提交
1665 1666 1667 1668 1669 1670 1671 1672
MODULE_PARM_DESC(def_reserved_size, "size of buffer reserved for each fd");
MODULE_PARM_DESC(allow_dio, "allow direct I/O (default: 0 (disallow))");

static int __init
init_sg(void)
{
	int rc;

1673 1674 1675 1676
	if (scatter_elem_sz < PAGE_SIZE) {
		scatter_elem_sz = PAGE_SIZE;
		scatter_elem_sz_prev = scatter_elem_sz;
	}
L
Linus Torvalds 已提交
1677 1678
	if (def_reserved_size >= 0)
		sg_big_buff = def_reserved_size;
1679 1680
	else
		def_reserved_size = sg_big_buff;
L
Linus Torvalds 已提交
1681 1682 1683 1684 1685

	rc = register_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0), 
				    SG_MAX_DEVS, "sg");
	if (rc)
		return rc;
1686
        sg_sysfs_class = class_create(THIS_MODULE, "scsi_generic");
L
Linus Torvalds 已提交
1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698
        if ( IS_ERR(sg_sysfs_class) ) {
		rc = PTR_ERR(sg_sysfs_class);
		goto err_out;
        }
	sg_sysfs_valid = 1;
	rc = scsi_register_interface(&sg_interface);
	if (0 == rc) {
#ifdef CONFIG_SCSI_PROC_FS
		sg_proc_init();
#endif				/* CONFIG_SCSI_PROC_FS */
		return 0;
	}
1699
	class_destroy(sg_sysfs_class);
L
Linus Torvalds 已提交
1700 1701 1702 1703 1704 1705 1706 1707 1708
err_out:
	unregister_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0), SG_MAX_DEVS);
	return rc;
}

static void __exit
exit_sg(void)
{
#ifdef CONFIG_SCSI_PROC_FS
C
Christoph Hellwig 已提交
1709
	remove_proc_subtree("scsi/sg", NULL);
L
Linus Torvalds 已提交
1710 1711
#endif				/* CONFIG_SCSI_PROC_FS */
	scsi_unregister_interface(&sg_interface);
1712
	class_destroy(sg_sysfs_class);
L
Linus Torvalds 已提交
1713 1714 1715
	sg_sysfs_valid = 0;
	unregister_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0),
				 SG_MAX_DEVS);
1716
	idr_destroy(&sg_index_idr);
L
Linus Torvalds 已提交
1717 1718
}

1719 1720
static int
sg_start_req(Sg_request *srp, unsigned char *cmd)
1721
{
1722
	int res;
1723
	struct request *rq;
1724
	struct scsi_request *req;
F
FUJITA Tomonori 已提交
1725 1726 1727 1728
	Sg_fd *sfp = srp->parentfp;
	sg_io_hdr_t *hp = &srp->header;
	int dxfer_len = (int) hp->dxfer_len;
	int dxfer_dir = hp->dxfer_direction;
1729
	unsigned int iov_count = hp->iovec_count;
F
FUJITA Tomonori 已提交
1730 1731 1732
	Sg_scatter_hold *req_schp = &srp->data;
	Sg_scatter_hold *rsv_schp = &sfp->reserve;
	struct request_queue *q = sfp->parentdp->device->request_queue;
1733
	struct rq_map_data *md, map_data;
1734
	int rw = hp->dxfer_direction == SG_DXFER_TO_DEV ? WRITE : READ;
1735
	unsigned char *long_cmdp = NULL;
1736

H
Hannes Reinecke 已提交
1737 1738 1739
	SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
				      "sg_start_req: dxfer_len=%d\n",
				      dxfer_len));
F
FUJITA Tomonori 已提交
1740

1741 1742 1743 1744 1745 1746
	if (hp->cmd_len > BLK_MAX_CDB) {
		long_cmdp = kzalloc(hp->cmd_len, GFP_KERNEL);
		if (!long_cmdp)
			return -ENOMEM;
	}

1747 1748 1749 1750 1751
	/*
	 * NOTE
	 *
	 * With scsi-mq enabled, there are a fixed number of preallocated
	 * requests equal in number to shost->can_queue.  If all of the
1752 1753 1754 1755 1756
	 * preallocated requests are already in use, then blk_get_request()
	 * will sleep until an active command completes, freeing up a request.
	 * Although waiting in an asynchronous interface is less than ideal, we
	 * do not want to use BLK_MQ_REQ_NOWAIT here because userspace might
	 * not expect an EWOULDBLOCK from this condition.
1757
	 */
1758
	rq = blk_get_request(q, hp->dxfer_direction == SG_DXFER_TO_DEV ?
1759
			REQ_OP_SCSI_OUT : REQ_OP_SCSI_IN, 0);
1760
	if (IS_ERR(rq)) {
1761
		kfree(long_cmdp);
1762
		return PTR_ERR(rq);
1763
	}
1764
	req = scsi_req(rq);
1765

1766
	if (hp->cmd_len > BLK_MAX_CDB)
1767 1768 1769
		req->cmd = long_cmdp;
	memcpy(req->cmd, cmd, hp->cmd_len);
	req->cmd_len = hp->cmd_len;
1770 1771 1772

	srp->rq = rq;
	rq->end_io_data = srp;
1773
	req->retries = SG_DEFAULT_RETRIES;
1774

L
Linus Torvalds 已提交
1775
	if ((dxfer_len <= 0) || (dxfer_dir == SG_DXFER_NONE))
1776
		return 0;
1777

1778 1779 1780
	if (sg_allow_dio && hp->flags & SG_FLAG_DIRECT_IO &&
	    dxfer_dir != SG_DXFER_UNKNOWN && !iov_count &&
	    !sfp->parentdp->device->host->unchecked_isa_dma &&
1781
	    blk_rq_aligned(q, (unsigned long)hp->dxferp, dxfer_len))
1782 1783 1784 1785 1786
		md = NULL;
	else
		md = &map_data;

	if (md) {
1787 1788 1789 1790
		mutex_lock(&sfp->f_mutex);
		if (dxfer_len <= rsv_schp->bufflen &&
		    !sfp->res_in_use) {
			sfp->res_in_use = 1;
1791
			sg_link_reserve(sfp, srp, dxfer_len);
1792 1793 1794 1795
		} else if (hp->flags & SG_FLAG_MMAP_IO) {
			res = -EBUSY; /* sfp->res_in_use == 1 */
			if (dxfer_len > rsv_schp->bufflen)
				res = -ENOMEM;
1796
			mutex_unlock(&sfp->f_mutex);
1797
			return res;
1798
		} else {
1799
			res = sg_build_indirect(req_schp, sfp, dxfer_len);
1800 1801
			if (res) {
				mutex_unlock(&sfp->f_mutex);
1802
				return res;
1803
			}
1804
		}
1805
		mutex_unlock(&sfp->f_mutex);
1806

1807 1808 1809
		md->pages = req_schp->pages;
		md->page_order = req_schp->page_order;
		md->nr_entries = req_schp->k_use_sg;
1810
		md->offset = 0;
1811
		md->null_mapped = hp->dxferp ? 0 : 1;
1812 1813 1814 1815
		if (dxfer_dir == SG_DXFER_TO_FROM_DEV)
			md->from_user = 1;
		else
			md->from_user = 0;
1816 1817
	}

1818
	if (iov_count) {
A
Al Viro 已提交
1819
		struct iovec *iov = NULL;
1820
		struct iov_iter i;
1821

1822
		res = import_iovec(rw, hp->dxferp, iov_count, 0, &iov, &i);
A
Al Viro 已提交
1823 1824
		if (res < 0)
			return res;
1825

A
Al Viro 已提交
1826
		iov_iter_truncate(&i, hp->dxfer_len);
A
Al Viro 已提交
1827 1828 1829 1830
		if (!iov_iter_count(&i)) {
			kfree(iov);
			return -EINVAL;
		}
1831

1832
		res = blk_rq_map_user_iov(q, rq, md, &i, GFP_ATOMIC);
1833 1834
		kfree(iov);
	} else
1835 1836
		res = blk_rq_map_user(q, rq, md, hp->dxferp,
				      hp->dxfer_len, GFP_ATOMIC);
1837 1838

	if (!res) {
1839
		srp->bio = rq->bio;
1840

1841 1842 1843 1844 1845
		if (!md) {
			req_schp->dio_in_use = 1;
			hp->info |= SG_INFO_DIRECT_IO;
		}
	}
1846
	return res;
L
Linus Torvalds 已提交
1847 1848
}

1849 1850
static int
sg_finish_rem_req(Sg_request *srp)
L
Linus Torvalds 已提交
1851
{
1852 1853
	int ret = 0;

L
Linus Torvalds 已提交
1854 1855 1856
	Sg_fd *sfp = srp->parentfp;
	Sg_scatter_hold *req_schp = &srp->data;

H
Hannes Reinecke 已提交
1857 1858 1859
	SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
				      "sg_finish_rem_req: res_used=%d\n",
				      (int) srp->res_used));
1860 1861
	if (srp->bio)
		ret = blk_rq_unmap_user(srp->bio);
1862

1863
	if (srp->rq) {
1864
		scsi_req_free_cmd(scsi_req(srp->rq));
1865
		blk_put_request(srp->rq);
1866
	}
1867

1868 1869 1870
	if (srp->res_used)
		sg_unlink_reserve(sfp, srp);
	else
H
Hannes Reinecke 已提交
1871
		sg_remove_scat(sfp, req_schp);
1872

1873
	return ret;
L
Linus Torvalds 已提交
1874 1875 1876 1877 1878
}

static int
sg_build_sgat(Sg_scatter_hold * schp, const Sg_fd * sfp, int tablesize)
{
1879
	int sg_bufflen = tablesize * sizeof(struct page *);
A
Al Viro 已提交
1880
	gfp_t gfp_flags = GFP_ATOMIC | __GFP_NOWARN;
L
Linus Torvalds 已提交
1881

1882 1883
	schp->pages = kzalloc(sg_bufflen, gfp_flags);
	if (!schp->pages)
L
Linus Torvalds 已提交
1884 1885
		return -ENOMEM;
	schp->sglist_len = sg_bufflen;
1886
	return tablesize;	/* number of scat_gath elements allocated */
L
Linus Torvalds 已提交
1887 1888 1889 1890 1891
}

static int
sg_build_indirect(Sg_scatter_hold * schp, Sg_fd * sfp, int buff_size)
{
1892
	int ret_sz = 0, i, k, rem_sz, num, mx_sc_elems;
1893
	int sg_tablesize = sfp->parentdp->sg_tablesize;
1894
	int blk_size = buff_size, order;
1895
	gfp_t gfp_mask = GFP_ATOMIC | __GFP_COMP | __GFP_NOWARN | __GFP_ZERO;
1896
	struct sg_device *sdp = sfp->parentdp;
L
Linus Torvalds 已提交
1897

1898
	if (blk_size < 0)
L
Linus Torvalds 已提交
1899 1900 1901
		return -EFAULT;
	if (0 == blk_size)
		++blk_size;	/* don't know why */
F
FUJITA Tomonori 已提交
1902 1903
	/* round request up to next highest SG_SECTOR_SZ byte boundary */
	blk_size = ALIGN(blk_size, SG_SECTOR_SZ);
H
Hannes Reinecke 已提交
1904 1905 1906
	SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
		"sg_build_indirect: buff_size=%d, blk_size=%d\n",
		buff_size, blk_size));
1907 1908 1909 1910 1911 1912

	/* N.B. ret_sz carried into this block ... */
	mx_sc_elems = sg_build_sgat(schp, sfp, sg_tablesize);
	if (mx_sc_elems < 0)
		return mx_sc_elems;	/* most likely -ENOMEM */

1913 1914 1915 1916 1917 1918 1919 1920
	num = scatter_elem_sz;
	if (unlikely(num != scatter_elem_sz_prev)) {
		if (num < PAGE_SIZE) {
			scatter_elem_sz = PAGE_SIZE;
			scatter_elem_sz_prev = PAGE_SIZE;
		} else
			scatter_elem_sz_prev = num;
	}
1921

1922
	if (sdp->device->host->unchecked_isa_dma)
1923 1924 1925 1926 1927 1928 1929 1930 1931
		gfp_mask |= GFP_DMA;

	order = get_order(num);
retry:
	ret_sz = 1 << (PAGE_SHIFT + order);

	for (k = 0, rem_sz = blk_size; rem_sz > 0 && k < mx_sc_elems;
	     k++, rem_sz -= ret_sz) {

1932
		num = (rem_sz > scatter_elem_sz_prev) ?
1933 1934
			scatter_elem_sz_prev : rem_sz;

1935
		schp->pages[k] = alloc_pages(gfp_mask, order);
1936 1937
		if (!schp->pages[k])
			goto out;
1938

1939 1940 1941 1942 1943 1944
		if (num == scatter_elem_sz_prev) {
			if (unlikely(ret_sz > scatter_elem_sz_prev)) {
				scatter_elem_sz = ret_sz;
				scatter_elem_sz_prev = ret_sz;
			}
		}
1945

H
Hannes Reinecke 已提交
1946 1947 1948
		SCSI_LOG_TIMEOUT(5, sg_printk(KERN_INFO, sfp->parentdp,
				 "sg_build_indirect: k=%d, num=%d, ret_sz=%d\n",
				 k, num, ret_sz));
1949 1950
	}		/* end of for loop */

1951
	schp->page_order = order;
1952
	schp->k_use_sg = k;
H
Hannes Reinecke 已提交
1953 1954 1955
	SCSI_LOG_TIMEOUT(5, sg_printk(KERN_INFO, sfp->parentdp,
			 "sg_build_indirect: k_use_sg=%d, rem_sz=%d\n",
			 k, rem_sz));
1956 1957 1958 1959

	schp->bufflen = blk_size;
	if (rem_sz > 0)	/* must have failed */
		return -ENOMEM;
L
Linus Torvalds 已提交
1960
	return 0;
1961 1962
out:
	for (i = 0; i < k; i++)
1963
		__free_pages(schp->pages[i], order);
1964 1965 1966 1967 1968

	if (--order >= 0)
		goto retry;

	return -ENOMEM;
L
Linus Torvalds 已提交
1969 1970 1971
}

static void
H
Hannes Reinecke 已提交
1972
sg_remove_scat(Sg_fd * sfp, Sg_scatter_hold * schp)
L
Linus Torvalds 已提交
1973
{
H
Hannes Reinecke 已提交
1974 1975
	SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
			 "sg_remove_scat: k_use_sg=%d\n", schp->k_use_sg));
1976
	if (schp->pages && schp->sglist_len > 0) {
1977
		if (!schp->dio_in_use) {
L
Linus Torvalds 已提交
1978 1979
			int k;

1980
			for (k = 0; k < schp->k_use_sg && schp->pages[k]; k++) {
H
Hannes Reinecke 已提交
1981 1982 1983 1984
				SCSI_LOG_TIMEOUT(5,
					sg_printk(KERN_INFO, sfp->parentdp,
					"sg_remove_scat: k=%d, pg=0x%p\n",
					k, schp->pages[k]));
1985
				__free_pages(schp->pages[k], schp->page_order);
L
Linus Torvalds 已提交
1986
			}
1987

1988
			kfree(schp->pages);
L
Linus Torvalds 已提交
1989
		}
1990
	}
L
Linus Torvalds 已提交
1991 1992 1993 1994 1995 1996 1997
	memset(schp, 0, sizeof (*schp));
}

static int
sg_read_oxfer(Sg_request * srp, char __user *outp, int num_read_xfer)
{
	Sg_scatter_hold *schp = &srp->data;
1998
	int k, num;
L
Linus Torvalds 已提交
1999

H
Hannes Reinecke 已提交
2000 2001 2002
	SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, srp->parentfp->parentdp,
			 "sg_read_oxfer: num_read_xfer=%d\n",
			 num_read_xfer));
L
Linus Torvalds 已提交
2003 2004
	if ((!outp) || (num_read_xfer <= 0))
		return 0;
2005

2006 2007
	num = 1 << (PAGE_SHIFT + schp->page_order);
	for (k = 0; k < schp->k_use_sg && schp->pages[k]; k++) {
2008
		if (num > num_read_xfer) {
2009
			if (copy_to_user(outp, page_address(schp->pages[k]),
2010 2011 2012 2013
					   num_read_xfer))
				return -EFAULT;
			break;
		} else {
2014
			if (copy_to_user(outp, page_address(schp->pages[k]),
2015 2016 2017 2018
					   num))
				return -EFAULT;
			num_read_xfer -= num;
			if (num_read_xfer <= 0)
L
Linus Torvalds 已提交
2019
				break;
2020
			outp += num;
L
Linus Torvalds 已提交
2021 2022
		}
	}
2023

L
Linus Torvalds 已提交
2024 2025 2026 2027 2028 2029 2030 2031
	return 0;
}

static void
sg_build_reserve(Sg_fd * sfp, int req_size)
{
	Sg_scatter_hold *schp = &sfp->reserve;

H
Hannes Reinecke 已提交
2032 2033
	SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
			 "sg_build_reserve: req_size=%d\n", req_size));
L
Linus Torvalds 已提交
2034 2035 2036 2037 2038 2039
	do {
		if (req_size < PAGE_SIZE)
			req_size = PAGE_SIZE;
		if (0 == sg_build_indirect(schp, sfp, req_size))
			return;
		else
H
Hannes Reinecke 已提交
2040
			sg_remove_scat(sfp, schp);
L
Linus Torvalds 已提交
2041 2042 2043 2044 2045 2046 2047 2048 2049
		req_size >>= 1;	/* divide by 2 */
	} while (req_size > (PAGE_SIZE / 2));
}

static void
sg_link_reserve(Sg_fd * sfp, Sg_request * srp, int size)
{
	Sg_scatter_hold *req_schp = &srp->data;
	Sg_scatter_hold *rsv_schp = &sfp->reserve;
2050
	int k, num, rem;
L
Linus Torvalds 已提交
2051 2052

	srp->res_used = 1;
H
Hannes Reinecke 已提交
2053 2054
	SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
			 "sg_link_reserve: size=%d\n", size));
B
Brian King 已提交
2055
	rem = size;
2056

2057 2058
	num = 1 << (PAGE_SHIFT + rsv_schp->page_order);
	for (k = 0; k < rsv_schp->k_use_sg; k++) {
2059 2060 2061
		if (rem <= num) {
			req_schp->k_use_sg = k + 1;
			req_schp->sglist_len = rsv_schp->sglist_len;
2062
			req_schp->pages = rsv_schp->pages;
2063 2064

			req_schp->bufflen = size;
2065
			req_schp->page_order = rsv_schp->page_order;
2066 2067 2068
			break;
		} else
			rem -= num;
L
Linus Torvalds 已提交
2069
	}
2070 2071

	if (k >= rsv_schp->k_use_sg)
H
Hannes Reinecke 已提交
2072 2073
		SCSI_LOG_TIMEOUT(1, sg_printk(KERN_INFO, sfp->parentdp,
				 "sg_link_reserve: BAD size\n"));
L
Linus Torvalds 已提交
2074 2075 2076 2077 2078 2079 2080
}

static void
sg_unlink_reserve(Sg_fd * sfp, Sg_request * srp)
{
	Sg_scatter_hold *req_schp = &srp->data;

H
Hannes Reinecke 已提交
2081 2082 2083
	SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, srp->parentfp->parentdp,
				      "sg_unlink_reserve: req->k_use_sg=%d\n",
				      (int) req_schp->k_use_sg));
L
Linus Torvalds 已提交
2084 2085
	req_schp->k_use_sg = 0;
	req_schp->bufflen = 0;
2086 2087
	req_schp->pages = NULL;
	req_schp->page_order = 0;
L
Linus Torvalds 已提交
2088 2089
	req_schp->sglist_len = 0;
	srp->res_used = 0;
2090 2091
	/* Called without mutex lock to avoid deadlock */
	sfp->res_in_use = 0;
L
Linus Torvalds 已提交
2092 2093 2094 2095 2096 2097 2098 2099 2100
}

static Sg_request *
sg_get_rq_mark(Sg_fd * sfp, int pack_id)
{
	Sg_request *resp;
	unsigned long iflags;

	write_lock_irqsave(&sfp->rq_list_lock, iflags);
2101
	list_for_each_entry(resp, &sfp->rq_list, entry) {
L
Linus Torvalds 已提交
2102 2103 2104 2105
		/* look for requests that are ready + not SG_IO owned */
		if ((1 == resp->done) && (!resp->sg_io_owned) &&
		    ((-1 == pack_id) || (resp->header.pack_id == pack_id))) {
			resp->done = 2;	/* guard against other readers */
2106 2107
			write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
			return resp;
L
Linus Torvalds 已提交
2108 2109 2110
		}
	}
	write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
2111
	return NULL;
L
Linus Torvalds 已提交
2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122
}

/* always adds to end of list */
static Sg_request *
sg_add_request(Sg_fd * sfp)
{
	int k;
	unsigned long iflags;
	Sg_request *rp = sfp->req_arr;

	write_lock_irqsave(&sfp->rq_list_lock, iflags);
2123 2124 2125 2126 2127 2128 2129
	if (!list_empty(&sfp->rq_list)) {
		if (!sfp->cmd_q)
			goto out_unlock;

		for (k = 0; k < SG_MAX_QUEUE; ++k, ++rp) {
			if (!rp->parentfp)
				break;
L
Linus Torvalds 已提交
2130
		}
2131 2132
		if (k >= SG_MAX_QUEUE)
			goto out_unlock;
L
Linus Torvalds 已提交
2133
	}
2134 2135 2136 2137
	memset(rp, 0, sizeof (Sg_request));
	rp->parentfp = sfp;
	rp->header.duration = jiffies_to_msecs(jiffies);
	list_add_tail(&rp->entry, &sfp->rq_list);
L
Linus Torvalds 已提交
2138
	write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
2139 2140 2141 2142
	return rp;
out_unlock:
	write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
	return NULL;
L
Linus Torvalds 已提交
2143 2144 2145 2146 2147 2148 2149 2150 2151
}

/* Return of 1 for found; 0 for not found */
static int
sg_remove_request(Sg_fd * sfp, Sg_request * srp)
{
	unsigned long iflags;
	int res = 0;

2152
	if (!sfp || !srp || list_empty(&sfp->rq_list))
L
Linus Torvalds 已提交
2153 2154
		return res;
	write_lock_irqsave(&sfp->rq_list_lock, iflags);
2155 2156 2157
	if (!list_empty(&srp->entry)) {
		list_del(&srp->entry);
		srp->parentfp = NULL;
L
Linus Torvalds 已提交
2158 2159 2160 2161 2162 2163 2164
		res = 1;
	}
	write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
	return res;
}

static Sg_fd *
H
Hannes Reinecke 已提交
2165
sg_add_sfp(Sg_device * sdp)
L
Linus Torvalds 已提交
2166 2167 2168
{
	Sg_fd *sfp;
	unsigned long iflags;
2169
	int bufflen;
L
Linus Torvalds 已提交
2170

2171
	sfp = kzalloc(sizeof(*sfp), GFP_ATOMIC | __GFP_NOWARN);
L
Linus Torvalds 已提交
2172
	if (!sfp)
2173
		return ERR_PTR(-ENOMEM);
2174

L
Linus Torvalds 已提交
2175 2176
	init_waitqueue_head(&sfp->read_wait);
	rwlock_init(&sfp->rq_list_lock);
2177
	INIT_LIST_HEAD(&sfp->rq_list);
2178
	kref_init(&sfp->f_ref);
2179
	mutex_init(&sfp->f_mutex);
L
Linus Torvalds 已提交
2180 2181 2182 2183 2184 2185
	sfp->timeout = SG_DEFAULT_TIMEOUT;
	sfp->timeout_user = SG_DEFAULT_TIMEOUT_USER;
	sfp->force_packid = SG_DEF_FORCE_PACK_ID;
	sfp->cmd_q = SG_DEF_COMMAND_Q;
	sfp->keep_orphan = SG_DEF_KEEP_ORPHAN;
	sfp->parentdp = sdp;
2186 2187 2188
	write_lock_irqsave(&sdp->sfd_lock, iflags);
	if (atomic_read(&sdp->detaching)) {
		write_unlock_irqrestore(&sdp->sfd_lock, iflags);
2189
		kfree(sfp);
2190 2191
		return ERR_PTR(-ENODEV);
	}
2192
	list_add_tail(&sfp->sfd_siblings, &sdp->sfds);
2193
	write_unlock_irqrestore(&sdp->sfd_lock, iflags);
H
Hannes Reinecke 已提交
2194 2195
	SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
				      "sg_add_sfp: sfp=0x%p\n", sfp));
2196 2197 2198
	if (unlikely(sg_big_buff != def_reserved_size))
		sg_big_buff = def_reserved_size;

2199
	bufflen = min_t(int, sg_big_buff,
2200
			max_sectors_bytes(sdp->device->request_queue));
2201
	sg_build_reserve(sfp, bufflen);
H
Hannes Reinecke 已提交
2202 2203 2204 2205
	SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
				      "sg_add_sfp: bufflen=%d, k_use_sg=%d\n",
				      sfp->reserve.bufflen,
				      sfp->reserve.k_use_sg));
2206 2207 2208

	kref_get(&sdp->d_ref);
	__module_get(THIS_MODULE);
L
Linus Torvalds 已提交
2209 2210 2211
	return sfp;
}

2212 2213
static void
sg_remove_sfp_usercontext(struct work_struct *work)
L
Linus Torvalds 已提交
2214
{
2215 2216
	struct sg_fd *sfp = container_of(work, struct sg_fd, ew.work);
	struct sg_device *sdp = sfp->parentdp;
2217
	Sg_request *srp;
2218
	unsigned long iflags;
2219 2220

	/* Cleanup any responses which were never read(). */
2221
	write_lock_irqsave(&sfp->rq_list_lock, iflags);
2222 2223 2224
	while (!list_empty(&sfp->rq_list)) {
		srp = list_first_entry(&sfp->rq_list, Sg_request, entry);
		sg_finish_rem_req(srp);
2225 2226
		list_del(&srp->entry);
		srp->parentfp = NULL;
2227
	}
2228
	write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
L
Linus Torvalds 已提交
2229 2230

	if (sfp->reserve.bufflen > 0) {
H
Hannes Reinecke 已提交
2231 2232
		SCSI_LOG_TIMEOUT(6, sg_printk(KERN_INFO, sdp,
				"sg_remove_sfp:    bufflen=%d, k_use_sg=%d\n",
2233 2234
				(int) sfp->reserve.bufflen,
				(int) sfp->reserve.k_use_sg));
H
Hannes Reinecke 已提交
2235
		sg_remove_scat(sfp, &sfp->reserve);
L
Linus Torvalds 已提交
2236
	}
2237

H
Hannes Reinecke 已提交
2238 2239
	SCSI_LOG_TIMEOUT(6, sg_printk(KERN_INFO, sdp,
			"sg_remove_sfp: sfp=0x%p\n", sfp));
2240
	kfree(sfp);
2241 2242

	scsi_device_put(sdp->device);
2243
	kref_put(&sdp->d_ref, sg_device_destroy);
2244
	module_put(THIS_MODULE);
L
Linus Torvalds 已提交
2245 2246
}

2247 2248
static void
sg_remove_sfp(struct kref *kref)
L
Linus Torvalds 已提交
2249
{
2250
	struct sg_fd *sfp = container_of(kref, struct sg_fd, f_ref);
2251
	struct sg_device *sdp = sfp->parentdp;
2252
	unsigned long iflags;
L
Linus Torvalds 已提交
2253

2254
	write_lock_irqsave(&sdp->sfd_lock, iflags);
2255
	list_del(&sfp->sfd_siblings);
2256
	write_unlock_irqrestore(&sdp->sfd_lock, iflags);
L
Linus Torvalds 已提交
2257

2258 2259
	INIT_WORK(&sfp->ew.work, sg_remove_sfp_usercontext);
	schedule_work(&sfp->ew.work);
L
Linus Torvalds 已提交
2260 2261 2262
}

#ifdef CONFIG_SCSI_PROC_FS
2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273
static int
sg_idr_max_id(int id, void *p, void *data)
{
	int *k = data;

	if (*k < id)
		*k = id;

	return 0;
}

L
Linus Torvalds 已提交
2274 2275 2276
static int
sg_last_dev(void)
{
2277
	int k = -1;
L
Linus Torvalds 已提交
2278 2279
	unsigned long iflags;

2280 2281 2282
	read_lock_irqsave(&sg_index_lock, iflags);
	idr_for_each(&sg_index_idr, sg_idr_max_id, &k);
	read_unlock_irqrestore(&sg_index_lock, iflags);
L
Linus Torvalds 已提交
2283 2284 2285 2286
	return k + 1;		/* origin 1 */
}
#endif

2287 2288
/* must be called with sg_index_lock held */
static Sg_device *sg_lookup_dev(int dev)
L
Linus Torvalds 已提交
2289
{
2290 2291
	return idr_find(&sg_index_idr, dev);
}
L
Linus Torvalds 已提交
2292

2293 2294
static Sg_device *
sg_get_dev(int dev)
2295 2296 2297 2298 2299 2300 2301 2302
{
	struct sg_device *sdp;
	unsigned long flags;

	read_lock_irqsave(&sg_index_lock, flags);
	sdp = sg_lookup_dev(dev);
	if (!sdp)
		sdp = ERR_PTR(-ENXIO);
2303 2304
	else if (atomic_read(&sdp->detaching)) {
		/* If sdp->detaching, then the refcount may already be 0, in
2305 2306 2307 2308 2309 2310
		 * which case it would be a bug to do kref_get().
		 */
		sdp = ERR_PTR(-ENODEV);
	} else
		kref_get(&sdp->d_ref);
	read_unlock_irqrestore(&sg_index_lock, flags);
2311

L
Linus Torvalds 已提交
2312 2313 2314 2315 2316 2317 2318 2319 2320
	return sdp;
}

#ifdef CONFIG_SCSI_PROC_FS
static int sg_proc_seq_show_int(struct seq_file *s, void *v);

static int sg_proc_single_open_adio(struct inode *inode, struct file *file);
static ssize_t sg_proc_write_adio(struct file *filp, const char __user *buffer,
			          size_t count, loff_t *off);
2321 2322 2323 2324 2325 2326
static const struct proc_ops adio_proc_ops = {
	.proc_open	= sg_proc_single_open_adio,
	.proc_read	= seq_read,
	.proc_lseek	= seq_lseek,
	.proc_write	= sg_proc_write_adio,
	.proc_release	= single_release,
L
Linus Torvalds 已提交
2327 2328 2329 2330 2331
};

static int sg_proc_single_open_dressz(struct inode *inode, struct file *file);
static ssize_t sg_proc_write_dressz(struct file *filp, 
		const char __user *buffer, size_t count, loff_t *off);
2332 2333 2334 2335 2336 2337
static const struct proc_ops dressz_proc_ops = {
	.proc_open	= sg_proc_single_open_dressz,
	.proc_read	= seq_read,
	.proc_lseek	= seq_lseek,
	.proc_write	= sg_proc_write_dressz,
	.proc_release	= single_release,
L
Linus Torvalds 已提交
2338 2339 2340 2341 2342 2343 2344 2345
};

static int sg_proc_seq_show_version(struct seq_file *s, void *v);
static int sg_proc_seq_show_devhdr(struct seq_file *s, void *v);
static int sg_proc_seq_show_dev(struct seq_file *s, void *v);
static void * dev_seq_start(struct seq_file *s, loff_t *pos);
static void * dev_seq_next(struct seq_file *s, void *v, loff_t *pos);
static void dev_seq_stop(struct seq_file *s, void *v);
J
James Morris 已提交
2346
static const struct seq_operations dev_seq_ops = {
L
Linus Torvalds 已提交
2347 2348 2349 2350 2351 2352 2353
	.start = dev_seq_start,
	.next  = dev_seq_next,
	.stop  = dev_seq_stop,
	.show  = sg_proc_seq_show_dev,
};

static int sg_proc_seq_show_devstrs(struct seq_file *s, void *v);
J
James Morris 已提交
2354
static const struct seq_operations devstrs_seq_ops = {
L
Linus Torvalds 已提交
2355 2356 2357 2358 2359 2360 2361
	.start = dev_seq_start,
	.next  = dev_seq_next,
	.stop  = dev_seq_stop,
	.show  = sg_proc_seq_show_devstrs,
};

static int sg_proc_seq_show_debug(struct seq_file *s, void *v);
J
James Morris 已提交
2362
static const struct seq_operations debug_seq_ops = {
L
Linus Torvalds 已提交
2363 2364 2365 2366 2367 2368 2369 2370 2371
	.start = dev_seq_start,
	.next  = dev_seq_next,
	.stop  = dev_seq_stop,
	.show  = sg_proc_seq_show_debug,
};

static int
sg_proc_init(void)
{
C
Christoph Hellwig 已提交
2372
	struct proc_dir_entry *p;
L
Linus Torvalds 已提交
2373

C
Christoph Hellwig 已提交
2374 2375
	p = proc_mkdir("scsi/sg", NULL);
	if (!p)
L
Linus Torvalds 已提交
2376 2377
		return 1;

2378
	proc_create("allow_dio", S_IRUGO | S_IWUSR, p, &adio_proc_ops);
C
Christoph Hellwig 已提交
2379
	proc_create_seq("debug", S_IRUGO, p, &debug_seq_ops);
2380
	proc_create("def_reserved_size", S_IRUGO | S_IWUSR, p, &dressz_proc_ops);
C
Christoph Hellwig 已提交
2381 2382 2383 2384 2385
	proc_create_single("device_hdr", S_IRUGO, p, sg_proc_seq_show_devhdr);
	proc_create_seq("devices", S_IRUGO, p, &dev_seq_ops);
	proc_create_seq("device_strs", S_IRUGO, p, &devstrs_seq_ops);
	proc_create_single("version", S_IRUGO, p, sg_proc_seq_show_version);
	return 0;
L
Linus Torvalds 已提交
2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403
}


static int sg_proc_seq_show_int(struct seq_file *s, void *v)
{
	seq_printf(s, "%d\n", *((int *)s->private));
	return 0;
}

static int sg_proc_single_open_adio(struct inode *inode, struct file *file)
{
	return single_open(file, sg_proc_seq_show_int, &sg_allow_dio);
}

static ssize_t 
sg_proc_write_adio(struct file *filp, const char __user *buffer,
		   size_t count, loff_t *off)
{
2404 2405
	int err;
	unsigned long num;
L
Linus Torvalds 已提交
2406 2407 2408

	if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
		return -EACCES;
2409 2410 2411 2412
	err = kstrtoul_from_user(buffer, count, 0, &num);
	if (err)
		return err;
	sg_allow_dio = num ? 1 : 0;
L
Linus Torvalds 已提交
2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424
	return count;
}

static int sg_proc_single_open_dressz(struct inode *inode, struct file *file)
{
	return single_open(file, sg_proc_seq_show_int, &sg_big_buff);
}

static ssize_t 
sg_proc_write_dressz(struct file *filp, const char __user *buffer,
		     size_t count, loff_t *off)
{
2425
	int err;
L
Linus Torvalds 已提交
2426 2427 2428 2429
	unsigned long k = ULONG_MAX;

	if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
		return -EACCES;
2430 2431 2432 2433

	err = kstrtoul_from_user(buffer, count, 0, &k);
	if (err)
		return err;
L
Linus Torvalds 已提交
2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449
	if (k <= 1048576) {	/* limit "big buff" to 1 MB */
		sg_big_buff = k;
		return count;
	}
	return -ERANGE;
}

static int sg_proc_seq_show_version(struct seq_file *s, void *v)
{
	seq_printf(s, "%d\t%s [%s]\n", sg_version_num, SG_VERSION_STR,
		   sg_version_date);
	return 0;
}

static int sg_proc_seq_show_devhdr(struct seq_file *s, void *v)
{
2450
	seq_puts(s, "host\tchan\tid\tlun\ttype\topens\tqdepth\tbusy\tonline\n");
L
Linus Torvalds 已提交
2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462
	return 0;
}

struct sg_proc_deviter {
	loff_t	index;
	size_t	max;
};

static void * dev_seq_start(struct seq_file *s, loff_t *pos)
{
	struct sg_proc_deviter * it = kmalloc(sizeof(*it), GFP_KERNEL);

2463
	s->private = it;
L
Linus Torvalds 已提交
2464 2465
	if (! it)
		return NULL;
2466

L
Linus Torvalds 已提交
2467 2468 2469
	it->index = *pos;
	it->max = sg_last_dev();
	if (it->index >= it->max)
2470
		return NULL;
L
Linus Torvalds 已提交
2471 2472 2473 2474 2475
	return it;
}

static void * dev_seq_next(struct seq_file *s, void *v, loff_t *pos)
{
2476
	struct sg_proc_deviter * it = s->private;
L
Linus Torvalds 已提交
2477 2478 2479 2480 2481 2482 2483

	*pos = ++it->index;
	return (it->index < it->max) ? it : NULL;
}

static void dev_seq_stop(struct seq_file *s, void *v)
{
2484
	kfree(s->private);
L
Linus Torvalds 已提交
2485 2486 2487 2488 2489 2490 2491
}

static int sg_proc_seq_show_dev(struct seq_file *s, void *v)
{
	struct sg_proc_deviter * it = (struct sg_proc_deviter *) v;
	Sg_device *sdp;
	struct scsi_device *scsidp;
2492
	unsigned long iflags;
L
Linus Torvalds 已提交
2493

2494 2495
	read_lock_irqsave(&sg_index_lock, iflags);
	sdp = it ? sg_lookup_dev(it->index) : NULL;
2496 2497 2498 2499 2500
	if ((NULL == sdp) || (NULL == sdp->device) ||
	    (atomic_read(&sdp->detaching)))
		seq_puts(s, "-1\t-1\t-1\t-1\t-1\t-1\t-1\t-1\t-1\n");
	else {
		scsidp = sdp->device;
H
Hannes Reinecke 已提交
2501
		seq_printf(s, "%d\t%d\t%d\t%llu\t%d\t%d\t%d\t%d\t%d\n",
L
Linus Torvalds 已提交
2502 2503 2504 2505
			      scsidp->host->host_no, scsidp->channel,
			      scsidp->id, scsidp->lun, (int) scsidp->type,
			      1,
			      (int) scsidp->queue_depth,
2506
			      (int) atomic_read(&scsidp->device_busy),
L
Linus Torvalds 已提交
2507
			      (int) scsi_device_online(scsidp));
2508
	}
2509
	read_unlock_irqrestore(&sg_index_lock, iflags);
L
Linus Torvalds 已提交
2510 2511 2512 2513 2514 2515 2516 2517
	return 0;
}

static int sg_proc_seq_show_devstrs(struct seq_file *s, void *v)
{
	struct sg_proc_deviter * it = (struct sg_proc_deviter *) v;
	Sg_device *sdp;
	struct scsi_device *scsidp;
2518
	unsigned long iflags;
L
Linus Torvalds 已提交
2519

2520 2521
	read_lock_irqsave(&sg_index_lock, iflags);
	sdp = it ? sg_lookup_dev(it->index) : NULL;
2522 2523
	scsidp = sdp ? sdp->device : NULL;
	if (sdp && scsidp && (!atomic_read(&sdp->detaching)))
L
Linus Torvalds 已提交
2524 2525 2526
		seq_printf(s, "%8.8s\t%16.16s\t%4.4s\n",
			   scsidp->vendor, scsidp->model, scsidp->rev);
	else
2527
		seq_puts(s, "<no active device>\n");
2528
	read_unlock_irqrestore(&sg_index_lock, iflags);
L
Linus Torvalds 已提交
2529 2530 2531
	return 0;
}

2532
/* must be called while holding sg_index_lock */
L
Linus Torvalds 已提交
2533 2534
static void sg_proc_debug_helper(struct seq_file *s, Sg_device * sdp)
{
2535
	int k, new_interface, blen, usg;
L
Linus Torvalds 已提交
2536 2537 2538 2539
	Sg_request *srp;
	Sg_fd *fp;
	const sg_io_hdr_t *hp;
	const char * cp;
已提交
2540
	unsigned int ms;
L
Linus Torvalds 已提交
2541

2542 2543 2544
	k = 0;
	list_for_each_entry(fp, &sdp->sfds, sfd_siblings) {
		k++;
2545
		read_lock(&fp->rq_list_lock); /* irqs already disabled */
L
Linus Torvalds 已提交
2546
		seq_printf(s, "   FD(%d): timeout=%dms bufflen=%d "
2547
			   "(res)sgat=%d low_dma=%d\n", k,
L
Linus Torvalds 已提交
2548 2549 2550
			   jiffies_to_msecs(fp->timeout),
			   fp->reserve.bufflen,
			   (int) fp->reserve.k_use_sg,
2551
			   (int) sdp->device->host->unchecked_isa_dma);
J
Jörn Engel 已提交
2552
		seq_printf(s, "   cmd_q=%d f_packid=%d k_orphan=%d closed=0\n",
L
Linus Torvalds 已提交
2553
			   (int) fp->cmd_q, (int) fp->force_packid,
J
Jörn Engel 已提交
2554
			   (int) fp->keep_orphan);
2555
		list_for_each_entry(srp, &fp->rq_list, entry) {
L
Linus Torvalds 已提交
2556 2557 2558
			hp = &srp->header;
			new_interface = (hp->interface_id == '\0') ? 0 : 1;
			if (srp->res_used) {
2559
				if (new_interface &&
L
Linus Torvalds 已提交
2560 2561 2562 2563 2564 2565 2566 2567 2568 2569
				    (SG_FLAG_MMAP_IO & hp->flags))
					cp = "     mmap>> ";
				else
					cp = "     rb>> ";
			} else {
				if (SG_INFO_DIRECT_IO_MASK & hp->info)
					cp = "     dio>> ";
				else
					cp = "     ";
			}
2570
			seq_puts(s, cp);
2571 2572
			blen = srp->data.bufflen;
			usg = srp->data.k_use_sg;
2573 2574 2575
			seq_puts(s, srp->done ?
				 ((1 == srp->done) ?  "rcv:" : "fin:")
				  : "act:");
L
Linus Torvalds 已提交
2576 2577 2578 2579
			seq_printf(s, " id=%d blen=%d",
				   srp->header.pack_id, blen);
			if (srp->done)
				seq_printf(s, " dur=%d", hp->duration);
已提交
2580 2581
			else {
				ms = jiffies_to_msecs(jiffies);
L
Linus Torvalds 已提交
2582
				seq_printf(s, " t_o/elap=%d/%d",
已提交
2583 2584 2585 2586
					(new_interface ? hp->timeout :
						  jiffies_to_msecs(fp->timeout)),
					(ms > hp->duration ? ms - hp->duration : 0));
			}
L
Linus Torvalds 已提交
2587 2588 2589
			seq_printf(s, "ms sgat=%d op=0x%02x\n", usg,
				   (int) srp->data.cmd_opcode);
		}
2590
		if (list_empty(&fp->rq_list))
2591
			seq_puts(s, "     No requests active\n");
2592
		read_unlock(&fp->rq_list_lock);
L
Linus Torvalds 已提交
2593 2594 2595 2596 2597 2598 2599
	}
}

static int sg_proc_seq_show_debug(struct seq_file *s, void *v)
{
	struct sg_proc_deviter * it = (struct sg_proc_deviter *) v;
	Sg_device *sdp;
2600
	unsigned long iflags;
L
Linus Torvalds 已提交
2601

2602 2603 2604
	if (it && (0 == it->index))
		seq_printf(s, "max_active_device=%d  def_reserved_size=%d\n",
			   (int)it->max, sg_big_buff);
L
Linus Torvalds 已提交
2605

2606 2607
	read_lock_irqsave(&sg_index_lock, iflags);
	sdp = it ? sg_lookup_dev(it->index) : NULL;
2608 2609 2610 2611
	if (NULL == sdp)
		goto skip;
	read_lock(&sdp->sfd_lock);
	if (!list_empty(&sdp->sfds)) {
2612
		seq_printf(s, " >>> device=%s ", sdp->disk->disk_name);
2613 2614 2615 2616 2617
		if (atomic_read(&sdp->detaching))
			seq_puts(s, "detaching pending close ");
		else if (sdp->device) {
			struct scsi_device *scsidp = sdp->device;

H
Hannes Reinecke 已提交
2618
			seq_printf(s, "%d:%d:%d:%llu   em=%d",
2619 2620 2621 2622 2623 2624 2625
				   scsidp->host->host_no,
				   scsidp->channel, scsidp->id,
				   scsidp->lun,
				   scsidp->host->hostt->emulated);
		}
		seq_printf(s, " sg_tablesize=%d excl=%d open_cnt=%d\n",
			   sdp->sg_tablesize, sdp->exclude, sdp->open_cnt);
2626
		sg_proc_debug_helper(s, sdp);
L
Linus Torvalds 已提交
2627
	}
2628 2629
	read_unlock(&sdp->sfd_lock);
skip:
2630
	read_unlock_irqrestore(&sg_index_lock, iflags);
L
Linus Torvalds 已提交
2631 2632 2633 2634 2635 2636 2637
	return 0;
}

#endif				/* CONFIG_SCSI_PROC_FS */

module_init(init_sg);
module_exit(exit_sg);