2 * linux/drivers/scsi/scsi_proc.c
4 * The functions in this file provide an interface between
5 * the PROC file system and the SCSI device drivers
6 * It is mainly used for debugging, statistics and to pass
7 * information directly to the lowlevel driver.
9 * (c) 1995 Michael Neuffer neuffer@goofy.zdv.uni-mainz.de
10 * Version: 0.99.8 last change: 95/09/13
12 * generic command parser provided by:
13 * Andreas Heilwagen <crashcar@informatik.uni-koblenz.de>
15 * generic_proc_info() support of xxxx_info() by:
16 * Michael A. Griffith <grif@acm.org>
19 #include <linux/module.h>
20 #include <linux/init.h>
21 #include <linux/string.h>
23 #include <linux/slab.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 <asm/uaccess.h>
30 #include <scsi/scsi.h>
31 #include <scsi/scsi_device.h>
32 #include <scsi/scsi_host.h>
34 #include "scsi_priv.h"
35 #include "scsi_logging.h"
38 /* 4K page size, but our output routines, use some slack for overruns */
39 #define PROC_BLOCK_SIZE (3*1024)
41 static struct proc_dir_entry
*proc_scsi
;
43 /* Protect sht->present and sht->proc_dir */
44 static DECLARE_MUTEX(global_host_template_sem
);
46 static int proc_scsi_read(char *buffer
, char **start
, off_t offset
,
47 int length
, int *eof
, void *data
)
49 struct Scsi_Host
*shost
= data
;
52 n
= shost
->hostt
->proc_info(shost
, buffer
, start
, offset
, length
, 0);
58 static int proc_scsi_write_proc(struct file
*file
, const char __user
*buf
,
59 unsigned long count
, void *data
)
61 struct Scsi_Host
*shost
= data
;
62 ssize_t ret
= -ENOMEM
;
66 if (count
> PROC_BLOCK_SIZE
)
69 page
= (char *)__get_free_page(GFP_KERNEL
);
72 if (copy_from_user(page
, buf
, count
))
74 ret
= shost
->hostt
->proc_info(shost
, page
, &start
, 0, count
, 1);
77 free_page((unsigned long)page
);
81 void scsi_proc_hostdir_add(struct scsi_host_template
*sht
)
86 down(&global_host_template_sem
);
87 if (!sht
->present
++) {
88 sht
->proc_dir
= proc_mkdir(sht
->proc_name
, proc_scsi
);
90 printk(KERN_ERR
"%s: proc_mkdir failed for %s\n",
91 __FUNCTION__
, sht
->proc_name
);
93 sht
->proc_dir
->owner
= sht
->module
;
95 up(&global_host_template_sem
);
98 void scsi_proc_hostdir_rm(struct scsi_host_template
*sht
)
103 down(&global_host_template_sem
);
104 if (!--sht
->present
&& sht
->proc_dir
) {
105 remove_proc_entry(sht
->proc_name
, proc_scsi
);
106 sht
->proc_dir
= NULL
;
108 up(&global_host_template_sem
);
111 void scsi_proc_host_add(struct Scsi_Host
*shost
)
113 struct scsi_host_template
*sht
= shost
->hostt
;
114 struct proc_dir_entry
*p
;
120 sprintf(name
,"%d", shost
->host_no
);
121 p
= create_proc_read_entry(name
, S_IFREG
| S_IRUGO
| S_IWUSR
,
122 sht
->proc_dir
, proc_scsi_read
, shost
);
124 printk(KERN_ERR
"%s: Failed to register host %d in"
125 "%s\n", __FUNCTION__
, shost
->host_no
,
130 p
->write_proc
= proc_scsi_write_proc
;
131 p
->owner
= sht
->module
;
134 void scsi_proc_host_rm(struct Scsi_Host
*shost
)
138 if (!shost
->hostt
->proc_dir
)
141 sprintf(name
,"%d", shost
->host_no
);
142 remove_proc_entry(name
, shost
->hostt
->proc_dir
);
145 static int proc_print_scsidevice(struct device
*dev
, void *data
)
147 struct scsi_device
*sdev
= to_scsi_device(dev
);
148 struct seq_file
*s
= data
;
152 "Host: scsi%d Channel: %02d Id: %02d Lun: %02d\n Vendor: ",
153 sdev
->host
->host_no
, sdev
->channel
, sdev
->id
, sdev
->lun
);
154 for (i
= 0; i
< 8; i
++) {
155 if (sdev
->vendor
[i
] >= 0x20)
156 seq_printf(s
, "%c", sdev
->vendor
[i
]);
161 seq_printf(s
, " Model: ");
162 for (i
= 0; i
< 16; i
++) {
163 if (sdev
->model
[i
] >= 0x20)
164 seq_printf(s
, "%c", sdev
->model
[i
]);
169 seq_printf(s
, " Rev: ");
170 for (i
= 0; i
< 4; i
++) {
171 if (sdev
->rev
[i
] >= 0x20)
172 seq_printf(s
, "%c", sdev
->rev
[i
]);
179 seq_printf(s
, " Type: %s ",
180 sdev
->type
< MAX_SCSI_DEVICE_CODE
?
181 scsi_device_types
[(int) sdev
->type
] : "Unknown ");
182 seq_printf(s
, " ANSI"
183 " SCSI revision: %02x", (sdev
->scsi_level
- 1) ?
184 sdev
->scsi_level
- 1 : 1);
185 if (sdev
->scsi_level
== 2)
186 seq_printf(s
, " CCS\n");
193 static int scsi_add_single_device(uint host
, uint channel
, uint id
, uint lun
)
195 struct Scsi_Host
*shost
;
198 shost
= scsi_host_lookup(host
);
200 return PTR_ERR(shost
);
202 error
= scsi_scan_host_selected(shost
, channel
, id
, lun
, 1);
203 scsi_host_put(shost
);
207 static int scsi_remove_single_device(uint host
, uint channel
, uint id
, uint lun
)
209 struct scsi_device
*sdev
;
210 struct Scsi_Host
*shost
;
213 shost
= scsi_host_lookup(host
);
215 return PTR_ERR(shost
);
216 sdev
= scsi_device_lookup(shost
, channel
, id
, lun
);
218 scsi_remove_device(sdev
);
219 scsi_device_put(sdev
);
223 scsi_host_put(shost
);
227 static ssize_t
proc_scsi_write(struct file
*file
, const char __user
*buf
,
228 size_t length
, loff_t
*ppos
)
230 int host
, channel
, id
, lun
;
234 if (!buf
|| length
> PAGE_SIZE
)
237 buffer
= (char *)__get_free_page(GFP_KERNEL
);
242 if (copy_from_user(buffer
, buf
, length
))
246 if (length
< PAGE_SIZE
)
247 buffer
[length
] = '\0';
248 else if (buffer
[PAGE_SIZE
-1])
252 * Usage: echo "scsi add-single-device 0 1 2 3" >/proc/scsi/scsi
253 * with "0 1 2 3" replaced by your "Host Channel Id Lun".
255 if (!strncmp("scsi add-single-device", buffer
, 22)) {
258 host
= simple_strtoul(p
, &p
, 0);
259 channel
= simple_strtoul(p
+ 1, &p
, 0);
260 id
= simple_strtoul(p
+ 1, &p
, 0);
261 lun
= simple_strtoul(p
+ 1, &p
, 0);
263 err
= scsi_add_single_device(host
, channel
, id
, lun
);
268 * Usage: echo "scsi remove-single-device 0 1 2 3" >/proc/scsi/scsi
269 * with "0 1 2 3" replaced by your "Host Channel Id Lun".
271 } else if (!strncmp("scsi remove-single-device", buffer
, 25)) {
274 host
= simple_strtoul(p
, &p
, 0);
275 channel
= simple_strtoul(p
+ 1, &p
, 0);
276 id
= simple_strtoul(p
+ 1, &p
, 0);
277 lun
= simple_strtoul(p
+ 1, &p
, 0);
279 err
= scsi_remove_single_device(host
, channel
, id
, lun
);
283 free_page((unsigned long)buffer
);
287 static int proc_scsi_show(struct seq_file
*s
, void *p
)
289 seq_printf(s
, "Attached devices:\n");
290 bus_for_each_dev(&scsi_bus_type
, NULL
, s
, proc_print_scsidevice
);
294 static int proc_scsi_open(struct inode
*inode
, struct file
*file
)
297 * We don't really needs this for the write case but it doesn't
300 return single_open(file
, proc_scsi_show
, NULL
);
303 static struct file_operations proc_scsi_operations
= {
304 .open
= proc_scsi_open
,
306 .write
= proc_scsi_write
,
308 .release
= single_release
,
311 int __init
scsi_init_procfs(void)
313 struct proc_dir_entry
*pde
;
315 proc_scsi
= proc_mkdir("scsi", NULL
);
319 pde
= create_proc_entry("scsi/scsi", 0, NULL
);
322 pde
->proc_fops
= &proc_scsi_operations
;
327 remove_proc_entry("scsi", NULL
);
332 void scsi_exit_procfs(void)
334 remove_proc_entry("scsi/scsi", NULL
);
335 remove_proc_entry("scsi", NULL
);