blob: 0071939c00955aa538711eb5d287f7c2af75a151 [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),
Cedric Le Goater6cc1b222006-12-08 02:38:00 -080094 nr_running(), nr_threads, current->nsproxy->pid_ns->last_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 return proc_calc_metrics(page, start, off, count, eof, len);
96}
97
98static int uptime_read_proc(char *page, char **start, off_t off,
99 int count, int *eof, void *data)
100{
101 struct timespec uptime;
102 struct timespec idle;
103 int len;
104 cputime_t idletime = cputime_add(init_task.utime, init_task.stime);
105
106 do_posix_clock_monotonic_gettime(&uptime);
Tomas Janousekd6214142007-07-15 23:39:42 -0700107 monotonic_to_bootbased(&uptime);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 cputime_to_timespec(idletime, &idle);
109 len = sprintf(page,"%lu.%02lu %lu.%02lu\n",
110 (unsigned long) uptime.tv_sec,
111 (uptime.tv_nsec / (NSEC_PER_SEC / 100)),
112 (unsigned long) idle.tv_sec,
113 (idle.tv_nsec / (NSEC_PER_SEC / 100)));
114
115 return proc_calc_metrics(page, start, off, count, eof, len);
116}
117
118static int meminfo_read_proc(char *page, char **start, off_t off,
119 int count, int *eof, void *data)
120{
121 struct sysinfo i;
122 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 unsigned long committed;
124 unsigned long allowed;
125 struct vmalloc_info vmi;
Martin Hicks4c4c4022005-04-16 15:24:08 -0700126 long cached;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128/*
129 * display in kilobytes.
130 */
131#define K(x) ((x) << (PAGE_SHIFT - 10))
132 si_meminfo(&i);
133 si_swapinfo(&i);
134 committed = atomic_read(&vm_committed_space);
135 allowed = ((totalram_pages - hugetlb_total_pages())
136 * sysctl_overcommit_ratio / 100) + total_swap_pages;
137
Christoph Lameter347ce432006-06-30 01:55:35 -0700138 cached = global_page_state(NR_FILE_PAGES) -
139 total_swapcache_pages - i.bufferram;
Martin Hicks4c4c4022005-04-16 15:24:08 -0700140 if (cached < 0)
141 cached = 0;
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 get_vmalloc_info(&vmi);
144
145 /*
146 * Tagged format, for easy grepping and expansion.
147 */
148 len = sprintf(page,
149 "MemTotal: %8lu kB\n"
150 "MemFree: %8lu kB\n"
151 "Buffers: %8lu kB\n"
152 "Cached: %8lu kB\n"
153 "SwapCached: %8lu kB\n"
154 "Active: %8lu kB\n"
155 "Inactive: %8lu kB\n"
Christoph Lameter182e8e22006-09-25 23:31:10 -0700156#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 "HighTotal: %8lu kB\n"
158 "HighFree: %8lu kB\n"
159 "LowTotal: %8lu kB\n"
160 "LowFree: %8lu kB\n"
Christoph Lameter182e8e22006-09-25 23:31:10 -0700161#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 "SwapTotal: %8lu kB\n"
163 "SwapFree: %8lu kB\n"
164 "Dirty: %8lu kB\n"
165 "Writeback: %8lu kB\n"
Christoph Lameterf3dbd342006-06-30 01:55:36 -0700166 "AnonPages: %8lu kB\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 "Mapped: %8lu kB\n"
168 "Slab: %8lu kB\n"
Christoph Lameter972d1a72006-09-25 23:31:51 -0700169 "SReclaimable: %8lu kB\n"
170 "SUnreclaim: %8lu kB\n"
Christoph Lameterdf849a12006-06-30 01:55:38 -0700171 "PageTables: %8lu kB\n"
Andrew Mortonf5ef68d2006-08-27 01:23:58 -0700172 "NFS_Unstable: %8lu kB\n"
Christoph Lameterd2c5e302006-06-30 01:55:41 -0700173 "Bounce: %8lu kB\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 "CommitLimit: %8lu kB\n"
175 "Committed_AS: %8lu kB\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 "VmallocTotal: %8lu kB\n"
177 "VmallocUsed: %8lu kB\n"
178 "VmallocChunk: %8lu kB\n",
179 K(i.totalram),
180 K(i.freeram),
181 K(i.bufferram),
Martin Hicks4c4c4022005-04-16 15:24:08 -0700182 K(cached),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 K(total_swapcache_pages),
Christoph Lameter65e458d42007-02-10 01:43:05 -0800184 K(global_page_state(NR_ACTIVE)),
185 K(global_page_state(NR_INACTIVE)),
Christoph Lameter182e8e22006-09-25 23:31:10 -0700186#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 K(i.totalhigh),
188 K(i.freehigh),
189 K(i.totalram-i.totalhigh),
190 K(i.freeram-i.freehigh),
Christoph Lameter182e8e22006-09-25 23:31:10 -0700191#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 K(i.totalswap),
193 K(i.freeswap),
Christoph Lameterb1e7a8f2006-06-30 01:55:39 -0700194 K(global_page_state(NR_FILE_DIRTY)),
Christoph Lameterce866b32006-06-30 01:55:40 -0700195 K(global_page_state(NR_WRITEBACK)),
Christoph Lameterf3dbd342006-06-30 01:55:36 -0700196 K(global_page_state(NR_ANON_PAGES)),
Christoph Lameter65ba55f2006-06-30 01:55:34 -0700197 K(global_page_state(NR_FILE_MAPPED)),
Christoph Lameter972d1a72006-09-25 23:31:51 -0700198 K(global_page_state(NR_SLAB_RECLAIMABLE) +
199 global_page_state(NR_SLAB_UNRECLAIMABLE)),
200 K(global_page_state(NR_SLAB_RECLAIMABLE)),
201 K(global_page_state(NR_SLAB_UNRECLAIMABLE)),
Christoph Lameterdf849a12006-06-30 01:55:38 -0700202 K(global_page_state(NR_PAGETABLE)),
Christoph Lameterfd39fc82006-06-30 01:55:40 -0700203 K(global_page_state(NR_UNSTABLE_NFS)),
Christoph Lameterd2c5e302006-06-30 01:55:41 -0700204 K(global_page_state(NR_BOUNCE)),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 K(allowed),
206 K(committed),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 (unsigned long)VMALLOC_TOTAL >> 10,
208 vmi.used >> 10,
209 vmi.largest_chunk >> 10
210 );
211
212 len += hugetlb_report_meminfo(page + len);
213
214 return proc_calc_metrics(page, start, off, count, eof, len);
215#undef K
216}
217
218extern struct seq_operations fragmentation_op;
219static int fragmentation_open(struct inode *inode, struct file *file)
220{
221 (void)inode;
222 return seq_open(file, &fragmentation_op);
223}
224
Arjan van de Ven00977a52007-02-12 00:55:34 -0800225static const struct file_operations fragmentation_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 .open = fragmentation_open,
227 .read = seq_read,
228 .llseek = seq_lseek,
229 .release = seq_release,
230};
231
Nikita Danilov295ab932005-06-21 17:14:38 -0700232extern struct seq_operations zoneinfo_op;
233static int zoneinfo_open(struct inode *inode, struct file *file)
234{
235 return seq_open(file, &zoneinfo_op);
236}
237
Arjan van de Ven00977a52007-02-12 00:55:34 -0800238static const struct file_operations proc_zoneinfo_file_operations = {
Nikita Danilov295ab932005-06-21 17:14:38 -0700239 .open = zoneinfo_open,
240 .read = seq_read,
241 .llseek = seq_lseek,
242 .release = seq_release,
243};
244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245static int version_read_proc(char *page, char **start, off_t off,
246 int count, int *eof, void *data)
247{
248 int len;
249
Roman Zippel3eb3c742007-01-10 14:45:28 +0100250 len = snprintf(page, PAGE_SIZE, linux_proc_banner,
Linus Torvalds89937802006-12-11 09:28:46 -0800251 utsname()->sysname,
252 utsname()->release,
253 utsname()->version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 return proc_calc_metrics(page, start, off, count, eof, len);
255}
256
257extern struct seq_operations cpuinfo_op;
258static int cpuinfo_open(struct inode *inode, struct file *file)
259{
260 return seq_open(file, &cpuinfo_op);
261}
Neil Horman7170be52006-01-14 13:20:38 -0800262
Arjan van de Ven00977a52007-02-12 00:55:34 -0800263static const struct file_operations proc_cpuinfo_operations = {
Joe Korty68eef3b2006-03-31 02:30:32 -0800264 .open = cpuinfo_open,
Neil Horman7170be52006-01-14 13:20:38 -0800265 .read = seq_read,
266 .llseek = seq_lseek,
267 .release = seq_release,
268};
269
Joe Korty68eef3b2006-03-31 02:30:32 -0800270static int devinfo_show(struct seq_file *f, void *v)
271{
272 int i = *(loff_t *) v;
273
274 if (i < CHRDEV_MAJOR_HASH_SIZE) {
275 if (i == 0)
276 seq_printf(f, "Character devices:\n");
277 chrdev_show(f, i);
David Howells93614012006-09-30 20:45:40 +0200278 }
279#ifdef CONFIG_BLOCK
280 else {
Joe Korty68eef3b2006-03-31 02:30:32 -0800281 i -= CHRDEV_MAJOR_HASH_SIZE;
282 if (i == 0)
283 seq_printf(f, "\nBlock devices:\n");
284 blkdev_show(f, i);
285 }
David Howells93614012006-09-30 20:45:40 +0200286#endif
Joe Korty68eef3b2006-03-31 02:30:32 -0800287 return 0;
288}
289
290static void *devinfo_start(struct seq_file *f, loff_t *pos)
291{
292 if (*pos < (BLKDEV_MAJOR_HASH_SIZE + CHRDEV_MAJOR_HASH_SIZE))
293 return pos;
294 return NULL;
295}
296
297static void *devinfo_next(struct seq_file *f, void *v, loff_t *pos)
298{
299 (*pos)++;
300 if (*pos >= (BLKDEV_MAJOR_HASH_SIZE + CHRDEV_MAJOR_HASH_SIZE))
301 return NULL;
302 return pos;
303}
304
305static void devinfo_stop(struct seq_file *f, void *v)
306{
307 /* Nothing to do */
308}
309
310static struct seq_operations devinfo_ops = {
311 .start = devinfo_start,
312 .next = devinfo_next,
313 .stop = devinfo_stop,
314 .show = devinfo_show
315};
316
317static int devinfo_open(struct inode *inode, struct file *filp)
318{
319 return seq_open(filp, &devinfo_ops);
320}
321
Arjan van de Ven00977a52007-02-12 00:55:34 -0800322static const struct file_operations proc_devinfo_operations = {
Joe Korty68eef3b2006-03-31 02:30:32 -0800323 .open = devinfo_open,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 .read = seq_read,
325 .llseek = seq_lseek,
326 .release = seq_release,
327};
328
329extern struct seq_operations vmstat_op;
330static int vmstat_open(struct inode *inode, struct file *file)
331{
332 return seq_open(file, &vmstat_op);
333}
Arjan van de Ven00977a52007-02-12 00:55:34 -0800334static const struct file_operations proc_vmstat_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 .open = vmstat_open,
336 .read = seq_read,
337 .llseek = seq_lseek,
338 .release = seq_release,
339};
340
341#ifdef CONFIG_PROC_HARDWARE
342static int hardware_read_proc(char *page, char **start, off_t off,
343 int count, int *eof, void *data)
344{
345 int len = get_hardware_list(page);
346 return proc_calc_metrics(page, start, off, count, eof, len);
347}
348#endif
349
350#ifdef CONFIG_STRAM_PROC
351static int stram_read_proc(char *page, char **start, off_t off,
352 int count, int *eof, void *data)
353{
354 int len = get_stram_list(page);
355 return proc_calc_metrics(page, start, off, count, eof, len);
356}
357#endif
358
David Howells93614012006-09-30 20:45:40 +0200359#ifdef CONFIG_BLOCK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360extern struct seq_operations partitions_op;
361static int partitions_open(struct inode *inode, struct file *file)
362{
363 return seq_open(file, &partitions_op);
364}
Arjan van de Ven00977a52007-02-12 00:55:34 -0800365static const struct file_operations proc_partitions_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 .open = partitions_open,
367 .read = seq_read,
368 .llseek = seq_lseek,
369 .release = seq_release,
370};
371
372extern struct seq_operations diskstats_op;
373static int diskstats_open(struct inode *inode, struct file *file)
374{
375 return seq_open(file, &diskstats_op);
376}
Arjan van de Ven00977a52007-02-12 00:55:34 -0800377static const struct file_operations proc_diskstats_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 .open = diskstats_open,
379 .read = seq_read,
380 .llseek = seq_lseek,
381 .release = seq_release,
382};
David Howells93614012006-09-30 20:45:40 +0200383#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
385#ifdef CONFIG_MODULES
386extern struct seq_operations modules_op;
387static int modules_open(struct inode *inode, struct file *file)
388{
389 return seq_open(file, &modules_op);
390}
Arjan van de Ven00977a52007-02-12 00:55:34 -0800391static const struct file_operations proc_modules_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 .open = modules_open,
393 .read = seq_read,
394 .llseek = seq_lseek,
395 .release = seq_release,
396};
397#endif
398
Matt Mackall10cef602006-01-08 01:01:45 -0800399#ifdef CONFIG_SLAB
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400static int slabinfo_open(struct inode *inode, struct file *file)
401{
402 return seq_open(file, &slabinfo_op);
403}
Arjan van de Ven00977a52007-02-12 00:55:34 -0800404static const struct file_operations proc_slabinfo_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 .open = slabinfo_open,
406 .read = seq_read,
407 .write = slabinfo_write,
408 .llseek = seq_lseek,
409 .release = seq_release,
410};
Al Viro871751e2006-03-25 03:06:39 -0800411
412#ifdef CONFIG_DEBUG_SLAB_LEAK
413extern struct seq_operations slabstats_op;
414static int slabstats_open(struct inode *inode, struct file *file)
415{
416 unsigned long *n = kzalloc(PAGE_SIZE, GFP_KERNEL);
417 int ret = -ENOMEM;
418 if (n) {
419 ret = seq_open(file, &slabstats_op);
420 if (!ret) {
421 struct seq_file *m = file->private_data;
422 *n = PAGE_SIZE / (2 * sizeof(unsigned long));
423 m->private = n;
424 n = NULL;
425 }
426 kfree(n);
427 }
428 return ret;
429}
430
Arjan van de Ven00977a52007-02-12 00:55:34 -0800431static const struct file_operations proc_slabstats_operations = {
Al Viro871751e2006-03-25 03:06:39 -0800432 .open = slabstats_open,
433 .read = seq_read,
434 .llseek = seq_lseek,
Martin Peschke09f08922007-05-08 00:29:26 -0700435 .release = seq_release_private,
Al Viro871751e2006-03-25 03:06:39 -0800436};
437#endif
Matt Mackall10cef602006-01-08 01:01:45 -0800438#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440static int show_stat(struct seq_file *p, void *v)
441{
442 int i;
443 unsigned long jif;
444 cputime64_t user, nice, system, idle, iowait, irq, softirq, steal;
Laurent Vivier5e84cfd2007-10-15 17:00:19 +0200445 cputime64_t guest;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 u64 sum = 0;
Tomas Janousek924b42d2007-07-15 23:39:42 -0700447 struct timespec boottime;
Ravikiran G Thirumalai4004c692007-07-19 01:47:53 -0700448 unsigned int *per_irq_sum;
449
450 per_irq_sum = kzalloc(sizeof(unsigned int)*NR_IRQS, GFP_KERNEL);
451 if (!per_irq_sum)
452 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
454 user = nice = system = idle = iowait =
455 irq = softirq = steal = cputime64_zero;
Laurent Vivier5e84cfd2007-10-15 17:00:19 +0200456 guest = cputime64_zero;
Tomas Janousek924b42d2007-07-15 23:39:42 -0700457 getboottime(&boottime);
458 jif = boottime.tv_sec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -0800460 for_each_possible_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 int j;
462
463 user = cputime64_add(user, kstat_cpu(i).cpustat.user);
464 nice = cputime64_add(nice, kstat_cpu(i).cpustat.nice);
465 system = cputime64_add(system, kstat_cpu(i).cpustat.system);
466 idle = cputime64_add(idle, kstat_cpu(i).cpustat.idle);
467 iowait = cputime64_add(iowait, kstat_cpu(i).cpustat.iowait);
468 irq = cputime64_add(irq, kstat_cpu(i).cpustat.irq);
469 softirq = cputime64_add(softirq, kstat_cpu(i).cpustat.softirq);
470 steal = cputime64_add(steal, kstat_cpu(i).cpustat.steal);
Laurent Vivier5e84cfd2007-10-15 17:00:19 +0200471 guest = cputime64_add(guest, kstat_cpu(i).cpustat.guest);
Ravikiran G Thirumalai4004c692007-07-19 01:47:53 -0700472 for (j = 0; j < NR_IRQS; j++) {
473 unsigned int temp = kstat_cpu(i).irqs[j];
474 sum += temp;
475 per_irq_sum[j] += temp;
476 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 }
478
Laurent Vivier5e84cfd2007-10-15 17:00:19 +0200479 seq_printf(p, "cpu %llu %llu %llu %llu %llu %llu %llu %llu %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 (unsigned long long)cputime64_to_clock_t(user),
481 (unsigned long long)cputime64_to_clock_t(nice),
482 (unsigned long long)cputime64_to_clock_t(system),
483 (unsigned long long)cputime64_to_clock_t(idle),
484 (unsigned long long)cputime64_to_clock_t(iowait),
485 (unsigned long long)cputime64_to_clock_t(irq),
486 (unsigned long long)cputime64_to_clock_t(softirq),
Laurent Vivier5e84cfd2007-10-15 17:00:19 +0200487 (unsigned long long)cputime64_to_clock_t(steal),
488 (unsigned long long)cputime64_to_clock_t(guest));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 for_each_online_cpu(i) {
490
491 /* Copy values here to work around gcc-2.95.3, gcc-2.96 */
492 user = kstat_cpu(i).cpustat.user;
493 nice = kstat_cpu(i).cpustat.nice;
494 system = kstat_cpu(i).cpustat.system;
495 idle = kstat_cpu(i).cpustat.idle;
496 iowait = kstat_cpu(i).cpustat.iowait;
497 irq = kstat_cpu(i).cpustat.irq;
498 softirq = kstat_cpu(i).cpustat.softirq;
499 steal = kstat_cpu(i).cpustat.steal;
Laurent Vivier5e84cfd2007-10-15 17:00:19 +0200500 guest = kstat_cpu(i).cpustat.guest;
501 seq_printf(p,
502 "cpu%d %llu %llu %llu %llu %llu %llu %llu %llu %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 i,
504 (unsigned long long)cputime64_to_clock_t(user),
505 (unsigned long long)cputime64_to_clock_t(nice),
506 (unsigned long long)cputime64_to_clock_t(system),
507 (unsigned long long)cputime64_to_clock_t(idle),
508 (unsigned long long)cputime64_to_clock_t(iowait),
509 (unsigned long long)cputime64_to_clock_t(irq),
510 (unsigned long long)cputime64_to_clock_t(softirq),
Laurent Vivier5e84cfd2007-10-15 17:00:19 +0200511 (unsigned long long)cputime64_to_clock_t(steal),
512 (unsigned long long)cputime64_to_clock_t(guest));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 }
514 seq_printf(p, "intr %llu", (unsigned long long)sum);
515
Ravikiran G Thirumalaic3508f82007-07-21 17:10:19 +0200516#ifndef CONFIG_SMP
517 /* Touches too many cache lines on SMP setups */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 for (i = 0; i < NR_IRQS; i++)
Ravikiran G Thirumalai4004c692007-07-19 01:47:53 -0700519 seq_printf(p, " %u", per_irq_sum[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520#endif
521
522 seq_printf(p,
523 "\nctxt %llu\n"
524 "btime %lu\n"
525 "processes %lu\n"
526 "procs_running %lu\n"
527 "procs_blocked %lu\n",
528 nr_context_switches(),
529 (unsigned long)jif,
530 total_forks,
531 nr_running(),
532 nr_iowait());
533
Ravikiran G Thirumalai4004c692007-07-19 01:47:53 -0700534 kfree(per_irq_sum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 return 0;
536}
537
538static int stat_open(struct inode *inode, struct file *file)
539{
540 unsigned size = 4096 * (1 + num_possible_cpus() / 32);
541 char *buf;
542 struct seq_file *m;
543 int res;
544
545 /* don't ask for more than the kmalloc() max size, currently 128 KB */
546 if (size > 128 * 1024)
547 size = 128 * 1024;
548 buf = kmalloc(size, GFP_KERNEL);
549 if (!buf)
550 return -ENOMEM;
551
552 res = single_open(file, show_stat, NULL);
553 if (!res) {
554 m = file->private_data;
555 m->buf = buf;
556 m->size = size;
557 } else
558 kfree(buf);
559 return res;
560}
Arjan van de Ven00977a52007-02-12 00:55:34 -0800561static const struct file_operations proc_stat_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 .open = stat_open,
563 .read = seq_read,
564 .llseek = seq_lseek,
565 .release = single_release,
566};
567
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568/*
569 * /proc/interrupts
570 */
571static void *int_seq_start(struct seq_file *f, loff_t *pos)
572{
573 return (*pos <= NR_IRQS) ? pos : NULL;
574}
575
576static void *int_seq_next(struct seq_file *f, void *v, loff_t *pos)
577{
578 (*pos)++;
579 if (*pos > NR_IRQS)
580 return NULL;
581 return pos;
582}
583
584static void int_seq_stop(struct seq_file *f, void *v)
585{
586 /* Nothing to do */
587}
588
589
590extern int show_interrupts(struct seq_file *f, void *v); /* In arch code */
591static struct seq_operations int_seq_ops = {
592 .start = int_seq_start,
593 .next = int_seq_next,
594 .stop = int_seq_stop,
595 .show = show_interrupts
596};
597
598static int interrupts_open(struct inode *inode, struct file *filp)
599{
600 return seq_open(filp, &int_seq_ops);
601}
602
Arjan van de Ven00977a52007-02-12 00:55:34 -0800603static const struct file_operations proc_interrupts_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 .open = interrupts_open,
605 .read = seq_read,
606 .llseek = seq_lseek,
607 .release = seq_release,
608};
609
610static int filesystems_read_proc(char *page, char **start, off_t off,
611 int count, int *eof, void *data)
612{
613 int len = get_filesystem_list(page);
614 return proc_calc_metrics(page, start, off, count, eof, len);
615}
616
617static int cmdline_read_proc(char *page, char **start, off_t off,
618 int count, int *eof, void *data)
619{
620 int len;
621
622 len = sprintf(page, "%s\n", saved_command_line);
623 return proc_calc_metrics(page, start, off, count, eof, len);
624}
625
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -0700626static int locks_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -0700628 return seq_open(filp, &locks_seq_operations);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629}
630
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -0700631static const struct file_operations proc_locks_operations = {
632 .open = locks_open,
633 .read = seq_read,
634 .llseek = seq_lseek,
635 .release = seq_release,
636};
637
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638static int execdomains_read_proc(char *page, char **start, off_t off,
639 int count, int *eof, void *data)
640{
641 int len = get_exec_domain_list(page);
642 return proc_calc_metrics(page, start, off, count, eof, len);
643}
644
645#ifdef CONFIG_MAGIC_SYSRQ
646/*
647 * writing 'C' to /proc/sysrq-trigger is like sysrq-C
648 */
649static ssize_t write_sysrq_trigger(struct file *file, const char __user *buf,
650 size_t count, loff_t *ppos)
651{
652 if (count) {
653 char c;
654
655 if (get_user(c, buf))
656 return -EFAULT;
David Howells7d12e782006-10-05 14:55:46 +0100657 __handle_sysrq(c, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 }
659 return count;
660}
661
Arjan van de Ven00977a52007-02-12 00:55:34 -0800662static const struct file_operations proc_sysrq_trigger_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 .write = write_sysrq_trigger,
664};
665#endif
666
667struct proc_dir_entry *proc_root_kcore;
668
Arjan van de Ven99ac48f2006-03-28 01:56:41 -0800669void create_seq_entry(char *name, mode_t mode, const struct file_operations *f)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670{
671 struct proc_dir_entry *entry;
672 entry = create_proc_entry(name, mode, NULL);
673 if (entry)
674 entry->proc_fops = f;
675}
676
677void __init proc_misc_init(void)
678{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 static struct {
680 char *name;
681 int (*read_proc)(char*,char**,off_t,int,int*,void*);
682 } *p, simple_ones[] = {
683 {"loadavg", loadavg_read_proc},
684 {"uptime", uptime_read_proc},
685 {"meminfo", meminfo_read_proc},
686 {"version", version_read_proc},
687#ifdef CONFIG_PROC_HARDWARE
688 {"hardware", hardware_read_proc},
689#endif
690#ifdef CONFIG_STRAM_PROC
691 {"stram", stram_read_proc},
692#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 {"filesystems", filesystems_read_proc},
694 {"cmdline", cmdline_read_proc},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 {"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 */
Mike Galbraithc36264d2006-12-06 20:37:42 -0800704#ifdef CONFIG_PRINTK
Andrew Morton100bb932007-02-10 01:45:51 -0800705 {
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 }
Mike Galbraithc36264d2006-12-06 20:37:42 -0800711#endif
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -0700712 create_seq_entry("locks", 0, &proc_locks_operations);
Neil Horman7170be52006-01-14 13:20:38 -0800713 create_seq_entry("devices", 0, &proc_devinfo_operations);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 create_seq_entry("cpuinfo", 0, &proc_cpuinfo_operations);
David Howells93614012006-09-30 20:45:40 +0200715#ifdef CONFIG_BLOCK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 create_seq_entry("partitions", 0, &proc_partitions_operations);
David Howells93614012006-09-30 20:45:40 +0200717#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 create_seq_entry("stat", 0, &proc_stat_operations);
719 create_seq_entry("interrupts", 0, &proc_interrupts_operations);
Matt Mackall10cef602006-01-08 01:01:45 -0800720#ifdef CONFIG_SLAB
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 create_seq_entry("slabinfo",S_IWUSR|S_IRUGO,&proc_slabinfo_operations);
Al Viro871751e2006-03-25 03:06:39 -0800722#ifdef CONFIG_DEBUG_SLAB_LEAK
723 create_seq_entry("slab_allocators", 0 ,&proc_slabstats_operations);
724#endif
Matt Mackall10cef602006-01-08 01:01:45 -0800725#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 create_seq_entry("buddyinfo",S_IRUGO, &fragmentation_file_operations);
727 create_seq_entry("vmstat",S_IRUGO, &proc_vmstat_file_operations);
Nikita Danilov295ab932005-06-21 17:14:38 -0700728 create_seq_entry("zoneinfo",S_IRUGO, &proc_zoneinfo_file_operations);
David Howells93614012006-09-30 20:45:40 +0200729#ifdef CONFIG_BLOCK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 create_seq_entry("diskstats", 0, &proc_diskstats_operations);
David Howells93614012006-09-30 20:45:40 +0200731#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732#ifdef CONFIG_MODULES
733 create_seq_entry("modules", 0, &proc_modules_operations);
734#endif
735#ifdef CONFIG_SCHEDSTATS
736 create_seq_entry("schedstat", 0, &proc_schedstat_operations);
737#endif
738#ifdef CONFIG_PROC_KCORE
739 proc_root_kcore = create_proc_entry("kcore", S_IRUSR, NULL);
740 if (proc_root_kcore) {
741 proc_root_kcore->proc_fops = &proc_kcore_operations;
742 proc_root_kcore->size =
743 (size_t)high_memory - PAGE_OFFSET + PAGE_SIZE;
744 }
745#endif
Vivek Goyal666bfdd2005-06-25 14:58:21 -0700746#ifdef CONFIG_PROC_VMCORE
747 proc_vmcore = create_proc_entry("vmcore", S_IRUSR, NULL);
748 if (proc_vmcore)
749 proc_vmcore->proc_fops = &proc_vmcore_operations;
750#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751#ifdef CONFIG_MAGIC_SYSRQ
Andrew Morton100bb932007-02-10 01:45:51 -0800752 {
753 struct proc_dir_entry *entry;
754 entry = create_proc_entry("sysrq-trigger", S_IWUSR, NULL);
755 if (entry)
756 entry->proc_fops = &proc_sysrq_trigger_operations;
757 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759}