blob: 1770b99f607e6638570fdc39b118a8bf97c41f2b [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * 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>
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02008 * Coypright IBM Corp. 1999, 2002
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
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>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080024#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070035static int
36dasd_devices_show(struct seq_file *m, void *v)
37{
38 struct dasd_device *device;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +010039 struct dasd_block *block;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 char *substr;
41
42 device = dasd_device_from_devindex((unsigned long) v - 1);
43 if (IS_ERR(device))
44 return 0;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +010045 if (device->block)
46 block = device->block;
Stefan Weinhubera5e23832008-03-05 12:37:11 +010047 else {
48 dasd_put_device(device);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +010049 return 0;
Stefan Weinhubera5e23832008-03-05 12:37:11 +010050 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 /* Print device number. */
Kay Sievers2a0217d2008-10-10 21:33:09 +020052 seq_printf(m, "%s", dev_name(&device->cdev->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 /* Print discipline string. */
Stefan Haberland294001a2010-01-27 10:12:35 +010054 if (device->discipline != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 seq_printf(m, "(%s)", device->discipline->name);
56 else
57 seq_printf(m, "(none)");
58 /* Print kdev. */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +010059 if (block->gdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 seq_printf(m, " at (%3d:%6d)",
Tejun Heof331c022008-09-03 09:01:48 +020061 MAJOR(disk_devt(block->gdp)),
62 MINOR(disk_devt(block->gdp)));
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 else
64 seq_printf(m, " at (???:??????)");
65 /* Print device name. */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +010066 if (block->gdp)
67 seq_printf(m, " is %-8s", block->gdp->disk_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 else
69 seq_printf(m, " is ????????");
70 /* Print devices features. */
Horst Hummelc6eb7b72005-09-03 15:57:58 -070071 substr = (device->features & DASD_FEATURE_READONLY) ? "(ro)" : " ";
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 seq_printf(m, "%4s: ", substr);
73 /* Print device status information. */
Stefan Haberland294001a2010-01-27 10:12:35 +010074 switch (device->state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 case DASD_STATE_NEW:
76 seq_printf(m, "new");
77 break;
78 case DASD_STATE_KNOWN:
79 seq_printf(m, "detected");
80 break;
81 case DASD_STATE_BASIC:
82 seq_printf(m, "basic");
83 break;
Horst Hummel90f00942006-03-07 21:55:39 -080084 case DASD_STATE_UNFMT:
Horst Hummelb707dbe2006-03-09 17:33:52 -080085 seq_printf(m, "unformatted");
Horst Hummel90f00942006-03-07 21:55:39 -080086 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 case DASD_STATE_READY:
88 case DASD_STATE_ONLINE:
89 seq_printf(m, "active ");
Stefan Weinhuber8e09f212008-01-26 14:11:23 +010090 if (dasd_check_blocksize(block->bp_block))
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 seq_printf(m, "n/f ");
92 else
93 seq_printf(m,
Jan Höppner7bf76f012017-08-15 16:40:18 +020094 "at blocksize: %u, %lu blocks, %lu MB",
Stefan Weinhuber8e09f212008-01-26 14:11:23 +010095 block->bp_block, block->blocks,
96 ((block->bp_block >> 9) *
97 block->blocks) >> 11);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 break;
99 default:
100 seq_printf(m, "no stat");
101 break;
102 }
103 dasd_put_device(device);
104 if (dasd_probeonly)
105 seq_printf(m, "(probeonly)");
106 seq_printf(m, "\n");
107 return 0;
108}
109
110static void *dasd_devices_start(struct seq_file *m, loff_t *pos)
111{
112 if (*pos >= dasd_max_devindex)
113 return NULL;
114 return (void *)((unsigned long) *pos + 1);
115}
116
117static void *dasd_devices_next(struct seq_file *m, void *v, loff_t *pos)
118{
119 ++*pos;
120 return dasd_devices_start(m, pos);
121}
122
123static void dasd_devices_stop(struct seq_file *m, void *v)
124{
125}
126
Jan Engelhardt5c81cdb2008-01-26 14:11:29 +0100127static const struct seq_operations dasd_devices_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 .start = dasd_devices_start,
129 .next = dasd_devices_next,
130 .stop = dasd_devices_stop,
131 .show = dasd_devices_show,
132};
133
Heiko Carstens3d621492007-07-10 11:24:17 +0200134#ifdef CONFIG_DASD_PROFILE
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200135static int dasd_stats_all_block_on(void)
136{
137 int i, rc;
138 struct dasd_device *device;
139
140 rc = 0;
141 for (i = 0; i < dasd_max_devindex; ++i) {
142 device = dasd_device_from_devindex(i);
143 if (IS_ERR(device))
144 continue;
145 if (device->block)
146 rc = dasd_profile_on(&device->block->profile);
147 dasd_put_device(device);
148 if (rc)
149 return rc;
150 }
151 return 0;
152}
153
154static void dasd_stats_all_block_off(void)
155{
156 int i;
157 struct dasd_device *device;
158
159 for (i = 0; i < dasd_max_devindex; ++i) {
160 device = dasd_device_from_devindex(i);
161 if (IS_ERR(device))
162 continue;
163 if (device->block)
164 dasd_profile_off(&device->block->profile);
165 dasd_put_device(device);
166 }
167}
168
169static void dasd_stats_all_block_reset(void)
170{
171 int i;
172 struct dasd_device *device;
173
174 for (i = 0; i < dasd_max_devindex; ++i) {
175 device = dasd_device_from_devindex(i);
176 if (IS_ERR(device))
177 continue;
178 if (device->block)
179 dasd_profile_reset(&device->block->profile);
180 dasd_put_device(device);
181 }
182}
183
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100184static void dasd_statistics_array(struct seq_file *m, unsigned int *array, int factor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185{
186 int i;
187
188 for (i = 0; i < 32; i++) {
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100189 seq_printf(m, "%7d ", array[i] / factor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 if (i == 15)
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100191 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 }
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100193 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194}
Heiko Carstens3d621492007-07-10 11:24:17 +0200195#endif /* CONFIG_DASD_PROFILE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100197static int dasd_stats_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199#ifdef CONFIG_DASD_PROFILE
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200200 struct dasd_profile_info *prof;
Stefan Haberland2bf373b2008-12-25 13:38:51 +0100201 int factor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Sebastian Ott6765cc22015-01-28 19:06:29 +0100203 spin_lock_bh(&dasd_global_profile.lock);
204 prof = dasd_global_profile.data;
205 if (!prof) {
206 spin_unlock_bh(&dasd_global_profile.lock);
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100207 seq_printf(m, "Statistics are off - they might be "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 "switched on using 'echo set on > "
209 "/proc/dasd/statistics'\n");
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100210 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 }
212
Uwe Kleine-Königfbfecd32009-10-28 20:11:04 +0100213 /* prevent counter 'overflow' on output */
Stefan Haberland2bf373b2008-12-25 13:38:51 +0100214 for (factor = 1; (prof->dasd_io_reqs / factor) > 9999999;
215 factor *= 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100217 seq_printf(m, "%d dasd I/O requests\n", prof->dasd_io_reqs);
218 seq_printf(m, "with %u sectors(512B each)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 prof->dasd_io_sects);
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100220 seq_printf(m, "Scale Factor is %d\n", factor);
221 seq_printf(m,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 " __<4 ___8 __16 __32 __64 _128 "
223 " _256 _512 __1k __2k __4k __8k "
224 " _16k _32k _64k 128k\n");
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100225 seq_printf(m,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 " _256 _512 __1M __2M __4M __8M "
227 " _16M _32M _64M 128M 256M 512M "
228 " __1G __2G __4G " " _>4G\n");
229
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100230 seq_printf(m, "Histogram of sizes (512B secs)\n");
231 dasd_statistics_array(m, prof->dasd_io_secs, factor);
232 seq_printf(m, "Histogram of I/O times (microseconds)\n");
233 dasd_statistics_array(m, prof->dasd_io_times, factor);
234 seq_printf(m, "Histogram of I/O times per sector\n");
235 dasd_statistics_array(m, prof->dasd_io_timps, factor);
236 seq_printf(m, "Histogram of I/O time till ssch\n");
237 dasd_statistics_array(m, prof->dasd_io_time1, factor);
238 seq_printf(m, "Histogram of I/O time between ssch and irq\n");
239 dasd_statistics_array(m, prof->dasd_io_time2, factor);
240 seq_printf(m, "Histogram of I/O time between ssch "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 "and irq per sector\n");
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100242 dasd_statistics_array(m, prof->dasd_io_time2ps, factor);
243 seq_printf(m, "Histogram of I/O time between irq and end\n");
244 dasd_statistics_array(m, prof->dasd_io_time3, factor);
245 seq_printf(m, "# of req in chanq at enqueuing (1..32) \n");
246 dasd_statistics_array(m, prof->dasd_io_nr_req, factor);
Sebastian Ott8ea55c92015-01-28 18:44:17 +0100247 spin_unlock_bh(&dasd_global_profile.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248#else
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100249 seq_printf(m, "Statistics are not activated in this kernel\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250#endif
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100251 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252}
253
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100254static int dasd_stats_proc_open(struct inode *inode, struct file *file)
255{
256 return single_open(file, dasd_stats_proc_show, NULL);
257}
258
259static ssize_t dasd_stats_proc_write(struct file *file,
260 const char __user *user_buf, size_t user_len, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
262#ifdef CONFIG_DASD_PROFILE
263 char *buffer, *str;
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200264 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266 if (user_len > 65536)
267 user_len = 65536;
268 buffer = dasd_get_user_string(user_buf, user_len);
269 if (IS_ERR(buffer))
270 return PTR_ERR(buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272 /* check for valid verbs */
André Goddard Rosae7d28602009-12-14 18:01:06 -0800273 str = skip_spaces(buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 if (strncmp(str, "set", 3) == 0 && isspace(str[3])) {
275 /* 'set xxx' was given */
André Goddard Rosae7d28602009-12-14 18:01:06 -0800276 str = skip_spaces(str + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 if (strcmp(str, "on") == 0) {
278 /* switch on statistics profiling */
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200279 rc = dasd_stats_all_block_on();
280 if (rc) {
281 dasd_stats_all_block_off();
282 goto out_error;
283 }
Sebastian Ott6765cc22015-01-28 19:06:29 +0100284 rc = dasd_profile_on(&dasd_global_profile);
285 if (rc) {
286 dasd_stats_all_block_off();
287 goto out_error;
288 }
289 dasd_profile_reset(&dasd_global_profile);
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200290 dasd_global_profile_level = DASD_PROFILE_ON;
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100291 pr_info("The statistics feature has been switched "
292 "on\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 } else if (strcmp(str, "off") == 0) {
Sebastian Ott6765cc22015-01-28 19:06:29 +0100294 /* switch off statistics profiling */
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200295 dasd_global_profile_level = DASD_PROFILE_OFF;
Sebastian Ott6765cc22015-01-28 19:06:29 +0100296 dasd_profile_off(&dasd_global_profile);
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200297 dasd_stats_all_block_off();
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100298 pr_info("The statistics feature has been switched "
299 "off\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 } else
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200301 goto out_parse_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 } else if (strncmp(str, "reset", 5) == 0) {
303 /* reset the statistics */
Sebastian Ott6765cc22015-01-28 19:06:29 +0100304 dasd_profile_reset(&dasd_global_profile);
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200305 dasd_stats_all_block_reset();
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100306 pr_info("The statistics have been reset\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 } else
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200308 goto out_parse_error;
Stefan Weinhubere4258d52011-08-03 16:44:20 +0200309 vfree(buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 return user_len;
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200311out_parse_error:
312 rc = -EINVAL;
Joe Perchesbaebc702016-03-03 20:49:57 -0800313 pr_warn("%s is not a supported value for /proc/dasd/statistics\n", str);
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200314out_error:
Stefan Weinhubere4258d52011-08-03 16:44:20 +0200315 vfree(buffer);
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200316 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317#else
Joe Perchesbaebc702016-03-03 20:49:57 -0800318 pr_warn("/proc/dasd/statistics: is not activated in this kernel\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 return user_len;
320#endif /* CONFIG_DASD_PROFILE */
321}
322
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100323static const struct file_operations dasd_stats_proc_fops = {
324 .owner = THIS_MODULE,
325 .open = dasd_stats_proc_open,
326 .read = seq_read,
327 .llseek = seq_lseek,
328 .release = single_release,
329 .write = dasd_stats_proc_write,
330};
331
Horst Hummel7220fe82006-04-10 22:53:48 -0700332/*
333 * Create dasd proc-fs entries.
334 * In case creation failed, cleanup and return -ENOENT.
335 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336int
337dasd_proc_init(void)
338{
Alexey Dobriyanc74c1202008-04-29 01:01:44 -0700339 dasd_proc_root_entry = proc_mkdir("dasd", NULL);
Horst Hummel7220fe82006-04-10 22:53:48 -0700340 if (!dasd_proc_root_entry)
341 goto out_nodasd;
Sebastian Ott87ccdcf2018-12-03 13:19:12 +0100342 dasd_devices_entry = proc_create_seq("devices", 0444,
Denis V. Lunev8b594002008-04-29 01:02:20 -0700343 dasd_proc_root_entry,
Christoph Hellwigfddda2b2018-04-13 19:44:18 +0200344 &dasd_devices_seq_ops);
Horst Hummel7220fe82006-04-10 22:53:48 -0700345 if (!dasd_devices_entry)
346 goto out_nodevices;
Alexey Dobriyan34b92432010-02-26 22:37:50 +0100347 dasd_statistics_entry = proc_create("statistics",
348 S_IFREG | S_IRUGO | S_IWUSR,
349 dasd_proc_root_entry,
350 &dasd_stats_proc_fops);
Horst Hummel7220fe82006-04-10 22:53:48 -0700351 if (!dasd_statistics_entry)
352 goto out_nostatistics;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 return 0;
Horst Hummel7220fe82006-04-10 22:53:48 -0700354
355 out_nostatistics:
356 remove_proc_entry("devices", dasd_proc_root_entry);
357 out_nodevices:
Alexey Dobriyanc74c1202008-04-29 01:01:44 -0700358 remove_proc_entry("dasd", NULL);
Horst Hummel7220fe82006-04-10 22:53:48 -0700359 out_nodasd:
360 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361}
362
363void
364dasd_proc_exit(void)
365{
366 remove_proc_entry("devices", dasd_proc_root_entry);
367 remove_proc_entry("statistics", dasd_proc_root_entry);
Alexey Dobriyanc74c1202008-04-29 01:01:44 -0700368 remove_proc_entry("dasd", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369}