]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/scsi/scsi_proc.c
atari_scsi: switch to ->show_info()
[mirror_ubuntu-artful-kernel.git] / drivers / scsi / scsi_proc.c
CommitLineData
1da177e4
LT
1/*
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>
1da177e4
LT
23#include <linux/proc_fs.h>
24#include <linux/errno.h>
25#include <linux/blkdev.h>
26#include <linux/seq_file.h>
0b950672 27#include <linux/mutex.h>
5a0e3ad6 28#include <linux/gfp.h>
1da177e4
LT
29#include <asm/uaccess.h>
30
31#include <scsi/scsi.h>
32#include <scsi/scsi_device.h>
33#include <scsi/scsi_host.h>
e02f3f59 34#include <scsi/scsi_transport.h>
1da177e4
LT
35
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 */
0b950672 46static DEFINE_MUTEX(global_host_template_mutex);
1da177e4 47
eb44820c
RL
48/**
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
1da177e4
LT
58static 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
eb44820c
RL
70/**
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 */
1da177e4
LT
77static 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
0ffddfbb
AV
100static 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
eb44820c
RL
143/**
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
1da177e4
LT
150void scsi_proc_hostdir_add(struct scsi_host_template *sht)
151{
0ffddfbb 152 if (!sht->proc_info && !sht->show_info)
1da177e4
LT
153 return;
154
0b950672 155 mutex_lock(&global_host_template_mutex);
1da177e4
LT
156 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",
cadbd4a5 160 __func__, sht->proc_name);
1da177e4 161 }
0b950672 162 mutex_unlock(&global_host_template_mutex);
1da177e4
LT
163}
164
eb44820c
RL
165/**
166 * scsi_proc_hostdir_rm - remove directory in /proc for a scsi host
167 * @sht: owner of directory
168 */
1da177e4
LT
169void scsi_proc_hostdir_rm(struct scsi_host_template *sht)
170{
0ffddfbb 171 if (!sht->proc_info && !sht->show_info)
1da177e4
LT
172 return;
173
0b950672 174 mutex_lock(&global_host_template_mutex);
1da177e4
LT
175 if (!--sht->present && sht->proc_dir) {
176 remove_proc_entry(sht->proc_name, proc_scsi);
177 sht->proc_dir = NULL;
178 }
0b950672 179 mutex_unlock(&global_host_template_mutex);
1da177e4
LT
180}
181
eb44820c
RL
182
183/**
184 * scsi_proc_host_add - Add entry for this host to appropriate /proc dir
185 * @shost: host to add
186 */
1da177e4
LT
187void 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);
0ffddfbb
AV
197 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 }
1da177e4
LT
204 p = create_proc_read_entry(name, S_IFREG | S_IRUGO | S_IWUSR,
205 sht->proc_dir, proc_scsi_read, shost);
0ffddfbb
AV
206 if (p) {
207 p->write_proc = proc_scsi_write_proc;
1da177e4 208 return;
0ffddfbb
AV
209 }
210Fail:
211 printk(KERN_ERR "%s: Failed to register host %d in"
212 "%s\n", __func__, shost->host_no,
213 sht->proc_name);
1da177e4
LT
214}
215
eb44820c
RL
216/**
217 * scsi_proc_host_rm - remove this host's entry from /proc
218 * @shost: which host
219 */
1da177e4
LT
220void 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}
eb44820c
RL
230/**
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 */
1da177e4
LT
238static int proc_print_scsidevice(struct device *dev, void *data)
239{
b0ed4336 240 struct scsi_device *sdev;
1da177e4
LT
241 struct seq_file *s = data;
242 int i;
243
b0ed4336
HR
244 if (!scsi_is_sdev_device(dev))
245 goto out;
246
247 sdev = to_scsi_device(dev);
1da177e4
LT
248 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
4ff36718 276 seq_printf(s, " Type: %s ", scsi_device_type(sdev->type));
74feb53e
AS
277 seq_printf(s, " ANSI SCSI revision: %02x",
278 sdev->scsi_level - (sdev->scsi_level > 1));
1da177e4
LT
279 if (sdev->scsi_level == 2)
280 seq_printf(s, " CCS\n");
281 else
282 seq_printf(s, "\n");
283
b0ed4336 284out:
1da177e4
LT
285 return 0;
286}
287
eb44820c
RL
288/**
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
1da177e4
LT
303static 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);
315cb0ad
JS
309 if (!shost)
310 return error;
1da177e4 311
e02f3f59
CH
312 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);
1da177e4
LT
316 scsi_host_put(shost);
317 return error;
318}
319
eb44820c
RL
320/**
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 */
1da177e4
LT
330static 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);
315cb0ad
JS
337 if (!shost)
338 return error;
1da177e4
LT
339 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
eb44820c
RL
350/**
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
1da177e4
LT
369static 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);
1da177e4
LT
406
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
2ca48a13
JB
422 /*
423 * convert success returns so that we return the
424 * number of bytes consumed.
425 */
426 if (!err)
427 err = length;
428
1da177e4
LT
429 out:
430 free_page((unsigned long)buffer);
431 return err;
432}
433
e37c4913 434static int always_match(struct device *dev, void *data)
1da177e4 435{
e37c4913
JM
436 return 1;
437}
438
439static 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;
1da177e4
LT
445}
446
e37c4913
JM
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
eb44820c
RL
487/**
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 */
1da177e4
LT
494static int proc_scsi_open(struct inode *inode, struct file *file)
495{
496 /*
eb44820c 497 * We don't really need this for the write case but it doesn't
1da177e4
LT
498 * harm either.
499 */
e37c4913 500 return seq_open(file, &scsi_seq_ops);
1da177e4
LT
501}
502
00977a59 503static const struct file_operations proc_scsi_operations = {
a973909f 504 .owner = THIS_MODULE,
1da177e4
LT
505 .open = proc_scsi_open,
506 .read = seq_read,
507 .write = proc_scsi_write,
508 .llseek = seq_lseek,
e37c4913 509 .release = seq_release,
1da177e4
LT
510};
511
eb44820c
RL
512/**
513 * scsi_init_procfs - create scsi and scsi/scsi in procfs
514 */
1da177e4
LT
515int __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
a973909f 523 pde = proc_create("scsi/scsi", 0, NULL, &proc_scsi_operations);
1da177e4
LT
524 if (!pde)
525 goto err2;
1da177e4
LT
526
527 return 0;
528
529err2:
530 remove_proc_entry("scsi", NULL);
531err1:
532 return -ENOMEM;
533}
534
eb44820c
RL
535/**
536 * scsi_exit_procfs - Remove scsi/scsi and scsi from procfs
537 */
1da177e4
LT
538void scsi_exit_procfs(void)
539{
540 remove_proc_entry("scsi/scsi", NULL);
541 remove_proc_entry("scsi", NULL);
542}