blob: 8c68bbe2b61e0faf055e7062381c3ef572475ff5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * proc/fs/generic.c --- generic routines for the proc-fs
3 *
4 * This file contains generic proc-fs routines for handling
5 * directories and files.
6 *
7 * Copyright (C) 1991, 1992 Linus Torvalds.
8 * Copyright (C) 1997 Theodore Ts'o
9 */
10
11#include <linux/errno.h>
12#include <linux/time.h>
13#include <linux/proc_fs.h>
14#include <linux/stat.h>
15#include <linux/module.h>
16#include <linux/mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/init.h>
18#include <linux/idr.h>
19#include <linux/namei.h>
20#include <linux/bitops.h>
Steven Rostedt64a07bd2006-03-26 01:36:55 -080021#include <linux/spinlock.h>
Alexey Dobriyan786d7e12007-07-15 23:39:00 -070022#include <linux/completion.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/uaccess.h>
24
Adrian Bunkfee781e2006-01-08 01:04:16 -080025#include "internal.h"
26
Steven Rostedt64a07bd2006-03-26 01:36:55 -080027DEFINE_SPINLOCK(proc_subdir_lock);
28
Eric W. Biederman77b14db2007-02-14 00:34:12 -080029static int proc_match(int len, const char *name, struct proc_dir_entry *de)
Linus Torvalds1da177e2005-04-16 15:20:36 -070030{
31 if (de->namelen != len)
32 return 0;
33 return !memcmp(name, de->name, len);
34}
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036/* buffer size is one page but our output routines use some slack for overruns */
37#define PROC_BLOCK_SIZE (PAGE_SIZE - 1024)
38
39static ssize_t
40proc_file_read(struct file *file, char __user *buf, size_t nbytes,
41 loff_t *ppos)
42{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -080043 struct inode * inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 char *page;
45 ssize_t retval=0;
46 int eof=0;
47 ssize_t n, count;
48 char *start;
49 struct proc_dir_entry * dp;
Linus Torvalds8b90db02005-12-30 08:39:10 -080050 unsigned long long pos;
51
52 /*
53 * Gaah, please just use "seq_file" instead. The legacy /proc
54 * interfaces cut loff_t down to off_t for reads, and ignore
55 * the offset entirely for writes..
56 */
57 pos = *ppos;
58 if (pos > MAX_NON_LFS)
59 return 0;
60 if (nbytes > MAX_NON_LFS - pos)
61 nbytes = MAX_NON_LFS - pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63 dp = PDE(inode);
Mel Gormane12ba742007-10-16 01:25:52 -070064 if (!(page = (char*) __get_free_page(GFP_TEMPORARY)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 return -ENOMEM;
66
67 while ((nbytes > 0) && !eof) {
68 count = min_t(size_t, PROC_BLOCK_SIZE, nbytes);
69
70 start = NULL;
Alexey Dobriyan8731f142008-04-29 01:01:58 -070071 if (dp->read_proc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 /*
73 * How to be a proc read function
74 * ------------------------------
75 * Prototype:
76 * int f(char *buffer, char **start, off_t offset,
77 * int count, int *peof, void *dat)
78 *
79 * Assume that the buffer is "count" bytes in size.
80 *
81 * If you know you have supplied all the data you
82 * have, set *peof.
83 *
84 * You have three ways to return data:
85 * 0) Leave *start = NULL. (This is the default.)
86 * Put the data of the requested offset at that
87 * offset within the buffer. Return the number (n)
88 * of bytes there are from the beginning of the
89 * buffer up to the last byte of data. If the
90 * number of supplied bytes (= n - offset) is
91 * greater than zero and you didn't signal eof
92 * and the reader is prepared to take more data
93 * you will be called again with the requested
94 * offset advanced by the number of bytes
95 * absorbed. This interface is useful for files
96 * no larger than the buffer.
97 * 1) Set *start = an unsigned long value less than
98 * the buffer address but greater than zero.
99 * Put the data of the requested offset at the
100 * beginning of the buffer. Return the number of
101 * bytes of data placed there. If this number is
102 * greater than zero and you didn't signal eof
103 * and the reader is prepared to take more data
104 * you will be called again with the requested
105 * offset advanced by *start. This interface is
106 * useful when you have a large file consisting
107 * of a series of blocks which you want to count
108 * and return as wholes.
109 * (Hack by Paul.Russell@rustcorp.com.au)
110 * 2) Set *start = an address within the buffer.
111 * Put the data of the requested offset at *start.
112 * Return the number of bytes of data placed there.
113 * If this number is greater than zero and you
114 * didn't signal eof and the reader is prepared to
115 * take more data you will be called again with the
116 * requested offset advanced by the number of bytes
117 * absorbed.
118 */
119 n = dp->read_proc(page, &start, *ppos,
120 count, &eof, dp->data);
121 } else
122 break;
123
124 if (n == 0) /* end of file */
125 break;
126 if (n < 0) { /* error */
127 if (retval == 0)
128 retval = n;
129 break;
130 }
131
132 if (start == NULL) {
133 if (n > PAGE_SIZE) {
134 printk(KERN_ERR
135 "proc_file_read: Apparent buffer overflow!\n");
136 n = PAGE_SIZE;
137 }
138 n -= *ppos;
139 if (n <= 0)
140 break;
141 if (n > count)
142 n = count;
143 start = page + *ppos;
144 } else if (start < page) {
145 if (n > PAGE_SIZE) {
146 printk(KERN_ERR
147 "proc_file_read: Apparent buffer overflow!\n");
148 n = PAGE_SIZE;
149 }
150 if (n > count) {
151 /*
152 * Don't reduce n because doing so might
153 * cut off part of a data block.
154 */
155 printk(KERN_WARNING
156 "proc_file_read: Read count exceeded\n");
157 }
158 } else /* start >= page */ {
159 unsigned long startoff = (unsigned long)(start - page);
160 if (n > (PAGE_SIZE - startoff)) {
161 printk(KERN_ERR
162 "proc_file_read: Apparent buffer overflow!\n");
163 n = PAGE_SIZE - startoff;
164 }
165 if (n > count)
166 n = count;
167 }
168
169 n -= copy_to_user(buf, start < page ? page : start, n);
170 if (n == 0) {
171 if (retval == 0)
172 retval = -EFAULT;
173 break;
174 }
175
176 *ppos += start < page ? (unsigned long)start : n;
177 nbytes -= n;
178 buf += n;
179 retval += n;
180 }
181 free_page((unsigned long) page);
182 return retval;
183}
184
185static ssize_t
186proc_file_write(struct file *file, const char __user *buffer,
187 size_t count, loff_t *ppos)
188{
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800189 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 struct proc_dir_entry * dp;
191
192 dp = PDE(inode);
193
194 if (!dp->write_proc)
195 return -EIO;
196
197 /* FIXME: does this routine need ppos? probably... */
198 return dp->write_proc(file, buffer, count, dp->data);
199}
200
201
202static loff_t
203proc_file_lseek(struct file *file, loff_t offset, int orig)
204{
Linus Torvalds8b90db02005-12-30 08:39:10 -0800205 loff_t retval = -EINVAL;
206 switch (orig) {
207 case 1:
208 offset += file->f_pos;
209 /* fallthrough */
210 case 0:
211 if (offset < 0 || offset > MAX_NON_LFS)
212 break;
213 file->f_pos = retval = offset;
214 }
215 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216}
217
Alexey Dobriyan76df0c22008-02-08 04:18:27 -0800218static const struct file_operations proc_file_operations = {
219 .llseek = proc_file_lseek,
220 .read = proc_file_read,
221 .write = proc_file_write,
222};
223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224static int proc_notify_change(struct dentry *dentry, struct iattr *iattr)
225{
226 struct inode *inode = dentry->d_inode;
227 struct proc_dir_entry *de = PDE(inode);
228 int error;
229
230 error = inode_change_ok(inode, iattr);
231 if (error)
232 goto out;
233
234 error = inode_setattr(inode, iattr);
235 if (error)
236 goto out;
237
238 de->uid = inode->i_uid;
239 de->gid = inode->i_gid;
240 de->mode = inode->i_mode;
241out:
242 return error;
243}
244
Miklos Szeredi2b579be2005-09-06 15:17:18 -0700245static int proc_getattr(struct vfsmount *mnt, struct dentry *dentry,
246 struct kstat *stat)
247{
248 struct inode *inode = dentry->d_inode;
249 struct proc_dir_entry *de = PROC_I(inode)->pde;
250 if (de && de->nlink)
251 inode->i_nlink = de->nlink;
252
253 generic_fillattr(inode, stat);
254 return 0;
255}
256
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800257static const struct inode_operations proc_file_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 .setattr = proc_notify_change,
259};
260
261/*
262 * This function parses a name such as "tty/driver/serial", and
263 * returns the struct proc_dir_entry for "/proc/tty/driver", and
264 * returns "serial" in residual.
265 */
266static int xlate_proc_name(const char *name,
267 struct proc_dir_entry **ret, const char **residual)
268{
269 const char *cp = name, *next;
270 struct proc_dir_entry *de;
271 int len;
Steven Rostedt64a07bd2006-03-26 01:36:55 -0800272 int rtn = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Alexey Dobriyan7cee4e02008-04-29 01:01:40 -0700274 de = *ret;
275 if (!de)
276 de = &proc_root;
277
Steven Rostedt64a07bd2006-03-26 01:36:55 -0800278 spin_lock(&proc_subdir_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 while (1) {
280 next = strchr(cp, '/');
281 if (!next)
282 break;
283
284 len = next - cp;
285 for (de = de->subdir; de ; de = de->next) {
286 if (proc_match(len, cp, de))
287 break;
288 }
Steven Rostedt64a07bd2006-03-26 01:36:55 -0800289 if (!de) {
290 rtn = -ENOENT;
291 goto out;
292 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 cp += len + 1;
294 }
295 *residual = cp;
296 *ret = de;
Steven Rostedt64a07bd2006-03-26 01:36:55 -0800297out:
298 spin_unlock(&proc_subdir_lock);
299 return rtn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300}
301
Alexey Dobriyan9a185402008-07-26 11:21:37 +0400302static DEFINE_IDA(proc_inum_ida);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303static DEFINE_SPINLOCK(proc_inum_lock); /* protects the above */
304
Alexey Dobriyan67935df2008-07-26 11:18:28 +0400305#define PROC_DYNAMIC_FIRST 0xF0000000U
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
307/*
308 * Return an inode number between PROC_DYNAMIC_FIRST and
309 * 0xffffffff, or zero on failure.
Randy Dunlap1681bc32009-01-13 13:53:48 +0300310 *
311 * Current inode allocations in the proc-fs (hex-numbers):
312 *
313 * 00000000 reserved
314 * 00000001-00000fff static entries (goners)
315 * 001 root-ino
316 *
317 * 00001000-00001fff unused
318 * 0001xxxx-7fffxxxx pid-dir entries for pid 1-7fff
319 * 80000000-efffffff unused
320 * f0000000-ffffffff dynamic entries
321 *
322 * Goal:
323 * Once we split the thing into several virtual filesystems,
324 * we will get rid of magical ranges (and this comment, BTW).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 */
326static unsigned int get_inode_number(void)
327{
Alexey Dobriyan67935df2008-07-26 11:18:28 +0400328 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 int error;
330
331retry:
Alexey Dobriyan9a185402008-07-26 11:21:37 +0400332 if (ida_pre_get(&proc_inum_ida, GFP_KERNEL) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 return 0;
334
335 spin_lock(&proc_inum_lock);
Alexey Dobriyan9a185402008-07-26 11:21:37 +0400336 error = ida_get_new(&proc_inum_ida, &i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 spin_unlock(&proc_inum_lock);
338 if (error == -EAGAIN)
339 goto retry;
340 else if (error)
341 return 0;
342
Alexey Dobriyan67935df2008-07-26 11:18:28 +0400343 if (i > UINT_MAX - PROC_DYNAMIC_FIRST) {
344 spin_lock(&proc_inum_lock);
Alexey Dobriyan9a185402008-07-26 11:21:37 +0400345 ida_remove(&proc_inum_ida, i);
Alexey Dobriyan67935df2008-07-26 11:18:28 +0400346 spin_unlock(&proc_inum_lock);
Alexey Dobriyancc996092008-08-02 07:30:48 +0400347 return 0;
Alexey Dobriyan67935df2008-07-26 11:18:28 +0400348 }
349 return PROC_DYNAMIC_FIRST + i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350}
351
352static void release_inode_number(unsigned int inum)
353{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 spin_lock(&proc_inum_lock);
Alexey Dobriyan9a185402008-07-26 11:21:37 +0400355 ida_remove(&proc_inum_ida, inum - PROC_DYNAMIC_FIRST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 spin_unlock(&proc_inum_lock);
357}
358
Al Viro008b1502005-08-20 00:17:39 +0100359static void *proc_follow_link(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360{
361 nd_set_link(nd, PDE(dentry->d_inode)->data);
Al Viro008b1502005-08-20 00:17:39 +0100362 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363}
364
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800365static const struct inode_operations proc_link_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 .readlink = generic_readlink,
367 .follow_link = proc_follow_link,
368};
369
370/*
371 * As some entries in /proc are volatile, we want to
372 * get rid of unused dentries. This could be made
373 * smarter: we could keep a "volatile" flag in the
374 * inode to indicate which ones to keep.
375 */
376static int proc_delete_dentry(struct dentry * dentry)
377{
378 return 1;
379}
380
Al Virod72f71e2009-02-20 05:58:47 +0000381static const struct dentry_operations proc_dentry_operations =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
383 .d_delete = proc_delete_dentry,
384};
385
386/*
387 * Don't create negative dentries here, return -ENOENT by hand
388 * instead.
389 */
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800390struct dentry *proc_lookup_de(struct proc_dir_entry *de, struct inode *dir,
391 struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
393 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 int error = -ENOENT;
395
Steven Rostedt64a07bd2006-03-26 01:36:55 -0800396 spin_lock(&proc_subdir_lock);
Alexey Dobriyan5e971dc2008-04-29 01:01:41 -0700397 for (de = de->subdir; de ; de = de->next) {
398 if (de->namelen != dentry->d_name.len)
399 continue;
400 if (!memcmp(dentry->d_name.name, de->name, de->namelen)) {
401 unsigned int ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
Alexey Dobriyan5e971dc2008-04-29 01:01:41 -0700403 ino = de->low_ino;
404 de_get(de);
405 spin_unlock(&proc_subdir_lock);
406 error = -EINVAL;
407 inode = proc_get_inode(dir->i_sb, ino, de);
408 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 }
410 }
Steven Rostedt64a07bd2006-03-26 01:36:55 -0800411 spin_unlock(&proc_subdir_lock);
Alexey Dobriyan4237e0d2008-02-08 04:18:27 -0800412out_unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
414 if (inode) {
415 dentry->d_op = &proc_dentry_operations;
416 d_add(dentry, inode);
417 return NULL;
418 }
Alexey Dobriyan5e971dc2008-04-29 01:01:41 -0700419 if (de)
420 de_put(de);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 return ERR_PTR(error);
422}
423
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800424struct dentry *proc_lookup(struct inode *dir, struct dentry *dentry,
425 struct nameidata *nd)
426{
427 return proc_lookup_de(PDE(dir), dir, dentry);
428}
429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430/*
431 * This returns non-zero if at EOF, so that the /proc
432 * root directory can use this and check if it should
433 * continue with the <pid> entries..
434 *
435 * Note that the VFS-layer doesn't care about the return
436 * value of the readdir() call, as long as it's non-negative
437 * for success..
438 */
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800439int proc_readdir_de(struct proc_dir_entry *de, struct file *filp, void *dirent,
440 filldir_t filldir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 unsigned int ino;
443 int i;
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800444 struct inode *inode = filp->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 int ret = 0;
446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 ino = inode->i_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 i = filp->f_pos;
449 switch (i) {
450 case 0:
451 if (filldir(dirent, ".", 1, i, ino, DT_DIR) < 0)
452 goto out;
453 i++;
454 filp->f_pos++;
455 /* fall through */
456 case 1:
457 if (filldir(dirent, "..", 2, i,
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800458 parent_ino(filp->f_path.dentry),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 DT_DIR) < 0)
460 goto out;
461 i++;
462 filp->f_pos++;
463 /* fall through */
464 default:
Steven Rostedt64a07bd2006-03-26 01:36:55 -0800465 spin_lock(&proc_subdir_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 de = de->subdir;
467 i -= 2;
468 for (;;) {
469 if (!de) {
470 ret = 1;
Steven Rostedt64a07bd2006-03-26 01:36:55 -0800471 spin_unlock(&proc_subdir_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 goto out;
473 }
474 if (!i)
475 break;
476 de = de->next;
477 i--;
478 }
479
480 do {
Darrick J. Wong59cd0cb2007-05-08 00:25:47 -0700481 struct proc_dir_entry *next;
482
Steven Rostedt64a07bd2006-03-26 01:36:55 -0800483 /* filldir passes info to user space */
Darrick J. Wong59cd0cb2007-05-08 00:25:47 -0700484 de_get(de);
Steven Rostedt64a07bd2006-03-26 01:36:55 -0800485 spin_unlock(&proc_subdir_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 if (filldir(dirent, de->name, de->namelen, filp->f_pos,
Darrick J. Wong59cd0cb2007-05-08 00:25:47 -0700487 de->low_ino, de->mode >> 12) < 0) {
488 de_put(de);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 goto out;
Darrick J. Wong59cd0cb2007-05-08 00:25:47 -0700490 }
Steven Rostedt64a07bd2006-03-26 01:36:55 -0800491 spin_lock(&proc_subdir_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 filp->f_pos++;
Darrick J. Wong59cd0cb2007-05-08 00:25:47 -0700493 next = de->next;
494 de_put(de);
495 de = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 } while (de);
Steven Rostedt64a07bd2006-03-26 01:36:55 -0800497 spin_unlock(&proc_subdir_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 }
499 ret = 1;
Alexey Dobriyanb4df2b92008-10-27 22:48:36 +0300500out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 return ret;
502}
503
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800504int proc_readdir(struct file *filp, void *dirent, filldir_t filldir)
505{
506 struct inode *inode = filp->f_path.dentry->d_inode;
507
508 return proc_readdir_de(PDE(inode), filp, dirent, filldir);
509}
510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511/*
512 * These are the generic /proc directory operations. They
513 * use the in-memory "struct proc_dir_entry" tree to parse
514 * the /proc directory.
515 */
Arjan van de Ven00977a52007-02-12 00:55:34 -0800516static const struct file_operations proc_dir_operations = {
Alexey Dobriyanb4df2b92008-10-27 22:48:36 +0300517 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 .read = generic_read_dir,
519 .readdir = proc_readdir,
520};
521
522/*
523 * proc directories can do almost nothing..
524 */
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800525static const struct inode_operations proc_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 .lookup = proc_lookup,
Miklos Szeredi2b579be2005-09-06 15:17:18 -0700527 .getattr = proc_getattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 .setattr = proc_notify_change,
529};
530
531static int proc_register(struct proc_dir_entry * dir, struct proc_dir_entry * dp)
532{
533 unsigned int i;
Zhang Rui94413d82008-02-08 04:18:29 -0800534 struct proc_dir_entry *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
536 i = get_inode_number();
537 if (i == 0)
538 return -EAGAIN;
539 dp->low_ino = i;
Steven Rostedt64a07bd2006-03-26 01:36:55 -0800540
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 if (S_ISDIR(dp->mode)) {
542 if (dp->proc_iops == NULL) {
543 dp->proc_fops = &proc_dir_operations;
544 dp->proc_iops = &proc_dir_inode_operations;
545 }
546 dir->nlink++;
547 } else if (S_ISLNK(dp->mode)) {
548 if (dp->proc_iops == NULL)
549 dp->proc_iops = &proc_link_inode_operations;
550 } else if (S_ISREG(dp->mode)) {
551 if (dp->proc_fops == NULL)
552 dp->proc_fops = &proc_file_operations;
553 if (dp->proc_iops == NULL)
554 dp->proc_iops = &proc_file_inode_operations;
555 }
Changli Gao99fc06d2007-07-15 23:40:09 -0700556
557 spin_lock(&proc_subdir_lock);
Zhang Rui94413d82008-02-08 04:18:29 -0800558
559 for (tmp = dir->subdir; tmp; tmp = tmp->next)
560 if (strcmp(tmp->name, dp->name) == 0) {
Arjan van de Ven6c2f91e2008-09-13 19:51:30 -0700561 WARN(1, KERN_WARNING "proc_dir_entry '%s/%s' already registered\n",
Alexey Dobriyan665020c2008-09-13 02:33:06 -0700562 dir->name, dp->name);
Zhang Rui94413d82008-02-08 04:18:29 -0800563 break;
564 }
565
Changli Gao99fc06d2007-07-15 23:40:09 -0700566 dp->next = dir->subdir;
567 dp->parent = dir;
568 dir->subdir = dp;
569 spin_unlock(&proc_subdir_lock);
570
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 return 0;
572}
573
Alexey Dobriyan2d3a4e32008-02-08 04:18:37 -0800574static struct proc_dir_entry *__proc_create(struct proc_dir_entry **parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 const char *name,
576 mode_t mode,
577 nlink_t nlink)
578{
579 struct proc_dir_entry *ent = NULL;
580 const char *fn = name;
581 int len;
582
583 /* make sure name is valid */
584 if (!name || !strlen(name)) goto out;
585
Alexey Dobriyan7cee4e02008-04-29 01:01:40 -0700586 if (xlate_proc_name(name, parent, &fn) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 goto out;
588
589 /* At this point there must not be any '/' characters beyond *fn */
590 if (strchr(fn, '/'))
591 goto out;
592
593 len = strlen(fn);
594
595 ent = kmalloc(sizeof(struct proc_dir_entry) + len + 1, GFP_KERNEL);
596 if (!ent) goto out;
597
598 memset(ent, 0, sizeof(struct proc_dir_entry));
599 memcpy(((char *) ent) + sizeof(struct proc_dir_entry), fn, len + 1);
600 ent->name = ((char *) ent) + sizeof(*ent);
601 ent->namelen = len;
602 ent->mode = mode;
603 ent->nlink = nlink;
Alexey Dobriyan5a622f22007-12-04 23:45:28 -0800604 atomic_set(&ent->count, 1);
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700605 ent->pde_users = 0;
606 spin_lock_init(&ent->pde_unload_lock);
607 ent->pde_unload_completion = NULL;
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700608 INIT_LIST_HEAD(&ent->pde_openers);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 out:
610 return ent;
611}
612
613struct proc_dir_entry *proc_symlink(const char *name,
614 struct proc_dir_entry *parent, const char *dest)
615{
616 struct proc_dir_entry *ent;
617
Alexey Dobriyan2d3a4e32008-02-08 04:18:37 -0800618 ent = __proc_create(&parent, name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 (S_IFLNK | S_IRUGO | S_IWUGO | S_IXUGO),1);
620
621 if (ent) {
622 ent->data = kmalloc((ent->size=strlen(dest))+1, GFP_KERNEL);
623 if (ent->data) {
624 strcpy((char*)ent->data,dest);
625 if (proc_register(parent, ent) < 0) {
626 kfree(ent->data);
627 kfree(ent);
628 ent = NULL;
629 }
630 } else {
631 kfree(ent);
632 ent = NULL;
633 }
634 }
635 return ent;
636}
637
638struct proc_dir_entry *proc_mkdir_mode(const char *name, mode_t mode,
639 struct proc_dir_entry *parent)
640{
641 struct proc_dir_entry *ent;
642
Alexey Dobriyan2d3a4e32008-02-08 04:18:37 -0800643 ent = __proc_create(&parent, name, S_IFDIR | mode, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 if (ent) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 if (proc_register(parent, ent) < 0) {
646 kfree(ent);
647 ent = NULL;
648 }
649 }
650 return ent;
651}
652
Denis V. Lunev78e92b92008-05-02 04:12:41 -0700653struct proc_dir_entry *proc_net_mkdir(struct net *net, const char *name,
654 struct proc_dir_entry *parent)
655{
656 struct proc_dir_entry *ent;
657
658 ent = __proc_create(&parent, name, S_IFDIR | S_IRUGO | S_IXUGO, 2);
659 if (ent) {
660 ent->data = net;
661 if (proc_register(parent, ent) < 0) {
662 kfree(ent);
663 ent = NULL;
664 }
665 }
666 return ent;
667}
668EXPORT_SYMBOL_GPL(proc_net_mkdir);
669
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670struct proc_dir_entry *proc_mkdir(const char *name,
671 struct proc_dir_entry *parent)
672{
673 return proc_mkdir_mode(name, S_IRUGO | S_IXUGO, parent);
674}
675
676struct proc_dir_entry *create_proc_entry(const char *name, mode_t mode,
677 struct proc_dir_entry *parent)
678{
679 struct proc_dir_entry *ent;
680 nlink_t nlink;
681
682 if (S_ISDIR(mode)) {
683 if ((mode & S_IALLUGO) == 0)
684 mode |= S_IRUGO | S_IXUGO;
685 nlink = 2;
686 } else {
687 if ((mode & S_IFMT) == 0)
688 mode |= S_IFREG;
689 if ((mode & S_IALLUGO) == 0)
690 mode |= S_IRUGO;
691 nlink = 1;
692 }
693
Alexey Dobriyan2d3a4e32008-02-08 04:18:37 -0800694 ent = __proc_create(&parent, name, mode, nlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 if (ent) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 if (proc_register(parent, ent) < 0) {
697 kfree(ent);
698 ent = NULL;
699 }
700 }
701 return ent;
702}
703
Denis V. Lunev59b74352008-04-29 01:02:00 -0700704struct proc_dir_entry *proc_create_data(const char *name, mode_t mode,
705 struct proc_dir_entry *parent,
706 const struct file_operations *proc_fops,
707 void *data)
Alexey Dobriyan2d3a4e32008-02-08 04:18:37 -0800708{
709 struct proc_dir_entry *pde;
710 nlink_t nlink;
711
712 if (S_ISDIR(mode)) {
713 if ((mode & S_IALLUGO) == 0)
714 mode |= S_IRUGO | S_IXUGO;
715 nlink = 2;
716 } else {
717 if ((mode & S_IFMT) == 0)
718 mode |= S_IFREG;
719 if ((mode & S_IALLUGO) == 0)
720 mode |= S_IRUGO;
721 nlink = 1;
722 }
723
724 pde = __proc_create(&parent, name, mode, nlink);
725 if (!pde)
726 goto out;
727 pde->proc_fops = proc_fops;
Denis V. Lunev59b74352008-04-29 01:02:00 -0700728 pde->data = data;
Alexey Dobriyan2d3a4e32008-02-08 04:18:37 -0800729 if (proc_register(parent, pde) < 0)
730 goto out_free;
731 return pde;
732out_free:
733 kfree(pde);
734out:
735 return NULL;
736}
737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738void free_proc_entry(struct proc_dir_entry *de)
739{
740 unsigned int ino = de->low_ino;
741
742 if (ino < PROC_DYNAMIC_FIRST)
743 return;
744
745 release_inode_number(ino);
746
Alexey Dobriyanfd2cbe42008-02-08 04:18:28 -0800747 if (S_ISLNK(de->mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 kfree(de->data);
749 kfree(de);
750}
751
752/*
753 * Remove a /proc entry and free it if it's not currently in use.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 */
755void remove_proc_entry(const char *name, struct proc_dir_entry *parent)
756{
757 struct proc_dir_entry **p;
Alexey Dobriyanf649d6d2008-04-29 01:01:39 -0700758 struct proc_dir_entry *de = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 const char *fn = name;
760 int len;
761
Alexey Dobriyan7cee4e02008-04-29 01:01:40 -0700762 if (xlate_proc_name(name, &parent, &fn) != 0)
Alexey Dobriyanf649d6d2008-04-29 01:01:39 -0700763 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 len = strlen(fn);
Steven Rostedt64a07bd2006-03-26 01:36:55 -0800765
766 spin_lock(&proc_subdir_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 for (p = &parent->subdir; *p; p=&(*p)->next ) {
Alexey Dobriyanf649d6d2008-04-29 01:01:39 -0700768 if (proc_match(len, fn, *p)) {
769 de = *p;
770 *p = de->next;
771 de->next = NULL;
772 break;
Alexey Dobriyan786d7e12007-07-15 23:39:00 -0700773 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 }
Steven Rostedt64a07bd2006-03-26 01:36:55 -0800775 spin_unlock(&proc_subdir_lock);
Alexey Dobriyanf649d6d2008-04-29 01:01:39 -0700776 if (!de)
777 return;
778
779 spin_lock(&de->pde_unload_lock);
780 /*
781 * Stop accepting new callers into module. If you're
782 * dynamically allocating ->proc_fops, save a pointer somewhere.
783 */
784 de->proc_fops = NULL;
785 /* Wait until all existing callers into module are done. */
786 if (de->pde_users > 0) {
787 DECLARE_COMPLETION_ONSTACK(c);
788
789 if (!de->pde_unload_completion)
790 de->pde_unload_completion = &c;
791
792 spin_unlock(&de->pde_unload_lock);
793
794 wait_for_completion(de->pde_unload_completion);
795
796 goto continue_removing;
797 }
798 spin_unlock(&de->pde_unload_lock);
799
800continue_removing:
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700801 spin_lock(&de->pde_unload_lock);
802 while (!list_empty(&de->pde_openers)) {
803 struct pde_opener *pdeo;
804
805 pdeo = list_first_entry(&de->pde_openers, struct pde_opener, lh);
806 list_del(&pdeo->lh);
807 spin_unlock(&de->pde_unload_lock);
808 pdeo->release(pdeo->inode, pdeo->file);
809 kfree(pdeo);
810 spin_lock(&de->pde_unload_lock);
811 }
812 spin_unlock(&de->pde_unload_lock);
813
Alexey Dobriyanf649d6d2008-04-29 01:01:39 -0700814 if (S_ISDIR(de->mode))
815 parent->nlink--;
816 de->nlink = 0;
Arjan van de Ven267e2a92008-07-25 19:45:41 -0700817 WARN(de->subdir, KERN_WARNING "%s: removing non-empty directory "
Alexey Dobriyanf649d6d2008-04-29 01:01:39 -0700818 "'%s/%s', leaking at least '%s'\n", __func__,
819 de->parent->name, de->name, de->subdir->name);
Alexey Dobriyanf649d6d2008-04-29 01:01:39 -0700820 if (atomic_dec_and_test(&de->count))
821 free_proc_entry(de);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822}