blob: aa7bb2d1da81154940b7755c69f6744fb710cb15 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Author(s)......: Holger Smolinski <Holger.Smolinski@de.ibm.com>
3 * Horst Hummel <Horst.Hummel@de.ibm.com>
4 * Carsten Otte <Cotte@de.ibm.com>
5 * Martin Schwidefsky <schwidefsky@de.ibm.com>
6 * Bugreports.to..: <Linux390@de.ibm.com>
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02007 * Coypright IBM Corp. 1999, 2002
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * /proc interface for the dasd driver.
10 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
12
Stefan Haberlandfc19f382009-03-26 15:23:49 +010013#define KMSG_COMPONENT "dasd"
14
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/ctype.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/slab.h>
André Goddard Rosae7d28602009-12-14 18:01:06 -080017#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/seq_file.h>
19#include <linux/vmalloc.h>
Michael Holzheu66a464d2005-06-25 14:55:33 -070020#include <linux/proc_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22#include <asm/debug.h>
23#include <asm/uaccess.h>
24
25/* This is ugly... */
26#define PRINTK_HEADER "dasd_proc:"
27
28#include "dasd_int.h"
29
30static struct proc_dir_entry *dasd_proc_root_entry = NULL;
31static struct proc_dir_entry *dasd_devices_entry = NULL;
32static struct proc_dir_entry *dasd_statistics_entry = NULL;
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034static int
35dasd_devices_show(struct seq_file *m, void *v)
36{
37 struct dasd_device *device;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +010038 struct dasd_block *block;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 char *substr;
40
41 device = dasd_device_from_devindex((unsigned long) v - 1);
42 if (IS_ERR(device))
43 return 0;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +010044 if (device->block)
45 block = device->block;
Stefan Weinhubera5e23832008-03-05 12:37:11 +010046 else {
47 dasd_put_device(device);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +010048 return 0;
Stefan Weinhubera5e23832008-03-05 12:37:11 +010049 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 /* Print device number. */
Kay Sievers2a0217d2008-10-10 21:33:09 +020051 seq_printf(m, "%s", dev_name(&device->cdev->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 /* Print discipline string. */
Stefan Haberland294001a2010-01-27 10:12:35 +010053 if (device->discipline != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 seq_printf(m, "(%s)", device->discipline->name);
55 else
56 seq_printf(m, "(none)");
57 /* Print kdev. */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +010058 if (block->gdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 seq_printf(m, " at (%3d:%6d)",
Tejun Heof331c022008-09-03 09:01:48 +020060 MAJOR(disk_devt(block->gdp)),
61 MINOR(disk_devt(block->gdp)));
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 else
63 seq_printf(m, " at (???:??????)");
64 /* Print device name. */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +010065 if (block->gdp)
66 seq_printf(m, " is %-8s", block->gdp->disk_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 else
68 seq_printf(m, " is ????????");
69 /* Print devices features. */
Horst Hummelc6eb7b72005-09-03 15:57:58 -070070 substr = (device->features & DASD_FEATURE_READONLY) ? "(ro)" : " ";
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 seq_printf(m, "%4s: ", substr);
72 /* Print device status information. */
Stefan Haberland294001a2010-01-27 10:12:35 +010073 switch (device->state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 case DASD_STATE_NEW:
75 seq_printf(m, "new");
76 break;
77 case DASD_STATE_KNOWN:
78 seq_printf(m, "detected");
79 break;
80 case DASD_STATE_BASIC:
81 seq_printf(m, "basic");
82 break;
Horst Hummel90f00942006-03-07 21:55:39 -080083 case DASD_STATE_UNFMT:
Horst Hummelb707dbe2006-03-09 17:33:52 -080084 seq_printf(m, "unformatted");
Horst Hummel90f00942006-03-07 21:55:39 -080085 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 case DASD_STATE_READY:
87 case DASD_STATE_ONLINE:
88 seq_printf(m, "active ");
Stefan Weinhuber8e09f212008-01-26 14:11:23 +010089 if (dasd_check_blocksize(block->bp_block))
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 seq_printf(m, "n/f ");
91 else
92 seq_printf(m,
Stefan Weinhuberb44b0ab32009-03-26 15:23:47 +010093 "at blocksize: %d, %lld blocks, %lld MB",
Stefan Weinhuber8e09f212008-01-26 14:11:23 +010094 block->bp_block, block->blocks,
95 ((block->bp_block >> 9) *
96 block->blocks) >> 11);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 break;
98 default:
99 seq_printf(m, "no stat");
100 break;
101 }
102 dasd_put_device(device);
103 if (dasd_probeonly)
104 seq_printf(m, "(probeonly)");
105 seq_printf(m, "\n");
106 return 0;
107}
108
109static void *dasd_devices_start(struct seq_file *m, loff_t *pos)
110{
111 if (*pos >= dasd_max_devindex)
112 return NULL;
113 return (void *)((unsigned long) *pos + 1);
114}
115
116static void *dasd_devices_next(struct seq_file *m, void *v, loff_t *pos)
117{
118 ++*pos;
119 return dasd_devices_start(m, pos);
120}
121
122static void dasd_devices_stop(struct seq_file *m, void *v)
123{
124}
125
Jan Engelhardt5c81cdb2008-01-26 14:11:29 +0100126static const struct seq_operations dasd_devices_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 .start = dasd_devices_start,
128 .next = dasd_devices_next,
129 .stop = dasd_devices_stop,
130 .show = dasd_devices_show,
131};
132
133static int dasd_devices_open(struct inode *inode, struct file *file)
134{
135 return seq_open(file, &dasd_devices_seq_ops);
136}
137
Arjan van de Vend54b1fd2007-02-12 00:55:34 -0800138static const struct file_operations dasd_devices_file_ops = {
Denis V. Lunev8b594002008-04-29 01:02:20 -0700139 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 .open = dasd_devices_open,
141 .read = seq_read,
142 .llseek = seq_lseek,
143 .release = seq_release,
144};
145
Heiko Carstens3d621492007-07-10 11:24:17 +0200146#ifdef CONFIG_DASD_PROFILE
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200147static int dasd_stats_all_block_on(void)
148{
149 int i, rc;
150 struct dasd_device *device;
151
152 rc = 0;
153 for (i = 0; i < dasd_max_devindex; ++i) {
154 device = dasd_device_from_devindex(i);
155 if (IS_ERR(device))
156 continue;
157 if (device->block)
158 rc = dasd_profile_on(&device->block->profile);
159 dasd_put_device(device);
160 if (rc)
161 return rc;
162 }
163 return 0;
164}
165
166static void dasd_stats_all_block_off(void)
167{
168 int i;
169 struct dasd_device *device;
170
171 for (i = 0; i < dasd_max_devindex; ++i) {
172 device = dasd_device_from_devindex(i);
173 if (IS_ERR(device))
174 continue;
175 if (device->block)
176 dasd_profile_off(&device->block->profile);
177 dasd_put_device(device);
178 }
179}
180
181static void dasd_stats_all_block_reset(void)
182{
183 int i;
184 struct dasd_device *device;
185
186 for (i = 0; i < dasd_max_devindex; ++i) {
187 device = dasd_device_from_devindex(i);
188 if (IS_ERR(device))
189 continue;
190 if (device->block)
191 dasd_profile_reset(&device->block->profile);
192 dasd_put_device(device);
193 }
194}
195
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100196static void dasd_statistics_array(struct seq_file *m, unsigned int *array, int factor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
198 int i;
199
200 for (i = 0; i < 32; i++) {
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100201 seq_printf(m, "%7d ", array[i] / factor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 if (i == 15)
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100203 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 }
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100205 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206}
Heiko Carstens3d621492007-07-10 11:24:17 +0200207#endif /* CONFIG_DASD_PROFILE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100209static int dasd_stats_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211#ifdef CONFIG_DASD_PROFILE
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200212 struct dasd_profile_info *prof;
Stefan Haberland2bf373b2008-12-25 13:38:51 +0100213 int factor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Sebastian Ott6765cc22015-01-28 19:06:29 +0100215 spin_lock_bh(&dasd_global_profile.lock);
216 prof = dasd_global_profile.data;
217 if (!prof) {
218 spin_unlock_bh(&dasd_global_profile.lock);
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100219 seq_printf(m, "Statistics are off - they might be "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 "switched on using 'echo set on > "
221 "/proc/dasd/statistics'\n");
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100222 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 }
224
Uwe Kleine-Königfbfecd32009-10-28 20:11:04 +0100225 /* prevent counter 'overflow' on output */
Stefan Haberland2bf373b2008-12-25 13:38:51 +0100226 for (factor = 1; (prof->dasd_io_reqs / factor) > 9999999;
227 factor *= 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100229 seq_printf(m, "%d dasd I/O requests\n", prof->dasd_io_reqs);
230 seq_printf(m, "with %u sectors(512B each)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 prof->dasd_io_sects);
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100232 seq_printf(m, "Scale Factor is %d\n", factor);
233 seq_printf(m,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 " __<4 ___8 __16 __32 __64 _128 "
235 " _256 _512 __1k __2k __4k __8k "
236 " _16k _32k _64k 128k\n");
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100237 seq_printf(m,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 " _256 _512 __1M __2M __4M __8M "
239 " _16M _32M _64M 128M 256M 512M "
240 " __1G __2G __4G " " _>4G\n");
241
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100242 seq_printf(m, "Histogram of sizes (512B secs)\n");
243 dasd_statistics_array(m, prof->dasd_io_secs, factor);
244 seq_printf(m, "Histogram of I/O times (microseconds)\n");
245 dasd_statistics_array(m, prof->dasd_io_times, factor);
246 seq_printf(m, "Histogram of I/O times per sector\n");
247 dasd_statistics_array(m, prof->dasd_io_timps, factor);
248 seq_printf(m, "Histogram of I/O time till ssch\n");
249 dasd_statistics_array(m, prof->dasd_io_time1, factor);
250 seq_printf(m, "Histogram of I/O time between ssch and irq\n");
251 dasd_statistics_array(m, prof->dasd_io_time2, factor);
252 seq_printf(m, "Histogram of I/O time between ssch "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 "and irq per sector\n");
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100254 dasd_statistics_array(m, prof->dasd_io_time2ps, factor);
255 seq_printf(m, "Histogram of I/O time between irq and end\n");
256 dasd_statistics_array(m, prof->dasd_io_time3, factor);
257 seq_printf(m, "# of req in chanq at enqueuing (1..32) \n");
258 dasd_statistics_array(m, prof->dasd_io_nr_req, factor);
Sebastian Ott8ea55c92015-01-28 18:44:17 +0100259 spin_unlock_bh(&dasd_global_profile.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260#else
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100261 seq_printf(m, "Statistics are not activated in this kernel\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262#endif
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100263 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264}
265
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100266static int dasd_stats_proc_open(struct inode *inode, struct file *file)
267{
268 return single_open(file, dasd_stats_proc_show, NULL);
269}
270
271static ssize_t dasd_stats_proc_write(struct file *file,
272 const char __user *user_buf, size_t user_len, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
274#ifdef CONFIG_DASD_PROFILE
275 char *buffer, *str;
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200276 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278 if (user_len > 65536)
279 user_len = 65536;
280 buffer = dasd_get_user_string(user_buf, user_len);
281 if (IS_ERR(buffer))
282 return PTR_ERR(buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
284 /* check for valid verbs */
André Goddard Rosae7d28602009-12-14 18:01:06 -0800285 str = skip_spaces(buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 if (strncmp(str, "set", 3) == 0 && isspace(str[3])) {
287 /* 'set xxx' was given */
André Goddard Rosae7d28602009-12-14 18:01:06 -0800288 str = skip_spaces(str + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 if (strcmp(str, "on") == 0) {
290 /* switch on statistics profiling */
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200291 rc = dasd_stats_all_block_on();
292 if (rc) {
293 dasd_stats_all_block_off();
294 goto out_error;
295 }
Sebastian Ott6765cc22015-01-28 19:06:29 +0100296 rc = dasd_profile_on(&dasd_global_profile);
297 if (rc) {
298 dasd_stats_all_block_off();
299 goto out_error;
300 }
301 dasd_profile_reset(&dasd_global_profile);
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200302 dasd_global_profile_level = DASD_PROFILE_ON;
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100303 pr_info("The statistics feature has been switched "
304 "on\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 } else if (strcmp(str, "off") == 0) {
Sebastian Ott6765cc22015-01-28 19:06:29 +0100306 /* switch off statistics profiling */
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200307 dasd_global_profile_level = DASD_PROFILE_OFF;
Sebastian Ott6765cc22015-01-28 19:06:29 +0100308 dasd_profile_off(&dasd_global_profile);
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200309 dasd_stats_all_block_off();
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100310 pr_info("The statistics feature has been switched "
311 "off\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 } else
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200313 goto out_parse_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 } else if (strncmp(str, "reset", 5) == 0) {
315 /* reset the statistics */
Sebastian Ott6765cc22015-01-28 19:06:29 +0100316 dasd_profile_reset(&dasd_global_profile);
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200317 dasd_stats_all_block_reset();
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100318 pr_info("The statistics have been reset\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 } else
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200320 goto out_parse_error;
Stefan Weinhubere4258d52011-08-03 16:44:20 +0200321 vfree(buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 return user_len;
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200323out_parse_error:
324 rc = -EINVAL;
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100325 pr_warning("%s is not a supported value for /proc/dasd/statistics\n",
326 str);
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200327out_error:
Stefan Weinhubere4258d52011-08-03 16:44:20 +0200328 vfree(buffer);
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200329 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330#else
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100331 pr_warning("/proc/dasd/statistics: is not activated in this kernel\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 return user_len;
333#endif /* CONFIG_DASD_PROFILE */
334}
335
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100336static const struct file_operations dasd_stats_proc_fops = {
337 .owner = THIS_MODULE,
338 .open = dasd_stats_proc_open,
339 .read = seq_read,
340 .llseek = seq_lseek,
341 .release = single_release,
342 .write = dasd_stats_proc_write,
343};
344
Horst Hummel7220fe82006-04-10 22:53:48 -0700345/*
346 * Create dasd proc-fs entries.
347 * In case creation failed, cleanup and return -ENOENT.
348 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349int
350dasd_proc_init(void)
351{
Alexey Dobriyanc74c1202008-04-29 01:01:44 -0700352 dasd_proc_root_entry = proc_mkdir("dasd", NULL);
Horst Hummel7220fe82006-04-10 22:53:48 -0700353 if (!dasd_proc_root_entry)
354 goto out_nodasd;
Denis V. Lunev8b594002008-04-29 01:02:20 -0700355 dasd_devices_entry = proc_create("devices",
356 S_IFREG | S_IRUGO | S_IWUSR,
357 dasd_proc_root_entry,
358 &dasd_devices_file_ops);
Horst Hummel7220fe82006-04-10 22:53:48 -0700359 if (!dasd_devices_entry)
360 goto out_nodevices;
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100361 dasd_statistics_entry = proc_create("statistics",
362 S_IFREG | S_IRUGO | S_IWUSR,
363 dasd_proc_root_entry,
364 &dasd_stats_proc_fops);
Horst Hummel7220fe82006-04-10 22:53:48 -0700365 if (!dasd_statistics_entry)
366 goto out_nostatistics;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 return 0;
Horst Hummel7220fe82006-04-10 22:53:48 -0700368
369 out_nostatistics:
370 remove_proc_entry("devices", dasd_proc_root_entry);
371 out_nodevices:
Alexey Dobriyanc74c1202008-04-29 01:01:44 -0700372 remove_proc_entry("dasd", NULL);
Horst Hummel7220fe82006-04-10 22:53:48 -0700373 out_nodasd:
374 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375}
376
377void
378dasd_proc_exit(void)
379{
380 remove_proc_entry("devices", dasd_proc_root_entry);
381 remove_proc_entry("statistics", dasd_proc_root_entry);
Alexey Dobriyanc74c1202008-04-29 01:01:44 -0700382 remove_proc_entry("dasd", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383}