blob: a11968bc05161a7c659fd482d7c5fd62e3edd37d [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 *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70static int proc_calc_metrics(char *page, char **start, off_t off,
71 int count, int *eof, int len)
72{
73 if (len <= off+count) *eof = 1;
74 *start = page + off;
75 len -= off;
76 if (len>count) len = count;
77 if (len<0) len = 0;
78 return len;
79}
80
81static int loadavg_read_proc(char *page, char **start, off_t off,
82 int count, int *eof, void *data)
83{
84 int a, b, c;
85 int len;
86
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),
Sukadev Bhattiprolu2894d6502007-10-18 23:39:49 -070094 nr_running(), nr_threads,
95 task_active_pid_ns(current)->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
Mel Gorman467c9962007-10-16 01:26:02 -0700233extern struct seq_operations pagetypeinfo_op;
234static int pagetypeinfo_open(struct inode *inode, struct file *file)
235{
236 return seq_open(file, &pagetypeinfo_op);
237}
238
239static const struct file_operations pagetypeinfo_file_ops = {
240 .open = pagetypeinfo_open,
241 .read = seq_read,
242 .llseek = seq_lseek,
243 .release = seq_release,
244};
245
Nikita Danilov295ab932005-06-21 17:14:38 -0700246extern struct seq_operations zoneinfo_op;
247static int zoneinfo_open(struct inode *inode, struct file *file)
248{
249 return seq_open(file, &zoneinfo_op);
250}
251
Arjan van de Ven00977a52007-02-12 00:55:34 -0800252static const struct file_operations proc_zoneinfo_file_operations = {
Nikita Danilov295ab932005-06-21 17:14:38 -0700253 .open = zoneinfo_open,
254 .read = seq_read,
255 .llseek = seq_lseek,
256 .release = seq_release,
257};
258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259static int version_read_proc(char *page, char **start, off_t off,
260 int count, int *eof, void *data)
261{
262 int len;
263
Roman Zippel3eb3c742007-01-10 14:45:28 +0100264 len = snprintf(page, PAGE_SIZE, linux_proc_banner,
Linus Torvalds89937802006-12-11 09:28:46 -0800265 utsname()->sysname,
266 utsname()->release,
267 utsname()->version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 return proc_calc_metrics(page, start, off, count, eof, len);
269}
270
271extern struct seq_operations cpuinfo_op;
272static int cpuinfo_open(struct inode *inode, struct file *file)
273{
274 return seq_open(file, &cpuinfo_op);
275}
Neil Horman7170be52006-01-14 13:20:38 -0800276
Arjan van de Ven00977a52007-02-12 00:55:34 -0800277static const struct file_operations proc_cpuinfo_operations = {
Joe Korty68eef3b2006-03-31 02:30:32 -0800278 .open = cpuinfo_open,
Neil Horman7170be52006-01-14 13:20:38 -0800279 .read = seq_read,
280 .llseek = seq_lseek,
281 .release = seq_release,
282};
283
Joe Korty68eef3b2006-03-31 02:30:32 -0800284static int devinfo_show(struct seq_file *f, void *v)
285{
286 int i = *(loff_t *) v;
287
288 if (i < CHRDEV_MAJOR_HASH_SIZE) {
289 if (i == 0)
290 seq_printf(f, "Character devices:\n");
291 chrdev_show(f, i);
David Howells93614012006-09-30 20:45:40 +0200292 }
293#ifdef CONFIG_BLOCK
294 else {
Joe Korty68eef3b2006-03-31 02:30:32 -0800295 i -= CHRDEV_MAJOR_HASH_SIZE;
296 if (i == 0)
297 seq_printf(f, "\nBlock devices:\n");
298 blkdev_show(f, i);
299 }
David Howells93614012006-09-30 20:45:40 +0200300#endif
Joe Korty68eef3b2006-03-31 02:30:32 -0800301 return 0;
302}
303
304static void *devinfo_start(struct seq_file *f, loff_t *pos)
305{
306 if (*pos < (BLKDEV_MAJOR_HASH_SIZE + CHRDEV_MAJOR_HASH_SIZE))
307 return pos;
308 return NULL;
309}
310
311static void *devinfo_next(struct seq_file *f, void *v, loff_t *pos)
312{
313 (*pos)++;
314 if (*pos >= (BLKDEV_MAJOR_HASH_SIZE + CHRDEV_MAJOR_HASH_SIZE))
315 return NULL;
316 return pos;
317}
318
319static void devinfo_stop(struct seq_file *f, void *v)
320{
321 /* Nothing to do */
322}
323
324static struct seq_operations devinfo_ops = {
325 .start = devinfo_start,
326 .next = devinfo_next,
327 .stop = devinfo_stop,
328 .show = devinfo_show
329};
330
331static int devinfo_open(struct inode *inode, struct file *filp)
332{
333 return seq_open(filp, &devinfo_ops);
334}
335
Arjan van de Ven00977a52007-02-12 00:55:34 -0800336static const struct file_operations proc_devinfo_operations = {
Joe Korty68eef3b2006-03-31 02:30:32 -0800337 .open = devinfo_open,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 .read = seq_read,
339 .llseek = seq_lseek,
340 .release = seq_release,
341};
342
343extern struct seq_operations vmstat_op;
344static int vmstat_open(struct inode *inode, struct file *file)
345{
346 return seq_open(file, &vmstat_op);
347}
Arjan van de Ven00977a52007-02-12 00:55:34 -0800348static const struct file_operations proc_vmstat_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 .open = vmstat_open,
350 .read = seq_read,
351 .llseek = seq_lseek,
352 .release = seq_release,
353};
354
355#ifdef CONFIG_PROC_HARDWARE
356static int hardware_read_proc(char *page, char **start, off_t off,
357 int count, int *eof, void *data)
358{
359 int len = get_hardware_list(page);
360 return proc_calc_metrics(page, start, off, count, eof, len);
361}
362#endif
363
364#ifdef CONFIG_STRAM_PROC
365static int stram_read_proc(char *page, char **start, off_t off,
366 int count, int *eof, void *data)
367{
368 int len = get_stram_list(page);
369 return proc_calc_metrics(page, start, off, count, eof, len);
370}
371#endif
372
David Howells93614012006-09-30 20:45:40 +0200373#ifdef CONFIG_BLOCK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374extern struct seq_operations partitions_op;
375static int partitions_open(struct inode *inode, struct file *file)
376{
377 return seq_open(file, &partitions_op);
378}
Arjan van de Ven00977a52007-02-12 00:55:34 -0800379static const struct file_operations proc_partitions_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 .open = partitions_open,
381 .read = seq_read,
382 .llseek = seq_lseek,
383 .release = seq_release,
384};
385
386extern struct seq_operations diskstats_op;
387static int diskstats_open(struct inode *inode, struct file *file)
388{
389 return seq_open(file, &diskstats_op);
390}
Arjan van de Ven00977a52007-02-12 00:55:34 -0800391static const struct file_operations proc_diskstats_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 .open = diskstats_open,
393 .read = seq_read,
394 .llseek = seq_lseek,
395 .release = seq_release,
396};
David Howells93614012006-09-30 20:45:40 +0200397#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
399#ifdef CONFIG_MODULES
400extern struct seq_operations modules_op;
401static int modules_open(struct inode *inode, struct file *file)
402{
403 return seq_open(file, &modules_op);
404}
Arjan van de Ven00977a52007-02-12 00:55:34 -0800405static const struct file_operations proc_modules_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 .open = modules_open,
407 .read = seq_read,
408 .llseek = seq_lseek,
409 .release = seq_release,
410};
411#endif
412
Matt Mackall10cef602006-01-08 01:01:45 -0800413#ifdef CONFIG_SLAB
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414static int slabinfo_open(struct inode *inode, struct file *file)
415{
416 return seq_open(file, &slabinfo_op);
417}
Arjan van de Ven00977a52007-02-12 00:55:34 -0800418static const struct file_operations proc_slabinfo_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 .open = slabinfo_open,
420 .read = seq_read,
421 .write = slabinfo_write,
422 .llseek = seq_lseek,
423 .release = seq_release,
424};
Al Viro871751e2006-03-25 03:06:39 -0800425
426#ifdef CONFIG_DEBUG_SLAB_LEAK
427extern struct seq_operations slabstats_op;
428static int slabstats_open(struct inode *inode, struct file *file)
429{
430 unsigned long *n = kzalloc(PAGE_SIZE, GFP_KERNEL);
431 int ret = -ENOMEM;
432 if (n) {
433 ret = seq_open(file, &slabstats_op);
434 if (!ret) {
435 struct seq_file *m = file->private_data;
436 *n = PAGE_SIZE / (2 * sizeof(unsigned long));
437 m->private = n;
438 n = NULL;
439 }
440 kfree(n);
441 }
442 return ret;
443}
444
Arjan van de Ven00977a52007-02-12 00:55:34 -0800445static const struct file_operations proc_slabstats_operations = {
Al Viro871751e2006-03-25 03:06:39 -0800446 .open = slabstats_open,
447 .read = seq_read,
448 .llseek = seq_lseek,
Martin Peschke09f08922007-05-08 00:29:26 -0700449 .release = seq_release_private,
Al Viro871751e2006-03-25 03:06:39 -0800450};
451#endif
Matt Mackall10cef602006-01-08 01:01:45 -0800452#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Pekka Enberg6b6adc22008-01-02 13:07:25 +0200454#ifdef CONFIG_SLUB
455static int slabinfo_open(struct inode *inode, struct file *file)
456{
457 return seq_open(file, &slabinfo_op);
458}
459
460static const struct file_operations proc_slabinfo_operations = {
461 .open = slabinfo_open,
462 .read = seq_read,
463 .llseek = seq_lseek,
464 .release = seq_release,
465};
466#endif
467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468static int show_stat(struct seq_file *p, void *v)
469{
470 int i;
471 unsigned long jif;
472 cputime64_t user, nice, system, idle, iowait, irq, softirq, steal;
Laurent Vivier5e84cfd2007-10-15 17:00:19 +0200473 cputime64_t guest;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 u64 sum = 0;
Tomas Janousek924b42d2007-07-15 23:39:42 -0700475 struct timespec boottime;
Ravikiran G Thirumalai4004c692007-07-19 01:47:53 -0700476 unsigned int *per_irq_sum;
477
478 per_irq_sum = kzalloc(sizeof(unsigned int)*NR_IRQS, GFP_KERNEL);
479 if (!per_irq_sum)
480 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
482 user = nice = system = idle = iowait =
483 irq = softirq = steal = cputime64_zero;
Laurent Vivier5e84cfd2007-10-15 17:00:19 +0200484 guest = cputime64_zero;
Tomas Janousek924b42d2007-07-15 23:39:42 -0700485 getboottime(&boottime);
486 jif = boottime.tv_sec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -0800488 for_each_possible_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 int j;
490
491 user = cputime64_add(user, kstat_cpu(i).cpustat.user);
492 nice = cputime64_add(nice, kstat_cpu(i).cpustat.nice);
493 system = cputime64_add(system, kstat_cpu(i).cpustat.system);
494 idle = cputime64_add(idle, kstat_cpu(i).cpustat.idle);
495 iowait = cputime64_add(iowait, kstat_cpu(i).cpustat.iowait);
496 irq = cputime64_add(irq, kstat_cpu(i).cpustat.irq);
497 softirq = cputime64_add(softirq, kstat_cpu(i).cpustat.softirq);
498 steal = cputime64_add(steal, kstat_cpu(i).cpustat.steal);
Laurent Vivier5e84cfd2007-10-15 17:00:19 +0200499 guest = cputime64_add(guest, kstat_cpu(i).cpustat.guest);
Ravikiran G Thirumalai4004c692007-07-19 01:47:53 -0700500 for (j = 0; j < NR_IRQS; j++) {
501 unsigned int temp = kstat_cpu(i).irqs[j];
502 sum += temp;
503 per_irq_sum[j] += temp;
504 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 }
506
Laurent Vivier5e84cfd2007-10-15 17:00:19 +0200507 seq_printf(p, "cpu %llu %llu %llu %llu %llu %llu %llu %llu %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 (unsigned long long)cputime64_to_clock_t(user),
509 (unsigned long long)cputime64_to_clock_t(nice),
510 (unsigned long long)cputime64_to_clock_t(system),
511 (unsigned long long)cputime64_to_clock_t(idle),
512 (unsigned long long)cputime64_to_clock_t(iowait),
513 (unsigned long long)cputime64_to_clock_t(irq),
514 (unsigned long long)cputime64_to_clock_t(softirq),
Laurent Vivier5e84cfd2007-10-15 17:00:19 +0200515 (unsigned long long)cputime64_to_clock_t(steal),
516 (unsigned long long)cputime64_to_clock_t(guest));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 for_each_online_cpu(i) {
518
519 /* Copy values here to work around gcc-2.95.3, gcc-2.96 */
520 user = kstat_cpu(i).cpustat.user;
521 nice = kstat_cpu(i).cpustat.nice;
522 system = kstat_cpu(i).cpustat.system;
523 idle = kstat_cpu(i).cpustat.idle;
524 iowait = kstat_cpu(i).cpustat.iowait;
525 irq = kstat_cpu(i).cpustat.irq;
526 softirq = kstat_cpu(i).cpustat.softirq;
527 steal = kstat_cpu(i).cpustat.steal;
Laurent Vivier5e84cfd2007-10-15 17:00:19 +0200528 guest = kstat_cpu(i).cpustat.guest;
529 seq_printf(p,
530 "cpu%d %llu %llu %llu %llu %llu %llu %llu %llu %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 i,
532 (unsigned long long)cputime64_to_clock_t(user),
533 (unsigned long long)cputime64_to_clock_t(nice),
534 (unsigned long long)cputime64_to_clock_t(system),
535 (unsigned long long)cputime64_to_clock_t(idle),
536 (unsigned long long)cputime64_to_clock_t(iowait),
537 (unsigned long long)cputime64_to_clock_t(irq),
538 (unsigned long long)cputime64_to_clock_t(softirq),
Laurent Vivier5e84cfd2007-10-15 17:00:19 +0200539 (unsigned long long)cputime64_to_clock_t(steal),
540 (unsigned long long)cputime64_to_clock_t(guest));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 }
542 seq_printf(p, "intr %llu", (unsigned long long)sum);
543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 for (i = 0; i < NR_IRQS; i++)
Ravikiran G Thirumalai4004c692007-07-19 01:47:53 -0700545 seq_printf(p, " %u", per_irq_sum[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
547 seq_printf(p,
548 "\nctxt %llu\n"
549 "btime %lu\n"
550 "processes %lu\n"
551 "procs_running %lu\n"
552 "procs_blocked %lu\n",
553 nr_context_switches(),
554 (unsigned long)jif,
555 total_forks,
556 nr_running(),
557 nr_iowait());
558
Ravikiran G Thirumalai4004c692007-07-19 01:47:53 -0700559 kfree(per_irq_sum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 return 0;
561}
562
563static int stat_open(struct inode *inode, struct file *file)
564{
565 unsigned size = 4096 * (1 + num_possible_cpus() / 32);
566 char *buf;
567 struct seq_file *m;
568 int res;
569
570 /* don't ask for more than the kmalloc() max size, currently 128 KB */
571 if (size > 128 * 1024)
572 size = 128 * 1024;
573 buf = kmalloc(size, GFP_KERNEL);
574 if (!buf)
575 return -ENOMEM;
576
577 res = single_open(file, show_stat, NULL);
578 if (!res) {
579 m = file->private_data;
580 m->buf = buf;
581 m->size = size;
582 } else
583 kfree(buf);
584 return res;
585}
Arjan van de Ven00977a52007-02-12 00:55:34 -0800586static const struct file_operations proc_stat_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 .open = stat_open,
588 .read = seq_read,
589 .llseek = seq_lseek,
590 .release = single_release,
591};
592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593/*
594 * /proc/interrupts
595 */
596static void *int_seq_start(struct seq_file *f, loff_t *pos)
597{
598 return (*pos <= NR_IRQS) ? pos : NULL;
599}
600
601static void *int_seq_next(struct seq_file *f, void *v, loff_t *pos)
602{
603 (*pos)++;
604 if (*pos > NR_IRQS)
605 return NULL;
606 return pos;
607}
608
609static void int_seq_stop(struct seq_file *f, void *v)
610{
611 /* Nothing to do */
612}
613
614
615extern int show_interrupts(struct seq_file *f, void *v); /* In arch code */
616static struct seq_operations int_seq_ops = {
617 .start = int_seq_start,
618 .next = int_seq_next,
619 .stop = int_seq_stop,
620 .show = show_interrupts
621};
622
623static int interrupts_open(struct inode *inode, struct file *filp)
624{
625 return seq_open(filp, &int_seq_ops);
626}
627
Arjan van de Ven00977a52007-02-12 00:55:34 -0800628static const struct file_operations proc_interrupts_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 .open = interrupts_open,
630 .read = seq_read,
631 .llseek = seq_lseek,
632 .release = seq_release,
633};
634
635static int filesystems_read_proc(char *page, char **start, off_t off,
636 int count, int *eof, void *data)
637{
638 int len = get_filesystem_list(page);
639 return proc_calc_metrics(page, start, off, count, eof, len);
640}
641
642static int cmdline_read_proc(char *page, char **start, off_t off,
643 int count, int *eof, void *data)
644{
645 int len;
646
647 len = sprintf(page, "%s\n", saved_command_line);
648 return proc_calc_metrics(page, start, off, count, eof, len);
649}
650
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -0700651static int locks_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652{
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -0700653 return seq_open(filp, &locks_seq_operations);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654}
655
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -0700656static const struct file_operations proc_locks_operations = {
657 .open = locks_open,
658 .read = seq_read,
659 .llseek = seq_lseek,
660 .release = seq_release,
661};
662
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663static int execdomains_read_proc(char *page, char **start, off_t off,
664 int count, int *eof, void *data)
665{
666 int len = get_exec_domain_list(page);
667 return proc_calc_metrics(page, start, off, count, eof, len);
668}
669
670#ifdef CONFIG_MAGIC_SYSRQ
671/*
672 * writing 'C' to /proc/sysrq-trigger is like sysrq-C
673 */
674static ssize_t write_sysrq_trigger(struct file *file, const char __user *buf,
675 size_t count, loff_t *ppos)
676{
677 if (count) {
678 char c;
679
680 if (get_user(c, buf))
681 return -EFAULT;
David Howells7d12e782006-10-05 14:55:46 +0100682 __handle_sysrq(c, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 }
684 return count;
685}
686
Arjan van de Ven00977a52007-02-12 00:55:34 -0800687static const struct file_operations proc_sysrq_trigger_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 .write = write_sysrq_trigger,
689};
690#endif
691
692struct proc_dir_entry *proc_root_kcore;
693
Arjan van de Ven99ac48f2006-03-28 01:56:41 -0800694void create_seq_entry(char *name, mode_t mode, const struct file_operations *f)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695{
696 struct proc_dir_entry *entry;
697 entry = create_proc_entry(name, mode, NULL);
698 if (entry)
699 entry->proc_fops = f;
700}
701
702void __init proc_misc_init(void)
703{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 static struct {
705 char *name;
706 int (*read_proc)(char*,char**,off_t,int,int*,void*);
707 } *p, simple_ones[] = {
708 {"loadavg", loadavg_read_proc},
709 {"uptime", uptime_read_proc},
710 {"meminfo", meminfo_read_proc},
711 {"version", version_read_proc},
712#ifdef CONFIG_PROC_HARDWARE
713 {"hardware", hardware_read_proc},
714#endif
715#ifdef CONFIG_STRAM_PROC
716 {"stram", stram_read_proc},
717#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 {"filesystems", filesystems_read_proc},
719 {"cmdline", cmdline_read_proc},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 {"execdomains", execdomains_read_proc},
721 {NULL,}
722 };
723 for (p = simple_ones; p->name; p++)
724 create_proc_read_entry(p->name, 0, NULL, p->read_proc, NULL);
725
726 proc_symlink("mounts", NULL, "self/mounts");
727
728 /* And now for trickier ones */
Mike Galbraithc36264d2006-12-06 20:37:42 -0800729#ifdef CONFIG_PRINTK
Andrew Morton100bb932007-02-10 01:45:51 -0800730 {
731 struct proc_dir_entry *entry;
732 entry = create_proc_entry("kmsg", S_IRUSR, &proc_root);
733 if (entry)
734 entry->proc_fops = &proc_kmsg_operations;
735 }
Mike Galbraithc36264d2006-12-06 20:37:42 -0800736#endif
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -0700737 create_seq_entry("locks", 0, &proc_locks_operations);
Neil Horman7170be52006-01-14 13:20:38 -0800738 create_seq_entry("devices", 0, &proc_devinfo_operations);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 create_seq_entry("cpuinfo", 0, &proc_cpuinfo_operations);
David Howells93614012006-09-30 20:45:40 +0200740#ifdef CONFIG_BLOCK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 create_seq_entry("partitions", 0, &proc_partitions_operations);
David Howells93614012006-09-30 20:45:40 +0200742#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 create_seq_entry("stat", 0, &proc_stat_operations);
744 create_seq_entry("interrupts", 0, &proc_interrupts_operations);
Matt Mackall10cef602006-01-08 01:01:45 -0800745#ifdef CONFIG_SLAB
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 create_seq_entry("slabinfo",S_IWUSR|S_IRUGO,&proc_slabinfo_operations);
Al Viro871751e2006-03-25 03:06:39 -0800747#ifdef CONFIG_DEBUG_SLAB_LEAK
748 create_seq_entry("slab_allocators", 0 ,&proc_slabstats_operations);
749#endif
Matt Mackall10cef602006-01-08 01:01:45 -0800750#endif
Pekka Enberg6b6adc22008-01-02 13:07:25 +0200751#ifdef CONFIG_SLUB
752 create_seq_entry("slabinfo", S_IWUSR|S_IRUGO, &proc_slabinfo_operations);
753#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 create_seq_entry("buddyinfo",S_IRUGO, &fragmentation_file_operations);
Mel Gorman467c9962007-10-16 01:26:02 -0700755 create_seq_entry("pagetypeinfo", S_IRUGO, &pagetypeinfo_file_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 create_seq_entry("vmstat",S_IRUGO, &proc_vmstat_file_operations);
Nikita Danilov295ab932005-06-21 17:14:38 -0700757 create_seq_entry("zoneinfo",S_IRUGO, &proc_zoneinfo_file_operations);
David Howells93614012006-09-30 20:45:40 +0200758#ifdef CONFIG_BLOCK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 create_seq_entry("diskstats", 0, &proc_diskstats_operations);
David Howells93614012006-09-30 20:45:40 +0200760#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761#ifdef CONFIG_MODULES
762 create_seq_entry("modules", 0, &proc_modules_operations);
763#endif
764#ifdef CONFIG_SCHEDSTATS
765 create_seq_entry("schedstat", 0, &proc_schedstat_operations);
766#endif
767#ifdef CONFIG_PROC_KCORE
768 proc_root_kcore = create_proc_entry("kcore", S_IRUSR, NULL);
769 if (proc_root_kcore) {
770 proc_root_kcore->proc_fops = &proc_kcore_operations;
771 proc_root_kcore->size =
772 (size_t)high_memory - PAGE_OFFSET + PAGE_SIZE;
773 }
774#endif
Vivek Goyal666bfdd2005-06-25 14:58:21 -0700775#ifdef CONFIG_PROC_VMCORE
776 proc_vmcore = create_proc_entry("vmcore", S_IRUSR, NULL);
777 if (proc_vmcore)
778 proc_vmcore->proc_fops = &proc_vmcore_operations;
779#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780#ifdef CONFIG_MAGIC_SYSRQ
Andrew Morton100bb932007-02-10 01:45:51 -0800781 {
782 struct proc_dir_entry *entry;
783 entry = create_proc_entry("sysrq-trigger", S_IWUSR, NULL);
784 if (entry)
785 entry->proc_fops = &proc_sysrq_trigger_operations;
786 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788}