Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/fs/proc/root.c |
| 3 | * |
| 4 | * Copyright (C) 1991, 1992 Linus Torvalds |
| 5 | * |
| 6 | * proc root directory handling functions |
| 7 | */ |
| 8 | |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 9 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | |
| 11 | #include <linux/errno.h> |
| 12 | #include <linux/time.h> |
| 13 | #include <linux/proc_fs.h> |
| 14 | #include <linux/stat.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/init.h> |
Al Viro | 914e263 | 2006-10-18 13:55:46 -0400 | [diff] [blame] | 16 | #include <linux/sched.h> |
Ingo Molnar | 03441a3 | 2017-02-08 18:51:35 +0100 | [diff] [blame] | 17 | #include <linux/sched/stat.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/module.h> |
| 19 | #include <linux/bitops.h> |
Eric W. Biederman | 87a8ebd | 2013-03-24 14:28:27 -0700 | [diff] [blame] | 20 | #include <linux/user_namespace.h> |
Eric W. Biederman | f6c7a1f | 2006-10-02 02:17:07 -0700 | [diff] [blame] | 21 | #include <linux/mount.h> |
Pavel Emelyanov | 07543f5 | 2007-10-18 23:40:08 -0700 | [diff] [blame] | 22 | #include <linux/pid_namespace.h> |
Vasiliy Kulikov | 9741295 | 2012-01-10 15:11:27 -0800 | [diff] [blame] | 23 | #include <linux/parser.h> |
Ingo Molnar | 5b825c3 | 2017-02-02 17:54:15 +0100 | [diff] [blame] | 24 | #include <linux/cred.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | |
Adrian Bunk | fee781e | 2006-01-08 01:04:16 -0800 | [diff] [blame] | 26 | #include "internal.h" |
| 27 | |
Vasiliy Kulikov | 9741295 | 2012-01-10 15:11:27 -0800 | [diff] [blame] | 28 | enum { |
Vasiliy Kulikov | 0499680 | 2012-01-10 15:11:31 -0800 | [diff] [blame] | 29 | Opt_gid, Opt_hidepid, Opt_err, |
Vasiliy Kulikov | 9741295 | 2012-01-10 15:11:27 -0800 | [diff] [blame] | 30 | }; |
| 31 | |
| 32 | static const match_table_t tokens = { |
Vasiliy Kulikov | 0499680 | 2012-01-10 15:11:31 -0800 | [diff] [blame] | 33 | {Opt_hidepid, "hidepid=%u"}, |
| 34 | {Opt_gid, "gid=%u"}, |
Vasiliy Kulikov | 9741295 | 2012-01-10 15:11:27 -0800 | [diff] [blame] | 35 | {Opt_err, NULL}, |
| 36 | }; |
| 37 | |
Eric W. Biederman | e94591d | 2016-06-09 15:32:10 -0500 | [diff] [blame] | 38 | int proc_parse_options(char *options, struct pid_namespace *pid) |
Vasiliy Kulikov | 9741295 | 2012-01-10 15:11:27 -0800 | [diff] [blame] | 39 | { |
| 40 | char *p; |
| 41 | substring_t args[MAX_OPT_ARGS]; |
Vasiliy Kulikov | 0499680 | 2012-01-10 15:11:31 -0800 | [diff] [blame] | 42 | int option; |
Vasiliy Kulikov | 9741295 | 2012-01-10 15:11:27 -0800 | [diff] [blame] | 43 | |
| 44 | if (!options) |
| 45 | return 1; |
| 46 | |
| 47 | while ((p = strsep(&options, ",")) != NULL) { |
| 48 | int token; |
| 49 | if (!*p) |
| 50 | continue; |
| 51 | |
Sachin Kamat | 9fb8844 | 2012-10-04 17:15:46 -0700 | [diff] [blame] | 52 | args[0].to = args[0].from = NULL; |
Vasiliy Kulikov | 9741295 | 2012-01-10 15:11:27 -0800 | [diff] [blame] | 53 | token = match_token(p, tokens, args); |
| 54 | switch (token) { |
Vasiliy Kulikov | 0499680 | 2012-01-10 15:11:31 -0800 | [diff] [blame] | 55 | case Opt_gid: |
| 56 | if (match_int(&args[0], &option)) |
| 57 | return 0; |
Eric W. Biederman | dcb0f22 | 2012-02-09 08:48:21 -0800 | [diff] [blame] | 58 | pid->pid_gid = make_kgid(current_user_ns(), option); |
Vasiliy Kulikov | 0499680 | 2012-01-10 15:11:31 -0800 | [diff] [blame] | 59 | break; |
| 60 | case Opt_hidepid: |
| 61 | if (match_int(&args[0], &option)) |
| 62 | return 0; |
Lafcadio Wluiki | 796f571 | 2017-02-24 15:00:23 -0800 | [diff] [blame] | 63 | if (option < HIDEPID_OFF || |
| 64 | option > HIDEPID_INVISIBLE) { |
Vasiliy Kulikov | 0499680 | 2012-01-10 15:11:31 -0800 | [diff] [blame] | 65 | pr_err("proc: hidepid value must be between 0 and 2.\n"); |
| 66 | return 0; |
| 67 | } |
| 68 | pid->hide_pid = option; |
| 69 | break; |
Vasiliy Kulikov | 9741295 | 2012-01-10 15:11:27 -0800 | [diff] [blame] | 70 | default: |
| 71 | pr_err("proc: unrecognized mount option \"%s\" " |
| 72 | "or missing value\n", p); |
| 73 | return 0; |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | return 1; |
| 78 | } |
| 79 | |
| 80 | int proc_remount(struct super_block *sb, int *flags, char *data) |
| 81 | { |
| 82 | struct pid_namespace *pid = sb->s_fs_info; |
Theodore Ts'o | 02b9984 | 2014-03-13 10:14:33 -0400 | [diff] [blame] | 83 | |
| 84 | sync_filesystem(sb); |
Vasiliy Kulikov | 9741295 | 2012-01-10 15:11:27 -0800 | [diff] [blame] | 85 | return !proc_parse_options(data, pid); |
| 86 | } |
| 87 | |
Al Viro | aed1d84 | 2010-07-26 13:12:54 +0400 | [diff] [blame] | 88 | static struct dentry *proc_mount(struct file_system_type *fs_type, |
| 89 | int flags, const char *dev_name, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | { |
Pavel Emelyanov | 07543f5 | 2007-10-18 23:40:08 -0700 | [diff] [blame] | 91 | struct pid_namespace *ns; |
Pavel Emelyanov | 07543f5 | 2007-10-18 23:40:08 -0700 | [diff] [blame] | 92 | |
Vasiliy Kulikov | 9741295 | 2012-01-10 15:11:27 -0800 | [diff] [blame] | 93 | if (flags & MS_KERNMOUNT) { |
Eric W. Biederman | e94591d | 2016-06-09 15:32:10 -0500 | [diff] [blame] | 94 | ns = data; |
| 95 | data = NULL; |
Vasiliy Kulikov | 9741295 | 2012-01-10 15:11:27 -0800 | [diff] [blame] | 96 | } else { |
Eric W. Biederman | 17cf22c | 2010-03-02 14:51:53 -0800 | [diff] [blame] | 97 | ns = task_active_pid_ns(current); |
Vasiliy Kulikov | 9741295 | 2012-01-10 15:11:27 -0800 | [diff] [blame] | 98 | } |
Pavel Emelyanov | 07543f5 | 2007-10-18 23:40:08 -0700 | [diff] [blame] | 99 | |
Eric W. Biederman | e94591d | 2016-06-09 15:32:10 -0500 | [diff] [blame] | 100 | return mount_ns(fs_type, flags, data, ns, ns->user_ns, proc_fill_super); |
Pavel Emelyanov | 07543f5 | 2007-10-18 23:40:08 -0700 | [diff] [blame] | 101 | } |
| 102 | |
| 103 | static void proc_kill_sb(struct super_block *sb) |
| 104 | { |
| 105 | struct pid_namespace *ns; |
| 106 | |
| 107 | ns = (struct pid_namespace *)sb->s_fs_info; |
Al Viro | 021ada7 | 2013-03-29 19:27:05 -0400 | [diff] [blame] | 108 | if (ns->proc_self) |
| 109 | dput(ns->proc_self); |
Eric W. Biederman | 0097875 | 2014-07-31 03:10:50 -0700 | [diff] [blame] | 110 | if (ns->proc_thread_self) |
| 111 | dput(ns->proc_thread_self); |
Pavel Emelyanov | 07543f5 | 2007-10-18 23:40:08 -0700 | [diff] [blame] | 112 | kill_anon_super(sb); |
| 113 | put_pid_ns(ns); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | } |
| 115 | |
Alexey Dobriyan | c231954 | 2007-11-28 16:21:23 -0800 | [diff] [blame] | 116 | static struct file_system_type proc_fs_type = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | .name = "proc", |
Al Viro | aed1d84 | 2010-07-26 13:12:54 +0400 | [diff] [blame] | 118 | .mount = proc_mount, |
Pavel Emelyanov | 07543f5 | 2007-10-18 23:40:08 -0700 | [diff] [blame] | 119 | .kill_sb = proc_kill_sb, |
Eric W. Biederman | 8654df4 | 2016-06-09 16:06:06 -0500 | [diff] [blame] | 120 | .fs_flags = FS_USERNS_MOUNT, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | }; |
| 122 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | void __init proc_root_init(void) |
| 124 | { |
Alexey Dobriyan | 5bcd7ff | 2008-10-17 03:43:55 +0400 | [diff] [blame] | 125 | int err; |
| 126 | |
| 127 | proc_init_inodecache(); |
Alexey Dobriyan | 1270dd8 | 2016-12-12 16:45:32 -0800 | [diff] [blame] | 128 | set_proc_pid_nlink(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | err = register_filesystem(&proc_fs_type); |
| 130 | if (err) |
| 131 | return; |
Pavel Emelyanov | 07543f5 | 2007-10-18 23:40:08 -0700 | [diff] [blame] | 132 | |
Eric W. Biederman | e656d8a | 2010-07-10 14:52:49 -0700 | [diff] [blame] | 133 | proc_self_init(); |
Eric W. Biederman | 0097875 | 2014-07-31 03:10:50 -0700 | [diff] [blame] | 134 | proc_thread_self_init(); |
Linus Torvalds | 155134f | 2014-08-10 21:24:59 -0700 | [diff] [blame] | 135 | proc_symlink("mounts", NULL, "self/mounts"); |
Eric W. Biederman | 457c4cb | 2007-09-12 12:01:34 +0200 | [diff] [blame] | 136 | |
| 137 | proc_net_init(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | |
| 139 | #ifdef CONFIG_SYSVIPC |
| 140 | proc_mkdir("sysvipc", NULL); |
| 141 | #endif |
Alexey Dobriyan | 36a5aeb | 2008-04-29 01:01:42 -0700 | [diff] [blame] | 142 | proc_mkdir("fs", NULL); |
Alexey Dobriyan | 928b4d8 | 2008-04-29 01:01:44 -0700 | [diff] [blame] | 143 | proc_mkdir("driver", NULL); |
Eric W. Biederman | eb6d38d | 2015-05-11 16:44:25 -0500 | [diff] [blame] | 144 | proc_create_mount_point("fs/nfsd"); /* somewhere for the nfsd filesystem to be mounted */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | #if defined(CONFIG_SUN_OPENPROMFS) || defined(CONFIG_SUN_OPENPROMFS_MODULE) |
| 146 | /* just give it a mountpoint */ |
Eric W. Biederman | eb6d38d | 2015-05-11 16:44:25 -0500 | [diff] [blame] | 147 | proc_create_mount_point("openprom"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | #endif |
| 149 | proc_tty_init(); |
Alexey Dobriyan | 9c37066 | 2008-04-29 01:01:41 -0700 | [diff] [blame] | 150 | proc_mkdir("bus", NULL); |
Eric W. Biederman | 77b14db | 2007-02-14 00:34:12 -0800 | [diff] [blame] | 151 | proc_sys_init(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | } |
| 153 | |
David Howells | a528d35 | 2017-01-31 16:46:22 +0000 | [diff] [blame] | 154 | static int proc_root_getattr(const struct path *path, struct kstat *stat, |
| 155 | u32 request_mask, unsigned int query_flags) |
Al Viro | 76b6159 | 2006-02-08 14:37:40 -0500 | [diff] [blame] | 156 | { |
David Howells | a528d35 | 2017-01-31 16:46:22 +0000 | [diff] [blame] | 157 | generic_fillattr(d_inode(path->dentry), stat); |
Al Viro | 76b6159 | 2006-02-08 14:37:40 -0500 | [diff] [blame] | 158 | stat->nlink = proc_root.nlink + nr_processes(); |
| 159 | return 0; |
| 160 | } |
| 161 | |
Al Viro | 00cd8dd | 2012-06-10 17:13:09 -0400 | [diff] [blame] | 162 | static struct dentry *proc_root_lookup(struct inode * dir, struct dentry * dentry, unsigned int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | { |
Alexey Dobriyan | 335eb53 | 2014-08-08 14:21:27 -0700 | [diff] [blame] | 164 | if (!proc_pid_lookup(dir, dentry, flags)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | |
Alexey Dobriyan | 335eb53 | 2014-08-08 14:21:27 -0700 | [diff] [blame] | 167 | return proc_lookup(dir, dentry, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | } |
| 169 | |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 170 | static int proc_root_readdir(struct file *file, struct dir_context *ctx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | { |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 172 | if (ctx->pos < FIRST_PROCESS_ENTRY) { |
Richard Genoud | 94fc5d9 | 2013-08-19 18:30:31 +0200 | [diff] [blame] | 173 | int error = proc_readdir(file, ctx); |
| 174 | if (unlikely(error <= 0)) |
| 175 | return error; |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 176 | ctx->pos = FIRST_PROCESS_ENTRY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 179 | return proc_pid_readdir(file, ctx); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | } |
| 181 | |
| 182 | /* |
| 183 | * The root /proc directory is special, as it has the |
| 184 | * <pid> directories. Thus we don't use the generic |
| 185 | * directory handling functions for that.. |
| 186 | */ |
Arjan van de Ven | 00977a5 | 2007-02-12 00:55:34 -0800 | [diff] [blame] | 187 | static const struct file_operations proc_root_operations = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | .read = generic_read_dir, |
Al Viro | f50752e | 2016-04-20 17:13:54 -0400 | [diff] [blame] | 189 | .iterate_shared = proc_root_readdir, |
| 190 | .llseek = generic_file_llseek, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | }; |
| 192 | |
| 193 | /* |
| 194 | * proc root can do almost nothing.. |
| 195 | */ |
Arjan van de Ven | c5ef1c4 | 2007-02-12 00:55:40 -0800 | [diff] [blame] | 196 | static const struct inode_operations proc_root_inode_operations = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | .lookup = proc_root_lookup, |
Al Viro | 76b6159 | 2006-02-08 14:37:40 -0500 | [diff] [blame] | 198 | .getattr = proc_root_getattr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | }; |
| 200 | |
| 201 | /* |
| 202 | * This is the root "inode" in the /proc tree.. |
| 203 | */ |
| 204 | struct proc_dir_entry proc_root = { |
| 205 | .low_ino = PROC_ROOT_INO, |
| 206 | .namelen = 5, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | .mode = S_IFDIR | S_IRUGO | S_IXUGO, |
| 208 | .nlink = 2, |
Alexey Dobriyan | 5a622f2 | 2007-12-04 23:45:28 -0800 | [diff] [blame] | 209 | .count = ATOMIC_INIT(1), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | .proc_iops = &proc_root_inode_operations, |
| 211 | .proc_fops = &proc_root_operations, |
| 212 | .parent = &proc_root, |
Nicolas Dichtel | 710585d | 2014-12-10 15:45:01 -0800 | [diff] [blame] | 213 | .subdir = RB_ROOT, |
David Howells | 09570f9 | 2011-07-27 21:47:03 +0300 | [diff] [blame] | 214 | .name = "/proc", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | }; |
| 216 | |
Pavel Emelyanov | 6f4e643 | 2007-10-18 23:40:11 -0700 | [diff] [blame] | 217 | int pid_ns_prepare_proc(struct pid_namespace *ns) |
| 218 | { |
| 219 | struct vfsmount *mnt; |
| 220 | |
| 221 | mnt = kern_mount_data(&proc_fs_type, ns); |
| 222 | if (IS_ERR(mnt)) |
| 223 | return PTR_ERR(mnt); |
| 224 | |
Al Viro | 579441a | 2010-07-26 13:09:36 +0400 | [diff] [blame] | 225 | ns->proc_mnt = mnt; |
Pavel Emelyanov | 6f4e643 | 2007-10-18 23:40:11 -0700 | [diff] [blame] | 226 | return 0; |
| 227 | } |
| 228 | |
| 229 | void pid_ns_release_proc(struct pid_namespace *ns) |
| 230 | { |
Al Viro | 905ad26 | 2011-12-08 23:20:45 -0500 | [diff] [blame] | 231 | kern_unmount(ns->proc_mnt); |
Pavel Emelyanov | 6f4e643 | 2007-10-18 23:40:11 -0700 | [diff] [blame] | 232 | } |