blob: 2eb02559280927594f7a10efbfe19ead060be9aa [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * File...........: linux/drivers/s390/block/dasd_proc.c
3 * Author(s)......: Holger Smolinski <Holger.Smolinski@de.ibm.com>
4 * Horst Hummel <Horst.Hummel@de.ibm.com>
5 * Carsten Otte <Cotte@de.ibm.com>
6 * Martin Schwidefsky <schwidefsky@de.ibm.com>
7 * Bugreports.to..: <Linux390@de.ibm.com>
8 * (C) IBM Corporation, IBM Deutschland Entwicklung GmbH, 1999-2002
9 *
10 * /proc interface for the dasd driver.
11 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 */
13
Stefan Haberlandfc19f382009-03-26 15:23:49 +010014#define KMSG_COMPONENT "dasd"
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/ctype.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
André Goddard Rosae7d28602009-12-14 18:01:06 -080018#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/seq_file.h>
20#include <linux/vmalloc.h>
Michael Holzheu66a464d2005-06-25 14:55:33 -070021#include <linux/proc_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23#include <asm/debug.h>
24#include <asm/uaccess.h>
25
26/* This is ugly... */
27#define PRINTK_HEADER "dasd_proc:"
28
29#include "dasd_int.h"
30
31static struct proc_dir_entry *dasd_proc_root_entry = NULL;
32static struct proc_dir_entry *dasd_devices_entry = NULL;
33static struct proc_dir_entry *dasd_statistics_entry = NULL;
34
Heiko Carstens3d621492007-07-10 11:24:17 +020035#ifdef CONFIG_DASD_PROFILE
Heiko Carstens4d284ca2007-02-05 21:18:53 +010036static char *
Linus Torvalds1da177e2005-04-16 15:20:36 -070037dasd_get_user_string(const char __user *user_buf, size_t user_len)
38{
39 char *buffer;
40
41 buffer = kmalloc(user_len + 1, GFP_KERNEL);
42 if (buffer == NULL)
43 return ERR_PTR(-ENOMEM);
44 if (copy_from_user(buffer, user_buf, user_len) != 0) {
45 kfree(buffer);
46 return ERR_PTR(-EFAULT);
47 }
48 /* got the string, now strip linefeed. */
49 if (buffer[user_len - 1] == '\n')
50 buffer[user_len - 1] = 0;
51 else
52 buffer[user_len] = 0;
53 return buffer;
54}
Heiko Carstens3d621492007-07-10 11:24:17 +020055#endif /* CONFIG_DASD_PROFILE */
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57static int
58dasd_devices_show(struct seq_file *m, void *v)
59{
60 struct dasd_device *device;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +010061 struct dasd_block *block;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 char *substr;
63
64 device = dasd_device_from_devindex((unsigned long) v - 1);
65 if (IS_ERR(device))
66 return 0;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +010067 if (device->block)
68 block = device->block;
Stefan Weinhubera5e23832008-03-05 12:37:11 +010069 else {
70 dasd_put_device(device);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +010071 return 0;
Stefan Weinhubera5e23832008-03-05 12:37:11 +010072 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 /* Print device number. */
Kay Sievers2a0217d2008-10-10 21:33:09 +020074 seq_printf(m, "%s", dev_name(&device->cdev->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 /* Print discipline string. */
Stefan Haberland294001a2010-01-27 10:12:35 +010076 if (device->discipline != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 seq_printf(m, "(%s)", device->discipline->name);
78 else
79 seq_printf(m, "(none)");
80 /* Print kdev. */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +010081 if (block->gdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 seq_printf(m, " at (%3d:%6d)",
Tejun Heof331c022008-09-03 09:01:48 +020083 MAJOR(disk_devt(block->gdp)),
84 MINOR(disk_devt(block->gdp)));
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 else
86 seq_printf(m, " at (???:??????)");
87 /* Print device name. */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +010088 if (block->gdp)
89 seq_printf(m, " is %-8s", block->gdp->disk_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 else
91 seq_printf(m, " is ????????");
92 /* Print devices features. */
Horst Hummelc6eb7b72005-09-03 15:57:58 -070093 substr = (device->features & DASD_FEATURE_READONLY) ? "(ro)" : " ";
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 seq_printf(m, "%4s: ", substr);
95 /* Print device status information. */
Stefan Haberland294001a2010-01-27 10:12:35 +010096 switch (device->state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 case DASD_STATE_NEW:
98 seq_printf(m, "new");
99 break;
100 case DASD_STATE_KNOWN:
101 seq_printf(m, "detected");
102 break;
103 case DASD_STATE_BASIC:
104 seq_printf(m, "basic");
105 break;
Horst Hummel90f00942006-03-07 21:55:39 -0800106 case DASD_STATE_UNFMT:
Horst Hummelb707dbe2006-03-09 17:33:52 -0800107 seq_printf(m, "unformatted");
Horst Hummel90f00942006-03-07 21:55:39 -0800108 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 case DASD_STATE_READY:
110 case DASD_STATE_ONLINE:
111 seq_printf(m, "active ");
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100112 if (dasd_check_blocksize(block->bp_block))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 seq_printf(m, "n/f ");
114 else
115 seq_printf(m,
Stefan Weinhuberb44b0ab32009-03-26 15:23:47 +0100116 "at blocksize: %d, %lld blocks, %lld MB",
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100117 block->bp_block, block->blocks,
118 ((block->bp_block >> 9) *
119 block->blocks) >> 11);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 break;
121 default:
122 seq_printf(m, "no stat");
123 break;
124 }
125 dasd_put_device(device);
126 if (dasd_probeonly)
127 seq_printf(m, "(probeonly)");
128 seq_printf(m, "\n");
129 return 0;
130}
131
132static void *dasd_devices_start(struct seq_file *m, loff_t *pos)
133{
134 if (*pos >= dasd_max_devindex)
135 return NULL;
136 return (void *)((unsigned long) *pos + 1);
137}
138
139static void *dasd_devices_next(struct seq_file *m, void *v, loff_t *pos)
140{
141 ++*pos;
142 return dasd_devices_start(m, pos);
143}
144
145static void dasd_devices_stop(struct seq_file *m, void *v)
146{
147}
148
Jan Engelhardt5c81cdb2008-01-26 14:11:29 +0100149static const struct seq_operations dasd_devices_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 .start = dasd_devices_start,
151 .next = dasd_devices_next,
152 .stop = dasd_devices_stop,
153 .show = dasd_devices_show,
154};
155
156static int dasd_devices_open(struct inode *inode, struct file *file)
157{
158 return seq_open(file, &dasd_devices_seq_ops);
159}
160
Arjan van de Vend54b1fd2007-02-12 00:55:34 -0800161static const struct file_operations dasd_devices_file_ops = {
Denis V. Lunev8b594002008-04-29 01:02:20 -0700162 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 .open = dasd_devices_open,
164 .read = seq_read,
165 .llseek = seq_lseek,
166 .release = seq_release,
167};
168
Heiko Carstens3d621492007-07-10 11:24:17 +0200169#ifdef CONFIG_DASD_PROFILE
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100170static void dasd_statistics_array(struct seq_file *m, unsigned int *array, int factor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
172 int i;
173
174 for (i = 0; i < 32; i++) {
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100175 seq_printf(m, "%7d ", array[i] / factor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 if (i == 15)
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100177 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 }
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100179 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180}
Heiko Carstens3d621492007-07-10 11:24:17 +0200181#endif /* CONFIG_DASD_PROFILE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100183static int dasd_stats_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185#ifdef CONFIG_DASD_PROFILE
186 struct dasd_profile_info_t *prof;
Stefan Haberland2bf373b2008-12-25 13:38:51 +0100187 int factor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
189 /* check for active profiling */
190 if (dasd_profile_level == DASD_PROFILE_OFF) {
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100191 seq_printf(m, "Statistics are off - they might be "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 "switched on using 'echo set on > "
193 "/proc/dasd/statistics'\n");
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100194 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 }
196
197 prof = &dasd_global_profile;
Uwe Kleine-Königfbfecd32009-10-28 20:11:04 +0100198 /* prevent counter 'overflow' on output */
Stefan Haberland2bf373b2008-12-25 13:38:51 +0100199 for (factor = 1; (prof->dasd_io_reqs / factor) > 9999999;
200 factor *= 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100202 seq_printf(m, "%d dasd I/O requests\n", prof->dasd_io_reqs);
203 seq_printf(m, "with %u sectors(512B each)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 prof->dasd_io_sects);
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100205 seq_printf(m, "Scale Factor is %d\n", factor);
206 seq_printf(m,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 " __<4 ___8 __16 __32 __64 _128 "
208 " _256 _512 __1k __2k __4k __8k "
209 " _16k _32k _64k 128k\n");
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100210 seq_printf(m,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 " _256 _512 __1M __2M __4M __8M "
212 " _16M _32M _64M 128M 256M 512M "
213 " __1G __2G __4G " " _>4G\n");
214
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100215 seq_printf(m, "Histogram of sizes (512B secs)\n");
216 dasd_statistics_array(m, prof->dasd_io_secs, factor);
217 seq_printf(m, "Histogram of I/O times (microseconds)\n");
218 dasd_statistics_array(m, prof->dasd_io_times, factor);
219 seq_printf(m, "Histogram of I/O times per sector\n");
220 dasd_statistics_array(m, prof->dasd_io_timps, factor);
221 seq_printf(m, "Histogram of I/O time till ssch\n");
222 dasd_statistics_array(m, prof->dasd_io_time1, factor);
223 seq_printf(m, "Histogram of I/O time between ssch and irq\n");
224 dasd_statistics_array(m, prof->dasd_io_time2, factor);
225 seq_printf(m, "Histogram of I/O time between ssch "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 "and irq per sector\n");
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100227 dasd_statistics_array(m, prof->dasd_io_time2ps, factor);
228 seq_printf(m, "Histogram of I/O time between irq and end\n");
229 dasd_statistics_array(m, prof->dasd_io_time3, factor);
230 seq_printf(m, "# of req in chanq at enqueuing (1..32) \n");
231 dasd_statistics_array(m, prof->dasd_io_nr_req, factor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232#else
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100233 seq_printf(m, "Statistics are not activated in this kernel\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234#endif
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100235 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236}
237
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100238static int dasd_stats_proc_open(struct inode *inode, struct file *file)
239{
240 return single_open(file, dasd_stats_proc_show, NULL);
241}
242
243static ssize_t dasd_stats_proc_write(struct file *file,
244 const char __user *user_buf, size_t user_len, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
246#ifdef CONFIG_DASD_PROFILE
247 char *buffer, *str;
248
249 if (user_len > 65536)
250 user_len = 65536;
251 buffer = dasd_get_user_string(user_buf, user_len);
252 if (IS_ERR(buffer))
253 return PTR_ERR(buffer);
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100254 DBF_EVENT(DBF_DEBUG, "/proc/dasd/statictics: '%s'\n", buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256 /* check for valid verbs */
André Goddard Rosae7d28602009-12-14 18:01:06 -0800257 str = skip_spaces(buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 if (strncmp(str, "set", 3) == 0 && isspace(str[3])) {
259 /* 'set xxx' was given */
André Goddard Rosae7d28602009-12-14 18:01:06 -0800260 str = skip_spaces(str + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 if (strcmp(str, "on") == 0) {
262 /* switch on statistics profiling */
263 dasd_profile_level = DASD_PROFILE_ON;
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100264 pr_info("The statistics feature has been switched "
265 "on\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 } else if (strcmp(str, "off") == 0) {
267 /* switch off and reset statistics profiling */
268 memset(&dasd_global_profile,
269 0, sizeof (struct dasd_profile_info_t));
270 dasd_profile_level = DASD_PROFILE_OFF;
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100271 pr_info("The statistics feature has been switched "
272 "off\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 } else
274 goto out_error;
275 } else if (strncmp(str, "reset", 5) == 0) {
276 /* reset the statistics */
277 memset(&dasd_global_profile, 0,
278 sizeof (struct dasd_profile_info_t));
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100279 pr_info("The statistics have been reset\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 } else
281 goto out_error;
282 kfree(buffer);
283 return user_len;
284out_error:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100285 pr_warning("%s is not a supported value for /proc/dasd/statistics\n",
286 str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 kfree(buffer);
288 return -EINVAL;
289#else
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100290 pr_warning("/proc/dasd/statistics: is not activated in this kernel\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 return user_len;
292#endif /* CONFIG_DASD_PROFILE */
293}
294
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100295static const struct file_operations dasd_stats_proc_fops = {
296 .owner = THIS_MODULE,
297 .open = dasd_stats_proc_open,
298 .read = seq_read,
299 .llseek = seq_lseek,
300 .release = single_release,
301 .write = dasd_stats_proc_write,
302};
303
Horst Hummel7220fe82006-04-10 22:53:48 -0700304/*
305 * Create dasd proc-fs entries.
306 * In case creation failed, cleanup and return -ENOENT.
307 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308int
309dasd_proc_init(void)
310{
Alexey Dobriyanc74c1202008-04-29 01:01:44 -0700311 dasd_proc_root_entry = proc_mkdir("dasd", NULL);
Horst Hummel7220fe82006-04-10 22:53:48 -0700312 if (!dasd_proc_root_entry)
313 goto out_nodasd;
Denis V. Lunev8b594002008-04-29 01:02:20 -0700314 dasd_devices_entry = proc_create("devices",
315 S_IFREG | S_IRUGO | S_IWUSR,
316 dasd_proc_root_entry,
317 &dasd_devices_file_ops);
Horst Hummel7220fe82006-04-10 22:53:48 -0700318 if (!dasd_devices_entry)
319 goto out_nodevices;
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100320 dasd_statistics_entry = proc_create("statistics",
321 S_IFREG | S_IRUGO | S_IWUSR,
322 dasd_proc_root_entry,
323 &dasd_stats_proc_fops);
Horst Hummel7220fe82006-04-10 22:53:48 -0700324 if (!dasd_statistics_entry)
325 goto out_nostatistics;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 return 0;
Horst Hummel7220fe82006-04-10 22:53:48 -0700327
328 out_nostatistics:
329 remove_proc_entry("devices", dasd_proc_root_entry);
330 out_nodevices:
Alexey Dobriyanc74c1202008-04-29 01:01:44 -0700331 remove_proc_entry("dasd", NULL);
Horst Hummel7220fe82006-04-10 22:53:48 -0700332 out_nodasd:
333 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334}
335
336void
337dasd_proc_exit(void)
338{
339 remove_proc_entry("devices", dasd_proc_root_entry);
340 remove_proc_entry("statistics", dasd_proc_root_entry);
Alexey Dobriyanc74c1202008-04-29 01:01:44 -0700341 remove_proc_entry("dasd", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}