Eric W. Biederman | 6b4e306 | 2010-03-07 16:41:34 -0800 | [diff] [blame] | 1 | #include <linux/proc_fs.h> |
| 2 | #include <linux/nsproxy.h> |
Eric W. Biederman | 6b4e306 | 2010-03-07 16:41:34 -0800 | [diff] [blame] | 3 | #include <linux/ptrace.h> |
Eric W. Biederman | 6b4e306 | 2010-03-07 16:41:34 -0800 | [diff] [blame] | 4 | #include <linux/namei.h> |
| 5 | #include <linux/file.h> |
| 6 | #include <linux/utsname.h> |
| 7 | #include <net/net_namespace.h> |
Eric W. Biederman | 6b4e306 | 2010-03-07 16:41:34 -0800 | [diff] [blame] | 8 | #include <linux/ipc_namespace.h> |
| 9 | #include <linux/pid_namespace.h> |
Eric W. Biederman | cde1975 | 2012-07-26 06:24:06 -0700 | [diff] [blame] | 10 | #include <linux/user_namespace.h> |
Eric W. Biederman | 6b4e306 | 2010-03-07 16:41:34 -0800 | [diff] [blame] | 11 | #include "internal.h" |
| 12 | |
| 13 | |
| 14 | static const struct proc_ns_operations *ns_entries[] = { |
Eric W. Biederman | 13b6f57 | 2010-03-07 18:14:23 -0800 | [diff] [blame] | 15 | #ifdef CONFIG_NET_NS |
| 16 | &netns_operations, |
| 17 | #endif |
Eric W. Biederman | 34482e8 | 2010-03-07 18:43:27 -0800 | [diff] [blame] | 18 | #ifdef CONFIG_UTS_NS |
| 19 | &utsns_operations, |
| 20 | #endif |
Eric W. Biederman | a00eaf1 | 2010-03-07 18:48:39 -0800 | [diff] [blame] | 21 | #ifdef CONFIG_IPC_NS |
| 22 | &ipcns_operations, |
| 23 | #endif |
Eric W. Biederman | 57e8391 | 2010-03-07 18:17:03 -0800 | [diff] [blame] | 24 | #ifdef CONFIG_PID_NS |
| 25 | &pidns_operations, |
| 26 | #endif |
Eric W. Biederman | cde1975 | 2012-07-26 06:24:06 -0700 | [diff] [blame] | 27 | #ifdef CONFIG_USER_NS |
| 28 | &userns_operations, |
| 29 | #endif |
Eric W. Biederman | 8823c07 | 2010-03-07 18:49:36 -0800 | [diff] [blame] | 30 | &mntns_operations, |
Eric W. Biederman | 6b4e306 | 2010-03-07 16:41:34 -0800 | [diff] [blame] | 31 | }; |
| 32 | |
Eric W. Biederman | bf056bf | 2011-06-18 17:48:18 -0700 | [diff] [blame] | 33 | static void *proc_ns_follow_link(struct dentry *dentry, struct nameidata *nd) |
| 34 | { |
| 35 | struct inode *inode = dentry->d_inode; |
Al Viro | e149ed2 | 2014-11-01 10:57:28 -0400 | [diff] [blame^] | 36 | const struct proc_ns_operations *ns_ops = PROC_I(inode)->ns.ns_ops; |
Eric W. Biederman | bf056bf | 2011-06-18 17:48:18 -0700 | [diff] [blame] | 37 | struct task_struct *task; |
Eric W. Biederman | db04dc6 | 2013-03-09 00:14:45 -0800 | [diff] [blame] | 38 | struct path ns_path; |
Eric W. Biederman | bf056bf | 2011-06-18 17:48:18 -0700 | [diff] [blame] | 39 | void *error = ERR_PTR(-EACCES); |
| 40 | |
| 41 | task = get_proc_task(inode); |
| 42 | if (!task) |
Al Viro | e149ed2 | 2014-11-01 10:57:28 -0400 | [diff] [blame^] | 43 | return error; |
Eric W. Biederman | bf056bf | 2011-06-18 17:48:18 -0700 | [diff] [blame] | 44 | |
Al Viro | e149ed2 | 2014-11-01 10:57:28 -0400 | [diff] [blame^] | 45 | if (ptrace_may_access(task, PTRACE_MODE_READ)) { |
| 46 | error = ns_get_path(&ns_path, task, ns_ops); |
| 47 | if (!error) |
| 48 | nd_jump_link(nd, &ns_path); |
Eric W. Biederman | bf056bf | 2011-06-18 17:48:18 -0700 | [diff] [blame] | 49 | } |
Eric W. Biederman | bf056bf | 2011-06-18 17:48:18 -0700 | [diff] [blame] | 50 | put_task_struct(task); |
Eric W. Biederman | bf056bf | 2011-06-18 17:48:18 -0700 | [diff] [blame] | 51 | return error; |
| 52 | } |
| 53 | |
| 54 | static int proc_ns_readlink(struct dentry *dentry, char __user *buffer, int buflen) |
| 55 | { |
| 56 | struct inode *inode = dentry->d_inode; |
Al Viro | e149ed2 | 2014-11-01 10:57:28 -0400 | [diff] [blame^] | 57 | const struct proc_ns_operations *ns_ops = PROC_I(inode)->ns.ns_ops; |
Eric W. Biederman | bf056bf | 2011-06-18 17:48:18 -0700 | [diff] [blame] | 58 | struct task_struct *task; |
Eric W. Biederman | bf056bf | 2011-06-18 17:48:18 -0700 | [diff] [blame] | 59 | char name[50]; |
Al Viro | 5d826c8 | 2014-03-14 13:42:45 -0400 | [diff] [blame] | 60 | int res = -EACCES; |
Eric W. Biederman | bf056bf | 2011-06-18 17:48:18 -0700 | [diff] [blame] | 61 | |
| 62 | task = get_proc_task(inode); |
| 63 | if (!task) |
Al Viro | e149ed2 | 2014-11-01 10:57:28 -0400 | [diff] [blame^] | 64 | return res; |
Eric W. Biederman | bf056bf | 2011-06-18 17:48:18 -0700 | [diff] [blame] | 65 | |
Al Viro | e149ed2 | 2014-11-01 10:57:28 -0400 | [diff] [blame^] | 66 | if (ptrace_may_access(task, PTRACE_MODE_READ)) { |
| 67 | res = ns_get_name(name, sizeof(name), task, ns_ops); |
| 68 | if (res >= 0) |
| 69 | res = readlink_copy(buffer, buflen, name); |
| 70 | } |
Eric W. Biederman | bf056bf | 2011-06-18 17:48:18 -0700 | [diff] [blame] | 71 | put_task_struct(task); |
Al Viro | 5d826c8 | 2014-03-14 13:42:45 -0400 | [diff] [blame] | 72 | return res; |
Eric W. Biederman | bf056bf | 2011-06-18 17:48:18 -0700 | [diff] [blame] | 73 | } |
| 74 | |
| 75 | static const struct inode_operations proc_ns_link_inode_operations = { |
| 76 | .readlink = proc_ns_readlink, |
| 77 | .follow_link = proc_ns_follow_link, |
| 78 | .setattr = proc_setattr, |
| 79 | }; |
| 80 | |
Al Viro | c52a47a | 2013-06-15 11:15:20 +0400 | [diff] [blame] | 81 | static int proc_ns_instantiate(struct inode *dir, |
Eric W. Biederman | 6b4e306 | 2010-03-07 16:41:34 -0800 | [diff] [blame] | 82 | struct dentry *dentry, struct task_struct *task, const void *ptr) |
| 83 | { |
| 84 | const struct proc_ns_operations *ns_ops = ptr; |
| 85 | struct inode *inode; |
| 86 | struct proc_inode *ei; |
Eric W. Biederman | 6b4e306 | 2010-03-07 16:41:34 -0800 | [diff] [blame] | 87 | |
| 88 | inode = proc_pid_make_inode(dir->i_sb, task); |
| 89 | if (!inode) |
| 90 | goto out; |
| 91 | |
| 92 | ei = PROC_I(inode); |
Eric W. Biederman | bf056bf | 2011-06-18 17:48:18 -0700 | [diff] [blame] | 93 | inode->i_mode = S_IFLNK|S_IRWXUGO; |
| 94 | inode->i_op = &proc_ns_link_inode_operations; |
David Howells | 0bb80f2 | 2013-04-12 01:50:06 +0100 | [diff] [blame] | 95 | ei->ns.ns_ops = ns_ops; |
Eric W. Biederman | 6b4e306 | 2010-03-07 16:41:34 -0800 | [diff] [blame] | 96 | |
Pravin B Shelar | 1b26c9b | 2012-03-23 15:02:55 -0700 | [diff] [blame] | 97 | d_set_d_op(dentry, &pid_dentry_operations); |
Eric W. Biederman | 6b4e306 | 2010-03-07 16:41:34 -0800 | [diff] [blame] | 98 | d_add(dentry, inode); |
| 99 | /* Close the race of the process dying before we return the dentry */ |
Al Viro | 0b728e1 | 2012-06-10 16:03:43 -0400 | [diff] [blame] | 100 | if (pid_revalidate(dentry, 0)) |
Al Viro | c52a47a | 2013-06-15 11:15:20 +0400 | [diff] [blame] | 101 | return 0; |
Eric W. Biederman | 6b4e306 | 2010-03-07 16:41:34 -0800 | [diff] [blame] | 102 | out: |
Al Viro | c52a47a | 2013-06-15 11:15:20 +0400 | [diff] [blame] | 103 | return -ENOENT; |
Eric W. Biederman | 6b4e306 | 2010-03-07 16:41:34 -0800 | [diff] [blame] | 104 | } |
| 105 | |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 106 | static int proc_ns_dir_readdir(struct file *file, struct dir_context *ctx) |
Eric W. Biederman | 6b4e306 | 2010-03-07 16:41:34 -0800 | [diff] [blame] | 107 | { |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 108 | struct task_struct *task = get_proc_task(file_inode(file)); |
Eric W. Biederman | 6b4e306 | 2010-03-07 16:41:34 -0800 | [diff] [blame] | 109 | const struct proc_ns_operations **entry, **last; |
Eric W. Biederman | 6b4e306 | 2010-03-07 16:41:34 -0800 | [diff] [blame] | 110 | |
Eric W. Biederman | 6b4e306 | 2010-03-07 16:41:34 -0800 | [diff] [blame] | 111 | if (!task) |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 112 | return -ENOENT; |
Eric W. Biederman | 6b4e306 | 2010-03-07 16:41:34 -0800 | [diff] [blame] | 113 | |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 114 | if (!dir_emit_dots(file, ctx)) |
| 115 | goto out; |
| 116 | if (ctx->pos >= 2 + ARRAY_SIZE(ns_entries)) |
| 117 | goto out; |
| 118 | entry = ns_entries + (ctx->pos - 2); |
| 119 | last = &ns_entries[ARRAY_SIZE(ns_entries) - 1]; |
| 120 | while (entry <= last) { |
| 121 | const struct proc_ns_operations *ops = *entry; |
| 122 | if (!proc_fill_cache(file, ctx, ops->name, strlen(ops->name), |
| 123 | proc_ns_instantiate, task, ops)) |
| 124 | break; |
| 125 | ctx->pos++; |
| 126 | entry++; |
Eric W. Biederman | 6b4e306 | 2010-03-07 16:41:34 -0800 | [diff] [blame] | 127 | } |
Eric W. Biederman | 6b4e306 | 2010-03-07 16:41:34 -0800 | [diff] [blame] | 128 | out: |
| 129 | put_task_struct(task); |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 130 | return 0; |
Eric W. Biederman | 6b4e306 | 2010-03-07 16:41:34 -0800 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | const struct file_operations proc_ns_dir_operations = { |
| 134 | .read = generic_read_dir, |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 135 | .iterate = proc_ns_dir_readdir, |
Eric W. Biederman | 6b4e306 | 2010-03-07 16:41:34 -0800 | [diff] [blame] | 136 | }; |
| 137 | |
| 138 | static struct dentry *proc_ns_dir_lookup(struct inode *dir, |
Al Viro | 00cd8dd | 2012-06-10 17:13:09 -0400 | [diff] [blame] | 139 | struct dentry *dentry, unsigned int flags) |
Eric W. Biederman | 6b4e306 | 2010-03-07 16:41:34 -0800 | [diff] [blame] | 140 | { |
Al Viro | c52a47a | 2013-06-15 11:15:20 +0400 | [diff] [blame] | 141 | int error; |
Eric W. Biederman | 6b4e306 | 2010-03-07 16:41:34 -0800 | [diff] [blame] | 142 | struct task_struct *task = get_proc_task(dir); |
| 143 | const struct proc_ns_operations **entry, **last; |
| 144 | unsigned int len = dentry->d_name.len; |
| 145 | |
Al Viro | c52a47a | 2013-06-15 11:15:20 +0400 | [diff] [blame] | 146 | error = -ENOENT; |
Eric W. Biederman | 6b4e306 | 2010-03-07 16:41:34 -0800 | [diff] [blame] | 147 | |
| 148 | if (!task) |
| 149 | goto out_no_task; |
| 150 | |
Andrew Morton | 4c619aa | 2012-03-28 14:42:52 -0700 | [diff] [blame] | 151 | last = &ns_entries[ARRAY_SIZE(ns_entries)]; |
| 152 | for (entry = ns_entries; entry < last; entry++) { |
Eric W. Biederman | 6b4e306 | 2010-03-07 16:41:34 -0800 | [diff] [blame] | 153 | if (strlen((*entry)->name) != len) |
| 154 | continue; |
| 155 | if (!memcmp(dentry->d_name.name, (*entry)->name, len)) |
| 156 | break; |
| 157 | } |
Andrew Morton | 4c619aa | 2012-03-28 14:42:52 -0700 | [diff] [blame] | 158 | if (entry == last) |
Eric W. Biederman | 6b4e306 | 2010-03-07 16:41:34 -0800 | [diff] [blame] | 159 | goto out; |
| 160 | |
| 161 | error = proc_ns_instantiate(dir, dentry, task, *entry); |
| 162 | out: |
| 163 | put_task_struct(task); |
| 164 | out_no_task: |
Al Viro | c52a47a | 2013-06-15 11:15:20 +0400 | [diff] [blame] | 165 | return ERR_PTR(error); |
Eric W. Biederman | 6b4e306 | 2010-03-07 16:41:34 -0800 | [diff] [blame] | 166 | } |
| 167 | |
| 168 | const struct inode_operations proc_ns_dir_inode_operations = { |
| 169 | .lookup = proc_ns_dir_lookup, |
| 170 | .getattr = pid_getattr, |
| 171 | .setattr = proc_setattr, |
| 172 | }; |