blob: 6f4c3cff03bbc578896be1a60b7df1fafa8172db [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
Rob Landleyeb448202007-11-03 13:30:39 -050048/**
49 * proc_scsi_read - handle read from /proc by calling host's proc_info() command
50 * @buffer: passed to proc_info
51 * @start: passed to proc_info
52 * @offset: passed to proc_info
53 * @length: passed to proc_info
54 * @eof: returns whether length read was less than requested
55 * @data: pointer to a &struct Scsi_Host
56 */
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058static int proc_scsi_read(char *buffer, char **start, off_t offset,
59 int length, int *eof, void *data)
60{
61 struct Scsi_Host *shost = data;
62 int n;
63
64 n = shost->hostt->proc_info(shost, buffer, start, offset, length, 0);
65 *eof = (n < length);
66
67 return n;
68}
69
Rob Landleyeb448202007-11-03 13:30:39 -050070/**
71 * proc_scsi_write_proc - Handle write to /proc by calling host's proc_info()
72 * @file: not used
73 * @buf: source of data to write.
74 * @count: number of bytes (at most PROC_BLOCK_SIZE) to write.
75 * @data: pointer to &struct Scsi_Host
76 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070077static int proc_scsi_write_proc(struct file *file, const char __user *buf,
78 unsigned long count, void *data)
79{
80 struct Scsi_Host *shost = data;
81 ssize_t ret = -ENOMEM;
82 char *page;
83 char *start;
84
85 if (count > PROC_BLOCK_SIZE)
86 return -EOVERFLOW;
87
88 page = (char *)__get_free_page(GFP_KERNEL);
89 if (page) {
90 ret = -EFAULT;
91 if (copy_from_user(page, buf, count))
92 goto out;
93 ret = shost->hostt->proc_info(shost, page, &start, 0, count, 1);
94 }
95out:
96 free_page((unsigned long)page);
97 return ret;
98}
99
Al Viro0ffddfb2013-03-30 23:58:05 -0400100static ssize_t proc_scsi_host_write(struct file *file, const char __user *buf,
101 size_t count, loff_t *ppos)
102{
103 struct Scsi_Host *shost = PDE(file_inode(file))->data;
104 ssize_t ret = -ENOMEM;
105 char *page;
106
107 if (count > PROC_BLOCK_SIZE)
108 return -EOVERFLOW;
109
110 if (!shost->hostt->write_info)
111 return -EINVAL;
112
113 page = (char *)__get_free_page(GFP_KERNEL);
114 if (page) {
115 ret = -EFAULT;
116 if (copy_from_user(page, buf, count))
117 goto out;
118 ret = shost->hostt->write_info(shost, page, count);
119 }
120out:
121 free_page((unsigned long)page);
122 return ret;
123}
124
125static int proc_scsi_show(struct seq_file *m, void *v)
126{
127 struct Scsi_Host *shost = m->private;
128 return shost->hostt->show_info(m, shost);
129}
130
131static int proc_scsi_host_open(struct inode *inode, struct file *file)
132{
133 return single_open(file, proc_scsi_show, PDE(inode)->data);
134}
135
136static const struct file_operations proc_scsi_fops = {
137 .open = proc_scsi_host_open,
138 .read = seq_read,
139 .llseek = seq_lseek,
140 .write = proc_scsi_host_write
141};
142
Rob Landleyeb448202007-11-03 13:30:39 -0500143/**
144 * scsi_proc_hostdir_add - Create directory in /proc for a scsi host
145 * @sht: owner of this directory
146 *
147 * Sets sht->proc_dir to the new directory.
148 */
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150void scsi_proc_hostdir_add(struct scsi_host_template *sht)
151{
Al Viro0ffddfb2013-03-30 23:58:05 -0400152 if (!sht->proc_info && !sht->show_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 return;
154
Arjan van de Ven0b950672006-01-11 13:16:10 +0100155 mutex_lock(&global_host_template_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 if (!sht->present++) {
157 sht->proc_dir = proc_mkdir(sht->proc_name, proc_scsi);
158 if (!sht->proc_dir)
159 printk(KERN_ERR "%s: proc_mkdir failed for %s\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700160 __func__, sht->proc_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 }
Arjan van de Ven0b950672006-01-11 13:16:10 +0100162 mutex_unlock(&global_host_template_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163}
164
Rob Landleyeb448202007-11-03 13:30:39 -0500165/**
166 * scsi_proc_hostdir_rm - remove directory in /proc for a scsi host
167 * @sht: owner of directory
168 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169void scsi_proc_hostdir_rm(struct scsi_host_template *sht)
170{
Al Viro0ffddfb2013-03-30 23:58:05 -0400171 if (!sht->proc_info && !sht->show_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 return;
173
Arjan van de Ven0b950672006-01-11 13:16:10 +0100174 mutex_lock(&global_host_template_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 if (!--sht->present && sht->proc_dir) {
176 remove_proc_entry(sht->proc_name, proc_scsi);
177 sht->proc_dir = NULL;
178 }
Arjan van de Ven0b950672006-01-11 13:16:10 +0100179 mutex_unlock(&global_host_template_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180}
181
Rob Landleyeb448202007-11-03 13:30:39 -0500182
183/**
184 * scsi_proc_host_add - Add entry for this host to appropriate /proc dir
185 * @shost: host to add
186 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187void scsi_proc_host_add(struct Scsi_Host *shost)
188{
189 struct scsi_host_template *sht = shost->hostt;
190 struct proc_dir_entry *p;
191 char name[10];
192
193 if (!sht->proc_dir)
194 return;
195
196 sprintf(name,"%d", shost->host_no);
Al Viro0ffddfb2013-03-30 23:58:05 -0400197 if (sht->show_info) {
198 p = proc_create_data(name, S_IRUGO | S_IWUSR,
199 sht->proc_dir, &proc_scsi_fops, shost);
200 if (!p)
201 goto Fail;
202 return;
203 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 p = create_proc_read_entry(name, S_IFREG | S_IRUGO | S_IWUSR,
205 sht->proc_dir, proc_scsi_read, shost);
Al Viro0ffddfb2013-03-30 23:58:05 -0400206 if (p) {
207 p->write_proc = proc_scsi_write_proc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 return;
Al Viro0ffddfb2013-03-30 23:58:05 -0400209 }
210Fail:
211 printk(KERN_ERR "%s: Failed to register host %d in"
212 "%s\n", __func__, shost->host_no,
213 sht->proc_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214}
215
Rob Landleyeb448202007-11-03 13:30:39 -0500216/**
217 * scsi_proc_host_rm - remove this host's entry from /proc
218 * @shost: which host
219 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220void scsi_proc_host_rm(struct Scsi_Host *shost)
221{
222 char name[10];
223
224 if (!shost->hostt->proc_dir)
225 return;
226
227 sprintf(name,"%d", shost->host_no);
228 remove_proc_entry(name, shost->hostt->proc_dir);
229}
Rob Landleyeb448202007-11-03 13:30:39 -0500230/**
231 * proc_print_scsidevice - return data about this host
232 * @dev: A scsi device
233 * @data: &struct seq_file to output to.
234 *
235 * Description: prints Host, Channel, Id, Lun, Vendor, Model, Rev, Type,
236 * and revision.
237 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238static int proc_print_scsidevice(struct device *dev, void *data)
239{
Hannes Reineckeb0ed4332008-03-18 14:32:28 +0100240 struct scsi_device *sdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 struct seq_file *s = data;
242 int i;
243
Hannes Reineckeb0ed4332008-03-18 14:32:28 +0100244 if (!scsi_is_sdev_device(dev))
245 goto out;
246
247 sdev = to_scsi_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 seq_printf(s,
249 "Host: scsi%d Channel: %02d Id: %02d Lun: %02d\n Vendor: ",
250 sdev->host->host_no, sdev->channel, sdev->id, sdev->lun);
251 for (i = 0; i < 8; i++) {
252 if (sdev->vendor[i] >= 0x20)
253 seq_printf(s, "%c", sdev->vendor[i]);
254 else
255 seq_printf(s, " ");
256 }
257
258 seq_printf(s, " Model: ");
259 for (i = 0; i < 16; i++) {
260 if (sdev->model[i] >= 0x20)
261 seq_printf(s, "%c", sdev->model[i]);
262 else
263 seq_printf(s, " ");
264 }
265
266 seq_printf(s, " Rev: ");
267 for (i = 0; i < 4; i++) {
268 if (sdev->rev[i] >= 0x20)
269 seq_printf(s, "%c", sdev->rev[i]);
270 else
271 seq_printf(s, " ");
272 }
273
274 seq_printf(s, "\n");
275
Matthew Wilcox4ff36712006-07-04 12:15:20 -0600276 seq_printf(s, " Type: %s ", scsi_device_type(sdev->type));
Alan Stern74feb532007-01-08 11:07:41 -0500277 seq_printf(s, " ANSI SCSI revision: %02x",
278 sdev->scsi_level - (sdev->scsi_level > 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 if (sdev->scsi_level == 2)
280 seq_printf(s, " CCS\n");
281 else
282 seq_printf(s, "\n");
283
Hannes Reineckeb0ed4332008-03-18 14:32:28 +0100284out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 return 0;
286}
287
Rob Landleyeb448202007-11-03 13:30:39 -0500288/**
289 * scsi_add_single_device - Respond to user request to probe for/add device
290 * @host: user-supplied decimal integer
291 * @channel: user-supplied decimal integer
292 * @id: user-supplied decimal integer
293 * @lun: user-supplied decimal integer
294 *
295 * Description: called by writing "scsi add-single-device" to /proc/scsi/scsi.
296 *
297 * does scsi_host_lookup() and either user_scan() if that transport
298 * type supports it, or else scsi_scan_host_selected()
299 *
300 * Note: this seems to be aimed exclusively at SCSI parallel busses.
301 */
302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303static int scsi_add_single_device(uint host, uint channel, uint id, uint lun)
304{
305 struct Scsi_Host *shost;
306 int error = -ENXIO;
307
308 shost = scsi_host_lookup(host);
James Smart315cb0a2008-08-07 20:49:30 -0400309 if (!shost)
310 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Christoph Hellwige02f3f52006-01-13 19:04:00 +0100312 if (shost->transportt->user_scan)
313 error = shost->transportt->user_scan(shost, channel, id, lun);
314 else
315 error = scsi_scan_host_selected(shost, channel, id, lun, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 scsi_host_put(shost);
317 return error;
318}
319
Rob Landleyeb448202007-11-03 13:30:39 -0500320/**
321 * scsi_remove_single_device - Respond to user request to remove a device
322 * @host: user-supplied decimal integer
323 * @channel: user-supplied decimal integer
324 * @id: user-supplied decimal integer
325 * @lun: user-supplied decimal integer
326 *
327 * Description: called by writing "scsi remove-single-device" to
328 * /proc/scsi/scsi. Does a scsi_device_lookup() and scsi_remove_device()
329 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330static int scsi_remove_single_device(uint host, uint channel, uint id, uint lun)
331{
332 struct scsi_device *sdev;
333 struct Scsi_Host *shost;
334 int error = -ENXIO;
335
336 shost = scsi_host_lookup(host);
James Smart315cb0a2008-08-07 20:49:30 -0400337 if (!shost)
338 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 sdev = scsi_device_lookup(shost, channel, id, lun);
340 if (sdev) {
341 scsi_remove_device(sdev);
342 scsi_device_put(sdev);
343 error = 0;
344 }
345
346 scsi_host_put(shost);
347 return error;
348}
349
Rob Landleyeb448202007-11-03 13:30:39 -0500350/**
351 * proc_scsi_write - handle writes to /proc/scsi/scsi
352 * @file: not used
353 * @buf: buffer to write
354 * @length: length of buf, at most PAGE_SIZE
355 * @ppos: not used
356 *
357 * Description: this provides a legacy mechanism to add or remove devices by
358 * Host, Channel, ID, and Lun. To use,
359 * "echo 'scsi add-single-device 0 1 2 3' > /proc/scsi/scsi" or
360 * "echo 'scsi remove-single-device 0 1 2 3' > /proc/scsi/scsi" with
361 * "0 1 2 3" replaced by the Host, Channel, Id, and Lun.
362 *
363 * Note: this seems to be aimed at parallel SCSI. Most modern busses (USB,
364 * SATA, Firewire, Fibre Channel, etc) dynamically assign these values to
365 * provide a unique identifier and nothing more.
366 */
367
368
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369static ssize_t proc_scsi_write(struct file *file, const char __user *buf,
370 size_t length, loff_t *ppos)
371{
372 int host, channel, id, lun;
373 char *buffer, *p;
374 int err;
375
376 if (!buf || length > PAGE_SIZE)
377 return -EINVAL;
378
379 buffer = (char *)__get_free_page(GFP_KERNEL);
380 if (!buffer)
381 return -ENOMEM;
382
383 err = -EFAULT;
384 if (copy_from_user(buffer, buf, length))
385 goto out;
386
387 err = -EINVAL;
388 if (length < PAGE_SIZE)
389 buffer[length] = '\0';
390 else if (buffer[PAGE_SIZE-1])
391 goto out;
392
393 /*
394 * Usage: echo "scsi add-single-device 0 1 2 3" >/proc/scsi/scsi
395 * with "0 1 2 3" replaced by your "Host Channel Id Lun".
396 */
397 if (!strncmp("scsi add-single-device", buffer, 22)) {
398 p = buffer + 23;
399
400 host = simple_strtoul(p, &p, 0);
401 channel = simple_strtoul(p + 1, &p, 0);
402 id = simple_strtoul(p + 1, &p, 0);
403 lun = simple_strtoul(p + 1, &p, 0);
404
405 err = scsi_add_single_device(host, channel, id, lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
407 /*
408 * Usage: echo "scsi remove-single-device 0 1 2 3" >/proc/scsi/scsi
409 * with "0 1 2 3" replaced by your "Host Channel Id Lun".
410 */
411 } else if (!strncmp("scsi remove-single-device", buffer, 25)) {
412 p = buffer + 26;
413
414 host = simple_strtoul(p, &p, 0);
415 channel = simple_strtoul(p + 1, &p, 0);
416 id = simple_strtoul(p + 1, &p, 0);
417 lun = simple_strtoul(p + 1, &p, 0);
418
419 err = scsi_remove_single_device(host, channel, id, lun);
420 }
421
James Bottomley2ca48a12006-04-27 14:07:49 -0500422 /*
423 * convert success returns so that we return the
424 * number of bytes consumed.
425 */
426 if (!err)
427 err = length;
428
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 out:
430 free_page((unsigned long)buffer);
431 return err;
432}
433
Jeff Mahoneye37c4912011-04-27 16:22:20 -0400434static int always_match(struct device *dev, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
Jeff Mahoneye37c4912011-04-27 16:22:20 -0400436 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437}
438
Jeff Mahoneye37c4912011-04-27 16:22:20 -0400439static inline struct device *next_scsi_device(struct device *start)
440{
441 struct device *next = bus_find_device(&scsi_bus_type, start, NULL,
442 always_match);
443 put_device(start);
444 return next;
445}
446
447static void *scsi_seq_start(struct seq_file *sfile, loff_t *pos)
448{
449 struct device *dev = NULL;
450 loff_t n = *pos;
451
452 while ((dev = next_scsi_device(dev))) {
453 if (!n--)
454 break;
455 sfile->private++;
456 }
457 return dev;
458}
459
460static void *scsi_seq_next(struct seq_file *sfile, void *v, loff_t *pos)
461{
462 (*pos)++;
463 sfile->private++;
464 return next_scsi_device(v);
465}
466
467static void scsi_seq_stop(struct seq_file *sfile, void *v)
468{
469 put_device(v);
470}
471
472static int scsi_seq_show(struct seq_file *sfile, void *dev)
473{
474 if (!sfile->private)
475 seq_puts(sfile, "Attached devices:\n");
476
477 return proc_print_scsidevice(dev, sfile);
478}
479
480static const struct seq_operations scsi_seq_ops = {
481 .start = scsi_seq_start,
482 .next = scsi_seq_next,
483 .stop = scsi_seq_stop,
484 .show = scsi_seq_show
485};
486
Rob Landleyeb448202007-11-03 13:30:39 -0500487/**
488 * proc_scsi_open - glue function
489 * @inode: not used
490 * @file: passed to single_open()
491 *
492 * Associates proc_scsi_show with this file
493 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494static int proc_scsi_open(struct inode *inode, struct file *file)
495{
496 /*
Rob Landleyeb448202007-11-03 13:30:39 -0500497 * We don't really need this for the write case but it doesn't
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 * harm either.
499 */
Jeff Mahoneye37c4912011-04-27 16:22:20 -0400500 return seq_open(file, &scsi_seq_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501}
502
Arjan van de Ven00977a52007-02-12 00:55:34 -0800503static const struct file_operations proc_scsi_operations = {
Denis V. Luneva9739092008-04-29 01:02:17 -0700504 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 .open = proc_scsi_open,
506 .read = seq_read,
507 .write = proc_scsi_write,
508 .llseek = seq_lseek,
Jeff Mahoneye37c4912011-04-27 16:22:20 -0400509 .release = seq_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510};
511
Rob Landleyeb448202007-11-03 13:30:39 -0500512/**
513 * scsi_init_procfs - create scsi and scsi/scsi in procfs
514 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515int __init scsi_init_procfs(void)
516{
517 struct proc_dir_entry *pde;
518
519 proc_scsi = proc_mkdir("scsi", NULL);
520 if (!proc_scsi)
521 goto err1;
522
Denis V. Luneva9739092008-04-29 01:02:17 -0700523 pde = proc_create("scsi/scsi", 0, NULL, &proc_scsi_operations);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 if (!pde)
525 goto err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
527 return 0;
528
529err2:
530 remove_proc_entry("scsi", NULL);
531err1:
532 return -ENOMEM;
533}
534
Rob Landleyeb448202007-11-03 13:30:39 -0500535/**
536 * scsi_exit_procfs - Remove scsi/scsi and scsi from procfs
537 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538void scsi_exit_procfs(void)
539{
540 remove_proc_entry("scsi/scsi", NULL);
541 remove_proc_entry("scsi", NULL);
542}