blob: 0bb1d49c355260c825fdca7e9a3acc05f10f9497 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * vvvvvvvvvvvvvvvvvvvvvvv Original vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
3 * Copyright (C) 1992 Eric Youngdale
4 * Simulate a host adapter with 2 disks attached. Do a lot of checking
5 * to make sure that we are not getting blocks mixed up, and PANIC if
6 * anything out of the ordinary is seen.
7 * ^^^^^^^^^^^^^^^^^^^^^^^ Original ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
8 *
9 * This version is more generic, simulating a variable number of disk
Douglas Gilbert23183912006-09-16 20:30:47 -040010 * (or disk like devices) sharing a common amount of RAM. To be more
11 * realistic, the simulated devices have the transport attributes of
12 * SAS disks.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
14 *
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -040015 * For documentation see http://sg.danny.cz/sg/sdebug26.html
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 *
17 * D. Gilbert (dpg) work for Magneto-Optical device test [20010421]
18 * dpg: work for devfs large number of disks [20010809]
19 * forked for lk 2.5 series [20011216, 20020101]
20 * use vmalloc() more inquiry+mode_sense [20020302]
21 * add timers for delayed responses [20020721]
22 * Patrick Mansfield <patmans@us.ibm.com> max_luns+scsi_level [20021031]
23 * Mike Anderson <andmike@us.ibm.com> sysfs work [20021118]
24 * dpg: change style of boot options to "scsi_debug.num_tgts=2" and
25 * module options to "modprobe scsi_debug num_tgts=2" [20021221]
26 */
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/module.h>
29
30#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/errno.h>
32#include <linux/timer.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/types.h>
35#include <linux/string.h>
36#include <linux/genhd.h>
37#include <linux/fs.h>
38#include <linux/init.h>
39#include <linux/proc_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/vmalloc.h>
41#include <linux/moduleparam.h>
Jens Axboe852e0342007-07-16 10:19:24 +020042#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/blkdev.h>
Martin K. Petersenc6a44282009-01-04 03:08:19 -050044#include <linux/crc-t10dif.h>
45
46#include <net/checksum.h>
FUJITA Tomonori9ff26ee2008-03-02 18:30:15 +090047
Martin K. Petersen44d92692009-10-15 14:45:27 -040048#include <asm/unaligned.h>
49
FUJITA Tomonori9ff26ee2008-03-02 18:30:15 +090050#include <scsi/scsi.h>
51#include <scsi/scsi_cmnd.h>
52#include <scsi/scsi_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <scsi/scsi_host.h>
54#include <scsi/scsicam.h>
FUJITA Tomonoria34c4e92008-03-25 09:26:50 +090055#include <scsi/scsi_eh.h>
Martin K. Petersen395cef02009-09-18 17:33:03 -040056#include <scsi/scsi_dbg.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Martin K. Petersenc6a44282009-01-04 03:08:19 -050058#include "sd.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include "scsi_logging.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -040061#define SCSI_DEBUG_VERSION "1.82"
62static const char * scsi_debug_version_date = "20100324";
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Douglas Gilbert6f3cbf52007-01-05 00:05:25 -050064/* Additional Sense Code (ASC) */
Douglas Gilbertc65b1442006-06-06 00:11:24 -040065#define NO_ADDITIONAL_SENSE 0x0
66#define LOGICAL_UNIT_NOT_READY 0x4
Akinobu Mitac5af0db2014-02-26 22:57:01 +090067#define LOGICAL_UNIT_COMMUNICATION_FAILURE 0x8
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#define UNRECOVERED_READ_ERR 0x11
Douglas Gilbertc65b1442006-06-06 00:11:24 -040069#define PARAMETER_LIST_LENGTH_ERR 0x1a
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#define INVALID_OPCODE 0x20
71#define ADDR_OUT_OF_RANGE 0x21
Martin K. Petersen395cef02009-09-18 17:33:03 -040072#define INVALID_COMMAND_OPCODE 0x20
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#define INVALID_FIELD_IN_CDB 0x24
Douglas Gilbertc65b1442006-06-06 00:11:24 -040074#define INVALID_FIELD_IN_PARAM_LIST 0x26
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#define POWERON_RESET 0x29
76#define SAVING_PARAMS_UNSUP 0x39
Douglas Gilbert6f3cbf52007-01-05 00:05:25 -050077#define TRANSPORT_PROBLEM 0x4b
Douglas Gilbertc65b1442006-06-06 00:11:24 -040078#define THRESHOLD_EXCEEDED 0x5d
79#define LOW_POWER_COND_ON 0x5e
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Douglas Gilbert6f3cbf52007-01-05 00:05:25 -050081/* Additional Sense Code Qualifier (ASCQ) */
82#define ACK_NAK_TO 0x3
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084#define SDEBUG_TAGGED_QUEUING 0 /* 0 | MSG_SIMPLE_TAG | MSG_ORDERED_TAG */
85
86/* Default values for driver parameters */
87#define DEF_NUM_HOST 1
88#define DEF_NUM_TGTS 1
89#define DEF_MAX_LUNS 1
90/* With these defaults, this driver will make 1 host with 1 target
91 * (id 0) containing 1 logical unit (lun 0). That is 1 device.
92 */
Martin K. Petersen5b94e232011-03-08 02:08:11 -050093#define DEF_ATO 1
Linus Torvalds1da177e2005-04-16 15:20:36 -070094#define DEF_DELAY 1
95#define DEF_DEV_SIZE_MB 8
Martin K. Petersen5b94e232011-03-08 02:08:11 -050096#define DEF_DIF 0
97#define DEF_DIX 0
98#define DEF_D_SENSE 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070099#define DEF_EVERY_NTH 0
Martin K. Petersen5b94e232011-03-08 02:08:11 -0500100#define DEF_FAKE_RW 0
101#define DEF_GUARD 0
102#define DEF_LBPU 0
103#define DEF_LBPWS 0
104#define DEF_LBPWS10 0
Eric Sandeenbe1dd782012-03-08 00:03:59 -0600105#define DEF_LBPRZ 1
Martin K. Petersen5b94e232011-03-08 02:08:11 -0500106#define DEF_LOWEST_ALIGNED 0
107#define DEF_NO_LUN_0 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108#define DEF_NUM_PARTS 0
109#define DEF_OPTS 0
Martin K. Petersene308b3d2010-03-23 01:12:27 -0400110#define DEF_OPT_BLKS 64
Martin K. Petersen5b94e232011-03-08 02:08:11 -0500111#define DEF_PHYSBLK_EXP 0
112#define DEF_PTYPE 0
Martin Pittd9867882012-09-06 12:04:33 +0200113#define DEF_REMOVABLE false
Martin K. Petersen5b94e232011-03-08 02:08:11 -0500114#define DEF_SCSI_LEVEL 5 /* INQUIRY, byte2 [5->SPC-3] */
115#define DEF_SECTOR_SIZE 512
116#define DEF_UNMAP_ALIGNMENT 0
117#define DEF_UNMAP_GRANULARITY 1
Martin K. Petersen60147592010-08-19 11:49:00 -0400118#define DEF_UNMAP_MAX_BLOCKS 0xFFFFFFFF
119#define DEF_UNMAP_MAX_DESC 256
Martin K. Petersen5b94e232011-03-08 02:08:11 -0500120#define DEF_VIRTUAL_GB 0
121#define DEF_VPD_USE_HOSTNO 1
122#define DEF_WRITESAME_LENGTH 0xFFFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124/* bit mask values for scsi_debug_opts */
125#define SCSI_DEBUG_OPT_NOISE 1
126#define SCSI_DEBUG_OPT_MEDIUM_ERR 2
127#define SCSI_DEBUG_OPT_TIMEOUT 4
128#define SCSI_DEBUG_OPT_RECOVERED_ERR 8
Douglas Gilbert6f3cbf52007-01-05 00:05:25 -0500129#define SCSI_DEBUG_OPT_TRANSPORT_ERR 16
Martin K. Petersenc6a44282009-01-04 03:08:19 -0500130#define SCSI_DEBUG_OPT_DIF_ERR 32
131#define SCSI_DEBUG_OPT_DIX_ERR 64
Martin K. Petersen18a4d0a2012-02-09 13:48:53 -0500132#define SCSI_DEBUG_OPT_MAC_TIMEOUT 128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133/* When "every_nth" > 0 then modulo "every_nth" commands:
134 * - a no response is simulated if SCSI_DEBUG_OPT_TIMEOUT is set
135 * - a RECOVERED_ERROR is simulated on successful read and write
136 * commands if SCSI_DEBUG_OPT_RECOVERED_ERR is set.
Douglas Gilbert6f3cbf52007-01-05 00:05:25 -0500137 * - a TRANSPORT_ERROR is simulated on successful read and write
138 * commands if SCSI_DEBUG_OPT_TRANSPORT_ERR is set.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 *
140 * When "every_nth" < 0 then after "- every_nth" commands:
141 * - a no response is simulated if SCSI_DEBUG_OPT_TIMEOUT is set
142 * - a RECOVERED_ERROR is simulated on successful read and write
143 * commands if SCSI_DEBUG_OPT_RECOVERED_ERR is set.
Douglas Gilbert6f3cbf52007-01-05 00:05:25 -0500144 * - a TRANSPORT_ERROR is simulated on successful read and write
145 * commands if SCSI_DEBUG_OPT_TRANSPORT_ERR is set.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 * This will continue until some other action occurs (e.g. the user
147 * writing a new value (other than -1 or 1) to every_nth via sysfs).
148 */
149
150/* when 1==SCSI_DEBUG_OPT_MEDIUM_ERR, a medium error is simulated at this
151 * sector on read commands: */
152#define OPT_MEDIUM_ERR_ADDR 0x1234 /* that's sector 4660 in decimal */
Douglas Gilbert32f7ef72011-03-11 10:43:35 -0500153#define OPT_MEDIUM_ERR_NUM 10 /* number of consecutive medium errs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155/* If REPORT LUNS has luns >= 256 it can choose "flat space" (value 1)
156 * or "peripheral device" addressing (value 0) */
157#define SAM2_LUN_ADDRESS_METHOD 0
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400158#define SAM2_WLUN_REPORT_LUNS 0xc101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -0400160/* Can queue up to this number of commands. Typically commands that
161 * that have a non-zero delay are queued. */
162#define SCSI_DEBUG_CANQUEUE 255
163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164static int scsi_debug_add_host = DEF_NUM_HOST;
Martin K. Petersen5b94e232011-03-08 02:08:11 -0500165static int scsi_debug_ato = DEF_ATO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166static int scsi_debug_delay = DEF_DELAY;
167static int scsi_debug_dev_size_mb = DEF_DEV_SIZE_MB;
Martin K. Petersen5b94e232011-03-08 02:08:11 -0500168static int scsi_debug_dif = DEF_DIF;
169static int scsi_debug_dix = DEF_DIX;
170static int scsi_debug_dsense = DEF_D_SENSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171static int scsi_debug_every_nth = DEF_EVERY_NTH;
Martin K. Petersen5b94e232011-03-08 02:08:11 -0500172static int scsi_debug_fake_rw = DEF_FAKE_RW;
Akinobu Mita68aee7b2013-09-18 21:27:27 +0900173static unsigned int scsi_debug_guard = DEF_GUARD;
Martin K. Petersen5b94e232011-03-08 02:08:11 -0500174static int scsi_debug_lowest_aligned = DEF_LOWEST_ALIGNED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175static int scsi_debug_max_luns = DEF_MAX_LUNS;
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -0400176static int scsi_debug_max_queue = SCSI_DEBUG_CANQUEUE;
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400177static int scsi_debug_no_lun_0 = DEF_NO_LUN_0;
Martin K. Petersen5b94e232011-03-08 02:08:11 -0500178static int scsi_debug_no_uld = 0;
179static int scsi_debug_num_parts = DEF_NUM_PARTS;
180static int scsi_debug_num_tgts = DEF_NUM_TGTS; /* targets per host */
Martin K. Petersene308b3d2010-03-23 01:12:27 -0400181static int scsi_debug_opt_blks = DEF_OPT_BLKS;
Martin K. Petersen5b94e232011-03-08 02:08:11 -0500182static int scsi_debug_opts = DEF_OPTS;
183static int scsi_debug_physblk_exp = DEF_PHYSBLK_EXP;
184static int scsi_debug_ptype = DEF_PTYPE; /* SCSI peripheral type (0==disk) */
185static int scsi_debug_scsi_level = DEF_SCSI_LEVEL;
186static int scsi_debug_sector_size = DEF_SECTOR_SIZE;
187static int scsi_debug_virtual_gb = DEF_VIRTUAL_GB;
188static int scsi_debug_vpd_use_hostno = DEF_VPD_USE_HOSTNO;
189static unsigned int scsi_debug_lbpu = DEF_LBPU;
190static unsigned int scsi_debug_lbpws = DEF_LBPWS;
191static unsigned int scsi_debug_lbpws10 = DEF_LBPWS10;
Eric Sandeenbe1dd782012-03-08 00:03:59 -0600192static unsigned int scsi_debug_lbprz = DEF_LBPRZ;
Martin K. Petersen60147592010-08-19 11:49:00 -0400193static unsigned int scsi_debug_unmap_alignment = DEF_UNMAP_ALIGNMENT;
Martin K. Petersen5b94e232011-03-08 02:08:11 -0500194static unsigned int scsi_debug_unmap_granularity = DEF_UNMAP_GRANULARITY;
195static unsigned int scsi_debug_unmap_max_blocks = DEF_UNMAP_MAX_BLOCKS;
196static unsigned int scsi_debug_unmap_max_desc = DEF_UNMAP_MAX_DESC;
197static unsigned int scsi_debug_write_same_length = DEF_WRITESAME_LENGTH;
Martin Pittd9867882012-09-06 12:04:33 +0200198static bool scsi_debug_removable = DEF_REMOVABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200static int scsi_debug_cmnd_count = 0;
201
202#define DEV_READONLY(TGT) (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400204static unsigned int sdebug_store_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205static sector_t sdebug_capacity; /* in sectors */
206
207/* old BIOS stuff, kernel may get rid of them but some mode sense pages
208 may still need them */
209static int sdebug_heads; /* heads per disk */
210static int sdebug_cylinders_per; /* cylinders per surface */
211static int sdebug_sectors_per; /* sectors per cylinder */
212
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213#define SDEBUG_MAX_PARTS 4
214
215#define SDEBUG_SENSE_LEN 32
216
Martin K. Petersen395cef02009-09-18 17:33:03 -0400217#define SCSI_DEBUG_MAX_CMD_LEN 32
FUJITA Tomonori9e603ca2008-03-02 18:30:16 +0900218
Martin K. Petersen5b94e232011-03-08 02:08:11 -0500219static unsigned int scsi_debug_lbp(void)
220{
221 return scsi_debug_lbpu | scsi_debug_lbpws | scsi_debug_lbpws10;
222}
223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224struct sdebug_dev_info {
225 struct list_head dev_list;
226 unsigned char sense_buff[SDEBUG_SENSE_LEN]; /* weak nexus */
227 unsigned int channel;
228 unsigned int target;
229 unsigned int lun;
230 struct sdebug_host_info *sdbg_host;
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400231 unsigned int wlun;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 char reset;
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400233 char stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 char used;
235};
236
237struct sdebug_host_info {
238 struct list_head host_list;
239 struct Scsi_Host *shost;
240 struct device dev;
241 struct list_head dev_info_list;
242};
243
244#define to_sdebug_host(d) \
245 container_of(d, struct sdebug_host_info, dev)
246
247static LIST_HEAD(sdebug_host_list);
248static DEFINE_SPINLOCK(sdebug_host_list_lock);
249
250typedef void (* done_funct_t) (struct scsi_cmnd *);
251
252struct sdebug_queued_cmd {
253 int in_use;
254 struct timer_list cmnd_timer;
255 done_funct_t done_funct;
256 struct scsi_cmnd * a_cmnd;
257 int scsi_result;
258};
259static struct sdebug_queued_cmd queued_arr[SCSI_DEBUG_CANQUEUE];
260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261static unsigned char * fake_storep; /* ramdisk storage */
Akinobu Mitae18d8be2013-06-29 17:59:18 +0900262static struct sd_dif_tuple *dif_storep; /* protection info */
Martin K. Petersen44d92692009-10-15 14:45:27 -0400263static void *map_storep; /* provisioning map */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Martin K. Petersen44d92692009-10-15 14:45:27 -0400265static unsigned long map_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266static int num_aborts = 0;
267static int num_dev_resets = 0;
268static int num_bus_resets = 0;
269static int num_host_resets = 0;
Martin K. Petersenc6a44282009-01-04 03:08:19 -0500270static int dix_writes;
271static int dix_reads;
272static int dif_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
274static DEFINE_SPINLOCK(queued_arr_lock);
275static DEFINE_RWLOCK(atomic_rw);
276
277static char sdebug_proc_name[] = "scsi_debug";
278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279static struct bus_type pseudo_lld_bus;
280
281static struct device_driver sdebug_driverfs_driver = {
282 .name = sdebug_proc_name,
283 .bus = &pseudo_lld_bus,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284};
285
286static const int check_condition_result =
287 (DRIVER_SENSE << 24) | SAM_STAT_CHECK_CONDITION;
288
Martin K. Petersenc6a44282009-01-04 03:08:19 -0500289static const int illegal_condition_result =
290 (DRIVER_SENSE << 24) | (DID_ABORT << 16) | SAM_STAT_CHECK_CONDITION;
291
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400292static unsigned char ctrl_m_pg[] = {0xa, 10, 2, 0, 0, 0, 0, 0,
293 0, 0, 0x2, 0x4b};
294static unsigned char iec_m_pg[] = {0x1c, 0xa, 0x08, 0, 0, 0, 0, 0,
295 0, 0, 0x0, 0x0};
296
Akinobu Mita14faa942013-09-18 21:27:24 +0900297static void *fake_store(unsigned long long lba)
298{
299 lba = do_div(lba, sdebug_store_sectors);
300
301 return fake_storep + lba * scsi_debug_sector_size;
302}
303
304static struct sd_dif_tuple *dif_store(sector_t sector)
305{
306 sector = do_div(sector, sdebug_store_sectors);
307
308 return dif_storep + sector;
309}
310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311static int sdebug_add_adapter(void);
312static void sdebug_remove_adapter(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
FUJITA Tomonori8dea0d02008-03-30 00:59:58 +0900314static void sdebug_max_tgts_luns(void)
315{
316 struct sdebug_host_info *sdbg_host;
317 struct Scsi_Host *hpnt;
318
319 spin_lock(&sdebug_host_list_lock);
320 list_for_each_entry(sdbg_host, &sdebug_host_list, host_list) {
321 hpnt = sdbg_host->shost;
322 if ((hpnt->this_id >= 0) &&
323 (scsi_debug_num_tgts > hpnt->this_id))
324 hpnt->max_id = scsi_debug_num_tgts + 1;
325 else
326 hpnt->max_id = scsi_debug_num_tgts;
327 /* scsi_debug_max_luns; */
328 hpnt->max_lun = SAM2_WLUN_REPORT_LUNS;
329 }
330 spin_unlock(&sdebug_host_list_lock);
331}
332
333static void mk_sense_buffer(struct sdebug_dev_info *devip, int key,
334 int asc, int asq)
335{
336 unsigned char *sbuff;
337
338 sbuff = devip->sense_buff;
339 memset(sbuff, 0, SDEBUG_SENSE_LEN);
340
341 scsi_build_sense_buffer(scsi_debug_dsense, sbuff, key, asc, asq);
342
343 if (SCSI_DEBUG_OPT_NOISE & scsi_debug_opts)
344 printk(KERN_INFO "scsi_debug: [sense_key,asc,ascq]: "
345 "[0x%x,0x%x,0x%x]\n", key, asc, asq);
346}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
FUJITA Tomonori3de9f942008-01-23 01:31:59 +0900348static void get_data_transfer_info(unsigned char *cmd,
Martin K. Petersen395cef02009-09-18 17:33:03 -0400349 unsigned long long *lba, unsigned int *num,
350 u32 *ei_lba)
FUJITA Tomonori3de9f942008-01-23 01:31:59 +0900351{
Martin K. Petersen395cef02009-09-18 17:33:03 -0400352 *ei_lba = 0;
353
FUJITA Tomonori3de9f942008-01-23 01:31:59 +0900354 switch (*cmd) {
Martin K. Petersen395cef02009-09-18 17:33:03 -0400355 case VARIABLE_LENGTH_CMD:
356 *lba = (u64)cmd[19] | (u64)cmd[18] << 8 |
357 (u64)cmd[17] << 16 | (u64)cmd[16] << 24 |
358 (u64)cmd[15] << 32 | (u64)cmd[14] << 40 |
359 (u64)cmd[13] << 48 | (u64)cmd[12] << 56;
360
361 *ei_lba = (u32)cmd[23] | (u32)cmd[22] << 8 |
362 (u32)cmd[21] << 16 | (u32)cmd[20] << 24;
363
364 *num = (u32)cmd[31] | (u32)cmd[30] << 8 | (u32)cmd[29] << 16 |
365 (u32)cmd[28] << 24;
366 break;
367
Martin K. Petersen44d92692009-10-15 14:45:27 -0400368 case WRITE_SAME_16:
FUJITA Tomonori3de9f942008-01-23 01:31:59 +0900369 case WRITE_16:
370 case READ_16:
FUJITA Tomonorid5cdc982008-03-25 17:04:46 +0900371 *lba = (u64)cmd[9] | (u64)cmd[8] << 8 |
372 (u64)cmd[7] << 16 | (u64)cmd[6] << 24 |
373 (u64)cmd[5] << 32 | (u64)cmd[4] << 40 |
374 (u64)cmd[3] << 48 | (u64)cmd[2] << 56;
375
376 *num = (u32)cmd[13] | (u32)cmd[12] << 8 | (u32)cmd[11] << 16 |
377 (u32)cmd[10] << 24;
FUJITA Tomonori3de9f942008-01-23 01:31:59 +0900378 break;
379 case WRITE_12:
380 case READ_12:
FUJITA Tomonorid5cdc982008-03-25 17:04:46 +0900381 *lba = (u32)cmd[5] | (u32)cmd[4] << 8 | (u32)cmd[3] << 16 |
382 (u32)cmd[2] << 24;
383
384 *num = (u32)cmd[9] | (u32)cmd[8] << 8 | (u32)cmd[7] << 16 |
385 (u32)cmd[6] << 24;
FUJITA Tomonori3de9f942008-01-23 01:31:59 +0900386 break;
Martin K. Petersen44d92692009-10-15 14:45:27 -0400387 case WRITE_SAME:
FUJITA Tomonori3de9f942008-01-23 01:31:59 +0900388 case WRITE_10:
389 case READ_10:
FUJITA Tomonoric639d142008-01-23 01:32:01 +0900390 case XDWRITEREAD_10:
FUJITA Tomonorid5cdc982008-03-25 17:04:46 +0900391 *lba = (u32)cmd[5] | (u32)cmd[4] << 8 | (u32)cmd[3] << 16 |
392 (u32)cmd[2] << 24;
393
394 *num = (u32)cmd[8] | (u32)cmd[7] << 8;
FUJITA Tomonori3de9f942008-01-23 01:31:59 +0900395 break;
396 case WRITE_6:
397 case READ_6:
FUJITA Tomonorid5cdc982008-03-25 17:04:46 +0900398 *lba = (u32)cmd[3] | (u32)cmd[2] << 8 |
399 (u32)(cmd[1] & 0x1f) << 16;
FUJITA Tomonori3de9f942008-01-23 01:31:59 +0900400 *num = (0 == cmd[4]) ? 256 : cmd[4];
401 break;
402 default:
403 break;
404 }
405}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407static int scsi_debug_ioctl(struct scsi_device *dev, int cmd, void __user *arg)
408{
409 if (SCSI_DEBUG_OPT_NOISE & scsi_debug_opts) {
410 printk(KERN_INFO "scsi_debug: ioctl: cmd=0x%x\n", cmd);
411 }
412 return -EINVAL;
413 /* return -ENOTTY; // correct return but upsets fdisk */
414}
415
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400416static int check_readiness(struct scsi_cmnd * SCpnt, int reset_only,
417 struct sdebug_dev_info * devip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418{
419 if (devip->reset) {
420 if (SCSI_DEBUG_OPT_NOISE & scsi_debug_opts)
421 printk(KERN_INFO "scsi_debug: Reporting Unit "
422 "attention: power on reset\n");
423 devip->reset = 0;
424 mk_sense_buffer(devip, UNIT_ATTENTION, POWERON_RESET, 0);
425 return check_condition_result;
426 }
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400427 if ((0 == reset_only) && devip->stopped) {
428 if (SCSI_DEBUG_OPT_NOISE & scsi_debug_opts)
429 printk(KERN_INFO "scsi_debug: Reporting Not "
430 "ready: initializing command required\n");
431 mk_sense_buffer(devip, NOT_READY, LOGICAL_UNIT_NOT_READY,
432 0x2);
433 return check_condition_result;
434 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 return 0;
436}
437
438/* Returns 0 if ok else (DID_ERROR << 16). Sets scp->resid . */
FUJITA Tomonori21a61822008-03-09 13:44:30 +0900439static int fill_from_dev_buffer(struct scsi_cmnd *scp, unsigned char *arr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 int arr_len)
441{
FUJITA Tomonori21a61822008-03-09 13:44:30 +0900442 int act_len;
FUJITA Tomonori072d0bb2008-01-23 01:32:00 +0900443 struct scsi_data_buffer *sdb = scsi_in(scp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
FUJITA Tomonori072d0bb2008-01-23 01:32:00 +0900445 if (!sdb->length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 return 0;
FUJITA Tomonori072d0bb2008-01-23 01:32:00 +0900447 if (!(scsi_bidi_cmnd(scp) || scp->sc_data_direction == DMA_FROM_DEVICE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 return (DID_ERROR << 16);
FUJITA Tomonori21a61822008-03-09 13:44:30 +0900449
450 act_len = sg_copy_from_buffer(sdb->table.sgl, sdb->table.nents,
451 arr, arr_len);
Akinobu Mitaa4517512013-07-08 16:01:57 -0700452 sdb->resid = scsi_bufflen(scp) - act_len;
FUJITA Tomonori21a61822008-03-09 13:44:30 +0900453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 return 0;
455}
456
457/* Returns number of bytes fetched into 'arr' or -1 if error. */
FUJITA Tomonori21a61822008-03-09 13:44:30 +0900458static int fetch_to_dev_buffer(struct scsi_cmnd *scp, unsigned char *arr,
459 int arr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460{
FUJITA Tomonori21a61822008-03-09 13:44:30 +0900461 if (!scsi_bufflen(scp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 return 0;
FUJITA Tomonori072d0bb2008-01-23 01:32:00 +0900463 if (!(scsi_bidi_cmnd(scp) || scp->sc_data_direction == DMA_TO_DEVICE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 return -1;
FUJITA Tomonori21a61822008-03-09 13:44:30 +0900465
466 return scsi_sg_copy_to_buffer(scp, arr, arr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467}
468
469
470static const char * inq_vendor_id = "Linux ";
471static const char * inq_product_id = "scsi_debug ";
472static const char * inq_product_rev = "0004";
473
Hannes Reinecke5a09e392006-10-20 09:58:47 +0200474static int inquiry_evpd_83(unsigned char * arr, int port_group_id,
475 int target_dev_id, int dev_id_num,
476 const char * dev_id_str,
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400477 int dev_id_str_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478{
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400479 int num, port_a;
480 char b[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400482 port_a = target_dev_id + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 /* T10 vendor identifier field format (faked) */
484 arr[0] = 0x2; /* ASCII */
485 arr[1] = 0x1;
486 arr[2] = 0x0;
487 memcpy(&arr[4], inq_vendor_id, 8);
488 memcpy(&arr[12], inq_product_id, 16);
489 memcpy(&arr[28], dev_id_str, dev_id_str_len);
490 num = 8 + 16 + dev_id_str_len;
491 arr[3] = num;
492 num += 4;
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400493 if (dev_id_num >= 0) {
494 /* NAA-5, Logical unit identifier (binary) */
495 arr[num++] = 0x1; /* binary (not necessarily sas) */
496 arr[num++] = 0x3; /* PIV=0, lu, naa */
497 arr[num++] = 0x0;
498 arr[num++] = 0x8;
499 arr[num++] = 0x53; /* naa-5 ieee company id=0x333333 (fake) */
500 arr[num++] = 0x33;
501 arr[num++] = 0x33;
502 arr[num++] = 0x30;
503 arr[num++] = (dev_id_num >> 24);
504 arr[num++] = (dev_id_num >> 16) & 0xff;
505 arr[num++] = (dev_id_num >> 8) & 0xff;
506 arr[num++] = dev_id_num & 0xff;
507 /* Target relative port number */
508 arr[num++] = 0x61; /* proto=sas, binary */
509 arr[num++] = 0x94; /* PIV=1, target port, rel port */
510 arr[num++] = 0x0; /* reserved */
511 arr[num++] = 0x4; /* length */
512 arr[num++] = 0x0; /* reserved */
513 arr[num++] = 0x0; /* reserved */
514 arr[num++] = 0x0;
515 arr[num++] = 0x1; /* relative port A */
516 }
517 /* NAA-5, Target port identifier */
518 arr[num++] = 0x61; /* proto=sas, binary */
519 arr[num++] = 0x93; /* piv=1, target port, naa */
520 arr[num++] = 0x0;
521 arr[num++] = 0x8;
522 arr[num++] = 0x52; /* naa-5, company id=0x222222 (fake) */
523 arr[num++] = 0x22;
524 arr[num++] = 0x22;
525 arr[num++] = 0x20;
526 arr[num++] = (port_a >> 24);
527 arr[num++] = (port_a >> 16) & 0xff;
528 arr[num++] = (port_a >> 8) & 0xff;
529 arr[num++] = port_a & 0xff;
Hannes Reinecke5a09e392006-10-20 09:58:47 +0200530 /* NAA-5, Target port group identifier */
531 arr[num++] = 0x61; /* proto=sas, binary */
532 arr[num++] = 0x95; /* piv=1, target port group id */
533 arr[num++] = 0x0;
534 arr[num++] = 0x4;
535 arr[num++] = 0;
536 arr[num++] = 0;
537 arr[num++] = (port_group_id >> 8) & 0xff;
538 arr[num++] = port_group_id & 0xff;
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400539 /* NAA-5, Target device identifier */
540 arr[num++] = 0x61; /* proto=sas, binary */
541 arr[num++] = 0xa3; /* piv=1, target device, naa */
542 arr[num++] = 0x0;
543 arr[num++] = 0x8;
544 arr[num++] = 0x52; /* naa-5, company id=0x222222 (fake) */
545 arr[num++] = 0x22;
546 arr[num++] = 0x22;
547 arr[num++] = 0x20;
548 arr[num++] = (target_dev_id >> 24);
549 arr[num++] = (target_dev_id >> 16) & 0xff;
550 arr[num++] = (target_dev_id >> 8) & 0xff;
551 arr[num++] = target_dev_id & 0xff;
552 /* SCSI name string: Target device identifier */
553 arr[num++] = 0x63; /* proto=sas, UTF-8 */
554 arr[num++] = 0xa8; /* piv=1, target device, SCSI name string */
555 arr[num++] = 0x0;
556 arr[num++] = 24;
557 memcpy(arr + num, "naa.52222220", 12);
558 num += 12;
559 snprintf(b, sizeof(b), "%08X", target_dev_id);
560 memcpy(arr + num, b, 8);
561 num += 8;
562 memset(arr + num, 0, 4);
563 num += 4;
564 return num;
565}
566
567
568static unsigned char vpd84_data[] = {
569/* from 4th byte */ 0x22,0x22,0x22,0x0,0xbb,0x0,
570 0x22,0x22,0x22,0x0,0xbb,0x1,
571 0x22,0x22,0x22,0x0,0xbb,0x2,
572};
573
574static int inquiry_evpd_84(unsigned char * arr)
575{
576 memcpy(arr, vpd84_data, sizeof(vpd84_data));
577 return sizeof(vpd84_data);
578}
579
580static int inquiry_evpd_85(unsigned char * arr)
581{
582 int num = 0;
583 const char * na1 = "https://www.kernel.org/config";
584 const char * na2 = "http://www.kernel.org/log";
585 int plen, olen;
586
587 arr[num++] = 0x1; /* lu, storage config */
588 arr[num++] = 0x0; /* reserved */
589 arr[num++] = 0x0;
590 olen = strlen(na1);
591 plen = olen + 1;
592 if (plen % 4)
593 plen = ((plen / 4) + 1) * 4;
594 arr[num++] = plen; /* length, null termianted, padded */
595 memcpy(arr + num, na1, olen);
596 memset(arr + num + olen, 0, plen - olen);
597 num += plen;
598
599 arr[num++] = 0x4; /* lu, logging */
600 arr[num++] = 0x0; /* reserved */
601 arr[num++] = 0x0;
602 olen = strlen(na2);
603 plen = olen + 1;
604 if (plen % 4)
605 plen = ((plen / 4) + 1) * 4;
606 arr[num++] = plen; /* length, null terminated, padded */
607 memcpy(arr + num, na2, olen);
608 memset(arr + num + olen, 0, plen - olen);
609 num += plen;
610
611 return num;
612}
613
614/* SCSI ports VPD page */
615static int inquiry_evpd_88(unsigned char * arr, int target_dev_id)
616{
617 int num = 0;
618 int port_a, port_b;
619
620 port_a = target_dev_id + 1;
621 port_b = port_a + 1;
622 arr[num++] = 0x0; /* reserved */
623 arr[num++] = 0x0; /* reserved */
624 arr[num++] = 0x0;
625 arr[num++] = 0x1; /* relative port 1 (primary) */
626 memset(arr + num, 0, 6);
627 num += 6;
628 arr[num++] = 0x0;
629 arr[num++] = 12; /* length tp descriptor */
630 /* naa-5 target port identifier (A) */
631 arr[num++] = 0x61; /* proto=sas, binary */
632 arr[num++] = 0x93; /* PIV=1, target port, NAA */
633 arr[num++] = 0x0; /* reserved */
634 arr[num++] = 0x8; /* length */
635 arr[num++] = 0x52; /* NAA-5, company_id=0x222222 (fake) */
636 arr[num++] = 0x22;
637 arr[num++] = 0x22;
638 arr[num++] = 0x20;
639 arr[num++] = (port_a >> 24);
640 arr[num++] = (port_a >> 16) & 0xff;
641 arr[num++] = (port_a >> 8) & 0xff;
642 arr[num++] = port_a & 0xff;
643
644 arr[num++] = 0x0; /* reserved */
645 arr[num++] = 0x0; /* reserved */
646 arr[num++] = 0x0;
647 arr[num++] = 0x2; /* relative port 2 (secondary) */
648 memset(arr + num, 0, 6);
649 num += 6;
650 arr[num++] = 0x0;
651 arr[num++] = 12; /* length tp descriptor */
652 /* naa-5 target port identifier (B) */
653 arr[num++] = 0x61; /* proto=sas, binary */
654 arr[num++] = 0x93; /* PIV=1, target port, NAA */
655 arr[num++] = 0x0; /* reserved */
656 arr[num++] = 0x8; /* length */
657 arr[num++] = 0x52; /* NAA-5, company_id=0x222222 (fake) */
658 arr[num++] = 0x22;
659 arr[num++] = 0x22;
660 arr[num++] = 0x20;
661 arr[num++] = (port_b >> 24);
662 arr[num++] = (port_b >> 16) & 0xff;
663 arr[num++] = (port_b >> 8) & 0xff;
664 arr[num++] = port_b & 0xff;
665
666 return num;
667}
668
669
670static unsigned char vpd89_data[] = {
671/* from 4th byte */ 0,0,0,0,
672'l','i','n','u','x',' ',' ',' ',
673'S','A','T',' ','s','c','s','i','_','d','e','b','u','g',' ',' ',
674'1','2','3','4',
6750x34,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,
6760xec,0,0,0,
6770x5a,0xc,0xff,0x3f,0x37,0xc8,0x10,0,0,0,0,0,0x3f,0,0,0,
6780,0,0,0,0x58,0x58,0x58,0x58,0x58,0x58,0x58,0x58,0x20,0x20,0x20,0x20,
6790x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0,0,0,0x40,0x4,0,0x2e,0x33,
6800x38,0x31,0x20,0x20,0x20,0x20,0x54,0x53,0x38,0x33,0x30,0x30,0x33,0x31,
6810x53,0x41,
6820x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
6830x20,0x20,
6840x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
6850x10,0x80,
6860,0,0,0x2f,0,0,0,0x2,0,0x2,0x7,0,0xff,0xff,0x1,0,
6870x3f,0,0xc1,0xff,0x3e,0,0x10,0x1,0xb0,0xf8,0x50,0x9,0,0,0x7,0,
6880x3,0,0x78,0,0x78,0,0xf0,0,0x78,0,0,0,0,0,0,0,
6890,0,0,0,0,0,0,0,0x2,0,0,0,0,0,0,0,
6900x7e,0,0x1b,0,0x6b,0x34,0x1,0x7d,0x3,0x40,0x69,0x34,0x1,0x3c,0x3,0x40,
6910x7f,0x40,0,0,0,0,0xfe,0xfe,0,0,0,0,0,0xfe,0,0,
6920,0,0,0,0,0,0,0,0xb0,0xf8,0x50,0x9,0,0,0,0,
6930,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
6940,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
6950,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
6960x1,0,0xb0,0xf8,0x50,0x9,0xb0,0xf8,0x50,0x9,0x20,0x20,0x2,0,0xb6,0x42,
6970,0x80,0x8a,0,0x6,0x3c,0xa,0x3c,0xff,0xff,0xc6,0x7,0,0x1,0,0x8,
6980xf0,0xf,0,0x10,0x2,0,0x30,0,0,0,0,0,0,0,0x6,0xfe,
6990,0,0x2,0,0x50,0,0x8a,0,0x4f,0x95,0,0,0x21,0,0xb,0,
7000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
7010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
7020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
7030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
7040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
7050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
7060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
7070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
7080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
7090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
7100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
7110,0,0,0,0,0,0,0,0,0,0,0,0,0,0xa5,0x51,
712};
713
714static int inquiry_evpd_89(unsigned char * arr)
715{
716 memcpy(arr, vpd89_data, sizeof(vpd89_data));
717 return sizeof(vpd89_data);
718}
719
720
Douglas Gilbert1e49f782009-10-29 01:48:31 -0400721/* Block limits VPD page (SBC-3) */
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400722static unsigned char vpdb0_data[] = {
Douglas Gilbert1e49f782009-10-29 01:48:31 -0400723 /* from 4th byte */ 0,0,0,4, 0,0,0x4,0, 0,0,0,64,
724 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
725 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
726 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400727};
728
729static int inquiry_evpd_b0(unsigned char * arr)
730{
Martin K. Petersenea61fca2009-05-15 00:40:33 -0400731 unsigned int gran;
732
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400733 memcpy(arr, vpdb0_data, sizeof(vpdb0_data));
Martin K. Petersene308b3d2010-03-23 01:12:27 -0400734
735 /* Optimal transfer length granularity */
Martin K. Petersenea61fca2009-05-15 00:40:33 -0400736 gran = 1 << scsi_debug_physblk_exp;
737 arr[2] = (gran >> 8) & 0xff;
738 arr[3] = gran & 0xff;
Martin K. Petersene308b3d2010-03-23 01:12:27 -0400739
740 /* Maximum Transfer Length */
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400741 if (sdebug_store_sectors > 0x400) {
742 arr[4] = (sdebug_store_sectors >> 24) & 0xff;
743 arr[5] = (sdebug_store_sectors >> 16) & 0xff;
744 arr[6] = (sdebug_store_sectors >> 8) & 0xff;
745 arr[7] = sdebug_store_sectors & 0xff;
746 }
Martin K. Petersen44d92692009-10-15 14:45:27 -0400747
Martin K. Petersene308b3d2010-03-23 01:12:27 -0400748 /* Optimal Transfer Length */
749 put_unaligned_be32(scsi_debug_opt_blks, &arr[8]);
750
Martin K. Petersen5b94e232011-03-08 02:08:11 -0500751 if (scsi_debug_lbpu) {
Martin K. Petersene308b3d2010-03-23 01:12:27 -0400752 /* Maximum Unmap LBA Count */
Martin K. Petersen60147592010-08-19 11:49:00 -0400753 put_unaligned_be32(scsi_debug_unmap_max_blocks, &arr[16]);
Martin K. Petersene308b3d2010-03-23 01:12:27 -0400754
755 /* Maximum Unmap Block Descriptor Count */
Martin K. Petersen44d92692009-10-15 14:45:27 -0400756 put_unaligned_be32(scsi_debug_unmap_max_desc, &arr[20]);
757 }
758
Martin K. Petersene308b3d2010-03-23 01:12:27 -0400759 /* Unmap Granularity Alignment */
Martin K. Petersen44d92692009-10-15 14:45:27 -0400760 if (scsi_debug_unmap_alignment) {
761 put_unaligned_be32(scsi_debug_unmap_alignment, &arr[28]);
762 arr[28] |= 0x80; /* UGAVALID */
763 }
764
Martin K. Petersene308b3d2010-03-23 01:12:27 -0400765 /* Optimal Unmap Granularity */
Martin K. Petersen60147592010-08-19 11:49:00 -0400766 put_unaligned_be32(scsi_debug_unmap_granularity, &arr[24]);
767
Martin K. Petersen5b94e232011-03-08 02:08:11 -0500768 /* Maximum WRITE SAME Length */
769 put_unaligned_be64(scsi_debug_write_same_length, &arr[32]);
770
771 return 0x3c; /* Mandatory page length for Logical Block Provisioning */
Martin K. Petersen44d92692009-10-15 14:45:27 -0400772
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400773 return sizeof(vpdb0_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774}
775
Douglas Gilbert1e49f782009-10-29 01:48:31 -0400776/* Block device characteristics VPD page (SBC-3) */
Matthew Wilcoxeac6e8e42008-06-19 10:02:58 -0600777static int inquiry_evpd_b1(unsigned char *arr)
778{
779 memset(arr, 0, 0x3c);
780 arr[0] = 0;
Douglas Gilbert1e49f782009-10-29 01:48:31 -0400781 arr[1] = 1; /* non rotating medium (e.g. solid state) */
782 arr[2] = 0;
783 arr[3] = 5; /* less than 1.8" */
Matthew Wilcoxeac6e8e42008-06-19 10:02:58 -0600784
785 return 0x3c;
786}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
Eric Sandeenbe1dd782012-03-08 00:03:59 -0600788/* Logical block provisioning VPD page (SBC-3) */
Martin K. Petersen60147592010-08-19 11:49:00 -0400789static int inquiry_evpd_b2(unsigned char *arr)
790{
Martin K. Petersen3f0bc3b2012-03-08 10:48:29 -0500791 memset(arr, 0, 0x4);
Martin K. Petersen60147592010-08-19 11:49:00 -0400792 arr[0] = 0; /* threshold exponent */
793
Martin K. Petersen5b94e232011-03-08 02:08:11 -0500794 if (scsi_debug_lbpu)
Martin K. Petersen60147592010-08-19 11:49:00 -0400795 arr[1] = 1 << 7;
796
Martin K. Petersen5b94e232011-03-08 02:08:11 -0500797 if (scsi_debug_lbpws)
Martin K. Petersen60147592010-08-19 11:49:00 -0400798 arr[1] |= 1 << 6;
799
Martin K. Petersen5b94e232011-03-08 02:08:11 -0500800 if (scsi_debug_lbpws10)
801 arr[1] |= 1 << 5;
802
Eric Sandeenbe1dd782012-03-08 00:03:59 -0600803 if (scsi_debug_lbprz)
804 arr[1] |= 1 << 2;
805
Martin K. Petersen3f0bc3b2012-03-08 10:48:29 -0500806 return 0x4;
Martin K. Petersen60147592010-08-19 11:49:00 -0400807}
808
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809#define SDEBUG_LONG_INQ_SZ 96
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400810#define SDEBUG_MAX_INQ_ARR_SZ 584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
812static int resp_inquiry(struct scsi_cmnd * scp, int target,
813 struct sdebug_dev_info * devip)
814{
815 unsigned char pq_pdt;
Hannes Reinecke5a09e392006-10-20 09:58:47 +0200816 unsigned char * arr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 unsigned char *cmd = (unsigned char *)scp->cmnd;
Hannes Reinecke5a09e392006-10-20 09:58:47 +0200818 int alloc_len, n, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
820 alloc_len = (cmd[3] << 8) + cmd[4];
Douglas Gilbert6f3cbf52007-01-05 00:05:25 -0500821 arr = kzalloc(SDEBUG_MAX_INQ_ARR_SZ, GFP_ATOMIC);
822 if (! arr)
823 return DID_REQUEUE << 16;
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400824 if (devip->wlun)
825 pq_pdt = 0x1e; /* present, wlun */
826 else if (scsi_debug_no_lun_0 && (0 == devip->lun))
827 pq_pdt = 0x7f; /* not present, no device type */
828 else
829 pq_pdt = (scsi_debug_ptype & 0x1f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 arr[0] = pq_pdt;
831 if (0x2 & cmd[1]) { /* CMDDT bit set */
832 mk_sense_buffer(devip, ILLEGAL_REQUEST, INVALID_FIELD_IN_CDB,
833 0);
Hannes Reinecke5a09e392006-10-20 09:58:47 +0200834 kfree(arr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 return check_condition_result;
836 } else if (0x1 & cmd[1]) { /* EVPD bit set */
Hannes Reinecke5a09e392006-10-20 09:58:47 +0200837 int lu_id_num, port_group_id, target_dev_id, len;
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400838 char lu_id_str[6];
839 int host_no = devip->sdbg_host->shost->host_no;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
Hannes Reinecke5a09e392006-10-20 09:58:47 +0200841 port_group_id = (((host_no + 1) & 0x7f) << 8) +
842 (devip->channel & 0x7f);
Douglas Gilbert23183912006-09-16 20:30:47 -0400843 if (0 == scsi_debug_vpd_use_hostno)
844 host_no = 0;
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400845 lu_id_num = devip->wlun ? -1 : (((host_no + 1) * 2000) +
846 (devip->target * 1000) + devip->lun);
847 target_dev_id = ((host_no + 1) * 2000) +
848 (devip->target * 1000) - 3;
849 len = scnprintf(lu_id_str, 6, "%d", lu_id_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 if (0 == cmd[2]) { /* supported vital product data pages */
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400851 arr[1] = cmd[2]; /*sanity */
852 n = 4;
853 arr[n++] = 0x0; /* this page */
854 arr[n++] = 0x80; /* unit serial number */
855 arr[n++] = 0x83; /* device identification */
856 arr[n++] = 0x84; /* software interface ident. */
857 arr[n++] = 0x85; /* management network addresses */
858 arr[n++] = 0x86; /* extended inquiry */
859 arr[n++] = 0x87; /* mode page policy */
860 arr[n++] = 0x88; /* SCSI ports */
861 arr[n++] = 0x89; /* ATA information */
862 arr[n++] = 0xb0; /* Block limits (SBC) */
Matthew Wilcoxeac6e8e42008-06-19 10:02:58 -0600863 arr[n++] = 0xb1; /* Block characteristics (SBC) */
Martin K. Petersen5b94e232011-03-08 02:08:11 -0500864 if (scsi_debug_lbp()) /* Logical Block Prov. (SBC) */
865 arr[n++] = 0xb2;
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400866 arr[3] = n - 4; /* number of supported VPD pages */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 } else if (0x80 == cmd[2]) { /* unit serial number */
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400868 arr[1] = cmd[2]; /*sanity */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 arr[3] = len;
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400870 memcpy(&arr[4], lu_id_str, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 } else if (0x83 == cmd[2]) { /* device identification */
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400872 arr[1] = cmd[2]; /*sanity */
Hannes Reinecke5a09e392006-10-20 09:58:47 +0200873 arr[3] = inquiry_evpd_83(&arr[4], port_group_id,
874 target_dev_id, lu_id_num,
875 lu_id_str, len);
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400876 } else if (0x84 == cmd[2]) { /* Software interface ident. */
877 arr[1] = cmd[2]; /*sanity */
878 arr[3] = inquiry_evpd_84(&arr[4]);
879 } else if (0x85 == cmd[2]) { /* Management network addresses */
880 arr[1] = cmd[2]; /*sanity */
881 arr[3] = inquiry_evpd_85(&arr[4]);
882 } else if (0x86 == cmd[2]) { /* extended inquiry */
883 arr[1] = cmd[2]; /*sanity */
884 arr[3] = 0x3c; /* number of following entries */
Martin K. Petersenc6a44282009-01-04 03:08:19 -0500885 if (scsi_debug_dif == SD_DIF_TYPE3_PROTECTION)
886 arr[4] = 0x4; /* SPT: GRD_CHK:1 */
887 else if (scsi_debug_dif)
888 arr[4] = 0x5; /* SPT: GRD_CHK:1, REF_CHK:1 */
889 else
890 arr[4] = 0x0; /* no protection stuff */
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400891 arr[5] = 0x7; /* head of q, ordered + simple q's */
892 } else if (0x87 == cmd[2]) { /* mode page policy */
893 arr[1] = cmd[2]; /*sanity */
894 arr[3] = 0x8; /* number of following entries */
895 arr[4] = 0x2; /* disconnect-reconnect mp */
896 arr[6] = 0x80; /* mlus, shared */
897 arr[8] = 0x18; /* protocol specific lu */
898 arr[10] = 0x82; /* mlus, per initiator port */
899 } else if (0x88 == cmd[2]) { /* SCSI Ports */
900 arr[1] = cmd[2]; /*sanity */
901 arr[3] = inquiry_evpd_88(&arr[4], target_dev_id);
902 } else if (0x89 == cmd[2]) { /* ATA information */
903 arr[1] = cmd[2]; /*sanity */
904 n = inquiry_evpd_89(&arr[4]);
905 arr[2] = (n >> 8);
906 arr[3] = (n & 0xff);
907 } else if (0xb0 == cmd[2]) { /* Block limits (SBC) */
908 arr[1] = cmd[2]; /*sanity */
909 arr[3] = inquiry_evpd_b0(&arr[4]);
Matthew Wilcoxeac6e8e42008-06-19 10:02:58 -0600910 } else if (0xb1 == cmd[2]) { /* Block characteristics (SBC) */
911 arr[1] = cmd[2]; /*sanity */
912 arr[3] = inquiry_evpd_b1(&arr[4]);
Martin K. Petersen5b94e232011-03-08 02:08:11 -0500913 } else if (0xb2 == cmd[2]) { /* Logical Block Prov. (SBC) */
Martin K. Petersen60147592010-08-19 11:49:00 -0400914 arr[1] = cmd[2]; /*sanity */
915 arr[3] = inquiry_evpd_b2(&arr[4]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 } else {
917 /* Illegal request, invalid field in cdb */
918 mk_sense_buffer(devip, ILLEGAL_REQUEST,
919 INVALID_FIELD_IN_CDB, 0);
Hannes Reinecke5a09e392006-10-20 09:58:47 +0200920 kfree(arr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 return check_condition_result;
922 }
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400923 len = min(((arr[2] << 8) + arr[3]) + 4, alloc_len);
Hannes Reinecke5a09e392006-10-20 09:58:47 +0200924 ret = fill_from_dev_buffer(scp, arr,
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400925 min(len, SDEBUG_MAX_INQ_ARR_SZ));
Hannes Reinecke5a09e392006-10-20 09:58:47 +0200926 kfree(arr);
927 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 }
929 /* drops through here for a standard inquiry */
Martin Pittd9867882012-09-06 12:04:33 +0200930 arr[1] = scsi_debug_removable ? 0x80 : 0; /* Removable disk */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 arr[2] = scsi_debug_scsi_level;
932 arr[3] = 2; /* response_data_format==2 */
933 arr[4] = SDEBUG_LONG_INQ_SZ - 5;
Martin K. Petersenc6a44282009-01-04 03:08:19 -0500934 arr[5] = scsi_debug_dif ? 1 : 0; /* PROTECT bit */
Hannes Reinecke5a09e392006-10-20 09:58:47 +0200935 if (0 == scsi_debug_vpd_use_hostno)
936 arr[5] = 0x10; /* claim: implicit TGPS */
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400937 arr[6] = 0x10; /* claim: MultiP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 /* arr[6] |= 0x40; ... claim: EncServ (enclosure services) */
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400939 arr[7] = 0xa; /* claim: LINKED + CMDQUE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 memcpy(&arr[8], inq_vendor_id, 8);
941 memcpy(&arr[16], inq_product_id, 16);
942 memcpy(&arr[32], inq_product_rev, 4);
943 /* version descriptors (2 bytes each) follow */
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400944 arr[58] = 0x0; arr[59] = 0x77; /* SAM-3 ANSI */
945 arr[60] = 0x3; arr[61] = 0x14; /* SPC-3 ANSI */
946 n = 62;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 if (scsi_debug_ptype == 0) {
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400948 arr[n++] = 0x3; arr[n++] = 0x3d; /* SBC-2 ANSI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 } else if (scsi_debug_ptype == 1) {
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400950 arr[n++] = 0x3; arr[n++] = 0x60; /* SSC-2 no version */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 }
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400952 arr[n++] = 0xc; arr[n++] = 0xf; /* SAS-1.1 rev 10 */
Hannes Reinecke5a09e392006-10-20 09:58:47 +0200953 ret = fill_from_dev_buffer(scp, arr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 min(alloc_len, SDEBUG_LONG_INQ_SZ));
Hannes Reinecke5a09e392006-10-20 09:58:47 +0200955 kfree(arr);
956 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957}
958
959static int resp_requests(struct scsi_cmnd * scp,
960 struct sdebug_dev_info * devip)
961{
962 unsigned char * sbuff;
963 unsigned char *cmd = (unsigned char *)scp->cmnd;
964 unsigned char arr[SDEBUG_SENSE_LEN];
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400965 int want_dsense;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 int len = 18;
967
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400968 memset(arr, 0, sizeof(arr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 if (devip->reset == 1)
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400970 mk_sense_buffer(devip, 0, NO_ADDITIONAL_SENSE, 0);
971 want_dsense = !!(cmd[1] & 1) || scsi_debug_dsense;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 sbuff = devip->sense_buff;
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400973 if ((iec_m_pg[2] & 0x4) && (6 == (iec_m_pg[3] & 0xf))) {
974 if (want_dsense) {
975 arr[0] = 0x72;
976 arr[1] = 0x0; /* NO_SENSE in sense_key */
977 arr[2] = THRESHOLD_EXCEEDED;
978 arr[3] = 0xff; /* TEST set and MRIE==6 */
979 } else {
980 arr[0] = 0x70;
981 arr[2] = 0x0; /* NO_SENSE in sense_key */
982 arr[7] = 0xa; /* 18 byte sense buffer */
983 arr[12] = THRESHOLD_EXCEEDED;
984 arr[13] = 0xff; /* TEST set and MRIE==6 */
985 }
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400986 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 memcpy(arr, sbuff, SDEBUG_SENSE_LEN);
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400988 if ((cmd[1] & 1) && (! scsi_debug_dsense)) {
989 /* DESC bit set and sense_buff in fixed format */
990 memset(arr, 0, sizeof(arr));
991 arr[0] = 0x72;
992 arr[1] = sbuff[2]; /* sense key */
993 arr[2] = sbuff[12]; /* asc */
994 arr[3] = sbuff[13]; /* ascq */
995 len = 8;
996 }
997 }
998 mk_sense_buffer(devip, 0, NO_ADDITIONAL_SENSE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 return fill_from_dev_buffer(scp, arr, len);
1000}
1001
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001002static int resp_start_stop(struct scsi_cmnd * scp,
1003 struct sdebug_dev_info * devip)
1004{
1005 unsigned char *cmd = (unsigned char *)scp->cmnd;
1006 int power_cond, errsts, start;
1007
1008 if ((errsts = check_readiness(scp, 1, devip)))
1009 return errsts;
1010 power_cond = (cmd[4] & 0xf0) >> 4;
1011 if (power_cond) {
1012 mk_sense_buffer(devip, ILLEGAL_REQUEST, INVALID_FIELD_IN_CDB,
1013 0);
1014 return check_condition_result;
1015 }
1016 start = cmd[4] & 1;
1017 if (start == devip->stopped)
1018 devip->stopped = !start;
1019 return 0;
1020}
1021
FUJITA Tomonori28898872008-03-30 00:59:55 +09001022static sector_t get_sdebug_capacity(void)
1023{
1024 if (scsi_debug_virtual_gb > 0)
Douglas Gilbert5447ed62010-04-25 12:30:23 +02001025 return (sector_t)scsi_debug_virtual_gb *
1026 (1073741824 / scsi_debug_sector_size);
FUJITA Tomonori28898872008-03-30 00:59:55 +09001027 else
1028 return sdebug_store_sectors;
1029}
1030
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031#define SDEBUG_READCAP_ARR_SZ 8
1032static int resp_readcap(struct scsi_cmnd * scp,
1033 struct sdebug_dev_info * devip)
1034{
1035 unsigned char arr[SDEBUG_READCAP_ARR_SZ];
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001036 unsigned int capac;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 int errsts;
1038
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001039 if ((errsts = check_readiness(scp, 1, devip)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 return errsts;
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001041 /* following just in case virtual_gb changed */
FUJITA Tomonori28898872008-03-30 00:59:55 +09001042 sdebug_capacity = get_sdebug_capacity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 memset(arr, 0, SDEBUG_READCAP_ARR_SZ);
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001044 if (sdebug_capacity < 0xffffffff) {
1045 capac = (unsigned int)sdebug_capacity - 1;
1046 arr[0] = (capac >> 24);
1047 arr[1] = (capac >> 16) & 0xff;
1048 arr[2] = (capac >> 8) & 0xff;
1049 arr[3] = capac & 0xff;
1050 } else {
1051 arr[0] = 0xff;
1052 arr[1] = 0xff;
1053 arr[2] = 0xff;
1054 arr[3] = 0xff;
1055 }
Martin K. Petersen597136a2008-06-05 00:12:59 -04001056 arr[6] = (scsi_debug_sector_size >> 8) & 0xff;
1057 arr[7] = scsi_debug_sector_size & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 return fill_from_dev_buffer(scp, arr, SDEBUG_READCAP_ARR_SZ);
1059}
1060
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001061#define SDEBUG_READCAP16_ARR_SZ 32
1062static int resp_readcap16(struct scsi_cmnd * scp,
1063 struct sdebug_dev_info * devip)
1064{
1065 unsigned char *cmd = (unsigned char *)scp->cmnd;
1066 unsigned char arr[SDEBUG_READCAP16_ARR_SZ];
1067 unsigned long long capac;
1068 int errsts, k, alloc_len;
1069
1070 if ((errsts = check_readiness(scp, 1, devip)))
1071 return errsts;
1072 alloc_len = ((cmd[10] << 24) + (cmd[11] << 16) + (cmd[12] << 8)
1073 + cmd[13]);
1074 /* following just in case virtual_gb changed */
FUJITA Tomonori28898872008-03-30 00:59:55 +09001075 sdebug_capacity = get_sdebug_capacity();
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001076 memset(arr, 0, SDEBUG_READCAP16_ARR_SZ);
1077 capac = sdebug_capacity - 1;
1078 for (k = 0; k < 8; ++k, capac >>= 8)
1079 arr[7 - k] = capac & 0xff;
Martin K. Petersen597136a2008-06-05 00:12:59 -04001080 arr[8] = (scsi_debug_sector_size >> 24) & 0xff;
1081 arr[9] = (scsi_debug_sector_size >> 16) & 0xff;
1082 arr[10] = (scsi_debug_sector_size >> 8) & 0xff;
1083 arr[11] = scsi_debug_sector_size & 0xff;
Martin K. Petersenea61fca2009-05-15 00:40:33 -04001084 arr[13] = scsi_debug_physblk_exp & 0xf;
1085 arr[14] = (scsi_debug_lowest_aligned >> 8) & 0x3f;
Martin K. Petersen44d92692009-10-15 14:45:27 -04001086
Eric Sandeenbe1dd782012-03-08 00:03:59 -06001087 if (scsi_debug_lbp()) {
Martin K. Petersen5b94e232011-03-08 02:08:11 -05001088 arr[14] |= 0x80; /* LBPME */
Eric Sandeenbe1dd782012-03-08 00:03:59 -06001089 if (scsi_debug_lbprz)
1090 arr[14] |= 0x40; /* LBPRZ */
1091 }
Martin K. Petersen44d92692009-10-15 14:45:27 -04001092
Martin K. Petersenea61fca2009-05-15 00:40:33 -04001093 arr[15] = scsi_debug_lowest_aligned & 0xff;
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001094
1095 if (scsi_debug_dif) {
1096 arr[12] = (scsi_debug_dif - 1) << 1; /* P_TYPE */
1097 arr[12] |= 1; /* PROT_EN */
1098 }
1099
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001100 return fill_from_dev_buffer(scp, arr,
1101 min(alloc_len, SDEBUG_READCAP16_ARR_SZ));
1102}
1103
Hannes Reinecke5a09e392006-10-20 09:58:47 +02001104#define SDEBUG_MAX_TGTPGS_ARR_SZ 1412
1105
1106static int resp_report_tgtpgs(struct scsi_cmnd * scp,
1107 struct sdebug_dev_info * devip)
1108{
1109 unsigned char *cmd = (unsigned char *)scp->cmnd;
1110 unsigned char * arr;
1111 int host_no = devip->sdbg_host->shost->host_no;
1112 int n, ret, alen, rlen;
1113 int port_group_a, port_group_b, port_a, port_b;
1114
1115 alen = ((cmd[6] << 24) + (cmd[7] << 16) + (cmd[8] << 8)
1116 + cmd[9]);
1117
Douglas Gilbert6f3cbf52007-01-05 00:05:25 -05001118 arr = kzalloc(SDEBUG_MAX_TGTPGS_ARR_SZ, GFP_ATOMIC);
1119 if (! arr)
1120 return DID_REQUEUE << 16;
Hannes Reinecke5a09e392006-10-20 09:58:47 +02001121 /*
1122 * EVPD page 0x88 states we have two ports, one
1123 * real and a fake port with no device connected.
1124 * So we create two port groups with one port each
1125 * and set the group with port B to unavailable.
1126 */
1127 port_a = 0x1; /* relative port A */
1128 port_b = 0x2; /* relative port B */
1129 port_group_a = (((host_no + 1) & 0x7f) << 8) +
1130 (devip->channel & 0x7f);
1131 port_group_b = (((host_no + 1) & 0x7f) << 8) +
1132 (devip->channel & 0x7f) + 0x80;
1133
1134 /*
1135 * The asymmetric access state is cycled according to the host_id.
1136 */
1137 n = 4;
1138 if (0 == scsi_debug_vpd_use_hostno) {
1139 arr[n++] = host_no % 3; /* Asymm access state */
1140 arr[n++] = 0x0F; /* claim: all states are supported */
1141 } else {
1142 arr[n++] = 0x0; /* Active/Optimized path */
1143 arr[n++] = 0x01; /* claim: only support active/optimized paths */
1144 }
1145 arr[n++] = (port_group_a >> 8) & 0xff;
1146 arr[n++] = port_group_a & 0xff;
1147 arr[n++] = 0; /* Reserved */
1148 arr[n++] = 0; /* Status code */
1149 arr[n++] = 0; /* Vendor unique */
1150 arr[n++] = 0x1; /* One port per group */
1151 arr[n++] = 0; /* Reserved */
1152 arr[n++] = 0; /* Reserved */
1153 arr[n++] = (port_a >> 8) & 0xff;
1154 arr[n++] = port_a & 0xff;
1155 arr[n++] = 3; /* Port unavailable */
1156 arr[n++] = 0x08; /* claim: only unavailalbe paths are supported */
1157 arr[n++] = (port_group_b >> 8) & 0xff;
1158 arr[n++] = port_group_b & 0xff;
1159 arr[n++] = 0; /* Reserved */
1160 arr[n++] = 0; /* Status code */
1161 arr[n++] = 0; /* Vendor unique */
1162 arr[n++] = 0x1; /* One port per group */
1163 arr[n++] = 0; /* Reserved */
1164 arr[n++] = 0; /* Reserved */
1165 arr[n++] = (port_b >> 8) & 0xff;
1166 arr[n++] = port_b & 0xff;
1167
1168 rlen = n - 4;
1169 arr[0] = (rlen >> 24) & 0xff;
1170 arr[1] = (rlen >> 16) & 0xff;
1171 arr[2] = (rlen >> 8) & 0xff;
1172 arr[3] = rlen & 0xff;
1173
1174 /*
1175 * Return the smallest value of either
1176 * - The allocated length
1177 * - The constructed command length
1178 * - The maximum array size
1179 */
1180 rlen = min(alen,n);
1181 ret = fill_from_dev_buffer(scp, arr,
1182 min(rlen, SDEBUG_MAX_TGTPGS_ARR_SZ));
1183 kfree(arr);
1184 return ret;
1185}
1186
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187/* <<Following mode page info copied from ST318451LW>> */
1188
1189static int resp_err_recov_pg(unsigned char * p, int pcontrol, int target)
1190{ /* Read-Write Error Recovery page for mode_sense */
1191 unsigned char err_recov_pg[] = {0x1, 0xa, 0xc0, 11, 240, 0, 0, 0,
1192 5, 0, 0xff, 0xff};
1193
1194 memcpy(p, err_recov_pg, sizeof(err_recov_pg));
1195 if (1 == pcontrol)
1196 memset(p + 2, 0, sizeof(err_recov_pg) - 2);
1197 return sizeof(err_recov_pg);
1198}
1199
1200static int resp_disconnect_pg(unsigned char * p, int pcontrol, int target)
1201{ /* Disconnect-Reconnect page for mode_sense */
1202 unsigned char disconnect_pg[] = {0x2, 0xe, 128, 128, 0, 10, 0, 0,
1203 0, 0, 0, 0, 0, 0, 0, 0};
1204
1205 memcpy(p, disconnect_pg, sizeof(disconnect_pg));
1206 if (1 == pcontrol)
1207 memset(p + 2, 0, sizeof(disconnect_pg) - 2);
1208 return sizeof(disconnect_pg);
1209}
1210
1211static int resp_format_pg(unsigned char * p, int pcontrol, int target)
1212{ /* Format device page for mode_sense */
Martin K. Petersen597136a2008-06-05 00:12:59 -04001213 unsigned char format_pg[] = {0x3, 0x16, 0, 0, 0, 0, 0, 0,
1214 0, 0, 0, 0, 0, 0, 0, 0,
1215 0, 0, 0, 0, 0x40, 0, 0, 0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
Martin K. Petersen597136a2008-06-05 00:12:59 -04001217 memcpy(p, format_pg, sizeof(format_pg));
1218 p[10] = (sdebug_sectors_per >> 8) & 0xff;
1219 p[11] = sdebug_sectors_per & 0xff;
1220 p[12] = (scsi_debug_sector_size >> 8) & 0xff;
1221 p[13] = scsi_debug_sector_size & 0xff;
Martin Pittd9867882012-09-06 12:04:33 +02001222 if (scsi_debug_removable)
Martin K. Petersen597136a2008-06-05 00:12:59 -04001223 p[20] |= 0x20; /* should agree with INQUIRY */
1224 if (1 == pcontrol)
1225 memset(p + 2, 0, sizeof(format_pg) - 2);
1226 return sizeof(format_pg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227}
1228
1229static int resp_caching_pg(unsigned char * p, int pcontrol, int target)
1230{ /* Caching page for mode_sense */
1231 unsigned char caching_pg[] = {0x8, 18, 0x14, 0, 0xff, 0xff, 0, 0,
1232 0xff, 0xff, 0xff, 0xff, 0x80, 0x14, 0, 0, 0, 0, 0, 0};
1233
1234 memcpy(p, caching_pg, sizeof(caching_pg));
1235 if (1 == pcontrol)
1236 memset(p + 2, 0, sizeof(caching_pg) - 2);
1237 return sizeof(caching_pg);
1238}
1239
1240static int resp_ctrl_m_pg(unsigned char * p, int pcontrol, int target)
1241{ /* Control mode page for mode_sense */
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001242 unsigned char ch_ctrl_m_pg[] = {/* 0xa, 10, */ 0x6, 0, 0, 0, 0, 0,
1243 0, 0, 0, 0};
1244 unsigned char d_ctrl_m_pg[] = {0xa, 10, 2, 0, 0, 0, 0, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 0, 0, 0x2, 0x4b};
1246
1247 if (scsi_debug_dsense)
1248 ctrl_m_pg[2] |= 0x4;
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001249 else
1250 ctrl_m_pg[2] &= ~0x4;
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001251
1252 if (scsi_debug_ato)
1253 ctrl_m_pg[5] |= 0x80; /* ATO=1 */
1254
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 memcpy(p, ctrl_m_pg, sizeof(ctrl_m_pg));
1256 if (1 == pcontrol)
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001257 memcpy(p + 2, ch_ctrl_m_pg, sizeof(ch_ctrl_m_pg));
1258 else if (2 == pcontrol)
1259 memcpy(p, d_ctrl_m_pg, sizeof(d_ctrl_m_pg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 return sizeof(ctrl_m_pg);
1261}
1262
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001263
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264static int resp_iec_m_pg(unsigned char * p, int pcontrol, int target)
1265{ /* Informational Exceptions control mode page for mode_sense */
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001266 unsigned char ch_iec_m_pg[] = {/* 0x1c, 0xa, */ 0x4, 0xf, 0, 0, 0, 0,
1267 0, 0, 0x0, 0x0};
1268 unsigned char d_iec_m_pg[] = {0x1c, 0xa, 0x08, 0, 0, 0, 0, 0,
1269 0, 0, 0x0, 0x0};
1270
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 memcpy(p, iec_m_pg, sizeof(iec_m_pg));
1272 if (1 == pcontrol)
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001273 memcpy(p + 2, ch_iec_m_pg, sizeof(ch_iec_m_pg));
1274 else if (2 == pcontrol)
1275 memcpy(p, d_iec_m_pg, sizeof(d_iec_m_pg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 return sizeof(iec_m_pg);
1277}
1278
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001279static int resp_sas_sf_m_pg(unsigned char * p, int pcontrol, int target)
1280{ /* SAS SSP mode page - short format for mode_sense */
1281 unsigned char sas_sf_m_pg[] = {0x19, 0x6,
1282 0x6, 0x0, 0x7, 0xd0, 0x0, 0x0};
1283
1284 memcpy(p, sas_sf_m_pg, sizeof(sas_sf_m_pg));
1285 if (1 == pcontrol)
1286 memset(p + 2, 0, sizeof(sas_sf_m_pg) - 2);
1287 return sizeof(sas_sf_m_pg);
1288}
1289
1290
1291static int resp_sas_pcd_m_spg(unsigned char * p, int pcontrol, int target,
1292 int target_dev_id)
1293{ /* SAS phy control and discover mode page for mode_sense */
1294 unsigned char sas_pcd_m_pg[] = {0x59, 0x1, 0, 0x64, 0, 0x6, 0, 2,
1295 0, 0, 0, 0, 0x10, 0x9, 0x8, 0x0,
1296 0x52, 0x22, 0x22, 0x20, 0x0, 0x0, 0x0, 0x0,
1297 0x51, 0x11, 0x11, 0x10, 0x0, 0x0, 0x0, 0x1,
1298 0x2, 0, 0, 0, 0, 0, 0, 0,
1299 0x88, 0x99, 0, 0, 0, 0, 0, 0,
1300 0, 0, 0, 0, 0, 0, 0, 0,
1301 0, 1, 0, 0, 0x10, 0x9, 0x8, 0x0,
1302 0x52, 0x22, 0x22, 0x20, 0x0, 0x0, 0x0, 0x0,
1303 0x51, 0x11, 0x11, 0x10, 0x0, 0x0, 0x0, 0x1,
1304 0x3, 0, 0, 0, 0, 0, 0, 0,
1305 0x88, 0x99, 0, 0, 0, 0, 0, 0,
1306 0, 0, 0, 0, 0, 0, 0, 0,
1307 };
1308 int port_a, port_b;
1309
1310 port_a = target_dev_id + 1;
1311 port_b = port_a + 1;
1312 memcpy(p, sas_pcd_m_pg, sizeof(sas_pcd_m_pg));
1313 p[20] = (port_a >> 24);
1314 p[21] = (port_a >> 16) & 0xff;
1315 p[22] = (port_a >> 8) & 0xff;
1316 p[23] = port_a & 0xff;
1317 p[48 + 20] = (port_b >> 24);
1318 p[48 + 21] = (port_b >> 16) & 0xff;
1319 p[48 + 22] = (port_b >> 8) & 0xff;
1320 p[48 + 23] = port_b & 0xff;
1321 if (1 == pcontrol)
1322 memset(p + 4, 0, sizeof(sas_pcd_m_pg) - 4);
1323 return sizeof(sas_pcd_m_pg);
1324}
1325
1326static int resp_sas_sha_m_spg(unsigned char * p, int pcontrol)
1327{ /* SAS SSP shared protocol specific port mode subpage */
1328 unsigned char sas_sha_m_pg[] = {0x59, 0x2, 0, 0xc, 0, 0x6, 0x10, 0,
1329 0, 0, 0, 0, 0, 0, 0, 0,
1330 };
1331
1332 memcpy(p, sas_sha_m_pg, sizeof(sas_sha_m_pg));
1333 if (1 == pcontrol)
1334 memset(p + 4, 0, sizeof(sas_sha_m_pg) - 4);
1335 return sizeof(sas_sha_m_pg);
1336}
1337
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338#define SDEBUG_MAX_MSENSE_SZ 256
1339
1340static int resp_mode_sense(struct scsi_cmnd * scp, int target,
1341 struct sdebug_dev_info * devip)
1342{
Douglas Gilbert23183912006-09-16 20:30:47 -04001343 unsigned char dbd, llbaa;
1344 int pcontrol, pcode, subpcode, bd_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 unsigned char dev_spec;
Douglas Gilbert23183912006-09-16 20:30:47 -04001346 int k, alloc_len, msense_6, offset, len, errsts, target_dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 unsigned char * ap;
1348 unsigned char arr[SDEBUG_MAX_MSENSE_SZ];
1349 unsigned char *cmd = (unsigned char *)scp->cmnd;
1350
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001351 if ((errsts = check_readiness(scp, 1, devip)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 return errsts;
Douglas Gilbert23183912006-09-16 20:30:47 -04001353 dbd = !!(cmd[1] & 0x8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 pcontrol = (cmd[2] & 0xc0) >> 6;
1355 pcode = cmd[2] & 0x3f;
1356 subpcode = cmd[3];
1357 msense_6 = (MODE_SENSE == cmd[0]);
Douglas Gilbert23183912006-09-16 20:30:47 -04001358 llbaa = msense_6 ? 0 : !!(cmd[1] & 0x10);
1359 if ((0 == scsi_debug_ptype) && (0 == dbd))
1360 bd_len = llbaa ? 16 : 8;
1361 else
1362 bd_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 alloc_len = msense_6 ? cmd[4] : ((cmd[7] << 8) | cmd[8]);
1364 memset(arr, 0, SDEBUG_MAX_MSENSE_SZ);
1365 if (0x3 == pcontrol) { /* Saving values not supported */
1366 mk_sense_buffer(devip, ILLEGAL_REQUEST, SAVING_PARAMS_UNSUP,
1367 0);
1368 return check_condition_result;
1369 }
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001370 target_dev_id = ((devip->sdbg_host->shost->host_no + 1) * 2000) +
1371 (devip->target * 1000) - 3;
Douglas Gilbert23183912006-09-16 20:30:47 -04001372 /* set DPOFUA bit for disks */
1373 if (0 == scsi_debug_ptype)
1374 dev_spec = (DEV_READONLY(target) ? 0x80 : 0x0) | 0x10;
1375 else
1376 dev_spec = 0x0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 if (msense_6) {
1378 arr[2] = dev_spec;
Douglas Gilbert23183912006-09-16 20:30:47 -04001379 arr[3] = bd_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 offset = 4;
1381 } else {
1382 arr[3] = dev_spec;
Douglas Gilbert23183912006-09-16 20:30:47 -04001383 if (16 == bd_len)
1384 arr[4] = 0x1; /* set LONGLBA bit */
1385 arr[7] = bd_len; /* assume 255 or less */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 offset = 8;
1387 }
1388 ap = arr + offset;
FUJITA Tomonori28898872008-03-30 00:59:55 +09001389 if ((bd_len > 0) && (!sdebug_capacity))
1390 sdebug_capacity = get_sdebug_capacity();
1391
Douglas Gilbert23183912006-09-16 20:30:47 -04001392 if (8 == bd_len) {
1393 if (sdebug_capacity > 0xfffffffe) {
1394 ap[0] = 0xff;
1395 ap[1] = 0xff;
1396 ap[2] = 0xff;
1397 ap[3] = 0xff;
1398 } else {
1399 ap[0] = (sdebug_capacity >> 24) & 0xff;
1400 ap[1] = (sdebug_capacity >> 16) & 0xff;
1401 ap[2] = (sdebug_capacity >> 8) & 0xff;
1402 ap[3] = sdebug_capacity & 0xff;
1403 }
Martin K. Petersen597136a2008-06-05 00:12:59 -04001404 ap[6] = (scsi_debug_sector_size >> 8) & 0xff;
1405 ap[7] = scsi_debug_sector_size & 0xff;
Douglas Gilbert23183912006-09-16 20:30:47 -04001406 offset += bd_len;
1407 ap = arr + offset;
1408 } else if (16 == bd_len) {
1409 unsigned long long capac = sdebug_capacity;
1410
1411 for (k = 0; k < 8; ++k, capac >>= 8)
1412 ap[7 - k] = capac & 0xff;
Martin K. Petersen597136a2008-06-05 00:12:59 -04001413 ap[12] = (scsi_debug_sector_size >> 24) & 0xff;
1414 ap[13] = (scsi_debug_sector_size >> 16) & 0xff;
1415 ap[14] = (scsi_debug_sector_size >> 8) & 0xff;
1416 ap[15] = scsi_debug_sector_size & 0xff;
Douglas Gilbert23183912006-09-16 20:30:47 -04001417 offset += bd_len;
1418 ap = arr + offset;
1419 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001421 if ((subpcode > 0x0) && (subpcode < 0xff) && (0x19 != pcode)) {
1422 /* TODO: Control Extension page */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 mk_sense_buffer(devip, ILLEGAL_REQUEST, INVALID_FIELD_IN_CDB,
1424 0);
1425 return check_condition_result;
1426 }
1427 switch (pcode) {
1428 case 0x1: /* Read-Write error recovery page, direct access */
1429 len = resp_err_recov_pg(ap, pcontrol, target);
1430 offset += len;
1431 break;
1432 case 0x2: /* Disconnect-Reconnect page, all devices */
1433 len = resp_disconnect_pg(ap, pcontrol, target);
1434 offset += len;
1435 break;
1436 case 0x3: /* Format device page, direct access */
1437 len = resp_format_pg(ap, pcontrol, target);
1438 offset += len;
1439 break;
1440 case 0x8: /* Caching page, direct access */
1441 len = resp_caching_pg(ap, pcontrol, target);
1442 offset += len;
1443 break;
1444 case 0xa: /* Control Mode page, all devices */
1445 len = resp_ctrl_m_pg(ap, pcontrol, target);
1446 offset += len;
1447 break;
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001448 case 0x19: /* if spc==1 then sas phy, control+discover */
1449 if ((subpcode > 0x2) && (subpcode < 0xff)) {
1450 mk_sense_buffer(devip, ILLEGAL_REQUEST,
1451 INVALID_FIELD_IN_CDB, 0);
1452 return check_condition_result;
1453 }
1454 len = 0;
1455 if ((0x0 == subpcode) || (0xff == subpcode))
1456 len += resp_sas_sf_m_pg(ap + len, pcontrol, target);
1457 if ((0x1 == subpcode) || (0xff == subpcode))
1458 len += resp_sas_pcd_m_spg(ap + len, pcontrol, target,
1459 target_dev_id);
1460 if ((0x2 == subpcode) || (0xff == subpcode))
1461 len += resp_sas_sha_m_spg(ap + len, pcontrol);
1462 offset += len;
1463 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 case 0x1c: /* Informational Exceptions Mode page, all devices */
1465 len = resp_iec_m_pg(ap, pcontrol, target);
1466 offset += len;
1467 break;
1468 case 0x3f: /* Read all Mode pages */
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001469 if ((0 == subpcode) || (0xff == subpcode)) {
1470 len = resp_err_recov_pg(ap, pcontrol, target);
1471 len += resp_disconnect_pg(ap + len, pcontrol, target);
1472 len += resp_format_pg(ap + len, pcontrol, target);
1473 len += resp_caching_pg(ap + len, pcontrol, target);
1474 len += resp_ctrl_m_pg(ap + len, pcontrol, target);
1475 len += resp_sas_sf_m_pg(ap + len, pcontrol, target);
1476 if (0xff == subpcode) {
1477 len += resp_sas_pcd_m_spg(ap + len, pcontrol,
1478 target, target_dev_id);
1479 len += resp_sas_sha_m_spg(ap + len, pcontrol);
1480 }
1481 len += resp_iec_m_pg(ap + len, pcontrol, target);
1482 } else {
1483 mk_sense_buffer(devip, ILLEGAL_REQUEST,
1484 INVALID_FIELD_IN_CDB, 0);
1485 return check_condition_result;
1486 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 offset += len;
1488 break;
1489 default:
1490 mk_sense_buffer(devip, ILLEGAL_REQUEST, INVALID_FIELD_IN_CDB,
1491 0);
1492 return check_condition_result;
1493 }
1494 if (msense_6)
1495 arr[0] = offset - 1;
1496 else {
1497 arr[0] = ((offset - 2) >> 8) & 0xff;
1498 arr[1] = (offset - 2) & 0xff;
1499 }
1500 return fill_from_dev_buffer(scp, arr, min(alloc_len, offset));
1501}
1502
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001503#define SDEBUG_MAX_MSELECT_SZ 512
1504
1505static int resp_mode_select(struct scsi_cmnd * scp, int mselect6,
1506 struct sdebug_dev_info * devip)
1507{
1508 int pf, sp, ps, md_len, bd_len, off, spf, pg_len;
1509 int param_len, res, errsts, mpage;
1510 unsigned char arr[SDEBUG_MAX_MSELECT_SZ];
1511 unsigned char *cmd = (unsigned char *)scp->cmnd;
1512
1513 if ((errsts = check_readiness(scp, 1, devip)))
1514 return errsts;
1515 memset(arr, 0, sizeof(arr));
1516 pf = cmd[1] & 0x10;
1517 sp = cmd[1] & 0x1;
1518 param_len = mselect6 ? cmd[4] : ((cmd[7] << 8) + cmd[8]);
1519 if ((0 == pf) || sp || (param_len > SDEBUG_MAX_MSELECT_SZ)) {
1520 mk_sense_buffer(devip, ILLEGAL_REQUEST,
1521 INVALID_FIELD_IN_CDB, 0);
1522 return check_condition_result;
1523 }
1524 res = fetch_to_dev_buffer(scp, arr, param_len);
1525 if (-1 == res)
1526 return (DID_ERROR << 16);
1527 else if ((res < param_len) &&
1528 (SCSI_DEBUG_OPT_NOISE & scsi_debug_opts))
1529 printk(KERN_INFO "scsi_debug: mode_select: cdb indicated=%d, "
1530 " IO sent=%d bytes\n", param_len, res);
1531 md_len = mselect6 ? (arr[0] + 1) : ((arr[0] << 8) + arr[1] + 2);
1532 bd_len = mselect6 ? arr[3] : ((arr[6] << 8) + arr[7]);
Douglas Gilbert23183912006-09-16 20:30:47 -04001533 if (md_len > 2) {
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001534 mk_sense_buffer(devip, ILLEGAL_REQUEST,
1535 INVALID_FIELD_IN_PARAM_LIST, 0);
1536 return check_condition_result;
1537 }
1538 off = bd_len + (mselect6 ? 4 : 8);
1539 mpage = arr[off] & 0x3f;
1540 ps = !!(arr[off] & 0x80);
1541 if (ps) {
1542 mk_sense_buffer(devip, ILLEGAL_REQUEST,
1543 INVALID_FIELD_IN_PARAM_LIST, 0);
1544 return check_condition_result;
1545 }
1546 spf = !!(arr[off] & 0x40);
1547 pg_len = spf ? ((arr[off + 2] << 8) + arr[off + 3] + 4) :
1548 (arr[off + 1] + 2);
1549 if ((pg_len + off) > param_len) {
1550 mk_sense_buffer(devip, ILLEGAL_REQUEST,
1551 PARAMETER_LIST_LENGTH_ERR, 0);
1552 return check_condition_result;
1553 }
1554 switch (mpage) {
1555 case 0xa: /* Control Mode page */
1556 if (ctrl_m_pg[1] == arr[off + 1]) {
1557 memcpy(ctrl_m_pg + 2, arr + off + 2,
1558 sizeof(ctrl_m_pg) - 2);
1559 scsi_debug_dsense = !!(ctrl_m_pg[2] & 0x4);
1560 return 0;
1561 }
1562 break;
1563 case 0x1c: /* Informational Exceptions Mode page */
1564 if (iec_m_pg[1] == arr[off + 1]) {
1565 memcpy(iec_m_pg + 2, arr + off + 2,
1566 sizeof(iec_m_pg) - 2);
1567 return 0;
1568 }
1569 break;
1570 default:
1571 break;
1572 }
1573 mk_sense_buffer(devip, ILLEGAL_REQUEST,
1574 INVALID_FIELD_IN_PARAM_LIST, 0);
1575 return check_condition_result;
1576}
1577
1578static int resp_temp_l_pg(unsigned char * arr)
1579{
1580 unsigned char temp_l_pg[] = {0x0, 0x0, 0x3, 0x2, 0x0, 38,
1581 0x0, 0x1, 0x3, 0x2, 0x0, 65,
1582 };
1583
1584 memcpy(arr, temp_l_pg, sizeof(temp_l_pg));
1585 return sizeof(temp_l_pg);
1586}
1587
1588static int resp_ie_l_pg(unsigned char * arr)
1589{
1590 unsigned char ie_l_pg[] = {0x0, 0x0, 0x3, 0x3, 0x0, 0x0, 38,
1591 };
1592
1593 memcpy(arr, ie_l_pg, sizeof(ie_l_pg));
1594 if (iec_m_pg[2] & 0x4) { /* TEST bit set */
1595 arr[4] = THRESHOLD_EXCEEDED;
1596 arr[5] = 0xff;
1597 }
1598 return sizeof(ie_l_pg);
1599}
1600
1601#define SDEBUG_MAX_LSENSE_SZ 512
1602
1603static int resp_log_sense(struct scsi_cmnd * scp,
1604 struct sdebug_dev_info * devip)
1605{
Douglas Gilbert23183912006-09-16 20:30:47 -04001606 int ppc, sp, pcontrol, pcode, subpcode, alloc_len, errsts, len, n;
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001607 unsigned char arr[SDEBUG_MAX_LSENSE_SZ];
1608 unsigned char *cmd = (unsigned char *)scp->cmnd;
1609
1610 if ((errsts = check_readiness(scp, 1, devip)))
1611 return errsts;
1612 memset(arr, 0, sizeof(arr));
1613 ppc = cmd[1] & 0x2;
1614 sp = cmd[1] & 0x1;
1615 if (ppc || sp) {
1616 mk_sense_buffer(devip, ILLEGAL_REQUEST,
1617 INVALID_FIELD_IN_CDB, 0);
1618 return check_condition_result;
1619 }
1620 pcontrol = (cmd[2] & 0xc0) >> 6;
1621 pcode = cmd[2] & 0x3f;
Douglas Gilbert23183912006-09-16 20:30:47 -04001622 subpcode = cmd[3] & 0xff;
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001623 alloc_len = (cmd[7] << 8) + cmd[8];
1624 arr[0] = pcode;
Douglas Gilbert23183912006-09-16 20:30:47 -04001625 if (0 == subpcode) {
1626 switch (pcode) {
1627 case 0x0: /* Supported log pages log page */
1628 n = 4;
1629 arr[n++] = 0x0; /* this page */
1630 arr[n++] = 0xd; /* Temperature */
1631 arr[n++] = 0x2f; /* Informational exceptions */
1632 arr[3] = n - 4;
1633 break;
1634 case 0xd: /* Temperature log page */
1635 arr[3] = resp_temp_l_pg(arr + 4);
1636 break;
1637 case 0x2f: /* Informational exceptions log page */
1638 arr[3] = resp_ie_l_pg(arr + 4);
1639 break;
1640 default:
1641 mk_sense_buffer(devip, ILLEGAL_REQUEST,
1642 INVALID_FIELD_IN_CDB, 0);
1643 return check_condition_result;
1644 }
1645 } else if (0xff == subpcode) {
1646 arr[0] |= 0x40;
1647 arr[1] = subpcode;
1648 switch (pcode) {
1649 case 0x0: /* Supported log pages and subpages log page */
1650 n = 4;
1651 arr[n++] = 0x0;
1652 arr[n++] = 0x0; /* 0,0 page */
1653 arr[n++] = 0x0;
1654 arr[n++] = 0xff; /* this page */
1655 arr[n++] = 0xd;
1656 arr[n++] = 0x0; /* Temperature */
1657 arr[n++] = 0x2f;
1658 arr[n++] = 0x0; /* Informational exceptions */
1659 arr[3] = n - 4;
1660 break;
1661 case 0xd: /* Temperature subpages */
1662 n = 4;
1663 arr[n++] = 0xd;
1664 arr[n++] = 0x0; /* Temperature */
1665 arr[3] = n - 4;
1666 break;
1667 case 0x2f: /* Informational exceptions subpages */
1668 n = 4;
1669 arr[n++] = 0x2f;
1670 arr[n++] = 0x0; /* Informational exceptions */
1671 arr[3] = n - 4;
1672 break;
1673 default:
1674 mk_sense_buffer(devip, ILLEGAL_REQUEST,
1675 INVALID_FIELD_IN_CDB, 0);
1676 return check_condition_result;
1677 }
1678 } else {
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001679 mk_sense_buffer(devip, ILLEGAL_REQUEST,
1680 INVALID_FIELD_IN_CDB, 0);
1681 return check_condition_result;
1682 }
1683 len = min(((arr[2] << 8) + arr[3]) + 4, alloc_len);
1684 return fill_from_dev_buffer(scp, arr,
1685 min(len, SDEBUG_MAX_INQ_ARR_SZ));
1686}
1687
FUJITA Tomonori19789102008-03-30 00:59:56 +09001688static int check_device_access_params(struct sdebug_dev_info *devi,
1689 unsigned long long lba, unsigned int num)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690{
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001691 if (lba + num > sdebug_capacity) {
FUJITA Tomonori19789102008-03-30 00:59:56 +09001692 mk_sense_buffer(devi, ILLEGAL_REQUEST, ADDR_OUT_OF_RANGE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 return check_condition_result;
1694 }
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001695 /* transfer length excessive (tie in to block limits VPD page) */
1696 if (num > sdebug_store_sectors) {
FUJITA Tomonori19789102008-03-30 00:59:56 +09001697 mk_sense_buffer(devi, ILLEGAL_REQUEST, INVALID_FIELD_IN_CDB, 0);
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001698 return check_condition_result;
1699 }
FUJITA Tomonori19789102008-03-30 00:59:56 +09001700 return 0;
1701}
1702
Akinobu Mitaa4517512013-07-08 16:01:57 -07001703/* Returns number of bytes copied or -1 if error. */
FUJITA Tomonori19789102008-03-30 00:59:56 +09001704static int do_device_access(struct scsi_cmnd *scmd,
1705 struct sdebug_dev_info *devi,
1706 unsigned long long lba, unsigned int num, int write)
1707{
1708 int ret;
Darrick J. Wonga361cc02011-01-31 18:47:54 -08001709 unsigned long long block, rest = 0;
Akinobu Mitaa4517512013-07-08 16:01:57 -07001710 struct scsi_data_buffer *sdb;
1711 enum dma_data_direction dir;
1712 size_t (*func)(struct scatterlist *, unsigned int, void *, size_t,
1713 off_t);
FUJITA Tomonori19789102008-03-30 00:59:56 +09001714
Akinobu Mitaa4517512013-07-08 16:01:57 -07001715 if (write) {
1716 sdb = scsi_out(scmd);
1717 dir = DMA_TO_DEVICE;
1718 func = sg_pcopy_to_buffer;
1719 } else {
1720 sdb = scsi_in(scmd);
1721 dir = DMA_FROM_DEVICE;
1722 func = sg_pcopy_from_buffer;
1723 }
1724
1725 if (!sdb->length)
1726 return 0;
1727 if (!(scsi_bidi_cmnd(scmd) || scmd->sc_data_direction == dir))
1728 return -1;
FUJITA Tomonori19789102008-03-30 00:59:56 +09001729
1730 block = do_div(lba, sdebug_store_sectors);
1731 if (block + num > sdebug_store_sectors)
1732 rest = block + num - sdebug_store_sectors;
1733
Akinobu Mitaa4517512013-07-08 16:01:57 -07001734 ret = func(sdb->table.sgl, sdb->table.nents,
1735 fake_storep + (block * scsi_debug_sector_size),
1736 (num - rest) * scsi_debug_sector_size, 0);
1737 if (ret != (num - rest) * scsi_debug_sector_size)
1738 return ret;
1739
1740 if (rest) {
1741 ret += func(sdb->table.sgl, sdb->table.nents,
1742 fake_storep, rest * scsi_debug_sector_size,
1743 (num - rest) * scsi_debug_sector_size);
1744 }
FUJITA Tomonori19789102008-03-30 00:59:56 +09001745
1746 return ret;
1747}
1748
Akinobu Mita51d648a2013-09-18 21:27:28 +09001749static __be16 dif_compute_csum(const void *buf, int len)
Akinobu Mitabeb40ea2013-06-29 17:59:19 +09001750{
Akinobu Mita51d648a2013-09-18 21:27:28 +09001751 __be16 csum;
Akinobu Mitabeb40ea2013-06-29 17:59:19 +09001752
Akinobu Mita51d648a2013-09-18 21:27:28 +09001753 if (scsi_debug_guard)
1754 csum = (__force __be16)ip_compute_csum(buf, len);
1755 else
Akinobu Mitabeb40ea2013-06-29 17:59:19 +09001756 csum = cpu_to_be16(crc_t10dif(buf, len));
Akinobu Mita51d648a2013-09-18 21:27:28 +09001757
Akinobu Mitabeb40ea2013-06-29 17:59:19 +09001758 return csum;
1759}
1760
1761static int dif_verify(struct sd_dif_tuple *sdt, const void *data,
1762 sector_t sector, u32 ei_lba)
1763{
Akinobu Mita51d648a2013-09-18 21:27:28 +09001764 __be16 csum = dif_compute_csum(data, scsi_debug_sector_size);
Akinobu Mitabeb40ea2013-06-29 17:59:19 +09001765
1766 if (sdt->guard_tag != csum) {
1767 pr_err("%s: GUARD check failed on sector %lu rcvd 0x%04x, data 0x%04x\n",
1768 __func__,
1769 (unsigned long)sector,
1770 be16_to_cpu(sdt->guard_tag),
1771 be16_to_cpu(csum));
1772 return 0x01;
1773 }
1774 if (scsi_debug_dif == SD_DIF_TYPE1_PROTECTION &&
1775 be32_to_cpu(sdt->ref_tag) != (sector & 0xffffffff)) {
1776 pr_err("%s: REF check failed on sector %lu\n",
1777 __func__, (unsigned long)sector);
1778 return 0x03;
1779 }
1780 if (scsi_debug_dif == SD_DIF_TYPE2_PROTECTION &&
1781 be32_to_cpu(sdt->ref_tag) != ei_lba) {
1782 pr_err("%s: REF check failed on sector %lu\n",
1783 __func__, (unsigned long)sector);
Akinobu Mitabeb40ea2013-06-29 17:59:19 +09001784 return 0x03;
1785 }
1786 return 0;
1787}
1788
Akinobu Mitabb8c0632013-09-18 21:27:25 +09001789static void dif_copy_prot(struct scsi_cmnd *SCpnt, sector_t sector,
Akinobu Mita65f72f2a2013-09-18 21:27:26 +09001790 unsigned int sectors, bool read)
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001791{
Akinobu Mitabe4e11b2014-02-26 22:57:02 +09001792 size_t resid;
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001793 void *paddr;
Akinobu Mita14faa942013-09-18 21:27:24 +09001794 const void *dif_store_end = dif_storep + sdebug_store_sectors;
Akinobu Mitabe4e11b2014-02-26 22:57:02 +09001795 struct sg_mapping_iter miter;
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001796
Akinobu Mitae18d8be2013-06-29 17:59:18 +09001797 /* Bytes of protection data to copy into sgl */
1798 resid = sectors * sizeof(*dif_storep);
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001799
Akinobu Mitabe4e11b2014-02-26 22:57:02 +09001800 sg_miter_start(&miter, scsi_prot_sglist(SCpnt),
1801 scsi_prot_sg_count(SCpnt), SG_MITER_ATOMIC |
1802 (read ? SG_MITER_TO_SG : SG_MITER_FROM_SG));
1803
1804 while (sg_miter_next(&miter) && resid > 0) {
1805 size_t len = min(miter.length, resid);
Akinobu Mita14faa942013-09-18 21:27:24 +09001806 void *start = dif_store(sector);
Akinobu Mitabe4e11b2014-02-26 22:57:02 +09001807 size_t rest = 0;
Akinobu Mita14faa942013-09-18 21:27:24 +09001808
1809 if (dif_store_end < start + len)
1810 rest = start + len - dif_store_end;
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001811
Akinobu Mitabe4e11b2014-02-26 22:57:02 +09001812 paddr = miter.addr;
Akinobu Mita14faa942013-09-18 21:27:24 +09001813
Akinobu Mita65f72f2a2013-09-18 21:27:26 +09001814 if (read)
1815 memcpy(paddr, start, len - rest);
1816 else
1817 memcpy(start, paddr, len - rest);
1818
1819 if (rest) {
1820 if (read)
1821 memcpy(paddr + len - rest, dif_storep, rest);
1822 else
1823 memcpy(dif_storep, paddr + len - rest, rest);
1824 }
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001825
Akinobu Mitae18d8be2013-06-29 17:59:18 +09001826 sector += len / sizeof(*dif_storep);
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001827 resid -= len;
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001828 }
Akinobu Mitabe4e11b2014-02-26 22:57:02 +09001829 sg_miter_stop(&miter);
Akinobu Mitabb8c0632013-09-18 21:27:25 +09001830}
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001831
Akinobu Mitabb8c0632013-09-18 21:27:25 +09001832static int prot_verify_read(struct scsi_cmnd *SCpnt, sector_t start_sec,
1833 unsigned int sectors, u32 ei_lba)
1834{
1835 unsigned int i;
1836 struct sd_dif_tuple *sdt;
1837 sector_t sector;
1838
Akinobu Mitac45eabec2014-02-26 22:56:58 +09001839 for (i = 0; i < sectors; i++, ei_lba++) {
Akinobu Mitabb8c0632013-09-18 21:27:25 +09001840 int ret;
1841
1842 sector = start_sec + i;
1843 sdt = dif_store(sector);
1844
Akinobu Mita51d648a2013-09-18 21:27:28 +09001845 if (sdt->app_tag == cpu_to_be16(0xffff))
Akinobu Mitabb8c0632013-09-18 21:27:25 +09001846 continue;
1847
1848 ret = dif_verify(sdt, fake_store(sector), sector, ei_lba);
1849 if (ret) {
1850 dif_errors++;
1851 return ret;
1852 }
Akinobu Mitabb8c0632013-09-18 21:27:25 +09001853 }
1854
Akinobu Mita65f72f2a2013-09-18 21:27:26 +09001855 dif_copy_prot(SCpnt, start_sec, sectors, true);
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001856 dix_reads++;
1857
1858 return 0;
1859}
1860
FUJITA Tomonori19789102008-03-30 00:59:56 +09001861static int resp_read(struct scsi_cmnd *SCpnt, unsigned long long lba,
Martin K. Petersen395cef02009-09-18 17:33:03 -04001862 unsigned int num, struct sdebug_dev_info *devip,
1863 u32 ei_lba)
FUJITA Tomonori19789102008-03-30 00:59:56 +09001864{
1865 unsigned long iflags;
1866 int ret;
1867
1868 ret = check_device_access_params(devip, lba, num);
1869 if (ret)
1870 return ret;
1871
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 if ((SCSI_DEBUG_OPT_MEDIUM_ERR & scsi_debug_opts) &&
Douglas Gilbert32f7ef72011-03-11 10:43:35 -05001873 (lba <= (OPT_MEDIUM_ERR_ADDR + OPT_MEDIUM_ERR_NUM - 1)) &&
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001874 ((lba + num) > OPT_MEDIUM_ERR_ADDR)) {
1875 /* claim unrecoverable read error */
Douglas Gilbert32f7ef72011-03-11 10:43:35 -05001876 mk_sense_buffer(devip, MEDIUM_ERROR, UNRECOVERED_READ_ERR, 0);
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001877 /* set info field and valid bit for fixed descriptor */
1878 if (0x70 == (devip->sense_buff[0] & 0x7f)) {
1879 devip->sense_buff[0] |= 0x80; /* Valid bit */
Douglas Gilbert32f7ef72011-03-11 10:43:35 -05001880 ret = (lba < OPT_MEDIUM_ERR_ADDR)
1881 ? OPT_MEDIUM_ERR_ADDR : (int)lba;
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001882 devip->sense_buff[3] = (ret >> 24) & 0xff;
1883 devip->sense_buff[4] = (ret >> 16) & 0xff;
1884 devip->sense_buff[5] = (ret >> 8) & 0xff;
1885 devip->sense_buff[6] = ret & 0xff;
1886 }
Douglas Gilberta87e3a62010-12-17 19:16:06 -05001887 scsi_set_resid(SCpnt, scsi_bufflen(SCpnt));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 return check_condition_result;
1889 }
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001890
Akinobu Mita6c78cc02014-02-26 22:57:03 +09001891 read_lock_irqsave(&atomic_rw, iflags);
1892
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001893 /* DIX + T10 DIF */
1894 if (scsi_debug_dix && scsi_prot_sg_count(SCpnt)) {
Martin K. Petersen395cef02009-09-18 17:33:03 -04001895 int prot_ret = prot_verify_read(SCpnt, lba, num, ei_lba);
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001896
1897 if (prot_ret) {
Akinobu Mita6c78cc02014-02-26 22:57:03 +09001898 read_unlock_irqrestore(&atomic_rw, iflags);
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001899 mk_sense_buffer(devip, ABORTED_COMMAND, 0x10, prot_ret);
1900 return illegal_condition_result;
1901 }
1902 }
1903
FUJITA Tomonori19789102008-03-30 00:59:56 +09001904 ret = do_device_access(SCpnt, devip, lba, num, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 read_unlock_irqrestore(&atomic_rw, iflags);
Akinobu Mitaa4517512013-07-08 16:01:57 -07001906 if (ret == -1)
1907 return DID_ERROR << 16;
1908
1909 scsi_in(SCpnt)->resid = scsi_bufflen(SCpnt) - ret;
1910
1911 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912}
1913
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001914void dump_sector(unsigned char *buf, int len)
1915{
1916 int i, j;
1917
1918 printk(KERN_ERR ">>> Sector Dump <<<\n");
1919
1920 for (i = 0 ; i < len ; i += 16) {
1921 printk(KERN_ERR "%04d: ", i);
1922
1923 for (j = 0 ; j < 16 ; j++) {
1924 unsigned char c = buf[i+j];
1925 if (c >= 0x20 && c < 0x7e)
1926 printk(" %c ", buf[i+j]);
1927 else
1928 printk("%02x ", buf[i+j]);
1929 }
1930
1931 printk("\n");
1932 }
1933}
1934
1935static int prot_verify_write(struct scsi_cmnd *SCpnt, sector_t start_sec,
Martin K. Petersen395cef02009-09-18 17:33:03 -04001936 unsigned int sectors, u32 ei_lba)
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001937{
Akinobu Mitabe4e11b2014-02-26 22:57:02 +09001938 int ret;
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001939 struct sd_dif_tuple *sdt;
Akinobu Mitabe4e11b2014-02-26 22:57:02 +09001940 void *daddr;
Akinobu Mita65f72f2a2013-09-18 21:27:26 +09001941 sector_t sector = start_sec;
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001942 int ppage_offset;
Akinobu Mitabe4e11b2014-02-26 22:57:02 +09001943 int dpage_offset;
1944 struct sg_mapping_iter diter;
1945 struct sg_mapping_iter piter;
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001946
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001947 BUG_ON(scsi_sg_count(SCpnt) == 0);
1948 BUG_ON(scsi_prot_sg_count(SCpnt) == 0);
1949
Akinobu Mitabe4e11b2014-02-26 22:57:02 +09001950 sg_miter_start(&piter, scsi_prot_sglist(SCpnt),
1951 scsi_prot_sg_count(SCpnt),
1952 SG_MITER_ATOMIC | SG_MITER_FROM_SG);
1953 sg_miter_start(&diter, scsi_sglist(SCpnt), scsi_sg_count(SCpnt),
1954 SG_MITER_ATOMIC | SG_MITER_FROM_SG);
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001955
Akinobu Mitabe4e11b2014-02-26 22:57:02 +09001956 /* For each protection page */
1957 while (sg_miter_next(&piter)) {
1958 dpage_offset = 0;
1959 if (WARN_ON(!sg_miter_next(&diter))) {
1960 ret = 0x01;
1961 goto out;
1962 }
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001963
Akinobu Mitabe4e11b2014-02-26 22:57:02 +09001964 for (ppage_offset = 0; ppage_offset < piter.length;
1965 ppage_offset += sizeof(struct sd_dif_tuple)) {
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001966 /* If we're at the end of the current
Akinobu Mitabe4e11b2014-02-26 22:57:02 +09001967 * data page advance to the next one
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001968 */
Akinobu Mitabe4e11b2014-02-26 22:57:02 +09001969 if (dpage_offset >= diter.length) {
1970 if (WARN_ON(!sg_miter_next(&diter))) {
1971 ret = 0x01;
1972 goto out;
1973 }
1974 dpage_offset = 0;
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001975 }
1976
Akinobu Mitabe4e11b2014-02-26 22:57:02 +09001977 sdt = piter.addr + ppage_offset;
1978 daddr = diter.addr + dpage_offset;
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001979
Akinobu Mitabe4e11b2014-02-26 22:57:02 +09001980 ret = dif_verify(sdt, daddr, sector, ei_lba);
Akinobu Mitabeb40ea2013-06-29 17:59:19 +09001981 if (ret) {
Akinobu Mitabe4e11b2014-02-26 22:57:02 +09001982 dump_sector(daddr, scsi_debug_sector_size);
Martin K. Petersen395cef02009-09-18 17:33:03 -04001983 goto out;
1984 }
1985
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001986 sector++;
Martin K. Petersen395cef02009-09-18 17:33:03 -04001987 ei_lba++;
Akinobu Mitabe4e11b2014-02-26 22:57:02 +09001988 dpage_offset += scsi_debug_sector_size;
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001989 }
Akinobu Mitabe4e11b2014-02-26 22:57:02 +09001990 diter.consumed = dpage_offset;
1991 sg_miter_stop(&diter);
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001992 }
Akinobu Mitabe4e11b2014-02-26 22:57:02 +09001993 sg_miter_stop(&piter);
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001994
Akinobu Mita65f72f2a2013-09-18 21:27:26 +09001995 dif_copy_prot(SCpnt, start_sec, sectors, false);
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001996 dix_writes++;
1997
1998 return 0;
1999
2000out:
2001 dif_errors++;
Akinobu Mitabe4e11b2014-02-26 22:57:02 +09002002 sg_miter_stop(&diter);
2003 sg_miter_stop(&piter);
Martin K. Petersenc6a44282009-01-04 03:08:19 -05002004 return ret;
2005}
2006
Akinobu Mitab90ebc32013-04-16 22:11:58 +09002007static unsigned long lba_to_map_index(sector_t lba)
2008{
2009 if (scsi_debug_unmap_alignment) {
2010 lba += scsi_debug_unmap_granularity -
2011 scsi_debug_unmap_alignment;
2012 }
2013 do_div(lba, scsi_debug_unmap_granularity);
2014
2015 return lba;
2016}
2017
2018static sector_t map_index_to_lba(unsigned long index)
2019{
Akinobu Mitaa027b5b2013-08-26 22:08:41 +09002020 sector_t lba = index * scsi_debug_unmap_granularity;
2021
2022 if (scsi_debug_unmap_alignment) {
2023 lba -= scsi_debug_unmap_granularity -
2024 scsi_debug_unmap_alignment;
2025 }
2026
2027 return lba;
Akinobu Mitab90ebc32013-04-16 22:11:58 +09002028}
2029
Martin K. Petersen44d92692009-10-15 14:45:27 -04002030static unsigned int map_state(sector_t lba, unsigned int *num)
2031{
Akinobu Mitab90ebc32013-04-16 22:11:58 +09002032 sector_t end;
2033 unsigned int mapped;
2034 unsigned long index;
2035 unsigned long next;
Martin K. Petersen44d92692009-10-15 14:45:27 -04002036
Akinobu Mitab90ebc32013-04-16 22:11:58 +09002037 index = lba_to_map_index(lba);
2038 mapped = test_bit(index, map_storep);
Martin K. Petersen44d92692009-10-15 14:45:27 -04002039
2040 if (mapped)
Akinobu Mitab90ebc32013-04-16 22:11:58 +09002041 next = find_next_zero_bit(map_storep, map_size, index);
Martin K. Petersen44d92692009-10-15 14:45:27 -04002042 else
Akinobu Mitab90ebc32013-04-16 22:11:58 +09002043 next = find_next_bit(map_storep, map_size, index);
Martin K. Petersen44d92692009-10-15 14:45:27 -04002044
Akinobu Mitab90ebc32013-04-16 22:11:58 +09002045 end = min_t(sector_t, sdebug_store_sectors, map_index_to_lba(next));
Martin K. Petersen44d92692009-10-15 14:45:27 -04002046 *num = end - lba;
2047
2048 return mapped;
2049}
2050
2051static void map_region(sector_t lba, unsigned int len)
2052{
Martin K. Petersen44d92692009-10-15 14:45:27 -04002053 sector_t end = lba + len;
2054
Martin K. Petersen44d92692009-10-15 14:45:27 -04002055 while (lba < end) {
Akinobu Mitab90ebc32013-04-16 22:11:58 +09002056 unsigned long index = lba_to_map_index(lba);
Martin K. Petersen44d92692009-10-15 14:45:27 -04002057
Akinobu Mitab90ebc32013-04-16 22:11:58 +09002058 if (index < map_size)
2059 set_bit(index, map_storep);
Martin K. Petersen44d92692009-10-15 14:45:27 -04002060
Akinobu Mitab90ebc32013-04-16 22:11:58 +09002061 lba = map_index_to_lba(index + 1);
Martin K. Petersen44d92692009-10-15 14:45:27 -04002062 }
2063}
2064
2065static void unmap_region(sector_t lba, unsigned int len)
2066{
Martin K. Petersen44d92692009-10-15 14:45:27 -04002067 sector_t end = lba + len;
2068
Martin K. Petersen44d92692009-10-15 14:45:27 -04002069 while (lba < end) {
Akinobu Mitab90ebc32013-04-16 22:11:58 +09002070 unsigned long index = lba_to_map_index(lba);
Martin K. Petersen44d92692009-10-15 14:45:27 -04002071
Akinobu Mitab90ebc32013-04-16 22:11:58 +09002072 if (lba == map_index_to_lba(index) &&
2073 lba + scsi_debug_unmap_granularity <= end &&
2074 index < map_size) {
2075 clear_bit(index, map_storep);
2076 if (scsi_debug_lbprz) {
Eric Sandeenbe1dd782012-03-08 00:03:59 -06002077 memset(fake_storep +
Akinobu Mitacc34a8e2013-04-16 22:11:57 +09002078 lba * scsi_debug_sector_size, 0,
2079 scsi_debug_sector_size *
2080 scsi_debug_unmap_granularity);
Akinobu Mitab90ebc32013-04-16 22:11:58 +09002081 }
Akinobu Mitae9926b42013-06-29 17:59:17 +09002082 if (dif_storep) {
2083 memset(dif_storep + lba, 0xff,
2084 sizeof(*dif_storep) *
2085 scsi_debug_unmap_granularity);
2086 }
Eric Sandeenbe1dd782012-03-08 00:03:59 -06002087 }
Akinobu Mitab90ebc32013-04-16 22:11:58 +09002088 lba = map_index_to_lba(index + 1);
Martin K. Petersen44d92692009-10-15 14:45:27 -04002089 }
2090}
2091
FUJITA Tomonori19789102008-03-30 00:59:56 +09002092static int resp_write(struct scsi_cmnd *SCpnt, unsigned long long lba,
Martin K. Petersen395cef02009-09-18 17:33:03 -04002093 unsigned int num, struct sdebug_dev_info *devip,
2094 u32 ei_lba)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095{
2096 unsigned long iflags;
FUJITA Tomonori19789102008-03-30 00:59:56 +09002097 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098
FUJITA Tomonori19789102008-03-30 00:59:56 +09002099 ret = check_device_access_params(devip, lba, num);
2100 if (ret)
2101 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102
Akinobu Mita6c78cc02014-02-26 22:57:03 +09002103 write_lock_irqsave(&atomic_rw, iflags);
2104
Martin K. Petersenc6a44282009-01-04 03:08:19 -05002105 /* DIX + T10 DIF */
2106 if (scsi_debug_dix && scsi_prot_sg_count(SCpnt)) {
Martin K. Petersen395cef02009-09-18 17:33:03 -04002107 int prot_ret = prot_verify_write(SCpnt, lba, num, ei_lba);
Martin K. Petersenc6a44282009-01-04 03:08:19 -05002108
2109 if (prot_ret) {
Akinobu Mita6c78cc02014-02-26 22:57:03 +09002110 write_unlock_irqrestore(&atomic_rw, iflags);
Martin K. Petersenc6a44282009-01-04 03:08:19 -05002111 mk_sense_buffer(devip, ILLEGAL_REQUEST, 0x10, prot_ret);
2112 return illegal_condition_result;
2113 }
2114 }
2115
FUJITA Tomonori19789102008-03-30 00:59:56 +09002116 ret = do_device_access(SCpnt, devip, lba, num, 1);
Akinobu Mita9ed8d3d2013-04-16 22:11:55 +09002117 if (scsi_debug_lbp())
Martin K. Petersen44d92692009-10-15 14:45:27 -04002118 map_region(lba, num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 write_unlock_irqrestore(&atomic_rw, iflags);
FUJITA Tomonori19789102008-03-30 00:59:56 +09002120 if (-1 == ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 return (DID_ERROR << 16);
Martin K. Petersen597136a2008-06-05 00:12:59 -04002122 else if ((ret < (num * scsi_debug_sector_size)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 (SCSI_DEBUG_OPT_NOISE & scsi_debug_opts))
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002124 printk(KERN_INFO "scsi_debug: write: cdb indicated=%u, "
Martin K. Petersen597136a2008-06-05 00:12:59 -04002125 " IO sent=%d bytes\n", num * scsi_debug_sector_size, ret);
Martin K. Petersen44d92692009-10-15 14:45:27 -04002126
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 return 0;
2128}
2129
Martin K. Petersen44d92692009-10-15 14:45:27 -04002130static int resp_write_same(struct scsi_cmnd *scmd, unsigned long long lba,
2131 unsigned int num, struct sdebug_dev_info *devip,
2132 u32 ei_lba, unsigned int unmap)
2133{
2134 unsigned long iflags;
2135 unsigned long long i;
2136 int ret;
2137
2138 ret = check_device_access_params(devip, lba, num);
2139 if (ret)
2140 return ret;
2141
Martin K. Petersen5b94e232011-03-08 02:08:11 -05002142 if (num > scsi_debug_write_same_length) {
2143 mk_sense_buffer(devip, ILLEGAL_REQUEST, INVALID_FIELD_IN_CDB,
2144 0);
2145 return check_condition_result;
2146 }
2147
Martin K. Petersen44d92692009-10-15 14:45:27 -04002148 write_lock_irqsave(&atomic_rw, iflags);
2149
Akinobu Mita9ed8d3d2013-04-16 22:11:55 +09002150 if (unmap && scsi_debug_lbp()) {
Martin K. Petersen44d92692009-10-15 14:45:27 -04002151 unmap_region(lba, num);
2152 goto out;
2153 }
2154
2155 /* Else fetch one logical block */
2156 ret = fetch_to_dev_buffer(scmd,
2157 fake_storep + (lba * scsi_debug_sector_size),
2158 scsi_debug_sector_size);
2159
2160 if (-1 == ret) {
2161 write_unlock_irqrestore(&atomic_rw, iflags);
2162 return (DID_ERROR << 16);
2163 } else if ((ret < (num * scsi_debug_sector_size)) &&
2164 (SCSI_DEBUG_OPT_NOISE & scsi_debug_opts))
2165 printk(KERN_INFO "scsi_debug: write same: cdb indicated=%u, "
2166 " IO sent=%d bytes\n", num * scsi_debug_sector_size, ret);
2167
2168 /* Copy first sector to remaining blocks */
2169 for (i = 1 ; i < num ; i++)
2170 memcpy(fake_storep + ((lba + i) * scsi_debug_sector_size),
2171 fake_storep + (lba * scsi_debug_sector_size),
2172 scsi_debug_sector_size);
2173
Akinobu Mita9ed8d3d2013-04-16 22:11:55 +09002174 if (scsi_debug_lbp())
Martin K. Petersen44d92692009-10-15 14:45:27 -04002175 map_region(lba, num);
2176out:
2177 write_unlock_irqrestore(&atomic_rw, iflags);
2178
2179 return 0;
2180}
2181
2182struct unmap_block_desc {
2183 __be64 lba;
2184 __be32 blocks;
2185 __be32 __reserved;
2186};
2187
2188static int resp_unmap(struct scsi_cmnd * scmd, struct sdebug_dev_info * devip)
2189{
2190 unsigned char *buf;
2191 struct unmap_block_desc *desc;
2192 unsigned int i, payload_len, descriptors;
2193 int ret;
Akinobu Mita6c78cc02014-02-26 22:57:03 +09002194 unsigned long iflags;
Martin K. Petersen44d92692009-10-15 14:45:27 -04002195
2196 ret = check_readiness(scmd, 1, devip);
2197 if (ret)
2198 return ret;
2199
2200 payload_len = get_unaligned_be16(&scmd->cmnd[7]);
2201 BUG_ON(scsi_bufflen(scmd) != payload_len);
2202
2203 descriptors = (payload_len - 8) / 16;
2204
2205 buf = kmalloc(scsi_bufflen(scmd), GFP_ATOMIC);
2206 if (!buf)
2207 return check_condition_result;
2208
2209 scsi_sg_copy_to_buffer(scmd, buf, scsi_bufflen(scmd));
2210
2211 BUG_ON(get_unaligned_be16(&buf[0]) != payload_len - 2);
2212 BUG_ON(get_unaligned_be16(&buf[2]) != descriptors * 16);
2213
2214 desc = (void *)&buf[8];
2215
Akinobu Mita6c78cc02014-02-26 22:57:03 +09002216 write_lock_irqsave(&atomic_rw, iflags);
2217
Martin K. Petersen44d92692009-10-15 14:45:27 -04002218 for (i = 0 ; i < descriptors ; i++) {
2219 unsigned long long lba = get_unaligned_be64(&desc[i].lba);
2220 unsigned int num = get_unaligned_be32(&desc[i].blocks);
2221
2222 ret = check_device_access_params(devip, lba, num);
2223 if (ret)
2224 goto out;
2225
2226 unmap_region(lba, num);
2227 }
2228
2229 ret = 0;
2230
2231out:
Akinobu Mita6c78cc02014-02-26 22:57:03 +09002232 write_unlock_irqrestore(&atomic_rw, iflags);
Martin K. Petersen44d92692009-10-15 14:45:27 -04002233 kfree(buf);
2234
2235 return ret;
2236}
2237
2238#define SDEBUG_GET_LBA_STATUS_LEN 32
2239
2240static int resp_get_lba_status(struct scsi_cmnd * scmd,
2241 struct sdebug_dev_info * devip)
2242{
2243 unsigned long long lba;
2244 unsigned int alloc_len, mapped, num;
2245 unsigned char arr[SDEBUG_GET_LBA_STATUS_LEN];
2246 int ret;
2247
2248 ret = check_readiness(scmd, 1, devip);
2249 if (ret)
2250 return ret;
2251
2252 lba = get_unaligned_be64(&scmd->cmnd[2]);
2253 alloc_len = get_unaligned_be32(&scmd->cmnd[10]);
2254
2255 if (alloc_len < 24)
2256 return 0;
2257
2258 ret = check_device_access_params(devip, lba, 1);
2259 if (ret)
2260 return ret;
2261
2262 mapped = map_state(lba, &num);
2263
2264 memset(arr, 0, SDEBUG_GET_LBA_STATUS_LEN);
Douglas Gilbertde13e962012-01-19 19:30:00 -05002265 put_unaligned_be32(20, &arr[0]); /* Parameter Data Length */
Martin K. Petersen44d92692009-10-15 14:45:27 -04002266 put_unaligned_be64(lba, &arr[8]); /* LBA */
2267 put_unaligned_be32(num, &arr[16]); /* Number of blocks */
2268 arr[20] = !mapped; /* mapped = 0, unmapped = 1 */
2269
2270 return fill_from_dev_buffer(scmd, arr, SDEBUG_GET_LBA_STATUS_LEN);
2271}
2272
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002273#define SDEBUG_RLUN_ARR_SZ 256
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
2275static int resp_report_luns(struct scsi_cmnd * scp,
2276 struct sdebug_dev_info * devip)
2277{
2278 unsigned int alloc_len;
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002279 int lun_cnt, i, upper, num, n, wlun, lun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 unsigned char *cmd = (unsigned char *)scp->cmnd;
2281 int select_report = (int)cmd[2];
2282 struct scsi_lun *one_lun;
2283 unsigned char arr[SDEBUG_RLUN_ARR_SZ];
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002284 unsigned char * max_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285
2286 alloc_len = cmd[9] + (cmd[8] << 8) + (cmd[7] << 16) + (cmd[6] << 24);
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002287 if ((alloc_len < 4) || (select_report > 2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 mk_sense_buffer(devip, ILLEGAL_REQUEST, INVALID_FIELD_IN_CDB,
2289 0);
2290 return check_condition_result;
2291 }
2292 /* can produce response with up to 16k luns (lun 0 to lun 16383) */
2293 memset(arr, 0, SDEBUG_RLUN_ARR_SZ);
2294 lun_cnt = scsi_debug_max_luns;
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002295 if (1 == select_report)
2296 lun_cnt = 0;
2297 else if (scsi_debug_no_lun_0 && (lun_cnt > 0))
2298 --lun_cnt;
2299 wlun = (select_report > 0) ? 1 : 0;
2300 num = lun_cnt + wlun;
2301 arr[2] = ((sizeof(struct scsi_lun) * num) >> 8) & 0xff;
2302 arr[3] = (sizeof(struct scsi_lun) * num) & 0xff;
2303 n = min((int)((SDEBUG_RLUN_ARR_SZ - 8) /
2304 sizeof(struct scsi_lun)), num);
2305 if (n < num) {
2306 wlun = 0;
2307 lun_cnt = n;
2308 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 one_lun = (struct scsi_lun *) &arr[8];
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002310 max_addr = arr + SDEBUG_RLUN_ARR_SZ;
2311 for (i = 0, lun = (scsi_debug_no_lun_0 ? 1 : 0);
2312 ((i < lun_cnt) && ((unsigned char *)(one_lun + i) < max_addr));
2313 i++, lun++) {
2314 upper = (lun >> 8) & 0x3f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 if (upper)
2316 one_lun[i].scsi_lun[0] =
2317 (upper | (SAM2_LUN_ADDRESS_METHOD << 6));
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002318 one_lun[i].scsi_lun[1] = lun & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 }
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002320 if (wlun) {
2321 one_lun[i].scsi_lun[0] = (SAM2_WLUN_REPORT_LUNS >> 8) & 0xff;
2322 one_lun[i].scsi_lun[1] = SAM2_WLUN_REPORT_LUNS & 0xff;
2323 i++;
2324 }
2325 alloc_len = (unsigned char *)(one_lun + i) - arr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 return fill_from_dev_buffer(scp, arr,
2327 min((int)alloc_len, SDEBUG_RLUN_ARR_SZ));
2328}
2329
FUJITA Tomonoric639d142008-01-23 01:32:01 +09002330static int resp_xdwriteread(struct scsi_cmnd *scp, unsigned long long lba,
2331 unsigned int num, struct sdebug_dev_info *devip)
2332{
Akinobu Mitabe4e11b2014-02-26 22:57:02 +09002333 int j;
FUJITA Tomonoric639d142008-01-23 01:32:01 +09002334 unsigned char *kaddr, *buf;
2335 unsigned int offset;
FUJITA Tomonoric639d142008-01-23 01:32:01 +09002336 struct scsi_data_buffer *sdb = scsi_in(scp);
Akinobu Mitabe4e11b2014-02-26 22:57:02 +09002337 struct sg_mapping_iter miter;
FUJITA Tomonoric639d142008-01-23 01:32:01 +09002338
2339 /* better not to use temporary buffer. */
2340 buf = kmalloc(scsi_bufflen(scp), GFP_ATOMIC);
Akinobu Mitac5af0db2014-02-26 22:57:01 +09002341 if (!buf) {
2342 mk_sense_buffer(devip, NOT_READY,
2343 LOGICAL_UNIT_COMMUNICATION_FAILURE, 0);
2344 return check_condition_result;
2345 }
FUJITA Tomonoric639d142008-01-23 01:32:01 +09002346
FUJITA Tomonori21a61822008-03-09 13:44:30 +09002347 scsi_sg_copy_to_buffer(scp, buf, scsi_bufflen(scp));
FUJITA Tomonoric639d142008-01-23 01:32:01 +09002348
2349 offset = 0;
Akinobu Mitabe4e11b2014-02-26 22:57:02 +09002350 sg_miter_start(&miter, sdb->table.sgl, sdb->table.nents,
2351 SG_MITER_ATOMIC | SG_MITER_TO_SG);
FUJITA Tomonoric639d142008-01-23 01:32:01 +09002352
Akinobu Mitabe4e11b2014-02-26 22:57:02 +09002353 while (sg_miter_next(&miter)) {
2354 kaddr = miter.addr;
2355 for (j = 0; j < miter.length; j++)
2356 *(kaddr + j) ^= *(buf + offset + j);
FUJITA Tomonoric639d142008-01-23 01:32:01 +09002357
Akinobu Mitabe4e11b2014-02-26 22:57:02 +09002358 offset += miter.length;
FUJITA Tomonoric639d142008-01-23 01:32:01 +09002359 }
Akinobu Mitabe4e11b2014-02-26 22:57:02 +09002360 sg_miter_stop(&miter);
FUJITA Tomonoric639d142008-01-23 01:32:01 +09002361 kfree(buf);
2362
Akinobu Mitabe4e11b2014-02-26 22:57:02 +09002363 return 0;
FUJITA Tomonoric639d142008-01-23 01:32:01 +09002364}
2365
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366/* When timer goes off this function is called. */
2367static void timer_intr_handler(unsigned long indx)
2368{
2369 struct sdebug_queued_cmd * sqcp;
2370 unsigned long iflags;
2371
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -04002372 if (indx >= scsi_debug_max_queue) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 printk(KERN_ERR "scsi_debug:timer_intr_handler: indx too "
2374 "large\n");
2375 return;
2376 }
2377 spin_lock_irqsave(&queued_arr_lock, iflags);
2378 sqcp = &queued_arr[(int)indx];
2379 if (! sqcp->in_use) {
2380 printk(KERN_ERR "scsi_debug:timer_intr_handler: Unexpected "
2381 "interrupt\n");
2382 spin_unlock_irqrestore(&queued_arr_lock, iflags);
2383 return;
2384 }
2385 sqcp->in_use = 0;
2386 if (sqcp->done_funct) {
2387 sqcp->a_cmnd->result = sqcp->scsi_result;
2388 sqcp->done_funct(sqcp->a_cmnd); /* callback to mid level */
2389 }
2390 sqcp->done_funct = NULL;
2391 spin_unlock_irqrestore(&queued_arr_lock, iflags);
2392}
2393
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394
FUJITA Tomonori8dea0d02008-03-30 00:59:58 +09002395static struct sdebug_dev_info *
2396sdebug_device_create(struct sdebug_host_info *sdbg_host, gfp_t flags)
FUJITA Tomonori5cb2fc02008-03-20 11:09:16 +09002397{
2398 struct sdebug_dev_info *devip;
2399
2400 devip = kzalloc(sizeof(*devip), flags);
2401 if (devip) {
2402 devip->sdbg_host = sdbg_host;
2403 list_add_tail(&devip->dev_list, &sdbg_host->dev_info_list);
2404 }
2405 return devip;
2406}
2407
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408static struct sdebug_dev_info * devInfoReg(struct scsi_device * sdev)
2409{
2410 struct sdebug_host_info * sdbg_host;
2411 struct sdebug_dev_info * open_devip = NULL;
2412 struct sdebug_dev_info * devip =
2413 (struct sdebug_dev_info *)sdev->hostdata;
2414
2415 if (devip)
2416 return devip;
FUJITA Tomonorid1e4c9c2008-03-02 18:30:18 +09002417 sdbg_host = *(struct sdebug_host_info **)shost_priv(sdev->host);
2418 if (!sdbg_host) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 printk(KERN_ERR "Host info NULL\n");
2420 return NULL;
2421 }
2422 list_for_each_entry(devip, &sdbg_host->dev_info_list, dev_list) {
2423 if ((devip->used) && (devip->channel == sdev->channel) &&
2424 (devip->target == sdev->id) &&
2425 (devip->lun == sdev->lun))
2426 return devip;
2427 else {
2428 if ((!devip->used) && (!open_devip))
2429 open_devip = devip;
2430 }
2431 }
FUJITA Tomonori5cb2fc02008-03-20 11:09:16 +09002432 if (!open_devip) { /* try and make a new one */
2433 open_devip = sdebug_device_create(sdbg_host, GFP_ATOMIC);
2434 if (!open_devip) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 printk(KERN_ERR "%s: out of memory at line %d\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07002436 __func__, __LINE__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 return NULL;
2438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 }
FUJITA Tomonoria75869d2008-03-20 11:09:17 +09002440
2441 open_devip->channel = sdev->channel;
2442 open_devip->target = sdev->id;
2443 open_devip->lun = sdev->lun;
2444 open_devip->sdbg_host = sdbg_host;
2445 open_devip->reset = 1;
2446 open_devip->used = 1;
2447 memset(open_devip->sense_buff, 0, SDEBUG_SENSE_LEN);
2448 if (scsi_debug_dsense)
2449 open_devip->sense_buff[0] = 0x72;
2450 else {
2451 open_devip->sense_buff[0] = 0x70;
2452 open_devip->sense_buff[7] = 0xa;
2453 }
2454 if (sdev->lun == SAM2_WLUN_REPORT_LUNS)
2455 open_devip->wlun = SAM2_WLUN_REPORT_LUNS & 0xff;
2456
2457 return open_devip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458}
2459
FUJITA Tomonori8dea0d02008-03-30 00:59:58 +09002460static int scsi_debug_slave_alloc(struct scsi_device *sdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461{
FUJITA Tomonori8dea0d02008-03-30 00:59:58 +09002462 if (SCSI_DEBUG_OPT_NOISE & scsi_debug_opts)
2463 printk(KERN_INFO "scsi_debug: slave_alloc <%u %u %u %u>\n",
2464 sdp->host->host_no, sdp->channel, sdp->id, sdp->lun);
Nick Piggin75ad23b2008-04-29 14:48:33 +02002465 queue_flag_set_unlocked(QUEUE_FLAG_BIDI, sdp->request_queue);
FUJITA Tomonori8dea0d02008-03-30 00:59:58 +09002466 return 0;
2467}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468
FUJITA Tomonori8dea0d02008-03-30 00:59:58 +09002469static int scsi_debug_slave_configure(struct scsi_device *sdp)
2470{
2471 struct sdebug_dev_info *devip;
FUJITA Tomonoria34c4e92008-03-25 09:26:50 +09002472
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 if (SCSI_DEBUG_OPT_NOISE & scsi_debug_opts)
FUJITA Tomonori8dea0d02008-03-30 00:59:58 +09002474 printk(KERN_INFO "scsi_debug: slave_configure <%u %u %u %u>\n",
2475 sdp->host->host_no, sdp->channel, sdp->id, sdp->lun);
2476 if (sdp->host->max_cmd_len != SCSI_DEBUG_MAX_CMD_LEN)
2477 sdp->host->max_cmd_len = SCSI_DEBUG_MAX_CMD_LEN;
2478 devip = devInfoReg(sdp);
2479 if (NULL == devip)
2480 return 1; /* no resources, will be marked offline */
2481 sdp->hostdata = devip;
2482 if (sdp->host->cmd_per_lun)
2483 scsi_adjust_queue_depth(sdp, SDEBUG_TAGGED_QUEUING,
2484 sdp->host->cmd_per_lun);
2485 blk_queue_max_segment_size(sdp->request_queue, 256 * 1024);
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -04002486 if (scsi_debug_no_uld)
2487 sdp->no_uld_attach = 1;
FUJITA Tomonori8dea0d02008-03-30 00:59:58 +09002488 return 0;
2489}
2490
2491static void scsi_debug_slave_destroy(struct scsi_device *sdp)
2492{
2493 struct sdebug_dev_info *devip =
2494 (struct sdebug_dev_info *)sdp->hostdata;
2495
2496 if (SCSI_DEBUG_OPT_NOISE & scsi_debug_opts)
2497 printk(KERN_INFO "scsi_debug: slave_destroy <%u %u %u %u>\n",
2498 sdp->host->host_no, sdp->channel, sdp->id, sdp->lun);
2499 if (devip) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002500 /* make this slot available for re-use */
FUJITA Tomonori8dea0d02008-03-30 00:59:58 +09002501 devip->used = 0;
2502 sdp->hostdata = NULL;
2503 }
2504}
2505
2506/* Returns 1 if found 'cmnd' and deleted its timer. else returns 0 */
2507static int stop_queued_cmnd(struct scsi_cmnd *cmnd)
2508{
2509 unsigned long iflags;
2510 int k;
2511 struct sdebug_queued_cmd *sqcp;
2512
2513 spin_lock_irqsave(&queued_arr_lock, iflags);
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -04002514 for (k = 0; k < scsi_debug_max_queue; ++k) {
FUJITA Tomonori8dea0d02008-03-30 00:59:58 +09002515 sqcp = &queued_arr[k];
2516 if (sqcp->in_use && (cmnd == sqcp->a_cmnd)) {
2517 del_timer_sync(&sqcp->cmnd_timer);
2518 sqcp->in_use = 0;
2519 sqcp->a_cmnd = NULL;
2520 break;
2521 }
2522 }
2523 spin_unlock_irqrestore(&queued_arr_lock, iflags);
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -04002524 return (k < scsi_debug_max_queue) ? 1 : 0;
FUJITA Tomonori8dea0d02008-03-30 00:59:58 +09002525}
2526
2527/* Deletes (stops) timers of all queued commands */
2528static void stop_all_queued(void)
2529{
2530 unsigned long iflags;
2531 int k;
2532 struct sdebug_queued_cmd *sqcp;
2533
2534 spin_lock_irqsave(&queued_arr_lock, iflags);
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -04002535 for (k = 0; k < scsi_debug_max_queue; ++k) {
FUJITA Tomonori8dea0d02008-03-30 00:59:58 +09002536 sqcp = &queued_arr[k];
2537 if (sqcp->in_use && sqcp->a_cmnd) {
2538 del_timer_sync(&sqcp->cmnd_timer);
2539 sqcp->in_use = 0;
2540 sqcp->a_cmnd = NULL;
2541 }
2542 }
2543 spin_unlock_irqrestore(&queued_arr_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544}
2545
2546static int scsi_debug_abort(struct scsi_cmnd * SCpnt)
2547{
2548 if (SCSI_DEBUG_OPT_NOISE & scsi_debug_opts)
2549 printk(KERN_INFO "scsi_debug: abort\n");
2550 ++num_aborts;
2551 stop_queued_cmnd(SCpnt);
2552 return SUCCESS;
2553}
2554
2555static int scsi_debug_biosparam(struct scsi_device *sdev,
2556 struct block_device * bdev, sector_t capacity, int *info)
2557{
2558 int res;
2559 unsigned char *buf;
2560
2561 if (SCSI_DEBUG_OPT_NOISE & scsi_debug_opts)
2562 printk(KERN_INFO "scsi_debug: biosparam\n");
2563 buf = scsi_bios_ptable(bdev);
2564 if (buf) {
2565 res = scsi_partsize(buf, capacity,
2566 &info[2], &info[0], &info[1]);
2567 kfree(buf);
2568 if (! res)
2569 return res;
2570 }
2571 info[0] = sdebug_heads;
2572 info[1] = sdebug_sectors_per;
2573 info[2] = sdebug_cylinders_per;
2574 return 0;
2575}
2576
2577static int scsi_debug_device_reset(struct scsi_cmnd * SCpnt)
2578{
2579 struct sdebug_dev_info * devip;
2580
2581 if (SCSI_DEBUG_OPT_NOISE & scsi_debug_opts)
2582 printk(KERN_INFO "scsi_debug: device_reset\n");
2583 ++num_dev_resets;
2584 if (SCpnt) {
2585 devip = devInfoReg(SCpnt->device);
2586 if (devip)
2587 devip->reset = 1;
2588 }
2589 return SUCCESS;
2590}
2591
2592static int scsi_debug_bus_reset(struct scsi_cmnd * SCpnt)
2593{
2594 struct sdebug_host_info *sdbg_host;
2595 struct sdebug_dev_info * dev_info;
2596 struct scsi_device * sdp;
2597 struct Scsi_Host * hp;
2598
2599 if (SCSI_DEBUG_OPT_NOISE & scsi_debug_opts)
2600 printk(KERN_INFO "scsi_debug: bus_reset\n");
2601 ++num_bus_resets;
2602 if (SCpnt && ((sdp = SCpnt->device)) && ((hp = sdp->host))) {
FUJITA Tomonorid1e4c9c2008-03-02 18:30:18 +09002603 sdbg_host = *(struct sdebug_host_info **)shost_priv(hp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 if (sdbg_host) {
2605 list_for_each_entry(dev_info,
2606 &sdbg_host->dev_info_list,
2607 dev_list)
2608 dev_info->reset = 1;
2609 }
2610 }
2611 return SUCCESS;
2612}
2613
2614static int scsi_debug_host_reset(struct scsi_cmnd * SCpnt)
2615{
2616 struct sdebug_host_info * sdbg_host;
2617 struct sdebug_dev_info * dev_info;
2618
2619 if (SCSI_DEBUG_OPT_NOISE & scsi_debug_opts)
2620 printk(KERN_INFO "scsi_debug: host_reset\n");
2621 ++num_host_resets;
2622 spin_lock(&sdebug_host_list_lock);
2623 list_for_each_entry(sdbg_host, &sdebug_host_list, host_list) {
2624 list_for_each_entry(dev_info, &sdbg_host->dev_info_list,
2625 dev_list)
2626 dev_info->reset = 1;
2627 }
2628 spin_unlock(&sdebug_host_list_lock);
2629 stop_all_queued();
2630 return SUCCESS;
2631}
2632
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633/* Initializes timers in queued array */
2634static void __init init_all_queued(void)
2635{
2636 unsigned long iflags;
2637 int k;
2638 struct sdebug_queued_cmd * sqcp;
2639
2640 spin_lock_irqsave(&queued_arr_lock, iflags);
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -04002641 for (k = 0; k < scsi_debug_max_queue; ++k) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 sqcp = &queued_arr[k];
2643 init_timer(&sqcp->cmnd_timer);
2644 sqcp->in_use = 0;
2645 sqcp->a_cmnd = NULL;
2646 }
2647 spin_unlock_irqrestore(&queued_arr_lock, iflags);
2648}
2649
FUJITA Tomonorif58b0ef2008-03-30 00:59:54 +09002650static void __init sdebug_build_parts(unsigned char *ramp,
FUJITA Tomonori5f2578e2008-03-30 00:59:57 +09002651 unsigned long store_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652{
2653 struct partition * pp;
2654 int starts[SDEBUG_MAX_PARTS + 2];
2655 int sectors_per_part, num_sectors, k;
2656 int heads_by_sects, start_sec, end_sec;
2657
2658 /* assume partition table already zeroed */
FUJITA Tomonorif58b0ef2008-03-30 00:59:54 +09002659 if ((scsi_debug_num_parts < 1) || (store_size < 1048576))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 return;
2661 if (scsi_debug_num_parts > SDEBUG_MAX_PARTS) {
2662 scsi_debug_num_parts = SDEBUG_MAX_PARTS;
2663 printk(KERN_WARNING "scsi_debug:build_parts: reducing "
2664 "partitions to %d\n", SDEBUG_MAX_PARTS);
2665 }
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002666 num_sectors = (int)sdebug_store_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 sectors_per_part = (num_sectors - sdebug_sectors_per)
2668 / scsi_debug_num_parts;
2669 heads_by_sects = sdebug_heads * sdebug_sectors_per;
2670 starts[0] = sdebug_sectors_per;
2671 for (k = 1; k < scsi_debug_num_parts; ++k)
2672 starts[k] = ((k * sectors_per_part) / heads_by_sects)
2673 * heads_by_sects;
2674 starts[scsi_debug_num_parts] = num_sectors;
2675 starts[scsi_debug_num_parts + 1] = 0;
2676
2677 ramp[510] = 0x55; /* magic partition markings */
2678 ramp[511] = 0xAA;
2679 pp = (struct partition *)(ramp + 0x1be);
2680 for (k = 0; starts[k + 1]; ++k, ++pp) {
2681 start_sec = starts[k];
2682 end_sec = starts[k + 1] - 1;
2683 pp->boot_ind = 0;
2684
2685 pp->cyl = start_sec / heads_by_sects;
2686 pp->head = (start_sec - (pp->cyl * heads_by_sects))
2687 / sdebug_sectors_per;
2688 pp->sector = (start_sec % sdebug_sectors_per) + 1;
2689
2690 pp->end_cyl = end_sec / heads_by_sects;
2691 pp->end_head = (end_sec - (pp->end_cyl * heads_by_sects))
2692 / sdebug_sectors_per;
2693 pp->end_sector = (end_sec % sdebug_sectors_per) + 1;
2694
Akinobu Mita150c3542013-08-26 22:08:40 +09002695 pp->start_sect = cpu_to_le32(start_sec);
2696 pp->nr_sects = cpu_to_le32(end_sec - start_sec + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 pp->sys_ind = 0x83; /* plain Linux partition */
2698 }
2699}
2700
2701static int schedule_resp(struct scsi_cmnd * cmnd,
2702 struct sdebug_dev_info * devip,
2703 done_funct_t done, int scsi_result, int delta_jiff)
2704{
2705 if ((SCSI_DEBUG_OPT_NOISE & scsi_debug_opts) && cmnd) {
2706 if (scsi_result) {
2707 struct scsi_device * sdp = cmnd->device;
2708
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002709 printk(KERN_INFO "scsi_debug: <%u %u %u %u> "
2710 "non-zero result=0x%x\n", sdp->host->host_no,
2711 sdp->channel, sdp->id, sdp->lun, scsi_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 }
2713 }
2714 if (cmnd && devip) {
2715 /* simulate autosense by this driver */
2716 if (SAM_STAT_CHECK_CONDITION == (scsi_result & 0xff))
2717 memcpy(cmnd->sense_buffer, devip->sense_buff,
2718 (SCSI_SENSE_BUFFERSIZE > SDEBUG_SENSE_LEN) ?
2719 SDEBUG_SENSE_LEN : SCSI_SENSE_BUFFERSIZE);
2720 }
2721 if (delta_jiff <= 0) {
2722 if (cmnd)
2723 cmnd->result = scsi_result;
2724 if (done)
2725 done(cmnd);
2726 return 0;
2727 } else {
2728 unsigned long iflags;
2729 int k;
2730 struct sdebug_queued_cmd * sqcp = NULL;
2731
2732 spin_lock_irqsave(&queued_arr_lock, iflags);
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -04002733 for (k = 0; k < scsi_debug_max_queue; ++k) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734 sqcp = &queued_arr[k];
2735 if (! sqcp->in_use)
2736 break;
2737 }
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -04002738 if (k >= scsi_debug_max_queue) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 spin_unlock_irqrestore(&queued_arr_lock, iflags);
2740 printk(KERN_WARNING "scsi_debug: can_queue exceeded\n");
2741 return 1; /* report busy to mid level */
2742 }
2743 sqcp->in_use = 1;
2744 sqcp->a_cmnd = cmnd;
2745 sqcp->scsi_result = scsi_result;
2746 sqcp->done_funct = done;
2747 sqcp->cmnd_timer.function = timer_intr_handler;
2748 sqcp->cmnd_timer.data = k;
2749 sqcp->cmnd_timer.expires = jiffies + delta_jiff;
2750 add_timer(&sqcp->cmnd_timer);
2751 spin_unlock_irqrestore(&queued_arr_lock, iflags);
2752 if (cmnd)
2753 cmnd->result = 0;
2754 return 0;
2755 }
2756}
Douglas Gilbert23183912006-09-16 20:30:47 -04002757/* Note: The following macros create attribute files in the
2758 /sys/module/scsi_debug/parameters directory. Unfortunately this
2759 driver is unaware of a change and cannot trigger auxiliary actions
2760 as it can when the corresponding attribute in the
2761 /sys/bus/pseudo/drivers/scsi_debug directory is changed.
2762 */
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002763module_param_named(add_host, scsi_debug_add_host, int, S_IRUGO | S_IWUSR);
Martin K. Petersen5b94e232011-03-08 02:08:11 -05002764module_param_named(ato, scsi_debug_ato, int, S_IRUGO);
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002765module_param_named(delay, scsi_debug_delay, int, S_IRUGO | S_IWUSR);
2766module_param_named(dev_size_mb, scsi_debug_dev_size_mb, int, S_IRUGO);
Martin K. Petersen5b94e232011-03-08 02:08:11 -05002767module_param_named(dif, scsi_debug_dif, int, S_IRUGO);
2768module_param_named(dix, scsi_debug_dix, int, S_IRUGO);
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002769module_param_named(dsense, scsi_debug_dsense, int, S_IRUGO | S_IWUSR);
2770module_param_named(every_nth, scsi_debug_every_nth, int, S_IRUGO | S_IWUSR);
Douglas Gilbert23183912006-09-16 20:30:47 -04002771module_param_named(fake_rw, scsi_debug_fake_rw, int, S_IRUGO | S_IWUSR);
Akinobu Mita68aee7b2013-09-18 21:27:27 +09002772module_param_named(guard, scsi_debug_guard, uint, S_IRUGO);
Martin K. Petersen5b94e232011-03-08 02:08:11 -05002773module_param_named(lbpu, scsi_debug_lbpu, int, S_IRUGO);
2774module_param_named(lbpws, scsi_debug_lbpws, int, S_IRUGO);
2775module_param_named(lbpws10, scsi_debug_lbpws10, int, S_IRUGO);
Eric Sandeenbe1dd782012-03-08 00:03:59 -06002776module_param_named(lbprz, scsi_debug_lbprz, int, S_IRUGO);
Martin K. Petersen5b94e232011-03-08 02:08:11 -05002777module_param_named(lowest_aligned, scsi_debug_lowest_aligned, int, S_IRUGO);
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002778module_param_named(max_luns, scsi_debug_max_luns, int, S_IRUGO | S_IWUSR);
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -04002779module_param_named(max_queue, scsi_debug_max_queue, int, S_IRUGO | S_IWUSR);
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002780module_param_named(no_lun_0, scsi_debug_no_lun_0, int, S_IRUGO | S_IWUSR);
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -04002781module_param_named(no_uld, scsi_debug_no_uld, int, S_IRUGO);
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002782module_param_named(num_parts, scsi_debug_num_parts, int, S_IRUGO);
2783module_param_named(num_tgts, scsi_debug_num_tgts, int, S_IRUGO | S_IWUSR);
Martin K. Petersen5b94e232011-03-08 02:08:11 -05002784module_param_named(opt_blks, scsi_debug_opt_blks, int, S_IRUGO);
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002785module_param_named(opts, scsi_debug_opts, int, S_IRUGO | S_IWUSR);
Martin K. Petersen5b94e232011-03-08 02:08:11 -05002786module_param_named(physblk_exp, scsi_debug_physblk_exp, int, S_IRUGO);
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002787module_param_named(ptype, scsi_debug_ptype, int, S_IRUGO | S_IWUSR);
Martin Pittd9867882012-09-06 12:04:33 +02002788module_param_named(removable, scsi_debug_removable, bool, S_IRUGO | S_IWUSR);
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002789module_param_named(scsi_level, scsi_debug_scsi_level, int, S_IRUGO);
Martin K. Petersen5b94e232011-03-08 02:08:11 -05002790module_param_named(sector_size, scsi_debug_sector_size, int, S_IRUGO);
2791module_param_named(unmap_alignment, scsi_debug_unmap_alignment, int, S_IRUGO);
2792module_param_named(unmap_granularity, scsi_debug_unmap_granularity, int, S_IRUGO);
2793module_param_named(unmap_max_blocks, scsi_debug_unmap_max_blocks, int, S_IRUGO);
2794module_param_named(unmap_max_desc, scsi_debug_unmap_max_desc, int, S_IRUGO);
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002795module_param_named(virtual_gb, scsi_debug_virtual_gb, int, S_IRUGO | S_IWUSR);
Douglas Gilbert23183912006-09-16 20:30:47 -04002796module_param_named(vpd_use_hostno, scsi_debug_vpd_use_hostno, int,
2797 S_IRUGO | S_IWUSR);
Martin K. Petersen5b94e232011-03-08 02:08:11 -05002798module_param_named(write_same_length, scsi_debug_write_same_length, int,
2799 S_IRUGO | S_IWUSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800
2801MODULE_AUTHOR("Eric Youngdale + Douglas Gilbert");
2802MODULE_DESCRIPTION("SCSI debug adapter driver");
2803MODULE_LICENSE("GPL");
2804MODULE_VERSION(SCSI_DEBUG_VERSION);
2805
2806MODULE_PARM_DESC(add_host, "0..127 hosts allowed(def=1)");
Martin K. Petersen5b94e232011-03-08 02:08:11 -05002807MODULE_PARM_DESC(ato, "application tag ownership: 0=disk 1=host (def=1)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808MODULE_PARM_DESC(delay, "# of jiffies to delay response(def=1)");
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002809MODULE_PARM_DESC(dev_size_mb, "size in MB of ram shared by devs(def=8)");
Martin K. Petersen5b94e232011-03-08 02:08:11 -05002810MODULE_PARM_DESC(dif, "data integrity field type: 0-3 (def=0)");
2811MODULE_PARM_DESC(dix, "data integrity extensions mask (def=0)");
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002812MODULE_PARM_DESC(dsense, "use descriptor sense format(def=0 -> fixed)");
Randy Dunlapbeb87c32007-06-11 11:36:40 -07002813MODULE_PARM_DESC(every_nth, "timeout every nth command(def=0)");
Douglas Gilbert23183912006-09-16 20:30:47 -04002814MODULE_PARM_DESC(fake_rw, "fake reads/writes instead of copying (def=0)");
Martin K. Petersen5b94e232011-03-08 02:08:11 -05002815MODULE_PARM_DESC(guard, "protection checksum: 0=crc, 1=ip (def=0)");
2816MODULE_PARM_DESC(lbpu, "enable LBP, support UNMAP command (def=0)");
2817MODULE_PARM_DESC(lbpws, "enable LBP, support WRITE SAME(16) with UNMAP bit (def=0)");
2818MODULE_PARM_DESC(lbpws10, "enable LBP, support WRITE SAME(10) with UNMAP bit (def=0)");
Eric Sandeenbe1dd782012-03-08 00:03:59 -06002819MODULE_PARM_DESC(lbprz, "unmapped blocks return 0 on read (def=1)");
Martin K. Petersen5b94e232011-03-08 02:08:11 -05002820MODULE_PARM_DESC(lowest_aligned, "lowest aligned lba (def=0)");
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002821MODULE_PARM_DESC(max_luns, "number of LUNs per target to simulate(def=1)");
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -04002822MODULE_PARM_DESC(max_queue, "max number of queued commands (1 to 255(def))");
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002823MODULE_PARM_DESC(no_lun_0, "no LU number 0 (def=0 -> have lun 0)");
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -04002824MODULE_PARM_DESC(no_uld, "stop ULD (e.g. sd driver) attaching (def=0))");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825MODULE_PARM_DESC(num_parts, "number of partitions(def=0)");
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002826MODULE_PARM_DESC(num_tgts, "number of targets per host to simulate(def=1)");
Martin K. Petersen5b94e232011-03-08 02:08:11 -05002827MODULE_PARM_DESC(opt_blks, "optimal transfer length in block (def=64)");
Douglas Gilbert6f3cbf52007-01-05 00:05:25 -05002828MODULE_PARM_DESC(opts, "1->noise, 2->medium_err, 4->timeout, 8->recovered_err... (def=0)");
Martin K. Petersen5b94e232011-03-08 02:08:11 -05002829MODULE_PARM_DESC(physblk_exp, "physical block exponent (def=0)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830MODULE_PARM_DESC(ptype, "SCSI peripheral type(def=0[disk])");
Martin Pittd9867882012-09-06 12:04:33 +02002831MODULE_PARM_DESC(removable, "claim to have removable media (def=0)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832MODULE_PARM_DESC(scsi_level, "SCSI level to simulate(def=5[SPC-3])");
Martin K. Petersenea61fca2009-05-15 00:40:33 -04002833MODULE_PARM_DESC(sector_size, "logical block size in bytes (def=512)");
Martin K. Petersen5b94e232011-03-08 02:08:11 -05002834MODULE_PARM_DESC(unmap_alignment, "lowest aligned thin provisioning lba (def=0)");
2835MODULE_PARM_DESC(unmap_granularity, "thin provisioning granularity in blocks (def=1)");
Martin K. Petersen60147592010-08-19 11:49:00 -04002836MODULE_PARM_DESC(unmap_max_blocks, "max # of blocks can be unmapped in one cmd (def=0xffffffff)");
2837MODULE_PARM_DESC(unmap_max_desc, "max # of ranges that can be unmapped in one cmd (def=256)");
Martin K. Petersen5b94e232011-03-08 02:08:11 -05002838MODULE_PARM_DESC(virtual_gb, "virtual gigabyte size (def=0 -> use dev_size_mb)");
2839MODULE_PARM_DESC(vpd_use_hostno, "0 -> dev ids ignore hostno (def=1 -> unique dev ids)");
2840MODULE_PARM_DESC(write_same_length, "Maximum blocks per WRITE SAME cmd (def=0xffff)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841
2842static char sdebug_info[256];
2843
2844static const char * scsi_debug_info(struct Scsi_Host * shp)
2845{
2846 sprintf(sdebug_info, "scsi_debug, version %s [%s], "
2847 "dev_size_mb=%d, opts=0x%x", SCSI_DEBUG_VERSION,
2848 scsi_debug_version_date, scsi_debug_dev_size_mb,
2849 scsi_debug_opts);
2850 return sdebug_info;
2851}
2852
2853/* scsi_debug_proc_info
2854 * Used if the driver currently has no own support for /proc/scsi
2855 */
Al Viroc8ed5552013-03-31 01:46:06 -04002856static int scsi_debug_write_info(struct Scsi_Host *host, char *buffer, int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857{
Al Viroc8ed5552013-03-31 01:46:06 -04002858 char arr[16];
2859 int opts;
2860 int minLen = length > 15 ? 15 : length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861
Al Viroc8ed5552013-03-31 01:46:06 -04002862 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
2863 return -EACCES;
2864 memcpy(arr, buffer, minLen);
2865 arr[minLen] = '\0';
2866 if (1 != sscanf(arr, "%d", &opts))
2867 return -EINVAL;
2868 scsi_debug_opts = opts;
2869 if (scsi_debug_every_nth != 0)
2870 scsi_debug_cmnd_count = 0;
2871 return length;
2872}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873
Al Viroc8ed5552013-03-31 01:46:06 -04002874static int scsi_debug_show_info(struct seq_file *m, struct Scsi_Host *host)
2875{
2876 seq_printf(m, "scsi_debug adapter driver, version "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 "%s [%s]\n"
2878 "num_tgts=%d, shared (ram) size=%d MB, opts=0x%x, "
2879 "every_nth=%d(curr:%d)\n"
2880 "delay=%d, max_luns=%d, scsi_level=%d\n"
2881 "sector_size=%d bytes, cylinders=%d, heads=%d, sectors=%d\n"
2882 "number of aborts=%d, device_reset=%d, bus_resets=%d, "
Martin K. Petersenc6a44282009-01-04 03:08:19 -05002883 "host_resets=%d\ndix_reads=%d dix_writes=%d dif_errors=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884 SCSI_DEBUG_VERSION, scsi_debug_version_date, scsi_debug_num_tgts,
2885 scsi_debug_dev_size_mb, scsi_debug_opts, scsi_debug_every_nth,
2886 scsi_debug_cmnd_count, scsi_debug_delay,
2887 scsi_debug_max_luns, scsi_debug_scsi_level,
Martin K. Petersen597136a2008-06-05 00:12:59 -04002888 scsi_debug_sector_size, sdebug_cylinders_per, sdebug_heads,
2889 sdebug_sectors_per, num_aborts, num_dev_resets, num_bus_resets,
Martin K. Petersenc6a44282009-01-04 03:08:19 -05002890 num_host_resets, dix_reads, dix_writes, dif_errors);
Al Viroc8ed5552013-03-31 01:46:06 -04002891 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892}
2893
Akinobu Mita82069372013-10-14 22:48:04 +09002894static ssize_t delay_show(struct device_driver *ddp, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895{
2896 return scnprintf(buf, PAGE_SIZE, "%d\n", scsi_debug_delay);
2897}
2898
Akinobu Mita82069372013-10-14 22:48:04 +09002899static ssize_t delay_store(struct device_driver *ddp, const char *buf,
2900 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901{
2902 int delay;
2903 char work[20];
2904
2905 if (1 == sscanf(buf, "%10s", work)) {
2906 if ((1 == sscanf(work, "%d", &delay)) && (delay >= 0)) {
2907 scsi_debug_delay = delay;
2908 return count;
2909 }
2910 }
2911 return -EINVAL;
2912}
Akinobu Mita82069372013-10-14 22:48:04 +09002913static DRIVER_ATTR_RW(delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914
Akinobu Mita82069372013-10-14 22:48:04 +09002915static ssize_t opts_show(struct device_driver *ddp, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916{
2917 return scnprintf(buf, PAGE_SIZE, "0x%x\n", scsi_debug_opts);
2918}
2919
Akinobu Mita82069372013-10-14 22:48:04 +09002920static ssize_t opts_store(struct device_driver *ddp, const char *buf,
2921 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922{
2923 int opts;
2924 char work[20];
2925
2926 if (1 == sscanf(buf, "%10s", work)) {
2927 if (0 == strnicmp(work,"0x", 2)) {
2928 if (1 == sscanf(&work[2], "%x", &opts))
2929 goto opts_done;
2930 } else {
2931 if (1 == sscanf(work, "%d", &opts))
2932 goto opts_done;
2933 }
2934 }
2935 return -EINVAL;
2936opts_done:
2937 scsi_debug_opts = opts;
2938 scsi_debug_cmnd_count = 0;
2939 return count;
2940}
Akinobu Mita82069372013-10-14 22:48:04 +09002941static DRIVER_ATTR_RW(opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942
Akinobu Mita82069372013-10-14 22:48:04 +09002943static ssize_t ptype_show(struct device_driver *ddp, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944{
2945 return scnprintf(buf, PAGE_SIZE, "%d\n", scsi_debug_ptype);
2946}
Akinobu Mita82069372013-10-14 22:48:04 +09002947static ssize_t ptype_store(struct device_driver *ddp, const char *buf,
2948 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949{
2950 int n;
2951
2952 if ((count > 0) && (1 == sscanf(buf, "%d", &n)) && (n >= 0)) {
2953 scsi_debug_ptype = n;
2954 return count;
2955 }
2956 return -EINVAL;
2957}
Akinobu Mita82069372013-10-14 22:48:04 +09002958static DRIVER_ATTR_RW(ptype);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959
Akinobu Mita82069372013-10-14 22:48:04 +09002960static ssize_t dsense_show(struct device_driver *ddp, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961{
2962 return scnprintf(buf, PAGE_SIZE, "%d\n", scsi_debug_dsense);
2963}
Akinobu Mita82069372013-10-14 22:48:04 +09002964static ssize_t dsense_store(struct device_driver *ddp, const char *buf,
2965 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966{
2967 int n;
2968
2969 if ((count > 0) && (1 == sscanf(buf, "%d", &n)) && (n >= 0)) {
2970 scsi_debug_dsense = n;
2971 return count;
2972 }
2973 return -EINVAL;
2974}
Akinobu Mita82069372013-10-14 22:48:04 +09002975static DRIVER_ATTR_RW(dsense);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976
Akinobu Mita82069372013-10-14 22:48:04 +09002977static ssize_t fake_rw_show(struct device_driver *ddp, char *buf)
Douglas Gilbert23183912006-09-16 20:30:47 -04002978{
2979 return scnprintf(buf, PAGE_SIZE, "%d\n", scsi_debug_fake_rw);
2980}
Akinobu Mita82069372013-10-14 22:48:04 +09002981static ssize_t fake_rw_store(struct device_driver *ddp, const char *buf,
2982 size_t count)
Douglas Gilbert23183912006-09-16 20:30:47 -04002983{
2984 int n;
2985
2986 if ((count > 0) && (1 == sscanf(buf, "%d", &n)) && (n >= 0)) {
2987 scsi_debug_fake_rw = n;
2988 return count;
2989 }
2990 return -EINVAL;
2991}
Akinobu Mita82069372013-10-14 22:48:04 +09002992static DRIVER_ATTR_RW(fake_rw);
Douglas Gilbert23183912006-09-16 20:30:47 -04002993
Akinobu Mita82069372013-10-14 22:48:04 +09002994static ssize_t no_lun_0_show(struct device_driver *ddp, char *buf)
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002995{
2996 return scnprintf(buf, PAGE_SIZE, "%d\n", scsi_debug_no_lun_0);
2997}
Akinobu Mita82069372013-10-14 22:48:04 +09002998static ssize_t no_lun_0_store(struct device_driver *ddp, const char *buf,
2999 size_t count)
Douglas Gilbertc65b1442006-06-06 00:11:24 -04003000{
3001 int n;
3002
3003 if ((count > 0) && (1 == sscanf(buf, "%d", &n)) && (n >= 0)) {
3004 scsi_debug_no_lun_0 = n;
3005 return count;
3006 }
3007 return -EINVAL;
3008}
Akinobu Mita82069372013-10-14 22:48:04 +09003009static DRIVER_ATTR_RW(no_lun_0);
Douglas Gilbertc65b1442006-06-06 00:11:24 -04003010
Akinobu Mita82069372013-10-14 22:48:04 +09003011static ssize_t num_tgts_show(struct device_driver *ddp, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012{
3013 return scnprintf(buf, PAGE_SIZE, "%d\n", scsi_debug_num_tgts);
3014}
Akinobu Mita82069372013-10-14 22:48:04 +09003015static ssize_t num_tgts_store(struct device_driver *ddp, const char *buf,
3016 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017{
3018 int n;
3019
3020 if ((count > 0) && (1 == sscanf(buf, "%d", &n)) && (n >= 0)) {
3021 scsi_debug_num_tgts = n;
3022 sdebug_max_tgts_luns();
3023 return count;
3024 }
3025 return -EINVAL;
3026}
Akinobu Mita82069372013-10-14 22:48:04 +09003027static DRIVER_ATTR_RW(num_tgts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028
Akinobu Mita82069372013-10-14 22:48:04 +09003029static ssize_t dev_size_mb_show(struct device_driver *ddp, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030{
3031 return scnprintf(buf, PAGE_SIZE, "%d\n", scsi_debug_dev_size_mb);
3032}
Akinobu Mita82069372013-10-14 22:48:04 +09003033static DRIVER_ATTR_RO(dev_size_mb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034
Akinobu Mita82069372013-10-14 22:48:04 +09003035static ssize_t num_parts_show(struct device_driver *ddp, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036{
3037 return scnprintf(buf, PAGE_SIZE, "%d\n", scsi_debug_num_parts);
3038}
Akinobu Mita82069372013-10-14 22:48:04 +09003039static DRIVER_ATTR_RO(num_parts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040
Akinobu Mita82069372013-10-14 22:48:04 +09003041static ssize_t every_nth_show(struct device_driver *ddp, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042{
3043 return scnprintf(buf, PAGE_SIZE, "%d\n", scsi_debug_every_nth);
3044}
Akinobu Mita82069372013-10-14 22:48:04 +09003045static ssize_t every_nth_store(struct device_driver *ddp, const char *buf,
3046 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047{
3048 int nth;
3049
3050 if ((count > 0) && (1 == sscanf(buf, "%d", &nth))) {
3051 scsi_debug_every_nth = nth;
3052 scsi_debug_cmnd_count = 0;
3053 return count;
3054 }
3055 return -EINVAL;
3056}
Akinobu Mita82069372013-10-14 22:48:04 +09003057static DRIVER_ATTR_RW(every_nth);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058
Akinobu Mita82069372013-10-14 22:48:04 +09003059static ssize_t max_luns_show(struct device_driver *ddp, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060{
3061 return scnprintf(buf, PAGE_SIZE, "%d\n", scsi_debug_max_luns);
3062}
Akinobu Mita82069372013-10-14 22:48:04 +09003063static ssize_t max_luns_store(struct device_driver *ddp, const char *buf,
3064 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065{
3066 int n;
3067
3068 if ((count > 0) && (1 == sscanf(buf, "%d", &n)) && (n >= 0)) {
3069 scsi_debug_max_luns = n;
3070 sdebug_max_tgts_luns();
3071 return count;
3072 }
3073 return -EINVAL;
3074}
Akinobu Mita82069372013-10-14 22:48:04 +09003075static DRIVER_ATTR_RW(max_luns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076
Akinobu Mita82069372013-10-14 22:48:04 +09003077static ssize_t max_queue_show(struct device_driver *ddp, char *buf)
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -04003078{
3079 return scnprintf(buf, PAGE_SIZE, "%d\n", scsi_debug_max_queue);
3080}
Akinobu Mita82069372013-10-14 22:48:04 +09003081static ssize_t max_queue_store(struct device_driver *ddp, const char *buf,
3082 size_t count)
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -04003083{
3084 int n;
3085
3086 if ((count > 0) && (1 == sscanf(buf, "%d", &n)) && (n > 0) &&
3087 (n <= SCSI_DEBUG_CANQUEUE)) {
3088 scsi_debug_max_queue = n;
3089 return count;
3090 }
3091 return -EINVAL;
3092}
Akinobu Mita82069372013-10-14 22:48:04 +09003093static DRIVER_ATTR_RW(max_queue);
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -04003094
Akinobu Mita82069372013-10-14 22:48:04 +09003095static ssize_t no_uld_show(struct device_driver *ddp, char *buf)
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -04003096{
3097 return scnprintf(buf, PAGE_SIZE, "%d\n", scsi_debug_no_uld);
3098}
Akinobu Mita82069372013-10-14 22:48:04 +09003099static DRIVER_ATTR_RO(no_uld);
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -04003100
Akinobu Mita82069372013-10-14 22:48:04 +09003101static ssize_t scsi_level_show(struct device_driver *ddp, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102{
3103 return scnprintf(buf, PAGE_SIZE, "%d\n", scsi_debug_scsi_level);
3104}
Akinobu Mita82069372013-10-14 22:48:04 +09003105static DRIVER_ATTR_RO(scsi_level);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106
Akinobu Mita82069372013-10-14 22:48:04 +09003107static ssize_t virtual_gb_show(struct device_driver *ddp, char *buf)
Douglas Gilbertc65b1442006-06-06 00:11:24 -04003108{
3109 return scnprintf(buf, PAGE_SIZE, "%d\n", scsi_debug_virtual_gb);
3110}
Akinobu Mita82069372013-10-14 22:48:04 +09003111static ssize_t virtual_gb_store(struct device_driver *ddp, const char *buf,
3112 size_t count)
Douglas Gilbertc65b1442006-06-06 00:11:24 -04003113{
3114 int n;
3115
3116 if ((count > 0) && (1 == sscanf(buf, "%d", &n)) && (n >= 0)) {
3117 scsi_debug_virtual_gb = n;
FUJITA Tomonori28898872008-03-30 00:59:55 +09003118
3119 sdebug_capacity = get_sdebug_capacity();
3120
Douglas Gilbertc65b1442006-06-06 00:11:24 -04003121 return count;
3122 }
3123 return -EINVAL;
3124}
Akinobu Mita82069372013-10-14 22:48:04 +09003125static DRIVER_ATTR_RW(virtual_gb);
Douglas Gilbertc65b1442006-06-06 00:11:24 -04003126
Akinobu Mita82069372013-10-14 22:48:04 +09003127static ssize_t add_host_show(struct device_driver *ddp, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128{
3129 return scnprintf(buf, PAGE_SIZE, "%d\n", scsi_debug_add_host);
3130}
3131
Akinobu Mita82069372013-10-14 22:48:04 +09003132static ssize_t add_host_store(struct device_driver *ddp, const char *buf,
3133 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134{
FUJITA Tomonorif3df41c2008-03-20 11:09:15 +09003135 int delta_hosts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136
FUJITA Tomonorif3df41c2008-03-20 11:09:15 +09003137 if (sscanf(buf, "%d", &delta_hosts) != 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139 if (delta_hosts > 0) {
3140 do {
3141 sdebug_add_adapter();
3142 } while (--delta_hosts);
3143 } else if (delta_hosts < 0) {
3144 do {
3145 sdebug_remove_adapter();
3146 } while (++delta_hosts);
3147 }
3148 return count;
3149}
Akinobu Mita82069372013-10-14 22:48:04 +09003150static DRIVER_ATTR_RW(add_host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151
Akinobu Mita82069372013-10-14 22:48:04 +09003152static ssize_t vpd_use_hostno_show(struct device_driver *ddp, char *buf)
Douglas Gilbert23183912006-09-16 20:30:47 -04003153{
3154 return scnprintf(buf, PAGE_SIZE, "%d\n", scsi_debug_vpd_use_hostno);
3155}
Akinobu Mita82069372013-10-14 22:48:04 +09003156static ssize_t vpd_use_hostno_store(struct device_driver *ddp, const char *buf,
3157 size_t count)
Douglas Gilbert23183912006-09-16 20:30:47 -04003158{
3159 int n;
3160
3161 if ((count > 0) && (1 == sscanf(buf, "%d", &n)) && (n >= 0)) {
3162 scsi_debug_vpd_use_hostno = n;
3163 return count;
3164 }
3165 return -EINVAL;
3166}
Akinobu Mita82069372013-10-14 22:48:04 +09003167static DRIVER_ATTR_RW(vpd_use_hostno);
Douglas Gilbert23183912006-09-16 20:30:47 -04003168
Akinobu Mita82069372013-10-14 22:48:04 +09003169static ssize_t sector_size_show(struct device_driver *ddp, char *buf)
Martin K. Petersen597136a2008-06-05 00:12:59 -04003170{
3171 return scnprintf(buf, PAGE_SIZE, "%u\n", scsi_debug_sector_size);
3172}
Akinobu Mita82069372013-10-14 22:48:04 +09003173static DRIVER_ATTR_RO(sector_size);
Martin K. Petersen597136a2008-06-05 00:12:59 -04003174
Akinobu Mita82069372013-10-14 22:48:04 +09003175static ssize_t dix_show(struct device_driver *ddp, char *buf)
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003176{
3177 return scnprintf(buf, PAGE_SIZE, "%d\n", scsi_debug_dix);
3178}
Akinobu Mita82069372013-10-14 22:48:04 +09003179static DRIVER_ATTR_RO(dix);
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003180
Akinobu Mita82069372013-10-14 22:48:04 +09003181static ssize_t dif_show(struct device_driver *ddp, char *buf)
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003182{
3183 return scnprintf(buf, PAGE_SIZE, "%d\n", scsi_debug_dif);
3184}
Akinobu Mita82069372013-10-14 22:48:04 +09003185static DRIVER_ATTR_RO(dif);
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003186
Akinobu Mita82069372013-10-14 22:48:04 +09003187static ssize_t guard_show(struct device_driver *ddp, char *buf)
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003188{
Akinobu Mita68aee7b2013-09-18 21:27:27 +09003189 return scnprintf(buf, PAGE_SIZE, "%u\n", scsi_debug_guard);
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003190}
Akinobu Mita82069372013-10-14 22:48:04 +09003191static DRIVER_ATTR_RO(guard);
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003192
Akinobu Mita82069372013-10-14 22:48:04 +09003193static ssize_t ato_show(struct device_driver *ddp, char *buf)
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003194{
3195 return scnprintf(buf, PAGE_SIZE, "%d\n", scsi_debug_ato);
3196}
Akinobu Mita82069372013-10-14 22:48:04 +09003197static DRIVER_ATTR_RO(ato);
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003198
Akinobu Mita82069372013-10-14 22:48:04 +09003199static ssize_t map_show(struct device_driver *ddp, char *buf)
Martin K. Petersen44d92692009-10-15 14:45:27 -04003200{
3201 ssize_t count;
3202
Martin K. Petersen5b94e232011-03-08 02:08:11 -05003203 if (!scsi_debug_lbp())
Martin K. Petersen44d92692009-10-15 14:45:27 -04003204 return scnprintf(buf, PAGE_SIZE, "0-%u\n",
3205 sdebug_store_sectors);
3206
3207 count = bitmap_scnlistprintf(buf, PAGE_SIZE, map_storep, map_size);
3208
3209 buf[count++] = '\n';
3210 buf[count++] = 0;
3211
3212 return count;
3213}
Akinobu Mita82069372013-10-14 22:48:04 +09003214static DRIVER_ATTR_RO(map);
Martin K. Petersen44d92692009-10-15 14:45:27 -04003215
Akinobu Mita82069372013-10-14 22:48:04 +09003216static ssize_t removable_show(struct device_driver *ddp, char *buf)
Martin Pittd9867882012-09-06 12:04:33 +02003217{
3218 return scnprintf(buf, PAGE_SIZE, "%d\n", scsi_debug_removable ? 1 : 0);
3219}
Akinobu Mita82069372013-10-14 22:48:04 +09003220static ssize_t removable_store(struct device_driver *ddp, const char *buf,
3221 size_t count)
Martin Pittd9867882012-09-06 12:04:33 +02003222{
3223 int n;
3224
3225 if ((count > 0) && (1 == sscanf(buf, "%d", &n)) && (n >= 0)) {
3226 scsi_debug_removable = (n > 0);
3227 return count;
3228 }
3229 return -EINVAL;
3230}
Akinobu Mita82069372013-10-14 22:48:04 +09003231static DRIVER_ATTR_RW(removable);
Martin Pittd9867882012-09-06 12:04:33 +02003232
Akinobu Mita82069372013-10-14 22:48:04 +09003233/* Note: The following array creates attribute files in the
Douglas Gilbert23183912006-09-16 20:30:47 -04003234 /sys/bus/pseudo/drivers/scsi_debug directory. The advantage of these
3235 files (over those found in the /sys/module/scsi_debug/parameters
3236 directory) is that auxiliary actions can be triggered when an attribute
3237 is changed. For example see: sdebug_add_host_store() above.
3238 */
Randy Dunlap6ecaff72006-07-11 20:53:22 -07003239
Akinobu Mita82069372013-10-14 22:48:04 +09003240static struct attribute *sdebug_drv_attrs[] = {
3241 &driver_attr_delay.attr,
3242 &driver_attr_opts.attr,
3243 &driver_attr_ptype.attr,
3244 &driver_attr_dsense.attr,
3245 &driver_attr_fake_rw.attr,
3246 &driver_attr_no_lun_0.attr,
3247 &driver_attr_num_tgts.attr,
3248 &driver_attr_dev_size_mb.attr,
3249 &driver_attr_num_parts.attr,
3250 &driver_attr_every_nth.attr,
3251 &driver_attr_max_luns.attr,
3252 &driver_attr_max_queue.attr,
3253 &driver_attr_no_uld.attr,
3254 &driver_attr_scsi_level.attr,
3255 &driver_attr_virtual_gb.attr,
3256 &driver_attr_add_host.attr,
3257 &driver_attr_vpd_use_hostno.attr,
3258 &driver_attr_sector_size.attr,
3259 &driver_attr_dix.attr,
3260 &driver_attr_dif.attr,
3261 &driver_attr_guard.attr,
3262 &driver_attr_ato.attr,
3263 &driver_attr_map.attr,
3264 &driver_attr_removable.attr,
3265 NULL,
3266};
3267ATTRIBUTE_GROUPS(sdebug_drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268
Akinobu Mita11ddcec2014-02-26 22:56:59 +09003269static struct device *pseudo_primary;
FUJITA Tomonori8dea0d02008-03-30 00:59:58 +09003270
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271static int __init scsi_debug_init(void)
3272{
FUJITA Tomonori5f2578e2008-03-30 00:59:57 +09003273 unsigned long sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274 int host_to_add;
3275 int k;
Randy Dunlap6ecaff72006-07-11 20:53:22 -07003276 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277
Martin K. Petersen597136a2008-06-05 00:12:59 -04003278 switch (scsi_debug_sector_size) {
3279 case 512:
3280 case 1024:
3281 case 2048:
3282 case 4096:
3283 break;
3284 default:
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003285 printk(KERN_ERR "scsi_debug_init: invalid sector_size %d\n",
Martin K. Petersen597136a2008-06-05 00:12:59 -04003286 scsi_debug_sector_size);
3287 return -EINVAL;
3288 }
3289
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003290 switch (scsi_debug_dif) {
3291
3292 case SD_DIF_TYPE0_PROTECTION:
3293 case SD_DIF_TYPE1_PROTECTION:
Martin K. Petersen395cef02009-09-18 17:33:03 -04003294 case SD_DIF_TYPE2_PROTECTION:
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003295 case SD_DIF_TYPE3_PROTECTION:
3296 break;
3297
3298 default:
Martin K. Petersen395cef02009-09-18 17:33:03 -04003299 printk(KERN_ERR "scsi_debug_init: dif must be 0, 1, 2 or 3\n");
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003300 return -EINVAL;
3301 }
3302
3303 if (scsi_debug_guard > 1) {
3304 printk(KERN_ERR "scsi_debug_init: guard must be 0 or 1\n");
3305 return -EINVAL;
3306 }
3307
3308 if (scsi_debug_ato > 1) {
3309 printk(KERN_ERR "scsi_debug_init: ato must be 0 or 1\n");
3310 return -EINVAL;
3311 }
3312
Martin K. Petersenea61fca2009-05-15 00:40:33 -04003313 if (scsi_debug_physblk_exp > 15) {
3314 printk(KERN_ERR "scsi_debug_init: invalid physblk_exp %u\n",
3315 scsi_debug_physblk_exp);
3316 return -EINVAL;
3317 }
3318
3319 if (scsi_debug_lowest_aligned > 0x3fff) {
3320 printk(KERN_ERR "scsi_debug_init: lowest_aligned too big: %u\n",
3321 scsi_debug_lowest_aligned);
3322 return -EINVAL;
3323 }
3324
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325 if (scsi_debug_dev_size_mb < 1)
3326 scsi_debug_dev_size_mb = 1; /* force minimum 1 MB ramdisk */
FUJITA Tomonori5f2578e2008-03-30 00:59:57 +09003327 sz = (unsigned long)scsi_debug_dev_size_mb * 1048576;
Martin K. Petersen597136a2008-06-05 00:12:59 -04003328 sdebug_store_sectors = sz / scsi_debug_sector_size;
FUJITA Tomonori28898872008-03-30 00:59:55 +09003329 sdebug_capacity = get_sdebug_capacity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330
3331 /* play around with geometry, don't waste too much on track 0 */
3332 sdebug_heads = 8;
3333 sdebug_sectors_per = 32;
3334 if (scsi_debug_dev_size_mb >= 16)
3335 sdebug_heads = 32;
3336 else if (scsi_debug_dev_size_mb >= 256)
3337 sdebug_heads = 64;
3338 sdebug_cylinders_per = (unsigned long)sdebug_capacity /
3339 (sdebug_sectors_per * sdebug_heads);
3340 if (sdebug_cylinders_per >= 1024) {
3341 /* other LLDs do this; implies >= 1GB ram disk ... */
3342 sdebug_heads = 255;
3343 sdebug_sectors_per = 63;
3344 sdebug_cylinders_per = (unsigned long)sdebug_capacity /
3345 (sdebug_sectors_per * sdebug_heads);
3346 }
3347
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348 fake_storep = vmalloc(sz);
3349 if (NULL == fake_storep) {
3350 printk(KERN_ERR "scsi_debug_init: out of memory, 1\n");
3351 return -ENOMEM;
3352 }
3353 memset(fake_storep, 0, sz);
3354 if (scsi_debug_num_parts > 0)
FUJITA Tomonorif58b0ef2008-03-30 00:59:54 +09003355 sdebug_build_parts(fake_storep, sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356
Akinobu Mita7cb69d02013-06-29 17:59:16 +09003357 if (scsi_debug_dix) {
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003358 int dif_size;
3359
3360 dif_size = sdebug_store_sectors * sizeof(struct sd_dif_tuple);
3361 dif_storep = vmalloc(dif_size);
3362
3363 printk(KERN_ERR "scsi_debug_init: dif_storep %u bytes @ %p\n",
3364 dif_size, dif_storep);
3365
3366 if (dif_storep == NULL) {
3367 printk(KERN_ERR "scsi_debug_init: out of mem. (DIX)\n");
3368 ret = -ENOMEM;
3369 goto free_vm;
3370 }
3371
3372 memset(dif_storep, 0xff, dif_size);
3373 }
3374
Martin K. Petersen5b94e232011-03-08 02:08:11 -05003375 /* Logical Block Provisioning */
3376 if (scsi_debug_lbp()) {
Martin K. Petersen60147592010-08-19 11:49:00 -04003377 scsi_debug_unmap_max_blocks =
3378 clamp(scsi_debug_unmap_max_blocks, 0U, 0xffffffffU);
3379
3380 scsi_debug_unmap_max_desc =
3381 clamp(scsi_debug_unmap_max_desc, 0U, 256U);
3382
3383 scsi_debug_unmap_granularity =
3384 clamp(scsi_debug_unmap_granularity, 1U, 0xffffffffU);
3385
3386 if (scsi_debug_unmap_alignment &&
Akinobu Mitaac170782013-04-16 22:11:56 +09003387 scsi_debug_unmap_granularity <=
3388 scsi_debug_unmap_alignment) {
Martin K. Petersen44d92692009-10-15 14:45:27 -04003389 printk(KERN_ERR
Akinobu Mitaac170782013-04-16 22:11:56 +09003390 "%s: ERR: unmap_granularity <= unmap_alignment\n",
Martin K. Petersen44d92692009-10-15 14:45:27 -04003391 __func__);
3392 return -EINVAL;
3393 }
3394
Akinobu Mitab90ebc32013-04-16 22:11:58 +09003395 map_size = lba_to_map_index(sdebug_store_sectors - 1) + 1;
3396 map_storep = vmalloc(BITS_TO_LONGS(map_size) * sizeof(long));
Martin K. Petersen44d92692009-10-15 14:45:27 -04003397
3398 printk(KERN_INFO "scsi_debug_init: %lu provisioning blocks\n",
3399 map_size);
3400
3401 if (map_storep == NULL) {
3402 printk(KERN_ERR "scsi_debug_init: out of mem. (MAP)\n");
3403 ret = -ENOMEM;
3404 goto free_vm;
3405 }
3406
Akinobu Mitab90ebc32013-04-16 22:11:58 +09003407 bitmap_zero(map_storep, map_size);
Martin K. Petersen44d92692009-10-15 14:45:27 -04003408
3409 /* Map first 1KB for partition table */
3410 if (scsi_debug_num_parts)
3411 map_region(0, 2);
3412 }
3413
Nicholas Bellinger9b906772010-09-06 17:24:28 -07003414 pseudo_primary = root_device_register("pseudo_0");
3415 if (IS_ERR(pseudo_primary)) {
3416 printk(KERN_WARNING "scsi_debug: root_device_register() error\n");
3417 ret = PTR_ERR(pseudo_primary);
Randy Dunlap6ecaff72006-07-11 20:53:22 -07003418 goto free_vm;
3419 }
3420 ret = bus_register(&pseudo_lld_bus);
3421 if (ret < 0) {
3422 printk(KERN_WARNING "scsi_debug: bus_register error: %d\n",
3423 ret);
3424 goto dev_unreg;
3425 }
3426 ret = driver_register(&sdebug_driverfs_driver);
3427 if (ret < 0) {
3428 printk(KERN_WARNING "scsi_debug: driver_register error: %d\n",
3429 ret);
3430 goto bus_unreg;
3431 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432
Randy Dunlap6ecaff72006-07-11 20:53:22 -07003433 init_all_queued();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435 host_to_add = scsi_debug_add_host;
3436 scsi_debug_add_host = 0;
3437
3438 for (k = 0; k < host_to_add; k++) {
3439 if (sdebug_add_adapter()) {
3440 printk(KERN_ERR "scsi_debug_init: "
3441 "sdebug_add_adapter failed k=%d\n", k);
3442 break;
3443 }
3444 }
3445
3446 if (SCSI_DEBUG_OPT_NOISE & scsi_debug_opts) {
3447 printk(KERN_INFO "scsi_debug_init: built %d host(s)\n",
3448 scsi_debug_add_host);
3449 }
3450 return 0;
Randy Dunlap6ecaff72006-07-11 20:53:22 -07003451
Randy Dunlap6ecaff72006-07-11 20:53:22 -07003452bus_unreg:
3453 bus_unregister(&pseudo_lld_bus);
3454dev_unreg:
Nicholas Bellinger9b906772010-09-06 17:24:28 -07003455 root_device_unregister(pseudo_primary);
Randy Dunlap6ecaff72006-07-11 20:53:22 -07003456free_vm:
Martin K. Petersen44d92692009-10-15 14:45:27 -04003457 if (map_storep)
3458 vfree(map_storep);
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003459 if (dif_storep)
3460 vfree(dif_storep);
Randy Dunlap6ecaff72006-07-11 20:53:22 -07003461 vfree(fake_storep);
3462
3463 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464}
3465
3466static void __exit scsi_debug_exit(void)
3467{
3468 int k = scsi_debug_add_host;
3469
3470 stop_all_queued();
3471 for (; k; k--)
3472 sdebug_remove_adapter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473 driver_unregister(&sdebug_driverfs_driver);
3474 bus_unregister(&pseudo_lld_bus);
Nicholas Bellinger9b906772010-09-06 17:24:28 -07003475 root_device_unregister(pseudo_primary);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003477 if (dif_storep)
3478 vfree(dif_storep);
3479
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480 vfree(fake_storep);
3481}
3482
3483device_initcall(scsi_debug_init);
3484module_exit(scsi_debug_exit);
3485
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486static void sdebug_release_adapter(struct device * dev)
3487{
3488 struct sdebug_host_info *sdbg_host;
3489
3490 sdbg_host = to_sdebug_host(dev);
3491 kfree(sdbg_host);
3492}
3493
3494static int sdebug_add_adapter(void)
3495{
3496 int k, devs_per_host;
3497 int error = 0;
3498 struct sdebug_host_info *sdbg_host;
FUJITA Tomonori8b40228f2008-03-20 11:09:18 +09003499 struct sdebug_dev_info *sdbg_devinfo, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500
Douglas Gilbertc65b1442006-06-06 00:11:24 -04003501 sdbg_host = kzalloc(sizeof(*sdbg_host),GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502 if (NULL == sdbg_host) {
3503 printk(KERN_ERR "%s: out of memory at line %d\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07003504 __func__, __LINE__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505 return -ENOMEM;
3506 }
3507
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508 INIT_LIST_HEAD(&sdbg_host->dev_info_list);
3509
3510 devs_per_host = scsi_debug_num_tgts * scsi_debug_max_luns;
3511 for (k = 0; k < devs_per_host; k++) {
FUJITA Tomonori5cb2fc02008-03-20 11:09:16 +09003512 sdbg_devinfo = sdebug_device_create(sdbg_host, GFP_KERNEL);
3513 if (!sdbg_devinfo) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514 printk(KERN_ERR "%s: out of memory at line %d\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07003515 __func__, __LINE__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516 error = -ENOMEM;
3517 goto clean;
3518 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519 }
3520
3521 spin_lock(&sdebug_host_list_lock);
3522 list_add_tail(&sdbg_host->host_list, &sdebug_host_list);
3523 spin_unlock(&sdebug_host_list_lock);
3524
3525 sdbg_host->dev.bus = &pseudo_lld_bus;
Nicholas Bellinger9b906772010-09-06 17:24:28 -07003526 sdbg_host->dev.parent = pseudo_primary;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527 sdbg_host->dev.release = &sdebug_release_adapter;
Kay Sievers71610f52008-12-03 22:41:36 +01003528 dev_set_name(&sdbg_host->dev, "adapter%d", scsi_debug_add_host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529
3530 error = device_register(&sdbg_host->dev);
3531
3532 if (error)
3533 goto clean;
3534
3535 ++scsi_debug_add_host;
3536 return error;
3537
3538clean:
FUJITA Tomonori8b40228f2008-03-20 11:09:18 +09003539 list_for_each_entry_safe(sdbg_devinfo, tmp, &sdbg_host->dev_info_list,
3540 dev_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541 list_del(&sdbg_devinfo->dev_list);
3542 kfree(sdbg_devinfo);
3543 }
3544
3545 kfree(sdbg_host);
3546 return error;
3547}
3548
3549static void sdebug_remove_adapter(void)
3550{
3551 struct sdebug_host_info * sdbg_host = NULL;
3552
3553 spin_lock(&sdebug_host_list_lock);
3554 if (!list_empty(&sdebug_host_list)) {
3555 sdbg_host = list_entry(sdebug_host_list.prev,
3556 struct sdebug_host_info, host_list);
3557 list_del(&sdbg_host->host_list);
3558 }
3559 spin_unlock(&sdebug_host_list_lock);
3560
3561 if (!sdbg_host)
3562 return;
3563
3564 device_unregister(&sdbg_host->dev);
3565 --scsi_debug_add_host;
3566}
3567
FUJITA Tomonori639db472008-03-20 11:09:19 +09003568static
Jeff Garzikf2812332010-11-16 02:10:29 -05003569int scsi_debug_queuecommand_lck(struct scsi_cmnd *SCpnt, done_funct_t done)
FUJITA Tomonori639db472008-03-20 11:09:19 +09003570{
3571 unsigned char *cmd = (unsigned char *) SCpnt->cmnd;
3572 int len, k;
3573 unsigned int num;
3574 unsigned long long lba;
Martin K. Petersen395cef02009-09-18 17:33:03 -04003575 u32 ei_lba;
FUJITA Tomonori639db472008-03-20 11:09:19 +09003576 int errsts = 0;
3577 int target = SCpnt->device->id;
3578 struct sdebug_dev_info *devip = NULL;
3579 int inj_recovered = 0;
3580 int inj_transport = 0;
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003581 int inj_dif = 0;
3582 int inj_dix = 0;
FUJITA Tomonori639db472008-03-20 11:09:19 +09003583 int delay_override = 0;
Martin K. Petersen44d92692009-10-15 14:45:27 -04003584 int unmap = 0;
FUJITA Tomonori639db472008-03-20 11:09:19 +09003585
3586 scsi_set_resid(SCpnt, 0);
3587 if ((SCSI_DEBUG_OPT_NOISE & scsi_debug_opts) && cmd) {
3588 printk(KERN_INFO "scsi_debug: cmd ");
3589 for (k = 0, len = SCpnt->cmd_len; k < len; ++k)
3590 printk("%02x ", (int)cmd[k]);
3591 printk("\n");
3592 }
3593
3594 if (target == SCpnt->device->host->hostt->this_id) {
3595 printk(KERN_INFO "scsi_debug: initiator's id used as "
3596 "target!\n");
3597 return schedule_resp(SCpnt, NULL, done,
3598 DID_NO_CONNECT << 16, 0);
3599 }
3600
3601 if ((SCpnt->device->lun >= scsi_debug_max_luns) &&
3602 (SCpnt->device->lun != SAM2_WLUN_REPORT_LUNS))
3603 return schedule_resp(SCpnt, NULL, done,
3604 DID_NO_CONNECT << 16, 0);
3605 devip = devInfoReg(SCpnt->device);
3606 if (NULL == devip)
3607 return schedule_resp(SCpnt, NULL, done,
3608 DID_NO_CONNECT << 16, 0);
3609
3610 if ((scsi_debug_every_nth != 0) &&
3611 (++scsi_debug_cmnd_count >= abs(scsi_debug_every_nth))) {
3612 scsi_debug_cmnd_count = 0;
3613 if (scsi_debug_every_nth < -1)
3614 scsi_debug_every_nth = -1;
3615 if (SCSI_DEBUG_OPT_TIMEOUT & scsi_debug_opts)
3616 return 0; /* ignore command causing timeout */
Martin K. Petersen18a4d0a2012-02-09 13:48:53 -05003617 else if (SCSI_DEBUG_OPT_MAC_TIMEOUT & scsi_debug_opts &&
3618 scsi_medium_access_command(SCpnt))
3619 return 0; /* time out reads and writes */
FUJITA Tomonori639db472008-03-20 11:09:19 +09003620 else if (SCSI_DEBUG_OPT_RECOVERED_ERR & scsi_debug_opts)
3621 inj_recovered = 1; /* to reads and writes below */
3622 else if (SCSI_DEBUG_OPT_TRANSPORT_ERR & scsi_debug_opts)
3623 inj_transport = 1; /* to reads and writes below */
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003624 else if (SCSI_DEBUG_OPT_DIF_ERR & scsi_debug_opts)
3625 inj_dif = 1; /* to reads and writes below */
3626 else if (SCSI_DEBUG_OPT_DIX_ERR & scsi_debug_opts)
3627 inj_dix = 1; /* to reads and writes below */
FUJITA Tomonori639db472008-03-20 11:09:19 +09003628 }
3629
3630 if (devip->wlun) {
3631 switch (*cmd) {
3632 case INQUIRY:
3633 case REQUEST_SENSE:
3634 case TEST_UNIT_READY:
3635 case REPORT_LUNS:
3636 break; /* only allowable wlun commands */
3637 default:
3638 if (SCSI_DEBUG_OPT_NOISE & scsi_debug_opts)
3639 printk(KERN_INFO "scsi_debug: Opcode: 0x%x "
3640 "not supported for wlun\n", *cmd);
3641 mk_sense_buffer(devip, ILLEGAL_REQUEST,
3642 INVALID_OPCODE, 0);
3643 errsts = check_condition_result;
3644 return schedule_resp(SCpnt, devip, done, errsts,
3645 0);
3646 }
3647 }
3648
3649 switch (*cmd) {
3650 case INQUIRY: /* mandatory, ignore unit attention */
3651 delay_override = 1;
3652 errsts = resp_inquiry(SCpnt, target, devip);
3653 break;
3654 case REQUEST_SENSE: /* mandatory, ignore unit attention */
3655 delay_override = 1;
3656 errsts = resp_requests(SCpnt, devip);
3657 break;
3658 case REZERO_UNIT: /* actually this is REWIND for SSC */
3659 case START_STOP:
3660 errsts = resp_start_stop(SCpnt, devip);
3661 break;
3662 case ALLOW_MEDIUM_REMOVAL:
3663 errsts = check_readiness(SCpnt, 1, devip);
3664 if (errsts)
3665 break;
3666 if (SCSI_DEBUG_OPT_NOISE & scsi_debug_opts)
3667 printk(KERN_INFO "scsi_debug: Medium removal %s\n",
3668 cmd[4] ? "inhibited" : "enabled");
3669 break;
3670 case SEND_DIAGNOSTIC: /* mandatory */
3671 errsts = check_readiness(SCpnt, 1, devip);
3672 break;
3673 case TEST_UNIT_READY: /* mandatory */
3674 delay_override = 1;
3675 errsts = check_readiness(SCpnt, 0, devip);
3676 break;
3677 case RESERVE:
3678 errsts = check_readiness(SCpnt, 1, devip);
3679 break;
3680 case RESERVE_10:
3681 errsts = check_readiness(SCpnt, 1, devip);
3682 break;
3683 case RELEASE:
3684 errsts = check_readiness(SCpnt, 1, devip);
3685 break;
3686 case RELEASE_10:
3687 errsts = check_readiness(SCpnt, 1, devip);
3688 break;
3689 case READ_CAPACITY:
3690 errsts = resp_readcap(SCpnt, devip);
3691 break;
3692 case SERVICE_ACTION_IN:
Martin K. Petersen44d92692009-10-15 14:45:27 -04003693 if (cmd[1] == SAI_READ_CAPACITY_16)
3694 errsts = resp_readcap16(SCpnt, devip);
3695 else if (cmd[1] == SAI_GET_LBA_STATUS) {
3696
Martin K. Petersen5b94e232011-03-08 02:08:11 -05003697 if (scsi_debug_lbp() == 0) {
Martin K. Petersen44d92692009-10-15 14:45:27 -04003698 mk_sense_buffer(devip, ILLEGAL_REQUEST,
3699 INVALID_COMMAND_OPCODE, 0);
3700 errsts = check_condition_result;
3701 } else
3702 errsts = resp_get_lba_status(SCpnt, devip);
3703 } else {
FUJITA Tomonori639db472008-03-20 11:09:19 +09003704 mk_sense_buffer(devip, ILLEGAL_REQUEST,
3705 INVALID_OPCODE, 0);
3706 errsts = check_condition_result;
FUJITA Tomonori639db472008-03-20 11:09:19 +09003707 }
FUJITA Tomonori639db472008-03-20 11:09:19 +09003708 break;
3709 case MAINTENANCE_IN:
3710 if (MI_REPORT_TARGET_PGS != cmd[1]) {
3711 mk_sense_buffer(devip, ILLEGAL_REQUEST,
3712 INVALID_OPCODE, 0);
3713 errsts = check_condition_result;
3714 break;
3715 }
3716 errsts = resp_report_tgtpgs(SCpnt, devip);
3717 break;
3718 case READ_16:
3719 case READ_12:
3720 case READ_10:
Martin K. Petersen395cef02009-09-18 17:33:03 -04003721 /* READ{10,12,16} and DIF Type 2 are natural enemies */
3722 if (scsi_debug_dif == SD_DIF_TYPE2_PROTECTION &&
3723 cmd[1] & 0xe0) {
3724 mk_sense_buffer(devip, ILLEGAL_REQUEST,
3725 INVALID_COMMAND_OPCODE, 0);
3726 errsts = check_condition_result;
3727 break;
3728 }
3729
3730 if ((scsi_debug_dif == SD_DIF_TYPE1_PROTECTION ||
3731 scsi_debug_dif == SD_DIF_TYPE3_PROTECTION) &&
3732 (cmd[1] & 0xe0) == 0)
3733 printk(KERN_ERR "Unprotected RD/WR to DIF device\n");
3734
3735 /* fall through */
FUJITA Tomonori639db472008-03-20 11:09:19 +09003736 case READ_6:
Martin K. Petersen395cef02009-09-18 17:33:03 -04003737read:
FUJITA Tomonori639db472008-03-20 11:09:19 +09003738 errsts = check_readiness(SCpnt, 0, devip);
3739 if (errsts)
3740 break;
3741 if (scsi_debug_fake_rw)
3742 break;
Martin K. Petersen395cef02009-09-18 17:33:03 -04003743 get_data_transfer_info(cmd, &lba, &num, &ei_lba);
3744 errsts = resp_read(SCpnt, lba, num, devip, ei_lba);
FUJITA Tomonori639db472008-03-20 11:09:19 +09003745 if (inj_recovered && (0 == errsts)) {
3746 mk_sense_buffer(devip, RECOVERED_ERROR,
3747 THRESHOLD_EXCEEDED, 0);
3748 errsts = check_condition_result;
3749 } else if (inj_transport && (0 == errsts)) {
3750 mk_sense_buffer(devip, ABORTED_COMMAND,
3751 TRANSPORT_PROBLEM, ACK_NAK_TO);
3752 errsts = check_condition_result;
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003753 } else if (inj_dif && (0 == errsts)) {
3754 mk_sense_buffer(devip, ABORTED_COMMAND, 0x10, 1);
3755 errsts = illegal_condition_result;
3756 } else if (inj_dix && (0 == errsts)) {
3757 mk_sense_buffer(devip, ILLEGAL_REQUEST, 0x10, 1);
3758 errsts = illegal_condition_result;
FUJITA Tomonori639db472008-03-20 11:09:19 +09003759 }
3760 break;
3761 case REPORT_LUNS: /* mandatory, ignore unit attention */
3762 delay_override = 1;
3763 errsts = resp_report_luns(SCpnt, devip);
3764 break;
3765 case VERIFY: /* 10 byte SBC-2 command */
3766 errsts = check_readiness(SCpnt, 0, devip);
3767 break;
3768 case WRITE_16:
3769 case WRITE_12:
3770 case WRITE_10:
Martin K. Petersen395cef02009-09-18 17:33:03 -04003771 /* WRITE{10,12,16} and DIF Type 2 are natural enemies */
3772 if (scsi_debug_dif == SD_DIF_TYPE2_PROTECTION &&
3773 cmd[1] & 0xe0) {
3774 mk_sense_buffer(devip, ILLEGAL_REQUEST,
3775 INVALID_COMMAND_OPCODE, 0);
3776 errsts = check_condition_result;
3777 break;
3778 }
3779
3780 if ((scsi_debug_dif == SD_DIF_TYPE1_PROTECTION ||
3781 scsi_debug_dif == SD_DIF_TYPE3_PROTECTION) &&
3782 (cmd[1] & 0xe0) == 0)
3783 printk(KERN_ERR "Unprotected RD/WR to DIF device\n");
3784
3785 /* fall through */
FUJITA Tomonori639db472008-03-20 11:09:19 +09003786 case WRITE_6:
Martin K. Petersen395cef02009-09-18 17:33:03 -04003787write:
FUJITA Tomonori639db472008-03-20 11:09:19 +09003788 errsts = check_readiness(SCpnt, 0, devip);
3789 if (errsts)
3790 break;
3791 if (scsi_debug_fake_rw)
3792 break;
Martin K. Petersen395cef02009-09-18 17:33:03 -04003793 get_data_transfer_info(cmd, &lba, &num, &ei_lba);
3794 errsts = resp_write(SCpnt, lba, num, devip, ei_lba);
FUJITA Tomonori639db472008-03-20 11:09:19 +09003795 if (inj_recovered && (0 == errsts)) {
3796 mk_sense_buffer(devip, RECOVERED_ERROR,
3797 THRESHOLD_EXCEEDED, 0);
3798 errsts = check_condition_result;
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003799 } else if (inj_dif && (0 == errsts)) {
3800 mk_sense_buffer(devip, ABORTED_COMMAND, 0x10, 1);
3801 errsts = illegal_condition_result;
3802 } else if (inj_dix && (0 == errsts)) {
3803 mk_sense_buffer(devip, ILLEGAL_REQUEST, 0x10, 1);
3804 errsts = illegal_condition_result;
FUJITA Tomonori639db472008-03-20 11:09:19 +09003805 }
3806 break;
Martin K. Petersen44d92692009-10-15 14:45:27 -04003807 case WRITE_SAME_16:
Martin K. Petersen5b94e232011-03-08 02:08:11 -05003808 case WRITE_SAME:
Martin K. Petersen60147592010-08-19 11:49:00 -04003809 if (cmd[1] & 0x8) {
Martin K. Petersen5b94e232011-03-08 02:08:11 -05003810 if ((*cmd == WRITE_SAME_16 && scsi_debug_lbpws == 0) ||
3811 (*cmd == WRITE_SAME && scsi_debug_lbpws10 == 0)) {
Martin K. Petersen60147592010-08-19 11:49:00 -04003812 mk_sense_buffer(devip, ILLEGAL_REQUEST,
3813 INVALID_FIELD_IN_CDB, 0);
3814 errsts = check_condition_result;
3815 } else
3816 unmap = 1;
3817 }
3818 if (errsts)
3819 break;
Martin K. Petersen44d92692009-10-15 14:45:27 -04003820 errsts = check_readiness(SCpnt, 0, devip);
3821 if (errsts)
3822 break;
3823 get_data_transfer_info(cmd, &lba, &num, &ei_lba);
3824 errsts = resp_write_same(SCpnt, lba, num, devip, ei_lba, unmap);
3825 break;
3826 case UNMAP:
3827 errsts = check_readiness(SCpnt, 0, devip);
3828 if (errsts)
3829 break;
3830
Martin K. Petersen5b94e232011-03-08 02:08:11 -05003831 if (scsi_debug_unmap_max_desc == 0 || scsi_debug_lbpu == 0) {
Martin K. Petersen44d92692009-10-15 14:45:27 -04003832 mk_sense_buffer(devip, ILLEGAL_REQUEST,
3833 INVALID_COMMAND_OPCODE, 0);
3834 errsts = check_condition_result;
3835 } else
3836 errsts = resp_unmap(SCpnt, devip);
3837 break;
FUJITA Tomonori639db472008-03-20 11:09:19 +09003838 case MODE_SENSE:
3839 case MODE_SENSE_10:
3840 errsts = resp_mode_sense(SCpnt, target, devip);
3841 break;
3842 case MODE_SELECT:
3843 errsts = resp_mode_select(SCpnt, 1, devip);
3844 break;
3845 case MODE_SELECT_10:
3846 errsts = resp_mode_select(SCpnt, 0, devip);
3847 break;
3848 case LOG_SENSE:
3849 errsts = resp_log_sense(SCpnt, devip);
3850 break;
3851 case SYNCHRONIZE_CACHE:
3852 delay_override = 1;
3853 errsts = check_readiness(SCpnt, 0, devip);
3854 break;
3855 case WRITE_BUFFER:
3856 errsts = check_readiness(SCpnt, 1, devip);
3857 break;
3858 case XDWRITEREAD_10:
3859 if (!scsi_bidi_cmnd(SCpnt)) {
3860 mk_sense_buffer(devip, ILLEGAL_REQUEST,
3861 INVALID_FIELD_IN_CDB, 0);
3862 errsts = check_condition_result;
3863 break;
3864 }
3865
3866 errsts = check_readiness(SCpnt, 0, devip);
3867 if (errsts)
3868 break;
3869 if (scsi_debug_fake_rw)
3870 break;
Martin K. Petersen395cef02009-09-18 17:33:03 -04003871 get_data_transfer_info(cmd, &lba, &num, &ei_lba);
3872 errsts = resp_read(SCpnt, lba, num, devip, ei_lba);
FUJITA Tomonori639db472008-03-20 11:09:19 +09003873 if (errsts)
3874 break;
Martin K. Petersen395cef02009-09-18 17:33:03 -04003875 errsts = resp_write(SCpnt, lba, num, devip, ei_lba);
FUJITA Tomonori639db472008-03-20 11:09:19 +09003876 if (errsts)
3877 break;
3878 errsts = resp_xdwriteread(SCpnt, lba, num, devip);
3879 break;
Martin K. Petersen395cef02009-09-18 17:33:03 -04003880 case VARIABLE_LENGTH_CMD:
3881 if (scsi_debug_dif == SD_DIF_TYPE2_PROTECTION) {
3882
3883 if ((cmd[10] & 0xe0) == 0)
3884 printk(KERN_ERR
3885 "Unprotected RD/WR to DIF device\n");
3886
3887 if (cmd[9] == READ_32) {
3888 BUG_ON(SCpnt->cmd_len < 32);
3889 goto read;
3890 }
3891
3892 if (cmd[9] == WRITE_32) {
3893 BUG_ON(SCpnt->cmd_len < 32);
3894 goto write;
3895 }
3896 }
3897
3898 mk_sense_buffer(devip, ILLEGAL_REQUEST,
3899 INVALID_FIELD_IN_CDB, 0);
3900 errsts = check_condition_result;
3901 break;
3902
FUJITA Tomonori639db472008-03-20 11:09:19 +09003903 default:
3904 if (SCSI_DEBUG_OPT_NOISE & scsi_debug_opts)
3905 printk(KERN_INFO "scsi_debug: Opcode: 0x%x not "
3906 "supported\n", *cmd);
3907 errsts = check_readiness(SCpnt, 1, devip);
3908 if (errsts)
3909 break; /* Unit attention takes precedence */
3910 mk_sense_buffer(devip, ILLEGAL_REQUEST, INVALID_OPCODE, 0);
3911 errsts = check_condition_result;
3912 break;
3913 }
3914 return schedule_resp(SCpnt, devip, done, errsts,
3915 (delay_override ? 0 : scsi_debug_delay));
3916}
3917
Jeff Garzikf2812332010-11-16 02:10:29 -05003918static DEF_SCSI_QCMD(scsi_debug_queuecommand)
3919
FUJITA Tomonori9e603ca2008-03-02 18:30:16 +09003920static struct scsi_host_template sdebug_driver_template = {
Al Viroc8ed5552013-03-31 01:46:06 -04003921 .show_info = scsi_debug_show_info,
3922 .write_info = scsi_debug_write_info,
FUJITA Tomonori9e603ca2008-03-02 18:30:16 +09003923 .proc_name = sdebug_proc_name,
3924 .name = "SCSI DEBUG",
3925 .info = scsi_debug_info,
3926 .slave_alloc = scsi_debug_slave_alloc,
3927 .slave_configure = scsi_debug_slave_configure,
3928 .slave_destroy = scsi_debug_slave_destroy,
3929 .ioctl = scsi_debug_ioctl,
3930 .queuecommand = scsi_debug_queuecommand,
3931 .eh_abort_handler = scsi_debug_abort,
3932 .eh_bus_reset_handler = scsi_debug_bus_reset,
3933 .eh_device_reset_handler = scsi_debug_device_reset,
3934 .eh_host_reset_handler = scsi_debug_host_reset,
3935 .bios_param = scsi_debug_biosparam,
3936 .can_queue = SCSI_DEBUG_CANQUEUE,
3937 .this_id = 7,
3938 .sg_tablesize = 256,
3939 .cmd_per_lun = 16,
3940 .max_sectors = 0xffff,
3941 .use_clustering = DISABLE_CLUSTERING,
3942 .module = THIS_MODULE,
3943};
3944
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945static int sdebug_driver_probe(struct device * dev)
3946{
3947 int error = 0;
3948 struct sdebug_host_info *sdbg_host;
3949 struct Scsi_Host *hpnt;
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003950 int host_prot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951
3952 sdbg_host = to_sdebug_host(dev);
3953
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -04003954 sdebug_driver_template.can_queue = scsi_debug_max_queue;
3955 hpnt = scsi_host_alloc(&sdebug_driver_template, sizeof(sdbg_host));
3956 if (NULL == hpnt) {
3957 printk(KERN_ERR "%s: scsi_register failed\n", __func__);
3958 error = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959 return error;
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -04003960 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961
3962 sdbg_host->shost = hpnt;
3963 *((struct sdebug_host_info **)hpnt->hostdata) = sdbg_host;
3964 if ((hpnt->this_id >= 0) && (scsi_debug_num_tgts > hpnt->this_id))
3965 hpnt->max_id = scsi_debug_num_tgts + 1;
3966 else
3967 hpnt->max_id = scsi_debug_num_tgts;
Douglas Gilbertc65b1442006-06-06 00:11:24 -04003968 hpnt->max_lun = SAM2_WLUN_REPORT_LUNS; /* = scsi_debug_max_luns; */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003970 host_prot = 0;
3971
3972 switch (scsi_debug_dif) {
3973
3974 case SD_DIF_TYPE1_PROTECTION:
3975 host_prot = SHOST_DIF_TYPE1_PROTECTION;
3976 if (scsi_debug_dix)
3977 host_prot |= SHOST_DIX_TYPE1_PROTECTION;
3978 break;
3979
3980 case SD_DIF_TYPE2_PROTECTION:
3981 host_prot = SHOST_DIF_TYPE2_PROTECTION;
3982 if (scsi_debug_dix)
3983 host_prot |= SHOST_DIX_TYPE2_PROTECTION;
3984 break;
3985
3986 case SD_DIF_TYPE3_PROTECTION:
3987 host_prot = SHOST_DIF_TYPE3_PROTECTION;
3988 if (scsi_debug_dix)
3989 host_prot |= SHOST_DIX_TYPE3_PROTECTION;
3990 break;
3991
3992 default:
3993 if (scsi_debug_dix)
3994 host_prot |= SHOST_DIX_TYPE0_PROTECTION;
3995 break;
3996 }
3997
3998 scsi_host_set_prot(hpnt, host_prot);
3999
4000 printk(KERN_INFO "scsi_debug: host protection%s%s%s%s%s%s%s\n",
4001 (host_prot & SHOST_DIF_TYPE1_PROTECTION) ? " DIF1" : "",
4002 (host_prot & SHOST_DIF_TYPE2_PROTECTION) ? " DIF2" : "",
4003 (host_prot & SHOST_DIF_TYPE3_PROTECTION) ? " DIF3" : "",
4004 (host_prot & SHOST_DIX_TYPE0_PROTECTION) ? " DIX0" : "",
4005 (host_prot & SHOST_DIX_TYPE1_PROTECTION) ? " DIX1" : "",
4006 (host_prot & SHOST_DIX_TYPE2_PROTECTION) ? " DIX2" : "",
4007 (host_prot & SHOST_DIX_TYPE3_PROTECTION) ? " DIX3" : "");
4008
4009 if (scsi_debug_guard == 1)
4010 scsi_host_set_guard(hpnt, SHOST_DIX_GUARD_IP);
4011 else
4012 scsi_host_set_guard(hpnt, SHOST_DIX_GUARD_CRC);
4013
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014 error = scsi_add_host(hpnt, &sdbg_host->dev);
4015 if (error) {
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07004016 printk(KERN_ERR "%s: scsi_add_host failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017 error = -ENODEV;
4018 scsi_host_put(hpnt);
4019 } else
4020 scsi_scan_host(hpnt);
4021
4022
4023 return error;
4024}
4025
4026static int sdebug_driver_remove(struct device * dev)
4027{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028 struct sdebug_host_info *sdbg_host;
FUJITA Tomonori8b40228f2008-03-20 11:09:18 +09004029 struct sdebug_dev_info *sdbg_devinfo, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030
4031 sdbg_host = to_sdebug_host(dev);
4032
4033 if (!sdbg_host) {
4034 printk(KERN_ERR "%s: Unable to locate host info\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07004035 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036 return -ENODEV;
4037 }
4038
4039 scsi_remove_host(sdbg_host->shost);
4040
FUJITA Tomonori8b40228f2008-03-20 11:09:18 +09004041 list_for_each_entry_safe(sdbg_devinfo, tmp, &sdbg_host->dev_info_list,
4042 dev_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043 list_del(&sdbg_devinfo->dev_list);
4044 kfree(sdbg_devinfo);
4045 }
4046
4047 scsi_host_put(sdbg_host->shost);
4048 return 0;
4049}
4050
FUJITA Tomonori8dea0d02008-03-30 00:59:58 +09004051static int pseudo_lld_bus_match(struct device *dev,
4052 struct device_driver *dev_driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004053{
FUJITA Tomonori8dea0d02008-03-30 00:59:58 +09004054 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055}
FUJITA Tomonori8dea0d02008-03-30 00:59:58 +09004056
4057static struct bus_type pseudo_lld_bus = {
4058 .name = "pseudo",
4059 .match = pseudo_lld_bus_match,
4060 .probe = sdebug_driver_probe,
4061 .remove = sdebug_driver_remove,
Akinobu Mita82069372013-10-14 22:48:04 +09004062 .drv_groups = sdebug_drv_groups,
FUJITA Tomonori8dea0d02008-03-30 00:59:58 +09004063};