8f3a6f085c5f0ffda0d1c4b220292d8ec757d2d0
[safe/jmp/linux-2.6] / 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 #ifdef CONFIG_BLOCK
61 static int diskstats_open(struct inode *inode, struct file *file)
62 {
63         return seq_open(file, &diskstats_op);
64 }
65 static const struct file_operations proc_diskstats_operations = {
66         .open           = diskstats_open,
67         .read           = seq_read,
68         .llseek         = seq_lseek,
69         .release        = seq_release,
70 };
71 #endif
72
73 #ifdef CONFIG_MODULES
74 extern const struct seq_operations modules_op;
75 static int modules_open(struct inode *inode, struct file *file)
76 {
77         return seq_open(file, &modules_op);
78 }
79 static const struct file_operations proc_modules_operations = {
80         .open           = modules_open,
81         .read           = seq_read,
82         .llseek         = seq_lseek,
83         .release        = seq_release,
84 };
85 #endif
86
87 #ifdef CONFIG_PROC_PAGE_MONITOR
88 #define KPMSIZE sizeof(u64)
89 #define KPMMASK (KPMSIZE - 1)
90 /* /proc/kpagecount - an array exposing page counts
91  *
92  * Each entry is a u64 representing the corresponding
93  * physical page count.
94  */
95 static ssize_t kpagecount_read(struct file *file, char __user *buf,
96                              size_t count, loff_t *ppos)
97 {
98         u64 __user *out = (u64 __user *)buf;
99         struct page *ppage;
100         unsigned long src = *ppos;
101         unsigned long pfn;
102         ssize_t ret = 0;
103         u64 pcount;
104
105         pfn = src / KPMSIZE;
106         count = min_t(size_t, count, (max_pfn * KPMSIZE) - src);
107         if (src & KPMMASK || count & KPMMASK)
108                 return -EINVAL;
109
110         while (count > 0) {
111                 ppage = NULL;
112                 if (pfn_valid(pfn))
113                         ppage = pfn_to_page(pfn);
114                 pfn++;
115                 if (!ppage)
116                         pcount = 0;
117                 else
118                         pcount = page_mapcount(ppage);
119
120                 if (put_user(pcount, out++)) {
121                         ret = -EFAULT;
122                         break;
123                 }
124
125                 count -= KPMSIZE;
126         }
127
128         *ppos += (char __user *)out - buf;
129         if (!ret)
130                 ret = (char __user *)out - buf;
131         return ret;
132 }
133
134 static struct file_operations proc_kpagecount_operations = {
135         .llseek = mem_lseek,
136         .read = kpagecount_read,
137 };
138
139 /* /proc/kpageflags - an array exposing page flags
140  *
141  * Each entry is a u64 representing the corresponding
142  * physical page flags.
143  */
144
145 /* These macros are used to decouple internal flags from exported ones */
146
147 #define KPF_LOCKED     0
148 #define KPF_ERROR      1
149 #define KPF_REFERENCED 2
150 #define KPF_UPTODATE   3
151 #define KPF_DIRTY      4
152 #define KPF_LRU        5
153 #define KPF_ACTIVE     6
154 #define KPF_SLAB       7
155 #define KPF_WRITEBACK  8
156 #define KPF_RECLAIM    9
157 #define KPF_BUDDY     10
158
159 #define kpf_copy_bit(flags, srcpos, dstpos) (((flags >> srcpos) & 1) << dstpos)
160
161 static ssize_t kpageflags_read(struct file *file, char __user *buf,
162                              size_t count, loff_t *ppos)
163 {
164         u64 __user *out = (u64 __user *)buf;
165         struct page *ppage;
166         unsigned long src = *ppos;
167         unsigned long pfn;
168         ssize_t ret = 0;
169         u64 kflags, uflags;
170
171         pfn = src / KPMSIZE;
172         count = min_t(unsigned long, count, (max_pfn * KPMSIZE) - src);
173         if (src & KPMMASK || count & KPMMASK)
174                 return -EINVAL;
175
176         while (count > 0) {
177                 ppage = NULL;
178                 if (pfn_valid(pfn))
179                         ppage = pfn_to_page(pfn);
180                 pfn++;
181                 if (!ppage)
182                         kflags = 0;
183                 else
184                         kflags = ppage->flags;
185
186                 uflags = kpf_copy_bit(KPF_LOCKED, PG_locked, kflags) |
187                         kpf_copy_bit(kflags, KPF_ERROR, PG_error) |
188                         kpf_copy_bit(kflags, KPF_REFERENCED, PG_referenced) |
189                         kpf_copy_bit(kflags, KPF_UPTODATE, PG_uptodate) |
190                         kpf_copy_bit(kflags, KPF_DIRTY, PG_dirty) |
191                         kpf_copy_bit(kflags, KPF_LRU, PG_lru) |
192                         kpf_copy_bit(kflags, KPF_ACTIVE, PG_active) |
193                         kpf_copy_bit(kflags, KPF_SLAB, PG_slab) |
194                         kpf_copy_bit(kflags, KPF_WRITEBACK, PG_writeback) |
195                         kpf_copy_bit(kflags, KPF_RECLAIM, PG_reclaim) |
196                         kpf_copy_bit(kflags, KPF_BUDDY, PG_buddy);
197
198                 if (put_user(uflags, out++)) {
199                         ret = -EFAULT;
200                         break;
201                 }
202
203                 count -= KPMSIZE;
204         }
205
206         *ppos += (char __user *)out - buf;
207         if (!ret)
208                 ret = (char __user *)out - buf;
209         return ret;
210 }
211
212 static struct file_operations proc_kpageflags_operations = {
213         .llseek = mem_lseek,
214         .read = kpageflags_read,
215 };
216 #endif /* CONFIG_PROC_PAGE_MONITOR */
217
218 struct proc_dir_entry *proc_root_kcore;
219
220 void __init proc_misc_init(void)
221 {
222         proc_symlink("mounts", NULL, "self/mounts");
223
224         /* And now for trickier ones */
225 #ifdef CONFIG_BLOCK
226         proc_create("diskstats", 0, NULL, &proc_diskstats_operations);
227 #endif
228 #ifdef CONFIG_MODULES
229         proc_create("modules", 0, NULL, &proc_modules_operations);
230 #endif
231 #ifdef CONFIG_SCHEDSTATS
232         proc_create("schedstat", 0, NULL, &proc_schedstat_operations);
233 #endif
234 #ifdef CONFIG_PROC_KCORE
235         proc_root_kcore = proc_create("kcore", S_IRUSR, NULL, &proc_kcore_operations);
236         if (proc_root_kcore)
237                 proc_root_kcore->size =
238                                 (size_t)high_memory - PAGE_OFFSET + PAGE_SIZE;
239 #endif
240 #ifdef CONFIG_PROC_PAGE_MONITOR
241         proc_create("kpagecount", S_IRUSR, NULL, &proc_kpagecount_operations);
242         proc_create("kpageflags", S_IRUSR, NULL, &proc_kpageflags_operations);
243 #endif
244 #ifdef CONFIG_PROC_VMCORE
245         proc_vmcore = proc_create("vmcore", S_IRUSR, NULL, &proc_vmcore_operations);
246 #endif
247 }