blob: 00f10a2dcf1239d0b72b48a62d8265a0a59b3d78 [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>
KOSAKI Motohiro4b856152008-09-02 14:35:53 -070027#include <linux/quicklist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/proc_fs.h>
29#include <linux/ioport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/mm.h>
31#include <linux/mmzone.h>
32#include <linux/pagemap.h>
Adrian Bunkf74596d2008-02-06 01:36:35 -080033#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/swap.h>
35#include <linux/slab.h>
Adrian Bunka0db7012008-03-04 11:23:50 +010036#include <linux/genhd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/smp.h>
38#include <linux/signal.h>
39#include <linux/module.h>
40#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/seq_file.h>
42#include <linux/times.h>
43#include <linux/profile.h>
Andrew Morton7bf65382006-12-08 02:41:14 -080044#include <linux/utsname.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/blkdev.h>
46#include <linux/hugetlb.h>
47#include <linux/jiffies.h>
48#include <linux/sysrq.h>
49#include <linux/vmalloc.h>
Vivek Goyal666bfdd2005-06-25 14:58:21 -070050#include <linux/crash_dump.h>
Sukadev Bhattiprolu61a58c62006-12-08 02:37:58 -080051#include <linux/pid_namespace.h>
Matt Mackall161f47b2008-02-04 22:29:05 -080052#include <linux/bootmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <asm/uaccess.h>
54#include <asm/pgtable.h>
55#include <asm/io.h>
56#include <asm/tlb.h>
57#include <asm/div64.h>
58#include "internal.h"
59
60#define LOAD_INT(x) ((x) >> FSHIFT)
61#define LOAD_FRAC(x) LOAD_INT(((x) & (FIXED_1-1)) * 100)
62/*
63 * Warning: stuff below (imported functions) assumes that its output will fit
64 * into one page. For some of those functions it may be wrong. Moreover, we
65 * have a way to deal with that gracefully. Right now I used straightforward
66 * wrappers, but this needs further analysis wrt potential overflows.
67 */
68extern int get_hardware_list(char *);
69extern int get_stram_list(char *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070extern int get_exec_domain_list(char *);
71extern int get_dma_list(char *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73static int proc_calc_metrics(char *page, char **start, off_t off,
74 int count, int *eof, int len)
75{
76 if (len <= off+count) *eof = 1;
77 *start = page + off;
78 len -= off;
79 if (len>count) len = count;
80 if (len<0) len = 0;
81 return len;
82}
83
84static int loadavg_read_proc(char *page, char **start, off_t off,
85 int count, int *eof, void *data)
86{
87 int a, b, c;
88 int len;
Michal Schmidt07a154b2008-02-06 01:37:07 -080089 unsigned long seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Michal Schmidt07a154b2008-02-06 01:37:07 -080091 do {
92 seq = read_seqbegin(&xtime_lock);
93 a = avenrun[0] + (FIXED_1/200);
94 b = avenrun[1] + (FIXED_1/200);
95 c = avenrun[2] + (FIXED_1/200);
96 } while (read_seqretry(&xtime_lock, seq));
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 len = sprintf(page,"%d.%02d %d.%02d %d.%02d %ld/%d %d\n",
99 LOAD_INT(a), LOAD_FRAC(a),
100 LOAD_INT(b), LOAD_FRAC(b),
101 LOAD_INT(c), LOAD_FRAC(c),
Sukadev Bhattiprolu2894d6502007-10-18 23:39:49 -0700102 nr_running(), nr_threads,
103 task_active_pid_ns(current)->last_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 return proc_calc_metrics(page, start, off, count, eof, len);
105}
106
107static int uptime_read_proc(char *page, char **start, off_t off,
108 int count, int *eof, void *data)
109{
110 struct timespec uptime;
111 struct timespec idle;
112 int len;
113 cputime_t idletime = cputime_add(init_task.utime, init_task.stime);
114
115 do_posix_clock_monotonic_gettime(&uptime);
Tomas Janousekd6214142007-07-15 23:39:42 -0700116 monotonic_to_bootbased(&uptime);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 cputime_to_timespec(idletime, &idle);
118 len = sprintf(page,"%lu.%02lu %lu.%02lu\n",
119 (unsigned long) uptime.tv_sec,
120 (uptime.tv_nsec / (NSEC_PER_SEC / 100)),
121 (unsigned long) idle.tv_sec,
122 (idle.tv_nsec / (NSEC_PER_SEC / 100)));
123
124 return proc_calc_metrics(page, start, off, count, eof, len);
125}
126
Andi Kleence0c0e52008-05-02 11:46:49 +0200127int __attribute__((weak)) arch_report_meminfo(char *page)
128{
129 return 0;
130}
131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132static int meminfo_read_proc(char *page, char **start, off_t off,
133 int count, int *eof, void *data)
134{
135 struct sysinfo i;
136 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 unsigned long committed;
138 unsigned long allowed;
139 struct vmalloc_info vmi;
Martin Hicks4c4c4022005-04-16 15:24:08 -0700140 long cached;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142/*
143 * display in kilobytes.
144 */
145#define K(x) ((x) << (PAGE_SHIFT - 10))
146 si_meminfo(&i);
147 si_swapinfo(&i);
Alan Cox80119ef2008-05-23 13:04:31 -0700148 committed = atomic_long_read(&vm_committed_space);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 allowed = ((totalram_pages - hugetlb_total_pages())
150 * sysctl_overcommit_ratio / 100) + total_swap_pages;
151
Christoph Lameter347ce432006-06-30 01:55:35 -0700152 cached = global_page_state(NR_FILE_PAGES) -
153 total_swapcache_pages - i.bufferram;
Martin Hicks4c4c4022005-04-16 15:24:08 -0700154 if (cached < 0)
155 cached = 0;
156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 get_vmalloc_info(&vmi);
158
159 /*
160 * Tagged format, for easy grepping and expansion.
161 */
162 len = sprintf(page,
163 "MemTotal: %8lu kB\n"
164 "MemFree: %8lu kB\n"
165 "Buffers: %8lu kB\n"
166 "Cached: %8lu kB\n"
167 "SwapCached: %8lu kB\n"
168 "Active: %8lu kB\n"
169 "Inactive: %8lu kB\n"
Christoph Lameter182e8e22006-09-25 23:31:10 -0700170#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 "HighTotal: %8lu kB\n"
172 "HighFree: %8lu kB\n"
173 "LowTotal: %8lu kB\n"
174 "LowFree: %8lu kB\n"
Christoph Lameter182e8e22006-09-25 23:31:10 -0700175#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 "SwapTotal: %8lu kB\n"
177 "SwapFree: %8lu kB\n"
178 "Dirty: %8lu kB\n"
179 "Writeback: %8lu kB\n"
Christoph Lameterf3dbd342006-06-30 01:55:36 -0700180 "AnonPages: %8lu kB\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 "Mapped: %8lu kB\n"
182 "Slab: %8lu kB\n"
Christoph Lameter972d1a72006-09-25 23:31:51 -0700183 "SReclaimable: %8lu kB\n"
184 "SUnreclaim: %8lu kB\n"
Christoph Lameterdf849a12006-06-30 01:55:38 -0700185 "PageTables: %8lu kB\n"
Andrew Mortonf5ef68d2006-08-27 01:23:58 -0700186 "NFS_Unstable: %8lu kB\n"
Christoph Lameterd2c5e302006-06-30 01:55:41 -0700187 "Bounce: %8lu kB\n"
Miklos Szeredifc3ba692008-04-30 00:54:38 -0700188 "WritebackTmp: %8lu kB\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 "CommitLimit: %8lu kB\n"
190 "Committed_AS: %8lu kB\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 "VmallocTotal: %8lu kB\n"
192 "VmallocUsed: %8lu kB\n"
KOSAKI Motohiro4b856152008-09-02 14:35:53 -0700193 "VmallocChunk: %8lu kB\n"
194 "Quicklists: %8lu kB\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 K(i.totalram),
196 K(i.freeram),
197 K(i.bufferram),
Martin Hicks4c4c4022005-04-16 15:24:08 -0700198 K(cached),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 K(total_swapcache_pages),
Christoph Lameter65e458d42007-02-10 01:43:05 -0800200 K(global_page_state(NR_ACTIVE)),
201 K(global_page_state(NR_INACTIVE)),
Christoph Lameter182e8e22006-09-25 23:31:10 -0700202#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 K(i.totalhigh),
204 K(i.freehigh),
205 K(i.totalram-i.totalhigh),
206 K(i.freeram-i.freehigh),
Christoph Lameter182e8e22006-09-25 23:31:10 -0700207#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 K(i.totalswap),
209 K(i.freeswap),
Christoph Lameterb1e7a8f2006-06-30 01:55:39 -0700210 K(global_page_state(NR_FILE_DIRTY)),
Christoph Lameterce866b32006-06-30 01:55:40 -0700211 K(global_page_state(NR_WRITEBACK)),
Christoph Lameterf3dbd342006-06-30 01:55:36 -0700212 K(global_page_state(NR_ANON_PAGES)),
Christoph Lameter65ba55f2006-06-30 01:55:34 -0700213 K(global_page_state(NR_FILE_MAPPED)),
Christoph Lameter972d1a72006-09-25 23:31:51 -0700214 K(global_page_state(NR_SLAB_RECLAIMABLE) +
215 global_page_state(NR_SLAB_UNRECLAIMABLE)),
216 K(global_page_state(NR_SLAB_RECLAIMABLE)),
217 K(global_page_state(NR_SLAB_UNRECLAIMABLE)),
Christoph Lameterdf849a12006-06-30 01:55:38 -0700218 K(global_page_state(NR_PAGETABLE)),
Christoph Lameterfd39fc82006-06-30 01:55:40 -0700219 K(global_page_state(NR_UNSTABLE_NFS)),
Christoph Lameterd2c5e302006-06-30 01:55:41 -0700220 K(global_page_state(NR_BOUNCE)),
Miklos Szeredifc3ba692008-04-30 00:54:38 -0700221 K(global_page_state(NR_WRITEBACK_TEMP)),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 K(allowed),
223 K(committed),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 (unsigned long)VMALLOC_TOTAL >> 10,
225 vmi.used >> 10,
KOSAKI Motohiro4b856152008-09-02 14:35:53 -0700226 vmi.largest_chunk >> 10,
227 K(quicklist_total_size())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 );
229
230 len += hugetlb_report_meminfo(page + len);
231
Andi Kleence0c0e52008-05-02 11:46:49 +0200232 len += arch_report_meminfo(page + len);
233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 return proc_calc_metrics(page, start, off, count, eof, len);
235#undef K
236}
237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238static int fragmentation_open(struct inode *inode, struct file *file)
239{
240 (void)inode;
241 return seq_open(file, &fragmentation_op);
242}
243
Arjan van de Ven00977a52007-02-12 00:55:34 -0800244static const struct file_operations fragmentation_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 .open = fragmentation_open,
246 .read = seq_read,
247 .llseek = seq_lseek,
248 .release = seq_release,
249};
250
Mel Gorman467c9962007-10-16 01:26:02 -0700251static int pagetypeinfo_open(struct inode *inode, struct file *file)
252{
253 return seq_open(file, &pagetypeinfo_op);
254}
255
256static const struct file_operations pagetypeinfo_file_ops = {
257 .open = pagetypeinfo_open,
258 .read = seq_read,
259 .llseek = seq_lseek,
260 .release = seq_release,
261};
262
Nikita Danilov295ab932005-06-21 17:14:38 -0700263static int zoneinfo_open(struct inode *inode, struct file *file)
264{
265 return seq_open(file, &zoneinfo_op);
266}
267
Arjan van de Ven00977a52007-02-12 00:55:34 -0800268static const struct file_operations proc_zoneinfo_file_operations = {
Nikita Danilov295ab932005-06-21 17:14:38 -0700269 .open = zoneinfo_open,
270 .read = seq_read,
271 .llseek = seq_lseek,
272 .release = seq_release,
273};
274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275static int version_read_proc(char *page, char **start, off_t off,
276 int count, int *eof, void *data)
277{
278 int len;
279
Roman Zippel3eb3c742007-01-10 14:45:28 +0100280 len = snprintf(page, PAGE_SIZE, linux_proc_banner,
Linus Torvalds89937802006-12-11 09:28:46 -0800281 utsname()->sysname,
282 utsname()->release,
283 utsname()->version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 return proc_calc_metrics(page, start, off, count, eof, len);
285}
286
Jan Engelhardt03a44822008-02-08 04:21:19 -0800287extern const struct seq_operations cpuinfo_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288static int cpuinfo_open(struct inode *inode, struct file *file)
289{
290 return seq_open(file, &cpuinfo_op);
291}
Neil Horman7170be52006-01-14 13:20:38 -0800292
Arjan van de Ven00977a52007-02-12 00:55:34 -0800293static const struct file_operations proc_cpuinfo_operations = {
Joe Korty68eef3b2006-03-31 02:30:32 -0800294 .open = cpuinfo_open,
Neil Horman7170be52006-01-14 13:20:38 -0800295 .read = seq_read,
296 .llseek = seq_lseek,
297 .release = seq_release,
298};
299
Joe Korty68eef3b2006-03-31 02:30:32 -0800300static int devinfo_show(struct seq_file *f, void *v)
301{
302 int i = *(loff_t *) v;
303
304 if (i < CHRDEV_MAJOR_HASH_SIZE) {
305 if (i == 0)
306 seq_printf(f, "Character devices:\n");
307 chrdev_show(f, i);
David Howells93614012006-09-30 20:45:40 +0200308 }
309#ifdef CONFIG_BLOCK
310 else {
Joe Korty68eef3b2006-03-31 02:30:32 -0800311 i -= CHRDEV_MAJOR_HASH_SIZE;
312 if (i == 0)
313 seq_printf(f, "\nBlock devices:\n");
314 blkdev_show(f, i);
315 }
David Howells93614012006-09-30 20:45:40 +0200316#endif
Joe Korty68eef3b2006-03-31 02:30:32 -0800317 return 0;
318}
319
320static void *devinfo_start(struct seq_file *f, loff_t *pos)
321{
322 if (*pos < (BLKDEV_MAJOR_HASH_SIZE + CHRDEV_MAJOR_HASH_SIZE))
323 return pos;
324 return NULL;
325}
326
327static void *devinfo_next(struct seq_file *f, void *v, loff_t *pos)
328{
329 (*pos)++;
330 if (*pos >= (BLKDEV_MAJOR_HASH_SIZE + CHRDEV_MAJOR_HASH_SIZE))
331 return NULL;
332 return pos;
333}
334
335static void devinfo_stop(struct seq_file *f, void *v)
336{
337 /* Nothing to do */
338}
339
Jan Engelhardt03a44822008-02-08 04:21:19 -0800340static const struct seq_operations devinfo_ops = {
Joe Korty68eef3b2006-03-31 02:30:32 -0800341 .start = devinfo_start,
342 .next = devinfo_next,
343 .stop = devinfo_stop,
344 .show = devinfo_show
345};
346
347static int devinfo_open(struct inode *inode, struct file *filp)
348{
349 return seq_open(filp, &devinfo_ops);
350}
351
Arjan van de Ven00977a52007-02-12 00:55:34 -0800352static const struct file_operations proc_devinfo_operations = {
Joe Korty68eef3b2006-03-31 02:30:32 -0800353 .open = devinfo_open,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 .read = seq_read,
355 .llseek = seq_lseek,
356 .release = seq_release,
357};
358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359static int vmstat_open(struct inode *inode, struct file *file)
360{
361 return seq_open(file, &vmstat_op);
362}
Arjan van de Ven00977a52007-02-12 00:55:34 -0800363static const struct file_operations proc_vmstat_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 .open = vmstat_open,
365 .read = seq_read,
366 .llseek = seq_lseek,
367 .release = seq_release,
368};
369
370#ifdef CONFIG_PROC_HARDWARE
371static int hardware_read_proc(char *page, char **start, off_t off,
372 int count, int *eof, void *data)
373{
374 int len = get_hardware_list(page);
375 return proc_calc_metrics(page, start, off, count, eof, len);
376}
377#endif
378
379#ifdef CONFIG_STRAM_PROC
380static int stram_read_proc(char *page, char **start, off_t off,
381 int count, int *eof, void *data)
382{
383 int len = get_stram_list(page);
384 return proc_calc_metrics(page, start, off, count, eof, len);
385}
386#endif
387
David Howells93614012006-09-30 20:45:40 +0200388#ifdef CONFIG_BLOCK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389static int partitions_open(struct inode *inode, struct file *file)
390{
391 return seq_open(file, &partitions_op);
392}
Arjan van de Ven00977a52007-02-12 00:55:34 -0800393static const struct file_operations proc_partitions_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 .open = partitions_open,
395 .read = seq_read,
396 .llseek = seq_lseek,
397 .release = seq_release,
398};
399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400static int diskstats_open(struct inode *inode, struct file *file)
401{
402 return seq_open(file, &diskstats_op);
403}
Arjan van de Ven00977a52007-02-12 00:55:34 -0800404static const struct file_operations proc_diskstats_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 .open = diskstats_open,
406 .read = seq_read,
407 .llseek = seq_lseek,
408 .release = seq_release,
409};
David Howells93614012006-09-30 20:45:40 +0200410#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
412#ifdef CONFIG_MODULES
Jan Engelhardt03a44822008-02-08 04:21:19 -0800413extern const struct seq_operations modules_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414static int modules_open(struct inode *inode, struct file *file)
415{
416 return seq_open(file, &modules_op);
417}
Arjan van de Ven00977a52007-02-12 00:55:34 -0800418static const struct file_operations proc_modules_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 .open = modules_open,
420 .read = seq_read,
421 .llseek = seq_lseek,
422 .release = seq_release,
423};
424#endif
425
Linus Torvalds158a9622008-01-02 13:04:48 -0800426#ifdef CONFIG_SLABINFO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427static int slabinfo_open(struct inode *inode, struct file *file)
428{
429 return seq_open(file, &slabinfo_op);
430}
Arjan van de Ven00977a52007-02-12 00:55:34 -0800431static const struct file_operations proc_slabinfo_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 .open = slabinfo_open,
433 .read = seq_read,
434 .write = slabinfo_write,
435 .llseek = seq_lseek,
436 .release = seq_release,
437};
Al Viro871751e2006-03-25 03:06:39 -0800438
439#ifdef CONFIG_DEBUG_SLAB_LEAK
Jan Engelhardt03a44822008-02-08 04:21:19 -0800440extern const struct seq_operations slabstats_op;
Al Viro871751e2006-03-25 03:06:39 -0800441static int slabstats_open(struct inode *inode, struct file *file)
442{
443 unsigned long *n = kzalloc(PAGE_SIZE, GFP_KERNEL);
444 int ret = -ENOMEM;
445 if (n) {
446 ret = seq_open(file, &slabstats_op);
447 if (!ret) {
448 struct seq_file *m = file->private_data;
449 *n = PAGE_SIZE / (2 * sizeof(unsigned long));
450 m->private = n;
451 n = NULL;
452 }
453 kfree(n);
454 }
455 return ret;
456}
457
Arjan van de Ven00977a52007-02-12 00:55:34 -0800458static const struct file_operations proc_slabstats_operations = {
Al Viro871751e2006-03-25 03:06:39 -0800459 .open = slabstats_open,
460 .read = seq_read,
461 .llseek = seq_lseek,
Martin Peschke09f08922007-05-08 00:29:26 -0700462 .release = seq_release_private,
Al Viro871751e2006-03-25 03:06:39 -0800463};
464#endif
Matt Mackall10cef602006-01-08 01:01:45 -0800465#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
Christoph Lametera10aa572008-04-28 02:12:40 -0700467#ifdef CONFIG_MMU
468static int vmalloc_open(struct inode *inode, struct file *file)
469{
Eric Dumazeta47a1262008-07-23 21:27:38 -0700470 unsigned int *ptr = NULL;
471 int ret;
472
473 if (NUMA_BUILD)
474 ptr = kmalloc(nr_node_ids * sizeof(unsigned int), GFP_KERNEL);
475 ret = seq_open(file, &vmalloc_op);
476 if (!ret) {
477 struct seq_file *m = file->private_data;
478 m->private = ptr;
479 } else
480 kfree(ptr);
481 return ret;
Christoph Lametera10aa572008-04-28 02:12:40 -0700482}
483
484static const struct file_operations proc_vmalloc_operations = {
485 .open = vmalloc_open,
486 .read = seq_read,
487 .llseek = seq_lseek,
Eric Dumazeta47a1262008-07-23 21:27:38 -0700488 .release = seq_release_private,
Christoph Lametera10aa572008-04-28 02:12:40 -0700489};
490#endif
491
Jan Beulicha2eddfa2008-05-12 15:44:41 +0200492#ifndef arch_irq_stat_cpu
493#define arch_irq_stat_cpu(cpu) 0
494#endif
495#ifndef arch_irq_stat
496#define arch_irq_stat() 0
497#endif
498
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499static int show_stat(struct seq_file *p, void *v)
500{
501 int i;
502 unsigned long jif;
503 cputime64_t user, nice, system, idle, iowait, irq, softirq, steal;
Laurent Vivier5e84cfd2007-10-15 17:00:19 +0200504 cputime64_t guest;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 u64 sum = 0;
Tomas Janousek924b42d2007-07-15 23:39:42 -0700506 struct timespec boottime;
Ravikiran G Thirumalai4004c692007-07-19 01:47:53 -0700507 unsigned int *per_irq_sum;
508
509 per_irq_sum = kzalloc(sizeof(unsigned int)*NR_IRQS, GFP_KERNEL);
510 if (!per_irq_sum)
511 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
513 user = nice = system = idle = iowait =
514 irq = softirq = steal = cputime64_zero;
Laurent Vivier5e84cfd2007-10-15 17:00:19 +0200515 guest = cputime64_zero;
Tomas Janousek924b42d2007-07-15 23:39:42 -0700516 getboottime(&boottime);
517 jif = boottime.tv_sec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -0800519 for_each_possible_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 int j;
521
522 user = cputime64_add(user, kstat_cpu(i).cpustat.user);
523 nice = cputime64_add(nice, kstat_cpu(i).cpustat.nice);
524 system = cputime64_add(system, kstat_cpu(i).cpustat.system);
525 idle = cputime64_add(idle, kstat_cpu(i).cpustat.idle);
526 iowait = cputime64_add(iowait, kstat_cpu(i).cpustat.iowait);
527 irq = cputime64_add(irq, kstat_cpu(i).cpustat.irq);
528 softirq = cputime64_add(softirq, kstat_cpu(i).cpustat.softirq);
529 steal = cputime64_add(steal, kstat_cpu(i).cpustat.steal);
Laurent Vivier5e84cfd2007-10-15 17:00:19 +0200530 guest = cputime64_add(guest, kstat_cpu(i).cpustat.guest);
Ravikiran G Thirumalai4004c692007-07-19 01:47:53 -0700531 for (j = 0; j < NR_IRQS; j++) {
532 unsigned int temp = kstat_cpu(i).irqs[j];
533 sum += temp;
534 per_irq_sum[j] += temp;
535 }
Jan Beulicha2eddfa2008-05-12 15:44:41 +0200536 sum += arch_irq_stat_cpu(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 }
Jan Beulicha2eddfa2008-05-12 15:44:41 +0200538 sum += arch_irq_stat();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Laurent Vivier5e84cfd2007-10-15 17:00:19 +0200540 seq_printf(p, "cpu %llu %llu %llu %llu %llu %llu %llu %llu %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 (unsigned long long)cputime64_to_clock_t(user),
542 (unsigned long long)cputime64_to_clock_t(nice),
543 (unsigned long long)cputime64_to_clock_t(system),
544 (unsigned long long)cputime64_to_clock_t(idle),
545 (unsigned long long)cputime64_to_clock_t(iowait),
546 (unsigned long long)cputime64_to_clock_t(irq),
547 (unsigned long long)cputime64_to_clock_t(softirq),
Laurent Vivier5e84cfd2007-10-15 17:00:19 +0200548 (unsigned long long)cputime64_to_clock_t(steal),
549 (unsigned long long)cputime64_to_clock_t(guest));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 for_each_online_cpu(i) {
551
552 /* Copy values here to work around gcc-2.95.3, gcc-2.96 */
553 user = kstat_cpu(i).cpustat.user;
554 nice = kstat_cpu(i).cpustat.nice;
555 system = kstat_cpu(i).cpustat.system;
556 idle = kstat_cpu(i).cpustat.idle;
557 iowait = kstat_cpu(i).cpustat.iowait;
558 irq = kstat_cpu(i).cpustat.irq;
559 softirq = kstat_cpu(i).cpustat.softirq;
560 steal = kstat_cpu(i).cpustat.steal;
Laurent Vivier5e84cfd2007-10-15 17:00:19 +0200561 guest = kstat_cpu(i).cpustat.guest;
562 seq_printf(p,
563 "cpu%d %llu %llu %llu %llu %llu %llu %llu %llu %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 i,
565 (unsigned long long)cputime64_to_clock_t(user),
566 (unsigned long long)cputime64_to_clock_t(nice),
567 (unsigned long long)cputime64_to_clock_t(system),
568 (unsigned long long)cputime64_to_clock_t(idle),
569 (unsigned long long)cputime64_to_clock_t(iowait),
570 (unsigned long long)cputime64_to_clock_t(irq),
571 (unsigned long long)cputime64_to_clock_t(softirq),
Laurent Vivier5e84cfd2007-10-15 17:00:19 +0200572 (unsigned long long)cputime64_to_clock_t(steal),
573 (unsigned long long)cputime64_to_clock_t(guest));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 }
575 seq_printf(p, "intr %llu", (unsigned long long)sum);
576
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 for (i = 0; i < NR_IRQS; i++)
Ravikiran G Thirumalai4004c692007-07-19 01:47:53 -0700578 seq_printf(p, " %u", per_irq_sum[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580 seq_printf(p,
581 "\nctxt %llu\n"
582 "btime %lu\n"
583 "processes %lu\n"
584 "procs_running %lu\n"
585 "procs_blocked %lu\n",
586 nr_context_switches(),
587 (unsigned long)jif,
588 total_forks,
589 nr_running(),
590 nr_iowait());
591
Ravikiran G Thirumalai4004c692007-07-19 01:47:53 -0700592 kfree(per_irq_sum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 return 0;
594}
595
596static int stat_open(struct inode *inode, struct file *file)
597{
598 unsigned size = 4096 * (1 + num_possible_cpus() / 32);
599 char *buf;
600 struct seq_file *m;
601 int res;
602
603 /* don't ask for more than the kmalloc() max size, currently 128 KB */
604 if (size > 128 * 1024)
605 size = 128 * 1024;
606 buf = kmalloc(size, GFP_KERNEL);
607 if (!buf)
608 return -ENOMEM;
609
610 res = single_open(file, show_stat, NULL);
611 if (!res) {
612 m = file->private_data;
613 m->buf = buf;
614 m->size = size;
615 } else
616 kfree(buf);
617 return res;
618}
Arjan van de Ven00977a52007-02-12 00:55:34 -0800619static const struct file_operations proc_stat_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 .open = stat_open,
621 .read = seq_read,
622 .llseek = seq_lseek,
623 .release = single_release,
624};
625
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626/*
627 * /proc/interrupts
628 */
629static void *int_seq_start(struct seq_file *f, loff_t *pos)
630{
631 return (*pos <= NR_IRQS) ? pos : NULL;
632}
633
634static void *int_seq_next(struct seq_file *f, void *v, loff_t *pos)
635{
636 (*pos)++;
637 if (*pos > NR_IRQS)
638 return NULL;
639 return pos;
640}
641
642static void int_seq_stop(struct seq_file *f, void *v)
643{
644 /* Nothing to do */
645}
646
647
Jan Engelhardt03a44822008-02-08 04:21:19 -0800648static const struct seq_operations int_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 .start = int_seq_start,
650 .next = int_seq_next,
651 .stop = int_seq_stop,
652 .show = show_interrupts
653};
654
655static int interrupts_open(struct inode *inode, struct file *filp)
656{
657 return seq_open(filp, &int_seq_ops);
658}
659
Arjan van de Ven00977a52007-02-12 00:55:34 -0800660static const struct file_operations proc_interrupts_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 .open = interrupts_open,
662 .read = seq_read,
663 .llseek = seq_lseek,
664 .release = seq_release,
665};
666
667static int filesystems_read_proc(char *page, char **start, off_t off,
668 int count, int *eof, void *data)
669{
670 int len = get_filesystem_list(page);
671 return proc_calc_metrics(page, start, off, count, eof, len);
672}
673
674static int cmdline_read_proc(char *page, char **start, off_t off,
675 int count, int *eof, void *data)
676{
677 int len;
678
679 len = sprintf(page, "%s\n", saved_command_line);
680 return proc_calc_metrics(page, start, off, count, eof, len);
681}
682
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -0700683static int locks_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -0700685 return seq_open(filp, &locks_seq_operations);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686}
687
Pavel Emelyanov7f8ada92007-10-01 14:41:15 -0700688static const struct file_operations proc_locks_operations = {
689 .open = locks_open,
690 .read = seq_read,
691 .llseek = seq_lseek,
692 .release = seq_release,
693};
694
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695static int execdomains_read_proc(char *page, char **start, off_t off,
696 int count, int *eof, void *data)
697{
698 int len = get_exec_domain_list(page);
699 return proc_calc_metrics(page, start, off, count, eof, len);
700}
701
702#ifdef CONFIG_MAGIC_SYSRQ
703/*
704 * writing 'C' to /proc/sysrq-trigger is like sysrq-C
705 */
706static ssize_t write_sysrq_trigger(struct file *file, const char __user *buf,
707 size_t count, loff_t *ppos)
708{
709 if (count) {
710 char c;
711
712 if (get_user(c, buf))
713 return -EFAULT;
David Howells7d12e782006-10-05 14:55:46 +0100714 __handle_sysrq(c, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 }
716 return count;
717}
718
Arjan van de Ven00977a52007-02-12 00:55:34 -0800719static const struct file_operations proc_sysrq_trigger_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 .write = write_sysrq_trigger,
721};
722#endif
723
Matt Mackall1e883282008-02-04 22:29:07 -0800724#ifdef CONFIG_PROC_PAGE_MONITOR
Matt Mackall161f47b2008-02-04 22:29:05 -0800725#define KPMSIZE sizeof(u64)
726#define KPMMASK (KPMSIZE - 1)
727/* /proc/kpagecount - an array exposing page counts
728 *
729 * Each entry is a u64 representing the corresponding
730 * physical page count.
731 */
732static ssize_t kpagecount_read(struct file *file, char __user *buf,
733 size_t count, loff_t *ppos)
734{
735 u64 __user *out = (u64 __user *)buf;
736 struct page *ppage;
737 unsigned long src = *ppos;
738 unsigned long pfn;
739 ssize_t ret = 0;
740 u64 pcount;
741
742 pfn = src / KPMSIZE;
743 count = min_t(size_t, count, (max_pfn * KPMSIZE) - src);
744 if (src & KPMMASK || count & KPMMASK)
Thomas Tuttle4710d1a2008-06-05 22:46:58 -0700745 return -EINVAL;
Matt Mackall161f47b2008-02-04 22:29:05 -0800746
747 while (count > 0) {
Matt Mackall304daa82008-02-04 22:29:06 -0800748 ppage = NULL;
749 if (pfn_valid(pfn))
750 ppage = pfn_to_page(pfn);
751 pfn++;
Matt Mackall161f47b2008-02-04 22:29:05 -0800752 if (!ppage)
753 pcount = 0;
754 else
Thomas Tuttlebbcdac02008-06-05 22:46:58 -0700755 pcount = page_mapcount(ppage);
Matt Mackall161f47b2008-02-04 22:29:05 -0800756
757 if (put_user(pcount, out++)) {
758 ret = -EFAULT;
759 break;
760 }
761
762 count -= KPMSIZE;
763 }
764
765 *ppos += (char __user *)out - buf;
766 if (!ret)
767 ret = (char __user *)out - buf;
768 return ret;
769}
770
771static struct file_operations proc_kpagecount_operations = {
772 .llseek = mem_lseek,
773 .read = kpagecount_read,
774};
775
Matt Mackall304daa82008-02-04 22:29:06 -0800776/* /proc/kpageflags - an array exposing page flags
777 *
778 * Each entry is a u64 representing the corresponding
779 * physical page flags.
780 */
781
782/* These macros are used to decouple internal flags from exported ones */
783
784#define KPF_LOCKED 0
785#define KPF_ERROR 1
786#define KPF_REFERENCED 2
787#define KPF_UPTODATE 3
788#define KPF_DIRTY 4
789#define KPF_LRU 5
790#define KPF_ACTIVE 6
791#define KPF_SLAB 7
792#define KPF_WRITEBACK 8
793#define KPF_RECLAIM 9
794#define KPF_BUDDY 10
795
796#define kpf_copy_bit(flags, srcpos, dstpos) (((flags >> srcpos) & 1) << dstpos)
797
798static ssize_t kpageflags_read(struct file *file, char __user *buf,
799 size_t count, loff_t *ppos)
800{
801 u64 __user *out = (u64 __user *)buf;
802 struct page *ppage;
803 unsigned long src = *ppos;
804 unsigned long pfn;
805 ssize_t ret = 0;
806 u64 kflags, uflags;
807
808 pfn = src / KPMSIZE;
809 count = min_t(unsigned long, count, (max_pfn * KPMSIZE) - src);
810 if (src & KPMMASK || count & KPMMASK)
Thomas Tuttle4710d1a2008-06-05 22:46:58 -0700811 return -EINVAL;
Matt Mackall304daa82008-02-04 22:29:06 -0800812
813 while (count > 0) {
814 ppage = NULL;
815 if (pfn_valid(pfn))
816 ppage = pfn_to_page(pfn);
817 pfn++;
818 if (!ppage)
819 kflags = 0;
820 else
821 kflags = ppage->flags;
822
823 uflags = kpf_copy_bit(KPF_LOCKED, PG_locked, kflags) |
824 kpf_copy_bit(kflags, KPF_ERROR, PG_error) |
825 kpf_copy_bit(kflags, KPF_REFERENCED, PG_referenced) |
826 kpf_copy_bit(kflags, KPF_UPTODATE, PG_uptodate) |
827 kpf_copy_bit(kflags, KPF_DIRTY, PG_dirty) |
828 kpf_copy_bit(kflags, KPF_LRU, PG_lru) |
829 kpf_copy_bit(kflags, KPF_ACTIVE, PG_active) |
830 kpf_copy_bit(kflags, KPF_SLAB, PG_slab) |
831 kpf_copy_bit(kflags, KPF_WRITEBACK, PG_writeback) |
832 kpf_copy_bit(kflags, KPF_RECLAIM, PG_reclaim) |
833 kpf_copy_bit(kflags, KPF_BUDDY, PG_buddy);
834
835 if (put_user(uflags, out++)) {
836 ret = -EFAULT;
837 break;
838 }
839
840 count -= KPMSIZE;
841 }
842
843 *ppos += (char __user *)out - buf;
844 if (!ret)
845 ret = (char __user *)out - buf;
846 return ret;
847}
848
849static struct file_operations proc_kpageflags_operations = {
850 .llseek = mem_lseek,
851 .read = kpageflags_read,
852};
Matt Mackall1e883282008-02-04 22:29:07 -0800853#endif /* CONFIG_PROC_PAGE_MONITOR */
Matt Mackall304daa82008-02-04 22:29:06 -0800854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855struct proc_dir_entry *proc_root_kcore;
856
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857void __init proc_misc_init(void)
858{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 static struct {
860 char *name;
861 int (*read_proc)(char*,char**,off_t,int,int*,void*);
862 } *p, simple_ones[] = {
863 {"loadavg", loadavg_read_proc},
864 {"uptime", uptime_read_proc},
865 {"meminfo", meminfo_read_proc},
866 {"version", version_read_proc},
867#ifdef CONFIG_PROC_HARDWARE
868 {"hardware", hardware_read_proc},
869#endif
870#ifdef CONFIG_STRAM_PROC
871 {"stram", stram_read_proc},
872#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 {"filesystems", filesystems_read_proc},
874 {"cmdline", cmdline_read_proc},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 {"execdomains", execdomains_read_proc},
876 {NULL,}
877 };
878 for (p = simple_ones; p->name; p++)
879 create_proc_read_entry(p->name, 0, NULL, p->read_proc, NULL);
880
881 proc_symlink("mounts", NULL, "self/mounts");
882
883 /* And now for trickier ones */
Mike Galbraithc36264d2006-12-06 20:37:42 -0800884#ifdef CONFIG_PRINTK
Alexey Dobriyanc74c1202008-04-29 01:01:44 -0700885 proc_create("kmsg", S_IRUSR, NULL, &proc_kmsg_operations);
Mike Galbraithc36264d2006-12-06 20:37:42 -0800886#endif
Alexey Dobriyan0d5c9f52008-04-29 01:01:37 -0700887 proc_create("locks", 0, NULL, &proc_locks_operations);
888 proc_create("devices", 0, NULL, &proc_devinfo_operations);
889 proc_create("cpuinfo", 0, NULL, &proc_cpuinfo_operations);
David Howells93614012006-09-30 20:45:40 +0200890#ifdef CONFIG_BLOCK
Alexey Dobriyan0d5c9f52008-04-29 01:01:37 -0700891 proc_create("partitions", 0, NULL, &proc_partitions_operations);
David Howells93614012006-09-30 20:45:40 +0200892#endif
Alexey Dobriyan0d5c9f52008-04-29 01:01:37 -0700893 proc_create("stat", 0, NULL, &proc_stat_operations);
894 proc_create("interrupts", 0, NULL, &proc_interrupts_operations);
Linus Torvalds158a9622008-01-02 13:04:48 -0800895#ifdef CONFIG_SLABINFO
Alexey Dobriyan0d5c9f52008-04-29 01:01:37 -0700896 proc_create("slabinfo",S_IWUSR|S_IRUGO,NULL,&proc_slabinfo_operations);
Al Viro871751e2006-03-25 03:06:39 -0800897#ifdef CONFIG_DEBUG_SLAB_LEAK
Alexey Dobriyan0d5c9f52008-04-29 01:01:37 -0700898 proc_create("slab_allocators", 0, NULL, &proc_slabstats_operations);
Al Viro871751e2006-03-25 03:06:39 -0800899#endif
Matt Mackall10cef602006-01-08 01:01:45 -0800900#endif
Christoph Lametera10aa572008-04-28 02:12:40 -0700901#ifdef CONFIG_MMU
902 proc_create("vmallocinfo", S_IRUSR, NULL, &proc_vmalloc_operations);
903#endif
Alexey Dobriyan0d5c9f52008-04-29 01:01:37 -0700904 proc_create("buddyinfo", S_IRUGO, NULL, &fragmentation_file_operations);
905 proc_create("pagetypeinfo", S_IRUGO, NULL, &pagetypeinfo_file_ops);
906 proc_create("vmstat", S_IRUGO, NULL, &proc_vmstat_file_operations);
907 proc_create("zoneinfo", S_IRUGO, NULL, &proc_zoneinfo_file_operations);
David Howells93614012006-09-30 20:45:40 +0200908#ifdef CONFIG_BLOCK
Alexey Dobriyan0d5c9f52008-04-29 01:01:37 -0700909 proc_create("diskstats", 0, NULL, &proc_diskstats_operations);
David Howells93614012006-09-30 20:45:40 +0200910#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911#ifdef CONFIG_MODULES
Alexey Dobriyan0d5c9f52008-04-29 01:01:37 -0700912 proc_create("modules", 0, NULL, &proc_modules_operations);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913#endif
914#ifdef CONFIG_SCHEDSTATS
Alexey Dobriyan0d5c9f52008-04-29 01:01:37 -0700915 proc_create("schedstat", 0, NULL, &proc_schedstat_operations);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916#endif
917#ifdef CONFIG_PROC_KCORE
Alexey Dobriyan0d5c9f52008-04-29 01:01:37 -0700918 proc_root_kcore = proc_create("kcore", S_IRUSR, NULL, &proc_kcore_operations);
919 if (proc_root_kcore)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 proc_root_kcore->size =
921 (size_t)high_memory - PAGE_OFFSET + PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922#endif
Matt Mackall1e883282008-02-04 22:29:07 -0800923#ifdef CONFIG_PROC_PAGE_MONITOR
Alexey Dobriyan0d5c9f52008-04-29 01:01:37 -0700924 proc_create("kpagecount", S_IRUSR, NULL, &proc_kpagecount_operations);
925 proc_create("kpageflags", S_IRUSR, NULL, &proc_kpageflags_operations);
Matt Mackall1e883282008-02-04 22:29:07 -0800926#endif
Vivek Goyal666bfdd2005-06-25 14:58:21 -0700927#ifdef CONFIG_PROC_VMCORE
Alexey Dobriyan0d5c9f52008-04-29 01:01:37 -0700928 proc_vmcore = proc_create("vmcore", S_IRUSR, NULL, &proc_vmcore_operations);
Vivek Goyal666bfdd2005-06-25 14:58:21 -0700929#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930#ifdef CONFIG_MAGIC_SYSRQ
Alexey Dobriyan0d5c9f52008-04-29 01:01:37 -0700931 proc_create("sysrq-trigger", S_IWUSR, NULL, &proc_sysrq_trigger_operations);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933}