sg.c 72.4 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9
/*
 *  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:
10
 *        Copyright (C) 1998 - 2014 Douglas Gilbert
L
Linus Torvalds 已提交
11 12 13 14 15 16 17 18
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2, or (at your option)
 * any later version.
 *
 */

19 20
static int sg_version_num = 30536;	/* 2 digits for each component */
#define SG_VERSION_STR "3.5.36"
L
Linus Torvalds 已提交
21 22

/*
23
 *  D. P. Gilbert (dgilbert@interlog.com), notes:
L
Linus Torvalds 已提交
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
 *      - 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>
39
#include <linux/slab.h>
L
Linus Torvalds 已提交
40 41 42 43 44
#include <linux/fcntl.h>
#include <linux/init.h>
#include <linux/poll.h>
#include <linux/moduleparam.h>
#include <linux/cdev.h>
45
#include <linux/idr.h>
L
Linus Torvalds 已提交
46 47 48
#include <linux/seq_file.h>
#include <linux/blkdev.h>
#include <linux/delay.h>
49
#include <linux/blktrace_api.h>
50
#include <linux/mutex.h>
51
#include <linux/atomic.h>
52
#include <linux/ratelimit.h>
53
#include <linux/uio.h>
L
Linus Torvalds 已提交
54 55

#include "scsi.h"
已提交
56
#include <scsi/scsi_dbg.h>
L
Linus Torvalds 已提交
57 58 59 60 61 62 63 64 65
#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>
66
static char *sg_version_date = "20140603";
L
Linus Torvalds 已提交
67 68 69 70 71 72 73 74 75

static int sg_proc_init(void);
static void sg_proc_cleanup(void);
#endif

#define SG_ALLOW_DIO_DEF 0

#define SG_MAX_DEVS 32768

76 77 78 79 80 81
/* 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

82
#define SG_DEFAULT_TIMEOUT mult_frac(SG_DEFAULT_TIMEOUT_USER, HZ, USER_HZ)
L
Linus Torvalds 已提交
83 84 85 86 87 88 89 90 91 92 93

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;

94 95 96
static int scatter_elem_sz = SG_SCATTER_SZ;
static int scatter_elem_sz_prev = SG_SCATTER_SZ;

L
Linus Torvalds 已提交
97 98
#define SG_SECTOR_SZ 512

99 100
static int sg_add_device(struct device *, struct class_interface *);
static void sg_remove_device(struct device *, struct class_interface *);
101

102
static DEFINE_IDR(sg_index_idr);
103 104
static DEFINE_RWLOCK(sg_index_lock);	/* Also used to lock
							   file descriptor list for device */
L
Linus Torvalds 已提交
105 106

static struct class_interface sg_interface = {
107 108
	.add_dev        = sg_add_device,
	.remove_dev     = sg_remove_device,
L
Linus Torvalds 已提交
109 110 111 112
};

typedef struct sg_scatter_hold { /* holding area for scsi scatter gather info */
	unsigned short k_use_sg; /* Count of kernel scatter-gather pieces */
113
	unsigned sglist_len; /* size of malloc'd scatter-gather list ++ */
L
Linus Torvalds 已提交
114
	unsigned bufflen;	/* Size of (aggregate) data buffer */
115 116
	struct page **pages;
	int page_order;
L
Linus Torvalds 已提交
117 118 119 120 121 122 123 124 125 126 127 128
	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 */
	struct sg_request *nextrp;	/* NULL -> tail request (slist) */
	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> */
129
	unsigned char sense_b[SCSI_SENSE_BUFFERSIZE];
L
Linus Torvalds 已提交
130 131 132
	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 已提交
133 134
	/* done protected by rq_list_lock */
	char done;		/* 0->before bh, 1->before read, 2->read */
135
	struct request *rq;
136
	struct bio *bio;
137
	struct execute_work ew;
L
Linus Torvalds 已提交
138 139 140
} Sg_request;

typedef struct sg_fd {		/* holds the state of a file descriptor */
141
	struct list_head sfd_siblings;  /* protected by device's sfd_lock */
L
Linus Torvalds 已提交
142 143 144 145 146 147 148 149 150 151 152 153 154
	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 */
	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 */
	unsigned save_scat_len;	/* original length of trunc. scat. element */
	Sg_request *headrp;	/* head of request slist, NULL->empty */
	struct fasync_struct *async_qp;	/* used by asynchronous notification */
	Sg_request req_arr[SG_MAX_QUEUE];	/* used as singly-linked list */
	char low_dma;		/* as in parent but possibly overridden to 1 */
	char force_packid;	/* 1 -> pack_id input to read(), 0 -> ignored */
	char cmd_q;		/* 1 -> allow command queuing, 0 -> don't */
155
	unsigned char next_cmd_len; /* 0: automatic, >0: use on next write() */
L
Linus Torvalds 已提交
156 157
	char keep_orphan;	/* 0 -> drop orphan (def), 1 -> keep for read() */
	char mmap_called;	/* 0 -> mmap() never called on this fd */
158 159
	struct kref f_ref;
	struct execute_work ew;
L
Linus Torvalds 已提交
160 161 162 163
} Sg_fd;

typedef struct sg_device { /* holds the state of each scsi generic device */
	struct scsi_device *device;
164 165
	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 已提交
166
	int sg_tablesize;	/* adapter's max scatter-gather table size */
167
	u32 index;		/* device index number */
168
	struct list_head sfds;
169 170 171 172
	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 已提交
173 174 175
	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>] */
176
	struct kref d_ref;
L
Linus Torvalds 已提交
177 178
} Sg_device;

179
/* tasklet or soft irq callback */
180
static void sg_rq_end_io(struct request *rq, int uptodate);
181
static int sg_start_req(Sg_request *srp, unsigned char *cmd);
182
static int sg_finish_rem_req(Sg_request * srp);
L
Linus Torvalds 已提交
183 184 185
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);
186 187
static ssize_t sg_new_write(Sg_fd *sfp, struct file *file,
			const char __user *buf, size_t count, int blocking,
188
			int read_only, int sg_io_owned, Sg_request **o_srp);
L
Linus Torvalds 已提交
189 190 191
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 已提交
192
static void sg_remove_scat(Sg_fd * sfp, Sg_scatter_hold * schp);
L
Linus Torvalds 已提交
193 194 195
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 已提交
196
static Sg_fd *sg_add_sfp(Sg_device * sdp);
197
static void sg_remove_sfp(struct kref *);
L
Linus Torvalds 已提交
198 199 200 201 202
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 int sg_res_in_use(Sg_fd * sfp);
static Sg_device *sg_get_dev(int dev);
203
static void sg_device_destroy(struct kref *kref);
L
Linus Torvalds 已提交
204 205 206 207 208 209

#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 已提交
210
#define sg_printk(prefix, sdp, fmt, a...) \
211 212
	sdev_prefix_printk(prefix, (sdp)->device,		\
			   (sdp)->disk->disk_name, fmt, ##a)
H
Hannes Reinecke 已提交
213

214 215
static int sg_allow_access(struct file *filp, unsigned char *cmd)
{
216
	struct sg_fd *sfp = filp->private_data;
217 218 219 220

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

221
	return blk_verify_command(cmd, filp->f_mode & FMODE_WRITE);
222 223
}

224 225
static int
open_wait(Sg_device *sdp, int flags)
226
{
227
	int retval = 0;
228

229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
	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 已提交
256

257
	return retval;
J
Jörn Engel 已提交
258 259
}

260
/* Returns 0 on success, else a negated errno value */
L
Linus Torvalds 已提交
261 262 263 264 265
static int
sg_open(struct inode *inode, struct file *filp)
{
	int dev = iminor(inode);
	int flags = filp->f_flags;
266
	struct request_queue *q;
L
Linus Torvalds 已提交
267 268 269 270 271
	Sg_device *sdp;
	Sg_fd *sfp;
	int retval;

	nonseekable_open(inode, filp);
272 273
	if ((flags & O_EXCL) && (O_RDONLY == (flags & O_ACCMODE)))
		return -EPERM; /* Can't lock it with read only access */
L
Linus Torvalds 已提交
274
	sdp = sg_get_dev(dev);
275 276
	if (IS_ERR(sdp))
		return PTR_ERR(sdp);
L
Linus Torvalds 已提交
277

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

L
Linus Torvalds 已提交
281 282 283
	/* 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);
284 285
	if (retval)
		goto sg_put;
L
Linus Torvalds 已提交
286

287 288 289 290
	retval = scsi_autopm_get_device(sdp->device);
	if (retval)
		goto sdp_put;

291 292 293
	/* 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 已提交
294 295 296 297 298 299 300
	if (!((flags & O_NONBLOCK) ||
	      scsi_block_when_processing_errors(sdp->device))) {
		retval = -ENXIO;
		/* we are in error recovery for this device */
		goto error_out;
	}

301 302 303 304 305 306 307 308 309 310 311 312
	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 已提交
313
		}
314 315 316 317
	} else {
		retval = open_wait(sdp, flags);
		if (retval) /* -ERESTARTSYS or -ENODEV */
			goto error_mutex_locked;
L
Linus Torvalds 已提交
318
	}
319 320 321 322 323 324

	/* 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 已提交
325
		sdp->sgdebug = 0;
326
		q = sdp->device->request_queue;
327
		sdp->sg_tablesize = queue_max_segments(q);
L
Linus Torvalds 已提交
328
	}
H
Hannes Reinecke 已提交
329
	sfp = sg_add_sfp(sdp);
330 331 332
	if (IS_ERR(sfp)) {
		retval = PTR_ERR(sfp);
		goto out_undo;
333
	}
334 335 336 337 338

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

339
	retval = 0;
340
sg_put:
341
	kref_put(&sdp->d_ref, sg_device_destroy);
L
Linus Torvalds 已提交
342
	return retval;
343 344 345 346 347 348 349 350 351 352 353 354 355

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 已提交
356 357
}

358 359
/* Release resources associated with a successful sg_open()
 * Returns 0 on success, else a negated errno value */
L
Linus Torvalds 已提交
360 361 362 363 364 365 366 367
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 已提交
368
	SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp, "sg_release\n"));
369

370
	mutex_lock(&sdp->open_rel_lock);
371
	scsi_autopm_put_device(sdp->device);
372
	kref_put(&sfp->f_ref, sg_remove_sfp);
373 374 375 376 377 378 379 380 381 382 383
	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 已提交
384 385 386 387 388 389 390 391 392 393 394
	return 0;
}

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;
已提交
395 396
	struct sg_header *old_hdr = NULL;
	int retval = 0;
L
Linus Torvalds 已提交
397 398 399

	if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
		return -ENXIO;
H
Hannes Reinecke 已提交
400 401
	SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
				      "sg_read: count=%d\n", (int) count));
402

L
Linus Torvalds 已提交
403 404 405
	if (!access_ok(VERIFY_WRITE, buf, count))
		return -EFAULT;
	if (sfp->force_packid && (count >= SZ_SG_HEADER)) {
已提交
406 407 408 409 410 411 412 413
		old_hdr = kmalloc(SZ_SG_HEADER, GFP_KERNEL);
		if (!old_hdr)
			return -ENOMEM;
		if (__copy_from_user(old_hdr, buf, SZ_SG_HEADER)) {
			retval = -EFAULT;
			goto free_old_hdr;
		}
		if (old_hdr->reply_len < 0) {
L
Linus Torvalds 已提交
414
			if (count >= SZ_SG_IO_HDR) {
已提交
415 416 417 418 419 420 421 422 423 424 425 426 427 428
				sg_io_hdr_t *new_hdr;
				new_hdr = kmalloc(SZ_SG_IO_HDR, GFP_KERNEL);
				if (!new_hdr) {
					retval = -ENOMEM;
					goto free_old_hdr;
				}
				retval =__copy_from_user
				    (new_hdr, buf, SZ_SG_IO_HDR);
				req_pack_id = new_hdr->pack_id;
				kfree(new_hdr);
				if (retval) {
					retval = -EFAULT;
					goto free_old_hdr;
				}
L
Linus Torvalds 已提交
429 430
			}
		} else
已提交
431
			req_pack_id = old_hdr->pack_id;
L
Linus Torvalds 已提交
432 433 434
	}
	srp = sg_get_rq_mark(sfp, req_pack_id);
	if (!srp) {		/* now wait on packet to arrive */
435
		if (atomic_read(&sdp->detaching)) {
已提交
436 437 438 439 440 441 442
			retval = -ENODEV;
			goto free_old_hdr;
		}
		if (filp->f_flags & O_NONBLOCK) {
			retval = -EAGAIN;
			goto free_old_hdr;
		}
443
		retval = wait_event_interruptible(sfp->read_wait,
444
			(atomic_read(&sdp->detaching) ||
445
			(srp = sg_get_rq_mark(sfp, req_pack_id))));
446
		if (atomic_read(&sdp->detaching)) {
447 448 449 450
			retval = -ENODEV;
			goto free_old_hdr;
		}
		if (retval) {
已提交
451 452
			/* -ERESTARTSYS as signal hit process */
			goto free_old_hdr;
L
Linus Torvalds 已提交
453 454
		}
	}
已提交
455 456 457 458
	if (srp->header.interface_id != '\0') {
		retval = sg_new_read(sfp, buf, count, srp);
		goto free_old_hdr;
	}
L
Linus Torvalds 已提交
459 460

	hp = &srp->header;
已提交
461 462 463 464 465 466 467 468 469 470 471 472
	if (old_hdr == NULL) {
		old_hdr = kmalloc(SZ_SG_HEADER, GFP_KERNEL);
		if (! old_hdr) {
			retval = -ENOMEM;
			goto free_old_hdr;
		}
	}
	memset(old_hdr, 0, SZ_SG_HEADER);
	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 已提交
473
	    ((srp->data.cmd_opcode >= 0xc0) && (12 == hp->cmd_len)) ? 1 : 0;
已提交
474 475 476
	old_hdr->target_status = hp->masked_status;
	old_hdr->host_status = hp->host_status;
	old_hdr->driver_status = hp->driver_status;
L
Linus Torvalds 已提交
477 478
	if ((CHECK_CONDITION & hp->masked_status) ||
	    (DRIVER_SENSE & hp->driver_status))
已提交
479 480
		memcpy(old_hdr->sense_buffer, srp->sense_b,
		       sizeof (old_hdr->sense_buffer));
L
Linus Torvalds 已提交
481 482 483 484 485 486
	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:
已提交
487
		old_hdr->result = 0;
L
Linus Torvalds 已提交
488 489 490 491
		break;
	case DID_NO_CONNECT:
	case DID_BUS_BUSY:
	case DID_TIME_OUT:
已提交
492
		old_hdr->result = EBUSY;
L
Linus Torvalds 已提交
493 494 495 496 497 498
		break;
	case DID_BAD_TARGET:
	case DID_ABORT:
	case DID_PARITY:
	case DID_RESET:
	case DID_BAD_INTR:
已提交
499
		old_hdr->result = EIO;
L
Linus Torvalds 已提交
500 501
		break;
	case DID_ERROR:
已提交
502
		old_hdr->result = (srp->sense_b[0] == 0 && 
L
Linus Torvalds 已提交
503 504 505
				  hp->masked_status == GOOD) ? 0 : EIO;
		break;
	default:
已提交
506
		old_hdr->result = EIO;
L
Linus Torvalds 已提交
507 508 509 510 511
		break;
	}

	/* Now copy the result back to the user buffer.  */
	if (count >= SZ_SG_HEADER) {
已提交
512 513 514 515
		if (__copy_to_user(buf, old_hdr, SZ_SG_HEADER)) {
			retval = -EFAULT;
			goto free_old_hdr;
		}
L
Linus Torvalds 已提交
516
		buf += SZ_SG_HEADER;
已提交
517 518
		if (count > old_hdr->reply_len)
			count = old_hdr->reply_len;
L
Linus Torvalds 已提交
519
		if (count > SZ_SG_HEADER) {
已提交
520 521 522 523
			if (sg_read_oxfer(srp, buf, count - SZ_SG_HEADER)) {
				retval = -EFAULT;
				goto free_old_hdr;
			}
L
Linus Torvalds 已提交
524 525
		}
	} else
已提交
526
		count = (old_hdr->result == 0) ? 0 : -EIO;
L
Linus Torvalds 已提交
527
	sg_finish_rem_req(srp);
已提交
528 529
	retval = count;
free_old_hdr:
J
Jesper Juhl 已提交
530
	kfree(old_hdr);
已提交
531
	return retval;
L
Linus Torvalds 已提交
532 533 534 535 536 537
}

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 已提交
538
	int err = 0, err2;
L
Linus Torvalds 已提交
539 540 541 542 543 544 545 546 547 548
	int len;

	if (count < SZ_SG_IO_HDR) {
		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)) {
549
			int sb_len = SCSI_SENSE_BUFFERSIZE;
L
Linus Torvalds 已提交
550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565
			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;
	if (copy_to_user(buf, hp, SZ_SG_IO_HDR)) {
		err = -EFAULT;
		goto err_out;
	}
F
FUJITA Tomonori 已提交
566
err_out:
T
Tony Battersby 已提交
567 568
	err2 = sg_finish_rem_req(srp);
	return err ? : err2 ? : count;
L
Linus Torvalds 已提交
569 570 571 572 573 574 575 576 577 578 579 580 581
}

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;
582
	unsigned char cmnd[SG_MAX_CDB_SIZE];
L
Linus Torvalds 已提交
583

584 585 586
	if (unlikely(segment_eq(get_fs(), KERNEL_DS)))
		return -EINVAL;

L
Linus Torvalds 已提交
587 588
	if ((!(sfp = (Sg_fd *) filp->private_data)) || (!(sdp = sfp->parentdp)))
		return -ENXIO;
H
Hannes Reinecke 已提交
589 590
	SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
				      "sg_write: count=%d\n", (int) count));
591
	if (atomic_read(&sdp->detaching))
L
Linus Torvalds 已提交
592 593 594 595 596 597 598 599 600 601 602 603 604
		return -ENODEV;
	if (!((filp->f_flags & O_NONBLOCK) ||
	      scsi_block_when_processing_errors(sdp->device)))
		return -ENXIO;

	if (!access_ok(VERIFY_READ, buf, count))
		return -EFAULT;	/* protects following copy_from_user()s + get_user()s */
	if (count < SZ_SG_HEADER)
		return -EIO;
	if (__copy_from_user(&old_hdr, buf, SZ_SG_HEADER))
		return -EFAULT;
	blocking = !(filp->f_flags & O_NONBLOCK);
	if (old_hdr.reply_len < 0)
605 606
		return sg_new_write(sfp, filp, buf, count,
				    blocking, 0, 0, NULL);
L
Linus Torvalds 已提交
607 608 609 610
	if (count < (SZ_SG_HEADER + 6))
		return -EIO;	/* The minimum scsi command length is 6 bytes. */

	if (!(srp = sg_add_request(sfp))) {
H
Hannes Reinecke 已提交
611 612
		SCSI_LOG_TIMEOUT(1, sg_printk(KERN_INFO, sdp,
					      "sg_write: queue full\n"));
L
Linus Torvalds 已提交
613 614 615 616 617 618 619 620 621 622 623 624
		return -EDOM;
	}
	buf += SZ_SG_HEADER;
	__get_user(opcode, buf);
	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;
	}
H
Hannes Reinecke 已提交
625
	SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sdp,
L
Linus Torvalds 已提交
626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646
		"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 已提交
647 648
	if ((hp->dxfer_direction == SG_DXFER_TO_DEV) ||
	    (hp->dxfer_direction == SG_DXFER_TO_FROM_DEV))
649 650 651
		hp->dxferp = (char __user *)buf + cmd_size;
	else
		hp->dxferp = NULL;
L
Linus Torvalds 已提交
652 653 654 655 656 657 658 659 660 661 662 663
	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;
	if (__copy_from_user(cmnd, buf, cmd_size))
		return -EFAULT;
	/*
	 * 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.
	 */
664 665
	if (hp->dxfer_direction == SG_DXFER_TO_FROM_DEV) {
		static char cmd[TASK_COMM_LEN];
666 667 668 669 670 671 672 673 674
		if (strcmp(current->comm, cmd)) {
			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);
675 676 677
			strcpy(cmd, current->comm);
		}
	}
L
Linus Torvalds 已提交
678 679 680 681 682
	k = sg_common_write(sfp, srp, cmnd, sfp->timeout, blocking);
	return (k < 0) ? k : count;
}

static ssize_t
683
sg_new_write(Sg_fd *sfp, struct file *file, const char __user *buf,
684
		 size_t count, int blocking, int read_only, int sg_io_owned,
685
		 Sg_request **o_srp)
L
Linus Torvalds 已提交
686 687 688 689
{
	int k;
	Sg_request *srp;
	sg_io_hdr_t *hp;
690
	unsigned char cmnd[SG_MAX_CDB_SIZE];
L
Linus Torvalds 已提交
691 692 693 694 695 696 697 698 699 700
	int timeout;
	unsigned long ul_timeout;

	if (count < SZ_SG_IO_HDR)
		return -EINVAL;
	if (!access_ok(VERIFY_READ, buf, count))
		return -EFAULT; /* protects following copy_from_user()s + get_user()s */

	sfp->cmd_q = 1;	/* when sg_io_hdr seen, set command queuing on */
	if (!(srp = sg_add_request(sfp))) {
H
Hannes Reinecke 已提交
701 702
		SCSI_LOG_TIMEOUT(1, sg_printk(KERN_INFO, sfp->parentdp,
					      "sg_new_write: queue full\n"));
L
Linus Torvalds 已提交
703 704
		return -EDOM;
	}
705
	srp->sg_io_owned = sg_io_owned;
L
Linus Torvalds 已提交
706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742
	hp = &srp->header;
	if (__copy_from_user(hp, buf, SZ_SG_IO_HDR)) {
		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) */
		}
		if (sg_res_in_use(sfp)) {
			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;
	}
	if (!access_ok(VERIFY_READ, hp->cmdp, hp->cmd_len)) {
		sg_remove_request(sfp, srp);
		return -EFAULT;	/* protects following copy_from_user()s + get_user()s */
	}
	if (__copy_from_user(cmnd, hp->cmdp, hp->cmd_len)) {
		sg_remove_request(sfp, srp);
		return -EFAULT;
	}
743
	if (read_only && sg_allow_access(file, cmnd)) {
L
Linus Torvalds 已提交
744 745 746 747 748 749 750 751 752 753 754 755 756 757 758
		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 已提交
759
	int k, at_head;
L
Linus Torvalds 已提交
760 761 762 763 764 765 766 767 768 769 770
	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 已提交
771 772 773
	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 已提交
774

775 776
	k = sg_start_req(srp, cmnd);
	if (k) {
H
Hannes Reinecke 已提交
777 778
		SCSI_LOG_TIMEOUT(1, sg_printk(KERN_INFO, sfp->parentdp,
			"sg_common_write: start_req err=%d\n", k));
L
Linus Torvalds 已提交
779 780 781
		sg_finish_rem_req(srp);
		return k;	/* probably out of space --> ENOMEM */
	}
782
	if (atomic_read(&sdp->detaching)) {
783
		if (srp->bio) {
784
			scsi_req_free_cmd(scsi_req(srp->rq));
785
			blk_end_request_all(srp->rq, -EIO);
786 787 788
			srp->rq = NULL;
		}

L
Linus Torvalds 已提交
789 790 791 792
		sg_finish_rem_req(srp);
		return -ENODEV;
	}

已提交
793
	hp->duration = jiffies_to_msecs(jiffies);
D
Douglas Gilbert 已提交
794 795 796 797 798
	if (hp->interface_id != '\0' &&	/* v3 (or later) interface */
	    (SG_FLAG_Q_AT_TAIL & hp->flags))
		at_head = 0;
	else
		at_head = 1;
799 800

	srp->rq->timeout = timeout;
801
	kref_get(&sfp->f_ref); /* sg_rq_end_io() does kref_put(). */
802
	blk_execute_rq_nowait(sdp->device->request_queue, sdp->disk,
D
Douglas Gilbert 已提交
803
			      srp->rq, at_head, sg_rq_end_io);
804
	return 0;
L
Linus Torvalds 已提交
805 806
}

J
Jörn Engel 已提交
807 808 809 810 811 812 813 814 815 816 817
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;
}

818 819 820 821 822 823 824 825 826
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;
}

J
Jörn Engel 已提交
827
static long
828
sg_ioctl(struct file *filp, unsigned int cmd_in, unsigned long arg)
L
Linus Torvalds 已提交
829 830 831
{
	void __user *p = (void __user *)arg;
	int __user *ip = p;
832
	int result, val, read_only;
L
Linus Torvalds 已提交
833 834 835 836 837 838 839
	Sg_device *sdp;
	Sg_fd *sfp;
	Sg_request *srp;
	unsigned long iflags;

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

H
Hannes Reinecke 已提交
841 842
	SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
				   "sg_ioctl: cmd=0x%x\n", (int) cmd_in));
L
Linus Torvalds 已提交
843 844 845 846
	read_only = (O_RDWR != (filp->f_flags & O_ACCMODE));

	switch (cmd_in) {
	case SG_IO:
847
		if (atomic_read(&sdp->detaching))
848 849 850 851 852 853 854 855 856
			return -ENODEV;
		if (!scsi_block_when_processing_errors(sdp->device))
			return -ENXIO;
		if (!access_ok(VERIFY_WRITE, p, SZ_SG_IO_HDR))
			return -EFAULT;
		result = sg_new_write(sfp, filp, p, SZ_SG_IO_HDR,
				 1, read_only, 1, &srp);
		if (result < 0)
			return result;
857
		result = wait_event_interruptible(sfp->read_wait,
858 859
			(srp_done(sfp, srp) || atomic_read(&sdp->detaching)));
		if (atomic_read(&sdp->detaching))
860 861 862 863
			return -ENODEV;
		write_lock_irq(&sfp->rq_list_lock);
		if (srp->done) {
			srp->done = 2;
864
			write_unlock_irq(&sfp->rq_list_lock);
865 866
			result = sg_new_read(sfp, p, SZ_SG_IO_HDR, srp);
			return (result < 0) ? result : 0;
L
Linus Torvalds 已提交
867
		}
868 869 870
		srp->orphan = 1;
		write_unlock_irq(&sfp->rq_list_lock);
		return result;	/* -ERESTARTSYS because signal hit process */
L
Linus Torvalds 已提交
871 872 873 874 875 876
	case SG_SET_TIMEOUT:
		result = get_user(val, ip);
		if (result)
			return result;
		if (val < 0)
			return -EIO;
877 878
		if (val >= mult_frac((s64)INT_MAX, USER_HZ, HZ))
			val = min_t(s64, mult_frac((s64)INT_MAX, USER_HZ, HZ),
879
				    INT_MAX);
L
Linus Torvalds 已提交
880
		sfp->timeout_user = val;
881
		sfp->timeout = mult_frac(val, HZ, USER_HZ);
L
Linus Torvalds 已提交
882 883 884 885 886 887 888 889 890 891 892 893 894

		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:
		result = get_user(val, ip);
		if (result)
			return result;
		if (val) {
			sfp->low_dma = 1;
			if ((0 == sfp->low_dma) && (0 == sg_res_in_use(sfp))) {
				val = (int) sfp->reserve.bufflen;
H
Hannes Reinecke 已提交
895
				sg_remove_scat(sfp, &sfp->reserve);
L
Linus Torvalds 已提交
896 897 898
				sg_build_reserve(sfp, val);
			}
		} else {
899
			if (atomic_read(&sdp->detaching))
L
Linus Torvalds 已提交
900 901 902 903 904 905 906 907 908 909 910 911
				return -ENODEV;
			sfp->low_dma = sdp->device->host->unchecked_isa_dma;
		}
		return 0;
	case SG_GET_LOW_DMA:
		return put_user((int) sfp->low_dma, ip);
	case SG_GET_SCSI_ID:
		if (!access_ok(VERIFY_WRITE, p, sizeof (sg_scsi_id_t)))
			return -EFAULT;
		else {
			sg_scsi_id_t __user *sg_idp = p;

912
			if (atomic_read(&sdp->detaching))
L
Linus Torvalds 已提交
913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965
				return -ENODEV;
			__put_user((int) sdp->device->host->host_no,
				   &sg_idp->host_no);
			__put_user((int) sdp->device->channel,
				   &sg_idp->channel);
			__put_user((int) sdp->device->id, &sg_idp->scsi_id);
			__put_user((int) sdp->device->lun, &sg_idp->lun);
			__put_user((int) sdp->device->type, &sg_idp->scsi_type);
			__put_user((short) sdp->device->host->cmd_per_lun,
				   &sg_idp->h_cmd_per_lun);
			__put_user((short) sdp->device->queue_depth,
				   &sg_idp->d_queue_depth);
			__put_user(0, &sg_idp->unused[0]);
			__put_user(0, &sg_idp->unused[1]);
			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:
		if (!access_ok(VERIFY_WRITE, ip, sizeof (int)))
			return -EFAULT;
		read_lock_irqsave(&sfp->rq_list_lock, iflags);
		for (srp = sfp->headrp; srp; srp = srp->nextrp) {
			if ((1 == srp->done) && (!srp->sg_io_owned)) {
				read_unlock_irqrestore(&sfp->rq_list_lock,
						       iflags);
				__put_user(srp->header.pack_id, ip);
				return 0;
			}
		}
		read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
		__put_user(-1, ip);
		return 0;
	case SG_GET_NUM_WAITING:
		read_lock_irqsave(&sfp->rq_list_lock, iflags);
		for (val = 0, srp = sfp->headrp; srp; srp = srp->nextrp) {
			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;
966
		val = min_t(int, val,
967
			    max_sectors_bytes(sdp->device->request_queue));
L
Linus Torvalds 已提交
968 969 970
		if (val != sfp->reserve.bufflen) {
			if (sg_res_in_use(sfp) || sfp->mmap_called)
				return -EBUSY;
H
Hannes Reinecke 已提交
971
			sg_remove_scat(sfp, &sfp->reserve);
L
Linus Torvalds 已提交
972 973 974 975
			sg_build_reserve(sfp, val);
		}
		return 0;
	case SG_GET_RESERVED_SIZE:
976
		val = min_t(int, sfp->reserve.bufflen,
977
			    max_sectors_bytes(sdp->device->request_queue));
L
Linus Torvalds 已提交
978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010
		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;
		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:
		if (!access_ok(VERIFY_WRITE, p, SZ_SG_REQ_INFO * SG_MAX_QUEUE))
			return -EFAULT;
		else {
已提交
1011 1012 1013 1014 1015 1016 1017
			sg_req_info_t *rinfo;
			unsigned int ms;

			rinfo = kmalloc(SZ_SG_REQ_INFO * SG_MAX_QUEUE,
								GFP_KERNEL);
			if (!rinfo)
				return -ENOMEM;
L
Linus Torvalds 已提交
1018 1019 1020 1021 1022 1023 1024 1025 1026 1027
			read_lock_irqsave(&sfp->rq_list_lock, iflags);
			for (srp = sfp->headrp, val = 0; val < SG_MAX_QUEUE;
			     ++val, srp = srp ? srp->nextrp : srp) {
				memset(&rinfo[val], 0, SZ_SG_REQ_INFO);
				if (srp) {
					rinfo[val].req_state = srp->done + 1;
					rinfo[val].problem =
					    srp->header.masked_status & 
					    srp->header.host_status & 
					    srp->header.driver_status;
已提交
1028 1029 1030 1031 1032 1033 1034 1035 1036
					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;
					}
L
Linus Torvalds 已提交
1037
					rinfo[val].orphan = srp->orphan;
已提交
1038 1039 1040 1041 1042 1043
					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;
L
Linus Torvalds 已提交
1044 1045 1046
				}
			}
			read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
已提交
1047 1048 1049 1050 1051
			result = __copy_to_user(p, rinfo, 
						SZ_SG_REQ_INFO * SG_MAX_QUEUE);
			result = result ? -EFAULT : 0;
			kfree(rinfo);
			return result;
L
Linus Torvalds 已提交
1052 1053
		}
	case SG_EMULATED_HOST:
1054
		if (atomic_read(&sdp->detaching))
L
Linus Torvalds 已提交
1055 1056 1057
			return -ENODEV;
		return put_user(sdp->device->host->hostt->emulated, ip);
	case SCSI_IOCTL_SEND_COMMAND:
1058
		if (atomic_read(&sdp->detaching))
L
Linus Torvalds 已提交
1059 1060 1061 1062 1063 1064 1065
			return -ENODEV;
		if (read_only) {
			unsigned char opcode = WRITE_6;
			Scsi_Ioctl_Command __user *siocp = p;

			if (copy_from_user(&opcode, siocp->data, 1))
				return -EFAULT;
1066
			if (sg_allow_access(filp, &opcode))
L
Linus Torvalds 已提交
1067 1068
				return -EPERM;
		}
1069
		return sg_scsi_ioctl(sdp->device->request_queue, NULL, filp->f_mode, p);
L
Linus Torvalds 已提交
1070 1071 1072 1073 1074 1075
	case SG_SET_DEBUG:
		result = get_user(val, ip);
		if (result)
			return result;
		sdp->sgdebug = (char) val;
		return 0;
1076
	case BLKSECTGET:
1077
		return put_user(max_sectors_bytes(sdp->device->request_queue),
1078
				ip);
1079 1080 1081
	case BLKTRACESETUP:
		return blk_trace_setup(sdp->device->request_queue,
				       sdp->disk->disk_name,
1082
				       MKDEV(SCSI_GENERIC_MAJOR, sdp->index),
1083
				       NULL,
1084 1085 1086 1087 1088 1089 1090
				       (char *)arg);
	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);
1091 1092 1093 1094 1095 1096 1097 1098
	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 已提交
1099 1100 1101
	default:
		if (read_only)
			return -EPERM;	/* don't know so take safe approach */
1102
		break;
L
Linus Torvalds 已提交
1103
	}
1104 1105 1106 1107 1108 1109

	result = scsi_ioctl_block_when_processing_errors(sdp->device,
			cmd_in, filp->f_flags & O_NDELAY);
	if (result)
		return result;
	return scsi_ioctl(sdp->device, cmd_in, p);
L
Linus Torvalds 已提交
1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144
}

#ifdef CONFIG_COMPAT
static long sg_compat_ioctl(struct file *filp, unsigned int cmd_in, unsigned long arg)
{
	Sg_device *sdp;
	Sg_fd *sfp;
	struct scsi_device *sdev;

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

	sdev = sdp->device;
	if (sdev->host->hostt->compat_ioctl) { 
		int ret;

		ret = sdev->host->hostt->compat_ioctl(sdev, cmd_in, (void __user *)arg);

		return ret;
	}
	
	return -ENOIOCTLCMD;
}
#endif

static unsigned int
sg_poll(struct file *filp, poll_table * wait)
{
	unsigned int res = 0;
	Sg_device *sdp;
	Sg_fd *sfp;
	Sg_request *srp;
	int count = 0;
	unsigned long iflags;

J
Jörn Engel 已提交
1145 1146 1147 1148 1149
	sfp = filp->private_data;
	if (!sfp)
		return POLLERR;
	sdp = sfp->parentdp;
	if (!sdp)
L
Linus Torvalds 已提交
1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160
		return POLLERR;
	poll_wait(filp, &sfp->read_wait, wait);
	read_lock_irqsave(&sfp->rq_list_lock, iflags);
	for (srp = sfp->headrp; srp; srp = srp->nextrp) {
		/* if any read waiting, flag it */
		if ((0 == res) && (1 == srp->done) && (!srp->sg_io_owned))
			res = POLLIN | POLLRDNORM;
		++count;
	}
	read_unlock_irqrestore(&sfp->rq_list_lock, iflags);

1161
	if (atomic_read(&sdp->detaching))
L
Linus Torvalds 已提交
1162 1163 1164 1165 1166 1167
		res |= POLLHUP;
	else if (!sfp->cmd_q) {
		if (0 == count)
			res |= POLLOUT | POLLWRNORM;
	} else if (count < SG_MAX_QUEUE)
		res |= POLLOUT | POLLWRNORM;
H
Hannes Reinecke 已提交
1168 1169
	SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
				      "sg_poll: res=0x%x\n", (int) res));
L
Linus Torvalds 已提交
1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180
	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 已提交
1181 1182
	SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
				      "sg_fasync: mode=%d\n", mode));
L
Linus Torvalds 已提交
1183

1184
	return fasync_helper(fd, filp, mode, &sfp->async_qp);
L
Linus Torvalds 已提交
1185 1186
}

N
Nick Piggin 已提交
1187 1188
static int
sg_vma_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
L
Linus Torvalds 已提交
1189 1190
{
	Sg_fd *sfp;
1191
	unsigned long offset, len, sa;
L
Linus Torvalds 已提交
1192
	Sg_scatter_hold *rsv_schp;
1193
	int k, length;
L
Linus Torvalds 已提交
1194 1195

	if ((NULL == vma) || (!(sfp = (Sg_fd *) vma->vm_private_data)))
N
Nick Piggin 已提交
1196
		return VM_FAULT_SIGBUS;
L
Linus Torvalds 已提交
1197
	rsv_schp = &sfp->reserve;
N
Nick Piggin 已提交
1198
	offset = vmf->pgoff << PAGE_SHIFT;
L
Linus Torvalds 已提交
1199
	if (offset >= rsv_schp->bufflen)
N
Nick Piggin 已提交
1200
		return VM_FAULT_SIGBUS;
H
Hannes Reinecke 已提交
1201 1202 1203
	SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sfp->parentdp,
				      "sg_vma_fault: offset=%lu, scatg=%d\n",
				      offset, rsv_schp->k_use_sg));
1204
	sa = vma->vm_start;
1205 1206
	length = 1 << (PAGE_SHIFT + rsv_schp->page_order);
	for (k = 0; k < rsv_schp->k_use_sg && sa < vma->vm_end; k++) {
1207
		len = vma->vm_end - sa;
1208
		len = (len < length) ? len : length;
1209
		if (offset < len) {
1210 1211
			struct page *page = nth_page(rsv_schp->pages[k],
						     offset >> PAGE_SHIFT);
1212
			get_page(page);	/* increment page count */
N
Nick Piggin 已提交
1213 1214
			vmf->page = page;
			return 0; /* success */
L
Linus Torvalds 已提交
1215
		}
1216 1217
		sa += len;
		offset -= len;
L
Linus Torvalds 已提交
1218
	}
1219

N
Nick Piggin 已提交
1220
	return VM_FAULT_SIGBUS;
L
Linus Torvalds 已提交
1221 1222
}

1223
static const struct vm_operations_struct sg_mmap_vm_ops = {
N
Nick Piggin 已提交
1224
	.fault = sg_vma_fault,
L
Linus Torvalds 已提交
1225 1226 1227 1228 1229 1230
};

static int
sg_mmap(struct file *filp, struct vm_area_struct *vma)
{
	Sg_fd *sfp;
1231
	unsigned long req_sz, len, sa;
L
Linus Torvalds 已提交
1232
	Sg_scatter_hold *rsv_schp;
1233
	int k, length;
L
Linus Torvalds 已提交
1234 1235 1236

	if ((!filp) || (!vma) || (!(sfp = (Sg_fd *) filp->private_data)))
		return -ENXIO;
已提交
1237
	req_sz = vma->vm_end - vma->vm_start;
H
Hannes Reinecke 已提交
1238 1239 1240
	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 已提交
1241 1242 1243 1244 1245 1246
	if (vma->vm_pgoff)
		return -EINVAL;	/* want no offset */
	rsv_schp = &sfp->reserve;
	if (req_sz > rsv_schp->bufflen)
		return -ENOMEM;	/* cannot map more than reserved buffer */

1247
	sa = vma->vm_start;
1248 1249
	length = 1 << (PAGE_SHIFT + rsv_schp->page_order);
	for (k = 0; k < rsv_schp->k_use_sg && sa < vma->vm_end; k++) {
1250
		len = vma->vm_end - sa;
1251
		len = (len < length) ? len : length;
1252
		sa += len;
L
Linus Torvalds 已提交
1253
	}
1254

N
Nick Piggin 已提交
1255
	sfp->mmap_called = 1;
1256
	vma->vm_flags |= VM_IO | VM_DONTEXPAND | VM_DONTDUMP;
L
Linus Torvalds 已提交
1257 1258 1259 1260 1261
	vma->vm_private_data = sfp;
	vma->vm_ops = &sg_mmap_vm_ops;
	return 0;
}

1262 1263
static void
sg_rq_end_io_usercontext(struct work_struct *work)
1264 1265 1266 1267 1268 1269 1270 1271
{
	struct sg_request *srp = container_of(work, struct sg_request, ew.work);
	struct sg_fd *sfp = srp->parentfp;

	sg_finish_rem_req(srp);
	kref_put(&sfp->f_ref, sg_remove_sfp);
}

1272 1273 1274 1275
/*
 * This function is a "bottom half" handler that is called by the mid
 * level when a command is completed (or has failed).
 */
1276 1277
static void
sg_rq_end_io(struct request *rq, int uptodate)
L
Linus Torvalds 已提交
1278
{
1279
	struct sg_request *srp = rq->end_io_data;
1280
	struct scsi_request *req = scsi_req(rq);
1281
	Sg_device *sdp;
L
Linus Torvalds 已提交
1282 1283
	Sg_fd *sfp;
	unsigned long iflags;
已提交
1284
	unsigned int ms;
1285
	char *sense;
1286
	int result, resid, done = 1;
L
Linus Torvalds 已提交
1287

1288
	if (WARN_ON(srp->done != 0))
L
Linus Torvalds 已提交
1289
		return;
1290

L
Linus Torvalds 已提交
1291
	sfp = srp->parentfp;
1292
	if (WARN_ON(sfp == NULL))
L
Linus Torvalds 已提交
1293
		return;
1294 1295

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

1299
	sense = req->sense;
1300
	result = rq->errors;
1301
	resid = req->resid_len;
L
Linus Torvalds 已提交
1302

H
Hannes Reinecke 已提交
1303 1304 1305
	SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sdp,
				      "sg_cmd_done: pack_id=%d, res=0x%x\n",
				      srp->header.pack_id, result));
1306
	srp->header.resid = resid;
已提交
1307 1308 1309
	ms = jiffies_to_msecs(jiffies);
	srp->header.duration = (ms > srp->header.duration) ?
				(ms - srp->header.duration) : 0;
1310
	if (0 != result) {
L
Linus Torvalds 已提交
1311 1312
		struct scsi_sense_hdr sshdr;

1313 1314 1315 1316 1317
		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 已提交
1318 1319 1320
		if ((sdp->sgdebug > 0) &&
		    ((CHECK_CONDITION == srp->header.masked_status) ||
		     (COMMAND_TERMINATED == srp->header.masked_status)))
1321
			__scsi_print_sense(sdp->device, __func__, sense,
1322
					   SCSI_SENSE_BUFFERSIZE);
L
Linus Torvalds 已提交
1323 1324

		/* Following if statement is a patch supplied by Eric Youngdale */
1325 1326
		if (driver_byte(result) != 0
		    && scsi_normalize_sense(sense, SCSI_SENSE_BUFFERSIZE, &sshdr)
L
Linus Torvalds 已提交
1327 1328 1329 1330 1331 1332 1333 1334
		    && !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;
		}
	}
1335 1336 1337 1338

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

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

1341 1342 1343 1344 1345 1346 1347
	/*
	 * 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;
1348
	scsi_req_free_cmd(scsi_req(rq));
1349 1350
	__blk_put_request(rq->q, rq);

1351 1352
	write_lock_irqsave(&sfp->rq_list_lock, iflags);
	if (unlikely(srp->orphan)) {
L
Linus Torvalds 已提交
1353 1354
		if (sfp->keep_orphan)
			srp->sg_io_owned = 0;
1355 1356
		else
			done = 0;
L
Linus Torvalds 已提交
1357
	}
1358 1359 1360 1361 1362 1363 1364
	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 已提交
1365
		wake_up_interruptible(&sfp->read_wait);
1366
		kill_fasync(&sfp->async_qp, SIGPOLL, POLL_IN);
1367
		kref_put(&sfp->f_ref, sg_remove_sfp);
1368 1369 1370 1371
	} else {
		INIT_WORK(&srp->ew.work, sg_rq_end_io_usercontext);
		schedule_work(&srp->ew.work);
	}
L
Linus Torvalds 已提交
1372 1373
}

1374
static const struct file_operations sg_fops = {
L
Linus Torvalds 已提交
1375 1376 1377 1378
	.owner = THIS_MODULE,
	.read = sg_read,
	.write = sg_write,
	.poll = sg_poll,
J
Jörn Engel 已提交
1379
	.unlocked_ioctl = sg_ioctl,
L
Linus Torvalds 已提交
1380 1381 1382 1383 1384 1385 1386
#ifdef CONFIG_COMPAT
	.compat_ioctl = sg_compat_ioctl,
#endif
	.open = sg_open,
	.mmap = sg_mmap,
	.release = sg_release,
	.fasync = sg_fasync,
1387
	.llseek = no_llseek,
L
Linus Torvalds 已提交
1388 1389
};

1390
static struct class *sg_sysfs_class;
L
Linus Torvalds 已提交
1391 1392 1393

static int sg_sysfs_valid = 0;

1394 1395
static Sg_device *
sg_alloc(struct gendisk *disk, struct scsi_device *scsidp)
L
Linus Torvalds 已提交
1396
{
1397
	struct request_queue *q = scsidp->request_queue;
L
Linus Torvalds 已提交
1398 1399
	Sg_device *sdp;
	unsigned long iflags;
1400 1401
	int error;
	u32 k;
L
Linus Torvalds 已提交
1402

J
Jes Sorensen 已提交
1403
	sdp = kzalloc(sizeof(Sg_device), GFP_KERNEL);
L
Linus Torvalds 已提交
1404
	if (!sdp) {
1405 1406
		sdev_printk(KERN_WARNING, scsidp, "%s: kmalloc Sg_device "
			    "failure\n", __func__);
1407 1408
		return ERR_PTR(-ENOMEM);
	}
1409

T
Tejun Heo 已提交
1410
	idr_preload(GFP_KERNEL);
1411
	write_lock_irqsave(&sg_index_lock, iflags);
L
Linus Torvalds 已提交
1412

T
Tejun Heo 已提交
1413 1414 1415 1416 1417 1418 1419 1420
	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 {
1421 1422 1423
			sdev_printk(KERN_WARNING, scsidp, "%s: idr "
				    "allocation Sg_device failure: %d\n",
				    __func__, error);
T
Tejun Heo 已提交
1424 1425
		}
		goto out_unlock;
L
Linus Torvalds 已提交
1426
	}
T
Tejun Heo 已提交
1427
	k = error;
L
Linus Torvalds 已提交
1428

H
Hannes Reinecke 已提交
1429 1430
	SCSI_LOG_TIMEOUT(3, sdev_printk(KERN_INFO, scsidp,
					"sg_alloc: dev=%d \n", k));
L
Linus Torvalds 已提交
1431 1432 1433 1434
	sprintf(disk->disk_name, "sg%d", k);
	disk->first_minor = k;
	sdp->disk = disk;
	sdp->device = scsidp;
1435
	mutex_init(&sdp->open_rel_lock);
1436
	INIT_LIST_HEAD(&sdp->sfds);
1437 1438 1439
	init_waitqueue_head(&sdp->open_wait);
	atomic_set(&sdp->detaching, 0);
	rwlock_init(&sdp->sfd_lock);
1440
	sdp->sg_tablesize = queue_max_segments(q);
1441
	sdp->index = k;
1442
	kref_init(&sdp->d_ref);
T
Tejun Heo 已提交
1443
	error = 0;
1444

T
Tejun Heo 已提交
1445
out_unlock:
1446
	write_unlock_irqrestore(&sg_index_lock, iflags);
T
Tejun Heo 已提交
1447
	idr_preload_end();
L
Linus Torvalds 已提交
1448

1449
	if (error) {
L
Linus Torvalds 已提交
1450
		kfree(sdp);
1451 1452 1453
		return ERR_PTR(error);
	}
	return sdp;
L
Linus Torvalds 已提交
1454 1455 1456
}

static int
1457
sg_add_device(struct device *cl_dev, struct class_interface *cl_intf)
L
Linus Torvalds 已提交
1458
{
1459
	struct scsi_device *scsidp = to_scsi_device(cl_dev->parent);
L
Linus Torvalds 已提交
1460 1461 1462
	struct gendisk *disk;
	Sg_device *sdp = NULL;
	struct cdev * cdev = NULL;
1463
	int error;
1464
	unsigned long iflags;
L
Linus Torvalds 已提交
1465 1466 1467

	disk = alloc_disk(1);
	if (!disk) {
1468
		pr_warn("%s: alloc_disk failed\n", __func__);
L
Linus Torvalds 已提交
1469 1470 1471 1472 1473 1474 1475
		return -ENOMEM;
	}
	disk->major = SCSI_GENERIC_MAJOR;

	error = -ENOMEM;
	cdev = cdev_alloc();
	if (!cdev) {
1476
		pr_warn("%s: cdev_alloc failed\n", __func__);
L
Linus Torvalds 已提交
1477 1478 1479 1480 1481
		goto out;
	}
	cdev->owner = THIS_MODULE;
	cdev->ops = &sg_fops;

1482 1483
	sdp = sg_alloc(disk, scsidp);
	if (IS_ERR(sdp)) {
1484
		pr_warn("%s: sg_alloc failed\n", __func__);
1485
		error = PTR_ERR(sdp);
L
Linus Torvalds 已提交
1486 1487 1488
		goto out;
	}

1489
	error = cdev_add(cdev, MKDEV(SCSI_GENERIC_MAJOR, sdp->index), 1);
1490
	if (error)
1491
		goto cdev_add_err;
1492

L
Linus Torvalds 已提交
1493 1494
	sdp->cdev = cdev;
	if (sg_sysfs_valid) {
1495
		struct device *sg_class_member;
L
Linus Torvalds 已提交
1496

1497 1498 1499 1500
		sg_class_member = device_create(sg_sysfs_class, cl_dev->parent,
						MKDEV(SCSI_GENERIC_MAJOR,
						      sdp->index),
						sdp, "%s", disk->disk_name);
1501
		if (IS_ERR(sg_class_member)) {
1502
			pr_err("%s: device_create failed\n", __func__);
1503 1504 1505 1506
			error = PTR_ERR(sg_class_member);
			goto cdev_add_err;
		}
		error = sysfs_create_link(&scsidp->sdev_gendev.kobj,
L
Linus Torvalds 已提交
1507 1508
					  &sg_class_member->kobj, "generic");
		if (error)
1509 1510
			pr_err("%s: unable to make symlink 'generic' back "
			       "to sg%d\n", __func__, sdp->index);
L
Linus Torvalds 已提交
1511
	} else
1512
		pr_warn("%s: sg_sys Invalid\n", __func__);
L
Linus Torvalds 已提交
1513

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

1517
	dev_set_drvdata(cl_dev, sdp);
1518

L
Linus Torvalds 已提交
1519 1520
	return 0;

1521
cdev_add_err:
1522 1523 1524 1525
	write_lock_irqsave(&sg_index_lock, iflags);
	idr_remove(&sg_index_idr, sdp->index);
	write_unlock_irqrestore(&sg_index_lock, iflags);
	kfree(sdp);
1526

L
Linus Torvalds 已提交
1527 1528 1529 1530 1531 1532 1533
out:
	put_disk(disk);
	if (cdev)
		cdev_del(cdev);
	return error;
}

1534 1535
static void
sg_device_destroy(struct kref *kref)
1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549
{
	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 已提交
1550
		sg_printk(KERN_INFO, sdp, "sg_device_destroy\n"));
1551 1552 1553 1554 1555

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

1556 1557
static void
sg_remove_device(struct device *cl_dev, struct class_interface *cl_intf)
L
Linus Torvalds 已提交
1558
{
1559 1560
	struct scsi_device *scsidp = to_scsi_device(cl_dev->parent);
	Sg_device *sdp = dev_get_drvdata(cl_dev);
L
Linus Torvalds 已提交
1561 1562
	unsigned long iflags;
	Sg_fd *sfp;
1563
	int val;
L
Linus Torvalds 已提交
1564

1565
	if (!sdp)
L
Linus Torvalds 已提交
1566
		return;
1567 1568 1569 1570
	/* 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 */
1571

H
Hannes Reinecke 已提交
1572 1573
	SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
				      "%s\n", __func__));
1574

1575
	read_lock_irqsave(&sdp->sfd_lock, iflags);
1576
	list_for_each_entry(sfp, &sdp->sfds, sfd_siblings) {
1577
		wake_up_interruptible_all(&sfp->read_wait);
1578
		kill_fasync(&sfp->async_qp, SIGPOLL, POLL_HUP);
1579
	}
1580 1581
	wake_up_interruptible_all(&sdp->open_wait);
	read_unlock_irqrestore(&sdp->sfd_lock, iflags);
1582 1583

	sysfs_remove_link(&scsidp->sdev_gendev.kobj, "generic");
1584
	device_destroy(sg_sysfs_class, MKDEV(SCSI_GENERIC_MAJOR, sdp->index));
1585 1586
	cdev_del(sdp->cdev);
	sdp->cdev = NULL;
L
Linus Torvalds 已提交
1587

1588
	kref_put(&sdp->d_ref, sg_device_destroy);
L
Linus Torvalds 已提交
1589 1590
}

1591 1592 1593
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 已提交
1594 1595 1596 1597 1598 1599
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);
1600
MODULE_ALIAS_CHARDEV_MAJOR(SCSI_GENERIC_MAJOR);
L
Linus Torvalds 已提交
1601

1602 1603
MODULE_PARM_DESC(scatter_elem_sz, "scatter gather element "
                "size (default: max(SG_SCATTER_SZ, PAGE_SIZE))");
L
Linus Torvalds 已提交
1604 1605 1606 1607 1608 1609 1610 1611
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;

1612 1613 1614 1615
	if (scatter_elem_sz < PAGE_SIZE) {
		scatter_elem_sz = PAGE_SIZE;
		scatter_elem_sz_prev = scatter_elem_sz;
	}
L
Linus Torvalds 已提交
1616 1617
	if (def_reserved_size >= 0)
		sg_big_buff = def_reserved_size;
1618 1619
	else
		def_reserved_size = sg_big_buff;
L
Linus Torvalds 已提交
1620 1621 1622 1623 1624

	rc = register_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0), 
				    SG_MAX_DEVS, "sg");
	if (rc)
		return rc;
1625
        sg_sysfs_class = class_create(THIS_MODULE, "scsi_generic");
L
Linus Torvalds 已提交
1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637
        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;
	}
1638
	class_destroy(sg_sysfs_class);
L
Linus Torvalds 已提交
1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650
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
	sg_proc_cleanup();
#endif				/* CONFIG_SCSI_PROC_FS */
	scsi_unregister_interface(&sg_interface);
1651
	class_destroy(sg_sysfs_class);
L
Linus Torvalds 已提交
1652 1653 1654
	sg_sysfs_valid = 0;
	unregister_chrdev_region(MKDEV(SCSI_GENERIC_MAJOR, 0),
				 SG_MAX_DEVS);
1655
	idr_destroy(&sg_index_idr);
L
Linus Torvalds 已提交
1656 1657
}

1658 1659
static int
sg_start_req(Sg_request *srp, unsigned char *cmd)
1660
{
1661
	int res;
1662
	struct request *rq;
1663
	struct scsi_request *req;
F
FUJITA Tomonori 已提交
1664 1665 1666 1667
	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;
1668
	unsigned int iov_count = hp->iovec_count;
F
FUJITA Tomonori 已提交
1669 1670 1671
	Sg_scatter_hold *req_schp = &srp->data;
	Sg_scatter_hold *rsv_schp = &sfp->reserve;
	struct request_queue *q = sfp->parentdp->device->request_queue;
1672
	struct rq_map_data *md, map_data;
1673
	int rw = hp->dxfer_direction == SG_DXFER_TO_DEV ? WRITE : READ;
1674
	unsigned char *long_cmdp = NULL;
1675

H
Hannes Reinecke 已提交
1676 1677 1678
	SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
				      "sg_start_req: dxfer_len=%d\n",
				      dxfer_len));
F
FUJITA Tomonori 已提交
1679

1680 1681 1682 1683 1684 1685
	if (hp->cmd_len > BLK_MAX_CDB) {
		long_cmdp = kzalloc(hp->cmd_len, GFP_KERNEL);
		if (!long_cmdp)
			return -ENOMEM;
	}

1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700
	/*
	 * NOTE
	 *
	 * With scsi-mq enabled, there are a fixed number of preallocated
	 * requests equal in number to shost->can_queue.  If all of the
	 * preallocated requests are already in use, then using GFP_ATOMIC with
	 * blk_get_request() will return -EWOULDBLOCK, whereas using GFP_KERNEL
	 * will cause blk_get_request() to sleep until an active command
	 * completes, freeing up a request.  Neither option is ideal, but
	 * GFP_KERNEL is the better choice to prevent userspace from getting an
	 * unexpected EWOULDBLOCK.
	 *
	 * With scsi-mq disabled, blk_get_request() with GFP_KERNEL usually
	 * does not sleep except under memory pressure.
	 */
1701 1702
	rq = blk_get_request(q, hp->dxfer_direction == SG_DXFER_TO_DEV ?
			REQ_OP_SCSI_OUT : REQ_OP_SCSI_IN, GFP_KERNEL);
1703
	if (IS_ERR(rq)) {
1704
		kfree(long_cmdp);
1705
		return PTR_ERR(rq);
1706
	}
1707
	req = scsi_req(rq);
1708

1709
	scsi_req_init(rq);
1710 1711

	if (hp->cmd_len > BLK_MAX_CDB)
1712 1713 1714
		req->cmd = long_cmdp;
	memcpy(req->cmd, cmd, hp->cmd_len);
	req->cmd_len = hp->cmd_len;
1715 1716 1717 1718 1719

	srp->rq = rq;
	rq->end_io_data = srp;
	rq->retries = SG_DEFAULT_RETRIES;

L
Linus Torvalds 已提交
1720
	if ((dxfer_len <= 0) || (dxfer_dir == SG_DXFER_NONE))
1721
		return 0;
1722

1723 1724 1725
	if (sg_allow_dio && hp->flags & SG_FLAG_DIRECT_IO &&
	    dxfer_dir != SG_DXFER_UNKNOWN && !iov_count &&
	    !sfp->parentdp->device->host->unchecked_isa_dma &&
1726
	    blk_rq_aligned(q, (unsigned long)hp->dxferp, dxfer_len))
1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738
		md = NULL;
	else
		md = &map_data;

	if (md) {
		if (!sg_res_in_use(sfp) && dxfer_len <= rsv_schp->bufflen)
			sg_link_reserve(sfp, srp, dxfer_len);
		else {
			res = sg_build_indirect(req_schp, sfp, dxfer_len);
			if (res)
				return res;
		}
1739

1740 1741 1742
		md->pages = req_schp->pages;
		md->page_order = req_schp->page_order;
		md->nr_entries = req_schp->k_use_sg;
1743
		md->offset = 0;
1744
		md->null_mapped = hp->dxferp ? 0 : 1;
1745 1746 1747 1748
		if (dxfer_dir == SG_DXFER_TO_FROM_DEV)
			md->from_user = 1;
		else
			md->from_user = 0;
1749 1750
	}

1751
	if (iov_count) {
A
Al Viro 已提交
1752
		struct iovec *iov = NULL;
1753
		struct iov_iter i;
1754

A
Al Viro 已提交
1755 1756 1757
		res = import_iovec(rw, hp->dxferp, iov_count, 0, &iov, &i);
		if (res < 0)
			return res;
1758

A
Al Viro 已提交
1759
		iov_iter_truncate(&i, hp->dxfer_len);
A
Al Viro 已提交
1760 1761 1762 1763
		if (!iov_iter_count(&i)) {
			kfree(iov);
			return -EINVAL;
		}
1764

1765
		res = blk_rq_map_user_iov(q, rq, md, &i, GFP_ATOMIC);
1766 1767
		kfree(iov);
	} else
1768 1769
		res = blk_rq_map_user(q, rq, md, hp->dxferp,
				      hp->dxfer_len, GFP_ATOMIC);
1770 1771

	if (!res) {
1772
		srp->bio = rq->bio;
1773

1774 1775 1776 1777 1778
		if (!md) {
			req_schp->dio_in_use = 1;
			hp->info |= SG_INFO_DIRECT_IO;
		}
	}
1779
	return res;
L
Linus Torvalds 已提交
1780 1781
}

1782 1783
static int
sg_finish_rem_req(Sg_request *srp)
L
Linus Torvalds 已提交
1784
{
1785 1786
	int ret = 0;

L
Linus Torvalds 已提交
1787 1788 1789
	Sg_fd *sfp = srp->parentfp;
	Sg_scatter_hold *req_schp = &srp->data;

H
Hannes Reinecke 已提交
1790 1791 1792
	SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
				      "sg_finish_rem_req: res_used=%d\n",
				      (int) srp->res_used));
1793 1794
	if (srp->bio)
		ret = blk_rq_unmap_user(srp->bio);
1795

1796
	if (srp->rq) {
1797
		scsi_req_free_cmd(scsi_req(srp->rq));
1798
		blk_put_request(srp->rq);
1799
	}
1800

1801 1802 1803
	if (srp->res_used)
		sg_unlink_reserve(sfp, srp);
	else
H
Hannes Reinecke 已提交
1804
		sg_remove_scat(sfp, req_schp);
1805

L
Linus Torvalds 已提交
1806
	sg_remove_request(sfp, srp);
1807 1808

	return ret;
L
Linus Torvalds 已提交
1809 1810 1811 1812 1813
}

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

1817 1818
	schp->pages = kzalloc(sg_bufflen, gfp_flags);
	if (!schp->pages)
L
Linus Torvalds 已提交
1819 1820
		return -ENOMEM;
	schp->sglist_len = sg_bufflen;
1821
	return tablesize;	/* number of scat_gath elements allocated */
L
Linus Torvalds 已提交
1822 1823 1824 1825 1826
}

static int
sg_build_indirect(Sg_scatter_hold * schp, Sg_fd * sfp, int buff_size)
{
1827
	int ret_sz = 0, i, k, rem_sz, num, mx_sc_elems;
1828
	int sg_tablesize = sfp->parentdp->sg_tablesize;
1829 1830
	int blk_size = buff_size, order;
	gfp_t gfp_mask = GFP_ATOMIC | __GFP_COMP | __GFP_NOWARN;
L
Linus Torvalds 已提交
1831

1832
	if (blk_size < 0)
L
Linus Torvalds 已提交
1833 1834 1835
		return -EFAULT;
	if (0 == blk_size)
		++blk_size;	/* don't know why */
F
FUJITA Tomonori 已提交
1836 1837
	/* round request up to next highest SG_SECTOR_SZ byte boundary */
	blk_size = ALIGN(blk_size, SG_SECTOR_SZ);
H
Hannes Reinecke 已提交
1838 1839 1840
	SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
		"sg_build_indirect: buff_size=%d, blk_size=%d\n",
		buff_size, blk_size));
1841 1842 1843 1844 1845 1846

	/* 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 */

1847 1848 1849 1850 1851 1852 1853 1854
	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;
	}
1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868

	if (sfp->low_dma)
		gfp_mask |= GFP_DMA;

	if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
		gfp_mask |= __GFP_ZERO;

	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) {

1869
		num = (rem_sz > scatter_elem_sz_prev) ?
1870 1871 1872 1873 1874
			scatter_elem_sz_prev : rem_sz;

		schp->pages[k] = alloc_pages(gfp_mask, order);
		if (!schp->pages[k])
			goto out;
1875

1876 1877 1878 1879 1880 1881
		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;
			}
		}
1882

H
Hannes Reinecke 已提交
1883 1884 1885
		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));
1886 1887
	}		/* end of for loop */

1888
	schp->page_order = order;
1889
	schp->k_use_sg = k;
H
Hannes Reinecke 已提交
1890 1891 1892
	SCSI_LOG_TIMEOUT(5, sg_printk(KERN_INFO, sfp->parentdp,
			 "sg_build_indirect: k_use_sg=%d, rem_sz=%d\n",
			 k, rem_sz));
1893 1894 1895 1896

	schp->bufflen = blk_size;
	if (rem_sz > 0)	/* must have failed */
		return -ENOMEM;
L
Linus Torvalds 已提交
1897
	return 0;
1898 1899
out:
	for (i = 0; i < k; i++)
1900
		__free_pages(schp->pages[i], order);
1901 1902 1903 1904 1905

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

	return -ENOMEM;
L
Linus Torvalds 已提交
1906 1907 1908
}

static void
H
Hannes Reinecke 已提交
1909
sg_remove_scat(Sg_fd * sfp, Sg_scatter_hold * schp)
L
Linus Torvalds 已提交
1910
{
H
Hannes Reinecke 已提交
1911 1912
	SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
			 "sg_remove_scat: k_use_sg=%d\n", schp->k_use_sg));
1913
	if (schp->pages && schp->sglist_len > 0) {
1914
		if (!schp->dio_in_use) {
L
Linus Torvalds 已提交
1915 1916
			int k;

1917
			for (k = 0; k < schp->k_use_sg && schp->pages[k]; k++) {
H
Hannes Reinecke 已提交
1918 1919 1920 1921
				SCSI_LOG_TIMEOUT(5,
					sg_printk(KERN_INFO, sfp->parentdp,
					"sg_remove_scat: k=%d, pg=0x%p\n",
					k, schp->pages[k]));
1922
				__free_pages(schp->pages[k], schp->page_order);
L
Linus Torvalds 已提交
1923
			}
1924

1925
			kfree(schp->pages);
L
Linus Torvalds 已提交
1926
		}
1927
	}
L
Linus Torvalds 已提交
1928 1929 1930 1931 1932 1933 1934
	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;
1935
	int k, num;
L
Linus Torvalds 已提交
1936

H
Hannes Reinecke 已提交
1937 1938 1939
	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 已提交
1940 1941
	if ((!outp) || (num_read_xfer <= 0))
		return 0;
1942

1943 1944
	num = 1 << (PAGE_SHIFT + schp->page_order);
	for (k = 0; k < schp->k_use_sg && schp->pages[k]; k++) {
1945
		if (num > num_read_xfer) {
1946
			if (__copy_to_user(outp, page_address(schp->pages[k]),
1947 1948 1949 1950
					   num_read_xfer))
				return -EFAULT;
			break;
		} else {
1951
			if (__copy_to_user(outp, page_address(schp->pages[k]),
1952 1953 1954 1955
					   num))
				return -EFAULT;
			num_read_xfer -= num;
			if (num_read_xfer <= 0)
L
Linus Torvalds 已提交
1956
				break;
1957
			outp += num;
L
Linus Torvalds 已提交
1958 1959
		}
	}
1960

L
Linus Torvalds 已提交
1961 1962 1963 1964 1965 1966 1967 1968
	return 0;
}

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

H
Hannes Reinecke 已提交
1969 1970
	SCSI_LOG_TIMEOUT(4, sg_printk(KERN_INFO, sfp->parentdp,
			 "sg_build_reserve: req_size=%d\n", req_size));
L
Linus Torvalds 已提交
1971 1972 1973 1974 1975 1976
	do {
		if (req_size < PAGE_SIZE)
			req_size = PAGE_SIZE;
		if (0 == sg_build_indirect(schp, sfp, req_size))
			return;
		else
H
Hannes Reinecke 已提交
1977
			sg_remove_scat(sfp, schp);
L
Linus Torvalds 已提交
1978 1979 1980 1981 1982 1983 1984 1985 1986
		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;
1987
	int k, num, rem;
L
Linus Torvalds 已提交
1988 1989

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

1994 1995
	num = 1 << (PAGE_SHIFT + rsv_schp->page_order);
	for (k = 0; k < rsv_schp->k_use_sg; k++) {
1996 1997 1998
		if (rem <= num) {
			req_schp->k_use_sg = k + 1;
			req_schp->sglist_len = rsv_schp->sglist_len;
1999
			req_schp->pages = rsv_schp->pages;
2000 2001

			req_schp->bufflen = size;
2002
			req_schp->page_order = rsv_schp->page_order;
2003 2004 2005
			break;
		} else
			rem -= num;
L
Linus Torvalds 已提交
2006
	}
2007 2008

	if (k >= rsv_schp->k_use_sg)
H
Hannes Reinecke 已提交
2009 2010
		SCSI_LOG_TIMEOUT(1, sg_printk(KERN_INFO, sfp->parentdp,
				 "sg_link_reserve: BAD size\n"));
L
Linus Torvalds 已提交
2011 2012 2013 2014 2015 2016 2017
}

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

H
Hannes Reinecke 已提交
2018 2019 2020
	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 已提交
2021 2022
	req_schp->k_use_sg = 0;
	req_schp->bufflen = 0;
2023 2024
	req_schp->pages = NULL;
	req_schp->page_order = 0;
L
Linus Torvalds 已提交
2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085
	req_schp->sglist_len = 0;
	sfp->save_scat_len = 0;
	srp->res_used = 0;
}

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);
	for (resp = sfp->headrp; resp; resp = resp->nextrp) {
		/* 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 */
			break;
		}
	}
	write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
	return resp;
}

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

	write_lock_irqsave(&sfp->rq_list_lock, iflags);
	resp = sfp->headrp;
	if (!resp) {
		memset(rp, 0, sizeof (Sg_request));
		rp->parentfp = sfp;
		resp = rp;
		sfp->headrp = resp;
	} else {
		if (0 == sfp->cmd_q)
			resp = NULL;	/* command queuing disallowed */
		else {
			for (k = 0; k < SG_MAX_QUEUE; ++k, ++rp) {
				if (!rp->parentfp)
					break;
			}
			if (k < SG_MAX_QUEUE) {
				memset(rp, 0, sizeof (Sg_request));
				rp->parentfp = sfp;
				while (resp->nextrp)
					resp = resp->nextrp;
				resp->nextrp = rp;
				resp = rp;
			} else
				resp = NULL;
		}
	}
	if (resp) {
		resp->nextrp = NULL;
已提交
2086
		resp->header.duration = jiffies_to_msecs(jiffies);
L
Linus Torvalds 已提交
2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124
	}
	write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
	return resp;
}

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

	if ((!sfp) || (!srp) || (!sfp->headrp))
		return res;
	write_lock_irqsave(&sfp->rq_list_lock, iflags);
	prev_rp = sfp->headrp;
	if (srp == prev_rp) {
		sfp->headrp = prev_rp->nextrp;
		prev_rp->parentfp = NULL;
		res = 1;
	} else {
		while ((rp = prev_rp->nextrp)) {
			if (srp == rp) {
				prev_rp->nextrp = rp->nextrp;
				rp->parentfp = NULL;
				res = 1;
				break;
			}
			prev_rp = rp;
		}
	}
	write_unlock_irqrestore(&sfp->rq_list_lock, iflags);
	return res;
}

static Sg_fd *
H
Hannes Reinecke 已提交
2125
sg_add_sfp(Sg_device * sdp)
L
Linus Torvalds 已提交
2126 2127 2128
{
	Sg_fd *sfp;
	unsigned long iflags;
2129
	int bufflen;
L
Linus Torvalds 已提交
2130

2131
	sfp = kzalloc(sizeof(*sfp), GFP_ATOMIC | __GFP_NOWARN);
L
Linus Torvalds 已提交
2132
	if (!sfp)
2133
		return ERR_PTR(-ENOMEM);
2134

L
Linus Torvalds 已提交
2135 2136 2137
	init_waitqueue_head(&sfp->read_wait);
	rwlock_init(&sfp->rq_list_lock);

2138
	kref_init(&sfp->f_ref);
L
Linus Torvalds 已提交
2139 2140 2141 2142 2143 2144 2145 2146
	sfp->timeout = SG_DEFAULT_TIMEOUT;
	sfp->timeout_user = SG_DEFAULT_TIMEOUT_USER;
	sfp->force_packid = SG_DEF_FORCE_PACK_ID;
	sfp->low_dma = (SG_DEF_FORCE_LOW_DMA == 0) ?
	    sdp->device->host->unchecked_isa_dma : 1;
	sfp->cmd_q = SG_DEF_COMMAND_Q;
	sfp->keep_orphan = SG_DEF_KEEP_ORPHAN;
	sfp->parentdp = sdp;
2147 2148 2149 2150 2151
	write_lock_irqsave(&sdp->sfd_lock, iflags);
	if (atomic_read(&sdp->detaching)) {
		write_unlock_irqrestore(&sdp->sfd_lock, iflags);
		return ERR_PTR(-ENODEV);
	}
2152
	list_add_tail(&sfp->sfd_siblings, &sdp->sfds);
2153
	write_unlock_irqrestore(&sdp->sfd_lock, iflags);
H
Hannes Reinecke 已提交
2154 2155
	SCSI_LOG_TIMEOUT(3, sg_printk(KERN_INFO, sdp,
				      "sg_add_sfp: sfp=0x%p\n", sfp));
2156 2157 2158
	if (unlikely(sg_big_buff != def_reserved_size))
		sg_big_buff = def_reserved_size;

2159
	bufflen = min_t(int, sg_big_buff,
2160
			max_sectors_bytes(sdp->device->request_queue));
2161
	sg_build_reserve(sfp, bufflen);
H
Hannes Reinecke 已提交
2162 2163 2164 2165
	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));
2166 2167 2168

	kref_get(&sdp->d_ref);
	__module_get(THIS_MODULE);
L
Linus Torvalds 已提交
2169 2170 2171
	return sfp;
}

2172 2173
static void
sg_remove_sfp_usercontext(struct work_struct *work)
L
Linus Torvalds 已提交
2174
{
2175 2176 2177 2178 2179 2180
	struct sg_fd *sfp = container_of(work, struct sg_fd, ew.work);
	struct sg_device *sdp = sfp->parentdp;

	/* Cleanup any responses which were never read(). */
	while (sfp->headrp)
		sg_finish_rem_req(sfp->headrp);
L
Linus Torvalds 已提交
2181 2182

	if (sfp->reserve.bufflen > 0) {
H
Hannes Reinecke 已提交
2183 2184
		SCSI_LOG_TIMEOUT(6, sg_printk(KERN_INFO, sdp,
				"sg_remove_sfp:    bufflen=%d, k_use_sg=%d\n",
2185 2186
				(int) sfp->reserve.bufflen,
				(int) sfp->reserve.k_use_sg));
H
Hannes Reinecke 已提交
2187
		sg_remove_scat(sfp, &sfp->reserve);
L
Linus Torvalds 已提交
2188
	}
2189

H
Hannes Reinecke 已提交
2190 2191
	SCSI_LOG_TIMEOUT(6, sg_printk(KERN_INFO, sdp,
			"sg_remove_sfp: sfp=0x%p\n", sfp));
2192
	kfree(sfp);
2193 2194

	scsi_device_put(sdp->device);
2195
	kref_put(&sdp->d_ref, sg_device_destroy);
2196
	module_put(THIS_MODULE);
L
Linus Torvalds 已提交
2197 2198
}

2199 2200
static void
sg_remove_sfp(struct kref *kref)
L
Linus Torvalds 已提交
2201
{
2202
	struct sg_fd *sfp = container_of(kref, struct sg_fd, f_ref);
2203
	struct sg_device *sdp = sfp->parentdp;
2204
	unsigned long iflags;
L
Linus Torvalds 已提交
2205

2206
	write_lock_irqsave(&sdp->sfd_lock, iflags);
2207
	list_del(&sfp->sfd_siblings);
2208
	write_unlock_irqrestore(&sdp->sfd_lock, iflags);
L
Linus Torvalds 已提交
2209

2210 2211
	INIT_WORK(&sfp->ew.work, sg_remove_sfp_usercontext);
	schedule_work(&sfp->ew.work);
L
Linus Torvalds 已提交
2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228
}

static int
sg_res_in_use(Sg_fd * sfp)
{
	const Sg_request *srp;
	unsigned long iflags;

	read_lock_irqsave(&sfp->rq_list_lock, iflags);
	for (srp = sfp->headrp; srp; srp = srp->nextrp)
		if (srp->res_used)
			break;
	read_unlock_irqrestore(&sfp->rq_list_lock, iflags);
	return srp ? 1 : 0;
}

#ifdef CONFIG_SCSI_PROC_FS
2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239
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 已提交
2240 2241 2242
static int
sg_last_dev(void)
{
2243
	int k = -1;
L
Linus Torvalds 已提交
2244 2245
	unsigned long iflags;

2246 2247 2248
	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 已提交
2249 2250 2251 2252
	return k + 1;		/* origin 1 */
}
#endif

2253 2254
/* must be called with sg_index_lock held */
static Sg_device *sg_lookup_dev(int dev)
L
Linus Torvalds 已提交
2255
{
2256 2257
	return idr_find(&sg_index_idr, dev);
}
L
Linus Torvalds 已提交
2258

2259 2260
static Sg_device *
sg_get_dev(int dev)
2261 2262 2263 2264 2265 2266 2267 2268
{
	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);
2269 2270
	else if (atomic_read(&sdp->detaching)) {
		/* If sdp->detaching, then the refcount may already be 0, in
2271 2272 2273 2274 2275 2276
		 * 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);
2277

L
Linus Torvalds 已提交
2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291
	return sdp;
}

#ifdef CONFIG_SCSI_PROC_FS

static struct proc_dir_entry *sg_proc_sgp = NULL;

static char sg_proc_sg_dirname[] = "scsi/sg";

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);
2292 2293
static const struct file_operations adio_fops = {
	.owner = THIS_MODULE,
L
Linus Torvalds 已提交
2294
	.open = sg_proc_single_open_adio,
2295 2296
	.read = seq_read,
	.llseek = seq_lseek,
L
Linus Torvalds 已提交
2297 2298 2299 2300 2301 2302 2303
	.write = sg_proc_write_adio,
	.release = single_release,
};

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);
2304 2305
static const struct file_operations dressz_fops = {
	.owner = THIS_MODULE,
L
Linus Torvalds 已提交
2306
	.open = sg_proc_single_open_dressz,
2307 2308
	.read = seq_read,
	.llseek = seq_lseek,
L
Linus Torvalds 已提交
2309 2310 2311 2312 2313 2314
	.write = sg_proc_write_dressz,
	.release = single_release,
};

static int sg_proc_seq_show_version(struct seq_file *s, void *v);
static int sg_proc_single_open_version(struct inode *inode, struct file *file);
2315 2316
static const struct file_operations version_fops = {
	.owner = THIS_MODULE,
L
Linus Torvalds 已提交
2317
	.open = sg_proc_single_open_version,
2318 2319
	.read = seq_read,
	.llseek = seq_lseek,
L
Linus Torvalds 已提交
2320 2321 2322 2323 2324
	.release = single_release,
};

static int sg_proc_seq_show_devhdr(struct seq_file *s, void *v);
static int sg_proc_single_open_devhdr(struct inode *inode, struct file *file);
2325 2326
static const struct file_operations devhdr_fops = {
	.owner = THIS_MODULE,
L
Linus Torvalds 已提交
2327
	.open = sg_proc_single_open_devhdr,
2328 2329
	.read = seq_read,
	.llseek = seq_lseek,
L
Linus Torvalds 已提交
2330 2331 2332 2333 2334 2335 2336 2337
	.release = single_release,
};

static int sg_proc_seq_show_dev(struct seq_file *s, void *v);
static int sg_proc_open_dev(struct inode *inode, struct file *file);
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);
2338 2339
static const struct file_operations dev_fops = {
	.owner = THIS_MODULE,
L
Linus Torvalds 已提交
2340
	.open = sg_proc_open_dev,
2341 2342
	.read = seq_read,
	.llseek = seq_lseek,
L
Linus Torvalds 已提交
2343 2344
	.release = seq_release,
};
J
James Morris 已提交
2345
static const struct seq_operations dev_seq_ops = {
L
Linus Torvalds 已提交
2346 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);
static int sg_proc_open_devstrs(struct inode *inode, struct file *file);
2354 2355
static const struct file_operations devstrs_fops = {
	.owner = THIS_MODULE,
L
Linus Torvalds 已提交
2356
	.open = sg_proc_open_devstrs,
2357 2358
	.read = seq_read,
	.llseek = seq_lseek,
L
Linus Torvalds 已提交
2359 2360
	.release = seq_release,
};
J
James Morris 已提交
2361
static const struct seq_operations devstrs_seq_ops = {
L
Linus Torvalds 已提交
2362 2363 2364 2365 2366 2367 2368 2369
	.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);
static int sg_proc_open_debug(struct inode *inode, struct file *file);
2370 2371
static const struct file_operations debug_fops = {
	.owner = THIS_MODULE,
L
Linus Torvalds 已提交
2372
	.open = sg_proc_open_debug,
2373 2374
	.read = seq_read,
	.llseek = seq_lseek,
L
Linus Torvalds 已提交
2375 2376
	.release = seq_release,
};
J
James Morris 已提交
2377
static const struct seq_operations debug_seq_ops = {
L
Linus Torvalds 已提交
2378 2379 2380 2381 2382 2383 2384 2385 2386
	.start = dev_seq_start,
	.next  = dev_seq_next,
	.stop  = dev_seq_stop,
	.show  = sg_proc_seq_show_debug,
};


struct sg_proc_leaf {
	const char * name;
2387
	const struct file_operations * fops;
L
Linus Torvalds 已提交
2388 2389
};

2390
static const struct sg_proc_leaf sg_proc_leaf_arr[] = {
L
Linus Torvalds 已提交
2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402
	{"allow_dio", &adio_fops},
	{"debug", &debug_fops},
	{"def_reserved_size", &dressz_fops},
	{"device_hdr", &devhdr_fops},
	{"devices", &dev_fops},
	{"device_strs", &devstrs_fops},
	{"version", &version_fops}
};

static int
sg_proc_init(void)
{
2403
	int num_leaves = ARRAY_SIZE(sg_proc_leaf_arr);
A
Al Viro 已提交
2404
	int k;
L
Linus Torvalds 已提交
2405

2406
	sg_proc_sgp = proc_mkdir(sg_proc_sg_dirname, NULL);
L
Linus Torvalds 已提交
2407 2408 2409
	if (!sg_proc_sgp)
		return 1;
	for (k = 0; k < num_leaves; ++k) {
2410
		const struct sg_proc_leaf *leaf = &sg_proc_leaf_arr[k];
A
Al Viro 已提交
2411
		umode_t mask = leaf->fops->write ? S_IRUGO | S_IWUSR : S_IRUGO;
2412
		proc_create(leaf->name, mask, sg_proc_sgp, leaf->fops);
L
Linus Torvalds 已提交
2413 2414 2415 2416 2417 2418 2419 2420
	}
	return 0;
}

static void
sg_proc_cleanup(void)
{
	int k;
2421
	int num_leaves = ARRAY_SIZE(sg_proc_leaf_arr);
L
Linus Torvalds 已提交
2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445

	if (!sg_proc_sgp)
		return;
	for (k = 0; k < num_leaves; ++k)
		remove_proc_entry(sg_proc_leaf_arr[k].name, sg_proc_sgp);
	remove_proc_entry(sg_proc_sg_dirname, NULL);
}


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)
{
2446 2447
	int err;
	unsigned long num;
L
Linus Torvalds 已提交
2448 2449 2450

	if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
		return -EACCES;
2451 2452 2453 2454
	err = kstrtoul_from_user(buffer, count, 0, &num);
	if (err)
		return err;
	sg_allow_dio = num ? 1 : 0;
L
Linus Torvalds 已提交
2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466
	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)
{
2467
	int err;
L
Linus Torvalds 已提交
2468 2469 2470 2471
	unsigned long k = ULONG_MAX;

	if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
		return -EACCES;
2472 2473 2474 2475

	err = kstrtoul_from_user(buffer, count, 0, &k);
	if (err)
		return err;
L
Linus Torvalds 已提交
2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496
	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_single_open_version(struct inode *inode, struct file *file)
{
	return single_open(file, sg_proc_seq_show_version, NULL);
}

static int sg_proc_seq_show_devhdr(struct seq_file *s, void *v)
{
2497
	seq_puts(s, "host\tchan\tid\tlun\ttype\topens\tqdepth\tbusy\tonline\n");
L
Linus Torvalds 已提交
2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514
	return 0;
}

static int sg_proc_single_open_devhdr(struct inode *inode, struct file *file)
{
	return single_open(file, sg_proc_seq_show_devhdr, NULL);
}

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);

2515
	s->private = it;
L
Linus Torvalds 已提交
2516 2517
	if (! it)
		return NULL;
2518

L
Linus Torvalds 已提交
2519 2520 2521
	it->index = *pos;
	it->max = sg_last_dev();
	if (it->index >= it->max)
2522
		return NULL;
L
Linus Torvalds 已提交
2523 2524 2525 2526 2527
	return it;
}

static void * dev_seq_next(struct seq_file *s, void *v, loff_t *pos)
{
2528
	struct sg_proc_deviter * it = s->private;
L
Linus Torvalds 已提交
2529 2530 2531 2532 2533 2534 2535

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

static void dev_seq_stop(struct seq_file *s, void *v)
{
2536
	kfree(s->private);
L
Linus Torvalds 已提交
2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548
}

static int sg_proc_open_dev(struct inode *inode, struct file *file)
{
        return seq_open(file, &dev_seq_ops);
}

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;
2549
	unsigned long iflags;
L
Linus Torvalds 已提交
2550

2551 2552
	read_lock_irqsave(&sg_index_lock, iflags);
	sdp = it ? sg_lookup_dev(it->index) : NULL;
2553 2554 2555 2556 2557
	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 已提交
2558
		seq_printf(s, "%d\t%d\t%d\t%llu\t%d\t%d\t%d\t%d\t%d\n",
L
Linus Torvalds 已提交
2559 2560 2561 2562
			      scsidp->host->host_no, scsidp->channel,
			      scsidp->id, scsidp->lun, (int) scsidp->type,
			      1,
			      (int) scsidp->queue_depth,
2563
			      (int) atomic_read(&scsidp->device_busy),
L
Linus Torvalds 已提交
2564
			      (int) scsi_device_online(scsidp));
2565
	}
2566
	read_unlock_irqrestore(&sg_index_lock, iflags);
L
Linus Torvalds 已提交
2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579
	return 0;
}

static int sg_proc_open_devstrs(struct inode *inode, struct file *file)
{
        return seq_open(file, &devstrs_seq_ops);
}

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;
2580
	unsigned long iflags;
L
Linus Torvalds 已提交
2581

2582 2583
	read_lock_irqsave(&sg_index_lock, iflags);
	sdp = it ? sg_lookup_dev(it->index) : NULL;
2584 2585
	scsidp = sdp ? sdp->device : NULL;
	if (sdp && scsidp && (!atomic_read(&sdp->detaching)))
L
Linus Torvalds 已提交
2586 2587 2588
		seq_printf(s, "%8.8s\t%16.16s\t%4.4s\n",
			   scsidp->vendor, scsidp->model, scsidp->rev);
	else
2589
		seq_puts(s, "<no active device>\n");
2590
	read_unlock_irqrestore(&sg_index_lock, iflags);
L
Linus Torvalds 已提交
2591 2592 2593
	return 0;
}

2594
/* must be called while holding sg_index_lock */
L
Linus Torvalds 已提交
2595 2596 2597 2598 2599 2600 2601
static void sg_proc_debug_helper(struct seq_file *s, Sg_device * sdp)
{
	int k, m, new_interface, blen, usg;
	Sg_request *srp;
	Sg_fd *fp;
	const sg_io_hdr_t *hp;
	const char * cp;
已提交
2602
	unsigned int ms;
L
Linus Torvalds 已提交
2603

2604 2605 2606
	k = 0;
	list_for_each_entry(fp, &sdp->sfds, sfd_siblings) {
		k++;
2607
		read_lock(&fp->rq_list_lock); /* irqs already disabled */
L
Linus Torvalds 已提交
2608
		seq_printf(s, "   FD(%d): timeout=%dms bufflen=%d "
2609
			   "(res)sgat=%d low_dma=%d\n", k,
L
Linus Torvalds 已提交
2610 2611 2612 2613
			   jiffies_to_msecs(fp->timeout),
			   fp->reserve.bufflen,
			   (int) fp->reserve.k_use_sg,
			   (int) fp->low_dma);
J
Jörn Engel 已提交
2614
		seq_printf(s, "   cmd_q=%d f_packid=%d k_orphan=%d closed=0\n",
L
Linus Torvalds 已提交
2615
			   (int) fp->cmd_q, (int) fp->force_packid,
J
Jörn Engel 已提交
2616
			   (int) fp->keep_orphan);
2617 2618 2619
		for (m = 0, srp = fp->headrp;
				srp != NULL;
				++m, srp = srp->nextrp) {
L
Linus Torvalds 已提交
2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633
			hp = &srp->header;
			new_interface = (hp->interface_id == '\0') ? 0 : 1;
			if (srp->res_used) {
				if (new_interface && 
				    (SG_FLAG_MMAP_IO & hp->flags))
					cp = "     mmap>> ";
				else
					cp = "     rb>> ";
			} else {
				if (SG_INFO_DIRECT_IO_MASK & hp->info)
					cp = "     dio>> ";
				else
					cp = "     ";
			}
2634
			seq_puts(s, cp);
2635 2636
			blen = srp->data.bufflen;
			usg = srp->data.k_use_sg;
2637 2638 2639
			seq_puts(s, srp->done ?
				 ((1 == srp->done) ?  "rcv:" : "fin:")
				  : "act:");
L
Linus Torvalds 已提交
2640 2641 2642 2643
			seq_printf(s, " id=%d blen=%d",
				   srp->header.pack_id, blen);
			if (srp->done)
				seq_printf(s, " dur=%d", hp->duration);
已提交
2644 2645
			else {
				ms = jiffies_to_msecs(jiffies);
L
Linus Torvalds 已提交
2646
				seq_printf(s, " t_o/elap=%d/%d",
已提交
2647 2648 2649 2650
					(new_interface ? hp->timeout :
						  jiffies_to_msecs(fp->timeout)),
					(ms > hp->duration ? ms - hp->duration : 0));
			}
L
Linus Torvalds 已提交
2651 2652 2653 2654
			seq_printf(s, "ms sgat=%d op=0x%02x\n", usg,
				   (int) srp->data.cmd_opcode);
		}
		if (0 == m)
2655
			seq_puts(s, "     No requests active\n");
2656
		read_unlock(&fp->rq_list_lock);
L
Linus Torvalds 已提交
2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668
	}
}

static int sg_proc_open_debug(struct inode *inode, struct file *file)
{
        return seq_open(file, &debug_seq_ops);
}

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;
2669
	unsigned long iflags;
L
Linus Torvalds 已提交
2670

2671 2672 2673
	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 已提交
2674

2675 2676
	read_lock_irqsave(&sg_index_lock, iflags);
	sdp = it ? sg_lookup_dev(it->index) : NULL;
2677 2678 2679 2680
	if (NULL == sdp)
		goto skip;
	read_lock(&sdp->sfd_lock);
	if (!list_empty(&sdp->sfds)) {
2681
		seq_printf(s, " >>> device=%s ", sdp->disk->disk_name);
2682 2683 2684 2685 2686
		if (atomic_read(&sdp->detaching))
			seq_puts(s, "detaching pending close ");
		else if (sdp->device) {
			struct scsi_device *scsidp = sdp->device;

H
Hannes Reinecke 已提交
2687
			seq_printf(s, "%d:%d:%d:%llu   em=%d",
2688 2689 2690 2691 2692 2693 2694
				   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);
2695
		sg_proc_debug_helper(s, sdp);
L
Linus Torvalds 已提交
2696
	}
2697 2698
	read_unlock(&sdp->sfd_lock);
skip:
2699
	read_unlock_irqrestore(&sg_index_lock, iflags);
L
Linus Torvalds 已提交
2700 2701 2702 2703 2704 2705 2706
	return 0;
}

#endif				/* CONFIG_SCSI_PROC_FS */

module_init(init_sg);
module_exit(exit_sg);