blob: d24b8d46059a4e284b1af8f194a8b328bfb15fbb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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>
Neil Horman7170be52006-01-14 13:20:38 -080023#include <linux/fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/seq_file.h>
39#include <linux/times.h>
40#include <linux/profile.h>
Andrew Morton7bf65382006-12-08 02:41:14 -080041#include <linux/utsname.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/blkdev.h>
43#include <linux/hugetlb.h>
44#include <linux/jiffies.h>
45#include <linux/sysrq.h>
46#include <linux/vmalloc.h>
Vivek Goyal666bfdd2005-06-25 14:58:21 -070047#include <linux/crash_dump.h>
Sukadev Bhattiprolu61a58c62006-12-08 02:37:58 -080048#include <linux/pid_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#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 *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066extern 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),
Cedric Le Goater6cc1b222006-12-08 02:38:00 -080095 nr_running(), nr_threads, current->nsproxy->pid_ns->last_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 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);
Tomas Janousekd6214142007-07-15 23:39:42 -0700108 monotonic_to_bootbased(&uptime);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 unsigned long committed;
125 unsigned long allowed;
126 struct vmalloc_info vmi;
Martin Hicks4c4c4022005-04-16 15:24:08 -0700127 long cached;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129/*
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
Christoph Lameter347ce432006-06-30 01:55:35 -0700139 cached = global_page_state(NR_FILE_PAGES) -
140 total_swapcache_pages - i.bufferram;
Martin Hicks4c4c4022005-04-16 15:24:08 -0700141 if (cached < 0)
142 cached = 0;
143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 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"
Christoph Lameter182e8e22006-09-25 23:31:10 -0700157#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 "HighTotal: %8lu kB\n"
159 "HighFree: %8lu kB\n"
160 "LowTotal: %8lu kB\n"
161 "LowFree: %8lu kB\n"
Christoph Lameter182e8e22006-09-25 23:31:10 -0700162#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 "SwapTotal: %8lu kB\n"
164 "SwapFree: %8lu kB\n"
165 "Dirty: %8lu kB\n"
166 "Writeback: %8lu kB\n"
Christoph Lameterf3dbd342006-06-30 01:55:36 -0700167 "AnonPages: %8lu kB\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 "Mapped: %8lu kB\n"
169 "Slab: %8lu kB\n"
Christoph Lameter972d1a72006-09-25 23:31:51 -0700170 "SReclaimable: %8lu kB\n"
171 "SUnreclaim: %8lu kB\n"
Christoph Lameterdf849a12006-06-30 01:55:38 -0700172 "PageTables: %8lu kB\n"
Andrew Mortonf5ef68d2006-08-27 01:23:58 -0700173 "NFS_Unstable: %8lu kB\n"
Christoph Lameterd2c5e302006-06-30 01:55:41 -0700174 "Bounce: %8lu kB\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 "CommitLimit: %8lu kB\n"
176 "Committed_AS: %8lu kB\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 "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),
Martin Hicks4c4c4022005-04-16 15:24:08 -0700183 K(cached),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 K(total_swapcache_pages),
Christoph Lameter65e458d42007-02-10 01:43:05 -0800185 K(global_page_state(NR_ACTIVE)),
186 K(global_page_state(NR_INACTIVE)),
Christoph Lameter182e8e22006-09-25 23:31:10 -0700187#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 K(i.totalhigh),
189 K(i.freehigh),
190 K(i.totalram-i.totalhigh),
191 K(i.freeram-i.freehigh),
Christoph Lameter182e8e22006-09-25 23:31:10 -0700192#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 K(i.totalswap),
194 K(i.freeswap),
Christoph Lameterb1e7a8f2006-06-30 01:55:39 -0700195 K(global_page_state(NR_FILE_DIRTY)),
Christoph Lameterce866b32006-06-30 01:55:40 -0700196 K(global_page_state(NR_WRITEBACK)),
Christoph Lameterf3dbd342006-06-30 01:55:36 -0700197 K(global_page_state(NR_ANON_PAGES)),
Christoph Lameter65ba55f2006-06-30 01:55:34 -0700198 K(global_page_state(NR_FILE_MAPPED)),
Christoph Lameter972d1a72006-09-25 23:31:51 -0700199 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)),
Christoph Lameterdf849a12006-06-30 01:55:38 -0700203 K(global_page_state(NR_PAGETABLE)),
Christoph Lameterfd39fc82006-06-30 01:55:40 -0700204 K(global_page_state(NR_UNSTABLE_NFS)),
Christoph Lameterd2c5e302006-06-30 01:55:41 -0700205 K(global_page_state(NR_BOUNCE)),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 K(allowed),
207 K(committed),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 (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
Arjan van de Ven00977a52007-02-12 00:55:34 -0800226static const struct file_operations fragmentation_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 .open = fragmentation_open,
228 .read = seq_read,
229 .llseek = seq_lseek,
230 .release = seq_release,
231};
232
Nikita Danilov295ab932005-06-21 17:14:38 -0700233extern 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
Arjan van de Ven00977a52007-02-12 00:55:34 -0800239static const struct file_operations proc_zoneinfo_file_operations = {
Nikita Danilov295ab932005-06-21 17:14:38 -0700240 .open = zoneinfo_open,
241 .read = seq_read,
242 .llseek = seq_lseek,
243 .release = seq_release,
244};
245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246static int version_read_proc(char *page, char **start, off_t off,
247 int count, int *eof, void *data)
248{
249 int len;
250
Roman Zippel3eb3c742007-01-10 14:45:28 +0100251 len = snprintf(page, PAGE_SIZE, linux_proc_banner,
Linus Torvalds89937802006-12-11 09:28:46 -0800252 utsname()->sysname,
253 utsname()->release,
254 utsname()->version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 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}
Neil Horman7170be52006-01-14 13:20:38 -0800263
Arjan van de Ven00977a52007-02-12 00:55:34 -0800264static const struct file_operations proc_cpuinfo_operations = {
Joe Korty68eef3b2006-03-31 02:30:32 -0800265 .open = cpuinfo_open,
Neil Horman7170be52006-01-14 13:20:38 -0800266 .read = seq_read,
267 .llseek = seq_lseek,
268 .release = seq_release,
269};
270
Joe Korty68eef3b2006-03-31 02:30:32 -0800271static int devinfo_show(struct seq_file *f, void *v)
272{
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);
David Howells93614012006-09-30 20:45:40 +0200279 }
280#ifdef CONFIG_BLOCK
281 else {
Joe Korty68eef3b2006-03-31 02:30:32 -0800282 i -= CHRDEV_MAJOR_HASH_SIZE;
283 if (i == 0)
284 seq_printf(f, "\nBlock devices:\n");
285 blkdev_show(f, i);
286 }
David Howells93614012006-09-30 20:45:40 +0200287#endif
Joe Korty68eef3b2006-03-31 02:30:32 -0800288 return 0;
289}
290
291static void *devinfo_start(struct seq_file *f, loff_t *pos)
292{
293 if (*pos < (BLKDEV_MAJOR_HASH_SIZE + CHRDEV_MAJOR_HASH_SIZE))
294 return pos;
295 return NULL;
296}
297
298static void *devinfo_next(struct seq_file *f, void *v, loff_t *pos)
299{
300 (*pos)++;
301 if (*pos >= (BLKDEV_MAJOR_HASH_SIZE + CHRDEV_MAJOR_HASH_SIZE))
302 return NULL;
303 return pos;
304}
305
306static void devinfo_stop(struct seq_file *f, void *v)
307{
308 /* Nothing to do */
309}
310
311static struct seq_operations devinfo_ops = {
312 .start = devinfo_start,
313 .next = devinfo_next,
314 .stop = devinfo_stop,
315 .show = devinfo_show
316};
317
318static int devinfo_open(struct inode *inode, struct file *filp)
319{
320 return seq_open(filp, &devinfo_ops);
321}
322
Arjan van de Ven00977a52007-02-12 00:55:34 -0800323static const struct file_operations proc_devinfo_operations = {
Joe Korty68eef3b2006-03-31 02:30:32 -0800324 .open = devinfo_open,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 .read = seq_read,
326 .llseek = seq_lseek,
327 .release = seq_release,
328};
329
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}
Arjan van de Ven00977a52007-02-12 00:55:34 -0800335static const struct file_operations proc_vmstat_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 .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
David Howells93614012006-09-30 20:45:40 +0200360#ifdef CONFIG_BLOCK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361extern struct seq_operations partitions_op;
362static int partitions_open(struct inode *inode, struct file *file)
363{
364 return seq_open(file, &partitions_op);
365}
Arjan van de Ven00977a52007-02-12 00:55:34 -0800366static const struct file_operations proc_partitions_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 .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}
Arjan van de Ven00977a52007-02-12 00:55:34 -0800378static const struct file_operations proc_diskstats_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 .open = diskstats_open,
380 .read = seq_read,
381 .llseek = seq_lseek,
382 .release = seq_release,
383};
David Howells93614012006-09-30 20:45:40 +0200384#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
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}
Arjan van de Ven00977a52007-02-12 00:55:34 -0800392static const struct file_operations proc_modules_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 .open = modules_open,
394 .read = seq_read,
395 .llseek = seq_lseek,
396 .release = seq_release,
397};
398#endif
399
Matt Mackall10cef602006-01-08 01:01:45 -0800400#ifdef CONFIG_SLAB
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401static int slabinfo_open(struct inode *inode, struct file *file)
402{
403 return seq_open(file, &slabinfo_op);
404}
Arjan van de Ven00977a52007-02-12 00:55:34 -0800405static const struct file_operations proc_slabinfo_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 .open = slabinfo_open,
407 .read = seq_read,
408 .write = slabinfo_write,
409 .llseek = seq_lseek,
410 .release = seq_release,
411};
Al Viro871751e2006-03-25 03:06:39 -0800412
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
Arjan van de Ven00977a52007-02-12 00:55:34 -0800432static const struct file_operations proc_slabstats_operations = {
Al Viro871751e2006-03-25 03:06:39 -0800433 .open = slabstats_open,
434 .read = seq_read,
435 .llseek = seq_lseek,
Martin Peschke09f08922007-05-08 00:29:26 -0700436 .release = seq_release_private,
Al Viro871751e2006-03-25 03:06:39 -0800437};
438#endif
Matt Mackall10cef602006-01-08 01:01:45 -0800439#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
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;
446 u64 sum = 0;
Tomas Janousek924b42d2007-07-15 23:39:42 -0700447 struct timespec boottime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
449 user = nice = system = idle = iowait =
450 irq = softirq = steal = cputime64_zero;
Tomas Janousek924b42d2007-07-15 23:39:42 -0700451 getboottime(&boottime);
452 jif = boottime.tv_sec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -0800454 for_each_possible_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 int j;
456
457 user = cputime64_add(user, kstat_cpu(i).cpustat.user);
458 nice = cputime64_add(nice, kstat_cpu(i).cpustat.nice);
459 system = cputime64_add(system, kstat_cpu(i).cpustat.system);
460 idle = cputime64_add(idle, kstat_cpu(i).cpustat.idle);
461 iowait = cputime64_add(iowait, kstat_cpu(i).cpustat.iowait);
462 irq = cputime64_add(irq, kstat_cpu(i).cpustat.irq);
463 softirq = cputime64_add(softirq, kstat_cpu(i).cpustat.softirq);
464 steal = cputime64_add(steal, kstat_cpu(i).cpustat.steal);
465 for (j = 0 ; j < NR_IRQS ; j++)
466 sum += kstat_cpu(i).irqs[j];
467 }
468
469 seq_printf(p, "cpu %llu %llu %llu %llu %llu %llu %llu %llu\n",
470 (unsigned long long)cputime64_to_clock_t(user),
471 (unsigned long long)cputime64_to_clock_t(nice),
472 (unsigned long long)cputime64_to_clock_t(system),
473 (unsigned long long)cputime64_to_clock_t(idle),
474 (unsigned long long)cputime64_to_clock_t(iowait),
475 (unsigned long long)cputime64_to_clock_t(irq),
476 (unsigned long long)cputime64_to_clock_t(softirq),
477 (unsigned long long)cputime64_to_clock_t(steal));
478 for_each_online_cpu(i) {
479
480 /* Copy values here to work around gcc-2.95.3, gcc-2.96 */
481 user = kstat_cpu(i).cpustat.user;
482 nice = kstat_cpu(i).cpustat.nice;
483 system = kstat_cpu(i).cpustat.system;
484 idle = kstat_cpu(i).cpustat.idle;
485 iowait = kstat_cpu(i).cpustat.iowait;
486 irq = kstat_cpu(i).cpustat.irq;
487 softirq = kstat_cpu(i).cpustat.softirq;
488 steal = kstat_cpu(i).cpustat.steal;
489 seq_printf(p, "cpu%d %llu %llu %llu %llu %llu %llu %llu %llu\n",
490 i,
491 (unsigned long long)cputime64_to_clock_t(user),
492 (unsigned long long)cputime64_to_clock_t(nice),
493 (unsigned long long)cputime64_to_clock_t(system),
494 (unsigned long long)cputime64_to_clock_t(idle),
495 (unsigned long long)cputime64_to_clock_t(iowait),
496 (unsigned long long)cputime64_to_clock_t(irq),
497 (unsigned long long)cputime64_to_clock_t(softirq),
498 (unsigned long long)cputime64_to_clock_t(steal));
499 }
500 seq_printf(p, "intr %llu", (unsigned long long)sum);
501
schwab@suse.dea1854612006-02-03 03:04:24 -0800502#if !defined(CONFIG_PPC64) && !defined(CONFIG_ALPHA) && !defined(CONFIG_IA64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 for (i = 0; i < NR_IRQS; i++)
504 seq_printf(p, " %u", kstat_irqs(i));
505#endif
506
507 seq_printf(p,
508 "\nctxt %llu\n"
509 "btime %lu\n"
510 "processes %lu\n"
511 "procs_running %lu\n"
512 "procs_blocked %lu\n",
513 nr_context_switches(),
514 (unsigned long)jif,
515 total_forks,
516 nr_running(),
517 nr_iowait());
518
519 return 0;
520}
521
522static int stat_open(struct inode *inode, struct file *file)
523{
524 unsigned size = 4096 * (1 + num_possible_cpus() / 32);
525 char *buf;
526 struct seq_file *m;
527 int res;
528
529 /* don't ask for more than the kmalloc() max size, currently 128 KB */
530 if (size > 128 * 1024)
531 size = 128 * 1024;
532 buf = kmalloc(size, GFP_KERNEL);
533 if (!buf)
534 return -ENOMEM;
535
536 res = single_open(file, show_stat, NULL);
537 if (!res) {
538 m = file->private_data;
539 m->buf = buf;
540 m->size = size;
541 } else
542 kfree(buf);
543 return res;
544}
Arjan van de Ven00977a52007-02-12 00:55:34 -0800545static const struct file_operations proc_stat_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 .open = stat_open,
547 .read = seq_read,
548 .llseek = seq_lseek,
549 .release = single_release,
550};
551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552/*
553 * /proc/interrupts
554 */
555static void *int_seq_start(struct seq_file *f, loff_t *pos)
556{
557 return (*pos <= NR_IRQS) ? pos : NULL;
558}
559
560static void *int_seq_next(struct seq_file *f, void *v, loff_t *pos)
561{
562 (*pos)++;
563 if (*pos > NR_IRQS)
564 return NULL;
565 return pos;
566}
567
568static void int_seq_stop(struct seq_file *f, void *v)
569{
570 /* Nothing to do */
571}
572
573
574extern int show_interrupts(struct seq_file *f, void *v); /* In arch code */
575static struct seq_operations int_seq_ops = {
576 .start = int_seq_start,
577 .next = int_seq_next,
578 .stop = int_seq_stop,
579 .show = show_interrupts
580};
581
582static int interrupts_open(struct inode *inode, struct file *filp)
583{
584 return seq_open(filp, &int_seq_ops);
585}
586
Arjan van de Ven00977a52007-02-12 00:55:34 -0800587static const struct file_operations proc_interrupts_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 .open = interrupts_open,
589 .read = seq_read,
590 .llseek = seq_lseek,
591 .release = seq_release,
592};
593
594static int filesystems_read_proc(char *page, char **start, off_t off,
595 int count, int *eof, void *data)
596{
597 int len = get_filesystem_list(page);
598 return proc_calc_metrics(page, start, off, count, eof, len);
599}
600
601static int cmdline_read_proc(char *page, char **start, off_t off,
602 int count, int *eof, void *data)
603{
604 int len;
605
606 len = sprintf(page, "%s\n", saved_command_line);
607 return proc_calc_metrics(page, start, off, count, eof, len);
608}
609
610static int locks_read_proc(char *page, char **start, off_t off,
611 int count, int *eof, void *data)
612{
613 int len = get_locks_status(page, start, off, count);
614
615 if (len < count)
616 *eof = 1;
617 return len;
618}
619
620static int execdomains_read_proc(char *page, char **start, off_t off,
621 int count, int *eof, void *data)
622{
623 int len = get_exec_domain_list(page);
624 return proc_calc_metrics(page, start, off, count, eof, len);
625}
626
627#ifdef CONFIG_MAGIC_SYSRQ
628/*
629 * writing 'C' to /proc/sysrq-trigger is like sysrq-C
630 */
631static ssize_t write_sysrq_trigger(struct file *file, const char __user *buf,
632 size_t count, loff_t *ppos)
633{
634 if (count) {
635 char c;
636
637 if (get_user(c, buf))
638 return -EFAULT;
David Howells7d12e782006-10-05 14:55:46 +0100639 __handle_sysrq(c, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 }
641 return count;
642}
643
Arjan van de Ven00977a52007-02-12 00:55:34 -0800644static const struct file_operations proc_sysrq_trigger_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 .write = write_sysrq_trigger,
646};
647#endif
648
649struct proc_dir_entry *proc_root_kcore;
650
Arjan van de Ven99ac48f2006-03-28 01:56:41 -0800651void create_seq_entry(char *name, mode_t mode, const struct file_operations *f)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652{
653 struct proc_dir_entry *entry;
654 entry = create_proc_entry(name, mode, NULL);
655 if (entry)
656 entry->proc_fops = f;
657}
658
659void __init proc_misc_init(void)
660{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 static struct {
662 char *name;
663 int (*read_proc)(char*,char**,off_t,int,int*,void*);
664 } *p, simple_ones[] = {
665 {"loadavg", loadavg_read_proc},
666 {"uptime", uptime_read_proc},
667 {"meminfo", meminfo_read_proc},
668 {"version", version_read_proc},
669#ifdef CONFIG_PROC_HARDWARE
670 {"hardware", hardware_read_proc},
671#endif
672#ifdef CONFIG_STRAM_PROC
673 {"stram", stram_read_proc},
674#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 {"filesystems", filesystems_read_proc},
676 {"cmdline", cmdline_read_proc},
677 {"locks", locks_read_proc},
678 {"execdomains", execdomains_read_proc},
679 {NULL,}
680 };
681 for (p = simple_ones; p->name; p++)
682 create_proc_read_entry(p->name, 0, NULL, p->read_proc, NULL);
683
684 proc_symlink("mounts", NULL, "self/mounts");
685
686 /* And now for trickier ones */
Mike Galbraithc36264d2006-12-06 20:37:42 -0800687#ifdef CONFIG_PRINTK
Andrew Morton100bb932007-02-10 01:45:51 -0800688 {
689 struct proc_dir_entry *entry;
690 entry = create_proc_entry("kmsg", S_IRUSR, &proc_root);
691 if (entry)
692 entry->proc_fops = &proc_kmsg_operations;
693 }
Mike Galbraithc36264d2006-12-06 20:37:42 -0800694#endif
Neil Horman7170be52006-01-14 13:20:38 -0800695 create_seq_entry("devices", 0, &proc_devinfo_operations);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 create_seq_entry("cpuinfo", 0, &proc_cpuinfo_operations);
David Howells93614012006-09-30 20:45:40 +0200697#ifdef CONFIG_BLOCK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 create_seq_entry("partitions", 0, &proc_partitions_operations);
David Howells93614012006-09-30 20:45:40 +0200699#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 create_seq_entry("stat", 0, &proc_stat_operations);
701 create_seq_entry("interrupts", 0, &proc_interrupts_operations);
Matt Mackall10cef602006-01-08 01:01:45 -0800702#ifdef CONFIG_SLAB
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 create_seq_entry("slabinfo",S_IWUSR|S_IRUGO,&proc_slabinfo_operations);
Al Viro871751e2006-03-25 03:06:39 -0800704#ifdef CONFIG_DEBUG_SLAB_LEAK
705 create_seq_entry("slab_allocators", 0 ,&proc_slabstats_operations);
706#endif
Matt Mackall10cef602006-01-08 01:01:45 -0800707#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 create_seq_entry("buddyinfo",S_IRUGO, &fragmentation_file_operations);
709 create_seq_entry("vmstat",S_IRUGO, &proc_vmstat_file_operations);
Nikita Danilov295ab932005-06-21 17:14:38 -0700710 create_seq_entry("zoneinfo",S_IRUGO, &proc_zoneinfo_file_operations);
David Howells93614012006-09-30 20:45:40 +0200711#ifdef CONFIG_BLOCK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 create_seq_entry("diskstats", 0, &proc_diskstats_operations);
David Howells93614012006-09-30 20:45:40 +0200713#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714#ifdef CONFIG_MODULES
715 create_seq_entry("modules", 0, &proc_modules_operations);
716#endif
717#ifdef CONFIG_SCHEDSTATS
718 create_seq_entry("schedstat", 0, &proc_schedstat_operations);
719#endif
720#ifdef CONFIG_PROC_KCORE
721 proc_root_kcore = create_proc_entry("kcore", S_IRUSR, NULL);
722 if (proc_root_kcore) {
723 proc_root_kcore->proc_fops = &proc_kcore_operations;
724 proc_root_kcore->size =
725 (size_t)high_memory - PAGE_OFFSET + PAGE_SIZE;
726 }
727#endif
Vivek Goyal666bfdd2005-06-25 14:58:21 -0700728#ifdef CONFIG_PROC_VMCORE
729 proc_vmcore = create_proc_entry("vmcore", S_IRUSR, NULL);
730 if (proc_vmcore)
731 proc_vmcore->proc_fops = &proc_vmcore_operations;
732#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733#ifdef CONFIG_MAGIC_SYSRQ
Andrew Morton100bb932007-02-10 01:45:51 -0800734 {
735 struct proc_dir_entry *entry;
736 entry = create_proc_entry("sysrq-trigger", S_IWUSR, NULL);
737 if (entry)
738 entry->proc_fops = &proc_sysrq_trigger_operations;
739 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741}