1 // SPDX-License-Identifier: GPL-2.0
3 * linux/drivers/scsi/scsi_proc.c
5 * The functions in this file provide an interface between
6 * the PROC file system and the SCSI device drivers
7 * It is mainly used for debugging, statistics and to pass
8 * information directly to the lowlevel driver.
10 * (c) 1995 Michael Neuffer neuffer@goofy.zdv.uni-mainz.de
11 * Version: 0.99.8 last change: 95/09/13
13 * generic command parser provided by:
14 * Andreas Heilwagen <crashcar@informatik.uni-koblenz.de>
16 * generic_proc_info() support of xxxx_info() by:
17 * Michael A. Griffith <grif@acm.org>
20 #include <linux/module.h>
21 #include <linux/init.h>
22 #include <linux/string.h>
24 #include <linux/proc_fs.h>
25 #include <linux/errno.h>
26 #include <linux/blkdev.h>
27 #include <linux/seq_file.h>
28 #include <linux/mutex.h>
29 #include <linux/gfp.h>
30 #include <linux/uaccess.h>
32 #include <scsi/scsi.h>
33 #include <scsi/scsi_device.h>
34 #include <scsi/scsi_host.h>
35 #include <scsi/scsi_transport.h>
37 #include "scsi_priv.h"
38 #include "scsi_logging.h"
41 /* 4K page size, but our output routines, use some slack for overruns */
42 #define PROC_BLOCK_SIZE (3*1024)
44 static struct proc_dir_entry
*proc_scsi
;
46 /* Protects scsi_proc_list */
47 static DEFINE_MUTEX(global_host_template_mutex
);
48 static LIST_HEAD(scsi_proc_list
);
51 * struct scsi_proc_entry - (host template, SCSI proc dir) association
52 * @entry: entry in scsi_proc_list.
53 * @sht: SCSI host template associated with the procfs directory.
54 * @proc_dir: procfs directory associated with the SCSI host template.
55 * @present: Number of SCSI hosts instantiated for @sht.
57 struct scsi_proc_entry
{
58 struct list_head entry
;
59 const struct scsi_host_template
*sht
;
60 struct proc_dir_entry
*proc_dir
;
64 static ssize_t
proc_scsi_host_write(struct file
*file
, const char __user
*buf
,
65 size_t count
, loff_t
*ppos
)
67 struct Scsi_Host
*shost
= pde_data(file_inode(file
));
68 ssize_t ret
= -ENOMEM
;
71 if (count
> PROC_BLOCK_SIZE
)
74 if (!shost
->hostt
->write_info
)
77 page
= (char *)__get_free_page(GFP_KERNEL
);
80 if (copy_from_user(page
, buf
, count
))
82 ret
= shost
->hostt
->write_info(shost
, page
, count
);
85 free_page((unsigned long)page
);
89 static int proc_scsi_show(struct seq_file
*m
, void *v
)
91 struct Scsi_Host
*shost
= m
->private;
92 return shost
->hostt
->show_info(m
, shost
);
95 static int proc_scsi_host_open(struct inode
*inode
, struct file
*file
)
97 return single_open_size(file
, proc_scsi_show
, pde_data(inode
),
101 static struct scsi_proc_entry
*
102 __scsi_lookup_proc_entry(const struct scsi_host_template
*sht
)
104 struct scsi_proc_entry
*e
;
106 lockdep_assert_held(&global_host_template_mutex
);
108 list_for_each_entry(e
, &scsi_proc_list
, entry
)
115 static struct scsi_proc_entry
*
116 scsi_lookup_proc_entry(const struct scsi_host_template
*sht
)
118 struct scsi_proc_entry
*e
;
120 mutex_lock(&global_host_template_mutex
);
121 e
= __scsi_lookup_proc_entry(sht
);
122 mutex_unlock(&global_host_template_mutex
);
128 * scsi_template_proc_dir() - returns the procfs dir for a SCSI host template
129 * @sht: SCSI host template pointer.
131 struct proc_dir_entry
*
132 scsi_template_proc_dir(const struct scsi_host_template
*sht
)
134 struct scsi_proc_entry
*e
= scsi_lookup_proc_entry(sht
);
136 return e
? e
->proc_dir
: NULL
;
138 EXPORT_SYMBOL_GPL(scsi_template_proc_dir
);
140 static const struct proc_ops proc_scsi_ops
= {
141 .proc_open
= proc_scsi_host_open
,
142 .proc_release
= single_release
,
143 .proc_read
= seq_read
,
144 .proc_lseek
= seq_lseek
,
145 .proc_write
= proc_scsi_host_write
149 * scsi_proc_hostdir_add - Create directory in /proc for a scsi host
150 * @sht: owner of this directory
152 * Sets sht->proc_dir to the new directory.
154 int scsi_proc_hostdir_add(const struct scsi_host_template
*sht
)
156 struct scsi_proc_entry
*e
;
162 mutex_lock(&global_host_template_mutex
);
163 e
= __scsi_lookup_proc_entry(sht
);
165 e
= kzalloc(sizeof(*e
), GFP_KERNEL
);
173 e
->proc_dir
= proc_mkdir(sht
->proc_name
, proc_scsi
);
175 printk(KERN_ERR
"%s: proc_mkdir failed for %s\n", __func__
,
181 list_add_tail(&e
->entry
, &scsi_proc_list
);
186 mutex_unlock(&global_host_template_mutex
);
193 * scsi_proc_hostdir_rm - remove directory in /proc for a scsi host
194 * @sht: owner of directory
196 void scsi_proc_hostdir_rm(const struct scsi_host_template
*sht
)
198 struct scsi_proc_entry
*e
;
203 mutex_lock(&global_host_template_mutex
);
204 e
= __scsi_lookup_proc_entry(sht
);
205 if (e
&& !--e
->present
) {
206 remove_proc_entry(sht
->proc_name
, proc_scsi
);
210 mutex_unlock(&global_host_template_mutex
);
215 * scsi_proc_host_add - Add entry for this host to appropriate /proc dir
216 * @shost: host to add
218 void scsi_proc_host_add(struct Scsi_Host
*shost
)
220 const struct scsi_host_template
*sht
= shost
->hostt
;
221 struct scsi_proc_entry
*e
;
222 struct proc_dir_entry
*p
;
228 e
= scsi_lookup_proc_entry(sht
);
232 sprintf(name
,"%d", shost
->host_no
);
233 p
= proc_create_data(name
, S_IRUGO
| S_IWUSR
, e
->proc_dir
,
234 &proc_scsi_ops
, shost
);
240 shost_printk(KERN_ERR
, shost
,
241 "%s: Failed to register host (%s failed)\n", __func__
,
242 e
? "proc_create_data()" : "scsi_proc_hostdir_add()");
246 * scsi_proc_host_rm - remove this host's entry from /proc
249 void scsi_proc_host_rm(struct Scsi_Host
*shost
)
251 const struct scsi_host_template
*sht
= shost
->hostt
;
252 struct scsi_proc_entry
*e
;
258 e
= scsi_lookup_proc_entry(sht
);
262 sprintf(name
,"%d", shost
->host_no
);
263 remove_proc_entry(name
, e
->proc_dir
);
266 * proc_print_scsidevice - return data about this host
267 * @dev: A scsi device
268 * @data: &struct seq_file to output to.
270 * Description: prints Host, Channel, Id, Lun, Vendor, Model, Rev, Type,
273 static int proc_print_scsidevice(struct device
*dev
, void *data
)
275 struct scsi_device
*sdev
;
276 struct seq_file
*s
= data
;
279 if (!scsi_is_sdev_device(dev
))
282 sdev
= to_scsi_device(dev
);
284 "Host: scsi%d Channel: %02d Id: %02d Lun: %02llu\n Vendor: ",
285 sdev
->host
->host_no
, sdev
->channel
, sdev
->id
, sdev
->lun
);
286 for (i
= 0; i
< 8; i
++) {
287 if (sdev
->vendor
[i
] >= 0x20)
288 seq_putc(s
, sdev
->vendor
[i
]);
293 seq_puts(s
, " Model: ");
294 for (i
= 0; i
< 16; i
++) {
295 if (sdev
->model
[i
] >= 0x20)
296 seq_putc(s
, sdev
->model
[i
]);
301 seq_puts(s
, " Rev: ");
302 for (i
= 0; i
< 4; i
++) {
303 if (sdev
->rev
[i
] >= 0x20)
304 seq_putc(s
, sdev
->rev
[i
]);
311 seq_printf(s
, " Type: %s ", scsi_device_type(sdev
->type
));
312 seq_printf(s
, " ANSI SCSI revision: %02x",
313 sdev
->scsi_level
- (sdev
->scsi_level
> 1));
314 if (sdev
->scsi_level
== 2)
315 seq_puts(s
, " CCS\n");
324 * scsi_add_single_device - Respond to user request to probe for/add device
325 * @host: user-supplied decimal integer
326 * @channel: user-supplied decimal integer
327 * @id: user-supplied decimal integer
328 * @lun: user-supplied decimal integer
330 * Description: called by writing "scsi add-single-device" to /proc/scsi/scsi.
332 * does scsi_host_lookup() and either user_scan() if that transport
333 * type supports it, or else scsi_scan_host_selected()
335 * Note: this seems to be aimed exclusively at SCSI parallel busses.
338 static int scsi_add_single_device(uint host
, uint channel
, uint id
, uint lun
)
340 struct Scsi_Host
*shost
;
343 shost
= scsi_host_lookup(host
);
347 if (shost
->transportt
->user_scan
)
348 error
= shost
->transportt
->user_scan(shost
, channel
, id
, lun
);
350 error
= scsi_scan_host_selected(shost
, channel
, id
, lun
,
352 scsi_host_put(shost
);
357 * scsi_remove_single_device - Respond to user request to remove a device
358 * @host: user-supplied decimal integer
359 * @channel: user-supplied decimal integer
360 * @id: user-supplied decimal integer
361 * @lun: user-supplied decimal integer
363 * Description: called by writing "scsi remove-single-device" to
364 * /proc/scsi/scsi. Does a scsi_device_lookup() and scsi_remove_device()
366 static int scsi_remove_single_device(uint host
, uint channel
, uint id
, uint lun
)
368 struct scsi_device
*sdev
;
369 struct Scsi_Host
*shost
;
372 shost
= scsi_host_lookup(host
);
375 sdev
= scsi_device_lookup(shost
, channel
, id
, lun
);
377 scsi_remove_device(sdev
);
378 scsi_device_put(sdev
);
382 scsi_host_put(shost
);
387 * proc_scsi_write - handle writes to /proc/scsi/scsi
389 * @buf: buffer to write
390 * @length: length of buf, at most PAGE_SIZE
393 * Description: this provides a legacy mechanism to add or remove devices by
394 * Host, Channel, ID, and Lun. To use,
395 * "echo 'scsi add-single-device 0 1 2 3' > /proc/scsi/scsi" or
396 * "echo 'scsi remove-single-device 0 1 2 3' > /proc/scsi/scsi" with
397 * "0 1 2 3" replaced by the Host, Channel, Id, and Lun.
399 * Note: this seems to be aimed at parallel SCSI. Most modern busses (USB,
400 * SATA, Firewire, Fibre Channel, etc) dynamically assign these values to
401 * provide a unique identifier and nothing more.
405 static ssize_t
proc_scsi_write(struct file
*file
, const char __user
*buf
,
406 size_t length
, loff_t
*ppos
)
408 int host
, channel
, id
, lun
;
409 char *buffer
, *end
, *p
;
412 if (!buf
|| length
> PAGE_SIZE
)
415 buffer
= (char *)__get_free_page(GFP_KERNEL
);
420 if (copy_from_user(buffer
, buf
, length
))
424 if (length
< PAGE_SIZE
) {
425 end
= buffer
+ length
;
428 end
= buffer
+ PAGE_SIZE
- 1;
434 * Usage: echo "scsi add-single-device 0 1 2 3" >/proc/scsi/scsi
435 * with "0 1 2 3" replaced by your "Host Channel Id Lun".
437 if (!strncmp("scsi add-single-device", buffer
, 22)) {
440 host
= (p
< end
) ? simple_strtoul(p
, &p
, 0) : 0;
441 channel
= (p
+ 1 < end
) ? simple_strtoul(p
+ 1, &p
, 0) : 0;
442 id
= (p
+ 1 < end
) ? simple_strtoul(p
+ 1, &p
, 0) : 0;
443 lun
= (p
+ 1 < end
) ? simple_strtoul(p
+ 1, &p
, 0) : 0;
445 err
= scsi_add_single_device(host
, channel
, id
, lun
);
448 * Usage: echo "scsi remove-single-device 0 1 2 3" >/proc/scsi/scsi
449 * with "0 1 2 3" replaced by your "Host Channel Id Lun".
451 } else if (!strncmp("scsi remove-single-device", buffer
, 25)) {
454 host
= (p
< end
) ? simple_strtoul(p
, &p
, 0) : 0;
455 channel
= (p
+ 1 < end
) ? simple_strtoul(p
+ 1, &p
, 0) : 0;
456 id
= (p
+ 1 < end
) ? simple_strtoul(p
+ 1, &p
, 0) : 0;
457 lun
= (p
+ 1 < end
) ? simple_strtoul(p
+ 1, &p
, 0) : 0;
459 err
= scsi_remove_single_device(host
, channel
, id
, lun
);
463 * convert success returns so that we return the
464 * number of bytes consumed.
470 free_page((unsigned long)buffer
);
474 static inline struct device
*next_scsi_device(struct device
*start
)
476 struct device
*next
= bus_find_next_device(&scsi_bus_type
, start
);
482 static void *scsi_seq_start(struct seq_file
*sfile
, loff_t
*pos
)
484 struct device
*dev
= NULL
;
487 while ((dev
= next_scsi_device(dev
))) {
495 static void *scsi_seq_next(struct seq_file
*sfile
, void *v
, loff_t
*pos
)
499 return next_scsi_device(v
);
502 static void scsi_seq_stop(struct seq_file
*sfile
, void *v
)
507 static int scsi_seq_show(struct seq_file
*sfile
, void *dev
)
510 seq_puts(sfile
, "Attached devices:\n");
512 return proc_print_scsidevice(dev
, sfile
);
515 static const struct seq_operations scsi_seq_ops
= {
516 .start
= scsi_seq_start
,
517 .next
= scsi_seq_next
,
518 .stop
= scsi_seq_stop
,
519 .show
= scsi_seq_show
523 * proc_scsi_open - glue function
525 * @file: passed to single_open()
527 * Associates proc_scsi_show with this file
529 static int proc_scsi_open(struct inode
*inode
, struct file
*file
)
532 * We don't really need this for the write case but it doesn't
535 return seq_open(file
, &scsi_seq_ops
);
538 static const struct proc_ops scsi_scsi_proc_ops
= {
539 .proc_open
= proc_scsi_open
,
540 .proc_read
= seq_read
,
541 .proc_write
= proc_scsi_write
,
542 .proc_lseek
= seq_lseek
,
543 .proc_release
= seq_release
,
547 * scsi_init_procfs - create scsi and scsi/scsi in procfs
549 int __init
scsi_init_procfs(void)
551 struct proc_dir_entry
*pde
;
553 proc_scsi
= proc_mkdir("scsi", NULL
);
557 pde
= proc_create("scsi/scsi", 0, NULL
, &scsi_scsi_proc_ops
);
564 remove_proc_entry("scsi", NULL
);
570 * scsi_exit_procfs - Remove scsi/scsi and scsi from procfs
572 void scsi_exit_procfs(void)
574 remove_proc_entry("scsi/scsi", NULL
);
575 remove_proc_entry("scsi", NULL
);