]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - fs/proc/proc_misc.c
fd41a032456b306edca4f5ad45ca598ccc43c12d
[linux-2.6-omap-h63xx.git] / fs / proc / proc_misc.c
1 /*
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>
23 #include <linux/fs.h>
24 #include <linux/tty.h>
25 #include <linux/string.h>
26 #include <linux/mman.h>
27 #include <linux/quicklist.h>
28 #include <linux/proc_fs.h>
29 #include <linux/ioport.h>
30 #include <linux/mm.h>
31 #include <linux/mmzone.h>
32 #include <linux/pagemap.h>
33 #include <linux/irq.h>
34 #include <linux/interrupt.h>
35 #include <linux/swap.h>
36 #include <linux/slab.h>
37 #include <linux/genhd.h>
38 #include <linux/smp.h>
39 #include <linux/signal.h>
40 #include <linux/module.h>
41 #include <linux/init.h>
42 #include <linux/seq_file.h>
43 #include <linux/times.h>
44 #include <linux/profile.h>
45 #include <linux/utsname.h>
46 #include <linux/blkdev.h>
47 #include <linux/hugetlb.h>
48 #include <linux/jiffies.h>
49 #include <linux/vmalloc.h>
50 #include <linux/crash_dump.h>
51 #include <linux/pid_namespace.h>
52 #include <linux/bootmem.h>
53 #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 static int fragmentation_open(struct inode *inode, struct file *file)
61 {
62         (void)inode;
63         return seq_open(file, &fragmentation_op);
64 }
65
66 static const struct file_operations fragmentation_file_operations = {
67         .open           = fragmentation_open,
68         .read           = seq_read,
69         .llseek         = seq_lseek,
70         .release        = seq_release,
71 };
72
73 static int pagetypeinfo_open(struct inode *inode, struct file *file)
74 {
75         return seq_open(file, &pagetypeinfo_op);
76 }
77
78 static const struct file_operations pagetypeinfo_file_ops = {
79         .open           = pagetypeinfo_open,
80         .read           = seq_read,
81         .llseek         = seq_lseek,
82         .release        = seq_release,
83 };
84
85 static int zoneinfo_open(struct inode *inode, struct file *file)
86 {
87         return seq_open(file, &zoneinfo_op);
88 }
89
90 static const struct file_operations proc_zoneinfo_file_operations = {
91         .open           = zoneinfo_open,
92         .read           = seq_read,
93         .llseek         = seq_lseek,
94         .release        = seq_release,
95 };
96
97 static int vmstat_open(struct inode *inode, struct file *file)
98 {
99         return seq_open(file, &vmstat_op);
100 }
101 static const struct file_operations proc_vmstat_file_operations = {
102         .open           = vmstat_open,
103         .read           = seq_read,
104         .llseek         = seq_lseek,
105         .release        = seq_release,
106 };
107
108 #ifdef CONFIG_BLOCK
109 static int diskstats_open(struct inode *inode, struct file *file)
110 {
111         return seq_open(file, &diskstats_op);
112 }
113 static const struct file_operations proc_diskstats_operations = {
114         .open           = diskstats_open,
115         .read           = seq_read,
116         .llseek         = seq_lseek,
117         .release        = seq_release,
118 };
119 #endif
120
121 #ifdef CONFIG_MODULES
122 extern const struct seq_operations modules_op;
123 static int modules_open(struct inode *inode, struct file *file)
124 {
125         return seq_open(file, &modules_op);
126 }
127 static const struct file_operations proc_modules_operations = {
128         .open           = modules_open,
129         .read           = seq_read,
130         .llseek         = seq_lseek,
131         .release        = seq_release,
132 };
133 #endif
134
135 #ifdef CONFIG_PROC_PAGE_MONITOR
136 #define KPMSIZE sizeof(u64)
137 #define KPMMASK (KPMSIZE - 1)
138 /* /proc/kpagecount - an array exposing page counts
139  *
140  * Each entry is a u64 representing the corresponding
141  * physical page count.
142  */
143 static ssize_t kpagecount_read(struct file *file, char __user *buf,
144                              size_t count, loff_t *ppos)
145 {
146         u64 __user *out = (u64 __user *)buf;
147         struct page *ppage;
148         unsigned long src = *ppos;
149         unsigned long pfn;
150         ssize_t ret = 0;
151         u64 pcount;
152
153         pfn = src / KPMSIZE;
154         count = min_t(size_t, count, (max_pfn * KPMSIZE) - src);
155         if (src & KPMMASK || count & KPMMASK)
156                 return -EINVAL;
157
158         while (count > 0) {
159                 ppage = NULL;
160                 if (pfn_valid(pfn))
161                         ppage = pfn_to_page(pfn);
162                 pfn++;
163                 if (!ppage)
164                         pcount = 0;
165                 else
166                         pcount = page_mapcount(ppage);
167
168                 if (put_user(pcount, out++)) {
169                         ret = -EFAULT;
170                         break;
171                 }
172
173                 count -= KPMSIZE;
174         }
175
176         *ppos += (char __user *)out - buf;
177         if (!ret)
178                 ret = (char __user *)out - buf;
179         return ret;
180 }
181
182 static struct file_operations proc_kpagecount_operations = {
183         .llseek = mem_lseek,
184         .read = kpagecount_read,
185 };
186
187 /* /proc/kpageflags - an array exposing page flags
188  *
189  * Each entry is a u64 representing the corresponding
190  * physical page flags.
191  */
192
193 /* These macros are used to decouple internal flags from exported ones */
194
195 #define KPF_LOCKED     0
196 #define KPF_ERROR      1
197 #define KPF_REFERENCED 2
198 #define KPF_UPTODATE   3
199 #define KPF_DIRTY      4
200 #define KPF_LRU        5
201 #define KPF_ACTIVE     6
202 #define KPF_SLAB       7
203 #define KPF_WRITEBACK  8
204 #define KPF_RECLAIM    9
205 #define KPF_BUDDY     10
206
207 #define kpf_copy_bit(flags, srcpos, dstpos) (((flags >> srcpos) & 1) << dstpos)
208
209 static ssize_t kpageflags_read(struct file *file, char __user *buf,
210                              size_t count, loff_t *ppos)
211 {
212         u64 __user *out = (u64 __user *)buf;
213         struct page *ppage;
214         unsigned long src = *ppos;
215         unsigned long pfn;
216         ssize_t ret = 0;
217         u64 kflags, uflags;
218
219         pfn = src / KPMSIZE;
220         count = min_t(unsigned long, count, (max_pfn * KPMSIZE) - src);
221         if (src & KPMMASK || count & KPMMASK)
222                 return -EINVAL;
223
224         while (count > 0) {
225                 ppage = NULL;
226                 if (pfn_valid(pfn))
227                         ppage = pfn_to_page(pfn);
228                 pfn++;
229                 if (!ppage)
230                         kflags = 0;
231                 else
232                         kflags = ppage->flags;
233
234                 uflags = kpf_copy_bit(KPF_LOCKED, PG_locked, kflags) |
235                         kpf_copy_bit(kflags, KPF_ERROR, PG_error) |
236                         kpf_copy_bit(kflags, KPF_REFERENCED, PG_referenced) |
237                         kpf_copy_bit(kflags, KPF_UPTODATE, PG_uptodate) |
238                         kpf_copy_bit(kflags, KPF_DIRTY, PG_dirty) |
239                         kpf_copy_bit(kflags, KPF_LRU, PG_lru) |
240                         kpf_copy_bit(kflags, KPF_ACTIVE, PG_active) |
241                         kpf_copy_bit(kflags, KPF_SLAB, PG_slab) |
242                         kpf_copy_bit(kflags, KPF_WRITEBACK, PG_writeback) |
243                         kpf_copy_bit(kflags, KPF_RECLAIM, PG_reclaim) |
244                         kpf_copy_bit(kflags, KPF_BUDDY, PG_buddy);
245
246                 if (put_user(uflags, out++)) {
247                         ret = -EFAULT;
248                         break;
249                 }
250
251                 count -= KPMSIZE;
252         }
253
254         *ppos += (char __user *)out - buf;
255         if (!ret)
256                 ret = (char __user *)out - buf;
257         return ret;
258 }
259
260 static struct file_operations proc_kpageflags_operations = {
261         .llseek = mem_lseek,
262         .read = kpageflags_read,
263 };
264 #endif /* CONFIG_PROC_PAGE_MONITOR */
265
266 struct proc_dir_entry *proc_root_kcore;
267
268 void __init proc_misc_init(void)
269 {
270         proc_symlink("mounts", NULL, "self/mounts");
271
272         /* And now for trickier ones */
273         proc_create("buddyinfo", S_IRUGO, NULL, &fragmentation_file_operations);
274         proc_create("pagetypeinfo", S_IRUGO, NULL, &pagetypeinfo_file_ops);
275         proc_create("vmstat", S_IRUGO, NULL, &proc_vmstat_file_operations);
276         proc_create("zoneinfo", S_IRUGO, NULL, &proc_zoneinfo_file_operations);
277 #ifdef CONFIG_BLOCK
278         proc_create("diskstats", 0, NULL, &proc_diskstats_operations);
279 #endif
280 #ifdef CONFIG_MODULES
281         proc_create("modules", 0, NULL, &proc_modules_operations);
282 #endif
283 #ifdef CONFIG_SCHEDSTATS
284         proc_create("schedstat", 0, NULL, &proc_schedstat_operations);
285 #endif
286 #ifdef CONFIG_PROC_KCORE
287         proc_root_kcore = proc_create("kcore", S_IRUSR, NULL, &proc_kcore_operations);
288         if (proc_root_kcore)
289                 proc_root_kcore->size =
290                                 (size_t)high_memory - PAGE_OFFSET + PAGE_SIZE;
291 #endif
292 #ifdef CONFIG_PROC_PAGE_MONITOR
293         proc_create("kpagecount", S_IRUSR, NULL, &proc_kpagecount_operations);
294         proc_create("kpageflags", S_IRUSR, NULL, &proc_kpageflags_operations);
295 #endif
296 #ifdef CONFIG_PROC_VMCORE
297         proc_vmcore = proc_create("vmcore", S_IRUSR, NULL, &proc_vmcore_operations);
298 #endif
299 }