2 * linux/fs/proc/proc_misc.c
4 * linux/fs/proc/array.c
5 * Copyright (C) 1992 by Linus Torvalds
6 * based on ideas by Darren Senn
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.
14 * Fulton Green : Encapsulated position metric calculations.
15 * <kernel@FultonGreen.com>
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>
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>
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>
38 #include <linux/smp_lock.h>
39 #include <linux/seq_file.h>
40 #include <linux/times.h>
41 #include <linux/profile.h>
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>
47 #include <linux/crash_dump.h>
48 #include <asm/uaccess.h>
49 #include <asm/pgtable.h>
52 #include <asm/div64.h>
55 #define LOAD_INT(x) ((x) >> FSHIFT)
56 #define LOAD_FRAC(x) LOAD_INT(((x) & (FIXED_1-1)) * 100)
58 * Warning: stuff below (imported functions) assumes that its output will fit
59 * into one page. For some of those functions it may be wrong. Moreover, we
60 * have a way to deal with that gracefully. Right now I used straightforward
61 * wrappers, but this needs further analysis wrt potential overflows.
63 extern int get_hardware_list(char *);
64 extern int get_stram_list(char *);
65 extern int get_filesystem_list(char *);
66 extern int get_exec_domain_list(char *);
67 extern int get_dma_list(char *);
68 extern int get_locks_status (char *, char **, off_t
, int);
70 static int proc_calc_metrics(char *page
, char **start
, off_t off
,
71 int count
, int *eof
, int len
)
73 if (len
<= off
+count
) *eof
= 1;
76 if (len
>count
) len
= count
;
81 static int loadavg_read_proc(char *page
, char **start
, off_t off
,
82 int count
, int *eof
, void *data
)
87 a
= avenrun
[0] + (FIXED_1
/200);
88 b
= avenrun
[1] + (FIXED_1
/200);
89 c
= avenrun
[2] + (FIXED_1
/200);
90 len
= sprintf(page
,"%d.%02d %d.%02d %d.%02d %ld/%d %d\n",
91 LOAD_INT(a
), LOAD_FRAC(a
),
92 LOAD_INT(b
), LOAD_FRAC(b
),
93 LOAD_INT(c
), LOAD_FRAC(c
),
94 nr_running(), nr_threads
, last_pid
);
95 return proc_calc_metrics(page
, start
, off
, count
, eof
, len
);
98 static int uptime_read_proc(char *page
, char **start
, off_t off
,
99 int count
, int *eof
, void *data
)
101 struct timespec uptime
;
102 struct timespec idle
;
104 cputime_t idletime
= cputime_add(init_task
.utime
, init_task
.stime
);
106 do_posix_clock_monotonic_gettime(&uptime
);
107 cputime_to_timespec(idletime
, &idle
);
108 len
= sprintf(page
,"%lu.%02lu %lu.%02lu\n",
109 (unsigned long) uptime
.tv_sec
,
110 (uptime
.tv_nsec
/ (NSEC_PER_SEC
/ 100)),
111 (unsigned long) idle
.tv_sec
,
112 (idle
.tv_nsec
/ (NSEC_PER_SEC
/ 100)));
114 return proc_calc_metrics(page
, start
, off
, count
, eof
, len
);
117 static int meminfo_read_proc(char *page
, char **start
, off_t off
,
118 int count
, int *eof
, void *data
)
122 unsigned long inactive
;
123 unsigned long active
;
125 unsigned long committed
;
126 unsigned long allowed
;
127 struct vmalloc_info vmi
;
130 get_zone_counts(&active
, &inactive
, &free
);
133 * display in kilobytes.
135 #define K(x) ((x) << (PAGE_SHIFT - 10))
138 committed
= atomic_read(&vm_committed_space
);
139 allowed
= ((totalram_pages
- hugetlb_total_pages())
140 * sysctl_overcommit_ratio
/ 100) + total_swap_pages
;
142 cached
= global_page_state(NR_FILE_PAGES
) -
143 total_swapcache_pages
- i
.bufferram
;
147 get_vmalloc_info(&vmi
);
150 * Tagged format, for easy grepping and expansion.
153 "MemTotal: %8lu kB\n"
157 "SwapCached: %8lu kB\n"
159 "Inactive: %8lu kB\n"
160 "HighTotal: %8lu kB\n"
161 "HighFree: %8lu kB\n"
162 "LowTotal: %8lu kB\n"
164 "SwapTotal: %8lu kB\n"
165 "SwapFree: %8lu kB\n"
167 "Writeback: %8lu kB\n"
168 "AnonPages: %8lu kB\n"
171 "PageTables: %8lu kB\n"
172 "NFS Unstable: %8lu kB\n"
174 "CommitLimit: %8lu kB\n"
175 "Committed_AS: %8lu kB\n"
176 "VmallocTotal: %8lu kB\n"
177 "VmallocUsed: %8lu kB\n"
178 "VmallocChunk: %8lu kB\n",
183 K(total_swapcache_pages
),
188 K(i
.totalram
-i
.totalhigh
),
189 K(i
.freeram
-i
.freehigh
),
192 K(global_page_state(NR_FILE_DIRTY
)),
193 K(global_page_state(NR_WRITEBACK
)),
194 K(global_page_state(NR_ANON_PAGES
)),
195 K(global_page_state(NR_FILE_MAPPED
)),
196 K(global_page_state(NR_SLAB
)),
197 K(global_page_state(NR_PAGETABLE
)),
198 K(global_page_state(NR_UNSTABLE_NFS
)),
199 K(global_page_state(NR_BOUNCE
)),
202 (unsigned long)VMALLOC_TOTAL
>> 10,
204 vmi
.largest_chunk
>> 10
207 len
+= hugetlb_report_meminfo(page
+ len
);
209 return proc_calc_metrics(page
, start
, off
, count
, eof
, len
);
213 extern struct seq_operations fragmentation_op
;
214 static int fragmentation_open(struct inode
*inode
, struct file
*file
)
217 return seq_open(file
, &fragmentation_op
);
220 static struct file_operations fragmentation_file_operations
= {
221 .open
= fragmentation_open
,
224 .release
= seq_release
,
227 extern struct seq_operations zoneinfo_op
;
228 static int zoneinfo_open(struct inode
*inode
, struct file
*file
)
230 return seq_open(file
, &zoneinfo_op
);
233 static struct file_operations proc_zoneinfo_file_operations
= {
234 .open
= zoneinfo_open
,
237 .release
= seq_release
,
240 static int version_read_proc(char *page
, char **start
, off_t off
,
241 int count
, int *eof
, void *data
)
245 strcpy(page
, linux_banner
);
247 return proc_calc_metrics(page
, start
, off
, count
, eof
, len
);
250 extern struct seq_operations cpuinfo_op
;
251 static int cpuinfo_open(struct inode
*inode
, struct file
*file
)
253 return seq_open(file
, &cpuinfo_op
);
256 static struct file_operations proc_cpuinfo_operations
= {
257 .open
= cpuinfo_open
,
260 .release
= seq_release
,
263 static int devinfo_show(struct seq_file
*f
, void *v
)
265 int i
= *(loff_t
*) v
;
267 if (i
< CHRDEV_MAJOR_HASH_SIZE
) {
269 seq_printf(f
, "Character devices:\n");
272 i
-= CHRDEV_MAJOR_HASH_SIZE
;
274 seq_printf(f
, "\nBlock devices:\n");
280 static void *devinfo_start(struct seq_file
*f
, loff_t
*pos
)
282 if (*pos
< (BLKDEV_MAJOR_HASH_SIZE
+ CHRDEV_MAJOR_HASH_SIZE
))
287 static void *devinfo_next(struct seq_file
*f
, void *v
, loff_t
*pos
)
290 if (*pos
>= (BLKDEV_MAJOR_HASH_SIZE
+ CHRDEV_MAJOR_HASH_SIZE
))
295 static void devinfo_stop(struct seq_file
*f
, void *v
)
300 static struct seq_operations devinfo_ops
= {
301 .start
= devinfo_start
,
302 .next
= devinfo_next
,
303 .stop
= devinfo_stop
,
307 static int devinfo_open(struct inode
*inode
, struct file
*filp
)
309 return seq_open(filp
, &devinfo_ops
);
312 static struct file_operations proc_devinfo_operations
= {
313 .open
= devinfo_open
,
316 .release
= seq_release
,
319 extern struct seq_operations vmstat_op
;
320 static int vmstat_open(struct inode
*inode
, struct file
*file
)
322 return seq_open(file
, &vmstat_op
);
324 static struct file_operations proc_vmstat_file_operations
= {
328 .release
= seq_release
,
331 #ifdef CONFIG_PROC_HARDWARE
332 static int hardware_read_proc(char *page
, char **start
, off_t off
,
333 int count
, int *eof
, void *data
)
335 int len
= get_hardware_list(page
);
336 return proc_calc_metrics(page
, start
, off
, count
, eof
, len
);
340 #ifdef CONFIG_STRAM_PROC
341 static int stram_read_proc(char *page
, char **start
, off_t off
,
342 int count
, int *eof
, void *data
)
344 int len
= get_stram_list(page
);
345 return proc_calc_metrics(page
, start
, off
, count
, eof
, len
);
349 extern struct seq_operations partitions_op
;
350 static int partitions_open(struct inode
*inode
, struct file
*file
)
352 return seq_open(file
, &partitions_op
);
354 static struct file_operations proc_partitions_operations
= {
355 .open
= partitions_open
,
358 .release
= seq_release
,
361 extern struct seq_operations diskstats_op
;
362 static int diskstats_open(struct inode
*inode
, struct file
*file
)
364 return seq_open(file
, &diskstats_op
);
366 static struct file_operations proc_diskstats_operations
= {
367 .open
= diskstats_open
,
370 .release
= seq_release
,
373 #ifdef CONFIG_MODULES
374 extern struct seq_operations modules_op
;
375 static int modules_open(struct inode
*inode
, struct file
*file
)
377 return seq_open(file
, &modules_op
);
379 static struct file_operations proc_modules_operations
= {
380 .open
= modules_open
,
383 .release
= seq_release
,
388 extern struct seq_operations slabinfo_op
;
389 extern ssize_t
slabinfo_write(struct file
*, const char __user
*, size_t, loff_t
*);
390 static int slabinfo_open(struct inode
*inode
, struct file
*file
)
392 return seq_open(file
, &slabinfo_op
);
394 static struct file_operations proc_slabinfo_operations
= {
395 .open
= slabinfo_open
,
397 .write
= slabinfo_write
,
399 .release
= seq_release
,
402 #ifdef CONFIG_DEBUG_SLAB_LEAK
403 extern struct seq_operations slabstats_op
;
404 static int slabstats_open(struct inode
*inode
, struct file
*file
)
406 unsigned long *n
= kzalloc(PAGE_SIZE
, GFP_KERNEL
);
409 ret
= seq_open(file
, &slabstats_op
);
411 struct seq_file
*m
= file
->private_data
;
412 *n
= PAGE_SIZE
/ (2 * sizeof(unsigned long));
421 static int slabstats_release(struct inode
*inode
, struct file
*file
)
423 struct seq_file
*m
= file
->private_data
;
425 return seq_release(inode
, file
);
428 static struct file_operations proc_slabstats_operations
= {
429 .open
= slabstats_open
,
432 .release
= slabstats_release
,
437 static int show_stat(struct seq_file
*p
, void *v
)
441 cputime64_t user
, nice
, system
, idle
, iowait
, irq
, softirq
, steal
;
444 user
= nice
= system
= idle
= iowait
=
445 irq
= softirq
= steal
= cputime64_zero
;
446 jif
= - wall_to_monotonic
.tv_sec
;
447 if (wall_to_monotonic
.tv_nsec
)
450 for_each_possible_cpu(i
) {
453 user
= cputime64_add(user
, kstat_cpu(i
).cpustat
.user
);
454 nice
= cputime64_add(nice
, kstat_cpu(i
).cpustat
.nice
);
455 system
= cputime64_add(system
, kstat_cpu(i
).cpustat
.system
);
456 idle
= cputime64_add(idle
, kstat_cpu(i
).cpustat
.idle
);
457 iowait
= cputime64_add(iowait
, kstat_cpu(i
).cpustat
.iowait
);
458 irq
= cputime64_add(irq
, kstat_cpu(i
).cpustat
.irq
);
459 softirq
= cputime64_add(softirq
, kstat_cpu(i
).cpustat
.softirq
);
460 steal
= cputime64_add(steal
, kstat_cpu(i
).cpustat
.steal
);
461 for (j
= 0 ; j
< NR_IRQS
; j
++)
462 sum
+= kstat_cpu(i
).irqs
[j
];
465 seq_printf(p
, "cpu %llu %llu %llu %llu %llu %llu %llu %llu\n",
466 (unsigned long long)cputime64_to_clock_t(user
),
467 (unsigned long long)cputime64_to_clock_t(nice
),
468 (unsigned long long)cputime64_to_clock_t(system
),
469 (unsigned long long)cputime64_to_clock_t(idle
),
470 (unsigned long long)cputime64_to_clock_t(iowait
),
471 (unsigned long long)cputime64_to_clock_t(irq
),
472 (unsigned long long)cputime64_to_clock_t(softirq
),
473 (unsigned long long)cputime64_to_clock_t(steal
));
474 for_each_online_cpu(i
) {
476 /* Copy values here to work around gcc-2.95.3, gcc-2.96 */
477 user
= kstat_cpu(i
).cpustat
.user
;
478 nice
= kstat_cpu(i
).cpustat
.nice
;
479 system
= kstat_cpu(i
).cpustat
.system
;
480 idle
= kstat_cpu(i
).cpustat
.idle
;
481 iowait
= kstat_cpu(i
).cpustat
.iowait
;
482 irq
= kstat_cpu(i
).cpustat
.irq
;
483 softirq
= kstat_cpu(i
).cpustat
.softirq
;
484 steal
= kstat_cpu(i
).cpustat
.steal
;
485 seq_printf(p
, "cpu%d %llu %llu %llu %llu %llu %llu %llu %llu\n",
487 (unsigned long long)cputime64_to_clock_t(user
),
488 (unsigned long long)cputime64_to_clock_t(nice
),
489 (unsigned long long)cputime64_to_clock_t(system
),
490 (unsigned long long)cputime64_to_clock_t(idle
),
491 (unsigned long long)cputime64_to_clock_t(iowait
),
492 (unsigned long long)cputime64_to_clock_t(irq
),
493 (unsigned long long)cputime64_to_clock_t(softirq
),
494 (unsigned long long)cputime64_to_clock_t(steal
));
496 seq_printf(p
, "intr %llu", (unsigned long long)sum
);
498 #if !defined(CONFIG_PPC64) && !defined(CONFIG_ALPHA) && !defined(CONFIG_IA64)
499 for (i
= 0; i
< NR_IRQS
; i
++)
500 seq_printf(p
, " %u", kstat_irqs(i
));
507 "procs_running %lu\n"
508 "procs_blocked %lu\n",
509 nr_context_switches(),
518 static int stat_open(struct inode
*inode
, struct file
*file
)
520 unsigned size
= 4096 * (1 + num_possible_cpus() / 32);
525 /* don't ask for more than the kmalloc() max size, currently 128 KB */
526 if (size
> 128 * 1024)
528 buf
= kmalloc(size
, GFP_KERNEL
);
532 res
= single_open(file
, show_stat
, NULL
);
534 m
= file
->private_data
;
541 static struct file_operations proc_stat_operations
= {
545 .release
= single_release
,
551 static void *int_seq_start(struct seq_file
*f
, loff_t
*pos
)
553 return (*pos
<= NR_IRQS
) ? pos
: NULL
;
556 static void *int_seq_next(struct seq_file
*f
, void *v
, loff_t
*pos
)
564 static void int_seq_stop(struct seq_file
*f
, void *v
)
570 extern int show_interrupts(struct seq_file
*f
, void *v
); /* In arch code */
571 static struct seq_operations int_seq_ops
= {
572 .start
= int_seq_start
,
573 .next
= int_seq_next
,
574 .stop
= int_seq_stop
,
575 .show
= show_interrupts
578 static int interrupts_open(struct inode
*inode
, struct file
*filp
)
580 return seq_open(filp
, &int_seq_ops
);
583 static struct file_operations proc_interrupts_operations
= {
584 .open
= interrupts_open
,
587 .release
= seq_release
,
590 static int filesystems_read_proc(char *page
, char **start
, off_t off
,
591 int count
, int *eof
, void *data
)
593 int len
= get_filesystem_list(page
);
594 return proc_calc_metrics(page
, start
, off
, count
, eof
, len
);
597 static int cmdline_read_proc(char *page
, char **start
, off_t off
,
598 int count
, int *eof
, void *data
)
602 len
= sprintf(page
, "%s\n", saved_command_line
);
603 return proc_calc_metrics(page
, start
, off
, count
, eof
, len
);
606 static int locks_read_proc(char *page
, char **start
, off_t off
,
607 int count
, int *eof
, void *data
)
609 int len
= get_locks_status(page
, start
, off
, count
);
616 static int execdomains_read_proc(char *page
, char **start
, off_t off
,
617 int count
, int *eof
, void *data
)
619 int len
= get_exec_domain_list(page
);
620 return proc_calc_metrics(page
, start
, off
, count
, eof
, len
);
623 #ifdef CONFIG_MAGIC_SYSRQ
625 * writing 'C' to /proc/sysrq-trigger is like sysrq-C
627 static ssize_t
write_sysrq_trigger(struct file
*file
, const char __user
*buf
,
628 size_t count
, loff_t
*ppos
)
633 if (get_user(c
, buf
))
635 __handle_sysrq(c
, NULL
, NULL
, 0);
640 static struct file_operations proc_sysrq_trigger_operations
= {
641 .write
= write_sysrq_trigger
,
645 struct proc_dir_entry
*proc_root_kcore
;
647 void create_seq_entry(char *name
, mode_t mode
, const struct file_operations
*f
)
649 struct proc_dir_entry
*entry
;
650 entry
= create_proc_entry(name
, mode
, NULL
);
652 entry
->proc_fops
= f
;
655 void __init
proc_misc_init(void)
657 struct proc_dir_entry
*entry
;
660 int (*read_proc
)(char*,char**,off_t
,int,int*,void*);
661 } *p
, simple_ones
[] = {
662 {"loadavg", loadavg_read_proc
},
663 {"uptime", uptime_read_proc
},
664 {"meminfo", meminfo_read_proc
},
665 {"version", version_read_proc
},
666 #ifdef CONFIG_PROC_HARDWARE
667 {"hardware", hardware_read_proc
},
669 #ifdef CONFIG_STRAM_PROC
670 {"stram", stram_read_proc
},
672 {"filesystems", filesystems_read_proc
},
673 {"cmdline", cmdline_read_proc
},
674 {"locks", locks_read_proc
},
675 {"execdomains", execdomains_read_proc
},
678 for (p
= simple_ones
; p
->name
; p
++)
679 create_proc_read_entry(p
->name
, 0, NULL
, p
->read_proc
, NULL
);
681 proc_symlink("mounts", NULL
, "self/mounts");
683 /* And now for trickier ones */
684 entry
= create_proc_entry("kmsg", S_IRUSR
, &proc_root
);
686 entry
->proc_fops
= &proc_kmsg_operations
;
687 create_seq_entry("devices", 0, &proc_devinfo_operations
);
688 create_seq_entry("cpuinfo", 0, &proc_cpuinfo_operations
);
689 create_seq_entry("partitions", 0, &proc_partitions_operations
);
690 create_seq_entry("stat", 0, &proc_stat_operations
);
691 create_seq_entry("interrupts", 0, &proc_interrupts_operations
);
693 create_seq_entry("slabinfo",S_IWUSR
|S_IRUGO
,&proc_slabinfo_operations
);
694 #ifdef CONFIG_DEBUG_SLAB_LEAK
695 create_seq_entry("slab_allocators", 0 ,&proc_slabstats_operations
);
698 create_seq_entry("buddyinfo",S_IRUGO
, &fragmentation_file_operations
);
699 create_seq_entry("vmstat",S_IRUGO
, &proc_vmstat_file_operations
);
700 create_seq_entry("zoneinfo",S_IRUGO
, &proc_zoneinfo_file_operations
);
701 create_seq_entry("diskstats", 0, &proc_diskstats_operations
);
702 #ifdef CONFIG_MODULES
703 create_seq_entry("modules", 0, &proc_modules_operations
);
705 #ifdef CONFIG_SCHEDSTATS
706 create_seq_entry("schedstat", 0, &proc_schedstat_operations
);
708 #ifdef CONFIG_PROC_KCORE
709 proc_root_kcore
= create_proc_entry("kcore", S_IRUSR
, NULL
);
710 if (proc_root_kcore
) {
711 proc_root_kcore
->proc_fops
= &proc_kcore_operations
;
712 proc_root_kcore
->size
=
713 (size_t)high_memory
- PAGE_OFFSET
+ PAGE_SIZE
;
716 #ifdef CONFIG_PROC_VMCORE
717 proc_vmcore
= create_proc_entry("vmcore", S_IRUSR
, NULL
);
719 proc_vmcore
->proc_fops
= &proc_vmcore_operations
;
721 #ifdef CONFIG_MAGIC_SYSRQ
722 entry
= create_proc_entry("sysrq-trigger", S_IWUSR
, NULL
);
724 entry
->proc_fops
= &proc_sysrq_trigger_operations
;