4 * Copyright (C) 1991, 1992 Linus Torvalds
6 * proc root directory handling functions
9 #include <asm/uaccess.h>
11 #include <linux/errno.h>
12 #include <linux/time.h>
13 #include <linux/proc_fs.h>
14 #include <linux/stat.h>
15 #include <linux/init.h>
16 #include <linux/sched.h>
17 #include <linux/module.h>
18 #include <linux/bitops.h>
19 #include <linux/smp_lock.h>
20 #include <linux/mount.h>
24 struct proc_dir_entry *proc_net, *proc_net_stat, *proc_bus, *proc_root_fs, *proc_root_driver;
27 struct proc_dir_entry *proc_sys_root;
30 static int proc_get_sb(struct file_system_type *fs_type,
31 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
34 /* Seed the root directory with a pid so it doesn't need
35 * to be special in base.c. I would do this earlier but
36 * the only task alive when /proc is mounted the first time
37 * is the init_task and it doesn't have any pids.
39 struct proc_inode *ei;
40 ei = PROC_I(proc_mnt->mnt_sb->s_root->d_inode);
42 ei->pid = find_get_pid(1);
44 return get_sb_single(fs_type, flags, data, proc_fill_super, mnt);
47 static struct file_system_type proc_fs_type = {
49 .get_sb = proc_get_sb,
50 .kill_sb = kill_anon_super,
53 void __init proc_root_init(void)
55 int err = proc_init_inodecache();
58 err = register_filesystem(&proc_fs_type);
61 proc_mnt = kern_mount(&proc_fs_type);
62 err = PTR_ERR(proc_mnt);
63 if (IS_ERR(proc_mnt)) {
64 unregister_filesystem(&proc_fs_type);
68 proc_net = proc_mkdir("net", NULL);
69 proc_net_stat = proc_mkdir("net/stat", NULL);
72 proc_mkdir("sysvipc", NULL);
75 proc_sys_root = proc_mkdir("sys", NULL);
77 #if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE)
78 proc_mkdir("sys/fs", NULL);
79 proc_mkdir("sys/fs/binfmt_misc", NULL);
81 proc_root_fs = proc_mkdir("fs", NULL);
82 proc_root_driver = proc_mkdir("driver", NULL);
83 proc_mkdir("fs/nfsd", NULL); /* somewhere for the nfsd filesystem to be mounted */
84 #if defined(CONFIG_SUN_OPENPROMFS) || defined(CONFIG_SUN_OPENPROMFS_MODULE)
85 /* just give it a mountpoint */
86 proc_mkdir("openprom", NULL);
89 #ifdef CONFIG_PROC_DEVICETREE
90 proc_device_tree_init();
92 proc_bus = proc_mkdir("bus", NULL);
95 static int proc_root_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat
98 generic_fillattr(dentry->d_inode, stat);
99 stat->nlink = proc_root.nlink + nr_processes();
103 static struct dentry *proc_root_lookup(struct inode * dir, struct dentry * dentry, struct nameidata *nd)
105 if (!proc_lookup(dir, dentry, nd)) {
109 return proc_pid_lookup(dir, dentry, nd);
112 static int proc_root_readdir(struct file * filp,
113 void * dirent, filldir_t filldir)
115 unsigned int nr = filp->f_pos;
120 if (nr < FIRST_PROCESS_ENTRY) {
121 int error = proc_readdir(filp, dirent, filldir);
126 filp->f_pos = FIRST_PROCESS_ENTRY;
130 ret = proc_pid_readdir(filp, dirent, filldir);
135 * The root /proc directory is special, as it has the
136 * <pid> directories. Thus we don't use the generic
137 * directory handling functions for that..
139 static struct file_operations proc_root_operations = {
140 .read = generic_read_dir,
141 .readdir = proc_root_readdir,
145 * proc root can do almost nothing..
147 static struct inode_operations proc_root_inode_operations = {
148 .lookup = proc_root_lookup,
149 .getattr = proc_root_getattr,
153 * This is the root "inode" in the /proc tree..
155 struct proc_dir_entry proc_root = {
156 .low_ino = PROC_ROOT_INO,
159 .mode = S_IFDIR | S_IRUGO | S_IXUGO,
161 .proc_iops = &proc_root_inode_operations,
162 .proc_fops = &proc_root_operations,
163 .parent = &proc_root,
166 EXPORT_SYMBOL(proc_symlink);
167 EXPORT_SYMBOL(proc_mkdir);
168 EXPORT_SYMBOL(create_proc_entry);
169 EXPORT_SYMBOL(remove_proc_entry);
170 EXPORT_SYMBOL(proc_root);
171 EXPORT_SYMBOL(proc_root_fs);
172 EXPORT_SYMBOL(proc_net);
173 EXPORT_SYMBOL(proc_net_stat);
174 EXPORT_SYMBOL(proc_bus);
175 EXPORT_SYMBOL(proc_root_driver);