blob: 1b345bf41a91df1a1a3bd3b691ffacb7a6ba8b9d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * scsi.c Copyright (C) 1992 Drew Eckhardt
3 * Copyright (C) 1993, 1994, 1995, 1999 Eric Youngdale
4 * Copyright (C) 2002, 2003 Christoph Hellwig
5 *
6 * generic mid-level SCSI driver
7 * Initial versions: Drew Eckhardt
8 * Subsequent revisions: Eric Youngdale
9 *
10 * <drew@colorado.edu>
11 *
12 * Bug correction thanks go to :
13 * Rik Faith <faith@cs.unc.edu>
14 * Tommy Thorn <tthorn>
15 * Thomas Wuensche <tw@fgb1.fgb.mw.tu-muenchen.de>
16 *
17 * Modified by Eric Youngdale eric@andante.org or ericy@gnu.ai.mit.edu to
18 * add scatter-gather, multiple outstanding request, and other
19 * enhancements.
20 *
21 * Native multichannel, wide scsi, /proc/scsi and hot plugging
22 * support added by Michael Neuffer <mike@i-connect.net>
23 *
24 * Added request_module("scsi_hostadapter") for kerneld:
25 * (Put an "alias scsi_hostadapter your_hostadapter" in /etc/modprobe.conf)
26 * Bjorn Ekwall <bj0rn@blox.se>
27 * (changed to kmod)
28 *
29 * Major improvements to the timeout, abort, and reset processing,
30 * as well as performance modifications for large queue depths by
31 * Leonard N. Zubkoff <lnz@dandelion.com>
32 *
33 * Converted cli() code to spinlocks, Ingo Molnar
34 *
35 * Jiffies wrap fixes (host->resetting), 3 Dec 1998 Andrea Arcangeli
36 *
37 * out_of_space hacks, D. Gilbert (dpg) 990608
38 */
39
40#include <linux/module.h>
41#include <linux/moduleparam.h>
42#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/timer.h>
44#include <linux/string.h>
45#include <linux/slab.h>
46#include <linux/blkdev.h>
47#include <linux/delay.h>
48#include <linux/init.h>
49#include <linux/completion.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <linux/unistd.h>
51#include <linux/spinlock.h>
52#include <linux/kmod.h>
53#include <linux/interrupt.h>
54#include <linux/notifier.h>
55#include <linux/cpu.h>
Arjan van de Ven0b950672006-01-11 13:16:10 +010056#include <linux/mutex.h>
Dan Williams2955b472012-07-09 19:33:25 -070057#include <linux/async.h>
Martin K. Petersen3c6bdae2012-09-18 12:19:30 -040058#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60#include <scsi/scsi.h>
61#include <scsi/scsi_cmnd.h>
62#include <scsi/scsi_dbg.h>
63#include <scsi/scsi_device.h>
Linus Torvalds7b3d9542008-01-06 10:17:12 -080064#include <scsi/scsi_driver.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#include <scsi/scsi_eh.h>
66#include <scsi/scsi_host.h>
67#include <scsi/scsi_tcq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69#include "scsi_priv.h"
70#include "scsi_logging.h"
71
Kei Tokunagabf816232010-04-01 20:41:40 +090072#define CREATE_TRACE_POINTS
73#include <trace/events/scsi.h>
74
Adrian Bunk52c1da32005-06-23 22:05:33 -070075static void scsi_done(struct scsi_cmnd *cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77/*
78 * Definitions and constants.
79 */
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 * Note - the initial logging level can be set here to log events at boot time.
83 * After the system is up, you may enable logging via the /proc interface.
84 */
85unsigned int scsi_logging_level;
86#if defined(CONFIG_SCSI_LOGGING)
87EXPORT_SYMBOL(scsi_logging_level);
88#endif
89
James Bottomleyea80dad2012-06-06 14:54:13 +090090/* sd, scsi core and power management need to coordinate flushing async actions */
Dan Williams2955b472012-07-09 19:33:25 -070091ASYNC_DOMAIN(scsi_sd_probe_domain);
Dan Williamsa7a20d12012-03-22 17:05:11 -070092EXPORT_SYMBOL(scsi_sd_probe_domain);
Dan Williamsa7a20d12012-03-22 17:05:11 -070093
Dan Williams3c31b522014-04-10 15:30:35 -070094/*
95 * Separate domain (from scsi_sd_probe_domain) to maximize the benefit of
96 * asynchronous system resume operations. It is marked 'exclusive' to avoid
97 * being included in the async_synchronize_full() that is invoked by
98 * dpm_resume()
99 */
100ASYNC_DOMAIN_EXCLUSIVE(scsi_sd_pm_domain);
101EXPORT_SYMBOL(scsi_sd_pm_domain);
102
Matthew Wilcox8a1cdc92006-09-24 20:22:52 -0600103/* NB: These are exposed through /proc/scsi/scsi and form part of the ABI.
104 * You may not alter any existing entry (although adding new ones is
105 * encouraged once assigned by ANSI/INCITS T10
106 */
Matthew Wilcox4ff36712006-07-04 12:15:20 -0600107static const char *const scsi_device_types[] = {
Matthew Wilcox8a1cdc92006-09-24 20:22:52 -0600108 "Direct-Access ",
109 "Sequential-Access",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 "Printer ",
111 "Processor ",
112 "WORM ",
Matthew Wilcox8a1cdc92006-09-24 20:22:52 -0600113 "CD-ROM ",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 "Scanner ",
Matthew Wilcox8a1cdc92006-09-24 20:22:52 -0600115 "Optical Device ",
116 "Medium Changer ",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 "Communications ",
Matthew Wilcox4ff36712006-07-04 12:15:20 -0600118 "ASC IT8 ",
119 "ASC IT8 ",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 "RAID ",
121 "Enclosure ",
Matthew Wilcox8a1cdc92006-09-24 20:22:52 -0600122 "Direct-Access-RBC",
Matthew Wilcox4ff36712006-07-04 12:15:20 -0600123 "Optical card ",
124 "Bridge controller",
125 "Object storage ",
126 "Automation/Drive ",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127};
Matthew Wilcox4ff36712006-07-04 12:15:20 -0600128
Rob Landleyeb448202007-11-03 13:30:39 -0500129/**
130 * scsi_device_type - Return 17 char string indicating device type.
131 * @type: type number to look up
132 */
133
Matthew Wilcox4ff36712006-07-04 12:15:20 -0600134const char * scsi_device_type(unsigned type)
135{
136 if (type == 0x1e)
137 return "Well-known LUN ";
138 if (type == 0x1f)
139 return "No Device ";
Eric Sesterhenn80c6e3c2006-09-26 13:22:13 +0200140 if (type >= ARRAY_SIZE(scsi_device_types))
Matthew Wilcox4ff36712006-07-04 12:15:20 -0600141 return "Unknown ";
142 return scsi_device_types[type];
143}
144
145EXPORT_SYMBOL(scsi_device_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147struct scsi_host_cmd_pool {
James Bottomley5b7f1682008-01-20 09:28:24 -0600148 struct kmem_cache *cmd_slab;
149 struct kmem_cache *sense_slab;
150 unsigned int users;
151 char *cmd_name;
152 char *sense_name;
153 unsigned int slab_flags;
154 gfp_t gfp_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155};
156
157static struct scsi_host_cmd_pool scsi_cmd_pool = {
James Bottomley5b7f1682008-01-20 09:28:24 -0600158 .cmd_name = "scsi_cmd_cache",
159 .sense_name = "scsi_sense_cache",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 .slab_flags = SLAB_HWCACHE_ALIGN,
161};
162
163static struct scsi_host_cmd_pool scsi_cmd_dma_pool = {
James Bottomley5b7f1682008-01-20 09:28:24 -0600164 .cmd_name = "scsi_cmd_cache(DMA)",
165 .sense_name = "scsi_sense_cache(DMA)",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 .slab_flags = SLAB_HWCACHE_ALIGN|SLAB_CACHE_DMA,
167 .gfp_mask = __GFP_DMA,
168};
169
Arjan van de Ven0b950672006-01-11 13:16:10 +0100170static DEFINE_MUTEX(host_cmd_pool_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Rob Landleyeb448202007-11-03 13:30:39 -0500172/**
James Bottomleye507e302008-03-13 11:16:33 -0500173 * scsi_pool_alloc_command - internal function to get a fully allocated command
174 * @pool: slab pool to allocate the command from
175 * @gfp_mask: mask for the allocation
176 *
177 * Returns a fully allocated command (with the allied sense buffer) or
178 * NULL on failure
179 */
180static struct scsi_cmnd *
181scsi_pool_alloc_command(struct scsi_host_cmd_pool *pool, gfp_t gfp_mask)
182{
183 struct scsi_cmnd *cmd;
184
Wei Yongjunebef2642009-03-04 12:06:13 -0800185 cmd = kmem_cache_zalloc(pool->cmd_slab, gfp_mask | pool->gfp_mask);
James Bottomleye507e302008-03-13 11:16:33 -0500186 if (!cmd)
187 return NULL;
188
James Bottomleye507e302008-03-13 11:16:33 -0500189 cmd->sense_buffer = kmem_cache_alloc(pool->sense_slab,
190 gfp_mask | pool->gfp_mask);
191 if (!cmd->sense_buffer) {
192 kmem_cache_free(pool->cmd_slab, cmd);
193 return NULL;
194 }
195
196 return cmd;
197}
198
199/**
200 * scsi_pool_free_command - internal function to release a command
201 * @pool: slab pool to allocate the command from
202 * @cmd: command to release
203 *
204 * the command must previously have been allocated by
205 * scsi_pool_alloc_command.
206 */
207static void
208scsi_pool_free_command(struct scsi_host_cmd_pool *pool,
209 struct scsi_cmnd *cmd)
210{
Martin K. Petersen7027ad72008-07-17 17:08:48 -0400211 if (cmd->prot_sdb)
212 kmem_cache_free(scsi_sdb_cache, cmd->prot_sdb);
213
James Bottomleye507e302008-03-13 11:16:33 -0500214 kmem_cache_free(pool->sense_slab, cmd->sense_buffer);
215 kmem_cache_free(pool->cmd_slab, cmd);
216}
217
218/**
Martin K. Petersen7027ad72008-07-17 17:08:48 -0400219 * scsi_host_alloc_command - internal function to allocate command
220 * @shost: SCSI host whose pool to allocate from
221 * @gfp_mask: mask for the allocation
222 *
223 * Returns a fully allocated command with sense buffer and protection
224 * data buffer (where applicable) or NULL on failure
225 */
226static struct scsi_cmnd *
227scsi_host_alloc_command(struct Scsi_Host *shost, gfp_t gfp_mask)
228{
229 struct scsi_cmnd *cmd;
230
231 cmd = scsi_pool_alloc_command(shost->cmd_pool, gfp_mask);
232 if (!cmd)
233 return NULL;
234
235 if (scsi_host_get_prot(shost) >= SHOST_DIX_TYPE0_PROTECTION) {
236 cmd->prot_sdb = kmem_cache_zalloc(scsi_sdb_cache, gfp_mask);
237
238 if (!cmd->prot_sdb) {
239 scsi_pool_free_command(shost->cmd_pool, cmd);
240 return NULL;
241 }
242 }
243
244 return cmd;
245}
246
247/**
Rob Landleyeb448202007-11-03 13:30:39 -0500248 * __scsi_get_command - Allocate a struct scsi_cmnd
249 * @shost: host to transmit command
250 * @gfp_mask: allocation mask
251 *
252 * Description: allocate a struct scsi_cmd from host's slab, recycling from the
253 * host's free_list if necessary.
254 */
FUJITA Tomonorib58d9152006-11-16 19:24:10 +0900255struct scsi_cmnd *__scsi_get_command(struct Scsi_Host *shost, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256{
Martin K. Petersenb4c25542009-09-18 17:33:01 -0400257 struct scsi_cmnd *cmd = scsi_host_alloc_command(shost, gfp_mask);
Hugh Dickins164fc5d2008-04-06 23:56:57 +0100258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 if (unlikely(!cmd)) {
260 unsigned long flags;
261
262 spin_lock_irqsave(&shost->free_list_lock, flags);
263 if (likely(!list_empty(&shost->free_list))) {
264 cmd = list_entry(shost->free_list.next,
265 struct scsi_cmnd, list);
266 list_del_init(&cmd->list);
267 }
268 spin_unlock_irqrestore(&shost->free_list_lock, flags);
FUJITA Tomonoride25deb2008-01-16 13:32:17 +0900269
270 if (cmd) {
Martin K. Petersenb4c25542009-09-18 17:33:01 -0400271 void *buf, *prot;
272
FUJITA Tomonoride25deb2008-01-16 13:32:17 +0900273 buf = cmd->sense_buffer;
Martin K. Petersenb4c25542009-09-18 17:33:01 -0400274 prot = cmd->prot_sdb;
275
FUJITA Tomonoride25deb2008-01-16 13:32:17 +0900276 memset(cmd, 0, sizeof(*cmd));
Martin K. Petersenb4c25542009-09-18 17:33:01 -0400277
FUJITA Tomonoride25deb2008-01-16 13:32:17 +0900278 cmd->sense_buffer = buf;
Martin K. Petersenb4c25542009-09-18 17:33:01 -0400279 cmd->prot_sdb = prot;
FUJITA Tomonoride25deb2008-01-16 13:32:17 +0900280 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 }
282
283 return cmd;
284}
FUJITA Tomonorib58d9152006-11-16 19:24:10 +0900285EXPORT_SYMBOL_GPL(__scsi_get_command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Rob Landleyeb448202007-11-03 13:30:39 -0500287/**
288 * scsi_get_command - Allocate and setup a scsi command block
289 * @dev: parent scsi device
290 * @gfp_mask: allocator flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 *
292 * Returns: The allocated scsi command structure.
293 */
Al Viroc53033f2005-10-21 03:22:08 -0400294struct scsi_cmnd *scsi_get_command(struct scsi_device *dev, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
296 struct scsi_cmnd *cmd;
297
298 /* Bail if we can't get a reference to the device */
299 if (!get_device(&dev->sdev_gendev))
300 return NULL;
301
302 cmd = __scsi_get_command(dev->host, gfp_mask);
303
304 if (likely(cmd != NULL)) {
305 unsigned long flags;
306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 cmd->device = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 INIT_LIST_HEAD(&cmd->list);
Hannes Reineckee494f6a2013-11-11 13:44:54 +0100309 INIT_DELAYED_WORK(&cmd->abort_work, scmd_eh_abort_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 spin_lock_irqsave(&dev->list_lock, flags);
311 list_add_tail(&cmd->list, &dev->cmd_list);
312 spin_unlock_irqrestore(&dev->list_lock, flags);
Matthew Dobson79e448b2005-11-21 21:32:29 -0800313 cmd->jiffies_at_alloc = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 } else
315 put_device(&dev->sdev_gendev);
316
317 return cmd;
FUJITA Tomonorib58d9152006-11-16 19:24:10 +0900318}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319EXPORT_SYMBOL(scsi_get_command);
320
Rob Landleyeb448202007-11-03 13:30:39 -0500321/**
322 * __scsi_put_command - Free a struct scsi_cmnd
323 * @shost: dev->host
324 * @cmd: Command to free
325 * @dev: parent scsi device
326 */
FUJITA Tomonorib58d9152006-11-16 19:24:10 +0900327void __scsi_put_command(struct Scsi_Host *shost, struct scsi_cmnd *cmd,
328 struct device *dev)
329{
330 unsigned long flags;
331
332 /* changing locks here, don't need to restore the irq state */
333 spin_lock_irqsave(&shost->free_list_lock, flags);
334 if (unlikely(list_empty(&shost->free_list))) {
335 list_add(&cmd->list, &shost->free_list);
336 cmd = NULL;
337 }
338 spin_unlock_irqrestore(&shost->free_list_lock, flags);
339
James Bottomleye507e302008-03-13 11:16:33 -0500340 if (likely(cmd != NULL))
341 scsi_pool_free_command(shost->cmd_pool, cmd);
FUJITA Tomonorib58d9152006-11-16 19:24:10 +0900342
343 put_device(dev);
344}
345EXPORT_SYMBOL(__scsi_put_command);
346
Rob Landleyeb448202007-11-03 13:30:39 -0500347/**
348 * scsi_put_command - Free a scsi command block
349 * @cmd: command block to free
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 *
351 * Returns: Nothing.
352 *
353 * Notes: The command must not belong to any lists.
354 */
355void scsi_put_command(struct scsi_cmnd *cmd)
356{
357 struct scsi_device *sdev = cmd->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 unsigned long flags;
FUJITA Tomonorib58d9152006-11-16 19:24:10 +0900359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 /* serious error if the command hasn't come from a device list */
361 spin_lock_irqsave(&cmd->device->list_lock, flags);
362 BUG_ON(list_empty(&cmd->list));
363 list_del_init(&cmd->list);
FUJITA Tomonorib58d9152006-11-16 19:24:10 +0900364 spin_unlock_irqrestore(&cmd->device->list_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Hannes Reineckee494f6a2013-11-11 13:44:54 +0100366 cancel_delayed_work(&cmd->abort_work);
367
FUJITA Tomonorib58d9152006-11-16 19:24:10 +0900368 __scsi_put_command(cmd->device->host, cmd, &sdev->sdev_gendev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369}
370EXPORT_SYMBOL(scsi_put_command);
371
James Bottomley1c353f72008-03-13 11:19:36 -0500372static struct scsi_host_cmd_pool *scsi_get_host_cmd_pool(gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
James Bottomley1c353f72008-03-13 11:19:36 -0500374 struct scsi_host_cmd_pool *retval = NULL, *pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 /*
376 * Select a command slab for this host and create it if not
Rob Landleyeb448202007-11-03 13:30:39 -0500377 * yet existent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 */
Arjan van de Ven0b950672006-01-11 13:16:10 +0100379 mutex_lock(&host_cmd_pool_mutex);
James Bottomley1c353f72008-03-13 11:19:36 -0500380 pool = (gfp_mask & __GFP_DMA) ? &scsi_cmd_dma_pool :
381 &scsi_cmd_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 if (!pool->users) {
James Bottomley5b7f1682008-01-20 09:28:24 -0600383 pool->cmd_slab = kmem_cache_create(pool->cmd_name,
384 sizeof(struct scsi_cmnd), 0,
385 pool->slab_flags, NULL);
386 if (!pool->cmd_slab)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 goto fail;
James Bottomley5b7f1682008-01-20 09:28:24 -0600388
389 pool->sense_slab = kmem_cache_create(pool->sense_name,
390 SCSI_SENSE_BUFFERSIZE, 0,
391 pool->slab_flags, NULL);
392 if (!pool->sense_slab) {
393 kmem_cache_destroy(pool->cmd_slab);
394 goto fail;
395 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 }
397
398 pool->users++;
James Bottomley1c353f72008-03-13 11:19:36 -0500399 retval = pool;
400 fail:
Arjan van de Ven0b950672006-01-11 13:16:10 +0100401 mutex_unlock(&host_cmd_pool_mutex);
James Bottomley1c353f72008-03-13 11:19:36 -0500402 return retval;
403}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
James Bottomley1c353f72008-03-13 11:19:36 -0500405static void scsi_put_host_cmd_pool(gfp_t gfp_mask)
406{
407 struct scsi_host_cmd_pool *pool;
FUJITA Tomonoride25deb2008-01-16 13:32:17 +0900408
FUJITA Tomonori166a7282008-01-08 07:59:05 +0900409 mutex_lock(&host_cmd_pool_mutex);
James Bottomley1c353f72008-03-13 11:19:36 -0500410 pool = (gfp_mask & __GFP_DMA) ? &scsi_cmd_dma_pool :
411 &scsi_cmd_pool;
412 /*
413 * This may happen if a driver has a mismatched get and put
414 * of the command pool; the driver should be implicated in
415 * the stack trace
416 */
417 BUG_ON(pool->users == 0);
418
James Bottomley5b7f1682008-01-20 09:28:24 -0600419 if (!--pool->users) {
420 kmem_cache_destroy(pool->cmd_slab);
421 kmem_cache_destroy(pool->sense_slab);
422 }
Arjan van de Ven0b950672006-01-11 13:16:10 +0100423 mutex_unlock(&host_cmd_pool_mutex);
James Bottomley1c353f72008-03-13 11:19:36 -0500424}
425
426/**
427 * scsi_allocate_command - get a fully allocated SCSI command
428 * @gfp_mask: allocation mask
429 *
430 * This function is for use outside of the normal host based pools.
431 * It allocates the relevant command and takes an additional reference
432 * on the pool it used. This function *must* be paired with
433 * scsi_free_command which also has the identical mask, otherwise the
434 * free pool counts will eventually go wrong and you'll trigger a bug.
435 *
436 * This function should *only* be used by drivers that need a static
437 * command allocation at start of day for internal functions.
438 */
439struct scsi_cmnd *scsi_allocate_command(gfp_t gfp_mask)
440{
441 struct scsi_host_cmd_pool *pool = scsi_get_host_cmd_pool(gfp_mask);
442
443 if (!pool)
444 return NULL;
445
446 return scsi_pool_alloc_command(pool, gfp_mask);
447}
448EXPORT_SYMBOL(scsi_allocate_command);
449
450/**
451 * scsi_free_command - free a command allocated by scsi_allocate_command
452 * @gfp_mask: mask used in the original allocation
453 * @cmd: command to free
454 *
455 * Note: using the original allocation mask is vital because that's
456 * what determines which command pool we use to free the command. Any
457 * mismatch will cause the system to BUG eventually.
458 */
459void scsi_free_command(gfp_t gfp_mask, struct scsi_cmnd *cmd)
460{
461 struct scsi_host_cmd_pool *pool = scsi_get_host_cmd_pool(gfp_mask);
462
463 /*
464 * this could trigger if the mask to scsi_allocate_command
465 * doesn't match this mask. Otherwise we're guaranteed that this
466 * succeeds because scsi_allocate_command must have taken a reference
467 * on the pool
468 */
469 BUG_ON(!pool);
470
471 scsi_pool_free_command(pool, cmd);
472 /*
473 * scsi_put_host_cmd_pool is called twice; once to release the
474 * reference we took above, and once to release the reference
475 * originally taken by scsi_allocate_command
476 */
477 scsi_put_host_cmd_pool(gfp_mask);
478 scsi_put_host_cmd_pool(gfp_mask);
479}
480EXPORT_SYMBOL(scsi_free_command);
481
482/**
483 * scsi_setup_command_freelist - Setup the command freelist for a scsi host.
484 * @shost: host to allocate the freelist for.
485 *
486 * Description: The command freelist protects against system-wide out of memory
487 * deadlock by preallocating one SCSI command structure for each host, so the
488 * system can always write to a swap file on a device associated with that host.
489 *
490 * Returns: Nothing.
491 */
492int scsi_setup_command_freelist(struct Scsi_Host *shost)
493{
494 struct scsi_cmnd *cmd;
495 const gfp_t gfp_mask = shost->unchecked_isa_dma ? GFP_DMA : GFP_KERNEL;
496
497 spin_lock_init(&shost->free_list_lock);
498 INIT_LIST_HEAD(&shost->free_list);
499
500 shost->cmd_pool = scsi_get_host_cmd_pool(gfp_mask);
501
502 if (!shost->cmd_pool)
503 return -ENOMEM;
504
505 /*
506 * Get one backup command for this host.
507 */
Martin K. Petersen7027ad72008-07-17 17:08:48 -0400508 cmd = scsi_host_alloc_command(shost, gfp_mask);
James Bottomley1c353f72008-03-13 11:19:36 -0500509 if (!cmd) {
510 scsi_put_host_cmd_pool(gfp_mask);
Alan D. Brunelle61d74162008-04-29 16:12:51 -0400511 shost->cmd_pool = NULL;
James Bottomley1c353f72008-03-13 11:19:36 -0500512 return -ENOMEM;
513 }
514 list_add(&cmd->list, &shost->free_list);
515 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516}
517
Rob Landleyeb448202007-11-03 13:30:39 -0500518/**
519 * scsi_destroy_command_freelist - Release the command freelist for a scsi host.
520 * @shost: host whose freelist is going to be destroyed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 */
522void scsi_destroy_command_freelist(struct Scsi_Host *shost)
523{
Alan D. Brunelle61d74162008-04-29 16:12:51 -0400524 /*
525 * If cmd_pool is NULL the free list was not initialized, so
526 * do not attempt to release resources.
527 */
528 if (!shost->cmd_pool)
529 return;
530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 while (!list_empty(&shost->free_list)) {
532 struct scsi_cmnd *cmd;
533
534 cmd = list_entry(shost->free_list.next, struct scsi_cmnd, list);
535 list_del_init(&cmd->list);
James Bottomleye507e302008-03-13 11:16:33 -0500536 scsi_pool_free_command(shost->cmd_pool, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 }
James Bottomley1c353f72008-03-13 11:19:36 -0500538 shost->cmd_pool = NULL;
539 scsi_put_host_cmd_pool(shost->unchecked_isa_dma ? GFP_DMA : GFP_KERNEL);
FUJITA Tomonoride25deb2008-01-16 13:32:17 +0900540}
541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542#ifdef CONFIG_SCSI_LOGGING
543void scsi_log_send(struct scsi_cmnd *cmd)
544{
545 unsigned int level;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
547 /*
548 * If ML QUEUE log level is greater than or equal to:
549 *
550 * 1: nothing (match completion)
551 *
552 * 2: log opcode + command of all commands
553 *
554 * 3: same as 2 plus dump cmd address
555 *
556 * 4: same as 3 plus dump extra junk
557 */
558 if (unlikely(scsi_logging_level)) {
559 level = SCSI_LOG_LEVEL(SCSI_LOG_MLQUEUE_SHIFT,
560 SCSI_LOG_MLQUEUE_BITS);
561 if (level > 1) {
Martin K. Petersena4d04a42007-02-27 22:40:27 -0500562 scmd_printk(KERN_INFO, cmd, "Send: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 if (level > 2)
564 printk("0x%p ", cmd);
Martin K. Petersena4d04a42007-02-27 22:40:27 -0500565 printk("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 scsi_print_command(cmd);
567 if (level > 3) {
568 printk(KERN_INFO "buffer = 0x%p, bufflen = %d,"
Linus Torvalds7b3d9542008-01-06 10:17:12 -0800569 " queuecommand 0x%p\n",
Boaz Harrosha73e45b2007-07-04 21:26:01 +0300570 scsi_sglist(cmd), scsi_bufflen(cmd),
Martin K. Petersena4d04a42007-02-27 22:40:27 -0500571 cmd->device->host->hostt->queuecommand);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
573 }
574 }
575 }
576}
577
578void scsi_log_completion(struct scsi_cmnd *cmd, int disposition)
579{
580 unsigned int level;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
582 /*
583 * If ML COMPLETE log level is greater than or equal to:
584 *
585 * 1: log disposition, result, opcode + command, and conditionally
586 * sense data for failures or non SUCCESS dispositions.
587 *
588 * 2: same as 1 but for all command completions.
589 *
590 * 3: same as 2 plus dump cmd address
591 *
592 * 4: same as 3 plus dump extra junk
593 */
594 if (unlikely(scsi_logging_level)) {
595 level = SCSI_LOG_LEVEL(SCSI_LOG_MLCOMPLETE_SHIFT,
596 SCSI_LOG_MLCOMPLETE_BITS);
597 if (((level > 0) && (cmd->result || disposition != SUCCESS)) ||
598 (level > 1)) {
Martin K. Petersena4d04a42007-02-27 22:40:27 -0500599 scmd_printk(KERN_INFO, cmd, "Done: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 if (level > 2)
601 printk("0x%p ", cmd);
602 /*
603 * Dump truncated values, so we usually fit within
604 * 80 chars.
605 */
606 switch (disposition) {
607 case SUCCESS:
Martin K. Petersena4d04a42007-02-27 22:40:27 -0500608 printk("SUCCESS\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 break;
610 case NEEDS_RETRY:
Martin K. Petersena4d04a42007-02-27 22:40:27 -0500611 printk("RETRY\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 break;
613 case ADD_TO_MLQUEUE:
Martin K. Petersena4d04a42007-02-27 22:40:27 -0500614 printk("MLQUEUE\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 break;
616 case FAILED:
Martin K. Petersena4d04a42007-02-27 22:40:27 -0500617 printk("FAILED\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 break;
619 case TIMEOUT_ERROR:
620 /*
621 * If called via scsi_times_out.
622 */
Martin K. Petersena4d04a42007-02-27 22:40:27 -0500623 printk("TIMEOUT\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 break;
625 default:
Martin K. Petersena4d04a42007-02-27 22:40:27 -0500626 printk("UNKNOWN\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 }
Martin K. Petersena4d04a42007-02-27 22:40:27 -0500628 scsi_print_result(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 scsi_print_command(cmd);
Martin K. Petersena4d04a42007-02-27 22:40:27 -0500630 if (status_byte(cmd->result) & CHECK_CONDITION)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 scsi_print_sense("", cmd);
Martin K. Petersena4d04a42007-02-27 22:40:27 -0500632 if (level > 3)
633 scmd_printk(KERN_INFO, cmd,
634 "scsi host busy %d failed %d\n",
635 cmd->device->host->host_busy,
636 cmd->device->host->host_failed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 }
638 }
639}
640#endif
641
Rob Landleyeb448202007-11-03 13:30:39 -0500642/**
643 * scsi_cmd_get_serial - Assign a serial number to a command
644 * @host: the scsi host
645 * @cmd: command to assign serial number to
646 *
647 * Description: a serial number identifies a request for error recovery
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 * and debugging purposes. Protected by the Host_Lock of host.
649 */
Jeff Garzikf2812332010-11-16 02:10:29 -0500650void scsi_cmd_get_serial(struct Scsi_Host *host, struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651{
652 cmd->serial_number = host->cmd_serial_number++;
653 if (cmd->serial_number == 0)
654 cmd->serial_number = host->cmd_serial_number++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655}
Jeff Garzikf2812332010-11-16 02:10:29 -0500656EXPORT_SYMBOL(scsi_cmd_get_serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Rob Landleyeb448202007-11-03 13:30:39 -0500658/**
659 * scsi_dispatch_command - Dispatch a command to the low-level driver.
660 * @cmd: command block we are dispatching.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 *
Rob Landleyeb448202007-11-03 13:30:39 -0500662 * Return: nonzero return request was rejected and device's queue needs to be
663 * plugged.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 */
665int scsi_dispatch_cmd(struct scsi_cmnd *cmd)
666{
667 struct Scsi_Host *host = cmd->device->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 int rtn = 0;
669
Jens Axboe242f9dc2008-09-14 05:55:09 -0700670 atomic_inc(&cmd->device->iorequest_cnt);
671
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 /* check if the device is still usable */
673 if (unlikely(cmd->device->sdev_state == SDEV_DEL)) {
674 /* in SDEV_DEL we error all commands. DID_NO_CONNECT
675 * returns an immediate error upwards, and signals
676 * that the device is no longer present */
677 cmd->result = DID_NO_CONNECT << 16;
Jens Axboe242f9dc2008-09-14 05:55:09 -0700678 scsi_done(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 /* return 0 (because the command has been processed) */
680 goto out;
681 }
682
James Bottomley0f1d87a2008-08-22 16:43:59 -0500683 /* Check to see if the scsi lld made this device blocked. */
684 if (unlikely(scsi_device_blocked(cmd->device))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 /*
James Bottomley0f1d87a2008-08-22 16:43:59 -0500686 * in blocked state, the command is just put back on
687 * the device queue. The suspend state has already
688 * blocked the queue so future requests should not
689 * occur until the device transitions out of the
690 * suspend state.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 */
Jens Axboe242f9dc2008-09-14 05:55:09 -0700692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 scsi_queue_insert(cmd, SCSI_MLQUEUE_DEVICE_BUSY);
694
695 SCSI_LOG_MLQUEUE(3, printk("queuecommand : device blocked \n"));
696
697 /*
698 * NOTE: rtn is still zero here because we don't need the
699 * queue to be plugged on return (it's already stopped)
700 */
701 goto out;
702 }
703
704 /*
705 * If SCSI-2 or lower, store the LUN value in cmnd.
706 */
James Bottomley4d7db042006-03-31 20:07:45 -0600707 if (cmd->device->scsi_level <= SCSI_2 &&
708 cmd->device->scsi_level != SCSI_UNKNOWN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 cmd->cmnd[1] = (cmd->cmnd[1] & 0x1f) |
710 (cmd->device->lun << 5 & 0xe0);
711 }
712
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 scsi_log_send(cmd);
714
715 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 * Before we queue this command, check if the command
717 * length exceeds what the host adapter can handle.
718 */
Boaz Harroshdb4742d2008-04-30 11:27:26 +0300719 if (cmd->cmd_len > cmd->device->host->max_cmd_len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 SCSI_LOG_MLQUEUE(3,
Boaz Harroshdb4742d2008-04-30 11:27:26 +0300721 printk("queuecommand : command too long. "
722 "cdb_size=%d host->max_cmd_len=%d\n",
723 cmd->cmd_len, cmd->device->host->max_cmd_len));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 cmd->result = (DID_ABORT << 16);
725
726 scsi_done(cmd);
727 goto out;
728 }
729
Mike Andersond2c9d9e2005-06-16 11:13:42 -0700730 if (unlikely(host->shost_state == SHOST_DEL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 cmd->result = (DID_NO_CONNECT << 16);
732 scsi_done(cmd);
733 } else {
Kei Tokunagabf816232010-04-01 20:41:40 +0900734 trace_scsi_dispatch_cmd_start(cmd);
Jeff Garzikf2812332010-11-16 02:10:29 -0500735 cmd->scsi_done = scsi_done;
736 rtn = host->hostt->queuecommand(host, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 }
Jeff Garzikf2812332010-11-16 02:10:29 -0500738
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 if (rtn) {
Kei Tokunagabf816232010-04-01 20:41:40 +0900740 trace_scsi_dispatch_cmd_error(cmd, rtn);
Mike Christief0c0a372008-08-17 15:24:38 -0500741 if (rtn != SCSI_MLQUEUE_DEVICE_BUSY &&
742 rtn != SCSI_MLQUEUE_TARGET_BUSY)
743 rtn = SCSI_MLQUEUE_HOST_BUSY;
744
745 scsi_queue_insert(cmd, rtn);
746
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 SCSI_LOG_MLQUEUE(3,
748 printk("queuecommand : request rejected\n"));
749 }
750
751 out:
752 SCSI_LOG_MLQUEUE(3, printk("leaving scsi_dispatch_cmnd()\n"));
753 return rtn;
754}
755
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756/**
Hannes Reinecke6ad55502013-11-11 13:44:57 +0100757 * scsi_done - Invoke completion on finished SCSI command.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 * @cmd: The SCSI Command for which a low-level device driver (LLDD) gives
759 * ownership back to SCSI Core -- i.e. the LLDD has finished with it.
760 *
Rob Landleyeb448202007-11-03 13:30:39 -0500761 * Description: This function is the mid-level's (SCSI Core) interrupt routine,
762 * which regains ownership of the SCSI command (de facto) from a LLDD, and
Hannes Reinecke6ad55502013-11-11 13:44:57 +0100763 * calls blk_complete_request() for further processing.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 *
765 * This function is interrupt context safe.
766 */
Adrian Bunk52c1da32005-06-23 22:05:33 -0700767static void scsi_done(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768{
Kei Tokunagabf816232010-04-01 20:41:40 +0900769 trace_scsi_dispatch_cmd_done(cmd);
Jens Axboe242f9dc2008-09-14 05:55:09 -0700770 blk_complete_request(cmd->request);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771}
772
Rob Landleyeb448202007-11-03 13:30:39 -0500773/**
774 * scsi_finish_command - cleanup and pass command back to upper layer
775 * @cmd: the command
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 *
Rob Landleyeb448202007-11-03 13:30:39 -0500777 * Description: Pass command off to upper layer for finishing of I/O
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 * request, waking processes that are waiting on results,
779 * etc.
780 */
781void scsi_finish_command(struct scsi_cmnd *cmd)
782{
783 struct scsi_device *sdev = cmd->device;
Mike Christief0c0a372008-08-17 15:24:38 -0500784 struct scsi_target *starget = scsi_target(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 struct Scsi_Host *shost = sdev->host;
Linus Torvalds7b3d9542008-01-06 10:17:12 -0800786 struct scsi_driver *drv;
787 unsigned int good_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
789 scsi_device_unbusy(sdev);
790
791 /*
792 * Clear the flags which say that the device/host is no longer
793 * capable of accepting new commands. These are set in scsi_queue.c
794 * for both the queue full condition on a device, and for a
795 * host full condition on the host.
796 *
797 * XXX(hch): What about locking?
798 */
799 shost->host_blocked = 0;
Mike Christief0c0a372008-08-17 15:24:38 -0500800 starget->target_blocked = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 sdev->device_blocked = 0;
802
803 /*
804 * If we have valid sense information, then some kind of recovery
805 * must have taken place. Make a note of this.
806 */
807 if (SCSI_SENSE_VALID(cmd))
808 cmd->result |= (DRIVER_SENSE << 24);
809
Jeff Garzik3bf743e2005-10-24 18:04:06 -0400810 SCSI_LOG_MLCOMPLETE(4, sdev_printk(KERN_INFO, sdev,
811 "Notifying upper driver of completion "
812 "(result %x)\n", cmd->result));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
FUJITA Tomonorif18573a2008-04-11 12:56:52 +0200814 good_bytes = scsi_bufflen(cmd);
Linus Torvalds7b3d9542008-01-06 10:17:12 -0800815 if (cmd->request->cmd_type != REQ_TYPE_BLOCK_PC) {
James Bottomley427e59f2008-03-08 18:24:17 -0600816 int old_good_bytes = good_bytes;
Linus Torvalds7b3d9542008-01-06 10:17:12 -0800817 drv = scsi_cmd_to_driver(cmd);
818 if (drv->done)
819 good_bytes = drv->done(cmd);
James Bottomley427e59f2008-03-08 18:24:17 -0600820 /*
821 * USB may not give sense identifying bad sector and
822 * simply return a residue instead, so subtract off the
823 * residue if drv->done() error processing indicates no
824 * change to the completion length.
825 */
826 if (good_bytes == old_good_bytes)
827 good_bytes -= scsi_get_resid(cmd);
Linus Torvalds7b3d9542008-01-06 10:17:12 -0800828 }
829 scsi_io_completion(cmd, good_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830}
831EXPORT_SYMBOL(scsi_finish_command);
832
Rob Landleyeb448202007-11-03 13:30:39 -0500833/**
834 * scsi_adjust_queue_depth - Let low level drivers change a device's queue depth
835 * @sdev: SCSI Device in question
836 * @tagged: Do we use tagged queueing (non-0) or do we treat
837 * this device as an untagged device (0)
838 * @tags: Number of tags allowed if tagged queueing enabled,
839 * or number of commands the low level driver can
840 * queue up in non-tagged mode (as per cmd_per_lun).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 *
842 * Returns: Nothing
843 *
844 * Lock Status: None held on entry
845 *
846 * Notes: Low level drivers may call this at any time and we will do
847 * the right thing depending on whether or not the device is
848 * currently active and whether or not it even has the
849 * command blocks built yet.
850 */
851void scsi_adjust_queue_depth(struct scsi_device *sdev, int tagged, int tags)
852{
853 unsigned long flags;
854
855 /*
856 * refuse to set tagged depth to an unworkable size
857 */
858 if (tags <= 0)
859 return;
860
861 spin_lock_irqsave(sdev->request_queue->queue_lock, flags);
862
Mike Christie885ace92008-07-11 19:50:32 -0500863 /*
864 * Check to see if the queue is managed by the block layer.
865 * If it is, and we fail to adjust the depth, exit.
866 *
867 * Do not resize the tag map if it is a host wide share bqt,
868 * because the size should be the hosts's can_queue. If there
869 * is more IO than the LLD's can_queue (so there are not enuogh
870 * tags) request_fn's host queue ready check will handle it.
871 */
872 if (!sdev->host->bqt) {
873 if (blk_queue_tagged(sdev->request_queue) &&
874 blk_queue_resize_tags(sdev->request_queue, tags) != 0)
875 goto out;
876 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
878 sdev->queue_depth = tags;
879 switch (tagged) {
880 case MSG_ORDERED_TAG:
881 sdev->ordered_tags = 1;
882 sdev->simple_tags = 1;
883 break;
884 case MSG_SIMPLE_TAG:
885 sdev->ordered_tags = 0;
886 sdev->simple_tags = 1;
887 break;
888 default:
James Bottomley9ccfc752005-10-02 11:45:08 -0500889 sdev_printk(KERN_WARNING, sdev,
890 "scsi_adjust_queue_depth, bad queue type, "
891 "disabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 case 0:
893 sdev->ordered_tags = sdev->simple_tags = 0;
894 sdev->queue_depth = tags;
895 break;
896 }
897 out:
898 spin_unlock_irqrestore(sdev->request_queue->queue_lock, flags);
899}
900EXPORT_SYMBOL(scsi_adjust_queue_depth);
901
Rob Landleyeb448202007-11-03 13:30:39 -0500902/**
903 * scsi_track_queue_full - track QUEUE_FULL events to adjust queue depth
904 * @sdev: SCSI Device in question
905 * @depth: Current number of outstanding SCSI commands on this device,
906 * not counting the one returned as QUEUE_FULL.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 *
Rob Landleyeb448202007-11-03 13:30:39 -0500908 * Description: This function will track successive QUEUE_FULL events on a
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 * specific SCSI device to determine if and when there is a
910 * need to adjust the queue depth on the device.
911 *
Rob Landleyeb448202007-11-03 13:30:39 -0500912 * Returns: 0 - No change needed, >0 - Adjust queue depth to this new depth,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 * -1 - Drop back to untagged operation using host->cmd_per_lun
914 * as the untagged command depth
915 *
916 * Lock Status: None held on entry
917 *
918 * Notes: Low level drivers may call this at any time and we will do
919 * "The Right Thing." We are interrupt context safe.
920 */
921int scsi_track_queue_full(struct scsi_device *sdev, int depth)
922{
Vasu Dev4a840672009-10-22 15:46:33 -0700923
924 /*
925 * Don't let QUEUE_FULLs on the same
926 * jiffies count, they could all be from
927 * same event.
928 */
929 if ((jiffies >> 4) == (sdev->last_queue_full_time >> 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 return 0;
931
Vasu Dev4a840672009-10-22 15:46:33 -0700932 sdev->last_queue_full_time = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 if (sdev->last_queue_full_depth != depth) {
934 sdev->last_queue_full_count = 1;
935 sdev->last_queue_full_depth = depth;
936 } else {
937 sdev->last_queue_full_count++;
938 }
939
940 if (sdev->last_queue_full_count <= 10)
941 return 0;
942 if (sdev->last_queue_full_depth < 8) {
943 /* Drop back to untagged */
944 scsi_adjust_queue_depth(sdev, 0, sdev->host->cmd_per_lun);
945 return -1;
946 }
947
948 if (sdev->ordered_tags)
949 scsi_adjust_queue_depth(sdev, MSG_ORDERED_TAG, depth);
950 else
951 scsi_adjust_queue_depth(sdev, MSG_SIMPLE_TAG, depth);
952 return depth;
953}
954EXPORT_SYMBOL(scsi_track_queue_full);
955
956/**
Matthew Wilcox881a2562008-12-31 13:12:46 -0500957 * scsi_vpd_inquiry - Request a device provide us with a VPD page
958 * @sdev: The device to ask
959 * @buffer: Where to put the result
960 * @page: Which Vital Product Data to return
961 * @len: The length of the buffer
962 *
963 * This is an internal helper function. You probably want to use
964 * scsi_get_vpd_page instead.
965 *
966 * Returns 0 on success or a negative error number.
967 */
968static int scsi_vpd_inquiry(struct scsi_device *sdev, unsigned char *buffer,
969 u8 page, unsigned len)
970{
971 int result;
972 unsigned char cmd[16];
973
974 cmd[0] = INQUIRY;
975 cmd[1] = 1; /* EVPD */
976 cmd[2] = page;
977 cmd[3] = len >> 8;
978 cmd[4] = len & 0xff;
979 cmd[5] = 0; /* Control byte */
980
981 /*
982 * I'm not convinced we need to try quite this hard to get VPD, but
983 * all the existing users tried this hard.
984 */
985 result = scsi_execute_req(sdev, cmd, DMA_FROM_DEVICE, buffer,
James Bottomley95a36392009-08-11 10:59:09 -0500986 len, NULL, 30 * HZ, 3, NULL);
Matthew Wilcox881a2562008-12-31 13:12:46 -0500987 if (result)
988 return result;
989
990 /* Sanity check that we got the page back that we asked for */
991 if (buffer[1] != page)
992 return -EIO;
993
994 return 0;
995}
996
997/**
998 * scsi_get_vpd_page - Get Vital Product Data from a SCSI device
999 * @sdev: The device to ask
1000 * @page: Which Vital Product Data to return
Randy Dunlap786f8ba2010-02-28 17:32:45 -08001001 * @buf: where to store the VPD
1002 * @buf_len: number of bytes in the VPD buffer area
Matthew Wilcox881a2562008-12-31 13:12:46 -05001003 *
1004 * SCSI devices may optionally supply Vital Product Data. Each 'page'
1005 * of VPD is defined in the appropriate SCSI document (eg SPC, SBC).
1006 * If the device supports this VPD page, this routine returns a pointer
1007 * to a buffer containing the data from that page. The caller is
1008 * responsible for calling kfree() on this pointer when it is no longer
1009 * needed. If we cannot retrieve the VPD page this routine returns %NULL.
1010 */
James Bottomleye3deec02009-11-03 12:33:07 -06001011int scsi_get_vpd_page(struct scsi_device *sdev, u8 page, unsigned char *buf,
1012 int buf_len)
Matthew Wilcox881a2562008-12-31 13:12:46 -05001013{
1014 int i, result;
Matthew Wilcox881a2562008-12-31 13:12:46 -05001015
Martin K. Petersen75625232013-07-30 22:58:34 -04001016 if (sdev->skip_vpd_pages)
1017 goto fail;
1018
Matthew Wilcox881a2562008-12-31 13:12:46 -05001019 /* Ask for all the pages supported by this device */
James Bottomleye3deec02009-11-03 12:33:07 -06001020 result = scsi_vpd_inquiry(sdev, buf, 0, buf_len);
Matthew Wilcox881a2562008-12-31 13:12:46 -05001021 if (result)
1022 goto fail;
1023
1024 /* If the user actually wanted this page, we can skip the rest */
1025 if (page == 0)
Martin K. Petersen16d3ea22010-09-10 01:20:27 -04001026 return 0;
Matthew Wilcox881a2562008-12-31 13:12:46 -05001027
James Bottomleye3deec02009-11-03 12:33:07 -06001028 for (i = 0; i < min((int)buf[3], buf_len - 4); i++)
Matthew Wilcox881a2562008-12-31 13:12:46 -05001029 if (buf[i + 4] == page)
1030 goto found;
James Bottomleye3deec02009-11-03 12:33:07 -06001031
Martin K. Petersen16d3ea22010-09-10 01:20:27 -04001032 if (i < buf[3] && i >= buf_len - 4)
James Bottomleye3deec02009-11-03 12:33:07 -06001033 /* ran off the end of the buffer, give us benefit of doubt */
1034 goto found;
Matthew Wilcox881a2562008-12-31 13:12:46 -05001035 /* The device claims it doesn't support the requested page */
1036 goto fail;
1037
1038 found:
James Bottomleye3deec02009-11-03 12:33:07 -06001039 result = scsi_vpd_inquiry(sdev, buf, page, buf_len);
Matthew Wilcox881a2562008-12-31 13:12:46 -05001040 if (result)
1041 goto fail;
1042
James Bottomleye3deec02009-11-03 12:33:07 -06001043 return 0;
Matthew Wilcox881a2562008-12-31 13:12:46 -05001044
1045 fail:
James Bottomleye3deec02009-11-03 12:33:07 -06001046 return -EINVAL;
Matthew Wilcox881a2562008-12-31 13:12:46 -05001047}
1048EXPORT_SYMBOL_GPL(scsi_get_vpd_page);
1049
1050/**
Martin K. Petersen3c6bdae2012-09-18 12:19:30 -04001051 * scsi_report_opcode - Find out if a given command opcode is supported
1052 * @sdev: scsi device to query
1053 * @buffer: scratch buffer (must be at least 20 bytes long)
1054 * @len: length of buffer
1055 * @opcode: opcode for command to look up
1056 *
1057 * Uses the REPORT SUPPORTED OPERATION CODES to look up the given
Martin K. Petersen66c28f92013-06-06 22:15:55 -04001058 * opcode. Returns -EINVAL if RSOC fails, 0 if the command opcode is
1059 * unsupported and 1 if the device claims to support the command.
Martin K. Petersen3c6bdae2012-09-18 12:19:30 -04001060 */
1061int scsi_report_opcode(struct scsi_device *sdev, unsigned char *buffer,
1062 unsigned int len, unsigned char opcode)
1063{
1064 unsigned char cmd[16];
1065 struct scsi_sense_hdr sshdr;
1066 int result;
1067
1068 if (sdev->no_report_opcodes || sdev->scsi_level < SCSI_SPC_3)
Martin K. Petersen66c28f92013-06-06 22:15:55 -04001069 return -EINVAL;
Martin K. Petersen3c6bdae2012-09-18 12:19:30 -04001070
1071 memset(cmd, 0, 16);
1072 cmd[0] = MAINTENANCE_IN;
1073 cmd[1] = MI_REPORT_SUPPORTED_OPERATION_CODES;
1074 cmd[2] = 1; /* One command format */
1075 cmd[3] = opcode;
1076 put_unaligned_be32(len, &cmd[6]);
1077 memset(buffer, 0, len);
1078
1079 result = scsi_execute_req(sdev, cmd, DMA_FROM_DEVICE, buffer, len,
1080 &sshdr, 30 * HZ, 3, NULL);
1081
1082 if (result && scsi_sense_valid(&sshdr) &&
1083 sshdr.sense_key == ILLEGAL_REQUEST &&
1084 (sshdr.asc == 0x20 || sshdr.asc == 0x24) && sshdr.ascq == 0x00)
Martin K. Petersen66c28f92013-06-06 22:15:55 -04001085 return -EINVAL;
Martin K. Petersen3c6bdae2012-09-18 12:19:30 -04001086
1087 if ((buffer[1] & 3) == 3) /* Command supported */
1088 return 1;
1089
1090 return 0;
1091}
1092EXPORT_SYMBOL(scsi_report_opcode);
1093
1094/**
Rob Landleyeb448202007-11-03 13:30:39 -05001095 * scsi_device_get - get an additional reference to a scsi_device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 * @sdev: device to get a reference to
1097 *
Rob Landleyeb448202007-11-03 13:30:39 -05001098 * Description: Gets a reference to the scsi_device and increments the use count
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 * of the underlying LLDD module. You must hold host_lock of the
1100 * parent Scsi_Host or already have a reference when calling this.
1101 */
1102int scsi_device_get(struct scsi_device *sdev)
1103{
James Bottomley85b6c722006-08-31 18:15:22 -04001104 if (sdev->sdev_state == SDEV_DEL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 return -ENXIO;
1106 if (!get_device(&sdev->sdev_gendev))
1107 return -ENXIO;
James Bottomley85b6c722006-08-31 18:15:22 -04001108 /* We can fail this if we're doing SCSI operations
1109 * from module exit (like cache flush) */
1110 try_module_get(sdev->host->hostt->module);
1111
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 return 0;
1113}
1114EXPORT_SYMBOL(scsi_device_get);
1115
1116/**
1117 * scsi_device_put - release a reference to a scsi_device
1118 * @sdev: device to release a reference on.
1119 *
Rob Landleyeb448202007-11-03 13:30:39 -05001120 * Description: Release a reference to the scsi_device and decrements the use
1121 * count of the underlying LLDD module. The device is freed once the last
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 * user vanishes.
1123 */
1124void scsi_device_put(struct scsi_device *sdev)
1125{
Ingo Molnar504fb372006-11-09 10:09:35 +01001126#ifdef CONFIG_MODULE_UNLOAD
James Bottomleyf479ab82006-09-06 09:00:29 -05001127 struct module *module = sdev->host->hostt->module;
1128
James Bottomley85b6c722006-08-31 18:15:22 -04001129 /* The module refcount will be zero if scsi_device_get()
1130 * was called from a module removal routine */
James Bottomleyf479ab82006-09-06 09:00:29 -05001131 if (module && module_refcount(module) != 0)
1132 module_put(module);
Daniel Walkera506b442006-09-09 09:31:03 -07001133#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 put_device(&sdev->sdev_gendev);
1135}
1136EXPORT_SYMBOL(scsi_device_put);
1137
Rob Landleyeb448202007-11-03 13:30:39 -05001138/* helper for shost_for_each_device, see that for documentation */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139struct scsi_device *__scsi_iterate_devices(struct Scsi_Host *shost,
1140 struct scsi_device *prev)
1141{
1142 struct list_head *list = (prev ? &prev->siblings : &shost->__devices);
1143 struct scsi_device *next = NULL;
1144 unsigned long flags;
1145
1146 spin_lock_irqsave(shost->host_lock, flags);
1147 while (list->next != &shost->__devices) {
1148 next = list_entry(list->next, struct scsi_device, siblings);
1149 /* skip devices that we can't get a reference to */
1150 if (!scsi_device_get(next))
1151 break;
1152 next = NULL;
1153 list = list->next;
1154 }
1155 spin_unlock_irqrestore(shost->host_lock, flags);
1156
1157 if (prev)
1158 scsi_device_put(prev);
1159 return next;
1160}
1161EXPORT_SYMBOL(__scsi_iterate_devices);
1162
1163/**
1164 * starget_for_each_device - helper to walk all devices of a target
1165 * @starget: target whose devices we want to iterate over.
Rob Landleyeb448202007-11-03 13:30:39 -05001166 * @data: Opaque passed to each function call.
1167 * @fn: Function to call on each device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 *
Maciej W. Rozycki522939d2007-12-10 15:49:31 -08001169 * This traverses over each device of @starget. The devices have
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 * a reference that must be released by scsi_host_put when breaking
1171 * out of the loop.
1172 */
Maciej W. Rozycki522939d2007-12-10 15:49:31 -08001173void starget_for_each_device(struct scsi_target *starget, void *data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 void (*fn)(struct scsi_device *, void *))
1175{
1176 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
1177 struct scsi_device *sdev;
1178
1179 shost_for_each_device(sdev, shost) {
1180 if ((sdev->channel == starget->channel) &&
1181 (sdev->id == starget->id))
1182 fn(sdev, data);
1183 }
1184}
1185EXPORT_SYMBOL(starget_for_each_device);
1186
1187/**
Randy Dunlap14f501a2008-02-03 15:06:36 -08001188 * __starget_for_each_device - helper to walk all devices of a target (UNLOCKED)
Maciej W. Rozycki522939d2007-12-10 15:49:31 -08001189 * @starget: target whose devices we want to iterate over.
Randy Dunlap14f501a2008-02-03 15:06:36 -08001190 * @data: parameter for callback @fn()
1191 * @fn: callback function that is invoked for each device
Maciej W. Rozycki522939d2007-12-10 15:49:31 -08001192 *
1193 * This traverses over each device of @starget. It does _not_
1194 * take a reference on the scsi_device, so the whole loop must be
1195 * protected by shost->host_lock.
1196 *
1197 * Note: The only reason why drivers would want to use this is because
1198 * they need to access the device list in irq context. Otherwise you
1199 * really want to use starget_for_each_device instead.
1200 **/
1201void __starget_for_each_device(struct scsi_target *starget, void *data,
1202 void (*fn)(struct scsi_device *, void *))
1203{
1204 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
1205 struct scsi_device *sdev;
1206
1207 __shost_for_each_device(sdev, shost) {
1208 if ((sdev->channel == starget->channel) &&
1209 (sdev->id == starget->id))
1210 fn(sdev, data);
1211 }
1212}
1213EXPORT_SYMBOL(__starget_for_each_device);
1214
1215/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 * __scsi_device_lookup_by_target - find a device given the target (UNLOCKED)
1217 * @starget: SCSI target pointer
1218 * @lun: SCSI Logical Unit Number
1219 *
Rob Landleyeb448202007-11-03 13:30:39 -05001220 * Description: Looks up the scsi_device with the specified @lun for a given
1221 * @starget. The returned scsi_device does not have an additional
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 * reference. You must hold the host's host_lock over this call and
Hannes Reinecke32aeef62009-01-13 16:50:37 +01001223 * any access to the returned scsi_device. A scsi_device in state
1224 * SDEV_DEL is skipped.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 *
Randy Dunlapdc8875e2007-11-15 15:42:30 -08001226 * Note: The only reason why drivers should use this is because
Rob Landleyeb448202007-11-03 13:30:39 -05001227 * they need to access the device list in irq context. Otherwise you
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 * really want to use scsi_device_lookup_by_target instead.
1229 **/
1230struct scsi_device *__scsi_device_lookup_by_target(struct scsi_target *starget,
1231 uint lun)
1232{
1233 struct scsi_device *sdev;
1234
1235 list_for_each_entry(sdev, &starget->devices, same_target_siblings) {
Hannes Reinecke32aeef62009-01-13 16:50:37 +01001236 if (sdev->sdev_state == SDEV_DEL)
1237 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 if (sdev->lun ==lun)
1239 return sdev;
1240 }
1241
1242 return NULL;
1243}
1244EXPORT_SYMBOL(__scsi_device_lookup_by_target);
1245
1246/**
1247 * scsi_device_lookup_by_target - find a device given the target
1248 * @starget: SCSI target pointer
1249 * @lun: SCSI Logical Unit Number
1250 *
Bartlomiej Zolnierkiewicz477e6082009-04-27 20:54:22 +02001251 * Description: Looks up the scsi_device with the specified @lun for a given
1252 * @starget. The returned scsi_device has an additional reference that
Rob Landleyeb448202007-11-03 13:30:39 -05001253 * needs to be released with scsi_device_put once you're done with it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 **/
1255struct scsi_device *scsi_device_lookup_by_target(struct scsi_target *starget,
1256 uint lun)
1257{
1258 struct scsi_device *sdev;
1259 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
1260 unsigned long flags;
1261
1262 spin_lock_irqsave(shost->host_lock, flags);
1263 sdev = __scsi_device_lookup_by_target(starget, lun);
1264 if (sdev && scsi_device_get(sdev))
1265 sdev = NULL;
1266 spin_unlock_irqrestore(shost->host_lock, flags);
1267
1268 return sdev;
1269}
1270EXPORT_SYMBOL(scsi_device_lookup_by_target);
1271
1272/**
Rob Landleyeb448202007-11-03 13:30:39 -05001273 * __scsi_device_lookup - find a device given the host (UNLOCKED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 * @shost: SCSI host pointer
1275 * @channel: SCSI channel (zero if only one channel)
Rob Landleyeb448202007-11-03 13:30:39 -05001276 * @id: SCSI target number (physical unit number)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 * @lun: SCSI Logical Unit Number
1278 *
Rob Landleyeb448202007-11-03 13:30:39 -05001279 * Description: Looks up the scsi_device with the specified @channel, @id, @lun
1280 * for a given host. The returned scsi_device does not have an additional
1281 * reference. You must hold the host's host_lock over this call and any access
1282 * to the returned scsi_device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 *
1284 * Note: The only reason why drivers would want to use this is because
Rob Landleyeb448202007-11-03 13:30:39 -05001285 * they need to access the device list in irq context. Otherwise you
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 * really want to use scsi_device_lookup instead.
1287 **/
1288struct scsi_device *__scsi_device_lookup(struct Scsi_Host *shost,
1289 uint channel, uint id, uint lun)
1290{
1291 struct scsi_device *sdev;
1292
1293 list_for_each_entry(sdev, &shost->__devices, siblings) {
1294 if (sdev->channel == channel && sdev->id == id &&
1295 sdev->lun ==lun)
1296 return sdev;
1297 }
1298
1299 return NULL;
1300}
1301EXPORT_SYMBOL(__scsi_device_lookup);
1302
1303/**
1304 * scsi_device_lookup - find a device given the host
1305 * @shost: SCSI host pointer
1306 * @channel: SCSI channel (zero if only one channel)
1307 * @id: SCSI target number (physical unit number)
1308 * @lun: SCSI Logical Unit Number
1309 *
Rob Landleyeb448202007-11-03 13:30:39 -05001310 * Description: Looks up the scsi_device with the specified @channel, @id, @lun
1311 * for a given host. The returned scsi_device has an additional reference that
1312 * needs to be released with scsi_device_put once you're done with it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 **/
1314struct scsi_device *scsi_device_lookup(struct Scsi_Host *shost,
1315 uint channel, uint id, uint lun)
1316{
1317 struct scsi_device *sdev;
1318 unsigned long flags;
1319
1320 spin_lock_irqsave(shost->host_lock, flags);
1321 sdev = __scsi_device_lookup(shost, channel, id, lun);
1322 if (sdev && scsi_device_get(sdev))
1323 sdev = NULL;
1324 spin_unlock_irqrestore(shost->host_lock, flags);
1325
1326 return sdev;
1327}
1328EXPORT_SYMBOL(scsi_device_lookup);
1329
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330MODULE_DESCRIPTION("SCSI core");
1331MODULE_LICENSE("GPL");
1332
1333module_param(scsi_logging_level, int, S_IRUGO|S_IWUSR);
1334MODULE_PARM_DESC(scsi_logging_level, "a bit mask of logging levels");
1335
1336static int __init init_scsi(void)
1337{
Jens Axboe9bf09c22006-09-30 20:31:11 +02001338 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
1340 error = scsi_init_queue();
1341 if (error)
1342 return error;
1343 error = scsi_init_procfs();
1344 if (error)
1345 goto cleanup_queue;
1346 error = scsi_init_devinfo();
1347 if (error)
1348 goto cleanup_procfs;
1349 error = scsi_init_hosts();
1350 if (error)
1351 goto cleanup_devlist;
1352 error = scsi_init_sysctl();
1353 if (error)
1354 goto cleanup_hosts;
1355 error = scsi_sysfs_register();
1356 if (error)
1357 goto cleanup_sysctl;
1358
James Smart84314fd2006-08-18 17:30:09 -04001359 scsi_netlink_init();
1360
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 printk(KERN_NOTICE "SCSI subsystem initialized\n");
1362 return 0;
1363
1364cleanup_sysctl:
1365 scsi_exit_sysctl();
1366cleanup_hosts:
1367 scsi_exit_hosts();
1368cleanup_devlist:
1369 scsi_exit_devinfo();
1370cleanup_procfs:
1371 scsi_exit_procfs();
1372cleanup_queue:
1373 scsi_exit_queue();
1374 printk(KERN_ERR "SCSI subsystem failed to initialize, error = %d\n",
1375 -error);
1376 return error;
1377}
1378
1379static void __exit exit_scsi(void)
1380{
James Smart84314fd2006-08-18 17:30:09 -04001381 scsi_netlink_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 scsi_sysfs_unregister();
1383 scsi_exit_sysctl();
1384 scsi_exit_hosts();
1385 scsi_exit_devinfo();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 scsi_exit_procfs();
1387 scsi_exit_queue();
Dan Williamsa4683482012-07-09 19:33:30 -07001388 async_unregister_domain(&scsi_sd_probe_domain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389}
1390
1391subsys_initcall(init_scsi);
1392module_exit(exit_scsi);