powerpc/mm: Drop the unnecessary region check
[linux-2.6-block.git] / drivers / scsi / scsi_sysfs.c
CommitLineData
1da177e4
LT
1/*
2 * scsi_sysfs.c
3 *
4 * SCSI sysfs interface routines.
5 *
6 * Created to pull SCSI mid layer sysfs routines into one file.
7 */
8
1da177e4 9#include <linux/module.h>
5a0e3ad6 10#include <linux/slab.h>
1da177e4
LT
11#include <linux/init.h>
12#include <linux/blkdev.h>
13#include <linux/device.h>
bc4f2401 14#include <linux/pm_runtime.h>
1da177e4
LT
15
16#include <scsi/scsi.h>
17#include <scsi/scsi_device.h>
18#include <scsi/scsi_host.h>
19#include <scsi/scsi_tcq.h>
41f95dd2 20#include <scsi/scsi_dh.h>
1da177e4 21#include <scsi/scsi_transport.h>
44818efb 22#include <scsi/scsi_driver.h>
345e2960 23#include <scsi/scsi_devinfo.h>
1da177e4
LT
24
25#include "scsi_priv.h"
26#include "scsi_logging.h"
27
b0ed4336
HR
28static struct device_type scsi_dev_type;
29
0ad78200 30static const struct {
1da177e4
LT
31 enum scsi_device_state value;
32 char *name;
33} sdev_states[] = {
34 { SDEV_CREATED, "created" },
35 { SDEV_RUNNING, "running" },
36 { SDEV_CANCEL, "cancel" },
37 { SDEV_DEL, "deleted" },
38 { SDEV_QUIESCE, "quiesce" },
39 { SDEV_OFFLINE, "offline" },
1b8d2620 40 { SDEV_TRANSPORT_OFFLINE, "transport-offline" },
1da177e4 41 { SDEV_BLOCK, "blocked" },
6f4267e3 42 { SDEV_CREATED_BLOCK, "created-blocked" },
1da177e4
LT
43};
44
45const char *scsi_device_state_name(enum scsi_device_state state)
46{
47 int i;
48 char *name = NULL;
49
6391a113 50 for (i = 0; i < ARRAY_SIZE(sdev_states); i++) {
1da177e4
LT
51 if (sdev_states[i].value == state) {
52 name = sdev_states[i].name;
53 break;
54 }
55 }
56 return name;
57}
58
0ad78200 59static const struct {
d3301874
MA
60 enum scsi_host_state value;
61 char *name;
62} shost_states[] = {
63 { SHOST_CREATED, "created" },
64 { SHOST_RUNNING, "running" },
65 { SHOST_CANCEL, "cancel" },
66 { SHOST_DEL, "deleted" },
67 { SHOST_RECOVERY, "recovery" },
939647ee
JB
68 { SHOST_CANCEL_RECOVERY, "cancel/recovery" },
69 { SHOST_DEL_RECOVERY, "deleted/recovery", },
d3301874
MA
70};
71const char *scsi_host_state_name(enum scsi_host_state state)
72{
73 int i;
74 char *name = NULL;
75
6391a113 76 for (i = 0; i < ARRAY_SIZE(shost_states); i++) {
d3301874
MA
77 if (shost_states[i].value == state) {
78 name = shost_states[i].name;
79 break;
80 }
81 }
82 return name;
83}
84
d78540da 85#ifdef CONFIG_SCSI_DH
77c9df96
HR
86static const struct {
87 unsigned char value;
88 char *name;
89} sdev_access_states[] = {
90 { SCSI_ACCESS_STATE_OPTIMAL, "active/optimized" },
91 { SCSI_ACCESS_STATE_ACTIVE, "active/non-optimized" },
92 { SCSI_ACCESS_STATE_STANDBY, "standby" },
93 { SCSI_ACCESS_STATE_UNAVAILABLE, "unavailable" },
94 { SCSI_ACCESS_STATE_LBA, "lba-dependent" },
95 { SCSI_ACCESS_STATE_OFFLINE, "offline" },
96 { SCSI_ACCESS_STATE_TRANSITIONING, "transitioning" },
97};
98
d78540da 99static const char *scsi_access_state_name(unsigned char state)
77c9df96
HR
100{
101 int i;
102 char *name = NULL;
103
104 for (i = 0; i < ARRAY_SIZE(sdev_access_states); i++) {
105 if (sdev_access_states[i].value == state) {
106 name = sdev_access_states[i].name;
107 break;
108 }
109 }
110 return name;
111}
d78540da 112#endif
77c9df96 113
9cb78c16 114static int check_set(unsigned long long *val, char *src)
1da177e4
LT
115{
116 char *last;
117
3991e460 118 if (strcmp(src, "-") == 0) {
1da177e4
LT
119 *val = SCAN_WILD_CARD;
120 } else {
121 /*
122 * Doesn't check for int overflow
123 */
9cb78c16 124 *val = simple_strtoull(src, &last, 0);
1da177e4
LT
125 if (*last != '\0')
126 return 1;
127 }
128 return 0;
129}
130
131static int scsi_scan(struct Scsi_Host *shost, const char *str)
132{
9cb78c16
HR
133 char s1[15], s2[15], s3[17], junk;
134 unsigned long long channel, id, lun;
1da177e4
LT
135 int res;
136
9cb78c16 137 res = sscanf(str, "%10s %10s %16s %c", s1, s2, s3, &junk);
1da177e4
LT
138 if (res != 3)
139 return -EINVAL;
140 if (check_set(&channel, s1))
141 return -EINVAL;
142 if (check_set(&id, s2))
143 return -EINVAL;
144 if (check_set(&lun, s3))
145 return -EINVAL;
e02f3f59
CH
146 if (shost->transportt->user_scan)
147 res = shost->transportt->user_scan(shost, channel, id, lun);
148 else
1d645088
HR
149 res = scsi_scan_host_selected(shost, channel, id, lun,
150 SCSI_SCAN_MANUAL);
1da177e4
LT
151 return res;
152}
153
154/*
155 * shost_show_function: macro to create an attr function that can be used to
156 * show a non-bit field.
157 */
158#define shost_show_function(name, field, format_string) \
159static ssize_t \
ee959b00
TJ
160show_##name (struct device *dev, struct device_attribute *attr, \
161 char *buf) \
1da177e4 162{ \
ee959b00 163 struct Scsi_Host *shost = class_to_shost(dev); \
1da177e4
LT
164 return snprintf (buf, 20, format_string, shost->field); \
165}
166
167/*
168 * shost_rd_attr: macro to create a function and attribute variable for a
169 * read only field.
170 */
171#define shost_rd_attr2(name, field, format_string) \
172 shost_show_function(name, field, format_string) \
ee959b00 173static DEVICE_ATTR(name, S_IRUGO, show_##name, NULL);
1da177e4
LT
174
175#define shost_rd_attr(field, format_string) \
176shost_rd_attr2(field, field, format_string)
177
178/*
179 * Create the actual show/store functions and data structures.
180 */
181
ee959b00
TJ
182static ssize_t
183store_scan(struct device *dev, struct device_attribute *attr,
184 const char *buf, size_t count)
1da177e4 185{
ee959b00 186 struct Scsi_Host *shost = class_to_shost(dev);
1da177e4
LT
187 int res;
188
189 res = scsi_scan(shost, buf);
190 if (res == 0)
191 res = count;
192 return res;
193};
ee959b00 194static DEVICE_ATTR(scan, S_IWUSR, NULL, store_scan);
1da177e4 195
d3301874 196static ssize_t
ee959b00
TJ
197store_shost_state(struct device *dev, struct device_attribute *attr,
198 const char *buf, size_t count)
d3301874
MA
199{
200 int i;
ee959b00 201 struct Scsi_Host *shost = class_to_shost(dev);
d3301874
MA
202 enum scsi_host_state state = 0;
203
6391a113 204 for (i = 0; i < ARRAY_SIZE(shost_states); i++) {
d3301874
MA
205 const int len = strlen(shost_states[i].name);
206 if (strncmp(shost_states[i].name, buf, len) == 0 &&
207 buf[len] == '\n') {
208 state = shost_states[i].value;
209 break;
210 }
211 }
212 if (!state)
213 return -EINVAL;
214
215 if (scsi_host_set_state(shost, state))
216 return -EINVAL;
217 return count;
218}
219
220static ssize_t
ee959b00 221show_shost_state(struct device *dev, struct device_attribute *attr, char *buf)
d3301874 222{
ee959b00 223 struct Scsi_Host *shost = class_to_shost(dev);
d3301874
MA
224 const char *name = scsi_host_state_name(shost->shost_state);
225
226 if (!name)
227 return -EINVAL;
228
229 return snprintf(buf, 20, "%s\n", name);
230}
231
ee959b00 232/* DEVICE_ATTR(state) clashes with dev_attr_state for sdev */
d78540da 233static struct device_attribute dev_attr_hstate =
ee959b00 234 __ATTR(state, S_IRUGO | S_IWUSR, show_shost_state, store_shost_state);
d3301874 235
5dc2b89e
FT
236static ssize_t
237show_shost_mode(unsigned int mode, char *buf)
238{
239 ssize_t len = 0;
240
241 if (mode & MODE_INITIATOR)
242 len = sprintf(buf, "%s", "Initiator");
243
244 if (mode & MODE_TARGET)
245 len += sprintf(buf + len, "%s%s", len ? ", " : "", "Target");
246
247 len += sprintf(buf + len, "\n");
248
249 return len;
250}
251
ee959b00
TJ
252static ssize_t
253show_shost_supported_mode(struct device *dev, struct device_attribute *attr,
254 char *buf)
5dc2b89e 255{
ee959b00 256 struct Scsi_Host *shost = class_to_shost(dev);
7a39ac3f 257 unsigned int supported_mode = shost->hostt->supported_mode;
5dc2b89e 258
7a39ac3f
JB
259 if (supported_mode == MODE_UNKNOWN)
260 /* by default this should be initiator */
261 supported_mode = MODE_INITIATOR;
262
263 return show_shost_mode(supported_mode, buf);
5dc2b89e
FT
264}
265
ee959b00 266static DEVICE_ATTR(supported_mode, S_IRUGO | S_IWUSR, show_shost_supported_mode, NULL);
5dc2b89e 267
ee959b00
TJ
268static ssize_t
269show_shost_active_mode(struct device *dev,
270 struct device_attribute *attr, char *buf)
5dc2b89e 271{
ee959b00 272 struct Scsi_Host *shost = class_to_shost(dev);
5dc2b89e
FT
273
274 if (shost->active_mode == MODE_UNKNOWN)
275 return snprintf(buf, 20, "unknown\n");
276 else
277 return show_shost_mode(shost->active_mode, buf);
278}
279
ee959b00 280static DEVICE_ATTR(active_mode, S_IRUGO | S_IWUSR, show_shost_active_mode, NULL);
5dc2b89e 281
072f19b4 282static int check_reset_type(const char *str)
29443691 283{
072f19b4 284 if (sysfs_streq(str, "adapter"))
29443691 285 return SCSI_ADAPTER_RESET;
072f19b4 286 else if (sysfs_streq(str, "firmware"))
29443691
VC
287 return SCSI_FIRMWARE_RESET;
288 else
289 return 0;
290}
291
292static ssize_t
293store_host_reset(struct device *dev, struct device_attribute *attr,
294 const char *buf, size_t count)
295{
296 struct Scsi_Host *shost = class_to_shost(dev);
297 struct scsi_host_template *sht = shost->hostt;
298 int ret = -EINVAL;
29443691
VC
299 int type;
300
072f19b4 301 type = check_reset_type(buf);
29443691
VC
302 if (!type)
303 goto exit_store_host_reset;
304
305 if (sht->host_reset)
306 ret = sht->host_reset(shost, type);
92227b8d 307 else
308 ret = -EOPNOTSUPP;
29443691
VC
309
310exit_store_host_reset:
311 if (ret == 0)
312 ret = count;
313 return ret;
314}
315
316static DEVICE_ATTR(host_reset, S_IWUSR, NULL, store_host_reset);
317
b4562022
HR
318static ssize_t
319show_shost_eh_deadline(struct device *dev,
320 struct device_attribute *attr, char *buf)
321{
322 struct Scsi_Host *shost = class_to_shost(dev);
323
bb3b621a
RM
324 if (shost->eh_deadline == -1)
325 return snprintf(buf, strlen("off") + 2, "off\n");
326 return sprintf(buf, "%u\n", shost->eh_deadline / HZ);
b4562022
HR
327}
328
329static ssize_t
330store_shost_eh_deadline(struct device *dev, struct device_attribute *attr,
331 const char *buf, size_t count)
332{
333 struct Scsi_Host *shost = class_to_shost(dev);
334 int ret = -EINVAL;
bb3b621a 335 unsigned long deadline, flags;
b4562022 336
ad469a57
HR
337 if (shost->transportt &&
338 (shost->transportt->eh_strategy_handler ||
339 !shost->hostt->eh_host_reset_handler))
b4562022
HR
340 return ret;
341
bb3b621a
RM
342 if (!strncmp(buf, "off", strlen("off")))
343 deadline = -1;
344 else {
345 ret = kstrtoul(buf, 10, &deadline);
346 if (ret)
347 return ret;
348 if (deadline * HZ > UINT_MAX)
349 return -EINVAL;
350 }
351
352 spin_lock_irqsave(shost->host_lock, flags);
353 if (scsi_host_in_recovery(shost))
354 ret = -EBUSY;
355 else {
356 if (deadline == -1)
357 shost->eh_deadline = -1;
358 else
b4562022 359 shost->eh_deadline = deadline * HZ;
bb3b621a
RM
360
361 ret = count;
b4562022 362 }
bb3b621a
RM
363 spin_unlock_irqrestore(shost->host_lock, flags);
364
b4562022
HR
365 return ret;
366}
367
368static DEVICE_ATTR(eh_deadline, S_IRUGO | S_IWUSR, show_shost_eh_deadline, store_shost_eh_deadline);
369
1da177e4 370shost_rd_attr(unique_id, "%u\n");
1da177e4 371shost_rd_attr(cmd_per_lun, "%hd\n");
ed632da8 372shost_rd_attr(can_queue, "%hd\n");
1da177e4 373shost_rd_attr(sg_tablesize, "%hu\n");
13f05c8d 374shost_rd_attr(sg_prot_tablesize, "%hu\n");
1da177e4 375shost_rd_attr(unchecked_isa_dma, "%d\n");
4469f987
MP
376shost_rd_attr(prot_capabilities, "%u\n");
377shost_rd_attr(prot_guard_type, "%hd\n");
1da177e4
LT
378shost_rd_attr2(proc_name, hostt->proc_name, "%s\n");
379
74665016
CH
380static ssize_t
381show_host_busy(struct device *dev, struct device_attribute *attr, char *buf)
382{
383 struct Scsi_Host *shost = class_to_shost(dev);
c84b023a 384 return snprintf(buf, 20, "%d\n", scsi_host_busy(shost));
74665016
CH
385}
386static DEVICE_ATTR(host_busy, S_IRUGO, show_host_busy, NULL);
387
f664a3cc
JA
388static ssize_t
389show_use_blk_mq(struct device *dev, struct device_attribute *attr, char *buf)
390{
391 return sprintf(buf, "1\n");
392}
393static DEVICE_ATTR(use_blk_mq, S_IRUGO, show_use_blk_mq, NULL);
394
f7120a4f 395static struct attribute *scsi_sysfs_shost_attrs[] = {
d285203c 396 &dev_attr_use_blk_mq.attr,
f7120a4f
HR
397 &dev_attr_unique_id.attr,
398 &dev_attr_host_busy.attr,
399 &dev_attr_cmd_per_lun.attr,
400 &dev_attr_can_queue.attr,
401 &dev_attr_sg_tablesize.attr,
13f05c8d 402 &dev_attr_sg_prot_tablesize.attr,
f7120a4f
HR
403 &dev_attr_unchecked_isa_dma.attr,
404 &dev_attr_proc_name.attr,
405 &dev_attr_scan.attr,
406 &dev_attr_hstate.attr,
407 &dev_attr_supported_mode.attr,
408 &dev_attr_active_mode.attr,
4469f987
MP
409 &dev_attr_prot_capabilities.attr,
410 &dev_attr_prot_guard_type.attr,
29443691 411 &dev_attr_host_reset.attr,
b4562022 412 &dev_attr_eh_deadline.attr,
f7120a4f
HR
413 NULL
414};
415
d78540da 416static struct attribute_group scsi_shost_attr_group = {
f7120a4f
HR
417 .attrs = scsi_sysfs_shost_attrs,
418};
419
a4dbd674 420const struct attribute_group *scsi_sysfs_shost_attr_groups[] = {
f7120a4f 421 &scsi_shost_attr_group,
1da177e4
LT
422 NULL
423};
424
ee959b00 425static void scsi_device_cls_release(struct device *class_dev)
1da177e4
LT
426{
427 struct scsi_device *sdev;
428
429 sdev = class_to_sdev(class_dev);
430 put_device(&sdev->sdev_gendev);
431}
432
65f27f38 433static void scsi_device_dev_release_usercontext(struct work_struct *work)
1da177e4
LT
434{
435 struct scsi_device *sdev;
436 struct device *parent;
a341cd0f 437 struct list_head *this, *tmp;
ccf1e004 438 struct scsi_vpd *vpd_pg80 = NULL, *vpd_pg83 = NULL;
1da177e4
LT
439 unsigned long flags;
440
65f27f38
DH
441 sdev = container_of(work, struct scsi_device, ew.work);
442
23695e41
JN
443 scsi_dh_release_device(sdev);
444
65f27f38 445 parent = sdev->sdev_gendev.parent;
1da177e4
LT
446
447 spin_lock_irqsave(sdev->host->host_lock, flags);
1da177e4
LT
448 list_del(&sdev->siblings);
449 list_del(&sdev->same_target_siblings);
450 list_del(&sdev->starved_entry);
451 spin_unlock_irqrestore(sdev->host->host_lock, flags);
452
a341cd0f
JG
453 cancel_work_sync(&sdev->event_work);
454
455 list_for_each_safe(this, tmp, &sdev->event_list) {
456 struct scsi_event *evt;
457
458 evt = list_entry(this, struct scsi_event, node);
459 list_del(&evt->node);
460 kfree(evt);
461 }
462
e73e079b 463 blk_put_queue(sdev->request_queue);
86cbfb56
JB
464 /* NULL queue means the device can't be used */
465 sdev->request_queue = NULL;
1da177e4 466
ccf1e004
BVA
467 mutex_lock(&sdev->inquiry_mutex);
468 rcu_swap_protected(sdev->vpd_pg80, vpd_pg80,
469 lockdep_is_held(&sdev->inquiry_mutex));
470 rcu_swap_protected(sdev->vpd_pg83, vpd_pg83,
471 lockdep_is_held(&sdev->inquiry_mutex));
472 mutex_unlock(&sdev->inquiry_mutex);
473
474 if (vpd_pg83)
475 kfree_rcu(vpd_pg83, rcu);
476 if (vpd_pg80)
477 kfree_rcu(vpd_pg80, rcu);
1da177e4
LT
478 kfree(sdev->inquiry);
479 kfree(sdev);
480
481 if (parent)
482 put_device(parent);
483}
484
65110b21
JB
485static void scsi_device_dev_release(struct device *dev)
486{
ffedb452 487 struct scsi_device *sdp = to_scsi_device(dev);
65f27f38 488 execute_in_process_context(scsi_device_dev_release_usercontext,
ffedb452 489 &sdp->ew);
65110b21
JB
490}
491
52c1da39 492static struct class sdev_class = {
1da177e4 493 .name = "scsi_device",
ee959b00 494 .dev_release = scsi_device_cls_release,
1da177e4
LT
495};
496
497/* all probing is done in the individual ->probe routines */
498static int scsi_bus_match(struct device *dev, struct device_driver *gendrv)
499{
b0ed4336
HR
500 struct scsi_device *sdp;
501
502 if (dev->type != &scsi_dev_type)
503 return 0;
504
505 sdp = to_scsi_device(dev);
1da177e4
LT
506 if (sdp->no_uld_attach)
507 return 0;
508 return (sdp->inq_periph_qual == SCSI_INQ_PQ_CON)? 1: 0;
509}
510
7eff2e7a 511static int scsi_bus_uevent(struct device *dev, struct kobj_uevent_env *env)
d7b8bcb0 512{
1f42ea7b
JB
513 struct scsi_device *sdev;
514
515 if (dev->type != &scsi_dev_type)
516 return 0;
517
518 sdev = to_scsi_device(dev);
d7b8bcb0 519
7eff2e7a 520 add_uevent_var(env, "MODALIAS=" SCSI_DEVICE_MODALIAS_FMT, sdev->type);
d7b8bcb0
MT
521 return 0;
522}
523
1da177e4
LT
524struct bus_type scsi_bus_type = {
525 .name = "scsi",
526 .match = scsi_bus_match,
d7b8bcb0 527 .uevent = scsi_bus_uevent,
aa338601 528#ifdef CONFIG_PM
db5bd1e0 529 .pm = &scsi_bus_pm_ops,
e6da54d8 530#endif
1da177e4 531};
a6a8d9f8 532EXPORT_SYMBOL_GPL(scsi_bus_type);
1da177e4
LT
533
534int scsi_sysfs_register(void)
535{
536 int error;
537
538 error = bus_register(&scsi_bus_type);
539 if (!error) {
540 error = class_register(&sdev_class);
541 if (error)
542 bus_unregister(&scsi_bus_type);
543 }
544
545 return error;
546}
547
548void scsi_sysfs_unregister(void)
549{
550 class_unregister(&sdev_class);
551 bus_unregister(&scsi_bus_type);
552}
553
554/*
555 * sdev_show_function: macro to create an attr function that can be used to
556 * show a non-bit field.
557 */
558#define sdev_show_function(field, format_string) \
559static ssize_t \
ee959b00
TJ
560sdev_show_##field (struct device *dev, struct device_attribute *attr, \
561 char *buf) \
1da177e4
LT
562{ \
563 struct scsi_device *sdev; \
564 sdev = to_scsi_device(dev); \
565 return snprintf (buf, 20, format_string, sdev->field); \
566} \
567
568/*
569 * sdev_rd_attr: macro to create a function and attribute variable for a
570 * read only field.
571 */
572#define sdev_rd_attr(field, format_string) \
573 sdev_show_function(field, format_string) \
574static DEVICE_ATTR(field, S_IRUGO, sdev_show_##field, NULL);
575
576
577/*
160e7f67 578 * sdev_rw_attr: create a function and attribute variable for a
1da177e4
LT
579 * read/write field.
580 */
581#define sdev_rw_attr(field, format_string) \
582 sdev_show_function(field, format_string) \
583 \
584static ssize_t \
ee959b00
TJ
585sdev_store_##field (struct device *dev, struct device_attribute *attr, \
586 const char *buf, size_t count) \
1da177e4
LT
587{ \
588 struct scsi_device *sdev; \
589 sdev = to_scsi_device(dev); \
160e7f67 590 sscanf (buf, format_string, &sdev->field); \
1da177e4
LT
591 return count; \
592} \
593static DEVICE_ATTR(field, S_IRUGO | S_IWUSR, sdev_show_##field, sdev_store_##field);
594
595/* Currently we don't export bit fields, but we might in future,
596 * so leave this code in */
597#if 0
598/*
599 * sdev_rd_attr: create a function and attribute variable for a
600 * read/write bit field.
601 */
602#define sdev_rw_attr_bit(field) \
603 sdev_show_function(field, "%d\n") \
604 \
605static ssize_t \
ee959b00
TJ
606sdev_store_##field (struct device *dev, struct device_attribute *attr, \
607 const char *buf, size_t count) \
1da177e4
LT
608{ \
609 int ret; \
610 struct scsi_device *sdev; \
611 ret = scsi_sdev_check_buf_bit(buf); \
612 if (ret >= 0) { \
613 sdev = to_scsi_device(dev); \
614 sdev->field = ret; \
615 ret = count; \
616 } \
617 return ret; \
618} \
619static DEVICE_ATTR(field, S_IRUGO | S_IWUSR, sdev_show_##field, sdev_store_##field);
620
621/*
622 * scsi_sdev_check_buf_bit: return 0 if buf is "0", return 1 if buf is "1",
623 * else return -EINVAL.
624 */
625static int scsi_sdev_check_buf_bit(const char *buf)
626{
627 if ((buf[1] == '\0') || ((buf[1] == '\n') && (buf[2] == '\0'))) {
628 if (buf[0] == '1')
629 return 1;
630 else if (buf[0] == '0')
631 return 0;
632 else
633 return -EINVAL;
634 } else
635 return -EINVAL;
636}
637#endif
638/*
639 * Create the actual show/store functions and data structures.
640 */
1da177e4
LT
641sdev_rd_attr (type, "%d\n");
642sdev_rd_attr (scsi_level, "%d\n");
643sdev_rd_attr (vendor, "%.8s\n");
644sdev_rd_attr (model, "%.16s\n");
645sdev_rd_attr (rev, "%.4s\n");
646
71e75c97
CH
647static ssize_t
648sdev_show_device_busy(struct device *dev, struct device_attribute *attr,
649 char *buf)
650{
651 struct scsi_device *sdev = to_scsi_device(dev);
652 return snprintf(buf, 20, "%d\n", atomic_read(&sdev->device_busy));
653}
654static DEVICE_ATTR(device_busy, S_IRUGO, sdev_show_device_busy, NULL);
655
cd9070c9
CH
656static ssize_t
657sdev_show_device_blocked(struct device *dev, struct device_attribute *attr,
658 char *buf)
659{
660 struct scsi_device *sdev = to_scsi_device(dev);
661 return snprintf(buf, 20, "%d\n", atomic_read(&sdev->device_blocked));
662}
663static DEVICE_ATTR(device_blocked, S_IRUGO, sdev_show_device_blocked, NULL);
664
242f9dcb
JA
665/*
666 * TODO: can we make these symlinks to the block layer ones?
667 */
1da177e4 668static ssize_t
10523b3b 669sdev_show_timeout (struct device *dev, struct device_attribute *attr, char *buf)
1da177e4
LT
670{
671 struct scsi_device *sdev;
672 sdev = to_scsi_device(dev);
242f9dcb 673 return snprintf(buf, 20, "%d\n", sdev->request_queue->rq_timeout / HZ);
1da177e4
LT
674}
675
676static ssize_t
ee959b00
TJ
677sdev_store_timeout (struct device *dev, struct device_attribute *attr,
678 const char *buf, size_t count)
1da177e4
LT
679{
680 struct scsi_device *sdev;
681 int timeout;
682 sdev = to_scsi_device(dev);
683 sscanf (buf, "%d\n", &timeout);
242f9dcb 684 blk_queue_rq_timeout(sdev->request_queue, timeout * HZ);
1da177e4
LT
685 return count;
686}
687static DEVICE_ATTR(timeout, S_IRUGO | S_IWUSR, sdev_show_timeout, sdev_store_timeout);
688
0816c925
MP
689static ssize_t
690sdev_show_eh_timeout(struct device *dev, struct device_attribute *attr, char *buf)
691{
692 struct scsi_device *sdev;
693 sdev = to_scsi_device(dev);
694 return snprintf(buf, 20, "%u\n", sdev->eh_timeout / HZ);
695}
696
697static ssize_t
698sdev_store_eh_timeout(struct device *dev, struct device_attribute *attr,
699 const char *buf, size_t count)
700{
701 struct scsi_device *sdev;
702 unsigned int eh_timeout;
703 int err;
704
705 if (!capable(CAP_SYS_ADMIN))
706 return -EACCES;
707
708 sdev = to_scsi_device(dev);
709 err = kstrtouint(buf, 10, &eh_timeout);
710 if (err)
711 return err;
712 sdev->eh_timeout = eh_timeout * HZ;
713
714 return count;
715}
716static DEVICE_ATTR(eh_timeout, S_IRUGO | S_IWUSR, sdev_show_eh_timeout, sdev_store_eh_timeout);
717
1da177e4 718static ssize_t
ee959b00
TJ
719store_rescan_field (struct device *dev, struct device_attribute *attr,
720 const char *buf, size_t count)
1da177e4
LT
721{
722 scsi_rescan_device(dev);
723 return count;
724}
725static DEVICE_ATTR(rescan, S_IWUSR, NULL, store_rescan_field);
726
ee959b00
TJ
727static ssize_t
728sdev_store_delete(struct device *dev, struct device_attribute *attr,
729 const char *buf, size_t count)
1da177e4 730{
0ee223b2
BVA
731 struct kernfs_node *kn;
732
733 kn = sysfs_break_active_protection(&dev->kobj, &attr->attr);
734 WARN_ON_ONCE(!kn);
735 /*
736 * Concurrent writes into the "delete" sysfs attribute may trigger
737 * concurrent calls to device_remove_file() and scsi_remove_device().
738 * device_remove_file() handles concurrent removal calls by
739 * serializing these and by ignoring the second and later removal
740 * attempts. Concurrent calls of scsi_remove_device() are
741 * serialized. The second and later calls of scsi_remove_device() are
742 * ignored because the first call of that function changes the device
743 * state into SDEV_DEL.
744 */
745 device_remove_file(dev, attr);
746 scsi_remove_device(to_scsi_device(dev));
747 if (kn)
748 sysfs_unbreak_active_protection(kn);
1da177e4
LT
749 return count;
750};
751static DEVICE_ATTR(delete, S_IWUSR, NULL, sdev_store_delete);
752
753static ssize_t
ee959b00
TJ
754store_state_field(struct device *dev, struct device_attribute *attr,
755 const char *buf, size_t count)
1da177e4 756{
0db6ca8a 757 int i, ret;
1da177e4
LT
758 struct scsi_device *sdev = to_scsi_device(dev);
759 enum scsi_device_state state = 0;
760
6391a113 761 for (i = 0; i < ARRAY_SIZE(sdev_states); i++) {
1da177e4
LT
762 const int len = strlen(sdev_states[i].name);
763 if (strncmp(sdev_states[i].name, buf, len) == 0 &&
764 buf[len] == '\n') {
765 state = sdev_states[i].value;
766 break;
767 }
768 }
769 if (!state)
770 return -EINVAL;
771
0db6ca8a
BVA
772 mutex_lock(&sdev->state_mutex);
773 ret = scsi_device_set_state(sdev, state);
70fc085c 774 /*
775 * If the device state changes to SDEV_RUNNING, we need to run
776 * the queue to avoid I/O hang.
777 */
778 if (ret == 0 && state == SDEV_RUNNING)
779 blk_mq_run_hw_queues(sdev->request_queue, true);
0db6ca8a
BVA
780 mutex_unlock(&sdev->state_mutex);
781
782 return ret == 0 ? count : -EINVAL;
1da177e4
LT
783}
784
785static ssize_t
10523b3b 786show_state_field(struct device *dev, struct device_attribute *attr, char *buf)
1da177e4
LT
787{
788 struct scsi_device *sdev = to_scsi_device(dev);
789 const char *name = scsi_device_state_name(sdev->sdev_state);
790
791 if (!name)
792 return -EINVAL;
793
794 return snprintf(buf, 20, "%s\n", name);
795}
796
797static DEVICE_ATTR(state, S_IRUGO | S_IWUSR, show_state_field, store_state_field);
798
799static ssize_t
ee959b00
TJ
800show_queue_type_field(struct device *dev, struct device_attribute *attr,
801 char *buf)
1da177e4
LT
802{
803 struct scsi_device *sdev = to_scsi_device(dev);
804 const char *name = "none";
805
609aa22f 806 if (sdev->simple_tags)
1da177e4
LT
807 name = "simple";
808
809 return snprintf(buf, 20, "%s\n", name);
810}
811
276b20d0
HR
812static ssize_t
813store_queue_type_field(struct device *dev, struct device_attribute *attr,
814 const char *buf, size_t count)
815{
816 struct scsi_device *sdev = to_scsi_device(dev);
276b20d0 817
efc3c1df 818 if (!sdev->tagged_supported)
276b20d0 819 return -EINVAL;
efc3c1df
CH
820
821 sdev_printk(KERN_INFO, sdev,
822 "ignoring write to deprecated queue_type attribute");
276b20d0
HR
823 return count;
824}
825
826static DEVICE_ATTR(queue_type, S_IRUGO | S_IWUSR, show_queue_type_field,
827 store_queue_type_field);
1da177e4 828
b3ae8780
HR
829#define sdev_vpd_pg_attr(_page) \
830static ssize_t \
831show_vpd_##_page(struct file *filp, struct kobject *kobj, \
832 struct bin_attribute *bin_attr, \
833 char *buf, loff_t off, size_t count) \
834{ \
835 struct device *dev = container_of(kobj, struct device, kobj); \
836 struct scsi_device *sdev = to_scsi_device(dev); \
ccf1e004
BVA
837 struct scsi_vpd *vpd_page; \
838 int ret = -EINVAL; \
839 \
09e2b0b1 840 rcu_read_lock(); \
ccf1e004
BVA
841 vpd_page = rcu_dereference(sdev->vpd_##_page); \
842 if (vpd_page) \
843 ret = memory_read_from_buffer(buf, count, &off, \
844 vpd_page->data, vpd_page->len); \
09e2b0b1 845 rcu_read_unlock(); \
ccf1e004 846 return ret; \
b3ae8780
HR
847} \
848static struct bin_attribute dev_attr_vpd_##_page = { \
849 .attr = {.name = __stringify(vpd_##_page), .mode = S_IRUGO }, \
850 .size = 0, \
851 .read = show_vpd_##_page, \
852};
853
854sdev_vpd_pg_attr(pg83);
855sdev_vpd_pg_attr(pg80);
1da177e4 856
92e6246c
JT
857static ssize_t show_inquiry(struct file *filep, struct kobject *kobj,
858 struct bin_attribute *bin_attr,
859 char *buf, loff_t off, size_t count)
860{
861 struct device *dev = container_of(kobj, struct device, kobj);
862 struct scsi_device *sdev = to_scsi_device(dev);
863
864 if (!sdev->inquiry)
865 return -EINVAL;
866
867 return memory_read_from_buffer(buf, count, &off, sdev->inquiry,
868 sdev->inquiry_len);
869}
870
871static struct bin_attribute dev_attr_inquiry = {
872 .attr = {
873 .name = "inquiry",
874 .mode = S_IRUGO,
875 },
876 .size = 0,
877 .read = show_inquiry,
878};
879
1da177e4 880static ssize_t
b3ae8780
HR
881show_iostat_counterbits(struct device *dev, struct device_attribute *attr,
882 char *buf)
1da177e4
LT
883{
884 return snprintf(buf, 20, "%d\n", (int)sizeof(atomic_t) * 8);
885}
886
887static DEVICE_ATTR(iocounterbits, S_IRUGO, show_iostat_counterbits, NULL);
888
889#define show_sdev_iostat(field) \
890static ssize_t \
ee959b00
TJ
891show_iostat_##field(struct device *dev, struct device_attribute *attr, \
892 char *buf) \
1da177e4
LT
893{ \
894 struct scsi_device *sdev = to_scsi_device(dev); \
895 unsigned long long count = atomic_read(&sdev->field); \
896 return snprintf(buf, 20, "0x%llx\n", count); \
897} \
898static DEVICE_ATTR(field, S_IRUGO, show_iostat_##field, NULL)
899
900show_sdev_iostat(iorequest_cnt);
901show_sdev_iostat(iodone_cnt);
902show_sdev_iostat(ioerr_cnt);
903
d7b8bcb0
MT
904static ssize_t
905sdev_show_modalias(struct device *dev, struct device_attribute *attr, char *buf)
906{
907 struct scsi_device *sdev;
908 sdev = to_scsi_device(dev);
909 return snprintf (buf, 20, SCSI_DEVICE_MODALIAS_FMT "\n", sdev->type);
910}
911static DEVICE_ATTR(modalias, S_IRUGO, sdev_show_modalias, NULL);
1da177e4 912
a341cd0f
JG
913#define DECLARE_EVT_SHOW(name, Cap_name) \
914static ssize_t \
915sdev_show_evt_##name(struct device *dev, struct device_attribute *attr, \
ee959b00 916 char *buf) \
a341cd0f
JG
917{ \
918 struct scsi_device *sdev = to_scsi_device(dev); \
919 int val = test_bit(SDEV_EVT_##Cap_name, sdev->supported_events);\
920 return snprintf(buf, 20, "%d\n", val); \
921}
922
923#define DECLARE_EVT_STORE(name, Cap_name) \
924static ssize_t \
ee959b00 925sdev_store_evt_##name(struct device *dev, struct device_attribute *attr,\
a341cd0f
JG
926 const char *buf, size_t count) \
927{ \
928 struct scsi_device *sdev = to_scsi_device(dev); \
929 int val = simple_strtoul(buf, NULL, 0); \
930 if (val == 0) \
931 clear_bit(SDEV_EVT_##Cap_name, sdev->supported_events); \
932 else if (val == 1) \
933 set_bit(SDEV_EVT_##Cap_name, sdev->supported_events); \
934 else \
935 return -EINVAL; \
936 return count; \
937}
938
939#define DECLARE_EVT(name, Cap_name) \
940 DECLARE_EVT_SHOW(name, Cap_name) \
941 DECLARE_EVT_STORE(name, Cap_name) \
942 static DEVICE_ATTR(evt_##name, S_IRUGO, sdev_show_evt_##name, \
943 sdev_store_evt_##name);
944#define REF_EVT(name) &dev_attr_evt_##name.attr
945
946DECLARE_EVT(media_change, MEDIA_CHANGE)
279afdfe
EM
947DECLARE_EVT(inquiry_change_reported, INQUIRY_CHANGE_REPORTED)
948DECLARE_EVT(capacity_change_reported, CAPACITY_CHANGE_REPORTED)
949DECLARE_EVT(soft_threshold_reached, SOFT_THRESHOLD_REACHED_REPORTED)
950DECLARE_EVT(mode_parameter_change_reported, MODE_PARAMETER_CHANGE_REPORTED)
951DECLARE_EVT(lun_change_reported, LUN_CHANGE_REPORTED)
a341cd0f 952
ee959b00 953static ssize_t
276b20d0
HR
954sdev_store_queue_depth(struct device *dev, struct device_attribute *attr,
955 const char *buf, size_t count)
1da177e4
LT
956{
957 int depth, retval;
958 struct scsi_device *sdev = to_scsi_device(dev);
959 struct scsi_host_template *sht = sdev->host->hostt;
960
961 if (!sht->change_queue_depth)
962 return -EINVAL;
963
964 depth = simple_strtoul(buf, NULL, 0);
965
1278dd68 966 if (depth < 1 || depth > sdev->host->can_queue)
1da177e4
LT
967 return -EINVAL;
968
db5ed4df 969 retval = sht->change_queue_depth(sdev, depth);
1da177e4
LT
970 if (retval < 0)
971 return retval;
972
4a84067d
VD
973 sdev->max_queue_depth = sdev->queue_depth;
974
1da177e4
LT
975 return count;
976}
276b20d0 977sdev_show_function(queue_depth, "%d\n");
1da177e4 978
276b20d0
HR
979static DEVICE_ATTR(queue_depth, S_IRUGO | S_IWUSR, sdev_show_queue_depth,
980 sdev_store_queue_depth);
1da177e4 981
248d4fe9
HR
982static ssize_t
983sdev_show_wwid(struct device *dev, struct device_attribute *attr,
984 char *buf)
985{
986 struct scsi_device *sdev = to_scsi_device(dev);
987 ssize_t count;
988
989 count = scsi_vpd_lun_id(sdev, buf, PAGE_SIZE);
990 if (count > 0) {
991 buf[count] = '\n';
992 count++;
993 }
994 return count;
995}
996static DEVICE_ATTR(wwid, S_IRUGO, sdev_show_wwid, NULL);
997
093b8886 998#define BLIST_FLAG_NAME(name) \
14098803 999 [const_ilog2((__force __u64)BLIST_##name)] = #name
345e2960
HR
1000static const char *const sdev_bflags_name[] = {
1001#include "scsi_devinfo_tbl.c"
1002};
1003#undef BLIST_FLAG_NAME
1004
1005static ssize_t
1006sdev_show_blacklist(struct device *dev, struct device_attribute *attr,
1007 char *buf)
1008{
1009 struct scsi_device *sdev = to_scsi_device(dev);
1010 int i;
1011 ssize_t len = 0;
1012
1013 for (i = 0; i < sizeof(sdev->sdev_bflags) * BITS_PER_BYTE; i++) {
1014 const char *name = NULL;
1015
093b8886 1016 if (!(sdev->sdev_bflags & (__force blist_flags_t)BIT(i)))
345e2960
HR
1017 continue;
1018 if (i < ARRAY_SIZE(sdev_bflags_name) && sdev_bflags_name[i])
1019 name = sdev_bflags_name[i];
1020
1021 if (name)
1022 len += snprintf(buf + len, PAGE_SIZE - len,
1023 "%s%s", len ? " " : "", name);
1024 else
1025 len += snprintf(buf + len, PAGE_SIZE - len,
1026 "%sINVALID_BIT(%d)", len ? " " : "", i);
1027 }
1028 if (len)
1029 len += snprintf(buf + len, PAGE_SIZE - len, "\n");
1030 return len;
1031}
1032static DEVICE_ATTR(blacklist, S_IRUGO, sdev_show_blacklist, NULL);
1033
41f95dd2
HR
1034#ifdef CONFIG_SCSI_DH
1035static ssize_t
1036sdev_show_dh_state(struct device *dev, struct device_attribute *attr,
1037 char *buf)
1038{
1039 struct scsi_device *sdev = to_scsi_device(dev);
1040
1041 if (!sdev->handler)
1042 return snprintf(buf, 20, "detached\n");
1043
1044 return snprintf(buf, 20, "%s\n", sdev->handler->name);
1045}
1046
1047static ssize_t
1048sdev_store_dh_state(struct device *dev, struct device_attribute *attr,
1049 const char *buf, size_t count)
1050{
1051 struct scsi_device *sdev = to_scsi_device(dev);
1052 int err = -EINVAL;
1053
1054 if (sdev->sdev_state == SDEV_CANCEL ||
1055 sdev->sdev_state == SDEV_DEL)
1056 return -ENODEV;
1057
1058 if (!sdev->handler) {
1059 /*
1060 * Attach to a device handler
1061 */
1062 err = scsi_dh_attach(sdev->request_queue, buf);
1063 } else if (!strncmp(buf, "activate", 8)) {
1064 /*
1065 * Activate a device handler
1066 */
1067 if (sdev->handler->activate)
1068 err = sdev->handler->activate(sdev, NULL, NULL);
1069 else
1070 err = 0;
1071 } else if (!strncmp(buf, "detach", 6)) {
1072 /*
1073 * Detach from a device handler
1074 */
1075 sdev_printk(KERN_WARNING, sdev,
1076 "can't detach handler %s.\n",
1077 sdev->handler->name);
1078 err = -EINVAL;
1079 }
1080
1081 return err < 0 ? err : count;
1082}
1083
1084static DEVICE_ATTR(dh_state, S_IRUGO | S_IWUSR, sdev_show_dh_state,
1085 sdev_store_dh_state);
77c9df96
HR
1086
1087static ssize_t
1088sdev_show_access_state(struct device *dev,
1089 struct device_attribute *attr,
1090 char *buf)
1091{
1092 struct scsi_device *sdev = to_scsi_device(dev);
1093 unsigned char access_state;
1094 const char *access_state_name;
1095
1096 if (!sdev->handler)
1097 return -EINVAL;
1098
1099 access_state = (sdev->access_state & SCSI_ACCESS_STATE_MASK);
1100 access_state_name = scsi_access_state_name(access_state);
1101
1102 return sprintf(buf, "%s\n",
1103 access_state_name ? access_state_name : "unknown");
1104}
1105static DEVICE_ATTR(access_state, S_IRUGO, sdev_show_access_state, NULL);
1106
1107static ssize_t
1108sdev_show_preferred_path(struct device *dev,
1109 struct device_attribute *attr,
1110 char *buf)
1111{
1112 struct scsi_device *sdev = to_scsi_device(dev);
1113
1114 if (!sdev->handler)
1115 return -EINVAL;
1116
1117 if (sdev->access_state & SCSI_ACCESS_STATE_PREFERRED)
1118 return sprintf(buf, "1\n");
1119 else
1120 return sprintf(buf, "0\n");
1121}
1122static DEVICE_ATTR(preferred_path, S_IRUGO, sdev_show_preferred_path, NULL);
41f95dd2
HR
1123#endif
1124
4a84067d
VD
1125static ssize_t
1126sdev_show_queue_ramp_up_period(struct device *dev,
1127 struct device_attribute *attr,
1128 char *buf)
1129{
1130 struct scsi_device *sdev;
1131 sdev = to_scsi_device(dev);
1132 return snprintf(buf, 20, "%u\n",
1133 jiffies_to_msecs(sdev->queue_ramp_up_period));
1134}
1135
1136static ssize_t
1137sdev_store_queue_ramp_up_period(struct device *dev,
1138 struct device_attribute *attr,
1139 const char *buf, size_t count)
1140{
1141 struct scsi_device *sdev = to_scsi_device(dev);
f7c65af5 1142 unsigned int period;
4a84067d 1143
f7c65af5 1144 if (kstrtouint(buf, 10, &period))
4a84067d
VD
1145 return -EINVAL;
1146
1147 sdev->queue_ramp_up_period = msecs_to_jiffies(period);
5cb9b40d 1148 return count;
4a84067d
VD
1149}
1150
276b20d0
HR
1151static DEVICE_ATTR(queue_ramp_up_period, S_IRUGO | S_IWUSR,
1152 sdev_show_queue_ramp_up_period,
1153 sdev_store_queue_ramp_up_period);
4a84067d 1154
276b20d0
HR
1155static umode_t scsi_sdev_attr_is_visible(struct kobject *kobj,
1156 struct attribute *attr, int i)
1da177e4 1157{
276b20d0 1158 struct device *dev = container_of(kobj, struct device, kobj);
1da177e4 1159 struct scsi_device *sdev = to_scsi_device(dev);
1da177e4 1160
1da177e4 1161
276b20d0
HR
1162 if (attr == &dev_attr_queue_depth.attr &&
1163 !sdev->host->hostt->change_queue_depth)
1164 return S_IRUGO;
1da177e4 1165
276b20d0
HR
1166 if (attr == &dev_attr_queue_ramp_up_period.attr &&
1167 !sdev->host->hostt->change_queue_depth)
1168 return 0;
1da177e4 1169
77c9df96
HR
1170#ifdef CONFIG_SCSI_DH
1171 if (attr == &dev_attr_access_state.attr &&
1172 !sdev->handler)
1173 return 0;
1174 if (attr == &dev_attr_preferred_path.attr &&
1175 !sdev->handler)
1176 return 0;
1177#endif
276b20d0 1178 return attr->mode;
1da177e4
LT
1179}
1180
7e47976b
HR
1181static umode_t scsi_sdev_bin_attr_is_visible(struct kobject *kobj,
1182 struct bin_attribute *attr, int i)
1183{
1184 struct device *dev = container_of(kobj, struct device, kobj);
1185 struct scsi_device *sdev = to_scsi_device(dev);
1186
1187
1188 if (attr == &dev_attr_vpd_pg80 && !sdev->vpd_pg80)
1189 return 0;
1190
68887582 1191 if (attr == &dev_attr_vpd_pg83 && !sdev->vpd_pg83)
7e47976b
HR
1192 return 0;
1193
1194 return S_IRUGO;
1195}
1196
276b20d0
HR
1197/* Default template for device attributes. May NOT be modified */
1198static struct attribute *scsi_sdev_attrs[] = {
1199 &dev_attr_device_blocked.attr,
1200 &dev_attr_type.attr,
1201 &dev_attr_scsi_level.attr,
1202 &dev_attr_device_busy.attr,
1203 &dev_attr_vendor.attr,
1204 &dev_attr_model.attr,
1205 &dev_attr_rev.attr,
1206 &dev_attr_rescan.attr,
1207 &dev_attr_delete.attr,
1208 &dev_attr_state.attr,
1209 &dev_attr_timeout.attr,
1210 &dev_attr_eh_timeout.attr,
1211 &dev_attr_iocounterbits.attr,
1212 &dev_attr_iorequest_cnt.attr,
1213 &dev_attr_iodone_cnt.attr,
1214 &dev_attr_ioerr_cnt.attr,
1215 &dev_attr_modalias.attr,
1216 &dev_attr_queue_depth.attr,
1217 &dev_attr_queue_type.attr,
248d4fe9 1218 &dev_attr_wwid.attr,
345e2960 1219 &dev_attr_blacklist.attr,
41f95dd2
HR
1220#ifdef CONFIG_SCSI_DH
1221 &dev_attr_dh_state.attr,
77c9df96
HR
1222 &dev_attr_access_state.attr,
1223 &dev_attr_preferred_path.attr,
41f95dd2 1224#endif
276b20d0
HR
1225 &dev_attr_queue_ramp_up_period.attr,
1226 REF_EVT(media_change),
1227 REF_EVT(inquiry_change_reported),
1228 REF_EVT(capacity_change_reported),
1229 REF_EVT(soft_threshold_reached),
1230 REF_EVT(mode_parameter_change_reported),
1231 REF_EVT(lun_change_reported),
1232 NULL
1233};
1234
b3ae8780
HR
1235static struct bin_attribute *scsi_sdev_bin_attrs[] = {
1236 &dev_attr_vpd_pg83,
1237 &dev_attr_vpd_pg80,
92e6246c 1238 &dev_attr_inquiry,
b3ae8780
HR
1239 NULL
1240};
276b20d0
HR
1241static struct attribute_group scsi_sdev_attr_group = {
1242 .attrs = scsi_sdev_attrs,
b3ae8780 1243 .bin_attrs = scsi_sdev_bin_attrs,
276b20d0 1244 .is_visible = scsi_sdev_attr_is_visible,
7e47976b 1245 .is_bin_visible = scsi_sdev_bin_attr_is_visible,
276b20d0
HR
1246};
1247
1248static const struct attribute_group *scsi_sdev_attr_groups[] = {
1249 &scsi_sdev_attr_group,
1250 NULL
1251};
1252
643eb2d9
JB
1253static int scsi_target_add(struct scsi_target *starget)
1254{
1255 int error;
1256
1257 if (starget->state != STARGET_CREATED)
1258 return 0;
1259
1260 error = device_add(&starget->dev);
1261 if (error) {
1262 dev_err(&starget->dev, "target device_add failed, error %d\n", error);
643eb2d9
JB
1263 return error;
1264 }
1265 transport_add_device(&starget->dev);
1266 starget->state = STARGET_RUNNING;
1267
bc4f2401
AS
1268 pm_runtime_set_active(&starget->dev);
1269 pm_runtime_enable(&starget->dev);
1270 device_enable_async_suspend(&starget->dev);
1271
643eb2d9
JB
1272 return 0;
1273}
1274
1da177e4
LT
1275/**
1276 * scsi_sysfs_add_sdev - add scsi device to sysfs
1277 * @sdev: scsi_device to add
1278 *
1279 * Return value:
1280 * 0 on Success / non-zero on Failure
1281 **/
1282int scsi_sysfs_add_sdev(struct scsi_device *sdev)
1283{
1284 int error, i;
80ed71ce 1285 struct request_queue *rq = sdev->request_queue;
643eb2d9 1286 struct scsi_target *starget = sdev->sdev_target;
1da177e4 1287
643eb2d9
JB
1288 error = scsi_target_add(starget);
1289 if (error)
1290 return error;
1291
1292 transport_configure_device(&starget->dev);
bc4f2401 1293
4cb077d9 1294 device_enable_async_suspend(&sdev->sdev_gendev);
bc4f2401
AS
1295 scsi_autopm_get_target(starget);
1296 pm_runtime_set_active(&sdev->sdev_gendev);
1297 pm_runtime_forbid(&sdev->sdev_gendev);
1298 pm_runtime_enable(&sdev->sdev_gendev);
1299 scsi_autopm_put_target(starget);
1300
bc4f2401
AS
1301 scsi_autopm_get_device(sdev);
1302
2930f817 1303 scsi_dh_add_device(sdev);
086b91d0 1304
4cd2459c
HR
1305 error = device_add(&sdev->sdev_gendev);
1306 if (error) {
1307 sdev_printk(KERN_INFO, sdev,
1308 "failed to add device: %d\n", error);
4cd2459c
HR
1309 return error;
1310 }
1311
4cb077d9 1312 device_enable_async_suspend(&sdev->sdev_dev);
ee959b00 1313 error = device_add(&sdev->sdev_dev);
1da177e4 1314 if (error) {
73d8c34f
AS
1315 sdev_printk(KERN_INFO, sdev,
1316 "failed to add class device: %d\n", error);
860dc736 1317 device_del(&sdev->sdev_gendev);
ee37e09d 1318 return error;
1da177e4 1319 }
860dc736
JB
1320 transport_add_device(&sdev->sdev_gendev);
1321 sdev->is_visible = 1;
1da177e4 1322
17cb960f 1323 error = bsg_scsi_register_queue(rq, &sdev->sdev_gendev);
80ed71ce 1324 if (error)
860dc736
JB
1325 /* we're treating error on bsg register as non-fatal,
1326 * so pretend nothing went wrong */
80ed71ce
JB
1327 sdev_printk(KERN_INFO, sdev,
1328 "Failed to register bsg queue, errno=%d\n", error);
1329
bfd12944 1330 /* add additional host specific attributes */
1da177e4
LT
1331 if (sdev->host->hostt->sdev_attrs) {
1332 for (i = 0; sdev->host->hostt->sdev_attrs[i]; i++) {
bfd12944 1333 error = device_create_file(&sdev->sdev_gendev,
1da177e4 1334 sdev->host->hostt->sdev_attrs[i]);
860dc736 1335 if (error)
ee37e09d 1336 return error;
1da177e4
LT
1337 }
1338 }
1da177e4 1339
86b87cde
SN
1340 if (sdev->host->hostt->sdev_groups) {
1341 error = sysfs_create_groups(&sdev->sdev_gendev.kobj,
1342 sdev->host->hostt->sdev_groups);
1343 if (error)
1344 return error;
1345 }
1346
6fe8c1db 1347 scsi_autopm_put_device(sdev);
1da177e4
LT
1348 return error;
1349}
1350
903f4fed 1351void __scsi_remove_device(struct scsi_device *sdev)
1da177e4 1352{
df133c21 1353 struct device *dev = &sdev->sdev_gendev;
0db6ca8a 1354 int res;
df133c21 1355
be821fd8
VK
1356 /*
1357 * This cleanup path is not reentrant and while it is impossible
1358 * to get a new reference with scsi_device_get() someone can still
1359 * hold a previously acquired one.
1360 */
1361 if (sdev->sdev_state == SDEV_DEL)
1362 return;
1363
860dc736 1364 if (sdev->is_visible) {
0db6ca8a
BVA
1365 /*
1366 * If scsi_internal_target_block() is running concurrently,
1367 * wait until it has finished before changing the device state.
1368 */
1369 mutex_lock(&sdev->state_mutex);
255ee932
BVA
1370 /*
1371 * If blocked, we go straight to DEL and restart the queue so
1372 * any commands issued during driver shutdown (like sync
1373 * cache) are errored immediately.
1374 */
0db6ca8a 1375 res = scsi_device_set_state(sdev, SDEV_CANCEL);
255ee932
BVA
1376 if (res != 0) {
1377 res = scsi_device_set_state(sdev, SDEV_DEL);
1378 if (res == 0)
1379 scsi_start_queue(sdev);
1380 }
0db6ca8a
BVA
1381 mutex_unlock(&sdev->state_mutex);
1382
1383 if (res != 0)
860dc736 1384 return;
1da177e4 1385
86b87cde
SN
1386 if (sdev->host->hostt->sdev_groups)
1387 sysfs_remove_groups(&sdev->sdev_gendev.kobj,
1388 sdev->host->hostt->sdev_groups);
1389
860dc736
JB
1390 bsg_unregister_queue(sdev->request_queue);
1391 device_unregister(&sdev->sdev_dev);
1392 transport_remove_device(dev);
e619e6cb
BVA
1393 device_del(dev);
1394 } else
1395 put_device(&sdev->sdev_dev);
b485462a
BVA
1396
1397 /*
1398 * Stop accepting new requests and wait until all queuecommand() and
1399 * scsi_run_queue() invocations have finished before tearing down the
1400 * device.
1401 */
0db6ca8a 1402 mutex_lock(&sdev->state_mutex);
1da177e4 1403 scsi_device_set_state(sdev, SDEV_DEL);
0db6ca8a
BVA
1404 mutex_unlock(&sdev->state_mutex);
1405
b485462a
BVA
1406 blk_cleanup_queue(sdev->request_queue);
1407 cancel_work_sync(&sdev->requeue_work);
1408
1da177e4
LT
1409 if (sdev->host->hostt->slave_destroy)
1410 sdev->host->hostt->slave_destroy(sdev);
df133c21 1411 transport_destroy_device(dev);
86cbfb56 1412
e63ed0d7
JB
1413 /*
1414 * Paired with the kref_get() in scsi_sysfs_initialize(). We have
1415 * remoed sysfs visibility from the device, so make the target
1416 * invisible if this was the last device underneath it.
1417 */
1418 scsi_target_reap(scsi_target(sdev));
1419
df133c21 1420 put_device(dev);
903f4fed
AS
1421}
1422
1423/**
1424 * scsi_remove_device - unregister a device from the scsi bus
1425 * @sdev: scsi_device to unregister
1426 **/
1427void scsi_remove_device(struct scsi_device *sdev)
1428{
54195002
AS
1429 struct Scsi_Host *shost = sdev->host;
1430
0b950672 1431 mutex_lock(&shost->scan_mutex);
903f4fed 1432 __scsi_remove_device(sdev);
0b950672 1433 mutex_unlock(&shost->scan_mutex);
1da177e4
LT
1434}
1435EXPORT_SYMBOL(scsi_remove_device);
1436
44818efb 1437static void __scsi_remove_target(struct scsi_target *starget)
1da177e4
LT
1438{
1439 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
1440 unsigned long flags;
a64358db 1441 struct scsi_device *sdev;
1da177e4
LT
1442
1443 spin_lock_irqsave(shost->host_lock, flags);
a64358db
AS
1444 restart:
1445 list_for_each_entry(sdev, &shost->__devices, siblings) {
fbce4d97
HR
1446 /*
1447 * We cannot call scsi_device_get() here, as
1448 * we might've been called from rmmod() causing
1449 * scsi_device_get() to fail the module_is_live()
1450 * check.
1451 */
1da177e4 1452 if (sdev->channel != starget->channel ||
81b6c999
HR
1453 sdev->id != starget->id)
1454 continue;
1455 if (sdev->sdev_state == SDEV_DEL ||
1456 sdev->sdev_state == SDEV_CANCEL ||
fbce4d97 1457 !get_device(&sdev->sdev_gendev))
1da177e4
LT
1458 continue;
1459 spin_unlock_irqrestore(shost->host_lock, flags);
1460 scsi_remove_device(sdev);
fbce4d97 1461 put_device(&sdev->sdev_gendev);
1da177e4 1462 spin_lock_irqsave(shost->host_lock, flags);
a64358db 1463 goto restart;
1da177e4
LT
1464 }
1465 spin_unlock_irqrestore(shost->host_lock, flags);
20b1e674 1466}
1467
1da177e4
LT
1468/**
1469 * scsi_remove_target - try to remove a target and all its devices
1470 * @dev: generic starget or parent of generic stargets to be removed
1471 *
1472 * Note: This is slightly racy. It is possible that if the user
1473 * requests the addition of another device then the target won't be
1474 * removed.
1475 */
1476void scsi_remove_target(struct device *dev)
1477{
3b661a92 1478 struct Scsi_Host *shost = dev_to_shost(dev->parent);
305c2e71 1479 struct scsi_target *starget;
3b661a92
DW
1480 unsigned long flags;
1481
40998193 1482restart:
3b661a92
DW
1483 spin_lock_irqsave(shost->host_lock, flags);
1484 list_for_each_entry(starget, &shost->__targets, siblings) {
90a88d6e 1485 if (starget->state == STARGET_DEL ||
f9279c96
EM
1486 starget->state == STARGET_REMOVE ||
1487 starget->state == STARGET_CREATED_REMOVE)
3b661a92
DW
1488 continue;
1489 if (starget->dev.parent == dev || &starget->dev == dev) {
e63ed0d7 1490 kref_get(&starget->reap_ref);
f9279c96
EM
1491 if (starget->state == STARGET_CREATED)
1492 starget->state = STARGET_CREATED_REMOVE;
1493 else
1494 starget->state = STARGET_REMOVE;
bc3f02a7 1495 spin_unlock_irqrestore(shost->host_lock, flags);
bc3f02a7 1496 __scsi_remove_target(starget);
40998193
CH
1497 scsi_target_reap(starget);
1498 goto restart;
3b661a92 1499 }
1da177e4 1500 }
3b661a92 1501 spin_unlock_irqrestore(shost->host_lock, flags);
1da177e4
LT
1502}
1503EXPORT_SYMBOL(scsi_remove_target);
1504
1505int scsi_register_driver(struct device_driver *drv)
1506{
1507 drv->bus = &scsi_bus_type;
1508
1509 return driver_register(drv);
1510}
1511EXPORT_SYMBOL(scsi_register_driver);
1512
1513int scsi_register_interface(struct class_interface *intf)
1514{
1515 intf->class = &sdev_class;
1516
1517 return class_interface_register(intf);
1518}
1519EXPORT_SYMBOL(scsi_register_interface);
1520
1da177e4
LT
1521/**
1522 * scsi_sysfs_add_host - add scsi host to subsystem
1523 * @shost: scsi host struct to add to subsystem
1da177e4
LT
1524 **/
1525int scsi_sysfs_add_host(struct Scsi_Host *shost)
1526{
1527 int error, i;
1528
f7120a4f 1529 /* add host specific attributes */
1da177e4
LT
1530 if (shost->hostt->shost_attrs) {
1531 for (i = 0; shost->hostt->shost_attrs[i]; i++) {
ee959b00 1532 error = device_create_file(&shost->shost_dev,
f7120a4f 1533 shost->hostt->shost_attrs[i]);
1da177e4
LT
1534 if (error)
1535 return error;
1536 }
1537 }
1538
1539 transport_register_device(&shost->shost_gendev);
d52b3815 1540 transport_configure_device(&shost->shost_gendev);
1da177e4
LT
1541 return 0;
1542}
1543
bfd12944
KS
1544static struct device_type scsi_dev_type = {
1545 .name = "scsi_device",
1546 .release = scsi_device_dev_release,
1547 .groups = scsi_sdev_attr_groups,
1548};
1549
1da177e4
LT
1550void scsi_sysfs_device_initialize(struct scsi_device *sdev)
1551{
1552 unsigned long flags;
1553 struct Scsi_Host *shost = sdev->host;
1554 struct scsi_target *starget = sdev->sdev_target;
1555
1556 device_initialize(&sdev->sdev_gendev);
1557 sdev->sdev_gendev.bus = &scsi_bus_type;
bfd12944 1558 sdev->sdev_gendev.type = &scsi_dev_type;
9cb78c16 1559 dev_set_name(&sdev->sdev_gendev, "%d:%d:%d:%llu",
71610f55
KS
1560 sdev->host->host_no, sdev->channel, sdev->id, sdev->lun);
1561
ee959b00 1562 device_initialize(&sdev->sdev_dev);
37e6ba00 1563 sdev->sdev_dev.parent = get_device(&sdev->sdev_gendev);
ee959b00 1564 sdev->sdev_dev.class = &sdev_class;
9cb78c16 1565 dev_set_name(&sdev->sdev_dev, "%d:%d:%d:%llu",
71610f55 1566 sdev->host->host_no, sdev->channel, sdev->id, sdev->lun);
50c4e964
AS
1567 /*
1568 * Get a default scsi_level from the target (derived from sibling
1569 * devices). This is the best we can do for guessing how to set
1570 * sdev->lun_in_cdb for the initial INQUIRY command. For LUN 0 the
1571 * setting doesn't matter, because all the bits are zero anyway.
1572 * But it does matter for higher LUNs.
1573 */
7c9d6f16 1574 sdev->scsi_level = starget->scsi_level;
50c4e964
AS
1575 if (sdev->scsi_level <= SCSI_2 &&
1576 sdev->scsi_level != SCSI_UNKNOWN &&
1577 !shost->no_scsi2_lun_in_cdb)
1578 sdev->lun_in_cdb = 1;
1579
1da177e4
LT
1580 transport_setup_device(&sdev->sdev_gendev);
1581 spin_lock_irqsave(shost->host_lock, flags);
1582 list_add_tail(&sdev->same_target_siblings, &starget->devices);
1583 list_add_tail(&sdev->siblings, &shost->__devices);
1584 spin_unlock_irqrestore(shost->host_lock, flags);
e63ed0d7
JB
1585 /*
1586 * device can now only be removed via __scsi_remove_device() so hold
1587 * the target. Target will be held in CREATED state until something
1588 * beneath it becomes visible (in which case it moves to RUNNING)
1589 */
1590 kref_get(&starget->reap_ref);
1da177e4
LT
1591}
1592
1593int scsi_is_sdev_device(const struct device *dev)
1594{
13ba9bcb 1595 return dev->type == &scsi_dev_type;
1da177e4
LT
1596}
1597EXPORT_SYMBOL(scsi_is_sdev_device);
1598
1599/* A blank transport template that is used in drivers that don't
1600 * yet implement Transport Attributes */
1601struct scsi_transport_template blank_transport_template = { { { {NULL, }, }, }, };