1 // SPDX-License-Identifier: GPL-2.0
8 * Coypright IBM Corp. 1999, 2002
10 * /proc interface for the dasd driver.
14 #define KMSG_COMPONENT "dasd"
16 #include <linux/ctype.h>
17 #include <linux/slab.h>
18 #include <linux/string.h>
19 #include <linux/seq_file.h>
20 #include <linux/vmalloc.h>
21 #include <linux/proc_fs.h>
23 #include <asm/debug.h>
24 #include <linux/uaccess.h>
27 #define PRINTK_HEADER "dasd_proc:"
31 static struct proc_dir_entry *dasd_proc_root_entry = NULL;
32 static struct proc_dir_entry *dasd_devices_entry = NULL;
33 static struct proc_dir_entry *dasd_statistics_entry = NULL;
36 dasd_devices_show(struct seq_file *m, void *v)
38 struct dasd_device *device;
39 struct dasd_block *block;
42 device = dasd_device_from_devindex((unsigned long) v - 1);
46 block = device->block;
48 dasd_put_device(device);
51 /* Print device number. */
52 seq_printf(m, "%s", dev_name(&device->cdev->dev));
53 /* Print discipline string. */
54 if (device->discipline != NULL)
55 seq_printf(m, "(%s)", device->discipline->name);
57 seq_printf(m, "(none)");
60 seq_printf(m, " at (%3d:%6d)",
61 MAJOR(disk_devt(block->gdp)),
62 MINOR(disk_devt(block->gdp)));
64 seq_printf(m, " at (???:??????)");
65 /* Print device name. */
67 seq_printf(m, " is %-8s", block->gdp->disk_name);
69 seq_printf(m, " is ????????");
70 /* Print devices features. */
71 substr = (device->features & DASD_FEATURE_READONLY) ? "(ro)" : " ";
72 seq_printf(m, "%4s: ", substr);
73 /* Print device status information. */
74 switch (device->state) {
78 case DASD_STATE_KNOWN:
79 seq_printf(m, "detected");
81 case DASD_STATE_BASIC:
82 seq_printf(m, "basic");
84 case DASD_STATE_UNFMT:
85 seq_printf(m, "unformatted");
87 case DASD_STATE_READY:
88 case DASD_STATE_ONLINE:
89 seq_printf(m, "active ");
90 if (dasd_check_blocksize(block->bp_block))
91 seq_printf(m, "n/f ");
94 "at blocksize: %u, %lu blocks, %lu MB",
95 block->bp_block, block->blocks,
96 ((block->bp_block >> 9) *
97 block->blocks) >> 11);
100 seq_printf(m, "no stat");
103 dasd_put_device(device);
105 seq_printf(m, "(probeonly)");
110 static void *dasd_devices_start(struct seq_file *m, loff_t *pos)
112 if (*pos >= dasd_max_devindex)
114 return (void *)((unsigned long) *pos + 1);
117 static void *dasd_devices_next(struct seq_file *m, void *v, loff_t *pos)
120 return dasd_devices_start(m, pos);
123 static void dasd_devices_stop(struct seq_file *m, void *v)
127 static const struct seq_operations dasd_devices_seq_ops = {
128 .start = dasd_devices_start,
129 .next = dasd_devices_next,
130 .stop = dasd_devices_stop,
131 .show = dasd_devices_show,
134 #ifdef CONFIG_DASD_PROFILE
135 static int dasd_stats_all_block_on(void)
138 struct dasd_device *device;
141 for (i = 0; i < dasd_max_devindex; ++i) {
142 device = dasd_device_from_devindex(i);
146 rc = dasd_profile_on(&device->block->profile);
147 dasd_put_device(device);
154 static void dasd_stats_all_block_off(void)
157 struct dasd_device *device;
159 for (i = 0; i < dasd_max_devindex; ++i) {
160 device = dasd_device_from_devindex(i);
164 dasd_profile_off(&device->block->profile);
165 dasd_put_device(device);
169 static void dasd_stats_all_block_reset(void)
172 struct dasd_device *device;
174 for (i = 0; i < dasd_max_devindex; ++i) {
175 device = dasd_device_from_devindex(i);
179 dasd_profile_reset(&device->block->profile);
180 dasd_put_device(device);
184 static void dasd_statistics_array(struct seq_file *m, unsigned int *array, int factor)
188 for (i = 0; i < 32; i++) {
189 seq_printf(m, "%7d ", array[i] / factor);
195 #endif /* CONFIG_DASD_PROFILE */
197 static int dasd_stats_proc_show(struct seq_file *m, void *v)
199 #ifdef CONFIG_DASD_PROFILE
200 struct dasd_profile_info *prof;
203 spin_lock_bh(&dasd_global_profile.lock);
204 prof = dasd_global_profile.data;
206 spin_unlock_bh(&dasd_global_profile.lock);
207 seq_printf(m, "Statistics are off - they might be "
208 "switched on using 'echo set on > "
209 "/proc/dasd/statistics'\n");
213 /* prevent counter 'overflow' on output */
214 for (factor = 1; (prof->dasd_io_reqs / factor) > 9999999;
217 seq_printf(m, "%d dasd I/O requests\n", prof->dasd_io_reqs);
218 seq_printf(m, "with %u sectors(512B each)\n",
219 prof->dasd_io_sects);
220 seq_printf(m, "Scale Factor is %d\n", factor);
222 " __<4 ___8 __16 __32 __64 _128 "
223 " _256 _512 __1k __2k __4k __8k "
224 " _16k _32k _64k 128k\n");
226 " _256 _512 __1M __2M __4M __8M "
227 " _16M _32M _64M 128M 256M 512M "
228 " __1G __2G __4G " " _>4G\n");
230 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 "
241 "and irq per sector\n");
242 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);
247 spin_unlock_bh(&dasd_global_profile.lock);
249 seq_printf(m, "Statistics are not activated in this kernel\n");
254 static int dasd_stats_proc_open(struct inode *inode, struct file *file)
256 return single_open(file, dasd_stats_proc_show, NULL);
259 static ssize_t dasd_stats_proc_write(struct file *file,
260 const char __user *user_buf, size_t user_len, loff_t *pos)
262 #ifdef CONFIG_DASD_PROFILE
266 if (user_len > 65536)
268 buffer = dasd_get_user_string(user_buf, user_len);
270 return PTR_ERR(buffer);
272 /* check for valid verbs */
273 str = skip_spaces(buffer);
274 if (strncmp(str, "set", 3) == 0 && isspace(str[3])) {
275 /* 'set xxx' was given */
276 str = skip_spaces(str + 4);
277 if (strcmp(str, "on") == 0) {
278 /* switch on statistics profiling */
279 rc = dasd_stats_all_block_on();
281 dasd_stats_all_block_off();
284 rc = dasd_profile_on(&dasd_global_profile);
286 dasd_stats_all_block_off();
289 dasd_profile_reset(&dasd_global_profile);
290 dasd_global_profile_level = DASD_PROFILE_ON;
291 pr_info("The statistics feature has been switched "
293 } else if (strcmp(str, "off") == 0) {
294 /* switch off statistics profiling */
295 dasd_global_profile_level = DASD_PROFILE_OFF;
296 dasd_profile_off(&dasd_global_profile);
297 dasd_stats_all_block_off();
298 pr_info("The statistics feature has been switched "
301 goto out_parse_error;
302 } else if (strncmp(str, "reset", 5) == 0) {
303 /* reset the statistics */
304 dasd_profile_reset(&dasd_global_profile);
305 dasd_stats_all_block_reset();
306 pr_info("The statistics have been reset\n");
308 goto out_parse_error;
313 pr_warn("%s is not a supported value for /proc/dasd/statistics\n", str);
318 pr_warn("/proc/dasd/statistics: is not activated in this kernel\n");
320 #endif /* CONFIG_DASD_PROFILE */
323 static const struct file_operations dasd_stats_proc_fops = {
324 .owner = THIS_MODULE,
325 .open = dasd_stats_proc_open,
328 .release = single_release,
329 .write = dasd_stats_proc_write,
333 * Create dasd proc-fs entries.
334 * In case creation failed, cleanup and return -ENOENT.
339 dasd_proc_root_entry = proc_mkdir("dasd", NULL);
340 if (!dasd_proc_root_entry)
342 dasd_devices_entry = proc_create_seq("devices", 0444,
343 dasd_proc_root_entry,
344 &dasd_devices_seq_ops);
345 if (!dasd_devices_entry)
347 dasd_statistics_entry = proc_create("statistics",
348 S_IFREG | S_IRUGO | S_IWUSR,
349 dasd_proc_root_entry,
350 &dasd_stats_proc_fops);
351 if (!dasd_statistics_entry)
352 goto out_nostatistics;
356 remove_proc_entry("devices", dasd_proc_root_entry);
358 remove_proc_entry("dasd", NULL);
366 remove_proc_entry("devices", dasd_proc_root_entry);
367 remove_proc_entry("statistics", dasd_proc_root_entry);
368 remove_proc_entry("dasd", NULL);