blob: 1a4288032110ee332db5f2eac4ac5e94a0f1d8ea [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#define UNRECOVERED_READ_ERR 0x11
Douglas Gilbertc65b1442006-06-06 00:11:24 -040068#define PARAMETER_LIST_LENGTH_ERR 0x1a
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#define INVALID_OPCODE 0x20
70#define ADDR_OUT_OF_RANGE 0x21
Martin K. Petersen395cef02009-09-18 17:33:03 -040071#define INVALID_COMMAND_OPCODE 0x20
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#define INVALID_FIELD_IN_CDB 0x24
Douglas Gilbertc65b1442006-06-06 00:11:24 -040073#define INVALID_FIELD_IN_PARAM_LIST 0x26
Linus Torvalds1da177e2005-04-16 15:20:36 -070074#define POWERON_RESET 0x29
75#define SAVING_PARAMS_UNSUP 0x39
Douglas Gilbert6f3cbf52007-01-05 00:05:25 -050076#define TRANSPORT_PROBLEM 0x4b
Douglas Gilbertc65b1442006-06-06 00:11:24 -040077#define THRESHOLD_EXCEEDED 0x5d
78#define LOW_POWER_COND_ON 0x5e
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Douglas Gilbert6f3cbf52007-01-05 00:05:25 -050080/* Additional Sense Code Qualifier (ASCQ) */
81#define ACK_NAK_TO 0x3
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#define SDEBUG_TAGGED_QUEUING 0 /* 0 | MSG_SIMPLE_TAG | MSG_ORDERED_TAG */
84
85/* Default values for driver parameters */
86#define DEF_NUM_HOST 1
87#define DEF_NUM_TGTS 1
88#define DEF_MAX_LUNS 1
89/* With these defaults, this driver will make 1 host with 1 target
90 * (id 0) containing 1 logical unit (lun 0). That is 1 device.
91 */
Martin K. Petersen5b94e232011-03-08 02:08:11 -050092#define DEF_ATO 1
Linus Torvalds1da177e2005-04-16 15:20:36 -070093#define DEF_DELAY 1
94#define DEF_DEV_SIZE_MB 8
Martin K. Petersen5b94e232011-03-08 02:08:11 -050095#define DEF_DIF 0
96#define DEF_DIX 0
97#define DEF_D_SENSE 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070098#define DEF_EVERY_NTH 0
Martin K. Petersen5b94e232011-03-08 02:08:11 -050099#define DEF_FAKE_RW 0
100#define DEF_GUARD 0
101#define DEF_LBPU 0
102#define DEF_LBPWS 0
103#define DEF_LBPWS10 0
Eric Sandeenbe1dd782012-03-08 00:03:59 -0600104#define DEF_LBPRZ 1
Martin K. Petersen5b94e232011-03-08 02:08:11 -0500105#define DEF_LOWEST_ALIGNED 0
106#define DEF_NO_LUN_0 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107#define DEF_NUM_PARTS 0
108#define DEF_OPTS 0
Martin K. Petersene308b3d2010-03-23 01:12:27 -0400109#define DEF_OPT_BLKS 64
Martin K. Petersen5b94e232011-03-08 02:08:11 -0500110#define DEF_PHYSBLK_EXP 0
111#define DEF_PTYPE 0
Martin Pittd9867882012-09-06 12:04:33 +0200112#define DEF_REMOVABLE false
Martin K. Petersen5b94e232011-03-08 02:08:11 -0500113#define DEF_SCSI_LEVEL 5 /* INQUIRY, byte2 [5->SPC-3] */
114#define DEF_SECTOR_SIZE 512
115#define DEF_UNMAP_ALIGNMENT 0
116#define DEF_UNMAP_GRANULARITY 1
Martin K. Petersen60147592010-08-19 11:49:00 -0400117#define DEF_UNMAP_MAX_BLOCKS 0xFFFFFFFF
118#define DEF_UNMAP_MAX_DESC 256
Martin K. Petersen5b94e232011-03-08 02:08:11 -0500119#define DEF_VIRTUAL_GB 0
120#define DEF_VPD_USE_HOSTNO 1
121#define DEF_WRITESAME_LENGTH 0xFFFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123/* bit mask values for scsi_debug_opts */
124#define SCSI_DEBUG_OPT_NOISE 1
125#define SCSI_DEBUG_OPT_MEDIUM_ERR 2
126#define SCSI_DEBUG_OPT_TIMEOUT 4
127#define SCSI_DEBUG_OPT_RECOVERED_ERR 8
Douglas Gilbert6f3cbf52007-01-05 00:05:25 -0500128#define SCSI_DEBUG_OPT_TRANSPORT_ERR 16
Martin K. Petersenc6a44282009-01-04 03:08:19 -0500129#define SCSI_DEBUG_OPT_DIF_ERR 32
130#define SCSI_DEBUG_OPT_DIX_ERR 64
Martin K. Petersen18a4d0a2012-02-09 13:48:53 -0500131#define SCSI_DEBUG_OPT_MAC_TIMEOUT 128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132/* When "every_nth" > 0 then modulo "every_nth" commands:
133 * - a no response is simulated if SCSI_DEBUG_OPT_TIMEOUT is set
134 * - a RECOVERED_ERROR is simulated on successful read and write
135 * commands if SCSI_DEBUG_OPT_RECOVERED_ERR is set.
Douglas Gilbert6f3cbf52007-01-05 00:05:25 -0500136 * - a TRANSPORT_ERROR is simulated on successful read and write
137 * commands if SCSI_DEBUG_OPT_TRANSPORT_ERR is set.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 *
139 * When "every_nth" < 0 then after "- every_nth" commands:
140 * - a no response is simulated if SCSI_DEBUG_OPT_TIMEOUT is set
141 * - a RECOVERED_ERROR is simulated on successful read and write
142 * commands if SCSI_DEBUG_OPT_RECOVERED_ERR is set.
Douglas Gilbert6f3cbf52007-01-05 00:05:25 -0500143 * - a TRANSPORT_ERROR is simulated on successful read and write
144 * commands if SCSI_DEBUG_OPT_TRANSPORT_ERR is set.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 * This will continue until some other action occurs (e.g. the user
146 * writing a new value (other than -1 or 1) to every_nth via sysfs).
147 */
148
149/* when 1==SCSI_DEBUG_OPT_MEDIUM_ERR, a medium error is simulated at this
150 * sector on read commands: */
151#define OPT_MEDIUM_ERR_ADDR 0x1234 /* that's sector 4660 in decimal */
Douglas Gilbert32f7ef72011-03-11 10:43:35 -0500152#define OPT_MEDIUM_ERR_NUM 10 /* number of consecutive medium errs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154/* If REPORT LUNS has luns >= 256 it can choose "flat space" (value 1)
155 * or "peripheral device" addressing (value 0) */
156#define SAM2_LUN_ADDRESS_METHOD 0
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400157#define SAM2_WLUN_REPORT_LUNS 0xc101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -0400159/* Can queue up to this number of commands. Typically commands that
160 * that have a non-zero delay are queued. */
161#define SCSI_DEBUG_CANQUEUE 255
162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163static int scsi_debug_add_host = DEF_NUM_HOST;
Martin K. Petersen5b94e232011-03-08 02:08:11 -0500164static int scsi_debug_ato = DEF_ATO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165static int scsi_debug_delay = DEF_DELAY;
166static int scsi_debug_dev_size_mb = DEF_DEV_SIZE_MB;
Martin K. Petersen5b94e232011-03-08 02:08:11 -0500167static int scsi_debug_dif = DEF_DIF;
168static int scsi_debug_dix = DEF_DIX;
169static int scsi_debug_dsense = DEF_D_SENSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170static int scsi_debug_every_nth = DEF_EVERY_NTH;
Martin K. Petersen5b94e232011-03-08 02:08:11 -0500171static int scsi_debug_fake_rw = DEF_FAKE_RW;
Akinobu Mita68aee7b2013-09-18 21:27:27 +0900172static unsigned int scsi_debug_guard = DEF_GUARD;
Martin K. Petersen5b94e232011-03-08 02:08:11 -0500173static int scsi_debug_lowest_aligned = DEF_LOWEST_ALIGNED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174static int scsi_debug_max_luns = DEF_MAX_LUNS;
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -0400175static int scsi_debug_max_queue = SCSI_DEBUG_CANQUEUE;
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400176static int scsi_debug_no_lun_0 = DEF_NO_LUN_0;
Martin K. Petersen5b94e232011-03-08 02:08:11 -0500177static int scsi_debug_no_uld = 0;
178static int scsi_debug_num_parts = DEF_NUM_PARTS;
179static int scsi_debug_num_tgts = DEF_NUM_TGTS; /* targets per host */
Martin K. Petersene308b3d2010-03-23 01:12:27 -0400180static int scsi_debug_opt_blks = DEF_OPT_BLKS;
Martin K. Petersen5b94e232011-03-08 02:08:11 -0500181static int scsi_debug_opts = DEF_OPTS;
182static int scsi_debug_physblk_exp = DEF_PHYSBLK_EXP;
183static int scsi_debug_ptype = DEF_PTYPE; /* SCSI peripheral type (0==disk) */
184static int scsi_debug_scsi_level = DEF_SCSI_LEVEL;
185static int scsi_debug_sector_size = DEF_SECTOR_SIZE;
186static int scsi_debug_virtual_gb = DEF_VIRTUAL_GB;
187static int scsi_debug_vpd_use_hostno = DEF_VPD_USE_HOSTNO;
188static unsigned int scsi_debug_lbpu = DEF_LBPU;
189static unsigned int scsi_debug_lbpws = DEF_LBPWS;
190static unsigned int scsi_debug_lbpws10 = DEF_LBPWS10;
Eric Sandeenbe1dd782012-03-08 00:03:59 -0600191static unsigned int scsi_debug_lbprz = DEF_LBPRZ;
Martin K. Petersen60147592010-08-19 11:49:00 -0400192static unsigned int scsi_debug_unmap_alignment = DEF_UNMAP_ALIGNMENT;
Martin K. Petersen5b94e232011-03-08 02:08:11 -0500193static unsigned int scsi_debug_unmap_granularity = DEF_UNMAP_GRANULARITY;
194static unsigned int scsi_debug_unmap_max_blocks = DEF_UNMAP_MAX_BLOCKS;
195static unsigned int scsi_debug_unmap_max_desc = DEF_UNMAP_MAX_DESC;
196static unsigned int scsi_debug_write_same_length = DEF_WRITESAME_LENGTH;
Martin Pittd9867882012-09-06 12:04:33 +0200197static bool scsi_debug_removable = DEF_REMOVABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199static int scsi_debug_cmnd_count = 0;
200
201#define DEV_READONLY(TGT) (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400203static unsigned int sdebug_store_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204static sector_t sdebug_capacity; /* in sectors */
205
206/* old BIOS stuff, kernel may get rid of them but some mode sense pages
207 may still need them */
208static int sdebug_heads; /* heads per disk */
209static int sdebug_cylinders_per; /* cylinders per surface */
210static int sdebug_sectors_per; /* sectors per cylinder */
211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212#define SDEBUG_MAX_PARTS 4
213
214#define SDEBUG_SENSE_LEN 32
215
Martin K. Petersen395cef02009-09-18 17:33:03 -0400216#define SCSI_DEBUG_MAX_CMD_LEN 32
FUJITA Tomonori9e603ca2008-03-02 18:30:16 +0900217
Martin K. Petersen5b94e232011-03-08 02:08:11 -0500218static unsigned int scsi_debug_lbp(void)
219{
220 return scsi_debug_lbpu | scsi_debug_lbpws | scsi_debug_lbpws10;
221}
222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223struct sdebug_dev_info {
224 struct list_head dev_list;
225 unsigned char sense_buff[SDEBUG_SENSE_LEN]; /* weak nexus */
226 unsigned int channel;
227 unsigned int target;
228 unsigned int lun;
229 struct sdebug_host_info *sdbg_host;
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400230 unsigned int wlun;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 char reset;
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400232 char stopped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 char used;
234};
235
236struct sdebug_host_info {
237 struct list_head host_list;
238 struct Scsi_Host *shost;
239 struct device dev;
240 struct list_head dev_info_list;
241};
242
243#define to_sdebug_host(d) \
244 container_of(d, struct sdebug_host_info, dev)
245
246static LIST_HEAD(sdebug_host_list);
247static DEFINE_SPINLOCK(sdebug_host_list_lock);
248
249typedef void (* done_funct_t) (struct scsi_cmnd *);
250
251struct sdebug_queued_cmd {
252 int in_use;
253 struct timer_list cmnd_timer;
254 done_funct_t done_funct;
255 struct scsi_cmnd * a_cmnd;
256 int scsi_result;
257};
258static struct sdebug_queued_cmd queued_arr[SCSI_DEBUG_CANQUEUE];
259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260static unsigned char * fake_storep; /* ramdisk storage */
Akinobu Mitae18d8be2013-06-29 17:59:18 +0900261static struct sd_dif_tuple *dif_storep; /* protection info */
Martin K. Petersen44d92692009-10-15 14:45:27 -0400262static void *map_storep; /* provisioning map */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Martin K. Petersen44d92692009-10-15 14:45:27 -0400264static unsigned long map_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265static int num_aborts = 0;
266static int num_dev_resets = 0;
267static int num_bus_resets = 0;
268static int num_host_resets = 0;
Martin K. Petersenc6a44282009-01-04 03:08:19 -0500269static int dix_writes;
270static int dix_reads;
271static int dif_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273static DEFINE_SPINLOCK(queued_arr_lock);
274static DEFINE_RWLOCK(atomic_rw);
275
276static char sdebug_proc_name[] = "scsi_debug";
277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278static struct bus_type pseudo_lld_bus;
279
280static struct device_driver sdebug_driverfs_driver = {
281 .name = sdebug_proc_name,
282 .bus = &pseudo_lld_bus,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283};
284
285static const int check_condition_result =
286 (DRIVER_SENSE << 24) | SAM_STAT_CHECK_CONDITION;
287
Martin K. Petersenc6a44282009-01-04 03:08:19 -0500288static const int illegal_condition_result =
289 (DRIVER_SENSE << 24) | (DID_ABORT << 16) | SAM_STAT_CHECK_CONDITION;
290
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400291static unsigned char ctrl_m_pg[] = {0xa, 10, 2, 0, 0, 0, 0, 0,
292 0, 0, 0x2, 0x4b};
293static unsigned char iec_m_pg[] = {0x1c, 0xa, 0x08, 0, 0, 0, 0, 0,
294 0, 0, 0x0, 0x0};
295
Akinobu Mita14faa942013-09-18 21:27:24 +0900296static void *fake_store(unsigned long long lba)
297{
298 lba = do_div(lba, sdebug_store_sectors);
299
300 return fake_storep + lba * scsi_debug_sector_size;
301}
302
303static struct sd_dif_tuple *dif_store(sector_t sector)
304{
305 sector = do_div(sector, sdebug_store_sectors);
306
307 return dif_storep + sector;
308}
309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310static int sdebug_add_adapter(void);
311static void sdebug_remove_adapter(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
FUJITA Tomonori8dea0d02008-03-30 00:59:58 +0900313static void sdebug_max_tgts_luns(void)
314{
315 struct sdebug_host_info *sdbg_host;
316 struct Scsi_Host *hpnt;
317
318 spin_lock(&sdebug_host_list_lock);
319 list_for_each_entry(sdbg_host, &sdebug_host_list, host_list) {
320 hpnt = sdbg_host->shost;
321 if ((hpnt->this_id >= 0) &&
322 (scsi_debug_num_tgts > hpnt->this_id))
323 hpnt->max_id = scsi_debug_num_tgts + 1;
324 else
325 hpnt->max_id = scsi_debug_num_tgts;
326 /* scsi_debug_max_luns; */
327 hpnt->max_lun = SAM2_WLUN_REPORT_LUNS;
328 }
329 spin_unlock(&sdebug_host_list_lock);
330}
331
332static void mk_sense_buffer(struct sdebug_dev_info *devip, int key,
333 int asc, int asq)
334{
335 unsigned char *sbuff;
336
337 sbuff = devip->sense_buff;
338 memset(sbuff, 0, SDEBUG_SENSE_LEN);
339
340 scsi_build_sense_buffer(scsi_debug_dsense, sbuff, key, asc, asq);
341
342 if (SCSI_DEBUG_OPT_NOISE & scsi_debug_opts)
343 printk(KERN_INFO "scsi_debug: [sense_key,asc,ascq]: "
344 "[0x%x,0x%x,0x%x]\n", key, asc, asq);
345}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
FUJITA Tomonori3de9f942008-01-23 01:31:59 +0900347static void get_data_transfer_info(unsigned char *cmd,
Martin K. Petersen395cef02009-09-18 17:33:03 -0400348 unsigned long long *lba, unsigned int *num,
349 u32 *ei_lba)
FUJITA Tomonori3de9f942008-01-23 01:31:59 +0900350{
Martin K. Petersen395cef02009-09-18 17:33:03 -0400351 *ei_lba = 0;
352
FUJITA Tomonori3de9f942008-01-23 01:31:59 +0900353 switch (*cmd) {
Martin K. Petersen395cef02009-09-18 17:33:03 -0400354 case VARIABLE_LENGTH_CMD:
355 *lba = (u64)cmd[19] | (u64)cmd[18] << 8 |
356 (u64)cmd[17] << 16 | (u64)cmd[16] << 24 |
357 (u64)cmd[15] << 32 | (u64)cmd[14] << 40 |
358 (u64)cmd[13] << 48 | (u64)cmd[12] << 56;
359
360 *ei_lba = (u32)cmd[23] | (u32)cmd[22] << 8 |
361 (u32)cmd[21] << 16 | (u32)cmd[20] << 24;
362
363 *num = (u32)cmd[31] | (u32)cmd[30] << 8 | (u32)cmd[29] << 16 |
364 (u32)cmd[28] << 24;
365 break;
366
Martin K. Petersen44d92692009-10-15 14:45:27 -0400367 case WRITE_SAME_16:
FUJITA Tomonori3de9f942008-01-23 01:31:59 +0900368 case WRITE_16:
369 case READ_16:
FUJITA Tomonorid5cdc982008-03-25 17:04:46 +0900370 *lba = (u64)cmd[9] | (u64)cmd[8] << 8 |
371 (u64)cmd[7] << 16 | (u64)cmd[6] << 24 |
372 (u64)cmd[5] << 32 | (u64)cmd[4] << 40 |
373 (u64)cmd[3] << 48 | (u64)cmd[2] << 56;
374
375 *num = (u32)cmd[13] | (u32)cmd[12] << 8 | (u32)cmd[11] << 16 |
376 (u32)cmd[10] << 24;
FUJITA Tomonori3de9f942008-01-23 01:31:59 +0900377 break;
378 case WRITE_12:
379 case READ_12:
FUJITA Tomonorid5cdc982008-03-25 17:04:46 +0900380 *lba = (u32)cmd[5] | (u32)cmd[4] << 8 | (u32)cmd[3] << 16 |
381 (u32)cmd[2] << 24;
382
383 *num = (u32)cmd[9] | (u32)cmd[8] << 8 | (u32)cmd[7] << 16 |
384 (u32)cmd[6] << 24;
FUJITA Tomonori3de9f942008-01-23 01:31:59 +0900385 break;
Martin K. Petersen44d92692009-10-15 14:45:27 -0400386 case WRITE_SAME:
FUJITA Tomonori3de9f942008-01-23 01:31:59 +0900387 case WRITE_10:
388 case READ_10:
FUJITA Tomonoric639d142008-01-23 01:32:01 +0900389 case XDWRITEREAD_10:
FUJITA Tomonorid5cdc982008-03-25 17:04:46 +0900390 *lba = (u32)cmd[5] | (u32)cmd[4] << 8 | (u32)cmd[3] << 16 |
391 (u32)cmd[2] << 24;
392
393 *num = (u32)cmd[8] | (u32)cmd[7] << 8;
FUJITA Tomonori3de9f942008-01-23 01:31:59 +0900394 break;
395 case WRITE_6:
396 case READ_6:
FUJITA Tomonorid5cdc982008-03-25 17:04:46 +0900397 *lba = (u32)cmd[3] | (u32)cmd[2] << 8 |
398 (u32)(cmd[1] & 0x1f) << 16;
FUJITA Tomonori3de9f942008-01-23 01:31:59 +0900399 *num = (0 == cmd[4]) ? 256 : cmd[4];
400 break;
401 default:
402 break;
403 }
404}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406static int scsi_debug_ioctl(struct scsi_device *dev, int cmd, void __user *arg)
407{
408 if (SCSI_DEBUG_OPT_NOISE & scsi_debug_opts) {
409 printk(KERN_INFO "scsi_debug: ioctl: cmd=0x%x\n", cmd);
410 }
411 return -EINVAL;
412 /* return -ENOTTY; // correct return but upsets fdisk */
413}
414
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400415static int check_readiness(struct scsi_cmnd * SCpnt, int reset_only,
416 struct sdebug_dev_info * devip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417{
418 if (devip->reset) {
419 if (SCSI_DEBUG_OPT_NOISE & scsi_debug_opts)
420 printk(KERN_INFO "scsi_debug: Reporting Unit "
421 "attention: power on reset\n");
422 devip->reset = 0;
423 mk_sense_buffer(devip, UNIT_ATTENTION, POWERON_RESET, 0);
424 return check_condition_result;
425 }
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400426 if ((0 == reset_only) && devip->stopped) {
427 if (SCSI_DEBUG_OPT_NOISE & scsi_debug_opts)
428 printk(KERN_INFO "scsi_debug: Reporting Not "
429 "ready: initializing command required\n");
430 mk_sense_buffer(devip, NOT_READY, LOGICAL_UNIT_NOT_READY,
431 0x2);
432 return check_condition_result;
433 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 return 0;
435}
436
437/* Returns 0 if ok else (DID_ERROR << 16). Sets scp->resid . */
FUJITA Tomonori21a61822008-03-09 13:44:30 +0900438static int fill_from_dev_buffer(struct scsi_cmnd *scp, unsigned char *arr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 int arr_len)
440{
FUJITA Tomonori21a61822008-03-09 13:44:30 +0900441 int act_len;
FUJITA Tomonori072d0bb2008-01-23 01:32:00 +0900442 struct scsi_data_buffer *sdb = scsi_in(scp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
FUJITA Tomonori072d0bb2008-01-23 01:32:00 +0900444 if (!sdb->length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 return 0;
FUJITA Tomonori072d0bb2008-01-23 01:32:00 +0900446 if (!(scsi_bidi_cmnd(scp) || scp->sc_data_direction == DMA_FROM_DEVICE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 return (DID_ERROR << 16);
FUJITA Tomonori21a61822008-03-09 13:44:30 +0900448
449 act_len = sg_copy_from_buffer(sdb->table.sgl, sdb->table.nents,
450 arr, arr_len);
Akinobu Mitaa4517512013-07-08 16:01:57 -0700451 sdb->resid = scsi_bufflen(scp) - act_len;
FUJITA Tomonori21a61822008-03-09 13:44:30 +0900452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 return 0;
454}
455
456/* Returns number of bytes fetched into 'arr' or -1 if error. */
FUJITA Tomonori21a61822008-03-09 13:44:30 +0900457static int fetch_to_dev_buffer(struct scsi_cmnd *scp, unsigned char *arr,
458 int arr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459{
FUJITA Tomonori21a61822008-03-09 13:44:30 +0900460 if (!scsi_bufflen(scp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 return 0;
FUJITA Tomonori072d0bb2008-01-23 01:32:00 +0900462 if (!(scsi_bidi_cmnd(scp) || scp->sc_data_direction == DMA_TO_DEVICE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 return -1;
FUJITA Tomonori21a61822008-03-09 13:44:30 +0900464
465 return scsi_sg_copy_to_buffer(scp, arr, arr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466}
467
468
469static const char * inq_vendor_id = "Linux ";
470static const char * inq_product_id = "scsi_debug ";
471static const char * inq_product_rev = "0004";
472
Hannes Reinecke5a09e392006-10-20 09:58:47 +0200473static int inquiry_evpd_83(unsigned char * arr, int port_group_id,
474 int target_dev_id, int dev_id_num,
475 const char * dev_id_str,
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400476 int dev_id_str_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477{
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400478 int num, port_a;
479 char b[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400481 port_a = target_dev_id + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 /* T10 vendor identifier field format (faked) */
483 arr[0] = 0x2; /* ASCII */
484 arr[1] = 0x1;
485 arr[2] = 0x0;
486 memcpy(&arr[4], inq_vendor_id, 8);
487 memcpy(&arr[12], inq_product_id, 16);
488 memcpy(&arr[28], dev_id_str, dev_id_str_len);
489 num = 8 + 16 + dev_id_str_len;
490 arr[3] = num;
491 num += 4;
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400492 if (dev_id_num >= 0) {
493 /* NAA-5, Logical unit identifier (binary) */
494 arr[num++] = 0x1; /* binary (not necessarily sas) */
495 arr[num++] = 0x3; /* PIV=0, lu, naa */
496 arr[num++] = 0x0;
497 arr[num++] = 0x8;
498 arr[num++] = 0x53; /* naa-5 ieee company id=0x333333 (fake) */
499 arr[num++] = 0x33;
500 arr[num++] = 0x33;
501 arr[num++] = 0x30;
502 arr[num++] = (dev_id_num >> 24);
503 arr[num++] = (dev_id_num >> 16) & 0xff;
504 arr[num++] = (dev_id_num >> 8) & 0xff;
505 arr[num++] = dev_id_num & 0xff;
506 /* Target relative port number */
507 arr[num++] = 0x61; /* proto=sas, binary */
508 arr[num++] = 0x94; /* PIV=1, target port, rel port */
509 arr[num++] = 0x0; /* reserved */
510 arr[num++] = 0x4; /* length */
511 arr[num++] = 0x0; /* reserved */
512 arr[num++] = 0x0; /* reserved */
513 arr[num++] = 0x0;
514 arr[num++] = 0x1; /* relative port A */
515 }
516 /* NAA-5, Target port identifier */
517 arr[num++] = 0x61; /* proto=sas, binary */
518 arr[num++] = 0x93; /* piv=1, target port, naa */
519 arr[num++] = 0x0;
520 arr[num++] = 0x8;
521 arr[num++] = 0x52; /* naa-5, company id=0x222222 (fake) */
522 arr[num++] = 0x22;
523 arr[num++] = 0x22;
524 arr[num++] = 0x20;
525 arr[num++] = (port_a >> 24);
526 arr[num++] = (port_a >> 16) & 0xff;
527 arr[num++] = (port_a >> 8) & 0xff;
528 arr[num++] = port_a & 0xff;
Hannes Reinecke5a09e392006-10-20 09:58:47 +0200529 /* NAA-5, Target port group identifier */
530 arr[num++] = 0x61; /* proto=sas, binary */
531 arr[num++] = 0x95; /* piv=1, target port group id */
532 arr[num++] = 0x0;
533 arr[num++] = 0x4;
534 arr[num++] = 0;
535 arr[num++] = 0;
536 arr[num++] = (port_group_id >> 8) & 0xff;
537 arr[num++] = port_group_id & 0xff;
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400538 /* NAA-5, Target device identifier */
539 arr[num++] = 0x61; /* proto=sas, binary */
540 arr[num++] = 0xa3; /* piv=1, target device, naa */
541 arr[num++] = 0x0;
542 arr[num++] = 0x8;
543 arr[num++] = 0x52; /* naa-5, company id=0x222222 (fake) */
544 arr[num++] = 0x22;
545 arr[num++] = 0x22;
546 arr[num++] = 0x20;
547 arr[num++] = (target_dev_id >> 24);
548 arr[num++] = (target_dev_id >> 16) & 0xff;
549 arr[num++] = (target_dev_id >> 8) & 0xff;
550 arr[num++] = target_dev_id & 0xff;
551 /* SCSI name string: Target device identifier */
552 arr[num++] = 0x63; /* proto=sas, UTF-8 */
553 arr[num++] = 0xa8; /* piv=1, target device, SCSI name string */
554 arr[num++] = 0x0;
555 arr[num++] = 24;
556 memcpy(arr + num, "naa.52222220", 12);
557 num += 12;
558 snprintf(b, sizeof(b), "%08X", target_dev_id);
559 memcpy(arr + num, b, 8);
560 num += 8;
561 memset(arr + num, 0, 4);
562 num += 4;
563 return num;
564}
565
566
567static unsigned char vpd84_data[] = {
568/* from 4th byte */ 0x22,0x22,0x22,0x0,0xbb,0x0,
569 0x22,0x22,0x22,0x0,0xbb,0x1,
570 0x22,0x22,0x22,0x0,0xbb,0x2,
571};
572
573static int inquiry_evpd_84(unsigned char * arr)
574{
575 memcpy(arr, vpd84_data, sizeof(vpd84_data));
576 return sizeof(vpd84_data);
577}
578
579static int inquiry_evpd_85(unsigned char * arr)
580{
581 int num = 0;
582 const char * na1 = "https://www.kernel.org/config";
583 const char * na2 = "http://www.kernel.org/log";
584 int plen, olen;
585
586 arr[num++] = 0x1; /* lu, storage config */
587 arr[num++] = 0x0; /* reserved */
588 arr[num++] = 0x0;
589 olen = strlen(na1);
590 plen = olen + 1;
591 if (plen % 4)
592 plen = ((plen / 4) + 1) * 4;
593 arr[num++] = plen; /* length, null termianted, padded */
594 memcpy(arr + num, na1, olen);
595 memset(arr + num + olen, 0, plen - olen);
596 num += plen;
597
598 arr[num++] = 0x4; /* lu, logging */
599 arr[num++] = 0x0; /* reserved */
600 arr[num++] = 0x0;
601 olen = strlen(na2);
602 plen = olen + 1;
603 if (plen % 4)
604 plen = ((plen / 4) + 1) * 4;
605 arr[num++] = plen; /* length, null terminated, padded */
606 memcpy(arr + num, na2, olen);
607 memset(arr + num + olen, 0, plen - olen);
608 num += plen;
609
610 return num;
611}
612
613/* SCSI ports VPD page */
614static int inquiry_evpd_88(unsigned char * arr, int target_dev_id)
615{
616 int num = 0;
617 int port_a, port_b;
618
619 port_a = target_dev_id + 1;
620 port_b = port_a + 1;
621 arr[num++] = 0x0; /* reserved */
622 arr[num++] = 0x0; /* reserved */
623 arr[num++] = 0x0;
624 arr[num++] = 0x1; /* relative port 1 (primary) */
625 memset(arr + num, 0, 6);
626 num += 6;
627 arr[num++] = 0x0;
628 arr[num++] = 12; /* length tp descriptor */
629 /* naa-5 target port identifier (A) */
630 arr[num++] = 0x61; /* proto=sas, binary */
631 arr[num++] = 0x93; /* PIV=1, target port, NAA */
632 arr[num++] = 0x0; /* reserved */
633 arr[num++] = 0x8; /* length */
634 arr[num++] = 0x52; /* NAA-5, company_id=0x222222 (fake) */
635 arr[num++] = 0x22;
636 arr[num++] = 0x22;
637 arr[num++] = 0x20;
638 arr[num++] = (port_a >> 24);
639 arr[num++] = (port_a >> 16) & 0xff;
640 arr[num++] = (port_a >> 8) & 0xff;
641 arr[num++] = port_a & 0xff;
642
643 arr[num++] = 0x0; /* reserved */
644 arr[num++] = 0x0; /* reserved */
645 arr[num++] = 0x0;
646 arr[num++] = 0x2; /* relative port 2 (secondary) */
647 memset(arr + num, 0, 6);
648 num += 6;
649 arr[num++] = 0x0;
650 arr[num++] = 12; /* length tp descriptor */
651 /* naa-5 target port identifier (B) */
652 arr[num++] = 0x61; /* proto=sas, binary */
653 arr[num++] = 0x93; /* PIV=1, target port, NAA */
654 arr[num++] = 0x0; /* reserved */
655 arr[num++] = 0x8; /* length */
656 arr[num++] = 0x52; /* NAA-5, company_id=0x222222 (fake) */
657 arr[num++] = 0x22;
658 arr[num++] = 0x22;
659 arr[num++] = 0x20;
660 arr[num++] = (port_b >> 24);
661 arr[num++] = (port_b >> 16) & 0xff;
662 arr[num++] = (port_b >> 8) & 0xff;
663 arr[num++] = port_b & 0xff;
664
665 return num;
666}
667
668
669static unsigned char vpd89_data[] = {
670/* from 4th byte */ 0,0,0,0,
671'l','i','n','u','x',' ',' ',' ',
672'S','A','T',' ','s','c','s','i','_','d','e','b','u','g',' ',' ',
673'1','2','3','4',
6740x34,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,
6750xec,0,0,0,
6760x5a,0xc,0xff,0x3f,0x37,0xc8,0x10,0,0,0,0,0,0x3f,0,0,0,
6770,0,0,0,0x58,0x58,0x58,0x58,0x58,0x58,0x58,0x58,0x20,0x20,0x20,0x20,
6780x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0,0,0,0x40,0x4,0,0x2e,0x33,
6790x38,0x31,0x20,0x20,0x20,0x20,0x54,0x53,0x38,0x33,0x30,0x30,0x33,0x31,
6800x53,0x41,
6810x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
6820x20,0x20,
6830x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
6840x10,0x80,
6850,0,0,0x2f,0,0,0,0x2,0,0x2,0x7,0,0xff,0xff,0x1,0,
6860x3f,0,0xc1,0xff,0x3e,0,0x10,0x1,0xb0,0xf8,0x50,0x9,0,0,0x7,0,
6870x3,0,0x78,0,0x78,0,0xf0,0,0x78,0,0,0,0,0,0,0,
6880,0,0,0,0,0,0,0,0x2,0,0,0,0,0,0,0,
6890x7e,0,0x1b,0,0x6b,0x34,0x1,0x7d,0x3,0x40,0x69,0x34,0x1,0x3c,0x3,0x40,
6900x7f,0x40,0,0,0,0,0xfe,0xfe,0,0,0,0,0,0xfe,0,0,
6910,0,0,0,0,0,0,0,0xb0,0xf8,0x50,0x9,0,0,0,0,
6920,0,0,0,0,0,0,0,0,0,0,0,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,
6950x1,0,0xb0,0xf8,0x50,0x9,0xb0,0xf8,0x50,0x9,0x20,0x20,0x2,0,0xb6,0x42,
6960,0x80,0x8a,0,0x6,0x3c,0xa,0x3c,0xff,0xff,0xc6,0x7,0,0x1,0,0x8,
6970xf0,0xf,0,0x10,0x2,0,0x30,0,0,0,0,0,0,0,0x6,0xfe,
6980,0,0x2,0,0x50,0,0x8a,0,0x4f,0x95,0,0,0x21,0,0xb,0,
6990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0xa5,0x51,
711};
712
713static int inquiry_evpd_89(unsigned char * arr)
714{
715 memcpy(arr, vpd89_data, sizeof(vpd89_data));
716 return sizeof(vpd89_data);
717}
718
719
Douglas Gilbert1e49f782009-10-29 01:48:31 -0400720/* Block limits VPD page (SBC-3) */
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400721static unsigned char vpdb0_data[] = {
Douglas Gilbert1e49f782009-10-29 01:48:31 -0400722 /* from 4th byte */ 0,0,0,4, 0,0,0x4,0, 0,0,0,64,
723 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
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,
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400726};
727
728static int inquiry_evpd_b0(unsigned char * arr)
729{
Martin K. Petersenea61fca2009-05-15 00:40:33 -0400730 unsigned int gran;
731
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400732 memcpy(arr, vpdb0_data, sizeof(vpdb0_data));
Martin K. Petersene308b3d2010-03-23 01:12:27 -0400733
734 /* Optimal transfer length granularity */
Martin K. Petersenea61fca2009-05-15 00:40:33 -0400735 gran = 1 << scsi_debug_physblk_exp;
736 arr[2] = (gran >> 8) & 0xff;
737 arr[3] = gran & 0xff;
Martin K. Petersene308b3d2010-03-23 01:12:27 -0400738
739 /* Maximum Transfer Length */
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400740 if (sdebug_store_sectors > 0x400) {
741 arr[4] = (sdebug_store_sectors >> 24) & 0xff;
742 arr[5] = (sdebug_store_sectors >> 16) & 0xff;
743 arr[6] = (sdebug_store_sectors >> 8) & 0xff;
744 arr[7] = sdebug_store_sectors & 0xff;
745 }
Martin K. Petersen44d92692009-10-15 14:45:27 -0400746
Martin K. Petersene308b3d2010-03-23 01:12:27 -0400747 /* Optimal Transfer Length */
748 put_unaligned_be32(scsi_debug_opt_blks, &arr[8]);
749
Martin K. Petersen5b94e232011-03-08 02:08:11 -0500750 if (scsi_debug_lbpu) {
Martin K. Petersene308b3d2010-03-23 01:12:27 -0400751 /* Maximum Unmap LBA Count */
Martin K. Petersen60147592010-08-19 11:49:00 -0400752 put_unaligned_be32(scsi_debug_unmap_max_blocks, &arr[16]);
Martin K. Petersene308b3d2010-03-23 01:12:27 -0400753
754 /* Maximum Unmap Block Descriptor Count */
Martin K. Petersen44d92692009-10-15 14:45:27 -0400755 put_unaligned_be32(scsi_debug_unmap_max_desc, &arr[20]);
756 }
757
Martin K. Petersene308b3d2010-03-23 01:12:27 -0400758 /* Unmap Granularity Alignment */
Martin K. Petersen44d92692009-10-15 14:45:27 -0400759 if (scsi_debug_unmap_alignment) {
760 put_unaligned_be32(scsi_debug_unmap_alignment, &arr[28]);
761 arr[28] |= 0x80; /* UGAVALID */
762 }
763
Martin K. Petersene308b3d2010-03-23 01:12:27 -0400764 /* Optimal Unmap Granularity */
Martin K. Petersen60147592010-08-19 11:49:00 -0400765 put_unaligned_be32(scsi_debug_unmap_granularity, &arr[24]);
766
Martin K. Petersen5b94e232011-03-08 02:08:11 -0500767 /* Maximum WRITE SAME Length */
768 put_unaligned_be64(scsi_debug_write_same_length, &arr[32]);
769
770 return 0x3c; /* Mandatory page length for Logical Block Provisioning */
Martin K. Petersen44d92692009-10-15 14:45:27 -0400771
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400772 return sizeof(vpdb0_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773}
774
Douglas Gilbert1e49f782009-10-29 01:48:31 -0400775/* Block device characteristics VPD page (SBC-3) */
Matthew Wilcoxeac6e8e42008-06-19 10:02:58 -0600776static int inquiry_evpd_b1(unsigned char *arr)
777{
778 memset(arr, 0, 0x3c);
779 arr[0] = 0;
Douglas Gilbert1e49f782009-10-29 01:48:31 -0400780 arr[1] = 1; /* non rotating medium (e.g. solid state) */
781 arr[2] = 0;
782 arr[3] = 5; /* less than 1.8" */
Matthew Wilcoxeac6e8e42008-06-19 10:02:58 -0600783
784 return 0x3c;
785}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
Eric Sandeenbe1dd782012-03-08 00:03:59 -0600787/* Logical block provisioning VPD page (SBC-3) */
Martin K. Petersen60147592010-08-19 11:49:00 -0400788static int inquiry_evpd_b2(unsigned char *arr)
789{
Martin K. Petersen3f0bc3b2012-03-08 10:48:29 -0500790 memset(arr, 0, 0x4);
Martin K. Petersen60147592010-08-19 11:49:00 -0400791 arr[0] = 0; /* threshold exponent */
792
Martin K. Petersen5b94e232011-03-08 02:08:11 -0500793 if (scsi_debug_lbpu)
Martin K. Petersen60147592010-08-19 11:49:00 -0400794 arr[1] = 1 << 7;
795
Martin K. Petersen5b94e232011-03-08 02:08:11 -0500796 if (scsi_debug_lbpws)
Martin K. Petersen60147592010-08-19 11:49:00 -0400797 arr[1] |= 1 << 6;
798
Martin K. Petersen5b94e232011-03-08 02:08:11 -0500799 if (scsi_debug_lbpws10)
800 arr[1] |= 1 << 5;
801
Eric Sandeenbe1dd782012-03-08 00:03:59 -0600802 if (scsi_debug_lbprz)
803 arr[1] |= 1 << 2;
804
Martin K. Petersen3f0bc3b2012-03-08 10:48:29 -0500805 return 0x4;
Martin K. Petersen60147592010-08-19 11:49:00 -0400806}
807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808#define SDEBUG_LONG_INQ_SZ 96
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400809#define SDEBUG_MAX_INQ_ARR_SZ 584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
811static int resp_inquiry(struct scsi_cmnd * scp, int target,
812 struct sdebug_dev_info * devip)
813{
814 unsigned char pq_pdt;
Hannes Reinecke5a09e392006-10-20 09:58:47 +0200815 unsigned char * arr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 unsigned char *cmd = (unsigned char *)scp->cmnd;
Hannes Reinecke5a09e392006-10-20 09:58:47 +0200817 int alloc_len, n, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
819 alloc_len = (cmd[3] << 8) + cmd[4];
Douglas Gilbert6f3cbf52007-01-05 00:05:25 -0500820 arr = kzalloc(SDEBUG_MAX_INQ_ARR_SZ, GFP_ATOMIC);
821 if (! arr)
822 return DID_REQUEUE << 16;
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400823 if (devip->wlun)
824 pq_pdt = 0x1e; /* present, wlun */
825 else if (scsi_debug_no_lun_0 && (0 == devip->lun))
826 pq_pdt = 0x7f; /* not present, no device type */
827 else
828 pq_pdt = (scsi_debug_ptype & 0x1f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 arr[0] = pq_pdt;
830 if (0x2 & cmd[1]) { /* CMDDT bit set */
831 mk_sense_buffer(devip, ILLEGAL_REQUEST, INVALID_FIELD_IN_CDB,
832 0);
Hannes Reinecke5a09e392006-10-20 09:58:47 +0200833 kfree(arr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 return check_condition_result;
835 } else if (0x1 & cmd[1]) { /* EVPD bit set */
Hannes Reinecke5a09e392006-10-20 09:58:47 +0200836 int lu_id_num, port_group_id, target_dev_id, len;
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400837 char lu_id_str[6];
838 int host_no = devip->sdbg_host->shost->host_no;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
Hannes Reinecke5a09e392006-10-20 09:58:47 +0200840 port_group_id = (((host_no + 1) & 0x7f) << 8) +
841 (devip->channel & 0x7f);
Douglas Gilbert23183912006-09-16 20:30:47 -0400842 if (0 == scsi_debug_vpd_use_hostno)
843 host_no = 0;
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400844 lu_id_num = devip->wlun ? -1 : (((host_no + 1) * 2000) +
845 (devip->target * 1000) + devip->lun);
846 target_dev_id = ((host_no + 1) * 2000) +
847 (devip->target * 1000) - 3;
848 len = scnprintf(lu_id_str, 6, "%d", lu_id_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 if (0 == cmd[2]) { /* supported vital product data pages */
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400850 arr[1] = cmd[2]; /*sanity */
851 n = 4;
852 arr[n++] = 0x0; /* this page */
853 arr[n++] = 0x80; /* unit serial number */
854 arr[n++] = 0x83; /* device identification */
855 arr[n++] = 0x84; /* software interface ident. */
856 arr[n++] = 0x85; /* management network addresses */
857 arr[n++] = 0x86; /* extended inquiry */
858 arr[n++] = 0x87; /* mode page policy */
859 arr[n++] = 0x88; /* SCSI ports */
860 arr[n++] = 0x89; /* ATA information */
861 arr[n++] = 0xb0; /* Block limits (SBC) */
Matthew Wilcoxeac6e8e42008-06-19 10:02:58 -0600862 arr[n++] = 0xb1; /* Block characteristics (SBC) */
Martin K. Petersen5b94e232011-03-08 02:08:11 -0500863 if (scsi_debug_lbp()) /* Logical Block Prov. (SBC) */
864 arr[n++] = 0xb2;
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400865 arr[3] = n - 4; /* number of supported VPD pages */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 } else if (0x80 == cmd[2]) { /* unit serial number */
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400867 arr[1] = cmd[2]; /*sanity */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 arr[3] = len;
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400869 memcpy(&arr[4], lu_id_str, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 } else if (0x83 == cmd[2]) { /* device identification */
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400871 arr[1] = cmd[2]; /*sanity */
Hannes Reinecke5a09e392006-10-20 09:58:47 +0200872 arr[3] = inquiry_evpd_83(&arr[4], port_group_id,
873 target_dev_id, lu_id_num,
874 lu_id_str, len);
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400875 } else if (0x84 == cmd[2]) { /* Software interface ident. */
876 arr[1] = cmd[2]; /*sanity */
877 arr[3] = inquiry_evpd_84(&arr[4]);
878 } else if (0x85 == cmd[2]) { /* Management network addresses */
879 arr[1] = cmd[2]; /*sanity */
880 arr[3] = inquiry_evpd_85(&arr[4]);
881 } else if (0x86 == cmd[2]) { /* extended inquiry */
882 arr[1] = cmd[2]; /*sanity */
883 arr[3] = 0x3c; /* number of following entries */
Martin K. Petersenc6a44282009-01-04 03:08:19 -0500884 if (scsi_debug_dif == SD_DIF_TYPE3_PROTECTION)
885 arr[4] = 0x4; /* SPT: GRD_CHK:1 */
886 else if (scsi_debug_dif)
887 arr[4] = 0x5; /* SPT: GRD_CHK:1, REF_CHK:1 */
888 else
889 arr[4] = 0x0; /* no protection stuff */
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400890 arr[5] = 0x7; /* head of q, ordered + simple q's */
891 } else if (0x87 == cmd[2]) { /* mode page policy */
892 arr[1] = cmd[2]; /*sanity */
893 arr[3] = 0x8; /* number of following entries */
894 arr[4] = 0x2; /* disconnect-reconnect mp */
895 arr[6] = 0x80; /* mlus, shared */
896 arr[8] = 0x18; /* protocol specific lu */
897 arr[10] = 0x82; /* mlus, per initiator port */
898 } else if (0x88 == cmd[2]) { /* SCSI Ports */
899 arr[1] = cmd[2]; /*sanity */
900 arr[3] = inquiry_evpd_88(&arr[4], target_dev_id);
901 } else if (0x89 == cmd[2]) { /* ATA information */
902 arr[1] = cmd[2]; /*sanity */
903 n = inquiry_evpd_89(&arr[4]);
904 arr[2] = (n >> 8);
905 arr[3] = (n & 0xff);
906 } else if (0xb0 == cmd[2]) { /* Block limits (SBC) */
907 arr[1] = cmd[2]; /*sanity */
908 arr[3] = inquiry_evpd_b0(&arr[4]);
Matthew Wilcoxeac6e8e42008-06-19 10:02:58 -0600909 } else if (0xb1 == cmd[2]) { /* Block characteristics (SBC) */
910 arr[1] = cmd[2]; /*sanity */
911 arr[3] = inquiry_evpd_b1(&arr[4]);
Martin K. Petersen5b94e232011-03-08 02:08:11 -0500912 } else if (0xb2 == cmd[2]) { /* Logical Block Prov. (SBC) */
Martin K. Petersen60147592010-08-19 11:49:00 -0400913 arr[1] = cmd[2]; /*sanity */
914 arr[3] = inquiry_evpd_b2(&arr[4]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 } else {
916 /* Illegal request, invalid field in cdb */
917 mk_sense_buffer(devip, ILLEGAL_REQUEST,
918 INVALID_FIELD_IN_CDB, 0);
Hannes Reinecke5a09e392006-10-20 09:58:47 +0200919 kfree(arr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 return check_condition_result;
921 }
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400922 len = min(((arr[2] << 8) + arr[3]) + 4, alloc_len);
Hannes Reinecke5a09e392006-10-20 09:58:47 +0200923 ret = fill_from_dev_buffer(scp, arr,
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400924 min(len, SDEBUG_MAX_INQ_ARR_SZ));
Hannes Reinecke5a09e392006-10-20 09:58:47 +0200925 kfree(arr);
926 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 }
928 /* drops through here for a standard inquiry */
Martin Pittd9867882012-09-06 12:04:33 +0200929 arr[1] = scsi_debug_removable ? 0x80 : 0; /* Removable disk */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 arr[2] = scsi_debug_scsi_level;
931 arr[3] = 2; /* response_data_format==2 */
932 arr[4] = SDEBUG_LONG_INQ_SZ - 5;
Martin K. Petersenc6a44282009-01-04 03:08:19 -0500933 arr[5] = scsi_debug_dif ? 1 : 0; /* PROTECT bit */
Hannes Reinecke5a09e392006-10-20 09:58:47 +0200934 if (0 == scsi_debug_vpd_use_hostno)
935 arr[5] = 0x10; /* claim: implicit TGPS */
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400936 arr[6] = 0x10; /* claim: MultiP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 /* arr[6] |= 0x40; ... claim: EncServ (enclosure services) */
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400938 arr[7] = 0xa; /* claim: LINKED + CMDQUE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 memcpy(&arr[8], inq_vendor_id, 8);
940 memcpy(&arr[16], inq_product_id, 16);
941 memcpy(&arr[32], inq_product_rev, 4);
942 /* version descriptors (2 bytes each) follow */
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400943 arr[58] = 0x0; arr[59] = 0x77; /* SAM-3 ANSI */
944 arr[60] = 0x3; arr[61] = 0x14; /* SPC-3 ANSI */
945 n = 62;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 if (scsi_debug_ptype == 0) {
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400947 arr[n++] = 0x3; arr[n++] = 0x3d; /* SBC-2 ANSI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 } else if (scsi_debug_ptype == 1) {
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400949 arr[n++] = 0x3; arr[n++] = 0x60; /* SSC-2 no version */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 }
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400951 arr[n++] = 0xc; arr[n++] = 0xf; /* SAS-1.1 rev 10 */
Hannes Reinecke5a09e392006-10-20 09:58:47 +0200952 ret = fill_from_dev_buffer(scp, arr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 min(alloc_len, SDEBUG_LONG_INQ_SZ));
Hannes Reinecke5a09e392006-10-20 09:58:47 +0200954 kfree(arr);
955 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956}
957
958static int resp_requests(struct scsi_cmnd * scp,
959 struct sdebug_dev_info * devip)
960{
961 unsigned char * sbuff;
962 unsigned char *cmd = (unsigned char *)scp->cmnd;
963 unsigned char arr[SDEBUG_SENSE_LEN];
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400964 int want_dsense;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 int len = 18;
966
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400967 memset(arr, 0, sizeof(arr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 if (devip->reset == 1)
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400969 mk_sense_buffer(devip, 0, NO_ADDITIONAL_SENSE, 0);
970 want_dsense = !!(cmd[1] & 1) || scsi_debug_dsense;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 sbuff = devip->sense_buff;
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400972 if ((iec_m_pg[2] & 0x4) && (6 == (iec_m_pg[3] & 0xf))) {
973 if (want_dsense) {
974 arr[0] = 0x72;
975 arr[1] = 0x0; /* NO_SENSE in sense_key */
976 arr[2] = THRESHOLD_EXCEEDED;
977 arr[3] = 0xff; /* TEST set and MRIE==6 */
978 } else {
979 arr[0] = 0x70;
980 arr[2] = 0x0; /* NO_SENSE in sense_key */
981 arr[7] = 0xa; /* 18 byte sense buffer */
982 arr[12] = THRESHOLD_EXCEEDED;
983 arr[13] = 0xff; /* TEST set and MRIE==6 */
984 }
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400985 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 memcpy(arr, sbuff, SDEBUG_SENSE_LEN);
Douglas Gilbertc65b1442006-06-06 00:11:24 -0400987 if ((cmd[1] & 1) && (! scsi_debug_dsense)) {
988 /* DESC bit set and sense_buff in fixed format */
989 memset(arr, 0, sizeof(arr));
990 arr[0] = 0x72;
991 arr[1] = sbuff[2]; /* sense key */
992 arr[2] = sbuff[12]; /* asc */
993 arr[3] = sbuff[13]; /* ascq */
994 len = 8;
995 }
996 }
997 mk_sense_buffer(devip, 0, NO_ADDITIONAL_SENSE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 return fill_from_dev_buffer(scp, arr, len);
999}
1000
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001001static int resp_start_stop(struct scsi_cmnd * scp,
1002 struct sdebug_dev_info * devip)
1003{
1004 unsigned char *cmd = (unsigned char *)scp->cmnd;
1005 int power_cond, errsts, start;
1006
1007 if ((errsts = check_readiness(scp, 1, devip)))
1008 return errsts;
1009 power_cond = (cmd[4] & 0xf0) >> 4;
1010 if (power_cond) {
1011 mk_sense_buffer(devip, ILLEGAL_REQUEST, INVALID_FIELD_IN_CDB,
1012 0);
1013 return check_condition_result;
1014 }
1015 start = cmd[4] & 1;
1016 if (start == devip->stopped)
1017 devip->stopped = !start;
1018 return 0;
1019}
1020
FUJITA Tomonori28898872008-03-30 00:59:55 +09001021static sector_t get_sdebug_capacity(void)
1022{
1023 if (scsi_debug_virtual_gb > 0)
Douglas Gilbert5447ed62010-04-25 12:30:23 +02001024 return (sector_t)scsi_debug_virtual_gb *
1025 (1073741824 / scsi_debug_sector_size);
FUJITA Tomonori28898872008-03-30 00:59:55 +09001026 else
1027 return sdebug_store_sectors;
1028}
1029
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030#define SDEBUG_READCAP_ARR_SZ 8
1031static int resp_readcap(struct scsi_cmnd * scp,
1032 struct sdebug_dev_info * devip)
1033{
1034 unsigned char arr[SDEBUG_READCAP_ARR_SZ];
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001035 unsigned int capac;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 int errsts;
1037
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001038 if ((errsts = check_readiness(scp, 1, devip)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 return errsts;
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001040 /* following just in case virtual_gb changed */
FUJITA Tomonori28898872008-03-30 00:59:55 +09001041 sdebug_capacity = get_sdebug_capacity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 memset(arr, 0, SDEBUG_READCAP_ARR_SZ);
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001043 if (sdebug_capacity < 0xffffffff) {
1044 capac = (unsigned int)sdebug_capacity - 1;
1045 arr[0] = (capac >> 24);
1046 arr[1] = (capac >> 16) & 0xff;
1047 arr[2] = (capac >> 8) & 0xff;
1048 arr[3] = capac & 0xff;
1049 } else {
1050 arr[0] = 0xff;
1051 arr[1] = 0xff;
1052 arr[2] = 0xff;
1053 arr[3] = 0xff;
1054 }
Martin K. Petersen597136a2008-06-05 00:12:59 -04001055 arr[6] = (scsi_debug_sector_size >> 8) & 0xff;
1056 arr[7] = scsi_debug_sector_size & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 return fill_from_dev_buffer(scp, arr, SDEBUG_READCAP_ARR_SZ);
1058}
1059
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001060#define SDEBUG_READCAP16_ARR_SZ 32
1061static int resp_readcap16(struct scsi_cmnd * scp,
1062 struct sdebug_dev_info * devip)
1063{
1064 unsigned char *cmd = (unsigned char *)scp->cmnd;
1065 unsigned char arr[SDEBUG_READCAP16_ARR_SZ];
1066 unsigned long long capac;
1067 int errsts, k, alloc_len;
1068
1069 if ((errsts = check_readiness(scp, 1, devip)))
1070 return errsts;
1071 alloc_len = ((cmd[10] << 24) + (cmd[11] << 16) + (cmd[12] << 8)
1072 + cmd[13]);
1073 /* following just in case virtual_gb changed */
FUJITA Tomonori28898872008-03-30 00:59:55 +09001074 sdebug_capacity = get_sdebug_capacity();
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001075 memset(arr, 0, SDEBUG_READCAP16_ARR_SZ);
1076 capac = sdebug_capacity - 1;
1077 for (k = 0; k < 8; ++k, capac >>= 8)
1078 arr[7 - k] = capac & 0xff;
Martin K. Petersen597136a2008-06-05 00:12:59 -04001079 arr[8] = (scsi_debug_sector_size >> 24) & 0xff;
1080 arr[9] = (scsi_debug_sector_size >> 16) & 0xff;
1081 arr[10] = (scsi_debug_sector_size >> 8) & 0xff;
1082 arr[11] = scsi_debug_sector_size & 0xff;
Martin K. Petersenea61fca2009-05-15 00:40:33 -04001083 arr[13] = scsi_debug_physblk_exp & 0xf;
1084 arr[14] = (scsi_debug_lowest_aligned >> 8) & 0x3f;
Martin K. Petersen44d92692009-10-15 14:45:27 -04001085
Eric Sandeenbe1dd782012-03-08 00:03:59 -06001086 if (scsi_debug_lbp()) {
Martin K. Petersen5b94e232011-03-08 02:08:11 -05001087 arr[14] |= 0x80; /* LBPME */
Eric Sandeenbe1dd782012-03-08 00:03:59 -06001088 if (scsi_debug_lbprz)
1089 arr[14] |= 0x40; /* LBPRZ */
1090 }
Martin K. Petersen44d92692009-10-15 14:45:27 -04001091
Martin K. Petersenea61fca2009-05-15 00:40:33 -04001092 arr[15] = scsi_debug_lowest_aligned & 0xff;
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001093
1094 if (scsi_debug_dif) {
1095 arr[12] = (scsi_debug_dif - 1) << 1; /* P_TYPE */
1096 arr[12] |= 1; /* PROT_EN */
1097 }
1098
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001099 return fill_from_dev_buffer(scp, arr,
1100 min(alloc_len, SDEBUG_READCAP16_ARR_SZ));
1101}
1102
Hannes Reinecke5a09e392006-10-20 09:58:47 +02001103#define SDEBUG_MAX_TGTPGS_ARR_SZ 1412
1104
1105static int resp_report_tgtpgs(struct scsi_cmnd * scp,
1106 struct sdebug_dev_info * devip)
1107{
1108 unsigned char *cmd = (unsigned char *)scp->cmnd;
1109 unsigned char * arr;
1110 int host_no = devip->sdbg_host->shost->host_no;
1111 int n, ret, alen, rlen;
1112 int port_group_a, port_group_b, port_a, port_b;
1113
1114 alen = ((cmd[6] << 24) + (cmd[7] << 16) + (cmd[8] << 8)
1115 + cmd[9]);
1116
Douglas Gilbert6f3cbf52007-01-05 00:05:25 -05001117 arr = kzalloc(SDEBUG_MAX_TGTPGS_ARR_SZ, GFP_ATOMIC);
1118 if (! arr)
1119 return DID_REQUEUE << 16;
Hannes Reinecke5a09e392006-10-20 09:58:47 +02001120 /*
1121 * EVPD page 0x88 states we have two ports, one
1122 * real and a fake port with no device connected.
1123 * So we create two port groups with one port each
1124 * and set the group with port B to unavailable.
1125 */
1126 port_a = 0x1; /* relative port A */
1127 port_b = 0x2; /* relative port B */
1128 port_group_a = (((host_no + 1) & 0x7f) << 8) +
1129 (devip->channel & 0x7f);
1130 port_group_b = (((host_no + 1) & 0x7f) << 8) +
1131 (devip->channel & 0x7f) + 0x80;
1132
1133 /*
1134 * The asymmetric access state is cycled according to the host_id.
1135 */
1136 n = 4;
1137 if (0 == scsi_debug_vpd_use_hostno) {
1138 arr[n++] = host_no % 3; /* Asymm access state */
1139 arr[n++] = 0x0F; /* claim: all states are supported */
1140 } else {
1141 arr[n++] = 0x0; /* Active/Optimized path */
1142 arr[n++] = 0x01; /* claim: only support active/optimized paths */
1143 }
1144 arr[n++] = (port_group_a >> 8) & 0xff;
1145 arr[n++] = port_group_a & 0xff;
1146 arr[n++] = 0; /* Reserved */
1147 arr[n++] = 0; /* Status code */
1148 arr[n++] = 0; /* Vendor unique */
1149 arr[n++] = 0x1; /* One port per group */
1150 arr[n++] = 0; /* Reserved */
1151 arr[n++] = 0; /* Reserved */
1152 arr[n++] = (port_a >> 8) & 0xff;
1153 arr[n++] = port_a & 0xff;
1154 arr[n++] = 3; /* Port unavailable */
1155 arr[n++] = 0x08; /* claim: only unavailalbe paths are supported */
1156 arr[n++] = (port_group_b >> 8) & 0xff;
1157 arr[n++] = port_group_b & 0xff;
1158 arr[n++] = 0; /* Reserved */
1159 arr[n++] = 0; /* Status code */
1160 arr[n++] = 0; /* Vendor unique */
1161 arr[n++] = 0x1; /* One port per group */
1162 arr[n++] = 0; /* Reserved */
1163 arr[n++] = 0; /* Reserved */
1164 arr[n++] = (port_b >> 8) & 0xff;
1165 arr[n++] = port_b & 0xff;
1166
1167 rlen = n - 4;
1168 arr[0] = (rlen >> 24) & 0xff;
1169 arr[1] = (rlen >> 16) & 0xff;
1170 arr[2] = (rlen >> 8) & 0xff;
1171 arr[3] = rlen & 0xff;
1172
1173 /*
1174 * Return the smallest value of either
1175 * - The allocated length
1176 * - The constructed command length
1177 * - The maximum array size
1178 */
1179 rlen = min(alen,n);
1180 ret = fill_from_dev_buffer(scp, arr,
1181 min(rlen, SDEBUG_MAX_TGTPGS_ARR_SZ));
1182 kfree(arr);
1183 return ret;
1184}
1185
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186/* <<Following mode page info copied from ST318451LW>> */
1187
1188static int resp_err_recov_pg(unsigned char * p, int pcontrol, int target)
1189{ /* Read-Write Error Recovery page for mode_sense */
1190 unsigned char err_recov_pg[] = {0x1, 0xa, 0xc0, 11, 240, 0, 0, 0,
1191 5, 0, 0xff, 0xff};
1192
1193 memcpy(p, err_recov_pg, sizeof(err_recov_pg));
1194 if (1 == pcontrol)
1195 memset(p + 2, 0, sizeof(err_recov_pg) - 2);
1196 return sizeof(err_recov_pg);
1197}
1198
1199static int resp_disconnect_pg(unsigned char * p, int pcontrol, int target)
1200{ /* Disconnect-Reconnect page for mode_sense */
1201 unsigned char disconnect_pg[] = {0x2, 0xe, 128, 128, 0, 10, 0, 0,
1202 0, 0, 0, 0, 0, 0, 0, 0};
1203
1204 memcpy(p, disconnect_pg, sizeof(disconnect_pg));
1205 if (1 == pcontrol)
1206 memset(p + 2, 0, sizeof(disconnect_pg) - 2);
1207 return sizeof(disconnect_pg);
1208}
1209
1210static int resp_format_pg(unsigned char * p, int pcontrol, int target)
1211{ /* Format device page for mode_sense */
Martin K. Petersen597136a2008-06-05 00:12:59 -04001212 unsigned char format_pg[] = {0x3, 0x16, 0, 0, 0, 0, 0, 0,
1213 0, 0, 0, 0, 0, 0, 0, 0,
1214 0, 0, 0, 0, 0x40, 0, 0, 0};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
Martin K. Petersen597136a2008-06-05 00:12:59 -04001216 memcpy(p, format_pg, sizeof(format_pg));
1217 p[10] = (sdebug_sectors_per >> 8) & 0xff;
1218 p[11] = sdebug_sectors_per & 0xff;
1219 p[12] = (scsi_debug_sector_size >> 8) & 0xff;
1220 p[13] = scsi_debug_sector_size & 0xff;
Martin Pittd9867882012-09-06 12:04:33 +02001221 if (scsi_debug_removable)
Martin K. Petersen597136a2008-06-05 00:12:59 -04001222 p[20] |= 0x20; /* should agree with INQUIRY */
1223 if (1 == pcontrol)
1224 memset(p + 2, 0, sizeof(format_pg) - 2);
1225 return sizeof(format_pg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226}
1227
1228static int resp_caching_pg(unsigned char * p, int pcontrol, int target)
1229{ /* Caching page for mode_sense */
1230 unsigned char caching_pg[] = {0x8, 18, 0x14, 0, 0xff, 0xff, 0, 0,
1231 0xff, 0xff, 0xff, 0xff, 0x80, 0x14, 0, 0, 0, 0, 0, 0};
1232
1233 memcpy(p, caching_pg, sizeof(caching_pg));
1234 if (1 == pcontrol)
1235 memset(p + 2, 0, sizeof(caching_pg) - 2);
1236 return sizeof(caching_pg);
1237}
1238
1239static int resp_ctrl_m_pg(unsigned char * p, int pcontrol, int target)
1240{ /* Control mode page for mode_sense */
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001241 unsigned char ch_ctrl_m_pg[] = {/* 0xa, 10, */ 0x6, 0, 0, 0, 0, 0,
1242 0, 0, 0, 0};
1243 unsigned char d_ctrl_m_pg[] = {0xa, 10, 2, 0, 0, 0, 0, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 0, 0, 0x2, 0x4b};
1245
1246 if (scsi_debug_dsense)
1247 ctrl_m_pg[2] |= 0x4;
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001248 else
1249 ctrl_m_pg[2] &= ~0x4;
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001250
1251 if (scsi_debug_ato)
1252 ctrl_m_pg[5] |= 0x80; /* ATO=1 */
1253
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 memcpy(p, ctrl_m_pg, sizeof(ctrl_m_pg));
1255 if (1 == pcontrol)
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001256 memcpy(p + 2, ch_ctrl_m_pg, sizeof(ch_ctrl_m_pg));
1257 else if (2 == pcontrol)
1258 memcpy(p, d_ctrl_m_pg, sizeof(d_ctrl_m_pg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 return sizeof(ctrl_m_pg);
1260}
1261
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001262
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263static int resp_iec_m_pg(unsigned char * p, int pcontrol, int target)
1264{ /* Informational Exceptions control mode page for mode_sense */
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001265 unsigned char ch_iec_m_pg[] = {/* 0x1c, 0xa, */ 0x4, 0xf, 0, 0, 0, 0,
1266 0, 0, 0x0, 0x0};
1267 unsigned char d_iec_m_pg[] = {0x1c, 0xa, 0x08, 0, 0, 0, 0, 0,
1268 0, 0, 0x0, 0x0};
1269
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 memcpy(p, iec_m_pg, sizeof(iec_m_pg));
1271 if (1 == pcontrol)
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001272 memcpy(p + 2, ch_iec_m_pg, sizeof(ch_iec_m_pg));
1273 else if (2 == pcontrol)
1274 memcpy(p, d_iec_m_pg, sizeof(d_iec_m_pg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 return sizeof(iec_m_pg);
1276}
1277
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001278static int resp_sas_sf_m_pg(unsigned char * p, int pcontrol, int target)
1279{ /* SAS SSP mode page - short format for mode_sense */
1280 unsigned char sas_sf_m_pg[] = {0x19, 0x6,
1281 0x6, 0x0, 0x7, 0xd0, 0x0, 0x0};
1282
1283 memcpy(p, sas_sf_m_pg, sizeof(sas_sf_m_pg));
1284 if (1 == pcontrol)
1285 memset(p + 2, 0, sizeof(sas_sf_m_pg) - 2);
1286 return sizeof(sas_sf_m_pg);
1287}
1288
1289
1290static int resp_sas_pcd_m_spg(unsigned char * p, int pcontrol, int target,
1291 int target_dev_id)
1292{ /* SAS phy control and discover mode page for mode_sense */
1293 unsigned char sas_pcd_m_pg[] = {0x59, 0x1, 0, 0x64, 0, 0x6, 0, 2,
1294 0, 0, 0, 0, 0x10, 0x9, 0x8, 0x0,
1295 0x52, 0x22, 0x22, 0x20, 0x0, 0x0, 0x0, 0x0,
1296 0x51, 0x11, 0x11, 0x10, 0x0, 0x0, 0x0, 0x1,
1297 0x2, 0, 0, 0, 0, 0, 0, 0,
1298 0x88, 0x99, 0, 0, 0, 0, 0, 0,
1299 0, 0, 0, 0, 0, 0, 0, 0,
1300 0, 1, 0, 0, 0x10, 0x9, 0x8, 0x0,
1301 0x52, 0x22, 0x22, 0x20, 0x0, 0x0, 0x0, 0x0,
1302 0x51, 0x11, 0x11, 0x10, 0x0, 0x0, 0x0, 0x1,
1303 0x3, 0, 0, 0, 0, 0, 0, 0,
1304 0x88, 0x99, 0, 0, 0, 0, 0, 0,
1305 0, 0, 0, 0, 0, 0, 0, 0,
1306 };
1307 int port_a, port_b;
1308
1309 port_a = target_dev_id + 1;
1310 port_b = port_a + 1;
1311 memcpy(p, sas_pcd_m_pg, sizeof(sas_pcd_m_pg));
1312 p[20] = (port_a >> 24);
1313 p[21] = (port_a >> 16) & 0xff;
1314 p[22] = (port_a >> 8) & 0xff;
1315 p[23] = port_a & 0xff;
1316 p[48 + 20] = (port_b >> 24);
1317 p[48 + 21] = (port_b >> 16) & 0xff;
1318 p[48 + 22] = (port_b >> 8) & 0xff;
1319 p[48 + 23] = port_b & 0xff;
1320 if (1 == pcontrol)
1321 memset(p + 4, 0, sizeof(sas_pcd_m_pg) - 4);
1322 return sizeof(sas_pcd_m_pg);
1323}
1324
1325static int resp_sas_sha_m_spg(unsigned char * p, int pcontrol)
1326{ /* SAS SSP shared protocol specific port mode subpage */
1327 unsigned char sas_sha_m_pg[] = {0x59, 0x2, 0, 0xc, 0, 0x6, 0x10, 0,
1328 0, 0, 0, 0, 0, 0, 0, 0,
1329 };
1330
1331 memcpy(p, sas_sha_m_pg, sizeof(sas_sha_m_pg));
1332 if (1 == pcontrol)
1333 memset(p + 4, 0, sizeof(sas_sha_m_pg) - 4);
1334 return sizeof(sas_sha_m_pg);
1335}
1336
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337#define SDEBUG_MAX_MSENSE_SZ 256
1338
1339static int resp_mode_sense(struct scsi_cmnd * scp, int target,
1340 struct sdebug_dev_info * devip)
1341{
Douglas Gilbert23183912006-09-16 20:30:47 -04001342 unsigned char dbd, llbaa;
1343 int pcontrol, pcode, subpcode, bd_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 unsigned char dev_spec;
Douglas Gilbert23183912006-09-16 20:30:47 -04001345 int k, alloc_len, msense_6, offset, len, errsts, target_dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 unsigned char * ap;
1347 unsigned char arr[SDEBUG_MAX_MSENSE_SZ];
1348 unsigned char *cmd = (unsigned char *)scp->cmnd;
1349
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001350 if ((errsts = check_readiness(scp, 1, devip)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 return errsts;
Douglas Gilbert23183912006-09-16 20:30:47 -04001352 dbd = !!(cmd[1] & 0x8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 pcontrol = (cmd[2] & 0xc0) >> 6;
1354 pcode = cmd[2] & 0x3f;
1355 subpcode = cmd[3];
1356 msense_6 = (MODE_SENSE == cmd[0]);
Douglas Gilbert23183912006-09-16 20:30:47 -04001357 llbaa = msense_6 ? 0 : !!(cmd[1] & 0x10);
1358 if ((0 == scsi_debug_ptype) && (0 == dbd))
1359 bd_len = llbaa ? 16 : 8;
1360 else
1361 bd_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 alloc_len = msense_6 ? cmd[4] : ((cmd[7] << 8) | cmd[8]);
1363 memset(arr, 0, SDEBUG_MAX_MSENSE_SZ);
1364 if (0x3 == pcontrol) { /* Saving values not supported */
1365 mk_sense_buffer(devip, ILLEGAL_REQUEST, SAVING_PARAMS_UNSUP,
1366 0);
1367 return check_condition_result;
1368 }
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001369 target_dev_id = ((devip->sdbg_host->shost->host_no + 1) * 2000) +
1370 (devip->target * 1000) - 3;
Douglas Gilbert23183912006-09-16 20:30:47 -04001371 /* set DPOFUA bit for disks */
1372 if (0 == scsi_debug_ptype)
1373 dev_spec = (DEV_READONLY(target) ? 0x80 : 0x0) | 0x10;
1374 else
1375 dev_spec = 0x0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 if (msense_6) {
1377 arr[2] = dev_spec;
Douglas Gilbert23183912006-09-16 20:30:47 -04001378 arr[3] = bd_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 offset = 4;
1380 } else {
1381 arr[3] = dev_spec;
Douglas Gilbert23183912006-09-16 20:30:47 -04001382 if (16 == bd_len)
1383 arr[4] = 0x1; /* set LONGLBA bit */
1384 arr[7] = bd_len; /* assume 255 or less */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 offset = 8;
1386 }
1387 ap = arr + offset;
FUJITA Tomonori28898872008-03-30 00:59:55 +09001388 if ((bd_len > 0) && (!sdebug_capacity))
1389 sdebug_capacity = get_sdebug_capacity();
1390
Douglas Gilbert23183912006-09-16 20:30:47 -04001391 if (8 == bd_len) {
1392 if (sdebug_capacity > 0xfffffffe) {
1393 ap[0] = 0xff;
1394 ap[1] = 0xff;
1395 ap[2] = 0xff;
1396 ap[3] = 0xff;
1397 } else {
1398 ap[0] = (sdebug_capacity >> 24) & 0xff;
1399 ap[1] = (sdebug_capacity >> 16) & 0xff;
1400 ap[2] = (sdebug_capacity >> 8) & 0xff;
1401 ap[3] = sdebug_capacity & 0xff;
1402 }
Martin K. Petersen597136a2008-06-05 00:12:59 -04001403 ap[6] = (scsi_debug_sector_size >> 8) & 0xff;
1404 ap[7] = scsi_debug_sector_size & 0xff;
Douglas Gilbert23183912006-09-16 20:30:47 -04001405 offset += bd_len;
1406 ap = arr + offset;
1407 } else if (16 == bd_len) {
1408 unsigned long long capac = sdebug_capacity;
1409
1410 for (k = 0; k < 8; ++k, capac >>= 8)
1411 ap[7 - k] = capac & 0xff;
Martin K. Petersen597136a2008-06-05 00:12:59 -04001412 ap[12] = (scsi_debug_sector_size >> 24) & 0xff;
1413 ap[13] = (scsi_debug_sector_size >> 16) & 0xff;
1414 ap[14] = (scsi_debug_sector_size >> 8) & 0xff;
1415 ap[15] = scsi_debug_sector_size & 0xff;
Douglas Gilbert23183912006-09-16 20:30:47 -04001416 offset += bd_len;
1417 ap = arr + offset;
1418 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001420 if ((subpcode > 0x0) && (subpcode < 0xff) && (0x19 != pcode)) {
1421 /* TODO: Control Extension page */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 mk_sense_buffer(devip, ILLEGAL_REQUEST, INVALID_FIELD_IN_CDB,
1423 0);
1424 return check_condition_result;
1425 }
1426 switch (pcode) {
1427 case 0x1: /* Read-Write error recovery page, direct access */
1428 len = resp_err_recov_pg(ap, pcontrol, target);
1429 offset += len;
1430 break;
1431 case 0x2: /* Disconnect-Reconnect page, all devices */
1432 len = resp_disconnect_pg(ap, pcontrol, target);
1433 offset += len;
1434 break;
1435 case 0x3: /* Format device page, direct access */
1436 len = resp_format_pg(ap, pcontrol, target);
1437 offset += len;
1438 break;
1439 case 0x8: /* Caching page, direct access */
1440 len = resp_caching_pg(ap, pcontrol, target);
1441 offset += len;
1442 break;
1443 case 0xa: /* Control Mode page, all devices */
1444 len = resp_ctrl_m_pg(ap, pcontrol, target);
1445 offset += len;
1446 break;
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001447 case 0x19: /* if spc==1 then sas phy, control+discover */
1448 if ((subpcode > 0x2) && (subpcode < 0xff)) {
1449 mk_sense_buffer(devip, ILLEGAL_REQUEST,
1450 INVALID_FIELD_IN_CDB, 0);
1451 return check_condition_result;
1452 }
1453 len = 0;
1454 if ((0x0 == subpcode) || (0xff == subpcode))
1455 len += resp_sas_sf_m_pg(ap + len, pcontrol, target);
1456 if ((0x1 == subpcode) || (0xff == subpcode))
1457 len += resp_sas_pcd_m_spg(ap + len, pcontrol, target,
1458 target_dev_id);
1459 if ((0x2 == subpcode) || (0xff == subpcode))
1460 len += resp_sas_sha_m_spg(ap + len, pcontrol);
1461 offset += len;
1462 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 case 0x1c: /* Informational Exceptions Mode page, all devices */
1464 len = resp_iec_m_pg(ap, pcontrol, target);
1465 offset += len;
1466 break;
1467 case 0x3f: /* Read all Mode pages */
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001468 if ((0 == subpcode) || (0xff == subpcode)) {
1469 len = resp_err_recov_pg(ap, pcontrol, target);
1470 len += resp_disconnect_pg(ap + len, pcontrol, target);
1471 len += resp_format_pg(ap + len, pcontrol, target);
1472 len += resp_caching_pg(ap + len, pcontrol, target);
1473 len += resp_ctrl_m_pg(ap + len, pcontrol, target);
1474 len += resp_sas_sf_m_pg(ap + len, pcontrol, target);
1475 if (0xff == subpcode) {
1476 len += resp_sas_pcd_m_spg(ap + len, pcontrol,
1477 target, target_dev_id);
1478 len += resp_sas_sha_m_spg(ap + len, pcontrol);
1479 }
1480 len += resp_iec_m_pg(ap + len, pcontrol, target);
1481 } else {
1482 mk_sense_buffer(devip, ILLEGAL_REQUEST,
1483 INVALID_FIELD_IN_CDB, 0);
1484 return check_condition_result;
1485 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 offset += len;
1487 break;
1488 default:
1489 mk_sense_buffer(devip, ILLEGAL_REQUEST, INVALID_FIELD_IN_CDB,
1490 0);
1491 return check_condition_result;
1492 }
1493 if (msense_6)
1494 arr[0] = offset - 1;
1495 else {
1496 arr[0] = ((offset - 2) >> 8) & 0xff;
1497 arr[1] = (offset - 2) & 0xff;
1498 }
1499 return fill_from_dev_buffer(scp, arr, min(alloc_len, offset));
1500}
1501
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001502#define SDEBUG_MAX_MSELECT_SZ 512
1503
1504static int resp_mode_select(struct scsi_cmnd * scp, int mselect6,
1505 struct sdebug_dev_info * devip)
1506{
1507 int pf, sp, ps, md_len, bd_len, off, spf, pg_len;
1508 int param_len, res, errsts, mpage;
1509 unsigned char arr[SDEBUG_MAX_MSELECT_SZ];
1510 unsigned char *cmd = (unsigned char *)scp->cmnd;
1511
1512 if ((errsts = check_readiness(scp, 1, devip)))
1513 return errsts;
1514 memset(arr, 0, sizeof(arr));
1515 pf = cmd[1] & 0x10;
1516 sp = cmd[1] & 0x1;
1517 param_len = mselect6 ? cmd[4] : ((cmd[7] << 8) + cmd[8]);
1518 if ((0 == pf) || sp || (param_len > SDEBUG_MAX_MSELECT_SZ)) {
1519 mk_sense_buffer(devip, ILLEGAL_REQUEST,
1520 INVALID_FIELD_IN_CDB, 0);
1521 return check_condition_result;
1522 }
1523 res = fetch_to_dev_buffer(scp, arr, param_len);
1524 if (-1 == res)
1525 return (DID_ERROR << 16);
1526 else if ((res < param_len) &&
1527 (SCSI_DEBUG_OPT_NOISE & scsi_debug_opts))
1528 printk(KERN_INFO "scsi_debug: mode_select: cdb indicated=%d, "
1529 " IO sent=%d bytes\n", param_len, res);
1530 md_len = mselect6 ? (arr[0] + 1) : ((arr[0] << 8) + arr[1] + 2);
1531 bd_len = mselect6 ? arr[3] : ((arr[6] << 8) + arr[7]);
Douglas Gilbert23183912006-09-16 20:30:47 -04001532 if (md_len > 2) {
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001533 mk_sense_buffer(devip, ILLEGAL_REQUEST,
1534 INVALID_FIELD_IN_PARAM_LIST, 0);
1535 return check_condition_result;
1536 }
1537 off = bd_len + (mselect6 ? 4 : 8);
1538 mpage = arr[off] & 0x3f;
1539 ps = !!(arr[off] & 0x80);
1540 if (ps) {
1541 mk_sense_buffer(devip, ILLEGAL_REQUEST,
1542 INVALID_FIELD_IN_PARAM_LIST, 0);
1543 return check_condition_result;
1544 }
1545 spf = !!(arr[off] & 0x40);
1546 pg_len = spf ? ((arr[off + 2] << 8) + arr[off + 3] + 4) :
1547 (arr[off + 1] + 2);
1548 if ((pg_len + off) > param_len) {
1549 mk_sense_buffer(devip, ILLEGAL_REQUEST,
1550 PARAMETER_LIST_LENGTH_ERR, 0);
1551 return check_condition_result;
1552 }
1553 switch (mpage) {
1554 case 0xa: /* Control Mode page */
1555 if (ctrl_m_pg[1] == arr[off + 1]) {
1556 memcpy(ctrl_m_pg + 2, arr + off + 2,
1557 sizeof(ctrl_m_pg) - 2);
1558 scsi_debug_dsense = !!(ctrl_m_pg[2] & 0x4);
1559 return 0;
1560 }
1561 break;
1562 case 0x1c: /* Informational Exceptions Mode page */
1563 if (iec_m_pg[1] == arr[off + 1]) {
1564 memcpy(iec_m_pg + 2, arr + off + 2,
1565 sizeof(iec_m_pg) - 2);
1566 return 0;
1567 }
1568 break;
1569 default:
1570 break;
1571 }
1572 mk_sense_buffer(devip, ILLEGAL_REQUEST,
1573 INVALID_FIELD_IN_PARAM_LIST, 0);
1574 return check_condition_result;
1575}
1576
1577static int resp_temp_l_pg(unsigned char * arr)
1578{
1579 unsigned char temp_l_pg[] = {0x0, 0x0, 0x3, 0x2, 0x0, 38,
1580 0x0, 0x1, 0x3, 0x2, 0x0, 65,
1581 };
1582
1583 memcpy(arr, temp_l_pg, sizeof(temp_l_pg));
1584 return sizeof(temp_l_pg);
1585}
1586
1587static int resp_ie_l_pg(unsigned char * arr)
1588{
1589 unsigned char ie_l_pg[] = {0x0, 0x0, 0x3, 0x3, 0x0, 0x0, 38,
1590 };
1591
1592 memcpy(arr, ie_l_pg, sizeof(ie_l_pg));
1593 if (iec_m_pg[2] & 0x4) { /* TEST bit set */
1594 arr[4] = THRESHOLD_EXCEEDED;
1595 arr[5] = 0xff;
1596 }
1597 return sizeof(ie_l_pg);
1598}
1599
1600#define SDEBUG_MAX_LSENSE_SZ 512
1601
1602static int resp_log_sense(struct scsi_cmnd * scp,
1603 struct sdebug_dev_info * devip)
1604{
Douglas Gilbert23183912006-09-16 20:30:47 -04001605 int ppc, sp, pcontrol, pcode, subpcode, alloc_len, errsts, len, n;
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001606 unsigned char arr[SDEBUG_MAX_LSENSE_SZ];
1607 unsigned char *cmd = (unsigned char *)scp->cmnd;
1608
1609 if ((errsts = check_readiness(scp, 1, devip)))
1610 return errsts;
1611 memset(arr, 0, sizeof(arr));
1612 ppc = cmd[1] & 0x2;
1613 sp = cmd[1] & 0x1;
1614 if (ppc || sp) {
1615 mk_sense_buffer(devip, ILLEGAL_REQUEST,
1616 INVALID_FIELD_IN_CDB, 0);
1617 return check_condition_result;
1618 }
1619 pcontrol = (cmd[2] & 0xc0) >> 6;
1620 pcode = cmd[2] & 0x3f;
Douglas Gilbert23183912006-09-16 20:30:47 -04001621 subpcode = cmd[3] & 0xff;
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001622 alloc_len = (cmd[7] << 8) + cmd[8];
1623 arr[0] = pcode;
Douglas Gilbert23183912006-09-16 20:30:47 -04001624 if (0 == subpcode) {
1625 switch (pcode) {
1626 case 0x0: /* Supported log pages log page */
1627 n = 4;
1628 arr[n++] = 0x0; /* this page */
1629 arr[n++] = 0xd; /* Temperature */
1630 arr[n++] = 0x2f; /* Informational exceptions */
1631 arr[3] = n - 4;
1632 break;
1633 case 0xd: /* Temperature log page */
1634 arr[3] = resp_temp_l_pg(arr + 4);
1635 break;
1636 case 0x2f: /* Informational exceptions log page */
1637 arr[3] = resp_ie_l_pg(arr + 4);
1638 break;
1639 default:
1640 mk_sense_buffer(devip, ILLEGAL_REQUEST,
1641 INVALID_FIELD_IN_CDB, 0);
1642 return check_condition_result;
1643 }
1644 } else if (0xff == subpcode) {
1645 arr[0] |= 0x40;
1646 arr[1] = subpcode;
1647 switch (pcode) {
1648 case 0x0: /* Supported log pages and subpages log page */
1649 n = 4;
1650 arr[n++] = 0x0;
1651 arr[n++] = 0x0; /* 0,0 page */
1652 arr[n++] = 0x0;
1653 arr[n++] = 0xff; /* this page */
1654 arr[n++] = 0xd;
1655 arr[n++] = 0x0; /* Temperature */
1656 arr[n++] = 0x2f;
1657 arr[n++] = 0x0; /* Informational exceptions */
1658 arr[3] = n - 4;
1659 break;
1660 case 0xd: /* Temperature subpages */
1661 n = 4;
1662 arr[n++] = 0xd;
1663 arr[n++] = 0x0; /* Temperature */
1664 arr[3] = n - 4;
1665 break;
1666 case 0x2f: /* Informational exceptions subpages */
1667 n = 4;
1668 arr[n++] = 0x2f;
1669 arr[n++] = 0x0; /* Informational exceptions */
1670 arr[3] = n - 4;
1671 break;
1672 default:
1673 mk_sense_buffer(devip, ILLEGAL_REQUEST,
1674 INVALID_FIELD_IN_CDB, 0);
1675 return check_condition_result;
1676 }
1677 } else {
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001678 mk_sense_buffer(devip, ILLEGAL_REQUEST,
1679 INVALID_FIELD_IN_CDB, 0);
1680 return check_condition_result;
1681 }
1682 len = min(((arr[2] << 8) + arr[3]) + 4, alloc_len);
1683 return fill_from_dev_buffer(scp, arr,
1684 min(len, SDEBUG_MAX_INQ_ARR_SZ));
1685}
1686
FUJITA Tomonori19789102008-03-30 00:59:56 +09001687static int check_device_access_params(struct sdebug_dev_info *devi,
1688 unsigned long long lba, unsigned int num)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689{
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001690 if (lba + num > sdebug_capacity) {
FUJITA Tomonori19789102008-03-30 00:59:56 +09001691 mk_sense_buffer(devi, ILLEGAL_REQUEST, ADDR_OUT_OF_RANGE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 return check_condition_result;
1693 }
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001694 /* transfer length excessive (tie in to block limits VPD page) */
1695 if (num > sdebug_store_sectors) {
FUJITA Tomonori19789102008-03-30 00:59:56 +09001696 mk_sense_buffer(devi, ILLEGAL_REQUEST, INVALID_FIELD_IN_CDB, 0);
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001697 return check_condition_result;
1698 }
FUJITA Tomonori19789102008-03-30 00:59:56 +09001699 return 0;
1700}
1701
Akinobu Mitaa4517512013-07-08 16:01:57 -07001702/* Returns number of bytes copied or -1 if error. */
FUJITA Tomonori19789102008-03-30 00:59:56 +09001703static int do_device_access(struct scsi_cmnd *scmd,
1704 struct sdebug_dev_info *devi,
1705 unsigned long long lba, unsigned int num, int write)
1706{
1707 int ret;
Darrick J. Wonga361cc02011-01-31 18:47:54 -08001708 unsigned long long block, rest = 0;
Akinobu Mitaa4517512013-07-08 16:01:57 -07001709 struct scsi_data_buffer *sdb;
1710 enum dma_data_direction dir;
1711 size_t (*func)(struct scatterlist *, unsigned int, void *, size_t,
1712 off_t);
FUJITA Tomonori19789102008-03-30 00:59:56 +09001713
Akinobu Mitaa4517512013-07-08 16:01:57 -07001714 if (write) {
1715 sdb = scsi_out(scmd);
1716 dir = DMA_TO_DEVICE;
1717 func = sg_pcopy_to_buffer;
1718 } else {
1719 sdb = scsi_in(scmd);
1720 dir = DMA_FROM_DEVICE;
1721 func = sg_pcopy_from_buffer;
1722 }
1723
1724 if (!sdb->length)
1725 return 0;
1726 if (!(scsi_bidi_cmnd(scmd) || scmd->sc_data_direction == dir))
1727 return -1;
FUJITA Tomonori19789102008-03-30 00:59:56 +09001728
1729 block = do_div(lba, sdebug_store_sectors);
1730 if (block + num > sdebug_store_sectors)
1731 rest = block + num - sdebug_store_sectors;
1732
Akinobu Mitaa4517512013-07-08 16:01:57 -07001733 ret = func(sdb->table.sgl, sdb->table.nents,
1734 fake_storep + (block * scsi_debug_sector_size),
1735 (num - rest) * scsi_debug_sector_size, 0);
1736 if (ret != (num - rest) * scsi_debug_sector_size)
1737 return ret;
1738
1739 if (rest) {
1740 ret += func(sdb->table.sgl, sdb->table.nents,
1741 fake_storep, rest * scsi_debug_sector_size,
1742 (num - rest) * scsi_debug_sector_size);
1743 }
FUJITA Tomonori19789102008-03-30 00:59:56 +09001744
1745 return ret;
1746}
1747
Akinobu Mita51d648a2013-09-18 21:27:28 +09001748static __be16 dif_compute_csum(const void *buf, int len)
Akinobu Mitabeb40ea2013-06-29 17:59:19 +09001749{
Akinobu Mita51d648a2013-09-18 21:27:28 +09001750 __be16 csum;
Akinobu Mitabeb40ea2013-06-29 17:59:19 +09001751
Akinobu Mita51d648a2013-09-18 21:27:28 +09001752 if (scsi_debug_guard)
1753 csum = (__force __be16)ip_compute_csum(buf, len);
1754 else
Akinobu Mitabeb40ea2013-06-29 17:59:19 +09001755 csum = cpu_to_be16(crc_t10dif(buf, len));
Akinobu Mita51d648a2013-09-18 21:27:28 +09001756
Akinobu Mitabeb40ea2013-06-29 17:59:19 +09001757 return csum;
1758}
1759
1760static int dif_verify(struct sd_dif_tuple *sdt, const void *data,
1761 sector_t sector, u32 ei_lba)
1762{
Akinobu Mita51d648a2013-09-18 21:27:28 +09001763 __be16 csum = dif_compute_csum(data, scsi_debug_sector_size);
Akinobu Mitabeb40ea2013-06-29 17:59:19 +09001764
1765 if (sdt->guard_tag != csum) {
1766 pr_err("%s: GUARD check failed on sector %lu rcvd 0x%04x, data 0x%04x\n",
1767 __func__,
1768 (unsigned long)sector,
1769 be16_to_cpu(sdt->guard_tag),
1770 be16_to_cpu(csum));
1771 return 0x01;
1772 }
1773 if (scsi_debug_dif == SD_DIF_TYPE1_PROTECTION &&
1774 be32_to_cpu(sdt->ref_tag) != (sector & 0xffffffff)) {
1775 pr_err("%s: REF check failed on sector %lu\n",
1776 __func__, (unsigned long)sector);
1777 return 0x03;
1778 }
1779 if (scsi_debug_dif == SD_DIF_TYPE2_PROTECTION &&
1780 be32_to_cpu(sdt->ref_tag) != ei_lba) {
1781 pr_err("%s: REF check failed on sector %lu\n",
1782 __func__, (unsigned long)sector);
Akinobu Mitabeb40ea2013-06-29 17:59:19 +09001783 return 0x03;
1784 }
1785 return 0;
1786}
1787
Akinobu Mitabb8c0632013-09-18 21:27:25 +09001788static void dif_copy_prot(struct scsi_cmnd *SCpnt, sector_t sector,
Akinobu Mita65f72f2a2013-09-18 21:27:26 +09001789 unsigned int sectors, bool read)
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001790{
1791 unsigned int i, resid;
1792 struct scatterlist *psgl;
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;
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001795
Akinobu Mitae18d8be2013-06-29 17:59:18 +09001796 /* Bytes of protection data to copy into sgl */
1797 resid = sectors * sizeof(*dif_storep);
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001798
1799 scsi_for_each_prot_sg(SCpnt, psgl, scsi_prot_sg_count(SCpnt), i) {
1800 int len = min(psgl->length, resid);
Akinobu Mita14faa942013-09-18 21:27:24 +09001801 void *start = dif_store(sector);
1802 int rest = 0;
1803
1804 if (dif_store_end < start + len)
1805 rest = start + len - dif_store_end;
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001806
Cong Wang77dfce02011-11-25 23:14:23 +08001807 paddr = kmap_atomic(sg_page(psgl)) + psgl->offset;
Akinobu Mita14faa942013-09-18 21:27:24 +09001808
Akinobu Mita65f72f2a2013-09-18 21:27:26 +09001809 if (read)
1810 memcpy(paddr, start, len - rest);
1811 else
1812 memcpy(start, paddr, len - rest);
1813
1814 if (rest) {
1815 if (read)
1816 memcpy(paddr + len - rest, dif_storep, rest);
1817 else
1818 memcpy(dif_storep, paddr + len - rest, rest);
1819 }
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001820
Akinobu Mitae18d8be2013-06-29 17:59:18 +09001821 sector += len / sizeof(*dif_storep);
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001822 resid -= len;
Cong Wang77dfce02011-11-25 23:14:23 +08001823 kunmap_atomic(paddr);
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001824 }
Akinobu Mitabb8c0632013-09-18 21:27:25 +09001825}
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001826
Akinobu Mitabb8c0632013-09-18 21:27:25 +09001827static int prot_verify_read(struct scsi_cmnd *SCpnt, sector_t start_sec,
1828 unsigned int sectors, u32 ei_lba)
1829{
1830 unsigned int i;
1831 struct sd_dif_tuple *sdt;
1832 sector_t sector;
1833
Akinobu Mitac45eabec2014-02-26 22:56:58 +09001834 for (i = 0; i < sectors; i++, ei_lba++) {
Akinobu Mitabb8c0632013-09-18 21:27:25 +09001835 int ret;
1836
1837 sector = start_sec + i;
1838 sdt = dif_store(sector);
1839
Akinobu Mita51d648a2013-09-18 21:27:28 +09001840 if (sdt->app_tag == cpu_to_be16(0xffff))
Akinobu Mitabb8c0632013-09-18 21:27:25 +09001841 continue;
1842
1843 ret = dif_verify(sdt, fake_store(sector), sector, ei_lba);
1844 if (ret) {
1845 dif_errors++;
1846 return ret;
1847 }
Akinobu Mitabb8c0632013-09-18 21:27:25 +09001848 }
1849
Akinobu Mita65f72f2a2013-09-18 21:27:26 +09001850 dif_copy_prot(SCpnt, start_sec, sectors, true);
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001851 dix_reads++;
1852
1853 return 0;
1854}
1855
FUJITA Tomonori19789102008-03-30 00:59:56 +09001856static int resp_read(struct scsi_cmnd *SCpnt, unsigned long long lba,
Martin K. Petersen395cef02009-09-18 17:33:03 -04001857 unsigned int num, struct sdebug_dev_info *devip,
1858 u32 ei_lba)
FUJITA Tomonori19789102008-03-30 00:59:56 +09001859{
1860 unsigned long iflags;
1861 int ret;
1862
1863 ret = check_device_access_params(devip, lba, num);
1864 if (ret)
1865 return ret;
1866
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 if ((SCSI_DEBUG_OPT_MEDIUM_ERR & scsi_debug_opts) &&
Douglas Gilbert32f7ef72011-03-11 10:43:35 -05001868 (lba <= (OPT_MEDIUM_ERR_ADDR + OPT_MEDIUM_ERR_NUM - 1)) &&
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001869 ((lba + num) > OPT_MEDIUM_ERR_ADDR)) {
1870 /* claim unrecoverable read error */
Douglas Gilbert32f7ef72011-03-11 10:43:35 -05001871 mk_sense_buffer(devip, MEDIUM_ERROR, UNRECOVERED_READ_ERR, 0);
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001872 /* set info field and valid bit for fixed descriptor */
1873 if (0x70 == (devip->sense_buff[0] & 0x7f)) {
1874 devip->sense_buff[0] |= 0x80; /* Valid bit */
Douglas Gilbert32f7ef72011-03-11 10:43:35 -05001875 ret = (lba < OPT_MEDIUM_ERR_ADDR)
1876 ? OPT_MEDIUM_ERR_ADDR : (int)lba;
Douglas Gilbertc65b1442006-06-06 00:11:24 -04001877 devip->sense_buff[3] = (ret >> 24) & 0xff;
1878 devip->sense_buff[4] = (ret >> 16) & 0xff;
1879 devip->sense_buff[5] = (ret >> 8) & 0xff;
1880 devip->sense_buff[6] = ret & 0xff;
1881 }
Douglas Gilberta87e3a62010-12-17 19:16:06 -05001882 scsi_set_resid(SCpnt, scsi_bufflen(SCpnt));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 return check_condition_result;
1884 }
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001885
1886 /* DIX + T10 DIF */
1887 if (scsi_debug_dix && scsi_prot_sg_count(SCpnt)) {
Martin K. Petersen395cef02009-09-18 17:33:03 -04001888 int prot_ret = prot_verify_read(SCpnt, lba, num, ei_lba);
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001889
1890 if (prot_ret) {
1891 mk_sense_buffer(devip, ABORTED_COMMAND, 0x10, prot_ret);
1892 return illegal_condition_result;
1893 }
1894 }
1895
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 read_lock_irqsave(&atomic_rw, iflags);
FUJITA Tomonori19789102008-03-30 00:59:56 +09001897 ret = do_device_access(SCpnt, devip, lba, num, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 read_unlock_irqrestore(&atomic_rw, iflags);
Akinobu Mitaa4517512013-07-08 16:01:57 -07001899 if (ret == -1)
1900 return DID_ERROR << 16;
1901
1902 scsi_in(SCpnt)->resid = scsi_bufflen(SCpnt) - ret;
1903
1904 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905}
1906
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001907void dump_sector(unsigned char *buf, int len)
1908{
1909 int i, j;
1910
1911 printk(KERN_ERR ">>> Sector Dump <<<\n");
1912
1913 for (i = 0 ; i < len ; i += 16) {
1914 printk(KERN_ERR "%04d: ", i);
1915
1916 for (j = 0 ; j < 16 ; j++) {
1917 unsigned char c = buf[i+j];
1918 if (c >= 0x20 && c < 0x7e)
1919 printk(" %c ", buf[i+j]);
1920 else
1921 printk("%02x ", buf[i+j]);
1922 }
1923
1924 printk("\n");
1925 }
1926}
1927
1928static int prot_verify_write(struct scsi_cmnd *SCpnt, sector_t start_sec,
Martin K. Petersen395cef02009-09-18 17:33:03 -04001929 unsigned int sectors, u32 ei_lba)
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001930{
1931 int i, j, ret;
1932 struct sd_dif_tuple *sdt;
Akinobu Mita65f72f2a2013-09-18 21:27:26 +09001933 struct scatterlist *dsgl;
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001934 struct scatterlist *psgl = scsi_prot_sglist(SCpnt);
1935 void *daddr, *paddr;
Akinobu Mita65f72f2a2013-09-18 21:27:26 +09001936 sector_t sector = start_sec;
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001937 int ppage_offset;
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001938
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001939 BUG_ON(scsi_sg_count(SCpnt) == 0);
1940 BUG_ON(scsi_prot_sg_count(SCpnt) == 0);
1941
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001942 ppage_offset = 0;
1943
1944 /* For each data page */
1945 scsi_for_each_sg(SCpnt, dsgl, scsi_sg_count(SCpnt), i) {
Cong Wang77dfce02011-11-25 23:14:23 +08001946 daddr = kmap_atomic(sg_page(dsgl)) + dsgl->offset;
Akinobu Mitafc3fc352013-06-29 17:59:15 +09001947 paddr = kmap_atomic(sg_page(psgl)) + psgl->offset;
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001948
1949 /* For each sector-sized chunk in data page */
Akinobu Mita518d9df2013-06-29 17:59:14 +09001950 for (j = 0; j < dsgl->length; j += scsi_debug_sector_size) {
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001951
1952 /* If we're at the end of the current
1953 * protection page advance to the next one
1954 */
1955 if (ppage_offset >= psgl->length) {
Cong Wang77dfce02011-11-25 23:14:23 +08001956 kunmap_atomic(paddr);
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001957 psgl = sg_next(psgl);
1958 BUG_ON(psgl == NULL);
Cong Wang77dfce02011-11-25 23:14:23 +08001959 paddr = kmap_atomic(sg_page(psgl))
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001960 + psgl->offset;
1961 ppage_offset = 0;
1962 }
1963
1964 sdt = paddr + ppage_offset;
1965
Akinobu Mita65f72f2a2013-09-18 21:27:26 +09001966 ret = dif_verify(sdt, daddr + j, sector, ei_lba);
Akinobu Mitabeb40ea2013-06-29 17:59:19 +09001967 if (ret) {
Akinobu Mita518d9df2013-06-29 17:59:14 +09001968 dump_sector(daddr + j, scsi_debug_sector_size);
Martin K. Petersen395cef02009-09-18 17:33:03 -04001969 goto out;
1970 }
1971
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001972 sector++;
Martin K. Petersen395cef02009-09-18 17:33:03 -04001973 ei_lba++;
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001974 ppage_offset += sizeof(struct sd_dif_tuple);
1975 }
1976
Akinobu Mitafc3fc352013-06-29 17:59:15 +09001977 kunmap_atomic(paddr);
Cong Wang77dfce02011-11-25 23:14:23 +08001978 kunmap_atomic(daddr);
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001979 }
1980
Akinobu Mita65f72f2a2013-09-18 21:27:26 +09001981 dif_copy_prot(SCpnt, start_sec, sectors, false);
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001982 dix_writes++;
1983
1984 return 0;
1985
1986out:
1987 dif_errors++;
Cong Wang77dfce02011-11-25 23:14:23 +08001988 kunmap_atomic(paddr);
Akinobu Mitafc3fc352013-06-29 17:59:15 +09001989 kunmap_atomic(daddr);
Martin K. Petersenc6a44282009-01-04 03:08:19 -05001990 return ret;
1991}
1992
Akinobu Mitab90ebc32013-04-16 22:11:58 +09001993static unsigned long lba_to_map_index(sector_t lba)
1994{
1995 if (scsi_debug_unmap_alignment) {
1996 lba += scsi_debug_unmap_granularity -
1997 scsi_debug_unmap_alignment;
1998 }
1999 do_div(lba, scsi_debug_unmap_granularity);
2000
2001 return lba;
2002}
2003
2004static sector_t map_index_to_lba(unsigned long index)
2005{
Akinobu Mitaa027b5b2013-08-26 22:08:41 +09002006 sector_t lba = index * scsi_debug_unmap_granularity;
2007
2008 if (scsi_debug_unmap_alignment) {
2009 lba -= scsi_debug_unmap_granularity -
2010 scsi_debug_unmap_alignment;
2011 }
2012
2013 return lba;
Akinobu Mitab90ebc32013-04-16 22:11:58 +09002014}
2015
Martin K. Petersen44d92692009-10-15 14:45:27 -04002016static unsigned int map_state(sector_t lba, unsigned int *num)
2017{
Akinobu Mitab90ebc32013-04-16 22:11:58 +09002018 sector_t end;
2019 unsigned int mapped;
2020 unsigned long index;
2021 unsigned long next;
Martin K. Petersen44d92692009-10-15 14:45:27 -04002022
Akinobu Mitab90ebc32013-04-16 22:11:58 +09002023 index = lba_to_map_index(lba);
2024 mapped = test_bit(index, map_storep);
Martin K. Petersen44d92692009-10-15 14:45:27 -04002025
2026 if (mapped)
Akinobu Mitab90ebc32013-04-16 22:11:58 +09002027 next = find_next_zero_bit(map_storep, map_size, index);
Martin K. Petersen44d92692009-10-15 14:45:27 -04002028 else
Akinobu Mitab90ebc32013-04-16 22:11:58 +09002029 next = find_next_bit(map_storep, map_size, index);
Martin K. Petersen44d92692009-10-15 14:45:27 -04002030
Akinobu Mitab90ebc32013-04-16 22:11:58 +09002031 end = min_t(sector_t, sdebug_store_sectors, map_index_to_lba(next));
Martin K. Petersen44d92692009-10-15 14:45:27 -04002032 *num = end - lba;
2033
2034 return mapped;
2035}
2036
2037static void map_region(sector_t lba, unsigned int len)
2038{
Martin K. Petersen44d92692009-10-15 14:45:27 -04002039 sector_t end = lba + len;
2040
Martin K. Petersen44d92692009-10-15 14:45:27 -04002041 while (lba < end) {
Akinobu Mitab90ebc32013-04-16 22:11:58 +09002042 unsigned long index = lba_to_map_index(lba);
Martin K. Petersen44d92692009-10-15 14:45:27 -04002043
Akinobu Mitab90ebc32013-04-16 22:11:58 +09002044 if (index < map_size)
2045 set_bit(index, map_storep);
Martin K. Petersen44d92692009-10-15 14:45:27 -04002046
Akinobu Mitab90ebc32013-04-16 22:11:58 +09002047 lba = map_index_to_lba(index + 1);
Martin K. Petersen44d92692009-10-15 14:45:27 -04002048 }
2049}
2050
2051static void unmap_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 (lba == map_index_to_lba(index) &&
2059 lba + scsi_debug_unmap_granularity <= end &&
2060 index < map_size) {
2061 clear_bit(index, map_storep);
2062 if (scsi_debug_lbprz) {
Eric Sandeenbe1dd782012-03-08 00:03:59 -06002063 memset(fake_storep +
Akinobu Mitacc34a8e2013-04-16 22:11:57 +09002064 lba * scsi_debug_sector_size, 0,
2065 scsi_debug_sector_size *
2066 scsi_debug_unmap_granularity);
Akinobu Mitab90ebc32013-04-16 22:11:58 +09002067 }
Akinobu Mitae9926b42013-06-29 17:59:17 +09002068 if (dif_storep) {
2069 memset(dif_storep + lba, 0xff,
2070 sizeof(*dif_storep) *
2071 scsi_debug_unmap_granularity);
2072 }
Eric Sandeenbe1dd782012-03-08 00:03:59 -06002073 }
Akinobu Mitab90ebc32013-04-16 22:11:58 +09002074 lba = map_index_to_lba(index + 1);
Martin K. Petersen44d92692009-10-15 14:45:27 -04002075 }
2076}
2077
FUJITA Tomonori19789102008-03-30 00:59:56 +09002078static int resp_write(struct scsi_cmnd *SCpnt, unsigned long long lba,
Martin K. Petersen395cef02009-09-18 17:33:03 -04002079 unsigned int num, struct sdebug_dev_info *devip,
2080 u32 ei_lba)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081{
2082 unsigned long iflags;
FUJITA Tomonori19789102008-03-30 00:59:56 +09002083 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084
FUJITA Tomonori19789102008-03-30 00:59:56 +09002085 ret = check_device_access_params(devip, lba, num);
2086 if (ret)
2087 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
Martin K. Petersenc6a44282009-01-04 03:08:19 -05002089 /* DIX + T10 DIF */
2090 if (scsi_debug_dix && scsi_prot_sg_count(SCpnt)) {
Martin K. Petersen395cef02009-09-18 17:33:03 -04002091 int prot_ret = prot_verify_write(SCpnt, lba, num, ei_lba);
Martin K. Petersenc6a44282009-01-04 03:08:19 -05002092
2093 if (prot_ret) {
2094 mk_sense_buffer(devip, ILLEGAL_REQUEST, 0x10, prot_ret);
2095 return illegal_condition_result;
2096 }
2097 }
2098
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 write_lock_irqsave(&atomic_rw, iflags);
FUJITA Tomonori19789102008-03-30 00:59:56 +09002100 ret = do_device_access(SCpnt, devip, lba, num, 1);
Akinobu Mita9ed8d3d2013-04-16 22:11:55 +09002101 if (scsi_debug_lbp())
Martin K. Petersen44d92692009-10-15 14:45:27 -04002102 map_region(lba, num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 write_unlock_irqrestore(&atomic_rw, iflags);
FUJITA Tomonori19789102008-03-30 00:59:56 +09002104 if (-1 == ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 return (DID_ERROR << 16);
Martin K. Petersen597136a2008-06-05 00:12:59 -04002106 else if ((ret < (num * scsi_debug_sector_size)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 (SCSI_DEBUG_OPT_NOISE & scsi_debug_opts))
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002108 printk(KERN_INFO "scsi_debug: write: cdb indicated=%u, "
Martin K. Petersen597136a2008-06-05 00:12:59 -04002109 " IO sent=%d bytes\n", num * scsi_debug_sector_size, ret);
Martin K. Petersen44d92692009-10-15 14:45:27 -04002110
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 return 0;
2112}
2113
Martin K. Petersen44d92692009-10-15 14:45:27 -04002114static int resp_write_same(struct scsi_cmnd *scmd, unsigned long long lba,
2115 unsigned int num, struct sdebug_dev_info *devip,
2116 u32 ei_lba, unsigned int unmap)
2117{
2118 unsigned long iflags;
2119 unsigned long long i;
2120 int ret;
2121
2122 ret = check_device_access_params(devip, lba, num);
2123 if (ret)
2124 return ret;
2125
Martin K. Petersen5b94e232011-03-08 02:08:11 -05002126 if (num > scsi_debug_write_same_length) {
2127 mk_sense_buffer(devip, ILLEGAL_REQUEST, INVALID_FIELD_IN_CDB,
2128 0);
2129 return check_condition_result;
2130 }
2131
Martin K. Petersen44d92692009-10-15 14:45:27 -04002132 write_lock_irqsave(&atomic_rw, iflags);
2133
Akinobu Mita9ed8d3d2013-04-16 22:11:55 +09002134 if (unmap && scsi_debug_lbp()) {
Martin K. Petersen44d92692009-10-15 14:45:27 -04002135 unmap_region(lba, num);
2136 goto out;
2137 }
2138
2139 /* Else fetch one logical block */
2140 ret = fetch_to_dev_buffer(scmd,
2141 fake_storep + (lba * scsi_debug_sector_size),
2142 scsi_debug_sector_size);
2143
2144 if (-1 == ret) {
2145 write_unlock_irqrestore(&atomic_rw, iflags);
2146 return (DID_ERROR << 16);
2147 } else if ((ret < (num * scsi_debug_sector_size)) &&
2148 (SCSI_DEBUG_OPT_NOISE & scsi_debug_opts))
2149 printk(KERN_INFO "scsi_debug: write same: cdb indicated=%u, "
2150 " IO sent=%d bytes\n", num * scsi_debug_sector_size, ret);
2151
2152 /* Copy first sector to remaining blocks */
2153 for (i = 1 ; i < num ; i++)
2154 memcpy(fake_storep + ((lba + i) * scsi_debug_sector_size),
2155 fake_storep + (lba * scsi_debug_sector_size),
2156 scsi_debug_sector_size);
2157
Akinobu Mita9ed8d3d2013-04-16 22:11:55 +09002158 if (scsi_debug_lbp())
Martin K. Petersen44d92692009-10-15 14:45:27 -04002159 map_region(lba, num);
2160out:
2161 write_unlock_irqrestore(&atomic_rw, iflags);
2162
2163 return 0;
2164}
2165
2166struct unmap_block_desc {
2167 __be64 lba;
2168 __be32 blocks;
2169 __be32 __reserved;
2170};
2171
2172static int resp_unmap(struct scsi_cmnd * scmd, struct sdebug_dev_info * devip)
2173{
2174 unsigned char *buf;
2175 struct unmap_block_desc *desc;
2176 unsigned int i, payload_len, descriptors;
2177 int ret;
2178
2179 ret = check_readiness(scmd, 1, devip);
2180 if (ret)
2181 return ret;
2182
2183 payload_len = get_unaligned_be16(&scmd->cmnd[7]);
2184 BUG_ON(scsi_bufflen(scmd) != payload_len);
2185
2186 descriptors = (payload_len - 8) / 16;
2187
2188 buf = kmalloc(scsi_bufflen(scmd), GFP_ATOMIC);
2189 if (!buf)
2190 return check_condition_result;
2191
2192 scsi_sg_copy_to_buffer(scmd, buf, scsi_bufflen(scmd));
2193
2194 BUG_ON(get_unaligned_be16(&buf[0]) != payload_len - 2);
2195 BUG_ON(get_unaligned_be16(&buf[2]) != descriptors * 16);
2196
2197 desc = (void *)&buf[8];
2198
2199 for (i = 0 ; i < descriptors ; i++) {
2200 unsigned long long lba = get_unaligned_be64(&desc[i].lba);
2201 unsigned int num = get_unaligned_be32(&desc[i].blocks);
2202
2203 ret = check_device_access_params(devip, lba, num);
2204 if (ret)
2205 goto out;
2206
2207 unmap_region(lba, num);
2208 }
2209
2210 ret = 0;
2211
2212out:
2213 kfree(buf);
2214
2215 return ret;
2216}
2217
2218#define SDEBUG_GET_LBA_STATUS_LEN 32
2219
2220static int resp_get_lba_status(struct scsi_cmnd * scmd,
2221 struct sdebug_dev_info * devip)
2222{
2223 unsigned long long lba;
2224 unsigned int alloc_len, mapped, num;
2225 unsigned char arr[SDEBUG_GET_LBA_STATUS_LEN];
2226 int ret;
2227
2228 ret = check_readiness(scmd, 1, devip);
2229 if (ret)
2230 return ret;
2231
2232 lba = get_unaligned_be64(&scmd->cmnd[2]);
2233 alloc_len = get_unaligned_be32(&scmd->cmnd[10]);
2234
2235 if (alloc_len < 24)
2236 return 0;
2237
2238 ret = check_device_access_params(devip, lba, 1);
2239 if (ret)
2240 return ret;
2241
2242 mapped = map_state(lba, &num);
2243
2244 memset(arr, 0, SDEBUG_GET_LBA_STATUS_LEN);
Douglas Gilbertde13e962012-01-19 19:30:00 -05002245 put_unaligned_be32(20, &arr[0]); /* Parameter Data Length */
Martin K. Petersen44d92692009-10-15 14:45:27 -04002246 put_unaligned_be64(lba, &arr[8]); /* LBA */
2247 put_unaligned_be32(num, &arr[16]); /* Number of blocks */
2248 arr[20] = !mapped; /* mapped = 0, unmapped = 1 */
2249
2250 return fill_from_dev_buffer(scmd, arr, SDEBUG_GET_LBA_STATUS_LEN);
2251}
2252
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002253#define SDEBUG_RLUN_ARR_SZ 256
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254
2255static int resp_report_luns(struct scsi_cmnd * scp,
2256 struct sdebug_dev_info * devip)
2257{
2258 unsigned int alloc_len;
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002259 int lun_cnt, i, upper, num, n, wlun, lun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 unsigned char *cmd = (unsigned char *)scp->cmnd;
2261 int select_report = (int)cmd[2];
2262 struct scsi_lun *one_lun;
2263 unsigned char arr[SDEBUG_RLUN_ARR_SZ];
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002264 unsigned char * max_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265
2266 alloc_len = cmd[9] + (cmd[8] << 8) + (cmd[7] << 16) + (cmd[6] << 24);
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002267 if ((alloc_len < 4) || (select_report > 2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 mk_sense_buffer(devip, ILLEGAL_REQUEST, INVALID_FIELD_IN_CDB,
2269 0);
2270 return check_condition_result;
2271 }
2272 /* can produce response with up to 16k luns (lun 0 to lun 16383) */
2273 memset(arr, 0, SDEBUG_RLUN_ARR_SZ);
2274 lun_cnt = scsi_debug_max_luns;
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002275 if (1 == select_report)
2276 lun_cnt = 0;
2277 else if (scsi_debug_no_lun_0 && (lun_cnt > 0))
2278 --lun_cnt;
2279 wlun = (select_report > 0) ? 1 : 0;
2280 num = lun_cnt + wlun;
2281 arr[2] = ((sizeof(struct scsi_lun) * num) >> 8) & 0xff;
2282 arr[3] = (sizeof(struct scsi_lun) * num) & 0xff;
2283 n = min((int)((SDEBUG_RLUN_ARR_SZ - 8) /
2284 sizeof(struct scsi_lun)), num);
2285 if (n < num) {
2286 wlun = 0;
2287 lun_cnt = n;
2288 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 one_lun = (struct scsi_lun *) &arr[8];
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002290 max_addr = arr + SDEBUG_RLUN_ARR_SZ;
2291 for (i = 0, lun = (scsi_debug_no_lun_0 ? 1 : 0);
2292 ((i < lun_cnt) && ((unsigned char *)(one_lun + i) < max_addr));
2293 i++, lun++) {
2294 upper = (lun >> 8) & 0x3f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 if (upper)
2296 one_lun[i].scsi_lun[0] =
2297 (upper | (SAM2_LUN_ADDRESS_METHOD << 6));
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002298 one_lun[i].scsi_lun[1] = lun & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 }
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002300 if (wlun) {
2301 one_lun[i].scsi_lun[0] = (SAM2_WLUN_REPORT_LUNS >> 8) & 0xff;
2302 one_lun[i].scsi_lun[1] = SAM2_WLUN_REPORT_LUNS & 0xff;
2303 i++;
2304 }
2305 alloc_len = (unsigned char *)(one_lun + i) - arr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 return fill_from_dev_buffer(scp, arr,
2307 min((int)alloc_len, SDEBUG_RLUN_ARR_SZ));
2308}
2309
FUJITA Tomonoric639d142008-01-23 01:32:01 +09002310static int resp_xdwriteread(struct scsi_cmnd *scp, unsigned long long lba,
2311 unsigned int num, struct sdebug_dev_info *devip)
2312{
2313 int i, j, ret = -1;
2314 unsigned char *kaddr, *buf;
2315 unsigned int offset;
2316 struct scatterlist *sg;
2317 struct scsi_data_buffer *sdb = scsi_in(scp);
2318
2319 /* better not to use temporary buffer. */
2320 buf = kmalloc(scsi_bufflen(scp), GFP_ATOMIC);
2321 if (!buf)
2322 return ret;
2323
FUJITA Tomonori21a61822008-03-09 13:44:30 +09002324 scsi_sg_copy_to_buffer(scp, buf, scsi_bufflen(scp));
FUJITA Tomonoric639d142008-01-23 01:32:01 +09002325
2326 offset = 0;
2327 for_each_sg(sdb->table.sgl, sg, sdb->table.nents, i) {
Cong Wang77dfce02011-11-25 23:14:23 +08002328 kaddr = (unsigned char *)kmap_atomic(sg_page(sg));
FUJITA Tomonoric639d142008-01-23 01:32:01 +09002329 if (!kaddr)
2330 goto out;
2331
2332 for (j = 0; j < sg->length; j++)
2333 *(kaddr + sg->offset + j) ^= *(buf + offset + j);
2334
2335 offset += sg->length;
Cong Wang77dfce02011-11-25 23:14:23 +08002336 kunmap_atomic(kaddr);
FUJITA Tomonoric639d142008-01-23 01:32:01 +09002337 }
2338 ret = 0;
2339out:
2340 kfree(buf);
2341
2342 return ret;
2343}
2344
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345/* When timer goes off this function is called. */
2346static void timer_intr_handler(unsigned long indx)
2347{
2348 struct sdebug_queued_cmd * sqcp;
2349 unsigned long iflags;
2350
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -04002351 if (indx >= scsi_debug_max_queue) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 printk(KERN_ERR "scsi_debug:timer_intr_handler: indx too "
2353 "large\n");
2354 return;
2355 }
2356 spin_lock_irqsave(&queued_arr_lock, iflags);
2357 sqcp = &queued_arr[(int)indx];
2358 if (! sqcp->in_use) {
2359 printk(KERN_ERR "scsi_debug:timer_intr_handler: Unexpected "
2360 "interrupt\n");
2361 spin_unlock_irqrestore(&queued_arr_lock, iflags);
2362 return;
2363 }
2364 sqcp->in_use = 0;
2365 if (sqcp->done_funct) {
2366 sqcp->a_cmnd->result = sqcp->scsi_result;
2367 sqcp->done_funct(sqcp->a_cmnd); /* callback to mid level */
2368 }
2369 sqcp->done_funct = NULL;
2370 spin_unlock_irqrestore(&queued_arr_lock, iflags);
2371}
2372
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373
FUJITA Tomonori8dea0d02008-03-30 00:59:58 +09002374static struct sdebug_dev_info *
2375sdebug_device_create(struct sdebug_host_info *sdbg_host, gfp_t flags)
FUJITA Tomonori5cb2fc02008-03-20 11:09:16 +09002376{
2377 struct sdebug_dev_info *devip;
2378
2379 devip = kzalloc(sizeof(*devip), flags);
2380 if (devip) {
2381 devip->sdbg_host = sdbg_host;
2382 list_add_tail(&devip->dev_list, &sdbg_host->dev_info_list);
2383 }
2384 return devip;
2385}
2386
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387static struct sdebug_dev_info * devInfoReg(struct scsi_device * sdev)
2388{
2389 struct sdebug_host_info * sdbg_host;
2390 struct sdebug_dev_info * open_devip = NULL;
2391 struct sdebug_dev_info * devip =
2392 (struct sdebug_dev_info *)sdev->hostdata;
2393
2394 if (devip)
2395 return devip;
FUJITA Tomonorid1e4c9c2008-03-02 18:30:18 +09002396 sdbg_host = *(struct sdebug_host_info **)shost_priv(sdev->host);
2397 if (!sdbg_host) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 printk(KERN_ERR "Host info NULL\n");
2399 return NULL;
2400 }
2401 list_for_each_entry(devip, &sdbg_host->dev_info_list, dev_list) {
2402 if ((devip->used) && (devip->channel == sdev->channel) &&
2403 (devip->target == sdev->id) &&
2404 (devip->lun == sdev->lun))
2405 return devip;
2406 else {
2407 if ((!devip->used) && (!open_devip))
2408 open_devip = devip;
2409 }
2410 }
FUJITA Tomonori5cb2fc02008-03-20 11:09:16 +09002411 if (!open_devip) { /* try and make a new one */
2412 open_devip = sdebug_device_create(sdbg_host, GFP_ATOMIC);
2413 if (!open_devip) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 printk(KERN_ERR "%s: out of memory at line %d\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07002415 __func__, __LINE__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 return NULL;
2417 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 }
FUJITA Tomonoria75869d2008-03-20 11:09:17 +09002419
2420 open_devip->channel = sdev->channel;
2421 open_devip->target = sdev->id;
2422 open_devip->lun = sdev->lun;
2423 open_devip->sdbg_host = sdbg_host;
2424 open_devip->reset = 1;
2425 open_devip->used = 1;
2426 memset(open_devip->sense_buff, 0, SDEBUG_SENSE_LEN);
2427 if (scsi_debug_dsense)
2428 open_devip->sense_buff[0] = 0x72;
2429 else {
2430 open_devip->sense_buff[0] = 0x70;
2431 open_devip->sense_buff[7] = 0xa;
2432 }
2433 if (sdev->lun == SAM2_WLUN_REPORT_LUNS)
2434 open_devip->wlun = SAM2_WLUN_REPORT_LUNS & 0xff;
2435
2436 return open_devip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437}
2438
FUJITA Tomonori8dea0d02008-03-30 00:59:58 +09002439static int scsi_debug_slave_alloc(struct scsi_device *sdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440{
FUJITA Tomonori8dea0d02008-03-30 00:59:58 +09002441 if (SCSI_DEBUG_OPT_NOISE & scsi_debug_opts)
2442 printk(KERN_INFO "scsi_debug: slave_alloc <%u %u %u %u>\n",
2443 sdp->host->host_no, sdp->channel, sdp->id, sdp->lun);
Nick Piggin75ad23b2008-04-29 14:48:33 +02002444 queue_flag_set_unlocked(QUEUE_FLAG_BIDI, sdp->request_queue);
FUJITA Tomonori8dea0d02008-03-30 00:59:58 +09002445 return 0;
2446}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447
FUJITA Tomonori8dea0d02008-03-30 00:59:58 +09002448static int scsi_debug_slave_configure(struct scsi_device *sdp)
2449{
2450 struct sdebug_dev_info *devip;
FUJITA Tomonoria34c4e92008-03-25 09:26:50 +09002451
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 if (SCSI_DEBUG_OPT_NOISE & scsi_debug_opts)
FUJITA Tomonori8dea0d02008-03-30 00:59:58 +09002453 printk(KERN_INFO "scsi_debug: slave_configure <%u %u %u %u>\n",
2454 sdp->host->host_no, sdp->channel, sdp->id, sdp->lun);
2455 if (sdp->host->max_cmd_len != SCSI_DEBUG_MAX_CMD_LEN)
2456 sdp->host->max_cmd_len = SCSI_DEBUG_MAX_CMD_LEN;
2457 devip = devInfoReg(sdp);
2458 if (NULL == devip)
2459 return 1; /* no resources, will be marked offline */
2460 sdp->hostdata = devip;
2461 if (sdp->host->cmd_per_lun)
2462 scsi_adjust_queue_depth(sdp, SDEBUG_TAGGED_QUEUING,
2463 sdp->host->cmd_per_lun);
2464 blk_queue_max_segment_size(sdp->request_queue, 256 * 1024);
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -04002465 if (scsi_debug_no_uld)
2466 sdp->no_uld_attach = 1;
FUJITA Tomonori8dea0d02008-03-30 00:59:58 +09002467 return 0;
2468}
2469
2470static void scsi_debug_slave_destroy(struct scsi_device *sdp)
2471{
2472 struct sdebug_dev_info *devip =
2473 (struct sdebug_dev_info *)sdp->hostdata;
2474
2475 if (SCSI_DEBUG_OPT_NOISE & scsi_debug_opts)
2476 printk(KERN_INFO "scsi_debug: slave_destroy <%u %u %u %u>\n",
2477 sdp->host->host_no, sdp->channel, sdp->id, sdp->lun);
2478 if (devip) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002479 /* make this slot available for re-use */
FUJITA Tomonori8dea0d02008-03-30 00:59:58 +09002480 devip->used = 0;
2481 sdp->hostdata = NULL;
2482 }
2483}
2484
2485/* Returns 1 if found 'cmnd' and deleted its timer. else returns 0 */
2486static int stop_queued_cmnd(struct scsi_cmnd *cmnd)
2487{
2488 unsigned long iflags;
2489 int k;
2490 struct sdebug_queued_cmd *sqcp;
2491
2492 spin_lock_irqsave(&queued_arr_lock, iflags);
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -04002493 for (k = 0; k < scsi_debug_max_queue; ++k) {
FUJITA Tomonori8dea0d02008-03-30 00:59:58 +09002494 sqcp = &queued_arr[k];
2495 if (sqcp->in_use && (cmnd == sqcp->a_cmnd)) {
2496 del_timer_sync(&sqcp->cmnd_timer);
2497 sqcp->in_use = 0;
2498 sqcp->a_cmnd = NULL;
2499 break;
2500 }
2501 }
2502 spin_unlock_irqrestore(&queued_arr_lock, iflags);
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -04002503 return (k < scsi_debug_max_queue) ? 1 : 0;
FUJITA Tomonori8dea0d02008-03-30 00:59:58 +09002504}
2505
2506/* Deletes (stops) timers of all queued commands */
2507static void stop_all_queued(void)
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 && sqcp->a_cmnd) {
2517 del_timer_sync(&sqcp->cmnd_timer);
2518 sqcp->in_use = 0;
2519 sqcp->a_cmnd = NULL;
2520 }
2521 }
2522 spin_unlock_irqrestore(&queued_arr_lock, iflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523}
2524
2525static int scsi_debug_abort(struct scsi_cmnd * SCpnt)
2526{
2527 if (SCSI_DEBUG_OPT_NOISE & scsi_debug_opts)
2528 printk(KERN_INFO "scsi_debug: abort\n");
2529 ++num_aborts;
2530 stop_queued_cmnd(SCpnt);
2531 return SUCCESS;
2532}
2533
2534static int scsi_debug_biosparam(struct scsi_device *sdev,
2535 struct block_device * bdev, sector_t capacity, int *info)
2536{
2537 int res;
2538 unsigned char *buf;
2539
2540 if (SCSI_DEBUG_OPT_NOISE & scsi_debug_opts)
2541 printk(KERN_INFO "scsi_debug: biosparam\n");
2542 buf = scsi_bios_ptable(bdev);
2543 if (buf) {
2544 res = scsi_partsize(buf, capacity,
2545 &info[2], &info[0], &info[1]);
2546 kfree(buf);
2547 if (! res)
2548 return res;
2549 }
2550 info[0] = sdebug_heads;
2551 info[1] = sdebug_sectors_per;
2552 info[2] = sdebug_cylinders_per;
2553 return 0;
2554}
2555
2556static int scsi_debug_device_reset(struct scsi_cmnd * SCpnt)
2557{
2558 struct sdebug_dev_info * devip;
2559
2560 if (SCSI_DEBUG_OPT_NOISE & scsi_debug_opts)
2561 printk(KERN_INFO "scsi_debug: device_reset\n");
2562 ++num_dev_resets;
2563 if (SCpnt) {
2564 devip = devInfoReg(SCpnt->device);
2565 if (devip)
2566 devip->reset = 1;
2567 }
2568 return SUCCESS;
2569}
2570
2571static int scsi_debug_bus_reset(struct scsi_cmnd * SCpnt)
2572{
2573 struct sdebug_host_info *sdbg_host;
2574 struct sdebug_dev_info * dev_info;
2575 struct scsi_device * sdp;
2576 struct Scsi_Host * hp;
2577
2578 if (SCSI_DEBUG_OPT_NOISE & scsi_debug_opts)
2579 printk(KERN_INFO "scsi_debug: bus_reset\n");
2580 ++num_bus_resets;
2581 if (SCpnt && ((sdp = SCpnt->device)) && ((hp = sdp->host))) {
FUJITA Tomonorid1e4c9c2008-03-02 18:30:18 +09002582 sdbg_host = *(struct sdebug_host_info **)shost_priv(hp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 if (sdbg_host) {
2584 list_for_each_entry(dev_info,
2585 &sdbg_host->dev_info_list,
2586 dev_list)
2587 dev_info->reset = 1;
2588 }
2589 }
2590 return SUCCESS;
2591}
2592
2593static int scsi_debug_host_reset(struct scsi_cmnd * SCpnt)
2594{
2595 struct sdebug_host_info * sdbg_host;
2596 struct sdebug_dev_info * dev_info;
2597
2598 if (SCSI_DEBUG_OPT_NOISE & scsi_debug_opts)
2599 printk(KERN_INFO "scsi_debug: host_reset\n");
2600 ++num_host_resets;
2601 spin_lock(&sdebug_host_list_lock);
2602 list_for_each_entry(sdbg_host, &sdebug_host_list, host_list) {
2603 list_for_each_entry(dev_info, &sdbg_host->dev_info_list,
2604 dev_list)
2605 dev_info->reset = 1;
2606 }
2607 spin_unlock(&sdebug_host_list_lock);
2608 stop_all_queued();
2609 return SUCCESS;
2610}
2611
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612/* Initializes timers in queued array */
2613static void __init init_all_queued(void)
2614{
2615 unsigned long iflags;
2616 int k;
2617 struct sdebug_queued_cmd * sqcp;
2618
2619 spin_lock_irqsave(&queued_arr_lock, iflags);
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -04002620 for (k = 0; k < scsi_debug_max_queue; ++k) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 sqcp = &queued_arr[k];
2622 init_timer(&sqcp->cmnd_timer);
2623 sqcp->in_use = 0;
2624 sqcp->a_cmnd = NULL;
2625 }
2626 spin_unlock_irqrestore(&queued_arr_lock, iflags);
2627}
2628
FUJITA Tomonorif58b0ef2008-03-30 00:59:54 +09002629static void __init sdebug_build_parts(unsigned char *ramp,
FUJITA Tomonori5f2578e2008-03-30 00:59:57 +09002630 unsigned long store_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631{
2632 struct partition * pp;
2633 int starts[SDEBUG_MAX_PARTS + 2];
2634 int sectors_per_part, num_sectors, k;
2635 int heads_by_sects, start_sec, end_sec;
2636
2637 /* assume partition table already zeroed */
FUJITA Tomonorif58b0ef2008-03-30 00:59:54 +09002638 if ((scsi_debug_num_parts < 1) || (store_size < 1048576))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 return;
2640 if (scsi_debug_num_parts > SDEBUG_MAX_PARTS) {
2641 scsi_debug_num_parts = SDEBUG_MAX_PARTS;
2642 printk(KERN_WARNING "scsi_debug:build_parts: reducing "
2643 "partitions to %d\n", SDEBUG_MAX_PARTS);
2644 }
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002645 num_sectors = (int)sdebug_store_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 sectors_per_part = (num_sectors - sdebug_sectors_per)
2647 / scsi_debug_num_parts;
2648 heads_by_sects = sdebug_heads * sdebug_sectors_per;
2649 starts[0] = sdebug_sectors_per;
2650 for (k = 1; k < scsi_debug_num_parts; ++k)
2651 starts[k] = ((k * sectors_per_part) / heads_by_sects)
2652 * heads_by_sects;
2653 starts[scsi_debug_num_parts] = num_sectors;
2654 starts[scsi_debug_num_parts + 1] = 0;
2655
2656 ramp[510] = 0x55; /* magic partition markings */
2657 ramp[511] = 0xAA;
2658 pp = (struct partition *)(ramp + 0x1be);
2659 for (k = 0; starts[k + 1]; ++k, ++pp) {
2660 start_sec = starts[k];
2661 end_sec = starts[k + 1] - 1;
2662 pp->boot_ind = 0;
2663
2664 pp->cyl = start_sec / heads_by_sects;
2665 pp->head = (start_sec - (pp->cyl * heads_by_sects))
2666 / sdebug_sectors_per;
2667 pp->sector = (start_sec % sdebug_sectors_per) + 1;
2668
2669 pp->end_cyl = end_sec / heads_by_sects;
2670 pp->end_head = (end_sec - (pp->end_cyl * heads_by_sects))
2671 / sdebug_sectors_per;
2672 pp->end_sector = (end_sec % sdebug_sectors_per) + 1;
2673
Akinobu Mita150c3542013-08-26 22:08:40 +09002674 pp->start_sect = cpu_to_le32(start_sec);
2675 pp->nr_sects = cpu_to_le32(end_sec - start_sec + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 pp->sys_ind = 0x83; /* plain Linux partition */
2677 }
2678}
2679
2680static int schedule_resp(struct scsi_cmnd * cmnd,
2681 struct sdebug_dev_info * devip,
2682 done_funct_t done, int scsi_result, int delta_jiff)
2683{
2684 if ((SCSI_DEBUG_OPT_NOISE & scsi_debug_opts) && cmnd) {
2685 if (scsi_result) {
2686 struct scsi_device * sdp = cmnd->device;
2687
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002688 printk(KERN_INFO "scsi_debug: <%u %u %u %u> "
2689 "non-zero result=0x%x\n", sdp->host->host_no,
2690 sdp->channel, sdp->id, sdp->lun, scsi_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 }
2692 }
2693 if (cmnd && devip) {
2694 /* simulate autosense by this driver */
2695 if (SAM_STAT_CHECK_CONDITION == (scsi_result & 0xff))
2696 memcpy(cmnd->sense_buffer, devip->sense_buff,
2697 (SCSI_SENSE_BUFFERSIZE > SDEBUG_SENSE_LEN) ?
2698 SDEBUG_SENSE_LEN : SCSI_SENSE_BUFFERSIZE);
2699 }
2700 if (delta_jiff <= 0) {
2701 if (cmnd)
2702 cmnd->result = scsi_result;
2703 if (done)
2704 done(cmnd);
2705 return 0;
2706 } else {
2707 unsigned long iflags;
2708 int k;
2709 struct sdebug_queued_cmd * sqcp = NULL;
2710
2711 spin_lock_irqsave(&queued_arr_lock, iflags);
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -04002712 for (k = 0; k < scsi_debug_max_queue; ++k) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 sqcp = &queued_arr[k];
2714 if (! sqcp->in_use)
2715 break;
2716 }
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -04002717 if (k >= scsi_debug_max_queue) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 spin_unlock_irqrestore(&queued_arr_lock, iflags);
2719 printk(KERN_WARNING "scsi_debug: can_queue exceeded\n");
2720 return 1; /* report busy to mid level */
2721 }
2722 sqcp->in_use = 1;
2723 sqcp->a_cmnd = cmnd;
2724 sqcp->scsi_result = scsi_result;
2725 sqcp->done_funct = done;
2726 sqcp->cmnd_timer.function = timer_intr_handler;
2727 sqcp->cmnd_timer.data = k;
2728 sqcp->cmnd_timer.expires = jiffies + delta_jiff;
2729 add_timer(&sqcp->cmnd_timer);
2730 spin_unlock_irqrestore(&queued_arr_lock, iflags);
2731 if (cmnd)
2732 cmnd->result = 0;
2733 return 0;
2734 }
2735}
Douglas Gilbert23183912006-09-16 20:30:47 -04002736/* Note: The following macros create attribute files in the
2737 /sys/module/scsi_debug/parameters directory. Unfortunately this
2738 driver is unaware of a change and cannot trigger auxiliary actions
2739 as it can when the corresponding attribute in the
2740 /sys/bus/pseudo/drivers/scsi_debug directory is changed.
2741 */
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002742module_param_named(add_host, scsi_debug_add_host, int, S_IRUGO | S_IWUSR);
Martin K. Petersen5b94e232011-03-08 02:08:11 -05002743module_param_named(ato, scsi_debug_ato, int, S_IRUGO);
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002744module_param_named(delay, scsi_debug_delay, int, S_IRUGO | S_IWUSR);
2745module_param_named(dev_size_mb, scsi_debug_dev_size_mb, int, S_IRUGO);
Martin K. Petersen5b94e232011-03-08 02:08:11 -05002746module_param_named(dif, scsi_debug_dif, int, S_IRUGO);
2747module_param_named(dix, scsi_debug_dix, int, S_IRUGO);
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002748module_param_named(dsense, scsi_debug_dsense, int, S_IRUGO | S_IWUSR);
2749module_param_named(every_nth, scsi_debug_every_nth, int, S_IRUGO | S_IWUSR);
Douglas Gilbert23183912006-09-16 20:30:47 -04002750module_param_named(fake_rw, scsi_debug_fake_rw, int, S_IRUGO | S_IWUSR);
Akinobu Mita68aee7b2013-09-18 21:27:27 +09002751module_param_named(guard, scsi_debug_guard, uint, S_IRUGO);
Martin K. Petersen5b94e232011-03-08 02:08:11 -05002752module_param_named(lbpu, scsi_debug_lbpu, int, S_IRUGO);
2753module_param_named(lbpws, scsi_debug_lbpws, int, S_IRUGO);
2754module_param_named(lbpws10, scsi_debug_lbpws10, int, S_IRUGO);
Eric Sandeenbe1dd782012-03-08 00:03:59 -06002755module_param_named(lbprz, scsi_debug_lbprz, int, S_IRUGO);
Martin K. Petersen5b94e232011-03-08 02:08:11 -05002756module_param_named(lowest_aligned, scsi_debug_lowest_aligned, int, S_IRUGO);
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002757module_param_named(max_luns, scsi_debug_max_luns, int, S_IRUGO | S_IWUSR);
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -04002758module_param_named(max_queue, scsi_debug_max_queue, int, S_IRUGO | S_IWUSR);
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002759module_param_named(no_lun_0, scsi_debug_no_lun_0, int, S_IRUGO | S_IWUSR);
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -04002760module_param_named(no_uld, scsi_debug_no_uld, int, S_IRUGO);
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002761module_param_named(num_parts, scsi_debug_num_parts, int, S_IRUGO);
2762module_param_named(num_tgts, scsi_debug_num_tgts, int, S_IRUGO | S_IWUSR);
Martin K. Petersen5b94e232011-03-08 02:08:11 -05002763module_param_named(opt_blks, scsi_debug_opt_blks, int, S_IRUGO);
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002764module_param_named(opts, scsi_debug_opts, int, S_IRUGO | S_IWUSR);
Martin K. Petersen5b94e232011-03-08 02:08:11 -05002765module_param_named(physblk_exp, scsi_debug_physblk_exp, int, S_IRUGO);
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002766module_param_named(ptype, scsi_debug_ptype, int, S_IRUGO | S_IWUSR);
Martin Pittd9867882012-09-06 12:04:33 +02002767module_param_named(removable, scsi_debug_removable, bool, S_IRUGO | S_IWUSR);
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002768module_param_named(scsi_level, scsi_debug_scsi_level, int, S_IRUGO);
Martin K. Petersen5b94e232011-03-08 02:08:11 -05002769module_param_named(sector_size, scsi_debug_sector_size, int, S_IRUGO);
2770module_param_named(unmap_alignment, scsi_debug_unmap_alignment, int, S_IRUGO);
2771module_param_named(unmap_granularity, scsi_debug_unmap_granularity, int, S_IRUGO);
2772module_param_named(unmap_max_blocks, scsi_debug_unmap_max_blocks, int, S_IRUGO);
2773module_param_named(unmap_max_desc, scsi_debug_unmap_max_desc, int, S_IRUGO);
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002774module_param_named(virtual_gb, scsi_debug_virtual_gb, int, S_IRUGO | S_IWUSR);
Douglas Gilbert23183912006-09-16 20:30:47 -04002775module_param_named(vpd_use_hostno, scsi_debug_vpd_use_hostno, int,
2776 S_IRUGO | S_IWUSR);
Martin K. Petersen5b94e232011-03-08 02:08:11 -05002777module_param_named(write_same_length, scsi_debug_write_same_length, int,
2778 S_IRUGO | S_IWUSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779
2780MODULE_AUTHOR("Eric Youngdale + Douglas Gilbert");
2781MODULE_DESCRIPTION("SCSI debug adapter driver");
2782MODULE_LICENSE("GPL");
2783MODULE_VERSION(SCSI_DEBUG_VERSION);
2784
2785MODULE_PARM_DESC(add_host, "0..127 hosts allowed(def=1)");
Martin K. Petersen5b94e232011-03-08 02:08:11 -05002786MODULE_PARM_DESC(ato, "application tag ownership: 0=disk 1=host (def=1)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787MODULE_PARM_DESC(delay, "# of jiffies to delay response(def=1)");
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002788MODULE_PARM_DESC(dev_size_mb, "size in MB of ram shared by devs(def=8)");
Martin K. Petersen5b94e232011-03-08 02:08:11 -05002789MODULE_PARM_DESC(dif, "data integrity field type: 0-3 (def=0)");
2790MODULE_PARM_DESC(dix, "data integrity extensions mask (def=0)");
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002791MODULE_PARM_DESC(dsense, "use descriptor sense format(def=0 -> fixed)");
Randy Dunlapbeb87c32007-06-11 11:36:40 -07002792MODULE_PARM_DESC(every_nth, "timeout every nth command(def=0)");
Douglas Gilbert23183912006-09-16 20:30:47 -04002793MODULE_PARM_DESC(fake_rw, "fake reads/writes instead of copying (def=0)");
Martin K. Petersen5b94e232011-03-08 02:08:11 -05002794MODULE_PARM_DESC(guard, "protection checksum: 0=crc, 1=ip (def=0)");
2795MODULE_PARM_DESC(lbpu, "enable LBP, support UNMAP command (def=0)");
2796MODULE_PARM_DESC(lbpws, "enable LBP, support WRITE SAME(16) with UNMAP bit (def=0)");
2797MODULE_PARM_DESC(lbpws10, "enable LBP, support WRITE SAME(10) with UNMAP bit (def=0)");
Eric Sandeenbe1dd782012-03-08 00:03:59 -06002798MODULE_PARM_DESC(lbprz, "unmapped blocks return 0 on read (def=1)");
Martin K. Petersen5b94e232011-03-08 02:08:11 -05002799MODULE_PARM_DESC(lowest_aligned, "lowest aligned lba (def=0)");
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002800MODULE_PARM_DESC(max_luns, "number of LUNs per target to simulate(def=1)");
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -04002801MODULE_PARM_DESC(max_queue, "max number of queued commands (1 to 255(def))");
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002802MODULE_PARM_DESC(no_lun_0, "no LU number 0 (def=0 -> have lun 0)");
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -04002803MODULE_PARM_DESC(no_uld, "stop ULD (e.g. sd driver) attaching (def=0))");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804MODULE_PARM_DESC(num_parts, "number of partitions(def=0)");
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002805MODULE_PARM_DESC(num_tgts, "number of targets per host to simulate(def=1)");
Martin K. Petersen5b94e232011-03-08 02:08:11 -05002806MODULE_PARM_DESC(opt_blks, "optimal transfer length in block (def=64)");
Douglas Gilbert6f3cbf52007-01-05 00:05:25 -05002807MODULE_PARM_DESC(opts, "1->noise, 2->medium_err, 4->timeout, 8->recovered_err... (def=0)");
Martin K. Petersen5b94e232011-03-08 02:08:11 -05002808MODULE_PARM_DESC(physblk_exp, "physical block exponent (def=0)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809MODULE_PARM_DESC(ptype, "SCSI peripheral type(def=0[disk])");
Martin Pittd9867882012-09-06 12:04:33 +02002810MODULE_PARM_DESC(removable, "claim to have removable media (def=0)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811MODULE_PARM_DESC(scsi_level, "SCSI level to simulate(def=5[SPC-3])");
Martin K. Petersenea61fca2009-05-15 00:40:33 -04002812MODULE_PARM_DESC(sector_size, "logical block size in bytes (def=512)");
Martin K. Petersen5b94e232011-03-08 02:08:11 -05002813MODULE_PARM_DESC(unmap_alignment, "lowest aligned thin provisioning lba (def=0)");
2814MODULE_PARM_DESC(unmap_granularity, "thin provisioning granularity in blocks (def=1)");
Martin K. Petersen60147592010-08-19 11:49:00 -04002815MODULE_PARM_DESC(unmap_max_blocks, "max # of blocks can be unmapped in one cmd (def=0xffffffff)");
2816MODULE_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 -05002817MODULE_PARM_DESC(virtual_gb, "virtual gigabyte size (def=0 -> use dev_size_mb)");
2818MODULE_PARM_DESC(vpd_use_hostno, "0 -> dev ids ignore hostno (def=1 -> unique dev ids)");
2819MODULE_PARM_DESC(write_same_length, "Maximum blocks per WRITE SAME cmd (def=0xffff)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820
2821static char sdebug_info[256];
2822
2823static const char * scsi_debug_info(struct Scsi_Host * shp)
2824{
2825 sprintf(sdebug_info, "scsi_debug, version %s [%s], "
2826 "dev_size_mb=%d, opts=0x%x", SCSI_DEBUG_VERSION,
2827 scsi_debug_version_date, scsi_debug_dev_size_mb,
2828 scsi_debug_opts);
2829 return sdebug_info;
2830}
2831
2832/* scsi_debug_proc_info
2833 * Used if the driver currently has no own support for /proc/scsi
2834 */
Al Viroc8ed5552013-03-31 01:46:06 -04002835static int scsi_debug_write_info(struct Scsi_Host *host, char *buffer, int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836{
Al Viroc8ed5552013-03-31 01:46:06 -04002837 char arr[16];
2838 int opts;
2839 int minLen = length > 15 ? 15 : length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840
Al Viroc8ed5552013-03-31 01:46:06 -04002841 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
2842 return -EACCES;
2843 memcpy(arr, buffer, minLen);
2844 arr[minLen] = '\0';
2845 if (1 != sscanf(arr, "%d", &opts))
2846 return -EINVAL;
2847 scsi_debug_opts = opts;
2848 if (scsi_debug_every_nth != 0)
2849 scsi_debug_cmnd_count = 0;
2850 return length;
2851}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852
Al Viroc8ed5552013-03-31 01:46:06 -04002853static int scsi_debug_show_info(struct seq_file *m, struct Scsi_Host *host)
2854{
2855 seq_printf(m, "scsi_debug adapter driver, version "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 "%s [%s]\n"
2857 "num_tgts=%d, shared (ram) size=%d MB, opts=0x%x, "
2858 "every_nth=%d(curr:%d)\n"
2859 "delay=%d, max_luns=%d, scsi_level=%d\n"
2860 "sector_size=%d bytes, cylinders=%d, heads=%d, sectors=%d\n"
2861 "number of aborts=%d, device_reset=%d, bus_resets=%d, "
Martin K. Petersenc6a44282009-01-04 03:08:19 -05002862 "host_resets=%d\ndix_reads=%d dix_writes=%d dif_errors=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 SCSI_DEBUG_VERSION, scsi_debug_version_date, scsi_debug_num_tgts,
2864 scsi_debug_dev_size_mb, scsi_debug_opts, scsi_debug_every_nth,
2865 scsi_debug_cmnd_count, scsi_debug_delay,
2866 scsi_debug_max_luns, scsi_debug_scsi_level,
Martin K. Petersen597136a2008-06-05 00:12:59 -04002867 scsi_debug_sector_size, sdebug_cylinders_per, sdebug_heads,
2868 sdebug_sectors_per, num_aborts, num_dev_resets, num_bus_resets,
Martin K. Petersenc6a44282009-01-04 03:08:19 -05002869 num_host_resets, dix_reads, dix_writes, dif_errors);
Al Viroc8ed5552013-03-31 01:46:06 -04002870 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871}
2872
Akinobu Mita82069372013-10-14 22:48:04 +09002873static ssize_t delay_show(struct device_driver *ddp, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874{
2875 return scnprintf(buf, PAGE_SIZE, "%d\n", scsi_debug_delay);
2876}
2877
Akinobu Mita82069372013-10-14 22:48:04 +09002878static ssize_t delay_store(struct device_driver *ddp, const char *buf,
2879 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880{
2881 int delay;
2882 char work[20];
2883
2884 if (1 == sscanf(buf, "%10s", work)) {
2885 if ((1 == sscanf(work, "%d", &delay)) && (delay >= 0)) {
2886 scsi_debug_delay = delay;
2887 return count;
2888 }
2889 }
2890 return -EINVAL;
2891}
Akinobu Mita82069372013-10-14 22:48:04 +09002892static DRIVER_ATTR_RW(delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893
Akinobu Mita82069372013-10-14 22:48:04 +09002894static ssize_t opts_show(struct device_driver *ddp, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895{
2896 return scnprintf(buf, PAGE_SIZE, "0x%x\n", scsi_debug_opts);
2897}
2898
Akinobu Mita82069372013-10-14 22:48:04 +09002899static ssize_t opts_store(struct device_driver *ddp, const char *buf,
2900 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901{
2902 int opts;
2903 char work[20];
2904
2905 if (1 == sscanf(buf, "%10s", work)) {
2906 if (0 == strnicmp(work,"0x", 2)) {
2907 if (1 == sscanf(&work[2], "%x", &opts))
2908 goto opts_done;
2909 } else {
2910 if (1 == sscanf(work, "%d", &opts))
2911 goto opts_done;
2912 }
2913 }
2914 return -EINVAL;
2915opts_done:
2916 scsi_debug_opts = opts;
2917 scsi_debug_cmnd_count = 0;
2918 return count;
2919}
Akinobu Mita82069372013-10-14 22:48:04 +09002920static DRIVER_ATTR_RW(opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921
Akinobu Mita82069372013-10-14 22:48:04 +09002922static ssize_t ptype_show(struct device_driver *ddp, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923{
2924 return scnprintf(buf, PAGE_SIZE, "%d\n", scsi_debug_ptype);
2925}
Akinobu Mita82069372013-10-14 22:48:04 +09002926static ssize_t ptype_store(struct device_driver *ddp, const char *buf,
2927 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928{
2929 int n;
2930
2931 if ((count > 0) && (1 == sscanf(buf, "%d", &n)) && (n >= 0)) {
2932 scsi_debug_ptype = n;
2933 return count;
2934 }
2935 return -EINVAL;
2936}
Akinobu Mita82069372013-10-14 22:48:04 +09002937static DRIVER_ATTR_RW(ptype);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938
Akinobu Mita82069372013-10-14 22:48:04 +09002939static ssize_t dsense_show(struct device_driver *ddp, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940{
2941 return scnprintf(buf, PAGE_SIZE, "%d\n", scsi_debug_dsense);
2942}
Akinobu Mita82069372013-10-14 22:48:04 +09002943static ssize_t dsense_store(struct device_driver *ddp, const char *buf,
2944 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945{
2946 int n;
2947
2948 if ((count > 0) && (1 == sscanf(buf, "%d", &n)) && (n >= 0)) {
2949 scsi_debug_dsense = n;
2950 return count;
2951 }
2952 return -EINVAL;
2953}
Akinobu Mita82069372013-10-14 22:48:04 +09002954static DRIVER_ATTR_RW(dsense);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955
Akinobu Mita82069372013-10-14 22:48:04 +09002956static ssize_t fake_rw_show(struct device_driver *ddp, char *buf)
Douglas Gilbert23183912006-09-16 20:30:47 -04002957{
2958 return scnprintf(buf, PAGE_SIZE, "%d\n", scsi_debug_fake_rw);
2959}
Akinobu Mita82069372013-10-14 22:48:04 +09002960static ssize_t fake_rw_store(struct device_driver *ddp, const char *buf,
2961 size_t count)
Douglas Gilbert23183912006-09-16 20:30:47 -04002962{
2963 int n;
2964
2965 if ((count > 0) && (1 == sscanf(buf, "%d", &n)) && (n >= 0)) {
2966 scsi_debug_fake_rw = n;
2967 return count;
2968 }
2969 return -EINVAL;
2970}
Akinobu Mita82069372013-10-14 22:48:04 +09002971static DRIVER_ATTR_RW(fake_rw);
Douglas Gilbert23183912006-09-16 20:30:47 -04002972
Akinobu Mita82069372013-10-14 22:48:04 +09002973static ssize_t no_lun_0_show(struct device_driver *ddp, char *buf)
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002974{
2975 return scnprintf(buf, PAGE_SIZE, "%d\n", scsi_debug_no_lun_0);
2976}
Akinobu Mita82069372013-10-14 22:48:04 +09002977static ssize_t no_lun_0_store(struct device_driver *ddp, const char *buf,
2978 size_t count)
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002979{
2980 int n;
2981
2982 if ((count > 0) && (1 == sscanf(buf, "%d", &n)) && (n >= 0)) {
2983 scsi_debug_no_lun_0 = n;
2984 return count;
2985 }
2986 return -EINVAL;
2987}
Akinobu Mita82069372013-10-14 22:48:04 +09002988static DRIVER_ATTR_RW(no_lun_0);
Douglas Gilbertc65b1442006-06-06 00:11:24 -04002989
Akinobu Mita82069372013-10-14 22:48:04 +09002990static ssize_t num_tgts_show(struct device_driver *ddp, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991{
2992 return scnprintf(buf, PAGE_SIZE, "%d\n", scsi_debug_num_tgts);
2993}
Akinobu Mita82069372013-10-14 22:48:04 +09002994static ssize_t num_tgts_store(struct device_driver *ddp, const char *buf,
2995 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996{
2997 int n;
2998
2999 if ((count > 0) && (1 == sscanf(buf, "%d", &n)) && (n >= 0)) {
3000 scsi_debug_num_tgts = n;
3001 sdebug_max_tgts_luns();
3002 return count;
3003 }
3004 return -EINVAL;
3005}
Akinobu Mita82069372013-10-14 22:48:04 +09003006static DRIVER_ATTR_RW(num_tgts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007
Akinobu Mita82069372013-10-14 22:48:04 +09003008static ssize_t dev_size_mb_show(struct device_driver *ddp, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009{
3010 return scnprintf(buf, PAGE_SIZE, "%d\n", scsi_debug_dev_size_mb);
3011}
Akinobu Mita82069372013-10-14 22:48:04 +09003012static DRIVER_ATTR_RO(dev_size_mb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013
Akinobu Mita82069372013-10-14 22:48:04 +09003014static ssize_t num_parts_show(struct device_driver *ddp, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015{
3016 return scnprintf(buf, PAGE_SIZE, "%d\n", scsi_debug_num_parts);
3017}
Akinobu Mita82069372013-10-14 22:48:04 +09003018static DRIVER_ATTR_RO(num_parts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019
Akinobu Mita82069372013-10-14 22:48:04 +09003020static ssize_t every_nth_show(struct device_driver *ddp, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021{
3022 return scnprintf(buf, PAGE_SIZE, "%d\n", scsi_debug_every_nth);
3023}
Akinobu Mita82069372013-10-14 22:48:04 +09003024static ssize_t every_nth_store(struct device_driver *ddp, const char *buf,
3025 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026{
3027 int nth;
3028
3029 if ((count > 0) && (1 == sscanf(buf, "%d", &nth))) {
3030 scsi_debug_every_nth = nth;
3031 scsi_debug_cmnd_count = 0;
3032 return count;
3033 }
3034 return -EINVAL;
3035}
Akinobu Mita82069372013-10-14 22:48:04 +09003036static DRIVER_ATTR_RW(every_nth);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037
Akinobu Mita82069372013-10-14 22:48:04 +09003038static ssize_t max_luns_show(struct device_driver *ddp, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039{
3040 return scnprintf(buf, PAGE_SIZE, "%d\n", scsi_debug_max_luns);
3041}
Akinobu Mita82069372013-10-14 22:48:04 +09003042static ssize_t max_luns_store(struct device_driver *ddp, const char *buf,
3043 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044{
3045 int n;
3046
3047 if ((count > 0) && (1 == sscanf(buf, "%d", &n)) && (n >= 0)) {
3048 scsi_debug_max_luns = n;
3049 sdebug_max_tgts_luns();
3050 return count;
3051 }
3052 return -EINVAL;
3053}
Akinobu Mita82069372013-10-14 22:48:04 +09003054static DRIVER_ATTR_RW(max_luns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055
Akinobu Mita82069372013-10-14 22:48:04 +09003056static ssize_t max_queue_show(struct device_driver *ddp, char *buf)
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -04003057{
3058 return scnprintf(buf, PAGE_SIZE, "%d\n", scsi_debug_max_queue);
3059}
Akinobu Mita82069372013-10-14 22:48:04 +09003060static ssize_t max_queue_store(struct device_driver *ddp, const char *buf,
3061 size_t count)
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -04003062{
3063 int n;
3064
3065 if ((count > 0) && (1 == sscanf(buf, "%d", &n)) && (n > 0) &&
3066 (n <= SCSI_DEBUG_CANQUEUE)) {
3067 scsi_debug_max_queue = n;
3068 return count;
3069 }
3070 return -EINVAL;
3071}
Akinobu Mita82069372013-10-14 22:48:04 +09003072static DRIVER_ATTR_RW(max_queue);
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -04003073
Akinobu Mita82069372013-10-14 22:48:04 +09003074static ssize_t no_uld_show(struct device_driver *ddp, char *buf)
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -04003075{
3076 return scnprintf(buf, PAGE_SIZE, "%d\n", scsi_debug_no_uld);
3077}
Akinobu Mita82069372013-10-14 22:48:04 +09003078static DRIVER_ATTR_RO(no_uld);
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -04003079
Akinobu Mita82069372013-10-14 22:48:04 +09003080static ssize_t scsi_level_show(struct device_driver *ddp, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081{
3082 return scnprintf(buf, PAGE_SIZE, "%d\n", scsi_debug_scsi_level);
3083}
Akinobu Mita82069372013-10-14 22:48:04 +09003084static DRIVER_ATTR_RO(scsi_level);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085
Akinobu Mita82069372013-10-14 22:48:04 +09003086static ssize_t virtual_gb_show(struct device_driver *ddp, char *buf)
Douglas Gilbertc65b1442006-06-06 00:11:24 -04003087{
3088 return scnprintf(buf, PAGE_SIZE, "%d\n", scsi_debug_virtual_gb);
3089}
Akinobu Mita82069372013-10-14 22:48:04 +09003090static ssize_t virtual_gb_store(struct device_driver *ddp, const char *buf,
3091 size_t count)
Douglas Gilbertc65b1442006-06-06 00:11:24 -04003092{
3093 int n;
3094
3095 if ((count > 0) && (1 == sscanf(buf, "%d", &n)) && (n >= 0)) {
3096 scsi_debug_virtual_gb = n;
FUJITA Tomonori28898872008-03-30 00:59:55 +09003097
3098 sdebug_capacity = get_sdebug_capacity();
3099
Douglas Gilbertc65b1442006-06-06 00:11:24 -04003100 return count;
3101 }
3102 return -EINVAL;
3103}
Akinobu Mita82069372013-10-14 22:48:04 +09003104static DRIVER_ATTR_RW(virtual_gb);
Douglas Gilbertc65b1442006-06-06 00:11:24 -04003105
Akinobu Mita82069372013-10-14 22:48:04 +09003106static ssize_t add_host_show(struct device_driver *ddp, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107{
3108 return scnprintf(buf, PAGE_SIZE, "%d\n", scsi_debug_add_host);
3109}
3110
Akinobu Mita82069372013-10-14 22:48:04 +09003111static ssize_t add_host_store(struct device_driver *ddp, const char *buf,
3112 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113{
FUJITA Tomonorif3df41c2008-03-20 11:09:15 +09003114 int delta_hosts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115
FUJITA Tomonorif3df41c2008-03-20 11:09:15 +09003116 if (sscanf(buf, "%d", &delta_hosts) != 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 if (delta_hosts > 0) {
3119 do {
3120 sdebug_add_adapter();
3121 } while (--delta_hosts);
3122 } else if (delta_hosts < 0) {
3123 do {
3124 sdebug_remove_adapter();
3125 } while (++delta_hosts);
3126 }
3127 return count;
3128}
Akinobu Mita82069372013-10-14 22:48:04 +09003129static DRIVER_ATTR_RW(add_host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130
Akinobu Mita82069372013-10-14 22:48:04 +09003131static ssize_t vpd_use_hostno_show(struct device_driver *ddp, char *buf)
Douglas Gilbert23183912006-09-16 20:30:47 -04003132{
3133 return scnprintf(buf, PAGE_SIZE, "%d\n", scsi_debug_vpd_use_hostno);
3134}
Akinobu Mita82069372013-10-14 22:48:04 +09003135static ssize_t vpd_use_hostno_store(struct device_driver *ddp, const char *buf,
3136 size_t count)
Douglas Gilbert23183912006-09-16 20:30:47 -04003137{
3138 int n;
3139
3140 if ((count > 0) && (1 == sscanf(buf, "%d", &n)) && (n >= 0)) {
3141 scsi_debug_vpd_use_hostno = n;
3142 return count;
3143 }
3144 return -EINVAL;
3145}
Akinobu Mita82069372013-10-14 22:48:04 +09003146static DRIVER_ATTR_RW(vpd_use_hostno);
Douglas Gilbert23183912006-09-16 20:30:47 -04003147
Akinobu Mita82069372013-10-14 22:48:04 +09003148static ssize_t sector_size_show(struct device_driver *ddp, char *buf)
Martin K. Petersen597136a2008-06-05 00:12:59 -04003149{
3150 return scnprintf(buf, PAGE_SIZE, "%u\n", scsi_debug_sector_size);
3151}
Akinobu Mita82069372013-10-14 22:48:04 +09003152static DRIVER_ATTR_RO(sector_size);
Martin K. Petersen597136a2008-06-05 00:12:59 -04003153
Akinobu Mita82069372013-10-14 22:48:04 +09003154static ssize_t dix_show(struct device_driver *ddp, char *buf)
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003155{
3156 return scnprintf(buf, PAGE_SIZE, "%d\n", scsi_debug_dix);
3157}
Akinobu Mita82069372013-10-14 22:48:04 +09003158static DRIVER_ATTR_RO(dix);
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003159
Akinobu Mita82069372013-10-14 22:48:04 +09003160static ssize_t dif_show(struct device_driver *ddp, char *buf)
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003161{
3162 return scnprintf(buf, PAGE_SIZE, "%d\n", scsi_debug_dif);
3163}
Akinobu Mita82069372013-10-14 22:48:04 +09003164static DRIVER_ATTR_RO(dif);
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003165
Akinobu Mita82069372013-10-14 22:48:04 +09003166static ssize_t guard_show(struct device_driver *ddp, char *buf)
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003167{
Akinobu Mita68aee7b2013-09-18 21:27:27 +09003168 return scnprintf(buf, PAGE_SIZE, "%u\n", scsi_debug_guard);
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003169}
Akinobu Mita82069372013-10-14 22:48:04 +09003170static DRIVER_ATTR_RO(guard);
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003171
Akinobu Mita82069372013-10-14 22:48:04 +09003172static ssize_t ato_show(struct device_driver *ddp, char *buf)
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003173{
3174 return scnprintf(buf, PAGE_SIZE, "%d\n", scsi_debug_ato);
3175}
Akinobu Mita82069372013-10-14 22:48:04 +09003176static DRIVER_ATTR_RO(ato);
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003177
Akinobu Mita82069372013-10-14 22:48:04 +09003178static ssize_t map_show(struct device_driver *ddp, char *buf)
Martin K. Petersen44d92692009-10-15 14:45:27 -04003179{
3180 ssize_t count;
3181
Martin K. Petersen5b94e232011-03-08 02:08:11 -05003182 if (!scsi_debug_lbp())
Martin K. Petersen44d92692009-10-15 14:45:27 -04003183 return scnprintf(buf, PAGE_SIZE, "0-%u\n",
3184 sdebug_store_sectors);
3185
3186 count = bitmap_scnlistprintf(buf, PAGE_SIZE, map_storep, map_size);
3187
3188 buf[count++] = '\n';
3189 buf[count++] = 0;
3190
3191 return count;
3192}
Akinobu Mita82069372013-10-14 22:48:04 +09003193static DRIVER_ATTR_RO(map);
Martin K. Petersen44d92692009-10-15 14:45:27 -04003194
Akinobu Mita82069372013-10-14 22:48:04 +09003195static ssize_t removable_show(struct device_driver *ddp, char *buf)
Martin Pittd9867882012-09-06 12:04:33 +02003196{
3197 return scnprintf(buf, PAGE_SIZE, "%d\n", scsi_debug_removable ? 1 : 0);
3198}
Akinobu Mita82069372013-10-14 22:48:04 +09003199static ssize_t removable_store(struct device_driver *ddp, const char *buf,
3200 size_t count)
Martin Pittd9867882012-09-06 12:04:33 +02003201{
3202 int n;
3203
3204 if ((count > 0) && (1 == sscanf(buf, "%d", &n)) && (n >= 0)) {
3205 scsi_debug_removable = (n > 0);
3206 return count;
3207 }
3208 return -EINVAL;
3209}
Akinobu Mita82069372013-10-14 22:48:04 +09003210static DRIVER_ATTR_RW(removable);
Martin Pittd9867882012-09-06 12:04:33 +02003211
Akinobu Mita82069372013-10-14 22:48:04 +09003212/* Note: The following array creates attribute files in the
Douglas Gilbert23183912006-09-16 20:30:47 -04003213 /sys/bus/pseudo/drivers/scsi_debug directory. The advantage of these
3214 files (over those found in the /sys/module/scsi_debug/parameters
3215 directory) is that auxiliary actions can be triggered when an attribute
3216 is changed. For example see: sdebug_add_host_store() above.
3217 */
Randy Dunlap6ecaff72006-07-11 20:53:22 -07003218
Akinobu Mita82069372013-10-14 22:48:04 +09003219static struct attribute *sdebug_drv_attrs[] = {
3220 &driver_attr_delay.attr,
3221 &driver_attr_opts.attr,
3222 &driver_attr_ptype.attr,
3223 &driver_attr_dsense.attr,
3224 &driver_attr_fake_rw.attr,
3225 &driver_attr_no_lun_0.attr,
3226 &driver_attr_num_tgts.attr,
3227 &driver_attr_dev_size_mb.attr,
3228 &driver_attr_num_parts.attr,
3229 &driver_attr_every_nth.attr,
3230 &driver_attr_max_luns.attr,
3231 &driver_attr_max_queue.attr,
3232 &driver_attr_no_uld.attr,
3233 &driver_attr_scsi_level.attr,
3234 &driver_attr_virtual_gb.attr,
3235 &driver_attr_add_host.attr,
3236 &driver_attr_vpd_use_hostno.attr,
3237 &driver_attr_sector_size.attr,
3238 &driver_attr_dix.attr,
3239 &driver_attr_dif.attr,
3240 &driver_attr_guard.attr,
3241 &driver_attr_ato.attr,
3242 &driver_attr_map.attr,
3243 &driver_attr_removable.attr,
3244 NULL,
3245};
3246ATTRIBUTE_GROUPS(sdebug_drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247
Akinobu Mita11ddcec2014-02-26 22:56:59 +09003248static struct device *pseudo_primary;
FUJITA Tomonori8dea0d02008-03-30 00:59:58 +09003249
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250static int __init scsi_debug_init(void)
3251{
FUJITA Tomonori5f2578e2008-03-30 00:59:57 +09003252 unsigned long sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253 int host_to_add;
3254 int k;
Randy Dunlap6ecaff72006-07-11 20:53:22 -07003255 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256
Martin K. Petersen597136a2008-06-05 00:12:59 -04003257 switch (scsi_debug_sector_size) {
3258 case 512:
3259 case 1024:
3260 case 2048:
3261 case 4096:
3262 break;
3263 default:
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003264 printk(KERN_ERR "scsi_debug_init: invalid sector_size %d\n",
Martin K. Petersen597136a2008-06-05 00:12:59 -04003265 scsi_debug_sector_size);
3266 return -EINVAL;
3267 }
3268
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003269 switch (scsi_debug_dif) {
3270
3271 case SD_DIF_TYPE0_PROTECTION:
3272 case SD_DIF_TYPE1_PROTECTION:
Martin K. Petersen395cef02009-09-18 17:33:03 -04003273 case SD_DIF_TYPE2_PROTECTION:
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003274 case SD_DIF_TYPE3_PROTECTION:
3275 break;
3276
3277 default:
Martin K. Petersen395cef02009-09-18 17:33:03 -04003278 printk(KERN_ERR "scsi_debug_init: dif must be 0, 1, 2 or 3\n");
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003279 return -EINVAL;
3280 }
3281
3282 if (scsi_debug_guard > 1) {
3283 printk(KERN_ERR "scsi_debug_init: guard must be 0 or 1\n");
3284 return -EINVAL;
3285 }
3286
3287 if (scsi_debug_ato > 1) {
3288 printk(KERN_ERR "scsi_debug_init: ato must be 0 or 1\n");
3289 return -EINVAL;
3290 }
3291
Martin K. Petersenea61fca2009-05-15 00:40:33 -04003292 if (scsi_debug_physblk_exp > 15) {
3293 printk(KERN_ERR "scsi_debug_init: invalid physblk_exp %u\n",
3294 scsi_debug_physblk_exp);
3295 return -EINVAL;
3296 }
3297
3298 if (scsi_debug_lowest_aligned > 0x3fff) {
3299 printk(KERN_ERR "scsi_debug_init: lowest_aligned too big: %u\n",
3300 scsi_debug_lowest_aligned);
3301 return -EINVAL;
3302 }
3303
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304 if (scsi_debug_dev_size_mb < 1)
3305 scsi_debug_dev_size_mb = 1; /* force minimum 1 MB ramdisk */
FUJITA Tomonori5f2578e2008-03-30 00:59:57 +09003306 sz = (unsigned long)scsi_debug_dev_size_mb * 1048576;
Martin K. Petersen597136a2008-06-05 00:12:59 -04003307 sdebug_store_sectors = sz / scsi_debug_sector_size;
FUJITA Tomonori28898872008-03-30 00:59:55 +09003308 sdebug_capacity = get_sdebug_capacity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309
3310 /* play around with geometry, don't waste too much on track 0 */
3311 sdebug_heads = 8;
3312 sdebug_sectors_per = 32;
3313 if (scsi_debug_dev_size_mb >= 16)
3314 sdebug_heads = 32;
3315 else if (scsi_debug_dev_size_mb >= 256)
3316 sdebug_heads = 64;
3317 sdebug_cylinders_per = (unsigned long)sdebug_capacity /
3318 (sdebug_sectors_per * sdebug_heads);
3319 if (sdebug_cylinders_per >= 1024) {
3320 /* other LLDs do this; implies >= 1GB ram disk ... */
3321 sdebug_heads = 255;
3322 sdebug_sectors_per = 63;
3323 sdebug_cylinders_per = (unsigned long)sdebug_capacity /
3324 (sdebug_sectors_per * sdebug_heads);
3325 }
3326
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327 fake_storep = vmalloc(sz);
3328 if (NULL == fake_storep) {
3329 printk(KERN_ERR "scsi_debug_init: out of memory, 1\n");
3330 return -ENOMEM;
3331 }
3332 memset(fake_storep, 0, sz);
3333 if (scsi_debug_num_parts > 0)
FUJITA Tomonorif58b0ef2008-03-30 00:59:54 +09003334 sdebug_build_parts(fake_storep, sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335
Akinobu Mita7cb69d02013-06-29 17:59:16 +09003336 if (scsi_debug_dix) {
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003337 int dif_size;
3338
3339 dif_size = sdebug_store_sectors * sizeof(struct sd_dif_tuple);
3340 dif_storep = vmalloc(dif_size);
3341
3342 printk(KERN_ERR "scsi_debug_init: dif_storep %u bytes @ %p\n",
3343 dif_size, dif_storep);
3344
3345 if (dif_storep == NULL) {
3346 printk(KERN_ERR "scsi_debug_init: out of mem. (DIX)\n");
3347 ret = -ENOMEM;
3348 goto free_vm;
3349 }
3350
3351 memset(dif_storep, 0xff, dif_size);
3352 }
3353
Martin K. Petersen5b94e232011-03-08 02:08:11 -05003354 /* Logical Block Provisioning */
3355 if (scsi_debug_lbp()) {
Martin K. Petersen60147592010-08-19 11:49:00 -04003356 scsi_debug_unmap_max_blocks =
3357 clamp(scsi_debug_unmap_max_blocks, 0U, 0xffffffffU);
3358
3359 scsi_debug_unmap_max_desc =
3360 clamp(scsi_debug_unmap_max_desc, 0U, 256U);
3361
3362 scsi_debug_unmap_granularity =
3363 clamp(scsi_debug_unmap_granularity, 1U, 0xffffffffU);
3364
3365 if (scsi_debug_unmap_alignment &&
Akinobu Mitaac170782013-04-16 22:11:56 +09003366 scsi_debug_unmap_granularity <=
3367 scsi_debug_unmap_alignment) {
Martin K. Petersen44d92692009-10-15 14:45:27 -04003368 printk(KERN_ERR
Akinobu Mitaac170782013-04-16 22:11:56 +09003369 "%s: ERR: unmap_granularity <= unmap_alignment\n",
Martin K. Petersen44d92692009-10-15 14:45:27 -04003370 __func__);
3371 return -EINVAL;
3372 }
3373
Akinobu Mitab90ebc32013-04-16 22:11:58 +09003374 map_size = lba_to_map_index(sdebug_store_sectors - 1) + 1;
3375 map_storep = vmalloc(BITS_TO_LONGS(map_size) * sizeof(long));
Martin K. Petersen44d92692009-10-15 14:45:27 -04003376
3377 printk(KERN_INFO "scsi_debug_init: %lu provisioning blocks\n",
3378 map_size);
3379
3380 if (map_storep == NULL) {
3381 printk(KERN_ERR "scsi_debug_init: out of mem. (MAP)\n");
3382 ret = -ENOMEM;
3383 goto free_vm;
3384 }
3385
Akinobu Mitab90ebc32013-04-16 22:11:58 +09003386 bitmap_zero(map_storep, map_size);
Martin K. Petersen44d92692009-10-15 14:45:27 -04003387
3388 /* Map first 1KB for partition table */
3389 if (scsi_debug_num_parts)
3390 map_region(0, 2);
3391 }
3392
Nicholas Bellinger9b906772010-09-06 17:24:28 -07003393 pseudo_primary = root_device_register("pseudo_0");
3394 if (IS_ERR(pseudo_primary)) {
3395 printk(KERN_WARNING "scsi_debug: root_device_register() error\n");
3396 ret = PTR_ERR(pseudo_primary);
Randy Dunlap6ecaff72006-07-11 20:53:22 -07003397 goto free_vm;
3398 }
3399 ret = bus_register(&pseudo_lld_bus);
3400 if (ret < 0) {
3401 printk(KERN_WARNING "scsi_debug: bus_register error: %d\n",
3402 ret);
3403 goto dev_unreg;
3404 }
3405 ret = driver_register(&sdebug_driverfs_driver);
3406 if (ret < 0) {
3407 printk(KERN_WARNING "scsi_debug: driver_register error: %d\n",
3408 ret);
3409 goto bus_unreg;
3410 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411
Randy Dunlap6ecaff72006-07-11 20:53:22 -07003412 init_all_queued();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414 host_to_add = scsi_debug_add_host;
3415 scsi_debug_add_host = 0;
3416
3417 for (k = 0; k < host_to_add; k++) {
3418 if (sdebug_add_adapter()) {
3419 printk(KERN_ERR "scsi_debug_init: "
3420 "sdebug_add_adapter failed k=%d\n", k);
3421 break;
3422 }
3423 }
3424
3425 if (SCSI_DEBUG_OPT_NOISE & scsi_debug_opts) {
3426 printk(KERN_INFO "scsi_debug_init: built %d host(s)\n",
3427 scsi_debug_add_host);
3428 }
3429 return 0;
Randy Dunlap6ecaff72006-07-11 20:53:22 -07003430
Randy Dunlap6ecaff72006-07-11 20:53:22 -07003431bus_unreg:
3432 bus_unregister(&pseudo_lld_bus);
3433dev_unreg:
Nicholas Bellinger9b906772010-09-06 17:24:28 -07003434 root_device_unregister(pseudo_primary);
Randy Dunlap6ecaff72006-07-11 20:53:22 -07003435free_vm:
Martin K. Petersen44d92692009-10-15 14:45:27 -04003436 if (map_storep)
3437 vfree(map_storep);
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003438 if (dif_storep)
3439 vfree(dif_storep);
Randy Dunlap6ecaff72006-07-11 20:53:22 -07003440 vfree(fake_storep);
3441
3442 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443}
3444
3445static void __exit scsi_debug_exit(void)
3446{
3447 int k = scsi_debug_add_host;
3448
3449 stop_all_queued();
3450 for (; k; k--)
3451 sdebug_remove_adapter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452 driver_unregister(&sdebug_driverfs_driver);
3453 bus_unregister(&pseudo_lld_bus);
Nicholas Bellinger9b906772010-09-06 17:24:28 -07003454 root_device_unregister(pseudo_primary);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003456 if (dif_storep)
3457 vfree(dif_storep);
3458
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459 vfree(fake_storep);
3460}
3461
3462device_initcall(scsi_debug_init);
3463module_exit(scsi_debug_exit);
3464
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465static void sdebug_release_adapter(struct device * dev)
3466{
3467 struct sdebug_host_info *sdbg_host;
3468
3469 sdbg_host = to_sdebug_host(dev);
3470 kfree(sdbg_host);
3471}
3472
3473static int sdebug_add_adapter(void)
3474{
3475 int k, devs_per_host;
3476 int error = 0;
3477 struct sdebug_host_info *sdbg_host;
FUJITA Tomonori8b40228f2008-03-20 11:09:18 +09003478 struct sdebug_dev_info *sdbg_devinfo, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479
Douglas Gilbertc65b1442006-06-06 00:11:24 -04003480 sdbg_host = kzalloc(sizeof(*sdbg_host),GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481 if (NULL == sdbg_host) {
3482 printk(KERN_ERR "%s: out of memory at line %d\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07003483 __func__, __LINE__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484 return -ENOMEM;
3485 }
3486
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487 INIT_LIST_HEAD(&sdbg_host->dev_info_list);
3488
3489 devs_per_host = scsi_debug_num_tgts * scsi_debug_max_luns;
3490 for (k = 0; k < devs_per_host; k++) {
FUJITA Tomonori5cb2fc02008-03-20 11:09:16 +09003491 sdbg_devinfo = sdebug_device_create(sdbg_host, GFP_KERNEL);
3492 if (!sdbg_devinfo) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493 printk(KERN_ERR "%s: out of memory at line %d\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07003494 __func__, __LINE__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495 error = -ENOMEM;
3496 goto clean;
3497 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498 }
3499
3500 spin_lock(&sdebug_host_list_lock);
3501 list_add_tail(&sdbg_host->host_list, &sdebug_host_list);
3502 spin_unlock(&sdebug_host_list_lock);
3503
3504 sdbg_host->dev.bus = &pseudo_lld_bus;
Nicholas Bellinger9b906772010-09-06 17:24:28 -07003505 sdbg_host->dev.parent = pseudo_primary;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506 sdbg_host->dev.release = &sdebug_release_adapter;
Kay Sievers71610f52008-12-03 22:41:36 +01003507 dev_set_name(&sdbg_host->dev, "adapter%d", scsi_debug_add_host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508
3509 error = device_register(&sdbg_host->dev);
3510
3511 if (error)
3512 goto clean;
3513
3514 ++scsi_debug_add_host;
3515 return error;
3516
3517clean:
FUJITA Tomonori8b40228f2008-03-20 11:09:18 +09003518 list_for_each_entry_safe(sdbg_devinfo, tmp, &sdbg_host->dev_info_list,
3519 dev_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520 list_del(&sdbg_devinfo->dev_list);
3521 kfree(sdbg_devinfo);
3522 }
3523
3524 kfree(sdbg_host);
3525 return error;
3526}
3527
3528static void sdebug_remove_adapter(void)
3529{
3530 struct sdebug_host_info * sdbg_host = NULL;
3531
3532 spin_lock(&sdebug_host_list_lock);
3533 if (!list_empty(&sdebug_host_list)) {
3534 sdbg_host = list_entry(sdebug_host_list.prev,
3535 struct sdebug_host_info, host_list);
3536 list_del(&sdbg_host->host_list);
3537 }
3538 spin_unlock(&sdebug_host_list_lock);
3539
3540 if (!sdbg_host)
3541 return;
3542
3543 device_unregister(&sdbg_host->dev);
3544 --scsi_debug_add_host;
3545}
3546
FUJITA Tomonori639db472008-03-20 11:09:19 +09003547static
Jeff Garzikf2812332010-11-16 02:10:29 -05003548int scsi_debug_queuecommand_lck(struct scsi_cmnd *SCpnt, done_funct_t done)
FUJITA Tomonori639db472008-03-20 11:09:19 +09003549{
3550 unsigned char *cmd = (unsigned char *) SCpnt->cmnd;
3551 int len, k;
3552 unsigned int num;
3553 unsigned long long lba;
Martin K. Petersen395cef02009-09-18 17:33:03 -04003554 u32 ei_lba;
FUJITA Tomonori639db472008-03-20 11:09:19 +09003555 int errsts = 0;
3556 int target = SCpnt->device->id;
3557 struct sdebug_dev_info *devip = NULL;
3558 int inj_recovered = 0;
3559 int inj_transport = 0;
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003560 int inj_dif = 0;
3561 int inj_dix = 0;
FUJITA Tomonori639db472008-03-20 11:09:19 +09003562 int delay_override = 0;
Martin K. Petersen44d92692009-10-15 14:45:27 -04003563 int unmap = 0;
FUJITA Tomonori639db472008-03-20 11:09:19 +09003564
3565 scsi_set_resid(SCpnt, 0);
3566 if ((SCSI_DEBUG_OPT_NOISE & scsi_debug_opts) && cmd) {
3567 printk(KERN_INFO "scsi_debug: cmd ");
3568 for (k = 0, len = SCpnt->cmd_len; k < len; ++k)
3569 printk("%02x ", (int)cmd[k]);
3570 printk("\n");
3571 }
3572
3573 if (target == SCpnt->device->host->hostt->this_id) {
3574 printk(KERN_INFO "scsi_debug: initiator's id used as "
3575 "target!\n");
3576 return schedule_resp(SCpnt, NULL, done,
3577 DID_NO_CONNECT << 16, 0);
3578 }
3579
3580 if ((SCpnt->device->lun >= scsi_debug_max_luns) &&
3581 (SCpnt->device->lun != SAM2_WLUN_REPORT_LUNS))
3582 return schedule_resp(SCpnt, NULL, done,
3583 DID_NO_CONNECT << 16, 0);
3584 devip = devInfoReg(SCpnt->device);
3585 if (NULL == devip)
3586 return schedule_resp(SCpnt, NULL, done,
3587 DID_NO_CONNECT << 16, 0);
3588
3589 if ((scsi_debug_every_nth != 0) &&
3590 (++scsi_debug_cmnd_count >= abs(scsi_debug_every_nth))) {
3591 scsi_debug_cmnd_count = 0;
3592 if (scsi_debug_every_nth < -1)
3593 scsi_debug_every_nth = -1;
3594 if (SCSI_DEBUG_OPT_TIMEOUT & scsi_debug_opts)
3595 return 0; /* ignore command causing timeout */
Martin K. Petersen18a4d0a2012-02-09 13:48:53 -05003596 else if (SCSI_DEBUG_OPT_MAC_TIMEOUT & scsi_debug_opts &&
3597 scsi_medium_access_command(SCpnt))
3598 return 0; /* time out reads and writes */
FUJITA Tomonori639db472008-03-20 11:09:19 +09003599 else if (SCSI_DEBUG_OPT_RECOVERED_ERR & scsi_debug_opts)
3600 inj_recovered = 1; /* to reads and writes below */
3601 else if (SCSI_DEBUG_OPT_TRANSPORT_ERR & scsi_debug_opts)
3602 inj_transport = 1; /* to reads and writes below */
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003603 else if (SCSI_DEBUG_OPT_DIF_ERR & scsi_debug_opts)
3604 inj_dif = 1; /* to reads and writes below */
3605 else if (SCSI_DEBUG_OPT_DIX_ERR & scsi_debug_opts)
3606 inj_dix = 1; /* to reads and writes below */
FUJITA Tomonori639db472008-03-20 11:09:19 +09003607 }
3608
3609 if (devip->wlun) {
3610 switch (*cmd) {
3611 case INQUIRY:
3612 case REQUEST_SENSE:
3613 case TEST_UNIT_READY:
3614 case REPORT_LUNS:
3615 break; /* only allowable wlun commands */
3616 default:
3617 if (SCSI_DEBUG_OPT_NOISE & scsi_debug_opts)
3618 printk(KERN_INFO "scsi_debug: Opcode: 0x%x "
3619 "not supported for wlun\n", *cmd);
3620 mk_sense_buffer(devip, ILLEGAL_REQUEST,
3621 INVALID_OPCODE, 0);
3622 errsts = check_condition_result;
3623 return schedule_resp(SCpnt, devip, done, errsts,
3624 0);
3625 }
3626 }
3627
3628 switch (*cmd) {
3629 case INQUIRY: /* mandatory, ignore unit attention */
3630 delay_override = 1;
3631 errsts = resp_inquiry(SCpnt, target, devip);
3632 break;
3633 case REQUEST_SENSE: /* mandatory, ignore unit attention */
3634 delay_override = 1;
3635 errsts = resp_requests(SCpnt, devip);
3636 break;
3637 case REZERO_UNIT: /* actually this is REWIND for SSC */
3638 case START_STOP:
3639 errsts = resp_start_stop(SCpnt, devip);
3640 break;
3641 case ALLOW_MEDIUM_REMOVAL:
3642 errsts = check_readiness(SCpnt, 1, devip);
3643 if (errsts)
3644 break;
3645 if (SCSI_DEBUG_OPT_NOISE & scsi_debug_opts)
3646 printk(KERN_INFO "scsi_debug: Medium removal %s\n",
3647 cmd[4] ? "inhibited" : "enabled");
3648 break;
3649 case SEND_DIAGNOSTIC: /* mandatory */
3650 errsts = check_readiness(SCpnt, 1, devip);
3651 break;
3652 case TEST_UNIT_READY: /* mandatory */
3653 delay_override = 1;
3654 errsts = check_readiness(SCpnt, 0, devip);
3655 break;
3656 case RESERVE:
3657 errsts = check_readiness(SCpnt, 1, devip);
3658 break;
3659 case RESERVE_10:
3660 errsts = check_readiness(SCpnt, 1, devip);
3661 break;
3662 case RELEASE:
3663 errsts = check_readiness(SCpnt, 1, devip);
3664 break;
3665 case RELEASE_10:
3666 errsts = check_readiness(SCpnt, 1, devip);
3667 break;
3668 case READ_CAPACITY:
3669 errsts = resp_readcap(SCpnt, devip);
3670 break;
3671 case SERVICE_ACTION_IN:
Martin K. Petersen44d92692009-10-15 14:45:27 -04003672 if (cmd[1] == SAI_READ_CAPACITY_16)
3673 errsts = resp_readcap16(SCpnt, devip);
3674 else if (cmd[1] == SAI_GET_LBA_STATUS) {
3675
Martin K. Petersen5b94e232011-03-08 02:08:11 -05003676 if (scsi_debug_lbp() == 0) {
Martin K. Petersen44d92692009-10-15 14:45:27 -04003677 mk_sense_buffer(devip, ILLEGAL_REQUEST,
3678 INVALID_COMMAND_OPCODE, 0);
3679 errsts = check_condition_result;
3680 } else
3681 errsts = resp_get_lba_status(SCpnt, devip);
3682 } else {
FUJITA Tomonori639db472008-03-20 11:09:19 +09003683 mk_sense_buffer(devip, ILLEGAL_REQUEST,
3684 INVALID_OPCODE, 0);
3685 errsts = check_condition_result;
FUJITA Tomonori639db472008-03-20 11:09:19 +09003686 }
FUJITA Tomonori639db472008-03-20 11:09:19 +09003687 break;
3688 case MAINTENANCE_IN:
3689 if (MI_REPORT_TARGET_PGS != cmd[1]) {
3690 mk_sense_buffer(devip, ILLEGAL_REQUEST,
3691 INVALID_OPCODE, 0);
3692 errsts = check_condition_result;
3693 break;
3694 }
3695 errsts = resp_report_tgtpgs(SCpnt, devip);
3696 break;
3697 case READ_16:
3698 case READ_12:
3699 case READ_10:
Martin K. Petersen395cef02009-09-18 17:33:03 -04003700 /* READ{10,12,16} and DIF Type 2 are natural enemies */
3701 if (scsi_debug_dif == SD_DIF_TYPE2_PROTECTION &&
3702 cmd[1] & 0xe0) {
3703 mk_sense_buffer(devip, ILLEGAL_REQUEST,
3704 INVALID_COMMAND_OPCODE, 0);
3705 errsts = check_condition_result;
3706 break;
3707 }
3708
3709 if ((scsi_debug_dif == SD_DIF_TYPE1_PROTECTION ||
3710 scsi_debug_dif == SD_DIF_TYPE3_PROTECTION) &&
3711 (cmd[1] & 0xe0) == 0)
3712 printk(KERN_ERR "Unprotected RD/WR to DIF device\n");
3713
3714 /* fall through */
FUJITA Tomonori639db472008-03-20 11:09:19 +09003715 case READ_6:
Martin K. Petersen395cef02009-09-18 17:33:03 -04003716read:
FUJITA Tomonori639db472008-03-20 11:09:19 +09003717 errsts = check_readiness(SCpnt, 0, devip);
3718 if (errsts)
3719 break;
3720 if (scsi_debug_fake_rw)
3721 break;
Martin K. Petersen395cef02009-09-18 17:33:03 -04003722 get_data_transfer_info(cmd, &lba, &num, &ei_lba);
3723 errsts = resp_read(SCpnt, lba, num, devip, ei_lba);
FUJITA Tomonori639db472008-03-20 11:09:19 +09003724 if (inj_recovered && (0 == errsts)) {
3725 mk_sense_buffer(devip, RECOVERED_ERROR,
3726 THRESHOLD_EXCEEDED, 0);
3727 errsts = check_condition_result;
3728 } else if (inj_transport && (0 == errsts)) {
3729 mk_sense_buffer(devip, ABORTED_COMMAND,
3730 TRANSPORT_PROBLEM, ACK_NAK_TO);
3731 errsts = check_condition_result;
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003732 } else if (inj_dif && (0 == errsts)) {
3733 mk_sense_buffer(devip, ABORTED_COMMAND, 0x10, 1);
3734 errsts = illegal_condition_result;
3735 } else if (inj_dix && (0 == errsts)) {
3736 mk_sense_buffer(devip, ILLEGAL_REQUEST, 0x10, 1);
3737 errsts = illegal_condition_result;
FUJITA Tomonori639db472008-03-20 11:09:19 +09003738 }
3739 break;
3740 case REPORT_LUNS: /* mandatory, ignore unit attention */
3741 delay_override = 1;
3742 errsts = resp_report_luns(SCpnt, devip);
3743 break;
3744 case VERIFY: /* 10 byte SBC-2 command */
3745 errsts = check_readiness(SCpnt, 0, devip);
3746 break;
3747 case WRITE_16:
3748 case WRITE_12:
3749 case WRITE_10:
Martin K. Petersen395cef02009-09-18 17:33:03 -04003750 /* WRITE{10,12,16} and DIF Type 2 are natural enemies */
3751 if (scsi_debug_dif == SD_DIF_TYPE2_PROTECTION &&
3752 cmd[1] & 0xe0) {
3753 mk_sense_buffer(devip, ILLEGAL_REQUEST,
3754 INVALID_COMMAND_OPCODE, 0);
3755 errsts = check_condition_result;
3756 break;
3757 }
3758
3759 if ((scsi_debug_dif == SD_DIF_TYPE1_PROTECTION ||
3760 scsi_debug_dif == SD_DIF_TYPE3_PROTECTION) &&
3761 (cmd[1] & 0xe0) == 0)
3762 printk(KERN_ERR "Unprotected RD/WR to DIF device\n");
3763
3764 /* fall through */
FUJITA Tomonori639db472008-03-20 11:09:19 +09003765 case WRITE_6:
Martin K. Petersen395cef02009-09-18 17:33:03 -04003766write:
FUJITA Tomonori639db472008-03-20 11:09:19 +09003767 errsts = check_readiness(SCpnt, 0, devip);
3768 if (errsts)
3769 break;
3770 if (scsi_debug_fake_rw)
3771 break;
Martin K. Petersen395cef02009-09-18 17:33:03 -04003772 get_data_transfer_info(cmd, &lba, &num, &ei_lba);
3773 errsts = resp_write(SCpnt, lba, num, devip, ei_lba);
FUJITA Tomonori639db472008-03-20 11:09:19 +09003774 if (inj_recovered && (0 == errsts)) {
3775 mk_sense_buffer(devip, RECOVERED_ERROR,
3776 THRESHOLD_EXCEEDED, 0);
3777 errsts = check_condition_result;
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003778 } else if (inj_dif && (0 == errsts)) {
3779 mk_sense_buffer(devip, ABORTED_COMMAND, 0x10, 1);
3780 errsts = illegal_condition_result;
3781 } else if (inj_dix && (0 == errsts)) {
3782 mk_sense_buffer(devip, ILLEGAL_REQUEST, 0x10, 1);
3783 errsts = illegal_condition_result;
FUJITA Tomonori639db472008-03-20 11:09:19 +09003784 }
3785 break;
Martin K. Petersen44d92692009-10-15 14:45:27 -04003786 case WRITE_SAME_16:
Martin K. Petersen5b94e232011-03-08 02:08:11 -05003787 case WRITE_SAME:
Martin K. Petersen60147592010-08-19 11:49:00 -04003788 if (cmd[1] & 0x8) {
Martin K. Petersen5b94e232011-03-08 02:08:11 -05003789 if ((*cmd == WRITE_SAME_16 && scsi_debug_lbpws == 0) ||
3790 (*cmd == WRITE_SAME && scsi_debug_lbpws10 == 0)) {
Martin K. Petersen60147592010-08-19 11:49:00 -04003791 mk_sense_buffer(devip, ILLEGAL_REQUEST,
3792 INVALID_FIELD_IN_CDB, 0);
3793 errsts = check_condition_result;
3794 } else
3795 unmap = 1;
3796 }
3797 if (errsts)
3798 break;
Martin K. Petersen44d92692009-10-15 14:45:27 -04003799 errsts = check_readiness(SCpnt, 0, devip);
3800 if (errsts)
3801 break;
3802 get_data_transfer_info(cmd, &lba, &num, &ei_lba);
3803 errsts = resp_write_same(SCpnt, lba, num, devip, ei_lba, unmap);
3804 break;
3805 case UNMAP:
3806 errsts = check_readiness(SCpnt, 0, devip);
3807 if (errsts)
3808 break;
3809
Martin K. Petersen5b94e232011-03-08 02:08:11 -05003810 if (scsi_debug_unmap_max_desc == 0 || scsi_debug_lbpu == 0) {
Martin K. Petersen44d92692009-10-15 14:45:27 -04003811 mk_sense_buffer(devip, ILLEGAL_REQUEST,
3812 INVALID_COMMAND_OPCODE, 0);
3813 errsts = check_condition_result;
3814 } else
3815 errsts = resp_unmap(SCpnt, devip);
3816 break;
FUJITA Tomonori639db472008-03-20 11:09:19 +09003817 case MODE_SENSE:
3818 case MODE_SENSE_10:
3819 errsts = resp_mode_sense(SCpnt, target, devip);
3820 break;
3821 case MODE_SELECT:
3822 errsts = resp_mode_select(SCpnt, 1, devip);
3823 break;
3824 case MODE_SELECT_10:
3825 errsts = resp_mode_select(SCpnt, 0, devip);
3826 break;
3827 case LOG_SENSE:
3828 errsts = resp_log_sense(SCpnt, devip);
3829 break;
3830 case SYNCHRONIZE_CACHE:
3831 delay_override = 1;
3832 errsts = check_readiness(SCpnt, 0, devip);
3833 break;
3834 case WRITE_BUFFER:
3835 errsts = check_readiness(SCpnt, 1, devip);
3836 break;
3837 case XDWRITEREAD_10:
3838 if (!scsi_bidi_cmnd(SCpnt)) {
3839 mk_sense_buffer(devip, ILLEGAL_REQUEST,
3840 INVALID_FIELD_IN_CDB, 0);
3841 errsts = check_condition_result;
3842 break;
3843 }
3844
3845 errsts = check_readiness(SCpnt, 0, devip);
3846 if (errsts)
3847 break;
3848 if (scsi_debug_fake_rw)
3849 break;
Martin K. Petersen395cef02009-09-18 17:33:03 -04003850 get_data_transfer_info(cmd, &lba, &num, &ei_lba);
3851 errsts = resp_read(SCpnt, lba, num, devip, ei_lba);
FUJITA Tomonori639db472008-03-20 11:09:19 +09003852 if (errsts)
3853 break;
Martin K. Petersen395cef02009-09-18 17:33:03 -04003854 errsts = resp_write(SCpnt, lba, num, devip, ei_lba);
FUJITA Tomonori639db472008-03-20 11:09:19 +09003855 if (errsts)
3856 break;
3857 errsts = resp_xdwriteread(SCpnt, lba, num, devip);
3858 break;
Martin K. Petersen395cef02009-09-18 17:33:03 -04003859 case VARIABLE_LENGTH_CMD:
3860 if (scsi_debug_dif == SD_DIF_TYPE2_PROTECTION) {
3861
3862 if ((cmd[10] & 0xe0) == 0)
3863 printk(KERN_ERR
3864 "Unprotected RD/WR to DIF device\n");
3865
3866 if (cmd[9] == READ_32) {
3867 BUG_ON(SCpnt->cmd_len < 32);
3868 goto read;
3869 }
3870
3871 if (cmd[9] == WRITE_32) {
3872 BUG_ON(SCpnt->cmd_len < 32);
3873 goto write;
3874 }
3875 }
3876
3877 mk_sense_buffer(devip, ILLEGAL_REQUEST,
3878 INVALID_FIELD_IN_CDB, 0);
3879 errsts = check_condition_result;
3880 break;
3881
FUJITA Tomonori639db472008-03-20 11:09:19 +09003882 default:
3883 if (SCSI_DEBUG_OPT_NOISE & scsi_debug_opts)
3884 printk(KERN_INFO "scsi_debug: Opcode: 0x%x not "
3885 "supported\n", *cmd);
3886 errsts = check_readiness(SCpnt, 1, devip);
3887 if (errsts)
3888 break; /* Unit attention takes precedence */
3889 mk_sense_buffer(devip, ILLEGAL_REQUEST, INVALID_OPCODE, 0);
3890 errsts = check_condition_result;
3891 break;
3892 }
3893 return schedule_resp(SCpnt, devip, done, errsts,
3894 (delay_override ? 0 : scsi_debug_delay));
3895}
3896
Jeff Garzikf2812332010-11-16 02:10:29 -05003897static DEF_SCSI_QCMD(scsi_debug_queuecommand)
3898
FUJITA Tomonori9e603ca2008-03-02 18:30:16 +09003899static struct scsi_host_template sdebug_driver_template = {
Al Viroc8ed5552013-03-31 01:46:06 -04003900 .show_info = scsi_debug_show_info,
3901 .write_info = scsi_debug_write_info,
FUJITA Tomonori9e603ca2008-03-02 18:30:16 +09003902 .proc_name = sdebug_proc_name,
3903 .name = "SCSI DEBUG",
3904 .info = scsi_debug_info,
3905 .slave_alloc = scsi_debug_slave_alloc,
3906 .slave_configure = scsi_debug_slave_configure,
3907 .slave_destroy = scsi_debug_slave_destroy,
3908 .ioctl = scsi_debug_ioctl,
3909 .queuecommand = scsi_debug_queuecommand,
3910 .eh_abort_handler = scsi_debug_abort,
3911 .eh_bus_reset_handler = scsi_debug_bus_reset,
3912 .eh_device_reset_handler = scsi_debug_device_reset,
3913 .eh_host_reset_handler = scsi_debug_host_reset,
3914 .bios_param = scsi_debug_biosparam,
3915 .can_queue = SCSI_DEBUG_CANQUEUE,
3916 .this_id = 7,
3917 .sg_tablesize = 256,
3918 .cmd_per_lun = 16,
3919 .max_sectors = 0xffff,
3920 .use_clustering = DISABLE_CLUSTERING,
3921 .module = THIS_MODULE,
3922};
3923
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924static int sdebug_driver_probe(struct device * dev)
3925{
3926 int error = 0;
3927 struct sdebug_host_info *sdbg_host;
3928 struct Scsi_Host *hpnt;
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003929 int host_prot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930
3931 sdbg_host = to_sdebug_host(dev);
3932
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -04003933 sdebug_driver_template.can_queue = scsi_debug_max_queue;
3934 hpnt = scsi_host_alloc(&sdebug_driver_template, sizeof(sdbg_host));
3935 if (NULL == hpnt) {
3936 printk(KERN_ERR "%s: scsi_register failed\n", __func__);
3937 error = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938 return error;
Douglas Gilbert78d4e5a2010-03-25 17:29:05 -04003939 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940
3941 sdbg_host->shost = hpnt;
3942 *((struct sdebug_host_info **)hpnt->hostdata) = sdbg_host;
3943 if ((hpnt->this_id >= 0) && (scsi_debug_num_tgts > hpnt->this_id))
3944 hpnt->max_id = scsi_debug_num_tgts + 1;
3945 else
3946 hpnt->max_id = scsi_debug_num_tgts;
Douglas Gilbertc65b1442006-06-06 00:11:24 -04003947 hpnt->max_lun = SAM2_WLUN_REPORT_LUNS; /* = scsi_debug_max_luns; */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948
Martin K. Petersenc6a44282009-01-04 03:08:19 -05003949 host_prot = 0;
3950
3951 switch (scsi_debug_dif) {
3952
3953 case SD_DIF_TYPE1_PROTECTION:
3954 host_prot = SHOST_DIF_TYPE1_PROTECTION;
3955 if (scsi_debug_dix)
3956 host_prot |= SHOST_DIX_TYPE1_PROTECTION;
3957 break;
3958
3959 case SD_DIF_TYPE2_PROTECTION:
3960 host_prot = SHOST_DIF_TYPE2_PROTECTION;
3961 if (scsi_debug_dix)
3962 host_prot |= SHOST_DIX_TYPE2_PROTECTION;
3963 break;
3964
3965 case SD_DIF_TYPE3_PROTECTION:
3966 host_prot = SHOST_DIF_TYPE3_PROTECTION;
3967 if (scsi_debug_dix)
3968 host_prot |= SHOST_DIX_TYPE3_PROTECTION;
3969 break;
3970
3971 default:
3972 if (scsi_debug_dix)
3973 host_prot |= SHOST_DIX_TYPE0_PROTECTION;
3974 break;
3975 }
3976
3977 scsi_host_set_prot(hpnt, host_prot);
3978
3979 printk(KERN_INFO "scsi_debug: host protection%s%s%s%s%s%s%s\n",
3980 (host_prot & SHOST_DIF_TYPE1_PROTECTION) ? " DIF1" : "",
3981 (host_prot & SHOST_DIF_TYPE2_PROTECTION) ? " DIF2" : "",
3982 (host_prot & SHOST_DIF_TYPE3_PROTECTION) ? " DIF3" : "",
3983 (host_prot & SHOST_DIX_TYPE0_PROTECTION) ? " DIX0" : "",
3984 (host_prot & SHOST_DIX_TYPE1_PROTECTION) ? " DIX1" : "",
3985 (host_prot & SHOST_DIX_TYPE2_PROTECTION) ? " DIX2" : "",
3986 (host_prot & SHOST_DIX_TYPE3_PROTECTION) ? " DIX3" : "");
3987
3988 if (scsi_debug_guard == 1)
3989 scsi_host_set_guard(hpnt, SHOST_DIX_GUARD_IP);
3990 else
3991 scsi_host_set_guard(hpnt, SHOST_DIX_GUARD_CRC);
3992
Linus Torvalds1da177e2005-04-16 15:20:36 -07003993 error = scsi_add_host(hpnt, &sdbg_host->dev);
3994 if (error) {
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07003995 printk(KERN_ERR "%s: scsi_add_host failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996 error = -ENODEV;
3997 scsi_host_put(hpnt);
3998 } else
3999 scsi_scan_host(hpnt);
4000
4001
4002 return error;
4003}
4004
4005static int sdebug_driver_remove(struct device * dev)
4006{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004007 struct sdebug_host_info *sdbg_host;
FUJITA Tomonori8b40228f2008-03-20 11:09:18 +09004008 struct sdebug_dev_info *sdbg_devinfo, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009
4010 sdbg_host = to_sdebug_host(dev);
4011
4012 if (!sdbg_host) {
4013 printk(KERN_ERR "%s: Unable to locate host info\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07004014 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015 return -ENODEV;
4016 }
4017
4018 scsi_remove_host(sdbg_host->shost);
4019
FUJITA Tomonori8b40228f2008-03-20 11:09:18 +09004020 list_for_each_entry_safe(sdbg_devinfo, tmp, &sdbg_host->dev_info_list,
4021 dev_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022 list_del(&sdbg_devinfo->dev_list);
4023 kfree(sdbg_devinfo);
4024 }
4025
4026 scsi_host_put(sdbg_host->shost);
4027 return 0;
4028}
4029
FUJITA Tomonori8dea0d02008-03-30 00:59:58 +09004030static int pseudo_lld_bus_match(struct device *dev,
4031 struct device_driver *dev_driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032{
FUJITA Tomonori8dea0d02008-03-30 00:59:58 +09004033 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034}
FUJITA Tomonori8dea0d02008-03-30 00:59:58 +09004035
4036static struct bus_type pseudo_lld_bus = {
4037 .name = "pseudo",
4038 .match = pseudo_lld_bus_match,
4039 .probe = sdebug_driver_probe,
4040 .remove = sdebug_driver_remove,
Akinobu Mita82069372013-10-14 22:48:04 +09004041 .drv_groups = sdebug_drv_groups,
FUJITA Tomonori8dea0d02008-03-30 00:59:58 +09004042};