sched: guest CPU accounting: add guest-CPU /proc/stat field
[deliverable/linux.git] / fs / proc / proc_misc.c
CommitLineData
1da177e4
LT
1/*
2 * linux/fs/proc/proc_misc.c
3 *
4 * linux/fs/proc/array.c
5 * Copyright (C) 1992 by Linus Torvalds
6 * based on ideas by Darren Senn
7 *
8 * This used to be the part of array.c. See the rest of history and credits
9 * there. I took this into a separate file and switched the thing to generic
10 * proc_file_inode_operations, leaving in array.c only per-process stuff.
11 * Inumbers allocation made dynamic (via create_proc_entry()). AV, May 1999.
12 *
13 * Changes:
14 * Fulton Green : Encapsulated position metric calculations.
15 * <kernel@FultonGreen.com>
16 */
17
18#include <linux/types.h>
19#include <linux/errno.h>
20#include <linux/time.h>
21#include <linux/kernel.h>
22#include <linux/kernel_stat.h>
7170be5f 23#include <linux/fs.h>
1da177e4
LT
24#include <linux/tty.h>
25#include <linux/string.h>
26#include <linux/mman.h>
27#include <linux/proc_fs.h>
28#include <linux/ioport.h>
1da177e4
LT
29#include <linux/mm.h>
30#include <linux/mmzone.h>
31#include <linux/pagemap.h>
32#include <linux/swap.h>
33#include <linux/slab.h>
34#include <linux/smp.h>
35#include <linux/signal.h>
36#include <linux/module.h>
37#include <linux/init.h>
1da177e4
LT
38#include <linux/seq_file.h>
39#include <linux/times.h>
40#include <linux/profile.h>
7bf65382 41#include <linux/utsname.h>
1da177e4
LT
42#include <linux/blkdev.h>
43#include <linux/hugetlb.h>
44#include <linux/jiffies.h>
45#include <linux/sysrq.h>
46#include <linux/vmalloc.h>
666bfddb 47#include <linux/crash_dump.h>
61a58c6c 48#include <linux/pid_namespace.h>
1da177e4
LT
49#include <asm/uaccess.h>
50#include <asm/pgtable.h>
51#include <asm/io.h>
52#include <asm/tlb.h>
53#include <asm/div64.h>
54#include "internal.h"
55
56#define LOAD_INT(x) ((x) >> FSHIFT)
57#define LOAD_FRAC(x) LOAD_INT(((x) & (FIXED_1-1)) * 100)
58/*
59 * Warning: stuff below (imported functions) assumes that its output will fit
60 * into one page. For some of those functions it may be wrong. Moreover, we
61 * have a way to deal with that gracefully. Right now I used straightforward
62 * wrappers, but this needs further analysis wrt potential overflows.
63 */
64extern int get_hardware_list(char *);
65extern int get_stram_list(char *);
1da177e4
LT
66extern int get_filesystem_list(char *);
67extern int get_exec_domain_list(char *);
68extern int get_dma_list(char *);
69extern int get_locks_status (char *, char **, off_t, int);
70
71static int proc_calc_metrics(char *page, char **start, off_t off,
72 int count, int *eof, int len)
73{
74 if (len <= off+count) *eof = 1;
75 *start = page + off;
76 len -= off;
77 if (len>count) len = count;
78 if (len<0) len = 0;
79 return len;
80}
81
82static int loadavg_read_proc(char *page, char **start, off_t off,
83 int count, int *eof, void *data)
84{
85 int a, b, c;
86 int len;
87
88 a = avenrun[0] + (FIXED_1/200);
89 b = avenrun[1] + (FIXED_1/200);
90 c = avenrun[2] + (FIXED_1/200);
91 len = sprintf(page,"%d.%02d %d.%02d %d.%02d %ld/%d %d\n",
92 LOAD_INT(a), LOAD_FRAC(a),
93 LOAD_INT(b), LOAD_FRAC(b),
94 LOAD_INT(c), LOAD_FRAC(c),
6cc1b22a 95 nr_running(), nr_threads, current->nsproxy->pid_ns->last_pid);
1da177e4
LT
96 return proc_calc_metrics(page, start, off, count, eof, len);
97}
98
99static int uptime_read_proc(char *page, char **start, off_t off,
100 int count, int *eof, void *data)
101{
102 struct timespec uptime;
103 struct timespec idle;
104 int len;
105 cputime_t idletime = cputime_add(init_task.utime, init_task.stime);
106
107 do_posix_clock_monotonic_gettime(&uptime);
d6214141 108 monotonic_to_bootbased(&uptime);
1da177e4
LT
109 cputime_to_timespec(idletime, &idle);
110 len = sprintf(page,"%lu.%02lu %lu.%02lu\n",
111 (unsigned long) uptime.tv_sec,
112 (uptime.tv_nsec / (NSEC_PER_SEC / 100)),
113 (unsigned long) idle.tv_sec,
114 (idle.tv_nsec / (NSEC_PER_SEC / 100)));
115
116 return proc_calc_metrics(page, start, off, count, eof, len);
117}
118
119static int meminfo_read_proc(char *page, char **start, off_t off,
120 int count, int *eof, void *data)
121{
122 struct sysinfo i;
123 int len;
1da177e4
LT
124 unsigned long committed;
125 unsigned long allowed;
126 struct vmalloc_info vmi;
4c4c402d 127 long cached;
1da177e4 128
1da177e4
LT
129/*
130 * display in kilobytes.
131 */
132#define K(x) ((x) << (PAGE_SHIFT - 10))
133 si_meminfo(&i);
134 si_swapinfo(&i);
135 committed = atomic_read(&vm_committed_space);
136 allowed = ((totalram_pages - hugetlb_total_pages())
137 * sysctl_overcommit_ratio / 100) + total_swap_pages;
138
347ce434
CL
139 cached = global_page_state(NR_FILE_PAGES) -
140 total_swapcache_pages - i.bufferram;
4c4c402d
MH
141 if (cached < 0)
142 cached = 0;
143
1da177e4
LT
144 get_vmalloc_info(&vmi);
145
146 /*
147 * Tagged format, for easy grepping and expansion.
148 */
149 len = sprintf(page,
150 "MemTotal: %8lu kB\n"
151 "MemFree: %8lu kB\n"
152 "Buffers: %8lu kB\n"
153 "Cached: %8lu kB\n"
154 "SwapCached: %8lu kB\n"
155 "Active: %8lu kB\n"
156 "Inactive: %8lu kB\n"
182e8e23 157#ifdef CONFIG_HIGHMEM
1da177e4
LT
158 "HighTotal: %8lu kB\n"
159 "HighFree: %8lu kB\n"
160 "LowTotal: %8lu kB\n"
161 "LowFree: %8lu kB\n"
182e8e23 162#endif
1da177e4
LT
163 "SwapTotal: %8lu kB\n"
164 "SwapFree: %8lu kB\n"
165 "Dirty: %8lu kB\n"
166 "Writeback: %8lu kB\n"
f3dbd344 167 "AnonPages: %8lu kB\n"
1da177e4
LT
168 "Mapped: %8lu kB\n"
169 "Slab: %8lu kB\n"
972d1a7b
CL
170 "SReclaimable: %8lu kB\n"
171 "SUnreclaim: %8lu kB\n"
df849a15 172 "PageTables: %8lu kB\n"
f5ef68da 173 "NFS_Unstable: %8lu kB\n"
d2c5e30c 174 "Bounce: %8lu kB\n"
1da177e4
LT
175 "CommitLimit: %8lu kB\n"
176 "Committed_AS: %8lu kB\n"
1da177e4
LT
177 "VmallocTotal: %8lu kB\n"
178 "VmallocUsed: %8lu kB\n"
179 "VmallocChunk: %8lu kB\n",
180 K(i.totalram),
181 K(i.freeram),
182 K(i.bufferram),
4c4c402d 183 K(cached),
1da177e4 184 K(total_swapcache_pages),
65e458d4
CL
185 K(global_page_state(NR_ACTIVE)),
186 K(global_page_state(NR_INACTIVE)),
182e8e23 187#ifdef CONFIG_HIGHMEM
1da177e4
LT
188 K(i.totalhigh),
189 K(i.freehigh),
190 K(i.totalram-i.totalhigh),
191 K(i.freeram-i.freehigh),
182e8e23 192#endif
1da177e4
LT
193 K(i.totalswap),
194 K(i.freeswap),
b1e7a8fd 195 K(global_page_state(NR_FILE_DIRTY)),
ce866b34 196 K(global_page_state(NR_WRITEBACK)),
f3dbd344 197 K(global_page_state(NR_ANON_PAGES)),
65ba55f5 198 K(global_page_state(NR_FILE_MAPPED)),
972d1a7b
CL
199 K(global_page_state(NR_SLAB_RECLAIMABLE) +
200 global_page_state(NR_SLAB_UNRECLAIMABLE)),
201 K(global_page_state(NR_SLAB_RECLAIMABLE)),
202 K(global_page_state(NR_SLAB_UNRECLAIMABLE)),
df849a15 203 K(global_page_state(NR_PAGETABLE)),
fd39fc85 204 K(global_page_state(NR_UNSTABLE_NFS)),
d2c5e30c 205 K(global_page_state(NR_BOUNCE)),
1da177e4
LT
206 K(allowed),
207 K(committed),
1da177e4
LT
208 (unsigned long)VMALLOC_TOTAL >> 10,
209 vmi.used >> 10,
210 vmi.largest_chunk >> 10
211 );
212
213 len += hugetlb_report_meminfo(page + len);
214
215 return proc_calc_metrics(page, start, off, count, eof, len);
216#undef K
217}
218
219extern struct seq_operations fragmentation_op;
220static int fragmentation_open(struct inode *inode, struct file *file)
221{
222 (void)inode;
223 return seq_open(file, &fragmentation_op);
224}
225
00977a59 226static const struct file_operations fragmentation_file_operations = {
1da177e4
LT
227 .open = fragmentation_open,
228 .read = seq_read,
229 .llseek = seq_lseek,
230 .release = seq_release,
231};
232
295ab934
ND
233extern struct seq_operations zoneinfo_op;
234static int zoneinfo_open(struct inode *inode, struct file *file)
235{
236 return seq_open(file, &zoneinfo_op);
237}
238
00977a59 239static const struct file_operations proc_zoneinfo_file_operations = {
295ab934
ND
240 .open = zoneinfo_open,
241 .read = seq_read,
242 .llseek = seq_lseek,
243 .release = seq_release,
244};
245
1da177e4
LT
246static int version_read_proc(char *page, char **start, off_t off,
247 int count, int *eof, void *data)
248{
249 int len;
250
3eb3c740 251 len = snprintf(page, PAGE_SIZE, linux_proc_banner,
8993780a
LT
252 utsname()->sysname,
253 utsname()->release,
254 utsname()->version);
1da177e4
LT
255 return proc_calc_metrics(page, start, off, count, eof, len);
256}
257
258extern struct seq_operations cpuinfo_op;
259static int cpuinfo_open(struct inode *inode, struct file *file)
260{
261 return seq_open(file, &cpuinfo_op);
262}
7170be5f 263
00977a59 264static const struct file_operations proc_cpuinfo_operations = {
68eef3b4
JK
265 .open = cpuinfo_open,
266 .read = seq_read,
267 .llseek = seq_lseek,
268 .release = seq_release,
7170be5f
NH
269};
270
68eef3b4 271static int devinfo_show(struct seq_file *f, void *v)
7170be5f 272{
68eef3b4
JK
273 int i = *(loff_t *) v;
274
275 if (i < CHRDEV_MAJOR_HASH_SIZE) {
276 if (i == 0)
277 seq_printf(f, "Character devices:\n");
278 chrdev_show(f, i);
9361401e
DH
279 }
280#ifdef CONFIG_BLOCK
281 else {
68eef3b4
JK
282 i -= CHRDEV_MAJOR_HASH_SIZE;
283 if (i == 0)
284 seq_printf(f, "\nBlock devices:\n");
285 blkdev_show(f, i);
7170be5f 286 }
9361401e 287#endif
68eef3b4 288 return 0;
7170be5f
NH
289}
290
68eef3b4 291static void *devinfo_start(struct seq_file *f, loff_t *pos)
7170be5f 292{
68eef3b4
JK
293 if (*pos < (BLKDEV_MAJOR_HASH_SIZE + CHRDEV_MAJOR_HASH_SIZE))
294 return pos;
295 return NULL;
7170be5f
NH
296}
297
68eef3b4 298static void *devinfo_next(struct seq_file *f, void *v, loff_t *pos)
7170be5f 299{
68eef3b4
JK
300 (*pos)++;
301 if (*pos >= (BLKDEV_MAJOR_HASH_SIZE + CHRDEV_MAJOR_HASH_SIZE))
302 return NULL;
303 return pos;
7170be5f
NH
304}
305
68eef3b4 306static void devinfo_stop(struct seq_file *f, void *v)
7170be5f 307{
68eef3b4 308 /* Nothing to do */
7170be5f
NH
309}
310
68eef3b4
JK
311static struct seq_operations devinfo_ops = {
312 .start = devinfo_start,
313 .next = devinfo_next,
314 .stop = devinfo_stop,
315 .show = devinfo_show
7170be5f
NH
316};
317
68eef3b4 318static int devinfo_open(struct inode *inode, struct file *filp)
7170be5f 319{
68eef3b4 320 return seq_open(filp, &devinfo_ops);
7170be5f
NH
321}
322
00977a59 323static const struct file_operations proc_devinfo_operations = {
7170be5f
NH
324 .open = devinfo_open,
325 .read = seq_read,
326 .llseek = seq_lseek,
327 .release = seq_release,
328};
329
1da177e4
LT
330extern struct seq_operations vmstat_op;
331static int vmstat_open(struct inode *inode, struct file *file)
332{
333 return seq_open(file, &vmstat_op);
334}
00977a59 335static const struct file_operations proc_vmstat_file_operations = {
1da177e4
LT
336 .open = vmstat_open,
337 .read = seq_read,
338 .llseek = seq_lseek,
339 .release = seq_release,
340};
341
342#ifdef CONFIG_PROC_HARDWARE
343static int hardware_read_proc(char *page, char **start, off_t off,
344 int count, int *eof, void *data)
345{
346 int len = get_hardware_list(page);
347 return proc_calc_metrics(page, start, off, count, eof, len);
348}
349#endif
350
351#ifdef CONFIG_STRAM_PROC
352static int stram_read_proc(char *page, char **start, off_t off,
353 int count, int *eof, void *data)
354{
355 int len = get_stram_list(page);
356 return proc_calc_metrics(page, start, off, count, eof, len);
357}
358#endif
359
9361401e 360#ifdef CONFIG_BLOCK
1da177e4
LT
361extern struct seq_operations partitions_op;
362static int partitions_open(struct inode *inode, struct file *file)
363{
364 return seq_open(file, &partitions_op);
365}
00977a59 366static const struct file_operations proc_partitions_operations = {
1da177e4
LT
367 .open = partitions_open,
368 .read = seq_read,
369 .llseek = seq_lseek,
370 .release = seq_release,
371};
372
373extern struct seq_operations diskstats_op;
374static int diskstats_open(struct inode *inode, struct file *file)
375{
376 return seq_open(file, &diskstats_op);
377}
00977a59 378static const struct file_operations proc_diskstats_operations = {
1da177e4
LT
379 .open = diskstats_open,
380 .read = seq_read,
381 .llseek = seq_lseek,
382 .release = seq_release,
383};
9361401e 384#endif
1da177e4
LT
385
386#ifdef CONFIG_MODULES
387extern struct seq_operations modules_op;
388static int modules_open(struct inode *inode, struct file *file)
389{
390 return seq_open(file, &modules_op);
391}
00977a59 392static const struct file_operations proc_modules_operations = {
1da177e4
LT
393 .open = modules_open,
394 .read = seq_read,
395 .llseek = seq_lseek,
396 .release = seq_release,
397};
398#endif
399
10cef602 400#ifdef CONFIG_SLAB
1da177e4
LT
401static int slabinfo_open(struct inode *inode, struct file *file)
402{
403 return seq_open(file, &slabinfo_op);
404}
00977a59 405static const struct file_operations proc_slabinfo_operations = {
1da177e4
LT
406 .open = slabinfo_open,
407 .read = seq_read,
408 .write = slabinfo_write,
409 .llseek = seq_lseek,
410 .release = seq_release,
411};
871751e2
AV
412
413#ifdef CONFIG_DEBUG_SLAB_LEAK
414extern struct seq_operations slabstats_op;
415static int slabstats_open(struct inode *inode, struct file *file)
416{
417 unsigned long *n = kzalloc(PAGE_SIZE, GFP_KERNEL);
418 int ret = -ENOMEM;
419 if (n) {
420 ret = seq_open(file, &slabstats_op);
421 if (!ret) {
422 struct seq_file *m = file->private_data;
423 *n = PAGE_SIZE / (2 * sizeof(unsigned long));
424 m->private = n;
425 n = NULL;
426 }
427 kfree(n);
428 }
429 return ret;
430}
431
00977a59 432static const struct file_operations proc_slabstats_operations = {
871751e2
AV
433 .open = slabstats_open,
434 .read = seq_read,
435 .llseek = seq_lseek,
09f0892e 436 .release = seq_release_private,
871751e2
AV
437};
438#endif
10cef602 439#endif
1da177e4
LT
440
441static int show_stat(struct seq_file *p, void *v)
442{
443 int i;
444 unsigned long jif;
445 cputime64_t user, nice, system, idle, iowait, irq, softirq, steal;
5e84cfde 446 cputime64_t guest;
1da177e4 447 u64 sum = 0;
924b42d5 448 struct timespec boottime;
4004c69a
RT
449 unsigned int *per_irq_sum;
450
451 per_irq_sum = kzalloc(sizeof(unsigned int)*NR_IRQS, GFP_KERNEL);
452 if (!per_irq_sum)
453 return -ENOMEM;
1da177e4
LT
454
455 user = nice = system = idle = iowait =
456 irq = softirq = steal = cputime64_zero;
5e84cfde 457 guest = cputime64_zero;
924b42d5
TJ
458 getboottime(&boottime);
459 jif = boottime.tv_sec;
1da177e4 460
0a945022 461 for_each_possible_cpu(i) {
1da177e4
LT
462 int j;
463
464 user = cputime64_add(user, kstat_cpu(i).cpustat.user);
465 nice = cputime64_add(nice, kstat_cpu(i).cpustat.nice);
466 system = cputime64_add(system, kstat_cpu(i).cpustat.system);
467 idle = cputime64_add(idle, kstat_cpu(i).cpustat.idle);
468 iowait = cputime64_add(iowait, kstat_cpu(i).cpustat.iowait);
469 irq = cputime64_add(irq, kstat_cpu(i).cpustat.irq);
470 softirq = cputime64_add(softirq, kstat_cpu(i).cpustat.softirq);
471 steal = cputime64_add(steal, kstat_cpu(i).cpustat.steal);
5e84cfde 472 guest = cputime64_add(guest, kstat_cpu(i).cpustat.guest);
4004c69a
RT
473 for (j = 0; j < NR_IRQS; j++) {
474 unsigned int temp = kstat_cpu(i).irqs[j];
475 sum += temp;
476 per_irq_sum[j] += temp;
477 }
1da177e4
LT
478 }
479
5e84cfde 480 seq_printf(p, "cpu %llu %llu %llu %llu %llu %llu %llu %llu %llu\n",
1da177e4
LT
481 (unsigned long long)cputime64_to_clock_t(user),
482 (unsigned long long)cputime64_to_clock_t(nice),
483 (unsigned long long)cputime64_to_clock_t(system),
484 (unsigned long long)cputime64_to_clock_t(idle),
485 (unsigned long long)cputime64_to_clock_t(iowait),
486 (unsigned long long)cputime64_to_clock_t(irq),
487 (unsigned long long)cputime64_to_clock_t(softirq),
5e84cfde
LV
488 (unsigned long long)cputime64_to_clock_t(steal),
489 (unsigned long long)cputime64_to_clock_t(guest));
1da177e4
LT
490 for_each_online_cpu(i) {
491
492 /* Copy values here to work around gcc-2.95.3, gcc-2.96 */
493 user = kstat_cpu(i).cpustat.user;
494 nice = kstat_cpu(i).cpustat.nice;
495 system = kstat_cpu(i).cpustat.system;
496 idle = kstat_cpu(i).cpustat.idle;
497 iowait = kstat_cpu(i).cpustat.iowait;
498 irq = kstat_cpu(i).cpustat.irq;
499 softirq = kstat_cpu(i).cpustat.softirq;
500 steal = kstat_cpu(i).cpustat.steal;
5e84cfde
LV
501 guest = kstat_cpu(i).cpustat.guest;
502 seq_printf(p,
503 "cpu%d %llu %llu %llu %llu %llu %llu %llu %llu %llu\n",
1da177e4
LT
504 i,
505 (unsigned long long)cputime64_to_clock_t(user),
506 (unsigned long long)cputime64_to_clock_t(nice),
507 (unsigned long long)cputime64_to_clock_t(system),
508 (unsigned long long)cputime64_to_clock_t(idle),
509 (unsigned long long)cputime64_to_clock_t(iowait),
510 (unsigned long long)cputime64_to_clock_t(irq),
511 (unsigned long long)cputime64_to_clock_t(softirq),
5e84cfde
LV
512 (unsigned long long)cputime64_to_clock_t(steal),
513 (unsigned long long)cputime64_to_clock_t(guest));
1da177e4
LT
514 }
515 seq_printf(p, "intr %llu", (unsigned long long)sum);
516
c3508f8f
RT
517#ifndef CONFIG_SMP
518 /* Touches too many cache lines on SMP setups */
1da177e4 519 for (i = 0; i < NR_IRQS; i++)
4004c69a 520 seq_printf(p, " %u", per_irq_sum[i]);
1da177e4
LT
521#endif
522
523 seq_printf(p,
524 "\nctxt %llu\n"
525 "btime %lu\n"
526 "processes %lu\n"
527 "procs_running %lu\n"
528 "procs_blocked %lu\n",
529 nr_context_switches(),
530 (unsigned long)jif,
531 total_forks,
532 nr_running(),
533 nr_iowait());
534
4004c69a 535 kfree(per_irq_sum);
1da177e4
LT
536 return 0;
537}
538
539static int stat_open(struct inode *inode, struct file *file)
540{
541 unsigned size = 4096 * (1 + num_possible_cpus() / 32);
542 char *buf;
543 struct seq_file *m;
544 int res;
545
546 /* don't ask for more than the kmalloc() max size, currently 128 KB */
547 if (size > 128 * 1024)
548 size = 128 * 1024;
549 buf = kmalloc(size, GFP_KERNEL);
550 if (!buf)
551 return -ENOMEM;
552
553 res = single_open(file, show_stat, NULL);
554 if (!res) {
555 m = file->private_data;
556 m->buf = buf;
557 m->size = size;
558 } else
559 kfree(buf);
560 return res;
561}
00977a59 562static const struct file_operations proc_stat_operations = {
1da177e4
LT
563 .open = stat_open,
564 .read = seq_read,
565 .llseek = seq_lseek,
566 .release = single_release,
567};
568
1da177e4
LT
569/*
570 * /proc/interrupts
571 */
572static void *int_seq_start(struct seq_file *f, loff_t *pos)
573{
574 return (*pos <= NR_IRQS) ? pos : NULL;
575}
576
577static void *int_seq_next(struct seq_file *f, void *v, loff_t *pos)
578{
579 (*pos)++;
580 if (*pos > NR_IRQS)
581 return NULL;
582 return pos;
583}
584
585static void int_seq_stop(struct seq_file *f, void *v)
586{
587 /* Nothing to do */
588}
589
590
591extern int show_interrupts(struct seq_file *f, void *v); /* In arch code */
592static struct seq_operations int_seq_ops = {
593 .start = int_seq_start,
594 .next = int_seq_next,
595 .stop = int_seq_stop,
596 .show = show_interrupts
597};
598
599static int interrupts_open(struct inode *inode, struct file *filp)
600{
601 return seq_open(filp, &int_seq_ops);
602}
603
00977a59 604static const struct file_operations proc_interrupts_operations = {
1da177e4
LT
605 .open = interrupts_open,
606 .read = seq_read,
607 .llseek = seq_lseek,
608 .release = seq_release,
609};
610
611static int filesystems_read_proc(char *page, char **start, off_t off,
612 int count, int *eof, void *data)
613{
614 int len = get_filesystem_list(page);
615 return proc_calc_metrics(page, start, off, count, eof, len);
616}
617
618static int cmdline_read_proc(char *page, char **start, off_t off,
619 int count, int *eof, void *data)
620{
621 int len;
622
623 len = sprintf(page, "%s\n", saved_command_line);
624 return proc_calc_metrics(page, start, off, count, eof, len);
625}
626
627static int locks_read_proc(char *page, char **start, off_t off,
628 int count, int *eof, void *data)
629{
630 int len = get_locks_status(page, start, off, count);
631
632 if (len < count)
633 *eof = 1;
634 return len;
635}
636
637static int execdomains_read_proc(char *page, char **start, off_t off,
638 int count, int *eof, void *data)
639{
640 int len = get_exec_domain_list(page);
641 return proc_calc_metrics(page, start, off, count, eof, len);
642}
643
644#ifdef CONFIG_MAGIC_SYSRQ
645/*
646 * writing 'C' to /proc/sysrq-trigger is like sysrq-C
647 */
648static ssize_t write_sysrq_trigger(struct file *file, const char __user *buf,
649 size_t count, loff_t *ppos)
650{
651 if (count) {
652 char c;
653
654 if (get_user(c, buf))
655 return -EFAULT;
7d12e780 656 __handle_sysrq(c, NULL, 0);
1da177e4
LT
657 }
658 return count;
659}
660
00977a59 661static const struct file_operations proc_sysrq_trigger_operations = {
1da177e4
LT
662 .write = write_sysrq_trigger,
663};
664#endif
665
666struct proc_dir_entry *proc_root_kcore;
667
99ac48f5 668void create_seq_entry(char *name, mode_t mode, const struct file_operations *f)
1da177e4
LT
669{
670 struct proc_dir_entry *entry;
671 entry = create_proc_entry(name, mode, NULL);
672 if (entry)
673 entry->proc_fops = f;
674}
675
676void __init proc_misc_init(void)
677{
1da177e4
LT
678 static struct {
679 char *name;
680 int (*read_proc)(char*,char**,off_t,int,int*,void*);
681 } *p, simple_ones[] = {
682 {"loadavg", loadavg_read_proc},
683 {"uptime", uptime_read_proc},
684 {"meminfo", meminfo_read_proc},
685 {"version", version_read_proc},
686#ifdef CONFIG_PROC_HARDWARE
687 {"hardware", hardware_read_proc},
688#endif
689#ifdef CONFIG_STRAM_PROC
690 {"stram", stram_read_proc},
691#endif
1da177e4
LT
692 {"filesystems", filesystems_read_proc},
693 {"cmdline", cmdline_read_proc},
694 {"locks", locks_read_proc},
695 {"execdomains", execdomains_read_proc},
696 {NULL,}
697 };
698 for (p = simple_ones; p->name; p++)
699 create_proc_read_entry(p->name, 0, NULL, p->read_proc, NULL);
700
701 proc_symlink("mounts", NULL, "self/mounts");
702
703 /* And now for trickier ones */
c36264df 704#ifdef CONFIG_PRINTK
100bb934
AM
705 {
706 struct proc_dir_entry *entry;
707 entry = create_proc_entry("kmsg", S_IRUSR, &proc_root);
708 if (entry)
709 entry->proc_fops = &proc_kmsg_operations;
710 }
c36264df 711#endif
7170be5f 712 create_seq_entry("devices", 0, &proc_devinfo_operations);
1da177e4 713 create_seq_entry("cpuinfo", 0, &proc_cpuinfo_operations);
9361401e 714#ifdef CONFIG_BLOCK
1da177e4 715 create_seq_entry("partitions", 0, &proc_partitions_operations);
9361401e 716#endif
1da177e4
LT
717 create_seq_entry("stat", 0, &proc_stat_operations);
718 create_seq_entry("interrupts", 0, &proc_interrupts_operations);
10cef602 719#ifdef CONFIG_SLAB
1da177e4 720 create_seq_entry("slabinfo",S_IWUSR|S_IRUGO,&proc_slabinfo_operations);
871751e2
AV
721#ifdef CONFIG_DEBUG_SLAB_LEAK
722 create_seq_entry("slab_allocators", 0 ,&proc_slabstats_operations);
723#endif
10cef602 724#endif
1da177e4
LT
725 create_seq_entry("buddyinfo",S_IRUGO, &fragmentation_file_operations);
726 create_seq_entry("vmstat",S_IRUGO, &proc_vmstat_file_operations);
295ab934 727 create_seq_entry("zoneinfo",S_IRUGO, &proc_zoneinfo_file_operations);
9361401e 728#ifdef CONFIG_BLOCK
1da177e4 729 create_seq_entry("diskstats", 0, &proc_diskstats_operations);
9361401e 730#endif
1da177e4
LT
731#ifdef CONFIG_MODULES
732 create_seq_entry("modules", 0, &proc_modules_operations);
733#endif
734#ifdef CONFIG_SCHEDSTATS
735 create_seq_entry("schedstat", 0, &proc_schedstat_operations);
736#endif
737#ifdef CONFIG_PROC_KCORE
738 proc_root_kcore = create_proc_entry("kcore", S_IRUSR, NULL);
739 if (proc_root_kcore) {
740 proc_root_kcore->proc_fops = &proc_kcore_operations;
741 proc_root_kcore->size =
742 (size_t)high_memory - PAGE_OFFSET + PAGE_SIZE;
743 }
744#endif
666bfddb
VG
745#ifdef CONFIG_PROC_VMCORE
746 proc_vmcore = create_proc_entry("vmcore", S_IRUSR, NULL);
747 if (proc_vmcore)
748 proc_vmcore->proc_fops = &proc_vmcore_operations;
749#endif
1da177e4 750#ifdef CONFIG_MAGIC_SYSRQ
100bb934
AM
751 {
752 struct proc_dir_entry *entry;
753 entry = create_proc_entry("sysrq-trigger", S_IWUSR, NULL);
754 if (entry)
755 entry->proc_fops = &proc_sysrq_trigger_operations;
756 }
1da177e4 757#endif
1da177e4 758}
This page took 0.381123 seconds and 5 git commands to generate.