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 /* Protect sht->present and sht->proc_dir */
47 static DEFINE_MUTEX(global_host_template_mutex
);
49 static ssize_t
proc_scsi_host_write(struct file
*file
, const char __user
*buf
,
50 size_t count
, loff_t
*ppos
)
52 struct Scsi_Host
*shost
= PDE_DATA(file_inode(file
));
53 ssize_t ret
= -ENOMEM
;
56 if (count
> PROC_BLOCK_SIZE
)
59 if (!shost
->hostt
->write_info
)
62 page
= (char *)__get_free_page(GFP_KERNEL
);
65 if (copy_from_user(page
, buf
, count
))
67 ret
= shost
->hostt
->write_info(shost
, page
, count
);
70 free_page((unsigned long)page
);
74 static int proc_scsi_show(struct seq_file
*m
, void *v
)
76 struct Scsi_Host
*shost
= m
->private;
77 return shost
->hostt
->show_info(m
, shost
);
80 static int proc_scsi_host_open(struct inode
*inode
, struct file
*file
)
82 return single_open_size(file
, proc_scsi_show
, PDE_DATA(inode
),
86 static const struct file_operations proc_scsi_fops
= {
87 .open
= proc_scsi_host_open
,
88 .release
= single_release
,
91 .write
= proc_scsi_host_write
95 * scsi_proc_hostdir_add - Create directory in /proc for a scsi host
96 * @sht: owner of this directory
98 * Sets sht->proc_dir to the new directory.
101 void scsi_proc_hostdir_add(struct scsi_host_template
*sht
)
106 mutex_lock(&global_host_template_mutex
);
107 if (!sht
->present
++) {
108 sht
->proc_dir
= proc_mkdir(sht
->proc_name
, proc_scsi
);
110 printk(KERN_ERR
"%s: proc_mkdir failed for %s\n",
111 __func__
, sht
->proc_name
);
113 mutex_unlock(&global_host_template_mutex
);
117 * scsi_proc_hostdir_rm - remove directory in /proc for a scsi host
118 * @sht: owner of directory
120 void scsi_proc_hostdir_rm(struct scsi_host_template
*sht
)
125 mutex_lock(&global_host_template_mutex
);
126 if (!--sht
->present
&& sht
->proc_dir
) {
127 remove_proc_entry(sht
->proc_name
, proc_scsi
);
128 sht
->proc_dir
= NULL
;
130 mutex_unlock(&global_host_template_mutex
);
135 * scsi_proc_host_add - Add entry for this host to appropriate /proc dir
136 * @shost: host to add
138 void scsi_proc_host_add(struct Scsi_Host
*shost
)
140 struct scsi_host_template
*sht
= shost
->hostt
;
141 struct proc_dir_entry
*p
;
147 sprintf(name
,"%d", shost
->host_no
);
148 p
= proc_create_data(name
, S_IRUGO
| S_IWUSR
,
149 sht
->proc_dir
, &proc_scsi_fops
, shost
);
151 printk(KERN_ERR
"%s: Failed to register host %d in"
152 "%s\n", __func__
, shost
->host_no
,
157 * scsi_proc_host_rm - remove this host's entry from /proc
160 void scsi_proc_host_rm(struct Scsi_Host
*shost
)
164 if (!shost
->hostt
->proc_dir
)
167 sprintf(name
,"%d", shost
->host_no
);
168 remove_proc_entry(name
, shost
->hostt
->proc_dir
);
171 * proc_print_scsidevice - return data about this host
172 * @dev: A scsi device
173 * @data: &struct seq_file to output to.
175 * Description: prints Host, Channel, Id, Lun, Vendor, Model, Rev, Type,
178 static int proc_print_scsidevice(struct device
*dev
, void *data
)
180 struct scsi_device
*sdev
;
181 struct seq_file
*s
= data
;
184 if (!scsi_is_sdev_device(dev
))
187 sdev
= to_scsi_device(dev
);
189 "Host: scsi%d Channel: %02d Id: %02d Lun: %02llu\n Vendor: ",
190 sdev
->host
->host_no
, sdev
->channel
, sdev
->id
, sdev
->lun
);
191 for (i
= 0; i
< 8; i
++) {
192 if (sdev
->vendor
[i
] >= 0x20)
193 seq_putc(s
, sdev
->vendor
[i
]);
198 seq_puts(s
, " Model: ");
199 for (i
= 0; i
< 16; i
++) {
200 if (sdev
->model
[i
] >= 0x20)
201 seq_putc(s
, sdev
->model
[i
]);
206 seq_puts(s
, " Rev: ");
207 for (i
= 0; i
< 4; i
++) {
208 if (sdev
->rev
[i
] >= 0x20)
209 seq_putc(s
, sdev
->rev
[i
]);
216 seq_printf(s
, " Type: %s ", scsi_device_type(sdev
->type
));
217 seq_printf(s
, " ANSI SCSI revision: %02x",
218 sdev
->scsi_level
- (sdev
->scsi_level
> 1));
219 if (sdev
->scsi_level
== 2)
220 seq_puts(s
, " CCS\n");
229 * scsi_add_single_device - Respond to user request to probe for/add device
230 * @host: user-supplied decimal integer
231 * @channel: user-supplied decimal integer
232 * @id: user-supplied decimal integer
233 * @lun: user-supplied decimal integer
235 * Description: called by writing "scsi add-single-device" to /proc/scsi/scsi.
237 * does scsi_host_lookup() and either user_scan() if that transport
238 * type supports it, or else scsi_scan_host_selected()
240 * Note: this seems to be aimed exclusively at SCSI parallel busses.
243 static int scsi_add_single_device(uint host
, uint channel
, uint id
, uint lun
)
245 struct Scsi_Host
*shost
;
248 shost
= scsi_host_lookup(host
);
252 if (shost
->transportt
->user_scan
)
253 error
= shost
->transportt
->user_scan(shost
, channel
, id
, lun
);
255 error
= scsi_scan_host_selected(shost
, channel
, id
, lun
,
257 scsi_host_put(shost
);
262 * scsi_remove_single_device - Respond to user request to remove a device
263 * @host: user-supplied decimal integer
264 * @channel: user-supplied decimal integer
265 * @id: user-supplied decimal integer
266 * @lun: user-supplied decimal integer
268 * Description: called by writing "scsi remove-single-device" to
269 * /proc/scsi/scsi. Does a scsi_device_lookup() and scsi_remove_device()
271 static int scsi_remove_single_device(uint host
, uint channel
, uint id
, uint lun
)
273 struct scsi_device
*sdev
;
274 struct Scsi_Host
*shost
;
277 shost
= scsi_host_lookup(host
);
280 sdev
= scsi_device_lookup(shost
, channel
, id
, lun
);
282 scsi_remove_device(sdev
);
283 scsi_device_put(sdev
);
287 scsi_host_put(shost
);
292 * proc_scsi_write - handle writes to /proc/scsi/scsi
294 * @buf: buffer to write
295 * @length: length of buf, at most PAGE_SIZE
298 * Description: this provides a legacy mechanism to add or remove devices by
299 * Host, Channel, ID, and Lun. To use,
300 * "echo 'scsi add-single-device 0 1 2 3' > /proc/scsi/scsi" or
301 * "echo 'scsi remove-single-device 0 1 2 3' > /proc/scsi/scsi" with
302 * "0 1 2 3" replaced by the Host, Channel, Id, and Lun.
304 * Note: this seems to be aimed at parallel SCSI. Most modern busses (USB,
305 * SATA, Firewire, Fibre Channel, etc) dynamically assign these values to
306 * provide a unique identifier and nothing more.
310 static ssize_t
proc_scsi_write(struct file
*file
, const char __user
*buf
,
311 size_t length
, loff_t
*ppos
)
313 int host
, channel
, id
, lun
;
317 if (!buf
|| length
> PAGE_SIZE
)
320 buffer
= (char *)__get_free_page(GFP_KERNEL
);
325 if (copy_from_user(buffer
, buf
, length
))
329 if (length
< PAGE_SIZE
)
330 buffer
[length
] = '\0';
331 else if (buffer
[PAGE_SIZE
-1])
335 * Usage: echo "scsi add-single-device 0 1 2 3" >/proc/scsi/scsi
336 * with "0 1 2 3" replaced by your "Host Channel Id Lun".
338 if (!strncmp("scsi add-single-device", buffer
, 22)) {
341 host
= simple_strtoul(p
, &p
, 0);
342 channel
= simple_strtoul(p
+ 1, &p
, 0);
343 id
= simple_strtoul(p
+ 1, &p
, 0);
344 lun
= simple_strtoul(p
+ 1, &p
, 0);
346 err
= scsi_add_single_device(host
, channel
, id
, lun
);
349 * Usage: echo "scsi remove-single-device 0 1 2 3" >/proc/scsi/scsi
350 * with "0 1 2 3" replaced by your "Host Channel Id Lun".
352 } else if (!strncmp("scsi remove-single-device", buffer
, 25)) {
355 host
= simple_strtoul(p
, &p
, 0);
356 channel
= simple_strtoul(p
+ 1, &p
, 0);
357 id
= simple_strtoul(p
+ 1, &p
, 0);
358 lun
= simple_strtoul(p
+ 1, &p
, 0);
360 err
= scsi_remove_single_device(host
, channel
, id
, lun
);
364 * convert success returns so that we return the
365 * number of bytes consumed.
371 free_page((unsigned long)buffer
);
375 static int always_match(struct device
*dev
, const void *data
)
380 static inline struct device
*next_scsi_device(struct device
*start
)
382 struct device
*next
= bus_find_device(&scsi_bus_type
, start
, NULL
,
388 static void *scsi_seq_start(struct seq_file
*sfile
, loff_t
*pos
)
390 struct device
*dev
= NULL
;
393 while ((dev
= next_scsi_device(dev
))) {
401 static void *scsi_seq_next(struct seq_file
*sfile
, void *v
, loff_t
*pos
)
405 return next_scsi_device(v
);
408 static void scsi_seq_stop(struct seq_file
*sfile
, void *v
)
413 static int scsi_seq_show(struct seq_file
*sfile
, void *dev
)
416 seq_puts(sfile
, "Attached devices:\n");
418 return proc_print_scsidevice(dev
, sfile
);
421 static const struct seq_operations scsi_seq_ops
= {
422 .start
= scsi_seq_start
,
423 .next
= scsi_seq_next
,
424 .stop
= scsi_seq_stop
,
425 .show
= scsi_seq_show
429 * proc_scsi_open - glue function
431 * @file: passed to single_open()
433 * Associates proc_scsi_show with this file
435 static int proc_scsi_open(struct inode
*inode
, struct file
*file
)
438 * We don't really need this for the write case but it doesn't
441 return seq_open(file
, &scsi_seq_ops
);
444 static const struct file_operations proc_scsi_operations
= {
445 .owner
= THIS_MODULE
,
446 .open
= proc_scsi_open
,
448 .write
= proc_scsi_write
,
450 .release
= seq_release
,
454 * scsi_init_procfs - create scsi and scsi/scsi in procfs
456 int __init
scsi_init_procfs(void)
458 struct proc_dir_entry
*pde
;
460 proc_scsi
= proc_mkdir("scsi", NULL
);
464 pde
= proc_create("scsi/scsi", 0, NULL
, &proc_scsi_operations
);
471 remove_proc_entry("scsi", NULL
);
477 * scsi_exit_procfs - Remove scsi/scsi and scsi from procfs
479 void scsi_exit_procfs(void)
481 remove_proc_entry("scsi/scsi", NULL
);
482 remove_proc_entry("scsi", NULL
);