blob: 1670ba7ad6af03546eedb390d8a2ca679b8df4e2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/scsi/scsi_proc.c
3 *
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.
8 *
9 * (c) 1995 Michael Neuffer neuffer@goofy.zdv.uni-mainz.de
10 * Version: 0.99.8 last change: 95/09/13
11 *
12 * generic command parser provided by:
13 * Andreas Heilwagen <crashcar@informatik.uni-koblenz.de>
14 *
15 * generic_proc_info() support of xxxx_info() by:
16 * Michael A. Griffith <grif@acm.org>
17 */
18
19#include <linux/module.h>
20#include <linux/init.h>
21#include <linux/string.h>
22#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/proc_fs.h>
24#include <linux/errno.h>
25#include <linux/blkdev.h>
26#include <linux/seq_file.h>
Arjan van de Ven0b950672006-01-11 13:16:10 +010027#include <linux/mutex.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <asm/uaccess.h>
30
31#include <scsi/scsi.h>
32#include <scsi/scsi_device.h>
33#include <scsi/scsi_host.h>
Christoph Hellwige02f3f52006-01-13 19:04:00 +010034#include <scsi/scsi_transport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36#include "scsi_priv.h"
37#include "scsi_logging.h"
38
39
40/* 4K page size, but our output routines, use some slack for overruns */
41#define PROC_BLOCK_SIZE (3*1024)
42
43static struct proc_dir_entry *proc_scsi;
44
45/* Protect sht->present and sht->proc_dir */
Arjan van de Ven0b950672006-01-11 13:16:10 +010046static DEFINE_MUTEX(global_host_template_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Al Viro0ffddfb2013-03-30 23:58:05 -040048static ssize_t proc_scsi_host_write(struct file *file, const char __user *buf,
49 size_t count, loff_t *ppos)
50{
51 struct Scsi_Host *shost = PDE(file_inode(file))->data;
52 ssize_t ret = -ENOMEM;
53 char *page;
54
55 if (count > PROC_BLOCK_SIZE)
56 return -EOVERFLOW;
57
58 if (!shost->hostt->write_info)
59 return -EINVAL;
60
61 page = (char *)__get_free_page(GFP_KERNEL);
62 if (page) {
63 ret = -EFAULT;
64 if (copy_from_user(page, buf, count))
65 goto out;
66 ret = shost->hostt->write_info(shost, page, count);
67 }
68out:
69 free_page((unsigned long)page);
70 return ret;
71}
72
73static int proc_scsi_show(struct seq_file *m, void *v)
74{
75 struct Scsi_Host *shost = m->private;
76 return shost->hostt->show_info(m, shost);
77}
78
79static int proc_scsi_host_open(struct inode *inode, struct file *file)
80{
81 return single_open(file, proc_scsi_show, PDE(inode)->data);
82}
83
84static const struct file_operations proc_scsi_fops = {
85 .open = proc_scsi_host_open,
86 .read = seq_read,
87 .llseek = seq_lseek,
88 .write = proc_scsi_host_write
89};
90
Rob Landleyeb448202007-11-03 13:30:39 -050091/**
92 * scsi_proc_hostdir_add - Create directory in /proc for a scsi host
93 * @sht: owner of this directory
94 *
95 * Sets sht->proc_dir to the new directory.
96 */
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098void scsi_proc_hostdir_add(struct scsi_host_template *sht)
99{
Al Viro70ef4572013-03-31 13:27:56 -0400100 if (!sht->show_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 return;
102
Arjan van de Ven0b950672006-01-11 13:16:10 +0100103 mutex_lock(&global_host_template_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 if (!sht->present++) {
105 sht->proc_dir = proc_mkdir(sht->proc_name, proc_scsi);
106 if (!sht->proc_dir)
107 printk(KERN_ERR "%s: proc_mkdir failed for %s\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700108 __func__, sht->proc_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 }
Arjan van de Ven0b950672006-01-11 13:16:10 +0100110 mutex_unlock(&global_host_template_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111}
112
Rob Landleyeb448202007-11-03 13:30:39 -0500113/**
114 * scsi_proc_hostdir_rm - remove directory in /proc for a scsi host
115 * @sht: owner of directory
116 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117void scsi_proc_hostdir_rm(struct scsi_host_template *sht)
118{
Al Viro70ef4572013-03-31 13:27:56 -0400119 if (!sht->show_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 return;
121
Arjan van de Ven0b950672006-01-11 13:16:10 +0100122 mutex_lock(&global_host_template_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 if (!--sht->present && sht->proc_dir) {
124 remove_proc_entry(sht->proc_name, proc_scsi);
125 sht->proc_dir = NULL;
126 }
Arjan van de Ven0b950672006-01-11 13:16:10 +0100127 mutex_unlock(&global_host_template_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128}
129
Rob Landleyeb448202007-11-03 13:30:39 -0500130
131/**
132 * scsi_proc_host_add - Add entry for this host to appropriate /proc dir
133 * @shost: host to add
134 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135void scsi_proc_host_add(struct Scsi_Host *shost)
136{
137 struct scsi_host_template *sht = shost->hostt;
138 struct proc_dir_entry *p;
139 char name[10];
140
141 if (!sht->proc_dir)
142 return;
143
144 sprintf(name,"%d", shost->host_no);
Al Viro70ef4572013-03-31 13:27:56 -0400145 p = proc_create_data(name, S_IRUGO | S_IWUSR,
146 sht->proc_dir, &proc_scsi_fops, shost);
147 if (!p)
148 printk(KERN_ERR "%s: Failed to register host %d in"
149 "%s\n", __func__, shost->host_no,
150 sht->proc_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151}
152
Rob Landleyeb448202007-11-03 13:30:39 -0500153/**
154 * scsi_proc_host_rm - remove this host's entry from /proc
155 * @shost: which host
156 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157void scsi_proc_host_rm(struct Scsi_Host *shost)
158{
159 char name[10];
160
161 if (!shost->hostt->proc_dir)
162 return;
163
164 sprintf(name,"%d", shost->host_no);
165 remove_proc_entry(name, shost->hostt->proc_dir);
166}
Rob Landleyeb448202007-11-03 13:30:39 -0500167/**
168 * proc_print_scsidevice - return data about this host
169 * @dev: A scsi device
170 * @data: &struct seq_file to output to.
171 *
172 * Description: prints Host, Channel, Id, Lun, Vendor, Model, Rev, Type,
173 * and revision.
174 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175static int proc_print_scsidevice(struct device *dev, void *data)
176{
Hannes Reineckeb0ed4332008-03-18 14:32:28 +0100177 struct scsi_device *sdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 struct seq_file *s = data;
179 int i;
180
Hannes Reineckeb0ed4332008-03-18 14:32:28 +0100181 if (!scsi_is_sdev_device(dev))
182 goto out;
183
184 sdev = to_scsi_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 seq_printf(s,
186 "Host: scsi%d Channel: %02d Id: %02d Lun: %02d\n Vendor: ",
187 sdev->host->host_no, sdev->channel, sdev->id, sdev->lun);
188 for (i = 0; i < 8; i++) {
189 if (sdev->vendor[i] >= 0x20)
190 seq_printf(s, "%c", sdev->vendor[i]);
191 else
192 seq_printf(s, " ");
193 }
194
195 seq_printf(s, " Model: ");
196 for (i = 0; i < 16; i++) {
197 if (sdev->model[i] >= 0x20)
198 seq_printf(s, "%c", sdev->model[i]);
199 else
200 seq_printf(s, " ");
201 }
202
203 seq_printf(s, " Rev: ");
204 for (i = 0; i < 4; i++) {
205 if (sdev->rev[i] >= 0x20)
206 seq_printf(s, "%c", sdev->rev[i]);
207 else
208 seq_printf(s, " ");
209 }
210
211 seq_printf(s, "\n");
212
Matthew Wilcox4ff36712006-07-04 12:15:20 -0600213 seq_printf(s, " Type: %s ", scsi_device_type(sdev->type));
Alan Stern74feb532007-01-08 11:07:41 -0500214 seq_printf(s, " ANSI SCSI revision: %02x",
215 sdev->scsi_level - (sdev->scsi_level > 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 if (sdev->scsi_level == 2)
217 seq_printf(s, " CCS\n");
218 else
219 seq_printf(s, "\n");
220
Hannes Reineckeb0ed4332008-03-18 14:32:28 +0100221out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 return 0;
223}
224
Rob Landleyeb448202007-11-03 13:30:39 -0500225/**
226 * scsi_add_single_device - Respond to user request to probe for/add device
227 * @host: user-supplied decimal integer
228 * @channel: user-supplied decimal integer
229 * @id: user-supplied decimal integer
230 * @lun: user-supplied decimal integer
231 *
232 * Description: called by writing "scsi add-single-device" to /proc/scsi/scsi.
233 *
234 * does scsi_host_lookup() and either user_scan() if that transport
235 * type supports it, or else scsi_scan_host_selected()
236 *
237 * Note: this seems to be aimed exclusively at SCSI parallel busses.
238 */
239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240static int scsi_add_single_device(uint host, uint channel, uint id, uint lun)
241{
242 struct Scsi_Host *shost;
243 int error = -ENXIO;
244
245 shost = scsi_host_lookup(host);
James Smart315cb0a2008-08-07 20:49:30 -0400246 if (!shost)
247 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Christoph Hellwige02f3f52006-01-13 19:04:00 +0100249 if (shost->transportt->user_scan)
250 error = shost->transportt->user_scan(shost, channel, id, lun);
251 else
252 error = scsi_scan_host_selected(shost, channel, id, lun, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 scsi_host_put(shost);
254 return error;
255}
256
Rob Landleyeb448202007-11-03 13:30:39 -0500257/**
258 * scsi_remove_single_device - Respond to user request to remove a device
259 * @host: user-supplied decimal integer
260 * @channel: user-supplied decimal integer
261 * @id: user-supplied decimal integer
262 * @lun: user-supplied decimal integer
263 *
264 * Description: called by writing "scsi remove-single-device" to
265 * /proc/scsi/scsi. Does a scsi_device_lookup() and scsi_remove_device()
266 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267static int scsi_remove_single_device(uint host, uint channel, uint id, uint lun)
268{
269 struct scsi_device *sdev;
270 struct Scsi_Host *shost;
271 int error = -ENXIO;
272
273 shost = scsi_host_lookup(host);
James Smart315cb0a2008-08-07 20:49:30 -0400274 if (!shost)
275 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 sdev = scsi_device_lookup(shost, channel, id, lun);
277 if (sdev) {
278 scsi_remove_device(sdev);
279 scsi_device_put(sdev);
280 error = 0;
281 }
282
283 scsi_host_put(shost);
284 return error;
285}
286
Rob Landleyeb448202007-11-03 13:30:39 -0500287/**
288 * proc_scsi_write - handle writes to /proc/scsi/scsi
289 * @file: not used
290 * @buf: buffer to write
291 * @length: length of buf, at most PAGE_SIZE
292 * @ppos: not used
293 *
294 * Description: this provides a legacy mechanism to add or remove devices by
295 * Host, Channel, ID, and Lun. To use,
296 * "echo 'scsi add-single-device 0 1 2 3' > /proc/scsi/scsi" or
297 * "echo 'scsi remove-single-device 0 1 2 3' > /proc/scsi/scsi" with
298 * "0 1 2 3" replaced by the Host, Channel, Id, and Lun.
299 *
300 * Note: this seems to be aimed at parallel SCSI. Most modern busses (USB,
301 * SATA, Firewire, Fibre Channel, etc) dynamically assign these values to
302 * provide a unique identifier and nothing more.
303 */
304
305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306static ssize_t proc_scsi_write(struct file *file, const char __user *buf,
307 size_t length, loff_t *ppos)
308{
309 int host, channel, id, lun;
310 char *buffer, *p;
311 int err;
312
313 if (!buf || length > PAGE_SIZE)
314 return -EINVAL;
315
316 buffer = (char *)__get_free_page(GFP_KERNEL);
317 if (!buffer)
318 return -ENOMEM;
319
320 err = -EFAULT;
321 if (copy_from_user(buffer, buf, length))
322 goto out;
323
324 err = -EINVAL;
325 if (length < PAGE_SIZE)
326 buffer[length] = '\0';
327 else if (buffer[PAGE_SIZE-1])
328 goto out;
329
330 /*
331 * Usage: echo "scsi add-single-device 0 1 2 3" >/proc/scsi/scsi
332 * with "0 1 2 3" replaced by your "Host Channel Id Lun".
333 */
334 if (!strncmp("scsi add-single-device", buffer, 22)) {
335 p = buffer + 23;
336
337 host = simple_strtoul(p, &p, 0);
338 channel = simple_strtoul(p + 1, &p, 0);
339 id = simple_strtoul(p + 1, &p, 0);
340 lun = simple_strtoul(p + 1, &p, 0);
341
342 err = scsi_add_single_device(host, channel, id, lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
344 /*
345 * Usage: echo "scsi remove-single-device 0 1 2 3" >/proc/scsi/scsi
346 * with "0 1 2 3" replaced by your "Host Channel Id Lun".
347 */
348 } else if (!strncmp("scsi remove-single-device", buffer, 25)) {
349 p = buffer + 26;
350
351 host = simple_strtoul(p, &p, 0);
352 channel = simple_strtoul(p + 1, &p, 0);
353 id = simple_strtoul(p + 1, &p, 0);
354 lun = simple_strtoul(p + 1, &p, 0);
355
356 err = scsi_remove_single_device(host, channel, id, lun);
357 }
358
James Bottomley2ca48a12006-04-27 14:07:49 -0500359 /*
360 * convert success returns so that we return the
361 * number of bytes consumed.
362 */
363 if (!err)
364 err = length;
365
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 out:
367 free_page((unsigned long)buffer);
368 return err;
369}
370
Jeff Mahoneye37c4912011-04-27 16:22:20 -0400371static int always_match(struct device *dev, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372{
Jeff Mahoneye37c4912011-04-27 16:22:20 -0400373 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374}
375
Jeff Mahoneye37c4912011-04-27 16:22:20 -0400376static inline struct device *next_scsi_device(struct device *start)
377{
378 struct device *next = bus_find_device(&scsi_bus_type, start, NULL,
379 always_match);
380 put_device(start);
381 return next;
382}
383
384static void *scsi_seq_start(struct seq_file *sfile, loff_t *pos)
385{
386 struct device *dev = NULL;
387 loff_t n = *pos;
388
389 while ((dev = next_scsi_device(dev))) {
390 if (!n--)
391 break;
392 sfile->private++;
393 }
394 return dev;
395}
396
397static void *scsi_seq_next(struct seq_file *sfile, void *v, loff_t *pos)
398{
399 (*pos)++;
400 sfile->private++;
401 return next_scsi_device(v);
402}
403
404static void scsi_seq_stop(struct seq_file *sfile, void *v)
405{
406 put_device(v);
407}
408
409static int scsi_seq_show(struct seq_file *sfile, void *dev)
410{
411 if (!sfile->private)
412 seq_puts(sfile, "Attached devices:\n");
413
414 return proc_print_scsidevice(dev, sfile);
415}
416
417static const struct seq_operations scsi_seq_ops = {
418 .start = scsi_seq_start,
419 .next = scsi_seq_next,
420 .stop = scsi_seq_stop,
421 .show = scsi_seq_show
422};
423
Rob Landleyeb448202007-11-03 13:30:39 -0500424/**
425 * proc_scsi_open - glue function
426 * @inode: not used
427 * @file: passed to single_open()
428 *
429 * Associates proc_scsi_show with this file
430 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431static int proc_scsi_open(struct inode *inode, struct file *file)
432{
433 /*
Rob Landleyeb448202007-11-03 13:30:39 -0500434 * We don't really need this for the write case but it doesn't
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 * harm either.
436 */
Jeff Mahoneye37c4912011-04-27 16:22:20 -0400437 return seq_open(file, &scsi_seq_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438}
439
Arjan van de Ven00977a52007-02-12 00:55:34 -0800440static const struct file_operations proc_scsi_operations = {
Denis V. Luneva9739092008-04-29 01:02:17 -0700441 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 .open = proc_scsi_open,
443 .read = seq_read,
444 .write = proc_scsi_write,
445 .llseek = seq_lseek,
Jeff Mahoneye37c4912011-04-27 16:22:20 -0400446 .release = seq_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447};
448
Rob Landleyeb448202007-11-03 13:30:39 -0500449/**
450 * scsi_init_procfs - create scsi and scsi/scsi in procfs
451 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452int __init scsi_init_procfs(void)
453{
454 struct proc_dir_entry *pde;
455
456 proc_scsi = proc_mkdir("scsi", NULL);
457 if (!proc_scsi)
458 goto err1;
459
Denis V. Luneva9739092008-04-29 01:02:17 -0700460 pde = proc_create("scsi/scsi", 0, NULL, &proc_scsi_operations);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 if (!pde)
462 goto err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
464 return 0;
465
466err2:
467 remove_proc_entry("scsi", NULL);
468err1:
469 return -ENOMEM;
470}
471
Rob Landleyeb448202007-11-03 13:30:39 -0500472/**
473 * scsi_exit_procfs - Remove scsi/scsi and scsi from procfs
474 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475void scsi_exit_procfs(void)
476{
477 remove_proc_entry("scsi/scsi", NULL);
478 remove_proc_entry("scsi", NULL);
479}