blob: 9088de84b45de867fd845478ac97b3b5c18bf543 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/ctype.h>
15#include <linux/seq_file.h>
16#include <linux/vmalloc.h>
Michael Holzheu66a464d2005-06-25 14:55:33 -070017#include <linux/proc_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19#include <asm/debug.h>
20#include <asm/uaccess.h>
21
22/* This is ugly... */
23#define PRINTK_HEADER "dasd_proc:"
24
25#include "dasd_int.h"
26
27static struct proc_dir_entry *dasd_proc_root_entry = NULL;
28static struct proc_dir_entry *dasd_devices_entry = NULL;
29static struct proc_dir_entry *dasd_statistics_entry = NULL;
30
Heiko Carstens3d621492007-07-10 11:24:17 +020031#ifdef CONFIG_DASD_PROFILE
Heiko Carstens4d284ca2007-02-05 21:18:53 +010032static char *
Linus Torvalds1da177e2005-04-16 15:20:36 -070033dasd_get_user_string(const char __user *user_buf, size_t user_len)
34{
35 char *buffer;
36
37 buffer = kmalloc(user_len + 1, GFP_KERNEL);
38 if (buffer == NULL)
39 return ERR_PTR(-ENOMEM);
40 if (copy_from_user(buffer, user_buf, user_len) != 0) {
41 kfree(buffer);
42 return ERR_PTR(-EFAULT);
43 }
44 /* got the string, now strip linefeed. */
45 if (buffer[user_len - 1] == '\n')
46 buffer[user_len - 1] = 0;
47 else
48 buffer[user_len] = 0;
49 return buffer;
50}
Heiko Carstens3d621492007-07-10 11:24:17 +020051#endif /* CONFIG_DASD_PROFILE */
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53static int
54dasd_devices_show(struct seq_file *m, void *v)
55{
56 struct dasd_device *device;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +010057 struct dasd_block *block;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 char *substr;
59
60 device = dasd_device_from_devindex((unsigned long) v - 1);
61 if (IS_ERR(device))
62 return 0;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +010063 if (device->block)
64 block = device->block;
Stefan Weinhubera5e23832008-03-05 12:37:11 +010065 else {
66 dasd_put_device(device);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +010067 return 0;
Stefan Weinhubera5e23832008-03-05 12:37:11 +010068 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 /* Print device number. */
Kay Sievers2a0217d2008-10-10 21:33:09 +020070 seq_printf(m, "%s", dev_name(&device->cdev->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 /* Print discipline string. */
72 if (device != NULL && device->discipline != NULL)
73 seq_printf(m, "(%s)", device->discipline->name);
74 else
75 seq_printf(m, "(none)");
76 /* Print kdev. */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +010077 if (block->gdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 seq_printf(m, " at (%3d:%6d)",
Tejun Heof331c022008-09-03 09:01:48 +020079 MAJOR(disk_devt(block->gdp)),
80 MINOR(disk_devt(block->gdp)));
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 else
82 seq_printf(m, " at (???:??????)");
83 /* Print device name. */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +010084 if (block->gdp)
85 seq_printf(m, " is %-8s", block->gdp->disk_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 else
87 seq_printf(m, " is ????????");
88 /* Print devices features. */
Horst Hummelc6eb7b72005-09-03 15:57:58 -070089 substr = (device->features & DASD_FEATURE_READONLY) ? "(ro)" : " ";
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 seq_printf(m, "%4s: ", substr);
91 /* Print device status information. */
92 switch ((device != NULL) ? device->state : -1) {
93 case -1:
94 seq_printf(m, "unknown");
95 break;
96 case DASD_STATE_NEW:
97 seq_printf(m, "new");
98 break;
99 case DASD_STATE_KNOWN:
100 seq_printf(m, "detected");
101 break;
102 case DASD_STATE_BASIC:
103 seq_printf(m, "basic");
104 break;
Horst Hummel90f00942006-03-07 21:55:39 -0800105 case DASD_STATE_UNFMT:
Horst Hummelb707dbe2006-03-09 17:33:52 -0800106 seq_printf(m, "unformatted");
Horst Hummel90f00942006-03-07 21:55:39 -0800107 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 case DASD_STATE_READY:
109 case DASD_STATE_ONLINE:
110 seq_printf(m, "active ");
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100111 if (dasd_check_blocksize(block->bp_block))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 seq_printf(m, "n/f ");
113 else
114 seq_printf(m,
115 "at blocksize: %d, %ld blocks, %ld MB",
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100116 block->bp_block, block->blocks,
117 ((block->bp_block >> 9) *
118 block->blocks) >> 11);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 break;
120 default:
121 seq_printf(m, "no stat");
122 break;
123 }
124 dasd_put_device(device);
125 if (dasd_probeonly)
126 seq_printf(m, "(probeonly)");
127 seq_printf(m, "\n");
128 return 0;
129}
130
131static void *dasd_devices_start(struct seq_file *m, loff_t *pos)
132{
133 if (*pos >= dasd_max_devindex)
134 return NULL;
135 return (void *)((unsigned long) *pos + 1);
136}
137
138static void *dasd_devices_next(struct seq_file *m, void *v, loff_t *pos)
139{
140 ++*pos;
141 return dasd_devices_start(m, pos);
142}
143
144static void dasd_devices_stop(struct seq_file *m, void *v)
145{
146}
147
Jan Engelhardt5c81cdb2008-01-26 14:11:29 +0100148static const struct seq_operations dasd_devices_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 .start = dasd_devices_start,
150 .next = dasd_devices_next,
151 .stop = dasd_devices_stop,
152 .show = dasd_devices_show,
153};
154
155static int dasd_devices_open(struct inode *inode, struct file *file)
156{
157 return seq_open(file, &dasd_devices_seq_ops);
158}
159
Arjan van de Vend54b1fd2007-02-12 00:55:34 -0800160static const struct file_operations dasd_devices_file_ops = {
Denis V. Lunev8b594002008-04-29 01:02:20 -0700161 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 .open = dasd_devices_open,
163 .read = seq_read,
164 .llseek = seq_lseek,
165 .release = seq_release,
166};
167
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100168static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169dasd_calc_metrics(char *page, char **start, off_t off,
170 int count, int *eof, int len)
171{
172 len = (len > off) ? len - off : 0;
173 if (len > count)
174 len = count;
175 if (len < count)
176 *eof = 1;
177 *start = page + off;
178 return len;
179}
180
Heiko Carstens3d621492007-07-10 11:24:17 +0200181#ifdef CONFIG_DASD_PROFILE
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100182static char *
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100183dasd_statistics_array(char *str, unsigned int *array, int shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184{
185 int i;
186
187 for (i = 0; i < 32; i++) {
188 str += sprintf(str, "%7d ", array[i] >> shift);
189 if (i == 15)
190 str += sprintf(str, "\n");
191 }
192 str += sprintf(str,"\n");
193 return str;
194}
Heiko Carstens3d621492007-07-10 11:24:17 +0200195#endif /* CONFIG_DASD_PROFILE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197static int
198dasd_statistics_read(char *page, char **start, off_t off,
199 int count, int *eof, void *data)
200{
201 unsigned long len;
202#ifdef CONFIG_DASD_PROFILE
203 struct dasd_profile_info_t *prof;
204 char *str;
205 int shift;
206
207 /* check for active profiling */
208 if (dasd_profile_level == DASD_PROFILE_OFF) {
209 len = sprintf(page, "Statistics are off - they might be "
210 "switched on using 'echo set on > "
211 "/proc/dasd/statistics'\n");
212 return dasd_calc_metrics(page, start, off, count, eof, len);
213 }
214
215 prof = &dasd_global_profile;
216 /* prevent couter 'overflow' on output */
217 for (shift = 0; (prof->dasd_io_reqs >> shift) > 9999999; shift++);
218
219 str = page;
220 str += sprintf(str, "%d dasd I/O requests\n", prof->dasd_io_reqs);
221 str += sprintf(str, "with %d sectors(512B each)\n",
222 prof->dasd_io_sects);
223 str += sprintf(str,
224 " __<4 ___8 __16 __32 __64 _128 "
225 " _256 _512 __1k __2k __4k __8k "
226 " _16k _32k _64k 128k\n");
227 str += sprintf(str,
228 " _256 _512 __1M __2M __4M __8M "
229 " _16M _32M _64M 128M 256M 512M "
230 " __1G __2G __4G " " _>4G\n");
231
232 str += sprintf(str, "Histogram of sizes (512B secs)\n");
233 str = dasd_statistics_array(str, prof->dasd_io_secs, shift);
234 str += sprintf(str, "Histogram of I/O times (microseconds)\n");
235 str = dasd_statistics_array(str, prof->dasd_io_times, shift);
236 str += sprintf(str, "Histogram of I/O times per sector\n");
237 str = dasd_statistics_array(str, prof->dasd_io_timps, shift);
238 str += sprintf(str, "Histogram of I/O time till ssch\n");
239 str = dasd_statistics_array(str, prof->dasd_io_time1, shift);
240 str += sprintf(str, "Histogram of I/O time between ssch and irq\n");
241 str = dasd_statistics_array(str, prof->dasd_io_time2, shift);
242 str += sprintf(str, "Histogram of I/O time between ssch "
243 "and irq per sector\n");
244 str = dasd_statistics_array(str, prof->dasd_io_time2ps, shift);
245 str += sprintf(str, "Histogram of I/O time between irq and end\n");
246 str = dasd_statistics_array(str, prof->dasd_io_time3, shift);
247 str += sprintf(str, "# of req in chanq at enqueuing (1..32) \n");
248 str = dasd_statistics_array(str, prof->dasd_io_nr_req, shift);
249 len = str - page;
250#else
251 len = sprintf(page, "Statistics are not activated in this kernel\n");
252#endif
253 return dasd_calc_metrics(page, start, off, count, eof, len);
254}
255
256static int
257dasd_statistics_write(struct file *file, const char __user *user_buf,
258 unsigned long user_len, void *data)
259{
260#ifdef CONFIG_DASD_PROFILE
261 char *buffer, *str;
262
263 if (user_len > 65536)
264 user_len = 65536;
265 buffer = dasd_get_user_string(user_buf, user_len);
266 if (IS_ERR(buffer))
267 return PTR_ERR(buffer);
268 MESSAGE_LOG(KERN_INFO, "/proc/dasd/statictics: '%s'", buffer);
269
270 /* check for valid verbs */
271 for (str = buffer; isspace(*str); str++);
272 if (strncmp(str, "set", 3) == 0 && isspace(str[3])) {
273 /* 'set xxx' was given */
274 for (str = str + 4; isspace(*str); str++);
275 if (strcmp(str, "on") == 0) {
276 /* switch on statistics profiling */
277 dasd_profile_level = DASD_PROFILE_ON;
278 MESSAGE(KERN_INFO, "%s", "Statistics switched on");
279 } else if (strcmp(str, "off") == 0) {
280 /* switch off and reset statistics profiling */
281 memset(&dasd_global_profile,
282 0, sizeof (struct dasd_profile_info_t));
283 dasd_profile_level = DASD_PROFILE_OFF;
284 MESSAGE(KERN_INFO, "%s", "Statistics switched off");
285 } else
286 goto out_error;
287 } else if (strncmp(str, "reset", 5) == 0) {
288 /* reset the statistics */
289 memset(&dasd_global_profile, 0,
290 sizeof (struct dasd_profile_info_t));
291 MESSAGE(KERN_INFO, "%s", "Statistics reset");
292 } else
293 goto out_error;
294 kfree(buffer);
295 return user_len;
296out_error:
297 MESSAGE(KERN_WARNING, "%s",
298 "/proc/dasd/statistics: only 'set on', 'set off' "
299 "and 'reset' are supported verbs");
300 kfree(buffer);
301 return -EINVAL;
302#else
303 MESSAGE(KERN_WARNING, "%s",
304 "/proc/dasd/statistics: is not activated in this kernel");
305 return user_len;
306#endif /* CONFIG_DASD_PROFILE */
307}
308
Horst Hummel7220fe82006-04-10 22:53:48 -0700309/*
310 * Create dasd proc-fs entries.
311 * In case creation failed, cleanup and return -ENOENT.
312 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313int
314dasd_proc_init(void)
315{
Alexey Dobriyanc74c1202008-04-29 01:01:44 -0700316 dasd_proc_root_entry = proc_mkdir("dasd", NULL);
Horst Hummel7220fe82006-04-10 22:53:48 -0700317 if (!dasd_proc_root_entry)
318 goto out_nodasd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 dasd_proc_root_entry->owner = THIS_MODULE;
Denis V. Lunev8b594002008-04-29 01:02:20 -0700320 dasd_devices_entry = proc_create("devices",
321 S_IFREG | S_IRUGO | S_IWUSR,
322 dasd_proc_root_entry,
323 &dasd_devices_file_ops);
Horst Hummel7220fe82006-04-10 22:53:48 -0700324 if (!dasd_devices_entry)
325 goto out_nodevices;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 dasd_statistics_entry = create_proc_entry("statistics",
327 S_IFREG | S_IRUGO | S_IWUSR,
328 dasd_proc_root_entry);
Horst Hummel7220fe82006-04-10 22:53:48 -0700329 if (!dasd_statistics_entry)
330 goto out_nostatistics;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 dasd_statistics_entry->read_proc = dasd_statistics_read;
332 dasd_statistics_entry->write_proc = dasd_statistics_write;
333 dasd_statistics_entry->owner = THIS_MODULE;
334 return 0;
Horst Hummel7220fe82006-04-10 22:53:48 -0700335
336 out_nostatistics:
337 remove_proc_entry("devices", dasd_proc_root_entry);
338 out_nodevices:
Alexey Dobriyanc74c1202008-04-29 01:01:44 -0700339 remove_proc_entry("dasd", NULL);
Horst Hummel7220fe82006-04-10 22:53:48 -0700340 out_nodasd:
341 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
343
344void
345dasd_proc_exit(void)
346{
347 remove_proc_entry("devices", dasd_proc_root_entry);
348 remove_proc_entry("statistics", dasd_proc_root_entry);
Alexey Dobriyanc74c1202008-04-29 01:01:44 -0700349 remove_proc_entry("dasd", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350}