blob: f672dbac6720dafb3fe3229359583483d6c1edd2 [file] [log] [blame]
xjb04a4022021-11-25 15:01:52 +08001// SPDX-License-Identifier: GPL-2.0
2/*
3 * linux/fs/proc/root.c
4 *
5 * Copyright (C) 1991, 1992 Linus Torvalds
6 *
7 * proc root directory handling functions
8 */
9
10#include <linux/uaccess.h>
11
12#include <linux/errno.h>
13#include <linux/time.h>
14#include <linux/proc_fs.h>
15#include <linux/stat.h>
16#include <linux/init.h>
17#include <linux/sched.h>
18#include <linux/sched/stat.h>
19#include <linux/module.h>
20#include <linux/bitops.h>
21#include <linux/user_namespace.h>
22#include <linux/mount.h>
23#include <linux/pid_namespace.h>
24#include <linux/parser.h>
25#include <linux/cred.h>
26
27#include "internal.h"
28
29static int proc_test_super(struct super_block *sb, void *data)
30{
31 return sb->s_fs_info == data;
32}
33
34static int proc_set_super(struct super_block *sb, void *data)
35{
36 int err = set_anon_super(sb, NULL);
37 if (!err) {
38 struct pid_namespace *ns = (struct pid_namespace *)data;
39 sb->s_fs_info = get_pid_ns(ns);
40 }
41 return err;
42}
43
44enum {
45 Opt_gid, Opt_hidepid, Opt_err,
46};
47
48static const match_table_t tokens = {
49 {Opt_hidepid, "hidepid=%u"},
50 {Opt_gid, "gid=%u"},
51 {Opt_err, NULL},
52};
53
54static int proc_parse_options(char *options, struct pid_namespace *pid)
55{
56 char *p;
57 substring_t args[MAX_OPT_ARGS];
58 int option;
59
60 if (!options)
61 return 1;
62
63 while ((p = strsep(&options, ",")) != NULL) {
64 int token;
65 if (!*p)
66 continue;
67
68 args[0].to = args[0].from = NULL;
69 token = match_token(p, tokens, args);
70 switch (token) {
71 case Opt_gid:
72 if (match_int(&args[0], &option))
73 return 0;
74 pid->pid_gid = make_kgid(current_user_ns(), option);
75 break;
76 case Opt_hidepid:
77 if (match_int(&args[0], &option))
78 return 0;
79 if (option < HIDEPID_OFF ||
80 option > HIDEPID_INVISIBLE) {
81 pr_err("proc: hidepid value must be between 0 and 2.\n");
82 return 0;
83 }
84 pid->hide_pid = option;
85 break;
86 default:
87 pr_err("proc: unrecognized mount option \"%s\" "
88 "or missing value\n", p);
89 return 0;
90 }
91 }
92
93 return 1;
94}
95
96int proc_remount(struct super_block *sb, int *flags, char *data)
97{
98 struct pid_namespace *pid = sb->s_fs_info;
99
100 sync_filesystem(sb);
101 return !proc_parse_options(data, pid);
102}
103
104static struct dentry *proc_mount(struct file_system_type *fs_type,
105 int flags, const char *dev_name, void *data)
106{
107 int err;
108 struct super_block *sb;
109 struct pid_namespace *ns;
110 char *options;
111
112 if (flags & SB_KERNMOUNT) {
113 ns = (struct pid_namespace *)data;
114 options = NULL;
115 } else {
116 ns = task_active_pid_ns(current);
117 options = data;
118
119 /* Does the mounter have privilege over the pid namespace? */
120 if (!ns_capable(ns->user_ns, CAP_SYS_ADMIN))
121 return ERR_PTR(-EPERM);
122 }
123
124 sb = sget(fs_type, proc_test_super, proc_set_super, flags, ns);
125 if (IS_ERR(sb))
126 return ERR_CAST(sb);
127
128 if (!proc_parse_options(options, ns)) {
129 deactivate_locked_super(sb);
130 return ERR_PTR(-EINVAL);
131 }
132
133 if (!sb->s_root) {
134 err = proc_fill_super(sb);
135 if (err) {
136 deactivate_locked_super(sb);
137 return ERR_PTR(err);
138 }
139
140 sb->s_flags |= MS_ACTIVE;
141 /* User space would break if executables appear on proc */
142 sb->s_iflags |= SB_I_NOEXEC;
143 }
144
145 return dget(sb->s_root);
146}
147
148static void proc_kill_sb(struct super_block *sb)
149{
150 struct pid_namespace *ns;
151
152 ns = (struct pid_namespace *)sb->s_fs_info;
153 if (ns->proc_self)
154 dput(ns->proc_self);
155 if (ns->proc_thread_self)
156 dput(ns->proc_thread_self);
157 kill_anon_super(sb);
158 put_pid_ns(ns);
159}
160
161static struct file_system_type proc_fs_type = {
162 .name = "proc",
163 .mount = proc_mount,
164 .kill_sb = proc_kill_sb,
165 .fs_flags = FS_USERNS_MOUNT,
166};
167
168void __init proc_root_init(void)
169{
170 proc_init_kmemcache();
171 set_proc_pid_nlink();
172 proc_self_init();
173 proc_thread_self_init();
174 proc_symlink("mounts", NULL, "self/mounts");
175
176 proc_net_init();
177 proc_uid_init();
178 proc_mkdir("fs", NULL);
179 proc_mkdir("driver", NULL);
180 proc_create_mount_point("fs/nfsd"); /* somewhere for the nfsd filesystem to be mounted */
181#if defined(CONFIG_SUN_OPENPROMFS) || defined(CONFIG_SUN_OPENPROMFS_MODULE)
182 /* just give it a mountpoint */
183 proc_create_mount_point("openprom");
184#endif
185 proc_tty_init();
186 proc_mkdir("bus", NULL);
187 proc_sys_init();
188
189 register_filesystem(&proc_fs_type);
190}
191
192static int proc_root_getattr(const struct path *path, struct kstat *stat,
193 u32 request_mask, unsigned int query_flags)
194{
195 generic_fillattr(d_inode(path->dentry), stat);
196 stat->nlink = proc_root.nlink + nr_processes();
197 return 0;
198}
199
200static struct dentry *proc_root_lookup(struct inode * dir, struct dentry * dentry, unsigned int flags)
201{
202 if (!proc_pid_lookup(dir, dentry, flags))
203 return NULL;
204
205 return proc_lookup(dir, dentry, flags);
206}
207
208static int proc_root_readdir(struct file *file, struct dir_context *ctx)
209{
210 if (ctx->pos < FIRST_PROCESS_ENTRY) {
211 int error = proc_readdir(file, ctx);
212 if (unlikely(error <= 0))
213 return error;
214 ctx->pos = FIRST_PROCESS_ENTRY;
215 }
216
217 return proc_pid_readdir(file, ctx);
218}
219
220/*
221 * The root /proc directory is special, as it has the
222 * <pid> directories. Thus we don't use the generic
223 * directory handling functions for that..
224 */
225static const struct file_operations proc_root_operations = {
226 .read = generic_read_dir,
227 .iterate_shared = proc_root_readdir,
228 .llseek = generic_file_llseek,
229};
230
231/*
232 * proc root can do almost nothing..
233 */
234static const struct inode_operations proc_root_inode_operations = {
235 .lookup = proc_root_lookup,
236 .getattr = proc_root_getattr,
237};
238
239/*
240 * This is the root "inode" in the /proc tree..
241 */
242struct proc_dir_entry proc_root = {
243 .low_ino = PROC_ROOT_INO,
244 .namelen = 5,
245 .mode = S_IFDIR | S_IRUGO | S_IXUGO,
246 .nlink = 2,
247 .refcnt = REFCOUNT_INIT(1),
248 .proc_iops = &proc_root_inode_operations,
249 .proc_fops = &proc_root_operations,
250 .parent = &proc_root,
251 .subdir = RB_ROOT,
252 .name = "/proc",
253};
254
255int pid_ns_prepare_proc(struct pid_namespace *ns)
256{
257 struct vfsmount *mnt;
258
259 mnt = kern_mount_data(&proc_fs_type, ns);
260 if (IS_ERR(mnt))
261 return PTR_ERR(mnt);
262
263 ns->proc_mnt = mnt;
264 return 0;
265}
266
267void pid_ns_release_proc(struct pid_namespace *ns)
268{
269 kern_unmount(ns->proc_mnt);
270}