Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * linux/fs/proc/base.c |
| 4 | * |
| 5 | * Copyright (C) 1991, 1992 Linus Torvalds |
| 6 | * |
| 7 | * proc base directory handling functions |
| 8 | * |
| 9 | * 1999, Al Viro. Rewritten. Now it covers the whole per-process part. |
| 10 | * Instead of using magical inumbers to determine the kind of object |
| 11 | * we allocate and fill in-core inodes upon lookup. They don't even |
| 12 | * go into icache. We cache the reference to task_struct upon lookup too. |
| 13 | * Eventually it should become a filesystem in its own. We don't use the |
| 14 | * rest of procfs anymore. |
Mauricio Lin | e070ad4 | 2005-09-03 15:55:10 -0700 | [diff] [blame] | 15 | * |
| 16 | * |
| 17 | * Changelog: |
| 18 | * 17-Jan-2005 |
| 19 | * Allan Bezerra |
| 20 | * Bruna Moreira <bruna.moreira@indt.org.br> |
| 21 | * Edjard Mota <edjard.mota@indt.org.br> |
| 22 | * Ilias Biris <ilias.biris@indt.org.br> |
| 23 | * Mauricio Lin <mauricio.lin@indt.org.br> |
| 24 | * |
| 25 | * Embedded Linux Lab - 10LE Instituto Nokia de Tecnologia - INdT |
| 26 | * |
| 27 | * A new process specific entry (smaps) included in /proc. It shows the |
| 28 | * size of rss for each memory area. The maps entry lacks information |
| 29 | * about physical memory size (rss) for each mapped file, i.e., |
| 30 | * rss information for executables and library files. |
| 31 | * This additional information is useful for any tools that need to know |
| 32 | * about physical memory consumption for a process specific library. |
| 33 | * |
| 34 | * Changelog: |
| 35 | * 21-Feb-2005 |
| 36 | * Embedded Linux Lab - 10LE Instituto Nokia de Tecnologia - INdT |
| 37 | * Pud inclusion in the page table walking. |
| 38 | * |
| 39 | * ChangeLog: |
| 40 | * 10-Mar-2005 |
| 41 | * 10LE Instituto Nokia de Tecnologia - INdT: |
| 42 | * A better way to walks through the page table as suggested by Hugh Dickins. |
| 43 | * |
| 44 | * Simo Piiroinen <simo.piiroinen@nokia.com>: |
| 45 | * Smaps information related to shared, private, clean and dirty pages. |
| 46 | * |
| 47 | * Paul Mundt <paul.mundt@nokia.com>: |
| 48 | * Overall revision about smaps. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | */ |
| 50 | |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 51 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | #include <linux/errno.h> |
| 54 | #include <linux/time.h> |
| 55 | #include <linux/proc_fs.h> |
| 56 | #include <linux/stat.h> |
Andrea Righi | 5995477 | 2008-07-27 17:29:15 +0200 | [diff] [blame] | 57 | #include <linux/task_io_accounting_ops.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | #include <linux/init.h> |
Randy Dunlap | 16f7e0f | 2006-01-11 12:17:46 -0800 | [diff] [blame] | 59 | #include <linux/capability.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | #include <linux/file.h> |
Al Viro | 9f3acc3 | 2008-04-24 07:44:08 -0400 | [diff] [blame] | 61 | #include <linux/fdtable.h> |
Kent Overstreet | 94f8f3b | 2019-03-11 23:31:18 -0700 | [diff] [blame] | 62 | #include <linux/generic-radix-tree.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | #include <linux/string.h> |
| 64 | #include <linux/seq_file.h> |
| 65 | #include <linux/namei.h> |
Kirill Korotaev | 6b3286e | 2006-12-08 02:37:56 -0800 | [diff] [blame] | 66 | #include <linux/mnt_namespace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | #include <linux/mm.h> |
David Rientjes | a63d83f | 2010-08-09 17:19:46 -0700 | [diff] [blame] | 68 | #include <linux/swap.h> |
Dipankar Sarma | b835996 | 2005-09-09 13:04:14 -0700 | [diff] [blame] | 69 | #include <linux/rcupdate.h> |
Kees Cook | 54354c6 | 2021-09-29 15:02:13 -0700 | [diff] [blame] | 70 | #include <linux/kallsyms.h> |
Ken Chen | 2ec220e | 2008-11-10 11:26:08 +0300 | [diff] [blame] | 71 | #include <linux/stacktrace.h> |
Neil Horman | d85f50d | 2007-10-18 23:40:37 -0700 | [diff] [blame] | 72 | #include <linux/resource.h> |
Kees Cook | 5096add | 2007-05-08 00:26:04 -0700 | [diff] [blame] | 73 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | #include <linux/mount.h> |
| 75 | #include <linux/security.h> |
| 76 | #include <linux/ptrace.h> |
Roland McGrath | 0d094ef | 2008-07-25 19:45:49 -0700 | [diff] [blame] | 77 | #include <linux/tracehook.h> |
Andrew Morton | 87ebdc0 | 2013-02-27 17:03:16 -0800 | [diff] [blame] | 78 | #include <linux/printk.h> |
Alexey Dobriyan | efb1a57 | 2018-02-06 15:37:24 -0800 | [diff] [blame] | 79 | #include <linux/cache.h> |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 80 | #include <linux/cgroup.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | #include <linux/cpuset.h> |
| 82 | #include <linux/audit.h> |
Al Viro | 5addc5d | 2005-11-07 17:15:49 -0500 | [diff] [blame] | 83 | #include <linux/poll.h> |
Serge E. Hallyn | 1651e14 | 2006-10-02 02:18:08 -0700 | [diff] [blame] | 84 | #include <linux/nsproxy.h> |
Alexey Dobriyan | 8ac773b | 2006-10-19 23:28:32 -0700 | [diff] [blame] | 85 | #include <linux/oom.h> |
Kawai, Hidehiro | 3cb4a0b | 2007-07-19 01:48:28 -0700 | [diff] [blame] | 86 | #include <linux/elf.h> |
Pavel Emelyanov | 60347f6 | 2007-10-18 23:40:03 -0700 | [diff] [blame] | 87 | #include <linux/pid_namespace.h> |
Eric W. Biederman | 22d917d | 2011-11-17 00:11:58 -0800 | [diff] [blame] | 88 | #include <linux/user_namespace.h> |
Al Viro | 5ad4e53 | 2009-03-29 19:50:06 -0400 | [diff] [blame] | 89 | #include <linux/fs_struct.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 90 | #include <linux/slab.h> |
Ingo Molnar | 4eb5aaa | 2017-02-08 18:51:29 +0100 | [diff] [blame] | 91 | #include <linux/sched/autogroup.h> |
Ingo Molnar | 6e84f31 | 2017-02-08 18:51:29 +0100 | [diff] [blame] | 92 | #include <linux/sched/mm.h> |
Ingo Molnar | f7ccbae | 2017-02-08 18:51:30 +0100 | [diff] [blame] | 93 | #include <linux/sched/coredump.h> |
Ingo Molnar | b17b015 | 2017-02-08 18:51:35 +0100 | [diff] [blame] | 94 | #include <linux/sched/debug.h> |
Ingo Molnar | 3905f9a | 2017-02-05 12:07:04 +0100 | [diff] [blame] | 95 | #include <linux/sched/stat.h> |
Pavel Emelyanov | 48f6a7a | 2013-03-11 13:12:45 +0400 | [diff] [blame] | 96 | #include <linux/posix-timers.h> |
Andrei Vagin | 04a8682 | 2019-11-12 01:27:16 +0000 | [diff] [blame] | 97 | #include <linux/time_namespace.h> |
Chen Yu | e79f15a | 2020-01-15 17:28:51 +0800 | [diff] [blame] | 98 | #include <linux/resctrl.h> |
Ohhoon Kwon | c2f273e | 2021-09-07 19:57:35 -0700 | [diff] [blame] | 99 | #include <linux/cn_proc.h> |
KAMEZAWA Hiroyuki | 43d2b11 | 2012-01-10 15:08:09 -0800 | [diff] [blame] | 100 | #include <trace/events/oom.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | #include "internal.h" |
Cyrill Gorcunov | faf60af | 2012-08-23 14:43:24 +0400 | [diff] [blame] | 102 | #include "fd.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | |
Alexey Dobriyan | ac7f106 | 2018-02-06 15:36:59 -0800 | [diff] [blame] | 104 | #include "../../lib/kstrtox.h" |
| 105 | |
Eric W. Biederman | 0f2fe20 | 2006-06-26 00:25:46 -0700 | [diff] [blame] | 106 | /* NOTE: |
| 107 | * Implementing inode permission operations in /proc is almost |
| 108 | * certainly an error. Permission checks need to happen during |
| 109 | * each system call not at open time. The reason is that most of |
| 110 | * what we wish to check for permissions in /proc varies at runtime. |
| 111 | * |
| 112 | * The classic example of a problem is opening file descriptors |
| 113 | * in /proc for a task before it execs a suid executable. |
| 114 | */ |
| 115 | |
Alexey Dobriyan | efb1a57 | 2018-02-06 15:37:24 -0800 | [diff] [blame] | 116 | static u8 nlink_tid __ro_after_init; |
| 117 | static u8 nlink_tgid __ro_after_init; |
Alexey Dobriyan | 1270dd8 | 2016-12-12 16:45:32 -0800 | [diff] [blame] | 118 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | struct pid_entry { |
Alexey Dobriyan | cedbcca | 2014-08-08 14:21:33 -0700 | [diff] [blame] | 120 | const char *name; |
Alexey Dobriyan | 623f594 | 2016-12-12 16:45:08 -0800 | [diff] [blame] | 121 | unsigned int len; |
Al Viro | d161a13 | 2011-07-24 03:36:29 -0400 | [diff] [blame] | 122 | umode_t mode; |
Arjan van de Ven | c5ef1c4 | 2007-02-12 00:55:40 -0800 | [diff] [blame] | 123 | const struct inode_operations *iop; |
Arjan van de Ven | 00977a5 | 2007-02-12 00:55:34 -0800 | [diff] [blame] | 124 | const struct file_operations *fop; |
Eric W. Biederman | 20cdc89 | 2006-10-02 02:17:07 -0700 | [diff] [blame] | 125 | union proc_op op; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | }; |
| 127 | |
Eric W. Biederman | 61a2878 | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 128 | #define NOD(NAME, MODE, IOP, FOP, OP) { \ |
Eric W. Biederman | 20cdc89 | 2006-10-02 02:17:07 -0700 | [diff] [blame] | 129 | .name = (NAME), \ |
Eric Dumazet | c5141e6 | 2007-05-08 00:26:15 -0700 | [diff] [blame] | 130 | .len = sizeof(NAME) - 1, \ |
Eric W. Biederman | 20cdc89 | 2006-10-02 02:17:07 -0700 | [diff] [blame] | 131 | .mode = MODE, \ |
| 132 | .iop = IOP, \ |
| 133 | .fop = FOP, \ |
| 134 | .op = OP, \ |
| 135 | } |
| 136 | |
Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 137 | #define DIR(NAME, MODE, iops, fops) \ |
| 138 | NOD(NAME, (S_IFDIR|(MODE)), &iops, &fops, {} ) |
| 139 | #define LNK(NAME, get_link) \ |
Eric W. Biederman | 61a2878 | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 140 | NOD(NAME, (S_IFLNK|S_IRWXUGO), \ |
Eric W. Biederman | 20cdc89 | 2006-10-02 02:17:07 -0700 | [diff] [blame] | 141 | &proc_pid_link_inode_operations, NULL, \ |
Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 142 | { .proc_get_link = get_link } ) |
| 143 | #define REG(NAME, MODE, fops) \ |
| 144 | NOD(NAME, (S_IFREG|(MODE)), NULL, &fops, {}) |
Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 145 | #define ONE(NAME, MODE, show) \ |
Casey Schaufler | 6d9c939 | 2018-09-21 17:16:59 -0700 | [diff] [blame] | 146 | NOD(NAME, (S_IFREG|(MODE)), \ |
Eric W. Biederman | be61408 | 2008-02-08 04:18:30 -0800 | [diff] [blame] | 147 | NULL, &proc_single_file_operations, \ |
Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 148 | { .proc_show = show } ) |
Casey Schaufler | 6d9c939 | 2018-09-21 17:16:59 -0700 | [diff] [blame] | 149 | #define ATTR(LSM, NAME, MODE) \ |
| 150 | NOD(NAME, (S_IFREG|(MODE)), \ |
| 151 | NULL, &proc_pid_attr_operations, \ |
| 152 | { .lsm = LSM }) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | |
Vegard Nossum | aed5417 | 2008-06-05 22:46:53 -0700 | [diff] [blame] | 154 | /* |
| 155 | * Count the number of hardlinks for the pid_entry table, excluding the . |
| 156 | * and .. links. |
| 157 | */ |
Alexey Dobriyan | 1270dd8 | 2016-12-12 16:45:32 -0800 | [diff] [blame] | 158 | static unsigned int __init pid_entry_nlink(const struct pid_entry *entries, |
Vegard Nossum | aed5417 | 2008-06-05 22:46:53 -0700 | [diff] [blame] | 159 | unsigned int n) |
| 160 | { |
| 161 | unsigned int i; |
| 162 | unsigned int count; |
| 163 | |
Alexey Dobriyan | 1270dd8 | 2016-12-12 16:45:32 -0800 | [diff] [blame] | 164 | count = 2; |
Vegard Nossum | aed5417 | 2008-06-05 22:46:53 -0700 | [diff] [blame] | 165 | for (i = 0; i < n; ++i) { |
| 166 | if (S_ISDIR(entries[i].mode)) |
| 167 | ++count; |
| 168 | } |
| 169 | |
| 170 | return count; |
| 171 | } |
| 172 | |
Miklos Szeredi | f7ad3c6 | 2010-08-10 11:41:36 +0200 | [diff] [blame] | 173 | static int get_task_root(struct task_struct *task, struct path *root) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | { |
Hugh Dickins | 7c2c7d9 | 2009-03-28 23:21:27 +0000 | [diff] [blame] | 175 | int result = -ENOENT; |
| 176 | |
Miklos Szeredi | 0494f6e | 2005-09-06 15:18:22 -0700 | [diff] [blame] | 177 | task_lock(task); |
Miklos Szeredi | f7ad3c6 | 2010-08-10 11:41:36 +0200 | [diff] [blame] | 178 | if (task->fs) { |
| 179 | get_fs_root(task->fs, root); |
Hugh Dickins | 7c2c7d9 | 2009-03-28 23:21:27 +0000 | [diff] [blame] | 180 | result = 0; |
| 181 | } |
Miklos Szeredi | 0494f6e | 2005-09-06 15:18:22 -0700 | [diff] [blame] | 182 | task_unlock(task); |
Hugh Dickins | 7c2c7d9 | 2009-03-28 23:21:27 +0000 | [diff] [blame] | 183 | return result; |
Miklos Szeredi | 0494f6e | 2005-09-06 15:18:22 -0700 | [diff] [blame] | 184 | } |
| 185 | |
Cyrill Gorcunov | 7773fbc | 2012-01-10 15:11:20 -0800 | [diff] [blame] | 186 | static int proc_cwd_link(struct dentry *dentry, struct path *path) |
Miklos Szeredi | 0494f6e | 2005-09-06 15:18:22 -0700 | [diff] [blame] | 187 | { |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 188 | struct task_struct *task = get_proc_task(d_inode(dentry)); |
Miklos Szeredi | 0494f6e | 2005-09-06 15:18:22 -0700 | [diff] [blame] | 189 | int result = -ENOENT; |
Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 190 | |
| 191 | if (task) { |
Miklos Szeredi | f7ad3c6 | 2010-08-10 11:41:36 +0200 | [diff] [blame] | 192 | task_lock(task); |
| 193 | if (task->fs) { |
| 194 | get_fs_pwd(task->fs, path); |
| 195 | result = 0; |
| 196 | } |
| 197 | task_unlock(task); |
Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 198 | put_task_struct(task); |
| 199 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | return result; |
| 201 | } |
| 202 | |
Cyrill Gorcunov | 7773fbc | 2012-01-10 15:11:20 -0800 | [diff] [blame] | 203 | static int proc_root_link(struct dentry *dentry, struct path *path) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | { |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 205 | struct task_struct *task = get_proc_task(d_inode(dentry)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | int result = -ENOENT; |
Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 207 | |
| 208 | if (task) { |
Miklos Szeredi | f7ad3c6 | 2010-08-10 11:41:36 +0200 | [diff] [blame] | 209 | result = get_task_root(task, path); |
Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 210 | put_task_struct(task); |
| 211 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | return result; |
| 213 | } |
| 214 | |
Linus Torvalds | d26d0cd9 | 2019-07-13 14:27:14 -0700 | [diff] [blame] | 215 | /* |
| 216 | * If the user used setproctitle(), we just get the string from |
| 217 | * user space at arg_start, and limit it to a maximum of one page. |
| 218 | */ |
| 219 | static ssize_t get_mm_proctitle(struct mm_struct *mm, char __user *buf, |
| 220 | size_t count, unsigned long pos, |
| 221 | unsigned long arg_start) |
| 222 | { |
| 223 | char *page; |
| 224 | int ret, got; |
| 225 | |
| 226 | if (pos >= PAGE_SIZE) |
| 227 | return 0; |
| 228 | |
| 229 | page = (char *)__get_free_page(GFP_KERNEL); |
| 230 | if (!page) |
| 231 | return -ENOMEM; |
| 232 | |
| 233 | ret = 0; |
| 234 | got = access_remote_vm(mm, arg_start, page, PAGE_SIZE, FOLL_ANON); |
| 235 | if (got > 0) { |
| 236 | int len = strnlen(page, got); |
| 237 | |
| 238 | /* Include the NUL character if it was found */ |
| 239 | if (len < got) |
| 240 | len++; |
| 241 | |
| 242 | if (len > pos) { |
| 243 | len -= pos; |
| 244 | if (len > count) |
| 245 | len = count; |
| 246 | len -= copy_to_user(buf, page+pos, len); |
| 247 | if (!len) |
| 248 | len = -EFAULT; |
| 249 | ret = len; |
| 250 | } |
| 251 | } |
| 252 | free_page((unsigned long)page); |
| 253 | return ret; |
| 254 | } |
| 255 | |
Linus Torvalds | e4b4e44 | 2018-05-17 13:04:17 -0700 | [diff] [blame] | 256 | static ssize_t get_mm_cmdline(struct mm_struct *mm, char __user *buf, |
Linus Torvalds | 5ab8271 | 2018-05-17 15:17:33 -0700 | [diff] [blame] | 257 | size_t count, loff_t *ppos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | { |
Alexey Dobriyan | c2c0bb4 | 2015-06-25 15:00:54 -0700 | [diff] [blame] | 259 | unsigned long arg_start, arg_end, env_start, env_end; |
Linus Torvalds | 5ab8271 | 2018-05-17 15:17:33 -0700 | [diff] [blame] | 260 | unsigned long pos, len; |
Linus Torvalds | d26d0cd9 | 2019-07-13 14:27:14 -0700 | [diff] [blame] | 261 | char *page, c; |
Alexey Dobriyan | c2c0bb4 | 2015-06-25 15:00:54 -0700 | [diff] [blame] | 262 | |
Alexey Dobriyan | c2c0bb4 | 2015-06-25 15:00:54 -0700 | [diff] [blame] | 263 | /* Check if process spawned far enough to have cmdline. */ |
Linus Torvalds | e4b4e44 | 2018-05-17 13:04:17 -0700 | [diff] [blame] | 264 | if (!mm->env_end) |
| 265 | return 0; |
Alexey Dobriyan | c2c0bb4 | 2015-06-25 15:00:54 -0700 | [diff] [blame] | 266 | |
Yang Shi | 88aa7cc | 2018-06-07 17:05:28 -0700 | [diff] [blame] | 267 | spin_lock(&mm->arg_lock); |
Alexey Dobriyan | c2c0bb4 | 2015-06-25 15:00:54 -0700 | [diff] [blame] | 268 | arg_start = mm->arg_start; |
| 269 | arg_end = mm->arg_end; |
| 270 | env_start = mm->env_start; |
| 271 | env_end = mm->env_end; |
Yang Shi | 88aa7cc | 2018-06-07 17:05:28 -0700 | [diff] [blame] | 272 | spin_unlock(&mm->arg_lock); |
Alexey Dobriyan | c2c0bb4 | 2015-06-25 15:00:54 -0700 | [diff] [blame] | 273 | |
Linus Torvalds | 5ab8271 | 2018-05-17 15:17:33 -0700 | [diff] [blame] | 274 | if (arg_start >= arg_end) |
| 275 | return 0; |
Alexey Dobriyan | 6a6cbe7 | 2018-06-07 17:09:59 -0700 | [diff] [blame] | 276 | |
Alexey Dobriyan | 2ca66ff | 2014-08-08 14:21:41 -0700 | [diff] [blame] | 277 | /* |
Linus Torvalds | d26d0cd9 | 2019-07-13 14:27:14 -0700 | [diff] [blame] | 278 | * We allow setproctitle() to overwrite the argument |
| 279 | * strings, and overflow past the original end. But |
| 280 | * only when it overflows into the environment area. |
Alexey Dobriyan | 2ca66ff | 2014-08-08 14:21:41 -0700 | [diff] [blame] | 281 | */ |
Linus Torvalds | d26d0cd9 | 2019-07-13 14:27:14 -0700 | [diff] [blame] | 282 | if (env_start != arg_end || env_end < env_start) |
Linus Torvalds | 5ab8271 | 2018-05-17 15:17:33 -0700 | [diff] [blame] | 283 | env_start = env_end = arg_end; |
Linus Torvalds | d26d0cd9 | 2019-07-13 14:27:14 -0700 | [diff] [blame] | 284 | len = env_end - arg_start; |
Linus Torvalds | f5b6534 | 2018-06-20 09:47:20 +0900 | [diff] [blame] | 285 | |
Linus Torvalds | 5ab8271 | 2018-05-17 15:17:33 -0700 | [diff] [blame] | 286 | /* We're not going to care if "*ppos" has high bits set */ |
Linus Torvalds | d26d0cd9 | 2019-07-13 14:27:14 -0700 | [diff] [blame] | 287 | pos = *ppos; |
| 288 | if (pos >= len) |
| 289 | return 0; |
| 290 | if (count > len - pos) |
| 291 | count = len - pos; |
| 292 | if (!count) |
Linus Torvalds | 5ab8271 | 2018-05-17 15:17:33 -0700 | [diff] [blame] | 293 | return 0; |
Alexey Dobriyan | c2c0bb4 | 2015-06-25 15:00:54 -0700 | [diff] [blame] | 294 | |
Linus Torvalds | d26d0cd9 | 2019-07-13 14:27:14 -0700 | [diff] [blame] | 295 | /* |
| 296 | * Magical special case: if the argv[] end byte is not |
| 297 | * zero, the user has overwritten it with setproctitle(3). |
| 298 | * |
| 299 | * Possible future enhancement: do this only once when |
| 300 | * pos is 0, and set a flag in the 'struct file'. |
| 301 | */ |
| 302 | if (access_remote_vm(mm, arg_end-1, &c, 1, FOLL_ANON) == 1 && c) |
| 303 | return get_mm_proctitle(mm, buf, count, pos, arg_start); |
| 304 | |
| 305 | /* |
| 306 | * For the non-setproctitle() case we limit things strictly |
| 307 | * to the [arg_start, arg_end[ range. |
| 308 | */ |
| 309 | pos += arg_start; |
Linus Torvalds | 3d71254 | 2019-07-13 13:40:13 -0700 | [diff] [blame] | 310 | if (pos < arg_start || pos >= arg_end) |
Alexey Dobriyan | c2c0bb4 | 2015-06-25 15:00:54 -0700 | [diff] [blame] | 311 | return 0; |
Linus Torvalds | 3d71254 | 2019-07-13 13:40:13 -0700 | [diff] [blame] | 312 | if (count > arg_end - pos) |
| 313 | count = arg_end - pos; |
Alexey Dobriyan | c2c0bb4 | 2015-06-25 15:00:54 -0700 | [diff] [blame] | 314 | |
Linus Torvalds | 5ab8271 | 2018-05-17 15:17:33 -0700 | [diff] [blame] | 315 | page = (char *)__get_free_page(GFP_KERNEL); |
| 316 | if (!page) |
| 317 | return -ENOMEM; |
Alexey Dobriyan | c2c0bb4 | 2015-06-25 15:00:54 -0700 | [diff] [blame] | 318 | |
Linus Torvalds | 5ab8271 | 2018-05-17 15:17:33 -0700 | [diff] [blame] | 319 | len = 0; |
| 320 | while (count) { |
| 321 | int got; |
| 322 | size_t size = min_t(size_t, PAGE_SIZE, count); |
Alexey Dobriyan | c2c0bb4 | 2015-06-25 15:00:54 -0700 | [diff] [blame] | 323 | |
Linus Torvalds | 3d71254 | 2019-07-13 13:40:13 -0700 | [diff] [blame] | 324 | got = access_remote_vm(mm, pos, page, size, FOLL_ANON); |
| 325 | if (got <= 0) |
Linus Torvalds | 5ab8271 | 2018-05-17 15:17:33 -0700 | [diff] [blame] | 326 | break; |
Linus Torvalds | 3d71254 | 2019-07-13 13:40:13 -0700 | [diff] [blame] | 327 | got -= copy_to_user(buf, page, got); |
Linus Torvalds | 5ab8271 | 2018-05-17 15:17:33 -0700 | [diff] [blame] | 328 | if (unlikely(!got)) { |
| 329 | if (!len) |
| 330 | len = -EFAULT; |
| 331 | break; |
Alexey Dobriyan | c2c0bb4 | 2015-06-25 15:00:54 -0700 | [diff] [blame] | 332 | } |
Linus Torvalds | 5ab8271 | 2018-05-17 15:17:33 -0700 | [diff] [blame] | 333 | pos += got; |
| 334 | buf += got; |
| 335 | len += got; |
| 336 | count -= got; |
Alexey Dobriyan | 3cb4e16 | 2018-06-07 17:10:02 -0700 | [diff] [blame] | 337 | } |
| 338 | |
Alexey Dobriyan | c2c0bb4 | 2015-06-25 15:00:54 -0700 | [diff] [blame] | 339 | free_page((unsigned long)page); |
Linus Torvalds | 5ab8271 | 2018-05-17 15:17:33 -0700 | [diff] [blame] | 340 | return len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | } |
| 342 | |
Linus Torvalds | e4b4e44 | 2018-05-17 13:04:17 -0700 | [diff] [blame] | 343 | static ssize_t get_task_cmdline(struct task_struct *tsk, char __user *buf, |
| 344 | size_t count, loff_t *pos) |
| 345 | { |
| 346 | struct mm_struct *mm; |
| 347 | ssize_t ret; |
| 348 | |
| 349 | mm = get_task_mm(tsk); |
| 350 | if (!mm) |
| 351 | return 0; |
| 352 | |
| 353 | ret = get_mm_cmdline(mm, buf, count, pos); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | mmput(mm); |
Linus Torvalds | e4b4e44 | 2018-05-17 13:04:17 -0700 | [diff] [blame] | 355 | return ret; |
| 356 | } |
| 357 | |
| 358 | static ssize_t proc_pid_cmdline_read(struct file *file, char __user *buf, |
| 359 | size_t count, loff_t *pos) |
| 360 | { |
| 361 | struct task_struct *tsk; |
| 362 | ssize_t ret; |
| 363 | |
| 364 | BUG_ON(*pos < 0); |
| 365 | |
| 366 | tsk = get_proc_task(file_inode(file)); |
| 367 | if (!tsk) |
| 368 | return -ESRCH; |
| 369 | ret = get_task_cmdline(tsk, buf, count, pos); |
| 370 | put_task_struct(tsk); |
| 371 | if (ret > 0) |
| 372 | *pos += ret; |
| 373 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | } |
| 375 | |
Alexey Dobriyan | c2c0bb4 | 2015-06-25 15:00:54 -0700 | [diff] [blame] | 376 | static const struct file_operations proc_pid_cmdline_ops = { |
| 377 | .read = proc_pid_cmdline_read, |
| 378 | .llseek = generic_file_llseek, |
| 379 | }; |
| 380 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | #ifdef CONFIG_KALLSYMS |
| 382 | /* |
| 383 | * Provides a wchan file via kallsyms in a proper one-value-per-file format. |
| 384 | * Returns the resolved symbol. If that fails, simply return the address. |
| 385 | */ |
Alexey Dobriyan | edfcd60 | 2014-08-08 14:21:44 -0700 | [diff] [blame] | 386 | static int proc_pid_wchan(struct seq_file *m, struct pid_namespace *ns, |
| 387 | struct pid *pid, struct task_struct *task) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | { |
Alexey Dobriyan | ffb4512 | 2007-05-08 00:28:41 -0700 | [diff] [blame] | 389 | unsigned long wchan; |
Kees Cook | 54354c6 | 2021-09-29 15:02:13 -0700 | [diff] [blame] | 390 | char symname[KSYM_NAME_LEN]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | |
Kees Cook | 54354c6 | 2021-09-29 15:02:13 -0700 | [diff] [blame] | 392 | if (!ptrace_may_access(task, PTRACE_MODE_READ_FSCREDS)) |
| 393 | goto print0; |
Alexey Dobriyan | 24b2ec2 | 2018-04-10 16:31:30 -0700 | [diff] [blame] | 394 | |
Kees Cook | 54354c6 | 2021-09-29 15:02:13 -0700 | [diff] [blame] | 395 | wchan = get_wchan(task); |
| 396 | if (wchan && !lookup_symbol_name(wchan, symname)) { |
| 397 | seq_puts(m, symname); |
| 398 | return 0; |
| 399 | } |
Joe Perches | 25ce319 | 2015-04-15 16:18:17 -0700 | [diff] [blame] | 400 | |
Kees Cook | 54354c6 | 2021-09-29 15:02:13 -0700 | [diff] [blame] | 401 | print0: |
| 402 | seq_putc(m, '0'); |
Joe Perches | 25ce319 | 2015-04-15 16:18:17 -0700 | [diff] [blame] | 403 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | } |
| 405 | #endif /* CONFIG_KALLSYMS */ |
| 406 | |
Al Viro | a9712bc | 2011-03-23 15:52:50 -0400 | [diff] [blame] | 407 | static int lock_trace(struct task_struct *task) |
| 408 | { |
Eric W. Biederman | f7cfd87 | 2020-12-03 14:12:00 -0600 | [diff] [blame] | 409 | int err = down_read_killable(&task->signal->exec_update_lock); |
Al Viro | a9712bc | 2011-03-23 15:52:50 -0400 | [diff] [blame] | 410 | if (err) |
| 411 | return err; |
Jann Horn | caaee62 | 2016-01-20 15:00:04 -0800 | [diff] [blame] | 412 | if (!ptrace_may_access(task, PTRACE_MODE_ATTACH_FSCREDS)) { |
Eric W. Biederman | f7cfd87 | 2020-12-03 14:12:00 -0600 | [diff] [blame] | 413 | up_read(&task->signal->exec_update_lock); |
Al Viro | a9712bc | 2011-03-23 15:52:50 -0400 | [diff] [blame] | 414 | return -EPERM; |
| 415 | } |
| 416 | return 0; |
| 417 | } |
| 418 | |
| 419 | static void unlock_trace(struct task_struct *task) |
| 420 | { |
Eric W. Biederman | f7cfd87 | 2020-12-03 14:12:00 -0600 | [diff] [blame] | 421 | up_read(&task->signal->exec_update_lock); |
Al Viro | a9712bc | 2011-03-23 15:52:50 -0400 | [diff] [blame] | 422 | } |
| 423 | |
Ken Chen | 2ec220e | 2008-11-10 11:26:08 +0300 | [diff] [blame] | 424 | #ifdef CONFIG_STACKTRACE |
| 425 | |
| 426 | #define MAX_STACK_TRACE_DEPTH 64 |
| 427 | |
| 428 | static int proc_pid_stack(struct seq_file *m, struct pid_namespace *ns, |
| 429 | struct pid *pid, struct task_struct *task) |
| 430 | { |
Ken Chen | 2ec220e | 2008-11-10 11:26:08 +0300 | [diff] [blame] | 431 | unsigned long *entries; |
Al Viro | a9712bc | 2011-03-23 15:52:50 -0400 | [diff] [blame] | 432 | int err; |
Ken Chen | 2ec220e | 2008-11-10 11:26:08 +0300 | [diff] [blame] | 433 | |
Jann Horn | f8a00ce | 2018-10-05 15:51:58 -0700 | [diff] [blame] | 434 | /* |
| 435 | * The ability to racily run the kernel stack unwinder on a running task |
| 436 | * and then observe the unwinder output is scary; while it is useful for |
| 437 | * debugging kernel issues, it can also allow an attacker to leak kernel |
| 438 | * stack contents. |
| 439 | * Doing this in a manner that is at least safe from races would require |
| 440 | * some work to ensure that the remote task can not be scheduled; and |
| 441 | * even then, this would still expose the unwinder as local attack |
| 442 | * surface. |
| 443 | * Therefore, this interface is restricted to root. |
| 444 | */ |
| 445 | if (!file_ns_capable(m->file, &init_user_ns, CAP_SYS_ADMIN)) |
| 446 | return -EACCES; |
| 447 | |
Kees Cook | 6da2ec5 | 2018-06-12 13:55:00 -0700 | [diff] [blame] | 448 | entries = kmalloc_array(MAX_STACK_TRACE_DEPTH, sizeof(*entries), |
| 449 | GFP_KERNEL); |
Ken Chen | 2ec220e | 2008-11-10 11:26:08 +0300 | [diff] [blame] | 450 | if (!entries) |
| 451 | return -ENOMEM; |
| 452 | |
Al Viro | a9712bc | 2011-03-23 15:52:50 -0400 | [diff] [blame] | 453 | err = lock_trace(task); |
| 454 | if (!err) { |
Thomas Gleixner | e988e5e | 2019-04-25 11:44:58 +0200 | [diff] [blame] | 455 | unsigned int i, nr_entries; |
Alexey Dobriyan | 5d008fb | 2018-06-07 17:10:17 -0700 | [diff] [blame] | 456 | |
Thomas Gleixner | e988e5e | 2019-04-25 11:44:58 +0200 | [diff] [blame] | 457 | nr_entries = stack_trace_save_tsk(task, entries, |
| 458 | MAX_STACK_TRACE_DEPTH, 0); |
Al Viro | a9712bc | 2011-03-23 15:52:50 -0400 | [diff] [blame] | 459 | |
Thomas Gleixner | e988e5e | 2019-04-25 11:44:58 +0200 | [diff] [blame] | 460 | for (i = 0; i < nr_entries; i++) { |
Linus Torvalds | 8f5abe8 | 2017-11-27 16:45:56 -0800 | [diff] [blame] | 461 | seq_printf(m, "[<0>] %pB\n", (void *)entries[i]); |
Al Viro | a9712bc | 2011-03-23 15:52:50 -0400 | [diff] [blame] | 462 | } |
Thomas Gleixner | e988e5e | 2019-04-25 11:44:58 +0200 | [diff] [blame] | 463 | |
Al Viro | a9712bc | 2011-03-23 15:52:50 -0400 | [diff] [blame] | 464 | unlock_trace(task); |
Ken Chen | 2ec220e | 2008-11-10 11:26:08 +0300 | [diff] [blame] | 465 | } |
| 466 | kfree(entries); |
| 467 | |
Al Viro | a9712bc | 2011-03-23 15:52:50 -0400 | [diff] [blame] | 468 | return err; |
Ken Chen | 2ec220e | 2008-11-10 11:26:08 +0300 | [diff] [blame] | 469 | } |
| 470 | #endif |
| 471 | |
Naveen N. Rao | 5968cec | 2015-06-30 14:36:03 +0530 | [diff] [blame] | 472 | #ifdef CONFIG_SCHED_INFO |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | /* |
| 474 | * Provides /proc/PID/schedstat |
| 475 | */ |
Alexey Dobriyan | f6e826c | 2014-08-08 14:21:46 -0700 | [diff] [blame] | 476 | static int proc_pid_schedstat(struct seq_file *m, struct pid_namespace *ns, |
| 477 | struct pid *pid, struct task_struct *task) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | { |
Naveen N. Rao | 5968cec | 2015-06-30 14:36:03 +0530 | [diff] [blame] | 479 | if (unlikely(!sched_info_on())) |
Alexey Dobriyan | 08b5577 | 2019-03-05 15:50:35 -0800 | [diff] [blame] | 480 | seq_puts(m, "0 0 0\n"); |
Naveen N. Rao | 5968cec | 2015-06-30 14:36:03 +0530 | [diff] [blame] | 481 | else |
| 482 | seq_printf(m, "%llu %llu %lu\n", |
Joe Perches | 25ce319 | 2015-04-15 16:18:17 -0700 | [diff] [blame] | 483 | (unsigned long long)task->se.sum_exec_runtime, |
| 484 | (unsigned long long)task->sched_info.run_delay, |
| 485 | task->sched_info.pcount); |
| 486 | |
| 487 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | } |
| 489 | #endif |
| 490 | |
Arjan van de Ven | 9745512 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 491 | #ifdef CONFIG_LATENCYTOP |
| 492 | static int lstats_show_proc(struct seq_file *m, void *v) |
| 493 | { |
| 494 | int i; |
Hiroshi Shimamoto | 13d77c3 | 2008-02-20 16:53:29 -0800 | [diff] [blame] | 495 | struct inode *inode = m->private; |
| 496 | struct task_struct *task = get_proc_task(inode); |
Arjan van de Ven | 9745512 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 497 | |
Hiroshi Shimamoto | 13d77c3 | 2008-02-20 16:53:29 -0800 | [diff] [blame] | 498 | if (!task) |
| 499 | return -ESRCH; |
| 500 | seq_puts(m, "Latency Top version : v0.1\n"); |
Alexey Dobriyan | f6d2f58 | 2018-08-21 21:54:34 -0700 | [diff] [blame] | 501 | for (i = 0; i < LT_SAVECOUNT; i++) { |
Joe Perches | 34e49d4 | 2011-01-12 17:00:30 -0800 | [diff] [blame] | 502 | struct latency_record *lr = &task->latency_record[i]; |
| 503 | if (lr->backtrace[0]) { |
Arjan van de Ven | 9745512 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 504 | int q; |
Joe Perches | 34e49d4 | 2011-01-12 17:00:30 -0800 | [diff] [blame] | 505 | seq_printf(m, "%i %li %li", |
| 506 | lr->count, lr->time, lr->max); |
Arjan van de Ven | 9745512 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 507 | for (q = 0; q < LT_BACKTRACEDEPTH; q++) { |
Joe Perches | 34e49d4 | 2011-01-12 17:00:30 -0800 | [diff] [blame] | 508 | unsigned long bt = lr->backtrace[q]; |
Thomas Gleixner | accddc4 | 2019-04-10 12:28:08 +0200 | [diff] [blame] | 509 | |
Joe Perches | 34e49d4 | 2011-01-12 17:00:30 -0800 | [diff] [blame] | 510 | if (!bt) |
Arjan van de Ven | 9745512 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 511 | break; |
Joe Perches | 34e49d4 | 2011-01-12 17:00:30 -0800 | [diff] [blame] | 512 | seq_printf(m, " %ps", (void *)bt); |
Arjan van de Ven | 9745512 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 513 | } |
Alexey Dobriyan | 9d6de12 | 2011-01-12 17:00:32 -0800 | [diff] [blame] | 514 | seq_putc(m, '\n'); |
Arjan van de Ven | 9745512 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 515 | } |
| 516 | |
| 517 | } |
Hiroshi Shimamoto | 13d77c3 | 2008-02-20 16:53:29 -0800 | [diff] [blame] | 518 | put_task_struct(task); |
Arjan van de Ven | 9745512 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 519 | return 0; |
| 520 | } |
| 521 | |
| 522 | static int lstats_open(struct inode *inode, struct file *file) |
| 523 | { |
Hiroshi Shimamoto | 13d77c3 | 2008-02-20 16:53:29 -0800 | [diff] [blame] | 524 | return single_open(file, lstats_show_proc, inode); |
Hiroshi Shimamoto | d6643d1 | 2008-02-14 10:27:00 -0800 | [diff] [blame] | 525 | } |
| 526 | |
Arjan van de Ven | 9745512 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 527 | static ssize_t lstats_write(struct file *file, const char __user *buf, |
| 528 | size_t count, loff_t *offs) |
| 529 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 530 | struct task_struct *task = get_proc_task(file_inode(file)); |
Arjan van de Ven | 9745512 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 531 | |
Hiroshi Shimamoto | 13d77c3 | 2008-02-20 16:53:29 -0800 | [diff] [blame] | 532 | if (!task) |
| 533 | return -ESRCH; |
Lin Feng | e02c9b0 | 2019-05-14 15:42:34 -0700 | [diff] [blame] | 534 | clear_tsk_latency_tracing(task); |
Hiroshi Shimamoto | 13d77c3 | 2008-02-20 16:53:29 -0800 | [diff] [blame] | 535 | put_task_struct(task); |
Arjan van de Ven | 9745512 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 536 | |
| 537 | return count; |
| 538 | } |
| 539 | |
| 540 | static const struct file_operations proc_lstats_operations = { |
| 541 | .open = lstats_open, |
| 542 | .read = seq_read, |
| 543 | .write = lstats_write, |
| 544 | .llseek = seq_lseek, |
Hiroshi Shimamoto | 13d77c3 | 2008-02-20 16:53:29 -0800 | [diff] [blame] | 545 | .release = single_release, |
Arjan van de Ven | 9745512 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 546 | }; |
| 547 | |
| 548 | #endif |
| 549 | |
Alexey Dobriyan | 6ba51e3 | 2014-08-08 14:21:48 -0700 | [diff] [blame] | 550 | static int proc_oom_score(struct seq_file *m, struct pid_namespace *ns, |
| 551 | struct pid *pid, struct task_struct *task) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | { |
Arun KS | ca79b0c | 2018-12-28 00:34:29 -0800 | [diff] [blame] | 553 | unsigned long totalpages = totalram_pages() + total_swap_pages; |
Oleg Nesterov | b95c35e | 2010-04-01 15:13:57 +0200 | [diff] [blame] | 554 | unsigned long points = 0; |
Yafang Shao | 9066e5c | 2020-08-11 18:31:22 -0700 | [diff] [blame] | 555 | long badness; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | |
Yafang Shao | 9066e5c | 2020-08-11 18:31:22 -0700 | [diff] [blame] | 557 | badness = oom_badness(task, totalpages); |
| 558 | /* |
| 559 | * Special case OOM_SCORE_ADJ_MIN for all others scale the |
| 560 | * badness value into [0, 2000] range which we have been |
| 561 | * exporting for a long time so userspace might depend on it. |
| 562 | */ |
| 563 | if (badness != LONG_MIN) |
| 564 | points = (1000 + badness * 1000 / (long)totalpages) * 2 / 3; |
| 565 | |
Joe Perches | 25ce319 | 2015-04-15 16:18:17 -0700 | [diff] [blame] | 566 | seq_printf(m, "%lu\n", points); |
| 567 | |
| 568 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | } |
| 570 | |
Neil Horman | d85f50d | 2007-10-18 23:40:37 -0700 | [diff] [blame] | 571 | struct limit_names { |
Alexey Dobriyan | cedbcca | 2014-08-08 14:21:33 -0700 | [diff] [blame] | 572 | const char *name; |
| 573 | const char *unit; |
Neil Horman | d85f50d | 2007-10-18 23:40:37 -0700 | [diff] [blame] | 574 | }; |
| 575 | |
| 576 | static const struct limit_names lnames[RLIM_NLIMITS] = { |
Kees Cook | cff4edb | 2009-09-22 16:45:32 -0700 | [diff] [blame] | 577 | [RLIMIT_CPU] = {"Max cpu time", "seconds"}, |
Neil Horman | d85f50d | 2007-10-18 23:40:37 -0700 | [diff] [blame] | 578 | [RLIMIT_FSIZE] = {"Max file size", "bytes"}, |
| 579 | [RLIMIT_DATA] = {"Max data size", "bytes"}, |
| 580 | [RLIMIT_STACK] = {"Max stack size", "bytes"}, |
| 581 | [RLIMIT_CORE] = {"Max core file size", "bytes"}, |
| 582 | [RLIMIT_RSS] = {"Max resident set", "bytes"}, |
| 583 | [RLIMIT_NPROC] = {"Max processes", "processes"}, |
| 584 | [RLIMIT_NOFILE] = {"Max open files", "files"}, |
| 585 | [RLIMIT_MEMLOCK] = {"Max locked memory", "bytes"}, |
| 586 | [RLIMIT_AS] = {"Max address space", "bytes"}, |
| 587 | [RLIMIT_LOCKS] = {"Max file locks", "locks"}, |
| 588 | [RLIMIT_SIGPENDING] = {"Max pending signals", "signals"}, |
| 589 | [RLIMIT_MSGQUEUE] = {"Max msgqueue size", "bytes"}, |
| 590 | [RLIMIT_NICE] = {"Max nice priority", NULL}, |
| 591 | [RLIMIT_RTPRIO] = {"Max realtime priority", NULL}, |
Eugene Teo | 8808117 | 2008-02-23 15:23:52 -0800 | [diff] [blame] | 592 | [RLIMIT_RTTIME] = {"Max realtime timeout", "us"}, |
Neil Horman | d85f50d | 2007-10-18 23:40:37 -0700 | [diff] [blame] | 593 | }; |
| 594 | |
| 595 | /* Display limits for a process */ |
Alexey Dobriyan | 1c963eb | 2014-08-08 14:21:37 -0700 | [diff] [blame] | 596 | static int proc_pid_limits(struct seq_file *m, struct pid_namespace *ns, |
| 597 | struct pid *pid, struct task_struct *task) |
Neil Horman | d85f50d | 2007-10-18 23:40:37 -0700 | [diff] [blame] | 598 | { |
| 599 | unsigned int i; |
Neil Horman | d85f50d | 2007-10-18 23:40:37 -0700 | [diff] [blame] | 600 | unsigned long flags; |
Neil Horman | d85f50d | 2007-10-18 23:40:37 -0700 | [diff] [blame] | 601 | |
| 602 | struct rlimit rlim[RLIM_NLIMITS]; |
| 603 | |
Lai Jiangshan | a6bebbc | 2008-10-05 00:51:15 +0400 | [diff] [blame] | 604 | if (!lock_task_sighand(task, &flags)) |
Neil Horman | d85f50d | 2007-10-18 23:40:37 -0700 | [diff] [blame] | 605 | return 0; |
Neil Horman | d85f50d | 2007-10-18 23:40:37 -0700 | [diff] [blame] | 606 | memcpy(rlim, task->signal->rlim, sizeof(struct rlimit) * RLIM_NLIMITS); |
| 607 | unlock_task_sighand(task, &flags); |
Neil Horman | d85f50d | 2007-10-18 23:40:37 -0700 | [diff] [blame] | 608 | |
| 609 | /* |
| 610 | * print the file header |
| 611 | */ |
Alexey Dobriyan | afe922c | 2019-01-03 15:26:09 -0800 | [diff] [blame] | 612 | seq_puts(m, "Limit " |
| 613 | "Soft Limit " |
| 614 | "Hard Limit " |
| 615 | "Units \n"); |
Neil Horman | d85f50d | 2007-10-18 23:40:37 -0700 | [diff] [blame] | 616 | |
| 617 | for (i = 0; i < RLIM_NLIMITS; i++) { |
| 618 | if (rlim[i].rlim_cur == RLIM_INFINITY) |
Alexey Dobriyan | 1c963eb | 2014-08-08 14:21:37 -0700 | [diff] [blame] | 619 | seq_printf(m, "%-25s %-20s ", |
Joe Perches | 25ce319 | 2015-04-15 16:18:17 -0700 | [diff] [blame] | 620 | lnames[i].name, "unlimited"); |
Neil Horman | d85f50d | 2007-10-18 23:40:37 -0700 | [diff] [blame] | 621 | else |
Alexey Dobriyan | 1c963eb | 2014-08-08 14:21:37 -0700 | [diff] [blame] | 622 | seq_printf(m, "%-25s %-20lu ", |
Joe Perches | 25ce319 | 2015-04-15 16:18:17 -0700 | [diff] [blame] | 623 | lnames[i].name, rlim[i].rlim_cur); |
Neil Horman | d85f50d | 2007-10-18 23:40:37 -0700 | [diff] [blame] | 624 | |
| 625 | if (rlim[i].rlim_max == RLIM_INFINITY) |
Alexey Dobriyan | 1c963eb | 2014-08-08 14:21:37 -0700 | [diff] [blame] | 626 | seq_printf(m, "%-20s ", "unlimited"); |
Neil Horman | d85f50d | 2007-10-18 23:40:37 -0700 | [diff] [blame] | 627 | else |
Alexey Dobriyan | 1c963eb | 2014-08-08 14:21:37 -0700 | [diff] [blame] | 628 | seq_printf(m, "%-20lu ", rlim[i].rlim_max); |
Neil Horman | d85f50d | 2007-10-18 23:40:37 -0700 | [diff] [blame] | 629 | |
| 630 | if (lnames[i].unit) |
Alexey Dobriyan | 1c963eb | 2014-08-08 14:21:37 -0700 | [diff] [blame] | 631 | seq_printf(m, "%-10s\n", lnames[i].unit); |
Neil Horman | d85f50d | 2007-10-18 23:40:37 -0700 | [diff] [blame] | 632 | else |
Alexey Dobriyan | 1c963eb | 2014-08-08 14:21:37 -0700 | [diff] [blame] | 633 | seq_putc(m, '\n'); |
Neil Horman | d85f50d | 2007-10-18 23:40:37 -0700 | [diff] [blame] | 634 | } |
| 635 | |
Alexey Dobriyan | 1c963eb | 2014-08-08 14:21:37 -0700 | [diff] [blame] | 636 | return 0; |
Neil Horman | d85f50d | 2007-10-18 23:40:37 -0700 | [diff] [blame] | 637 | } |
| 638 | |
Roland McGrath | ebcb673 | 2008-07-25 19:46:00 -0700 | [diff] [blame] | 639 | #ifdef CONFIG_HAVE_ARCH_TRACEHOOK |
Alexey Dobriyan | 09d93bd | 2014-08-08 14:21:39 -0700 | [diff] [blame] | 640 | static int proc_pid_syscall(struct seq_file *m, struct pid_namespace *ns, |
| 641 | struct pid *pid, struct task_struct *task) |
Roland McGrath | ebcb673 | 2008-07-25 19:46:00 -0700 | [diff] [blame] | 642 | { |
Steven Rostedt (Red Hat) | 631b7ab | 2016-11-07 16:26:35 -0500 | [diff] [blame] | 643 | struct syscall_info info; |
| 644 | u64 *args = &info.data.args[0]; |
Joe Perches | 25ce319 | 2015-04-15 16:18:17 -0700 | [diff] [blame] | 645 | int res; |
| 646 | |
| 647 | res = lock_trace(task); |
Al Viro | a9712bc | 2011-03-23 15:52:50 -0400 | [diff] [blame] | 648 | if (res) |
| 649 | return res; |
Roland McGrath | ebcb673 | 2008-07-25 19:46:00 -0700 | [diff] [blame] | 650 | |
Steven Rostedt (Red Hat) | 631b7ab | 2016-11-07 16:26:35 -0500 | [diff] [blame] | 651 | if (task_current_syscall(task, &info)) |
Alexey Dobriyan | 09d93bd | 2014-08-08 14:21:39 -0700 | [diff] [blame] | 652 | seq_puts(m, "running\n"); |
Steven Rostedt (Red Hat) | 631b7ab | 2016-11-07 16:26:35 -0500 | [diff] [blame] | 653 | else if (info.data.nr < 0) |
| 654 | seq_printf(m, "%d 0x%llx 0x%llx\n", |
| 655 | info.data.nr, info.sp, info.data.instruction_pointer); |
Al Viro | a9712bc | 2011-03-23 15:52:50 -0400 | [diff] [blame] | 656 | else |
Alexey Dobriyan | 09d93bd | 2014-08-08 14:21:39 -0700 | [diff] [blame] | 657 | seq_printf(m, |
Steven Rostedt (Red Hat) | 631b7ab | 2016-11-07 16:26:35 -0500 | [diff] [blame] | 658 | "%d 0x%llx 0x%llx 0x%llx 0x%llx 0x%llx 0x%llx 0x%llx 0x%llx\n", |
| 659 | info.data.nr, |
Roland McGrath | ebcb673 | 2008-07-25 19:46:00 -0700 | [diff] [blame] | 660 | args[0], args[1], args[2], args[3], args[4], args[5], |
Steven Rostedt (Red Hat) | 631b7ab | 2016-11-07 16:26:35 -0500 | [diff] [blame] | 661 | info.sp, info.data.instruction_pointer); |
Al Viro | a9712bc | 2011-03-23 15:52:50 -0400 | [diff] [blame] | 662 | unlock_trace(task); |
Joe Perches | 25ce319 | 2015-04-15 16:18:17 -0700 | [diff] [blame] | 663 | |
| 664 | return 0; |
Roland McGrath | ebcb673 | 2008-07-25 19:46:00 -0700 | [diff] [blame] | 665 | } |
| 666 | #endif /* CONFIG_HAVE_ARCH_TRACEHOOK */ |
| 667 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 | /************************************************************************/ |
| 669 | /* Here the fs part begins */ |
| 670 | /************************************************************************/ |
| 671 | |
| 672 | /* permission checks */ |
Eric W. Biederman | 778c114 | 2006-06-26 00:25:58 -0700 | [diff] [blame] | 673 | static int proc_fd_access_allowed(struct inode *inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | { |
Eric W. Biederman | 778c114 | 2006-06-26 00:25:58 -0700 | [diff] [blame] | 675 | struct task_struct *task; |
| 676 | int allowed = 0; |
Eric W. Biederman | df26c40 | 2006-06-26 00:25:59 -0700 | [diff] [blame] | 677 | /* Allow access to a task's file descriptors if it is us or we |
| 678 | * may use ptrace attach to the process and find out that |
| 679 | * information. |
Eric W. Biederman | 778c114 | 2006-06-26 00:25:58 -0700 | [diff] [blame] | 680 | */ |
| 681 | task = get_proc_task(inode); |
Eric W. Biederman | df26c40 | 2006-06-26 00:25:59 -0700 | [diff] [blame] | 682 | if (task) { |
Jann Horn | caaee62 | 2016-01-20 15:00:04 -0800 | [diff] [blame] | 683 | allowed = ptrace_may_access(task, PTRACE_MODE_READ_FSCREDS); |
Eric W. Biederman | 778c114 | 2006-06-26 00:25:58 -0700 | [diff] [blame] | 684 | put_task_struct(task); |
Eric W. Biederman | df26c40 | 2006-06-26 00:25:59 -0700 | [diff] [blame] | 685 | } |
Eric W. Biederman | 778c114 | 2006-06-26 00:25:58 -0700 | [diff] [blame] | 686 | return allowed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | } |
| 688 | |
Christian Brauner | 549c729 | 2021-01-21 14:19:43 +0100 | [diff] [blame] | 689 | int proc_setattr(struct user_namespace *mnt_userns, struct dentry *dentry, |
| 690 | struct iattr *attr) |
Linus Torvalds | 6d76fa5 | 2006-07-15 12:26:45 -0700 | [diff] [blame] | 691 | { |
| 692 | int error; |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 693 | struct inode *inode = d_inode(dentry); |
Linus Torvalds | 6d76fa5 | 2006-07-15 12:26:45 -0700 | [diff] [blame] | 694 | |
| 695 | if (attr->ia_valid & ATTR_MODE) |
| 696 | return -EPERM; |
| 697 | |
Christian Brauner | 2f221d6 | 2021-01-21 14:19:26 +0100 | [diff] [blame] | 698 | error = setattr_prepare(&init_user_ns, dentry, attr); |
Christoph Hellwig | 1025774 | 2010-06-04 11:30:02 +0200 | [diff] [blame] | 699 | if (error) |
| 700 | return error; |
| 701 | |
Christian Brauner | 2f221d6 | 2021-01-21 14:19:26 +0100 | [diff] [blame] | 702 | setattr_copy(&init_user_ns, inode, attr); |
Christoph Hellwig | 1025774 | 2010-06-04 11:30:02 +0200 | [diff] [blame] | 703 | mark_inode_dirty(inode); |
| 704 | return 0; |
Linus Torvalds | 6d76fa5 | 2006-07-15 12:26:45 -0700 | [diff] [blame] | 705 | } |
| 706 | |
Vasiliy Kulikov | 0499680 | 2012-01-10 15:11:31 -0800 | [diff] [blame] | 707 | /* |
| 708 | * May current process learn task's sched/cmdline info (for hide_pid_min=1) |
| 709 | * or euid/egid (for hide_pid_min=2)? |
| 710 | */ |
Alexey Gladkov | fa10fed | 2020-04-19 16:10:52 +0200 | [diff] [blame] | 711 | static bool has_pid_permissions(struct proc_fs_info *fs_info, |
Vasiliy Kulikov | 0499680 | 2012-01-10 15:11:31 -0800 | [diff] [blame] | 712 | struct task_struct *task, |
Alexey Gladkov | e61bb8b | 2020-04-19 16:10:57 +0200 | [diff] [blame] | 713 | enum proc_hidepid hide_pid_min) |
Vasiliy Kulikov | 0499680 | 2012-01-10 15:11:31 -0800 | [diff] [blame] | 714 | { |
Alexey Gladkov | 24a71ce | 2020-04-19 16:10:53 +0200 | [diff] [blame] | 715 | /* |
| 716 | * If 'hidpid' mount option is set force a ptrace check, |
| 717 | * we indicate that we are using a filesystem syscall |
| 718 | * by passing PTRACE_MODE_READ_FSCREDS |
| 719 | */ |
| 720 | if (fs_info->hide_pid == HIDEPID_NOT_PTRACEABLE) |
| 721 | return ptrace_may_access(task, PTRACE_MODE_READ_FSCREDS); |
| 722 | |
Alexey Gladkov | fa10fed | 2020-04-19 16:10:52 +0200 | [diff] [blame] | 723 | if (fs_info->hide_pid < hide_pid_min) |
Vasiliy Kulikov | 0499680 | 2012-01-10 15:11:31 -0800 | [diff] [blame] | 724 | return true; |
Alexey Gladkov | fa10fed | 2020-04-19 16:10:52 +0200 | [diff] [blame] | 725 | if (in_group_p(fs_info->pid_gid)) |
Vasiliy Kulikov | 0499680 | 2012-01-10 15:11:31 -0800 | [diff] [blame] | 726 | return true; |
Jann Horn | caaee62 | 2016-01-20 15:00:04 -0800 | [diff] [blame] | 727 | return ptrace_may_access(task, PTRACE_MODE_READ_FSCREDS); |
Vasiliy Kulikov | 0499680 | 2012-01-10 15:11:31 -0800 | [diff] [blame] | 728 | } |
| 729 | |
| 730 | |
Christian Brauner | 549c729 | 2021-01-21 14:19:43 +0100 | [diff] [blame] | 731 | static int proc_pid_permission(struct user_namespace *mnt_userns, |
| 732 | struct inode *inode, int mask) |
Vasiliy Kulikov | 0499680 | 2012-01-10 15:11:31 -0800 | [diff] [blame] | 733 | { |
Alexey Gladkov | fa10fed | 2020-04-19 16:10:52 +0200 | [diff] [blame] | 734 | struct proc_fs_info *fs_info = proc_sb_info(inode->i_sb); |
Vasiliy Kulikov | 0499680 | 2012-01-10 15:11:31 -0800 | [diff] [blame] | 735 | struct task_struct *task; |
| 736 | bool has_perms; |
| 737 | |
| 738 | task = get_proc_task(inode); |
Xiaotian Feng | a2ef990 | 2012-01-12 17:17:08 -0800 | [diff] [blame] | 739 | if (!task) |
| 740 | return -ESRCH; |
Alexey Gladkov | fa10fed | 2020-04-19 16:10:52 +0200 | [diff] [blame] | 741 | has_perms = has_pid_permissions(fs_info, task, HIDEPID_NO_ACCESS); |
Vasiliy Kulikov | 0499680 | 2012-01-10 15:11:31 -0800 | [diff] [blame] | 742 | put_task_struct(task); |
| 743 | |
| 744 | if (!has_perms) { |
Alexey Gladkov | fa10fed | 2020-04-19 16:10:52 +0200 | [diff] [blame] | 745 | if (fs_info->hide_pid == HIDEPID_INVISIBLE) { |
Vasiliy Kulikov | 0499680 | 2012-01-10 15:11:31 -0800 | [diff] [blame] | 746 | /* |
| 747 | * Let's make getdents(), stat(), and open() |
| 748 | * consistent with each other. If a process |
| 749 | * may not stat() a file, it shouldn't be seen |
| 750 | * in procfs at all. |
| 751 | */ |
| 752 | return -ENOENT; |
| 753 | } |
| 754 | |
| 755 | return -EPERM; |
| 756 | } |
Christian Brauner | 47291ba | 2021-01-21 14:19:24 +0100 | [diff] [blame] | 757 | return generic_permission(&init_user_ns, inode, mask); |
Vasiliy Kulikov | 0499680 | 2012-01-10 15:11:31 -0800 | [diff] [blame] | 758 | } |
| 759 | |
| 760 | |
| 761 | |
Arjan van de Ven | c5ef1c4 | 2007-02-12 00:55:40 -0800 | [diff] [blame] | 762 | static const struct inode_operations proc_def_inode_operations = { |
Linus Torvalds | 6d76fa5 | 2006-07-15 12:26:45 -0700 | [diff] [blame] | 763 | .setattr = proc_setattr, |
| 764 | }; |
| 765 | |
Eric W. Biederman | be61408 | 2008-02-08 04:18:30 -0800 | [diff] [blame] | 766 | static int proc_single_show(struct seq_file *m, void *v) |
| 767 | { |
| 768 | struct inode *inode = m->private; |
Alexey Gladkov | 9d78ede | 2020-05-18 20:07:38 +0200 | [diff] [blame] | 769 | struct pid_namespace *ns = proc_pid_ns(inode->i_sb); |
Christoph Hellwig | 76f668b | 2018-05-16 07:19:01 +0200 | [diff] [blame] | 770 | struct pid *pid = proc_pid(inode); |
Eric W. Biederman | be61408 | 2008-02-08 04:18:30 -0800 | [diff] [blame] | 771 | struct task_struct *task; |
| 772 | int ret; |
| 773 | |
Eric W. Biederman | be61408 | 2008-02-08 04:18:30 -0800 | [diff] [blame] | 774 | task = get_pid_task(pid, PIDTYPE_PID); |
| 775 | if (!task) |
| 776 | return -ESRCH; |
| 777 | |
| 778 | ret = PROC_I(inode)->op.proc_show(m, ns, pid, task); |
| 779 | |
| 780 | put_task_struct(task); |
| 781 | return ret; |
| 782 | } |
| 783 | |
| 784 | static int proc_single_open(struct inode *inode, struct file *filp) |
| 785 | { |
Jovi Zhang | c6a3405 | 2011-01-12 17:00:34 -0800 | [diff] [blame] | 786 | return single_open(filp, proc_single_show, inode); |
Eric W. Biederman | be61408 | 2008-02-08 04:18:30 -0800 | [diff] [blame] | 787 | } |
| 788 | |
| 789 | static const struct file_operations proc_single_file_operations = { |
| 790 | .open = proc_single_open, |
| 791 | .read = seq_read, |
| 792 | .llseek = seq_lseek, |
| 793 | .release = single_release, |
| 794 | }; |
| 795 | |
Oleg Nesterov | 5381e16 | 2014-10-09 15:25:24 -0700 | [diff] [blame] | 796 | |
| 797 | struct mm_struct *proc_mem_open(struct inode *inode, unsigned int mode) |
| 798 | { |
| 799 | struct task_struct *task = get_proc_task(inode); |
| 800 | struct mm_struct *mm = ERR_PTR(-ESRCH); |
| 801 | |
| 802 | if (task) { |
Jann Horn | caaee62 | 2016-01-20 15:00:04 -0800 | [diff] [blame] | 803 | mm = mm_access(task, mode | PTRACE_MODE_FSCREDS); |
Oleg Nesterov | 5381e16 | 2014-10-09 15:25:24 -0700 | [diff] [blame] | 804 | put_task_struct(task); |
| 805 | |
| 806 | if (!IS_ERR_OR_NULL(mm)) { |
| 807 | /* ensure this mm_struct can't be freed */ |
Vegard Nossum | f1f1007 | 2017-02-27 14:30:07 -0800 | [diff] [blame] | 808 | mmgrab(mm); |
Oleg Nesterov | 5381e16 | 2014-10-09 15:25:24 -0700 | [diff] [blame] | 809 | /* but do not pin its memory */ |
| 810 | mmput(mm); |
| 811 | } |
| 812 | } |
| 813 | |
| 814 | return mm; |
| 815 | } |
| 816 | |
Cong Wang | b409e57 | 2012-05-31 16:26:17 -0700 | [diff] [blame] | 817 | static int __mem_open(struct inode *inode, struct file *file, unsigned int mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | { |
Oleg Nesterov | 5381e16 | 2014-10-09 15:25:24 -0700 | [diff] [blame] | 819 | struct mm_struct *mm = proc_mem_open(inode, mode); |
Linus Torvalds | e268337 | 2012-01-17 15:21:19 -0800 | [diff] [blame] | 820 | |
| 821 | if (IS_ERR(mm)) |
| 822 | return PTR_ERR(mm); |
| 823 | |
Linus Torvalds | e268337 | 2012-01-17 15:21:19 -0800 | [diff] [blame] | 824 | file->private_data = mm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | return 0; |
| 826 | } |
| 827 | |
Cong Wang | b409e57 | 2012-05-31 16:26:17 -0700 | [diff] [blame] | 828 | static int mem_open(struct inode *inode, struct file *file) |
| 829 | { |
Djalal Harouni | bc452b4 | 2012-07-30 14:42:28 -0700 | [diff] [blame] | 830 | int ret = __mem_open(inode, file, PTRACE_MODE_ATTACH); |
| 831 | |
| 832 | /* OK to pass negative loff_t, we can catch out-of-range */ |
| 833 | file->f_mode |= FMODE_UNSIGNED_OFFSET; |
| 834 | |
| 835 | return ret; |
Cong Wang | b409e57 | 2012-05-31 16:26:17 -0700 | [diff] [blame] | 836 | } |
| 837 | |
Oleg Nesterov | 572d34b | 2012-01-31 17:14:54 +0100 | [diff] [blame] | 838 | static ssize_t mem_rw(struct file *file, char __user *buf, |
| 839 | size_t count, loff_t *ppos, int write) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 | { |
Linus Torvalds | e268337 | 2012-01-17 15:21:19 -0800 | [diff] [blame] | 841 | struct mm_struct *mm = file->private_data; |
Oleg Nesterov | 572d34b | 2012-01-31 17:14:54 +0100 | [diff] [blame] | 842 | unsigned long addr = *ppos; |
| 843 | ssize_t copied; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 844 | char *page; |
Linus Torvalds | 272ddc8 | 2016-10-24 19:00:44 -0700 | [diff] [blame] | 845 | unsigned int flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 846 | |
Linus Torvalds | e268337 | 2012-01-17 15:21:19 -0800 | [diff] [blame] | 847 | if (!mm) |
| 848 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 849 | |
Michal Hocko | 0ee931c | 2017-09-13 16:28:29 -0700 | [diff] [blame] | 850 | page = (char *)__get_free_page(GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | if (!page) |
Linus Torvalds | e268337 | 2012-01-17 15:21:19 -0800 | [diff] [blame] | 852 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | |
Frederik Deweerdt | f7ca54f | 2006-09-29 02:01:02 -0700 | [diff] [blame] | 854 | copied = 0; |
Vegard Nossum | 388f793 | 2017-02-27 14:30:13 -0800 | [diff] [blame] | 855 | if (!mmget_not_zero(mm)) |
Oleg Nesterov | 6d08f2c7 | 2012-01-31 17:15:11 +0100 | [diff] [blame] | 856 | goto free; |
| 857 | |
Linus Torvalds | f511c0b | 2017-05-30 12:38:59 -0700 | [diff] [blame] | 858 | flags = FOLL_FORCE | (write ? FOLL_WRITE : 0); |
Lorenzo Stoakes | 6347e8d | 2016-10-13 01:20:19 +0100 | [diff] [blame] | 859 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | while (count > 0) { |
Marcelo Henrique Cerri | d238692 | 2021-06-30 18:54:38 -0700 | [diff] [blame] | 861 | size_t this_len = min_t(size_t, count, PAGE_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 862 | |
Oleg Nesterov | 572d34b | 2012-01-31 17:14:54 +0100 | [diff] [blame] | 863 | if (write && copy_from_user(page, buf, this_len)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 864 | copied = -EFAULT; |
| 865 | break; |
| 866 | } |
Oleg Nesterov | 572d34b | 2012-01-31 17:14:54 +0100 | [diff] [blame] | 867 | |
Lorenzo Stoakes | 6347e8d | 2016-10-13 01:20:19 +0100 | [diff] [blame] | 868 | this_len = access_remote_vm(mm, addr, page, this_len, flags); |
Oleg Nesterov | 572d34b | 2012-01-31 17:14:54 +0100 | [diff] [blame] | 869 | if (!this_len) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | if (!copied) |
| 871 | copied = -EIO; |
| 872 | break; |
| 873 | } |
Oleg Nesterov | 572d34b | 2012-01-31 17:14:54 +0100 | [diff] [blame] | 874 | |
| 875 | if (!write && copy_to_user(buf, page, this_len)) { |
| 876 | copied = -EFAULT; |
| 877 | break; |
| 878 | } |
| 879 | |
| 880 | buf += this_len; |
| 881 | addr += this_len; |
| 882 | copied += this_len; |
| 883 | count -= this_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 884 | } |
Oleg Nesterov | 572d34b | 2012-01-31 17:14:54 +0100 | [diff] [blame] | 885 | *ppos = addr; |
KOSAKI Motohiro | 30cd890 | 2011-05-26 16:25:52 -0700 | [diff] [blame] | 886 | |
Oleg Nesterov | 6d08f2c7 | 2012-01-31 17:15:11 +0100 | [diff] [blame] | 887 | mmput(mm); |
| 888 | free: |
KOSAKI Motohiro | 30cd890 | 2011-05-26 16:25:52 -0700 | [diff] [blame] | 889 | free_page((unsigned long) page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 890 | return copied; |
| 891 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 892 | |
Oleg Nesterov | 572d34b | 2012-01-31 17:14:54 +0100 | [diff] [blame] | 893 | static ssize_t mem_read(struct file *file, char __user *buf, |
| 894 | size_t count, loff_t *ppos) |
| 895 | { |
| 896 | return mem_rw(file, buf, count, ppos, 0); |
| 897 | } |
| 898 | |
| 899 | static ssize_t mem_write(struct file *file, const char __user *buf, |
| 900 | size_t count, loff_t *ppos) |
| 901 | { |
| 902 | return mem_rw(file, (char __user*)buf, count, ppos, 1); |
| 903 | } |
| 904 | |
Matt Mackall | 85863e4 | 2008-02-04 22:29:04 -0800 | [diff] [blame] | 905 | loff_t mem_lseek(struct file *file, loff_t offset, int orig) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 906 | { |
| 907 | switch (orig) { |
| 908 | case 0: |
| 909 | file->f_pos = offset; |
| 910 | break; |
| 911 | case 1: |
| 912 | file->f_pos += offset; |
| 913 | break; |
| 914 | default: |
| 915 | return -EINVAL; |
| 916 | } |
| 917 | force_successful_syscall_return(); |
| 918 | return file->f_pos; |
| 919 | } |
| 920 | |
Linus Torvalds | e268337 | 2012-01-17 15:21:19 -0800 | [diff] [blame] | 921 | static int mem_release(struct inode *inode, struct file *file) |
| 922 | { |
| 923 | struct mm_struct *mm = file->private_data; |
Oleg Nesterov | 71879d3 | 2012-01-31 17:14:38 +0100 | [diff] [blame] | 924 | if (mm) |
Oleg Nesterov | 6d08f2c7 | 2012-01-31 17:15:11 +0100 | [diff] [blame] | 925 | mmdrop(mm); |
Linus Torvalds | e268337 | 2012-01-17 15:21:19 -0800 | [diff] [blame] | 926 | return 0; |
| 927 | } |
| 928 | |
Arjan van de Ven | 00977a5 | 2007-02-12 00:55:34 -0800 | [diff] [blame] | 929 | static const struct file_operations proc_mem_operations = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 930 | .llseek = mem_lseek, |
| 931 | .read = mem_read, |
| 932 | .write = mem_write, |
| 933 | .open = mem_open, |
Linus Torvalds | e268337 | 2012-01-17 15:21:19 -0800 | [diff] [blame] | 934 | .release = mem_release, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 935 | }; |
| 936 | |
Cong Wang | b409e57 | 2012-05-31 16:26:17 -0700 | [diff] [blame] | 937 | static int environ_open(struct inode *inode, struct file *file) |
| 938 | { |
| 939 | return __mem_open(inode, file, PTRACE_MODE_READ); |
| 940 | } |
| 941 | |
James Pearson | 315e28c | 2007-10-16 23:30:17 -0700 | [diff] [blame] | 942 | static ssize_t environ_read(struct file *file, char __user *buf, |
| 943 | size_t count, loff_t *ppos) |
| 944 | { |
James Pearson | 315e28c | 2007-10-16 23:30:17 -0700 | [diff] [blame] | 945 | char *page; |
| 946 | unsigned long src = *ppos; |
Cong Wang | b409e57 | 2012-05-31 16:26:17 -0700 | [diff] [blame] | 947 | int ret = 0; |
| 948 | struct mm_struct *mm = file->private_data; |
Mateusz Guzik | a3b609e | 2016-01-20 15:01:05 -0800 | [diff] [blame] | 949 | unsigned long env_start, env_end; |
James Pearson | 315e28c | 2007-10-16 23:30:17 -0700 | [diff] [blame] | 950 | |
Mathias Krause | 8148a73 | 2016-05-05 16:22:26 -0700 | [diff] [blame] | 951 | /* Ensure the process spawned far enough to have an environment. */ |
| 952 | if (!mm || !mm->env_end) |
Cong Wang | b409e57 | 2012-05-31 16:26:17 -0700 | [diff] [blame] | 953 | return 0; |
James Pearson | 315e28c | 2007-10-16 23:30:17 -0700 | [diff] [blame] | 954 | |
Michal Hocko | 0ee931c | 2017-09-13 16:28:29 -0700 | [diff] [blame] | 955 | page = (char *)__get_free_page(GFP_KERNEL); |
James Pearson | 315e28c | 2007-10-16 23:30:17 -0700 | [diff] [blame] | 956 | if (!page) |
Cong Wang | b409e57 | 2012-05-31 16:26:17 -0700 | [diff] [blame] | 957 | return -ENOMEM; |
James Pearson | 315e28c | 2007-10-16 23:30:17 -0700 | [diff] [blame] | 958 | |
Al Viro | d6f64b8 | 2011-02-15 22:26:01 -0500 | [diff] [blame] | 959 | ret = 0; |
Vegard Nossum | 388f793 | 2017-02-27 14:30:13 -0800 | [diff] [blame] | 960 | if (!mmget_not_zero(mm)) |
Cong Wang | b409e57 | 2012-05-31 16:26:17 -0700 | [diff] [blame] | 961 | goto free; |
Mateusz Guzik | a3b609e | 2016-01-20 15:01:05 -0800 | [diff] [blame] | 962 | |
Yang Shi | 88aa7cc | 2018-06-07 17:05:28 -0700 | [diff] [blame] | 963 | spin_lock(&mm->arg_lock); |
Mateusz Guzik | a3b609e | 2016-01-20 15:01:05 -0800 | [diff] [blame] | 964 | env_start = mm->env_start; |
| 965 | env_end = mm->env_end; |
Yang Shi | 88aa7cc | 2018-06-07 17:05:28 -0700 | [diff] [blame] | 966 | spin_unlock(&mm->arg_lock); |
Mateusz Guzik | a3b609e | 2016-01-20 15:01:05 -0800 | [diff] [blame] | 967 | |
James Pearson | 315e28c | 2007-10-16 23:30:17 -0700 | [diff] [blame] | 968 | while (count > 0) { |
Djalal Harouni | e8905ec | 2012-07-30 14:42:26 -0700 | [diff] [blame] | 969 | size_t this_len, max_len; |
| 970 | int retval; |
| 971 | |
Mateusz Guzik | a3b609e | 2016-01-20 15:01:05 -0800 | [diff] [blame] | 972 | if (src >= (env_end - env_start)) |
Djalal Harouni | e8905ec | 2012-07-30 14:42:26 -0700 | [diff] [blame] | 973 | break; |
James Pearson | 315e28c | 2007-10-16 23:30:17 -0700 | [diff] [blame] | 974 | |
Mateusz Guzik | a3b609e | 2016-01-20 15:01:05 -0800 | [diff] [blame] | 975 | this_len = env_end - (env_start + src); |
James Pearson | 315e28c | 2007-10-16 23:30:17 -0700 | [diff] [blame] | 976 | |
Djalal Harouni | e8905ec | 2012-07-30 14:42:26 -0700 | [diff] [blame] | 977 | max_len = min_t(size_t, PAGE_SIZE, count); |
| 978 | this_len = min(max_len, this_len); |
James Pearson | 315e28c | 2007-10-16 23:30:17 -0700 | [diff] [blame] | 979 | |
Willy Tarreau | 7f7ccc2 | 2018-05-11 08:11:44 +0200 | [diff] [blame] | 980 | retval = access_remote_vm(mm, (env_start + src), page, this_len, FOLL_ANON); |
James Pearson | 315e28c | 2007-10-16 23:30:17 -0700 | [diff] [blame] | 981 | |
| 982 | if (retval <= 0) { |
| 983 | ret = retval; |
| 984 | break; |
| 985 | } |
| 986 | |
| 987 | if (copy_to_user(buf, page, retval)) { |
| 988 | ret = -EFAULT; |
| 989 | break; |
| 990 | } |
| 991 | |
| 992 | ret += retval; |
| 993 | src += retval; |
| 994 | buf += retval; |
| 995 | count -= retval; |
| 996 | } |
| 997 | *ppos = src; |
James Pearson | 315e28c | 2007-10-16 23:30:17 -0700 | [diff] [blame] | 998 | mmput(mm); |
Cong Wang | b409e57 | 2012-05-31 16:26:17 -0700 | [diff] [blame] | 999 | |
| 1000 | free: |
James Pearson | 315e28c | 2007-10-16 23:30:17 -0700 | [diff] [blame] | 1001 | free_page((unsigned long) page); |
James Pearson | 315e28c | 2007-10-16 23:30:17 -0700 | [diff] [blame] | 1002 | return ret; |
| 1003 | } |
| 1004 | |
| 1005 | static const struct file_operations proc_environ_operations = { |
Cong Wang | b409e57 | 2012-05-31 16:26:17 -0700 | [diff] [blame] | 1006 | .open = environ_open, |
James Pearson | 315e28c | 2007-10-16 23:30:17 -0700 | [diff] [blame] | 1007 | .read = environ_read, |
Arnd Bergmann | 87df842 | 2010-03-17 23:06:02 +0100 | [diff] [blame] | 1008 | .llseek = generic_file_llseek, |
Cong Wang | b409e57 | 2012-05-31 16:26:17 -0700 | [diff] [blame] | 1009 | .release = mem_release, |
James Pearson | 315e28c | 2007-10-16 23:30:17 -0700 | [diff] [blame] | 1010 | }; |
| 1011 | |
Al Viro | c531716 | 2016-10-05 18:43:43 -0400 | [diff] [blame] | 1012 | static int auxv_open(struct inode *inode, struct file *file) |
| 1013 | { |
| 1014 | return __mem_open(inode, file, PTRACE_MODE_READ_FSCREDS); |
| 1015 | } |
| 1016 | |
| 1017 | static ssize_t auxv_read(struct file *file, char __user *buf, |
| 1018 | size_t count, loff_t *ppos) |
| 1019 | { |
| 1020 | struct mm_struct *mm = file->private_data; |
| 1021 | unsigned int nwords = 0; |
Leon Yu | 06b2849 | 2016-10-27 17:46:50 -0700 | [diff] [blame] | 1022 | |
| 1023 | if (!mm) |
| 1024 | return 0; |
Al Viro | c531716 | 2016-10-05 18:43:43 -0400 | [diff] [blame] | 1025 | do { |
| 1026 | nwords += 2; |
| 1027 | } while (mm->saved_auxv[nwords - 2] != 0); /* AT_NULL */ |
| 1028 | return simple_read_from_buffer(buf, count, ppos, mm->saved_auxv, |
| 1029 | nwords * sizeof(mm->saved_auxv[0])); |
| 1030 | } |
| 1031 | |
| 1032 | static const struct file_operations proc_auxv_operations = { |
| 1033 | .open = auxv_open, |
| 1034 | .read = auxv_read, |
| 1035 | .llseek = generic_file_llseek, |
| 1036 | .release = mem_release, |
| 1037 | }; |
| 1038 | |
David Rientjes | fa0cbbf | 2012-11-12 17:53:04 -0800 | [diff] [blame] | 1039 | static ssize_t oom_adj_read(struct file *file, char __user *buf, size_t count, |
| 1040 | loff_t *ppos) |
| 1041 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 1042 | struct task_struct *task = get_proc_task(file_inode(file)); |
David Rientjes | fa0cbbf | 2012-11-12 17:53:04 -0800 | [diff] [blame] | 1043 | char buffer[PROC_NUMBUF]; |
| 1044 | int oom_adj = OOM_ADJUST_MIN; |
| 1045 | size_t len; |
David Rientjes | fa0cbbf | 2012-11-12 17:53:04 -0800 | [diff] [blame] | 1046 | |
| 1047 | if (!task) |
| 1048 | return -ESRCH; |
Michal Hocko | f913da5 | 2016-07-28 15:44:37 -0700 | [diff] [blame] | 1049 | if (task->signal->oom_score_adj == OOM_SCORE_ADJ_MAX) |
| 1050 | oom_adj = OOM_ADJUST_MAX; |
| 1051 | else |
| 1052 | oom_adj = (task->signal->oom_score_adj * -OOM_DISABLE) / |
| 1053 | OOM_SCORE_ADJ_MAX; |
David Rientjes | fa0cbbf | 2012-11-12 17:53:04 -0800 | [diff] [blame] | 1054 | put_task_struct(task); |
Charles Haithcock | 6660656 | 2020-11-01 17:07:56 -0800 | [diff] [blame] | 1055 | if (oom_adj > OOM_ADJUST_MAX) |
| 1056 | oom_adj = OOM_ADJUST_MAX; |
David Rientjes | fa0cbbf | 2012-11-12 17:53:04 -0800 | [diff] [blame] | 1057 | len = snprintf(buffer, sizeof(buffer), "%d\n", oom_adj); |
| 1058 | return simple_read_from_buffer(buf, count, ppos, buffer, len); |
| 1059 | } |
| 1060 | |
Michal Hocko | 1d5f0ac | 2016-07-28 15:44:40 -0700 | [diff] [blame] | 1061 | static int __set_oom_adj(struct file *file, int oom_adj, bool legacy) |
| 1062 | { |
Michal Hocko | 44a70ade | 2016-07-28 15:44:43 -0700 | [diff] [blame] | 1063 | struct mm_struct *mm = NULL; |
Michal Hocko | 1d5f0ac | 2016-07-28 15:44:40 -0700 | [diff] [blame] | 1064 | struct task_struct *task; |
| 1065 | int err = 0; |
| 1066 | |
| 1067 | task = get_proc_task(file_inode(file)); |
| 1068 | if (!task) |
| 1069 | return -ESRCH; |
| 1070 | |
| 1071 | mutex_lock(&oom_adj_mutex); |
| 1072 | if (legacy) { |
| 1073 | if (oom_adj < task->signal->oom_score_adj && |
| 1074 | !capable(CAP_SYS_RESOURCE)) { |
| 1075 | err = -EACCES; |
| 1076 | goto err_unlock; |
| 1077 | } |
| 1078 | /* |
| 1079 | * /proc/pid/oom_adj is provided for legacy purposes, ask users to use |
| 1080 | * /proc/pid/oom_score_adj instead. |
| 1081 | */ |
| 1082 | pr_warn_once("%s (%d): /proc/%d/oom_adj is deprecated, please use /proc/%d/oom_score_adj instead.\n", |
| 1083 | current->comm, task_pid_nr(current), task_pid_nr(task), |
| 1084 | task_pid_nr(task)); |
| 1085 | } else { |
| 1086 | if ((short)oom_adj < task->signal->oom_score_adj_min && |
| 1087 | !capable(CAP_SYS_RESOURCE)) { |
| 1088 | err = -EACCES; |
| 1089 | goto err_unlock; |
| 1090 | } |
| 1091 | } |
| 1092 | |
Michal Hocko | 44a70ade | 2016-07-28 15:44:43 -0700 | [diff] [blame] | 1093 | /* |
| 1094 | * Make sure we will check other processes sharing the mm if this is |
| 1095 | * not vfrok which wants its own oom_score_adj. |
| 1096 | * pin the mm so it doesn't go away and get reused after task_unlock |
| 1097 | */ |
| 1098 | if (!task->vfork_done) { |
| 1099 | struct task_struct *p = find_lock_task_mm(task); |
| 1100 | |
| 1101 | if (p) { |
Suren Baghdasaryan | 67197a4 | 2020-10-13 16:58:35 -0700 | [diff] [blame] | 1102 | if (test_bit(MMF_MULTIPROCESS, &p->mm->flags)) { |
Michal Hocko | 44a70ade | 2016-07-28 15:44:43 -0700 | [diff] [blame] | 1103 | mm = p->mm; |
Vegard Nossum | f1f1007 | 2017-02-27 14:30:07 -0800 | [diff] [blame] | 1104 | mmgrab(mm); |
Michal Hocko | 44a70ade | 2016-07-28 15:44:43 -0700 | [diff] [blame] | 1105 | } |
| 1106 | task_unlock(p); |
| 1107 | } |
| 1108 | } |
| 1109 | |
Michal Hocko | 1d5f0ac | 2016-07-28 15:44:40 -0700 | [diff] [blame] | 1110 | task->signal->oom_score_adj = oom_adj; |
| 1111 | if (!legacy && has_capability_noaudit(current, CAP_SYS_RESOURCE)) |
| 1112 | task->signal->oom_score_adj_min = (short)oom_adj; |
| 1113 | trace_oom_score_adj_update(task); |
Michal Hocko | 44a70ade | 2016-07-28 15:44:43 -0700 | [diff] [blame] | 1114 | |
| 1115 | if (mm) { |
| 1116 | struct task_struct *p; |
| 1117 | |
| 1118 | rcu_read_lock(); |
| 1119 | for_each_process(p) { |
| 1120 | if (same_thread_group(task, p)) |
| 1121 | continue; |
| 1122 | |
| 1123 | /* do not touch kernel threads or the global init */ |
| 1124 | if (p->flags & PF_KTHREAD || is_global_init(p)) |
| 1125 | continue; |
| 1126 | |
| 1127 | task_lock(p); |
| 1128 | if (!p->vfork_done && process_shares_mm(p, mm)) { |
Michal Hocko | 44a70ade | 2016-07-28 15:44:43 -0700 | [diff] [blame] | 1129 | p->signal->oom_score_adj = oom_adj; |
| 1130 | if (!legacy && has_capability_noaudit(current, CAP_SYS_RESOURCE)) |
| 1131 | p->signal->oom_score_adj_min = (short)oom_adj; |
| 1132 | } |
| 1133 | task_unlock(p); |
| 1134 | } |
| 1135 | rcu_read_unlock(); |
| 1136 | mmdrop(mm); |
| 1137 | } |
Michal Hocko | 1d5f0ac | 2016-07-28 15:44:40 -0700 | [diff] [blame] | 1138 | err_unlock: |
| 1139 | mutex_unlock(&oom_adj_mutex); |
| 1140 | put_task_struct(task); |
| 1141 | return err; |
| 1142 | } |
Michal Hocko | f913da5 | 2016-07-28 15:44:37 -0700 | [diff] [blame] | 1143 | |
David Rientjes | b72bdfa | 2015-11-05 18:50:32 -0800 | [diff] [blame] | 1144 | /* |
| 1145 | * /proc/pid/oom_adj exists solely for backwards compatibility with previous |
| 1146 | * kernels. The effective policy is defined by oom_score_adj, which has a |
| 1147 | * different scale: oom_adj grew exponentially and oom_score_adj grows linearly. |
| 1148 | * Values written to oom_adj are simply mapped linearly to oom_score_adj. |
| 1149 | * Processes that become oom disabled via oom_adj will still be oom disabled |
| 1150 | * with this implementation. |
| 1151 | * |
| 1152 | * oom_adj cannot be removed since existing userspace binaries use it. |
| 1153 | */ |
David Rientjes | fa0cbbf | 2012-11-12 17:53:04 -0800 | [diff] [blame] | 1154 | static ssize_t oom_adj_write(struct file *file, const char __user *buf, |
| 1155 | size_t count, loff_t *ppos) |
| 1156 | { |
David Rientjes | fa0cbbf | 2012-11-12 17:53:04 -0800 | [diff] [blame] | 1157 | char buffer[PROC_NUMBUF]; |
| 1158 | int oom_adj; |
David Rientjes | fa0cbbf | 2012-11-12 17:53:04 -0800 | [diff] [blame] | 1159 | int err; |
| 1160 | |
| 1161 | memset(buffer, 0, sizeof(buffer)); |
| 1162 | if (count > sizeof(buffer) - 1) |
| 1163 | count = sizeof(buffer) - 1; |
| 1164 | if (copy_from_user(buffer, buf, count)) { |
| 1165 | err = -EFAULT; |
| 1166 | goto out; |
| 1167 | } |
| 1168 | |
| 1169 | err = kstrtoint(strstrip(buffer), 0, &oom_adj); |
| 1170 | if (err) |
| 1171 | goto out; |
| 1172 | if ((oom_adj < OOM_ADJUST_MIN || oom_adj > OOM_ADJUST_MAX) && |
| 1173 | oom_adj != OOM_DISABLE) { |
| 1174 | err = -EINVAL; |
| 1175 | goto out; |
| 1176 | } |
| 1177 | |
David Rientjes | fa0cbbf | 2012-11-12 17:53:04 -0800 | [diff] [blame] | 1178 | /* |
| 1179 | * Scale /proc/pid/oom_score_adj appropriately ensuring that a maximum |
| 1180 | * value is always attainable. |
| 1181 | */ |
| 1182 | if (oom_adj == OOM_ADJUST_MAX) |
| 1183 | oom_adj = OOM_SCORE_ADJ_MAX; |
| 1184 | else |
| 1185 | oom_adj = (oom_adj * OOM_SCORE_ADJ_MAX) / -OOM_DISABLE; |
| 1186 | |
Michal Hocko | 1d5f0ac | 2016-07-28 15:44:40 -0700 | [diff] [blame] | 1187 | err = __set_oom_adj(file, oom_adj, true); |
David Rientjes | fa0cbbf | 2012-11-12 17:53:04 -0800 | [diff] [blame] | 1188 | out: |
| 1189 | return err < 0 ? err : count; |
| 1190 | } |
| 1191 | |
| 1192 | static const struct file_operations proc_oom_adj_operations = { |
| 1193 | .read = oom_adj_read, |
| 1194 | .write = oom_adj_write, |
| 1195 | .llseek = generic_file_llseek, |
| 1196 | }; |
| 1197 | |
David Rientjes | a63d83f | 2010-08-09 17:19:46 -0700 | [diff] [blame] | 1198 | static ssize_t oom_score_adj_read(struct file *file, char __user *buf, |
| 1199 | size_t count, loff_t *ppos) |
| 1200 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 1201 | struct task_struct *task = get_proc_task(file_inode(file)); |
David Rientjes | a63d83f | 2010-08-09 17:19:46 -0700 | [diff] [blame] | 1202 | char buffer[PROC_NUMBUF]; |
David Rientjes | a9c58b90 | 2012-12-11 16:02:54 -0800 | [diff] [blame] | 1203 | short oom_score_adj = OOM_SCORE_ADJ_MIN; |
David Rientjes | a63d83f | 2010-08-09 17:19:46 -0700 | [diff] [blame] | 1204 | size_t len; |
| 1205 | |
| 1206 | if (!task) |
| 1207 | return -ESRCH; |
Michal Hocko | f913da5 | 2016-07-28 15:44:37 -0700 | [diff] [blame] | 1208 | oom_score_adj = task->signal->oom_score_adj; |
David Rientjes | a63d83f | 2010-08-09 17:19:46 -0700 | [diff] [blame] | 1209 | put_task_struct(task); |
David Rientjes | a9c58b90 | 2012-12-11 16:02:54 -0800 | [diff] [blame] | 1210 | len = snprintf(buffer, sizeof(buffer), "%hd\n", oom_score_adj); |
David Rientjes | a63d83f | 2010-08-09 17:19:46 -0700 | [diff] [blame] | 1211 | return simple_read_from_buffer(buf, count, ppos, buffer, len); |
| 1212 | } |
| 1213 | |
| 1214 | static ssize_t oom_score_adj_write(struct file *file, const char __user *buf, |
| 1215 | size_t count, loff_t *ppos) |
| 1216 | { |
David Rientjes | a63d83f | 2010-08-09 17:19:46 -0700 | [diff] [blame] | 1217 | char buffer[PROC_NUMBUF]; |
Alexey Dobriyan | 0a8cb8e | 2011-05-26 16:25:50 -0700 | [diff] [blame] | 1218 | int oom_score_adj; |
David Rientjes | a63d83f | 2010-08-09 17:19:46 -0700 | [diff] [blame] | 1219 | int err; |
| 1220 | |
| 1221 | memset(buffer, 0, sizeof(buffer)); |
| 1222 | if (count > sizeof(buffer) - 1) |
| 1223 | count = sizeof(buffer) - 1; |
David Rientjes | 723548b | 2010-10-26 14:21:25 -0700 | [diff] [blame] | 1224 | if (copy_from_user(buffer, buf, count)) { |
| 1225 | err = -EFAULT; |
| 1226 | goto out; |
| 1227 | } |
David Rientjes | a63d83f | 2010-08-09 17:19:46 -0700 | [diff] [blame] | 1228 | |
Alexey Dobriyan | 0a8cb8e | 2011-05-26 16:25:50 -0700 | [diff] [blame] | 1229 | err = kstrtoint(strstrip(buffer), 0, &oom_score_adj); |
David Rientjes | a63d83f | 2010-08-09 17:19:46 -0700 | [diff] [blame] | 1230 | if (err) |
David Rientjes | 723548b | 2010-10-26 14:21:25 -0700 | [diff] [blame] | 1231 | goto out; |
David Rientjes | a63d83f | 2010-08-09 17:19:46 -0700 | [diff] [blame] | 1232 | if (oom_score_adj < OOM_SCORE_ADJ_MIN || |
David Rientjes | 723548b | 2010-10-26 14:21:25 -0700 | [diff] [blame] | 1233 | oom_score_adj > OOM_SCORE_ADJ_MAX) { |
| 1234 | err = -EINVAL; |
| 1235 | goto out; |
| 1236 | } |
David Rientjes | a63d83f | 2010-08-09 17:19:46 -0700 | [diff] [blame] | 1237 | |
Michal Hocko | 1d5f0ac | 2016-07-28 15:44:40 -0700 | [diff] [blame] | 1238 | err = __set_oom_adj(file, oom_score_adj, false); |
David Rientjes | 723548b | 2010-10-26 14:21:25 -0700 | [diff] [blame] | 1239 | out: |
| 1240 | return err < 0 ? err : count; |
David Rientjes | a63d83f | 2010-08-09 17:19:46 -0700 | [diff] [blame] | 1241 | } |
| 1242 | |
| 1243 | static const struct file_operations proc_oom_score_adj_operations = { |
| 1244 | .read = oom_score_adj_read, |
| 1245 | .write = oom_score_adj_write, |
Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 1246 | .llseek = default_llseek, |
David Rientjes | a63d83f | 2010-08-09 17:19:46 -0700 | [diff] [blame] | 1247 | }; |
| 1248 | |
Richard Guy Briggs | 4b7d248 | 2019-01-22 17:06:39 -0500 | [diff] [blame] | 1249 | #ifdef CONFIG_AUDIT |
Alexey Dobriyan | b4eb4f7 | 2016-10-29 19:04:39 +0300 | [diff] [blame] | 1250 | #define TMPBUFLEN 11 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1251 | static ssize_t proc_loginuid_read(struct file * file, char __user * buf, |
| 1252 | size_t count, loff_t *ppos) |
| 1253 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 1254 | struct inode * inode = file_inode(file); |
Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 1255 | struct task_struct *task = get_proc_task(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1256 | ssize_t length; |
| 1257 | char tmpbuf[TMPBUFLEN]; |
| 1258 | |
Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 1259 | if (!task) |
| 1260 | return -ESRCH; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1261 | length = scnprintf(tmpbuf, TMPBUFLEN, "%u", |
Eric W. Biederman | e1760bd | 2012-09-10 22:39:43 -0700 | [diff] [blame] | 1262 | from_kuid(file->f_cred->user_ns, |
| 1263 | audit_get_loginuid(task))); |
Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 1264 | put_task_struct(task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1265 | return simple_read_from_buffer(buf, count, ppos, tmpbuf, length); |
| 1266 | } |
| 1267 | |
| 1268 | static ssize_t proc_loginuid_write(struct file * file, const char __user * buf, |
| 1269 | size_t count, loff_t *ppos) |
| 1270 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 1271 | struct inode * inode = file_inode(file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1272 | uid_t loginuid; |
Eric W. Biederman | e1760bd | 2012-09-10 22:39:43 -0700 | [diff] [blame] | 1273 | kuid_t kloginuid; |
Alexey Dobriyan | 774636e | 2015-09-09 15:36:59 -0700 | [diff] [blame] | 1274 | int rv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1275 | |
Jens Axboe | 4ea33a9 | 2020-10-15 13:46:44 -0600 | [diff] [blame] | 1276 | /* Don't let kthreads write their own loginuid */ |
| 1277 | if (current->flags & PF_KTHREAD) |
| 1278 | return -EPERM; |
| 1279 | |
Paul E. McKenney | 7dc5215 | 2010-02-22 17:04:52 -0800 | [diff] [blame] | 1280 | rcu_read_lock(); |
| 1281 | if (current != pid_task(proc_pid(inode), PIDTYPE_PID)) { |
| 1282 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1283 | return -EPERM; |
Paul E. McKenney | 7dc5215 | 2010-02-22 17:04:52 -0800 | [diff] [blame] | 1284 | } |
| 1285 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1286 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1287 | if (*ppos != 0) { |
| 1288 | /* No partial writes. */ |
| 1289 | return -EINVAL; |
| 1290 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1291 | |
Alexey Dobriyan | 774636e | 2015-09-09 15:36:59 -0700 | [diff] [blame] | 1292 | rv = kstrtou32_from_user(buf, count, 10, &loginuid); |
| 1293 | if (rv < 0) |
| 1294 | return rv; |
Eric Paris | 81407c8 | 2013-05-24 09:49:14 -0400 | [diff] [blame] | 1295 | |
| 1296 | /* is userspace tring to explicitly UNSET the loginuid? */ |
| 1297 | if (loginuid == AUDIT_UID_UNSET) { |
| 1298 | kloginuid = INVALID_UID; |
| 1299 | } else { |
| 1300 | kloginuid = make_kuid(file->f_cred->user_ns, loginuid); |
Alexey Dobriyan | 774636e | 2015-09-09 15:36:59 -0700 | [diff] [blame] | 1301 | if (!uid_valid(kloginuid)) |
| 1302 | return -EINVAL; |
Eric W. Biederman | e1760bd | 2012-09-10 22:39:43 -0700 | [diff] [blame] | 1303 | } |
| 1304 | |
Alexey Dobriyan | 774636e | 2015-09-09 15:36:59 -0700 | [diff] [blame] | 1305 | rv = audit_set_loginuid(kloginuid); |
| 1306 | if (rv < 0) |
| 1307 | return rv; |
| 1308 | return count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1309 | } |
| 1310 | |
Arjan van de Ven | 00977a5 | 2007-02-12 00:55:34 -0800 | [diff] [blame] | 1311 | static const struct file_operations proc_loginuid_operations = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1312 | .read = proc_loginuid_read, |
| 1313 | .write = proc_loginuid_write, |
Arnd Bergmann | 87df842 | 2010-03-17 23:06:02 +0100 | [diff] [blame] | 1314 | .llseek = generic_file_llseek, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1315 | }; |
Eric Paris | 1e0bd75 | 2008-03-13 08:15:31 -0400 | [diff] [blame] | 1316 | |
| 1317 | static ssize_t proc_sessionid_read(struct file * file, char __user * buf, |
| 1318 | size_t count, loff_t *ppos) |
| 1319 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 1320 | struct inode * inode = file_inode(file); |
Eric Paris | 1e0bd75 | 2008-03-13 08:15:31 -0400 | [diff] [blame] | 1321 | struct task_struct *task = get_proc_task(inode); |
| 1322 | ssize_t length; |
| 1323 | char tmpbuf[TMPBUFLEN]; |
| 1324 | |
| 1325 | if (!task) |
| 1326 | return -ESRCH; |
| 1327 | length = scnprintf(tmpbuf, TMPBUFLEN, "%u", |
| 1328 | audit_get_sessionid(task)); |
| 1329 | put_task_struct(task); |
| 1330 | return simple_read_from_buffer(buf, count, ppos, tmpbuf, length); |
| 1331 | } |
| 1332 | |
| 1333 | static const struct file_operations proc_sessionid_operations = { |
| 1334 | .read = proc_sessionid_read, |
Arnd Bergmann | 87df842 | 2010-03-17 23:06:02 +0100 | [diff] [blame] | 1335 | .llseek = generic_file_llseek, |
Eric Paris | 1e0bd75 | 2008-03-13 08:15:31 -0400 | [diff] [blame] | 1336 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1337 | #endif |
| 1338 | |
Akinobu Mita | f4f154f | 2006-12-08 02:39:47 -0800 | [diff] [blame] | 1339 | #ifdef CONFIG_FAULT_INJECTION |
| 1340 | static ssize_t proc_fault_inject_read(struct file * file, char __user * buf, |
| 1341 | size_t count, loff_t *ppos) |
| 1342 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 1343 | struct task_struct *task = get_proc_task(file_inode(file)); |
Akinobu Mita | f4f154f | 2006-12-08 02:39:47 -0800 | [diff] [blame] | 1344 | char buffer[PROC_NUMBUF]; |
| 1345 | size_t len; |
| 1346 | int make_it_fail; |
Akinobu Mita | f4f154f | 2006-12-08 02:39:47 -0800 | [diff] [blame] | 1347 | |
| 1348 | if (!task) |
| 1349 | return -ESRCH; |
| 1350 | make_it_fail = task->make_it_fail; |
| 1351 | put_task_struct(task); |
| 1352 | |
| 1353 | len = snprintf(buffer, sizeof(buffer), "%i\n", make_it_fail); |
Akinobu Mita | 0c28f28 | 2007-05-08 00:31:41 -0700 | [diff] [blame] | 1354 | |
| 1355 | return simple_read_from_buffer(buf, count, ppos, buffer, len); |
Akinobu Mita | f4f154f | 2006-12-08 02:39:47 -0800 | [diff] [blame] | 1356 | } |
| 1357 | |
| 1358 | static ssize_t proc_fault_inject_write(struct file * file, |
| 1359 | const char __user * buf, size_t count, loff_t *ppos) |
| 1360 | { |
| 1361 | struct task_struct *task; |
Alexey Dobriyan | 774636e | 2015-09-09 15:36:59 -0700 | [diff] [blame] | 1362 | char buffer[PROC_NUMBUF]; |
Akinobu Mita | f4f154f | 2006-12-08 02:39:47 -0800 | [diff] [blame] | 1363 | int make_it_fail; |
Alexey Dobriyan | 774636e | 2015-09-09 15:36:59 -0700 | [diff] [blame] | 1364 | int rv; |
Akinobu Mita | f4f154f | 2006-12-08 02:39:47 -0800 | [diff] [blame] | 1365 | |
| 1366 | if (!capable(CAP_SYS_RESOURCE)) |
| 1367 | return -EPERM; |
| 1368 | memset(buffer, 0, sizeof(buffer)); |
| 1369 | if (count > sizeof(buffer) - 1) |
| 1370 | count = sizeof(buffer) - 1; |
| 1371 | if (copy_from_user(buffer, buf, count)) |
| 1372 | return -EFAULT; |
Alexey Dobriyan | 774636e | 2015-09-09 15:36:59 -0700 | [diff] [blame] | 1373 | rv = kstrtoint(strstrip(buffer), 0, &make_it_fail); |
| 1374 | if (rv < 0) |
| 1375 | return rv; |
Dave Jones | 16caed3 | 2014-04-07 15:39:15 -0700 | [diff] [blame] | 1376 | if (make_it_fail < 0 || make_it_fail > 1) |
| 1377 | return -EINVAL; |
| 1378 | |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 1379 | task = get_proc_task(file_inode(file)); |
Akinobu Mita | f4f154f | 2006-12-08 02:39:47 -0800 | [diff] [blame] | 1380 | if (!task) |
| 1381 | return -ESRCH; |
| 1382 | task->make_it_fail = make_it_fail; |
| 1383 | put_task_struct(task); |
Vincent Li | cba8aaf | 2009-09-22 16:45:38 -0700 | [diff] [blame] | 1384 | |
| 1385 | return count; |
Akinobu Mita | f4f154f | 2006-12-08 02:39:47 -0800 | [diff] [blame] | 1386 | } |
| 1387 | |
Arjan van de Ven | 00977a5 | 2007-02-12 00:55:34 -0800 | [diff] [blame] | 1388 | static const struct file_operations proc_fault_inject_operations = { |
Akinobu Mita | f4f154f | 2006-12-08 02:39:47 -0800 | [diff] [blame] | 1389 | .read = proc_fault_inject_read, |
| 1390 | .write = proc_fault_inject_write, |
Arnd Bergmann | 87df842 | 2010-03-17 23:06:02 +0100 | [diff] [blame] | 1391 | .llseek = generic_file_llseek, |
Akinobu Mita | f4f154f | 2006-12-08 02:39:47 -0800 | [diff] [blame] | 1392 | }; |
Dmitry Vyukov | e41d5818 | 2017-07-12 14:34:35 -0700 | [diff] [blame] | 1393 | |
| 1394 | static ssize_t proc_fail_nth_write(struct file *file, const char __user *buf, |
| 1395 | size_t count, loff_t *ppos) |
| 1396 | { |
| 1397 | struct task_struct *task; |
Akinobu Mita | 9049f2f | 2017-07-14 14:49:52 -0700 | [diff] [blame] | 1398 | int err; |
| 1399 | unsigned int n; |
Dmitry Vyukov | e41d5818 | 2017-07-12 14:34:35 -0700 | [diff] [blame] | 1400 | |
Akinobu Mita | 9049f2f | 2017-07-14 14:49:52 -0700 | [diff] [blame] | 1401 | err = kstrtouint_from_user(buf, count, 0, &n); |
Dmitry Vyukov | e41d5818 | 2017-07-12 14:34:35 -0700 | [diff] [blame] | 1402 | if (err) |
| 1403 | return err; |
Akinobu Mita | 1203c8e | 2017-07-14 14:49:57 -0700 | [diff] [blame] | 1404 | |
| 1405 | task = get_proc_task(file_inode(file)); |
| 1406 | if (!task) |
| 1407 | return -ESRCH; |
Alexey Dobriyan | 9f7118b | 2018-02-06 15:36:55 -0800 | [diff] [blame] | 1408 | task->fail_nth = n; |
Akinobu Mita | 1203c8e | 2017-07-14 14:49:57 -0700 | [diff] [blame] | 1409 | put_task_struct(task); |
| 1410 | |
Dmitry Vyukov | e41d5818 | 2017-07-12 14:34:35 -0700 | [diff] [blame] | 1411 | return count; |
| 1412 | } |
| 1413 | |
| 1414 | static ssize_t proc_fail_nth_read(struct file *file, char __user *buf, |
| 1415 | size_t count, loff_t *ppos) |
| 1416 | { |
| 1417 | struct task_struct *task; |
Akinobu Mita | bfc7409 | 2017-07-14 14:49:54 -0700 | [diff] [blame] | 1418 | char numbuf[PROC_NUMBUF]; |
| 1419 | ssize_t len; |
Dmitry Vyukov | e41d5818 | 2017-07-12 14:34:35 -0700 | [diff] [blame] | 1420 | |
| 1421 | task = get_proc_task(file_inode(file)); |
| 1422 | if (!task) |
| 1423 | return -ESRCH; |
Alexey Dobriyan | 9f7118b | 2018-02-06 15:36:55 -0800 | [diff] [blame] | 1424 | len = snprintf(numbuf, sizeof(numbuf), "%u\n", task->fail_nth); |
Akinobu Mita | 1203c8e | 2017-07-14 14:49:57 -0700 | [diff] [blame] | 1425 | put_task_struct(task); |
Alexey Dobriyan | a44937f | 2018-08-21 21:54:27 -0700 | [diff] [blame] | 1426 | return simple_read_from_buffer(buf, count, ppos, numbuf, len); |
Dmitry Vyukov | e41d5818 | 2017-07-12 14:34:35 -0700 | [diff] [blame] | 1427 | } |
| 1428 | |
| 1429 | static const struct file_operations proc_fail_nth_operations = { |
| 1430 | .read = proc_fail_nth_read, |
| 1431 | .write = proc_fail_nth_write, |
| 1432 | }; |
Akinobu Mita | f4f154f | 2006-12-08 02:39:47 -0800 | [diff] [blame] | 1433 | #endif |
| 1434 | |
Arjan van de Ven | 9745512 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 1435 | |
Ingo Molnar | 43ae34c | 2007-07-09 18:52:00 +0200 | [diff] [blame] | 1436 | #ifdef CONFIG_SCHED_DEBUG |
| 1437 | /* |
| 1438 | * Print out various scheduling related per-task fields: |
| 1439 | */ |
| 1440 | static int sched_show(struct seq_file *m, void *v) |
| 1441 | { |
| 1442 | struct inode *inode = m->private; |
Alexey Gladkov | 9d78ede | 2020-05-18 20:07:38 +0200 | [diff] [blame] | 1443 | struct pid_namespace *ns = proc_pid_ns(inode->i_sb); |
Ingo Molnar | 43ae34c | 2007-07-09 18:52:00 +0200 | [diff] [blame] | 1444 | struct task_struct *p; |
| 1445 | |
Ingo Molnar | 43ae34c | 2007-07-09 18:52:00 +0200 | [diff] [blame] | 1446 | p = get_proc_task(inode); |
| 1447 | if (!p) |
| 1448 | return -ESRCH; |
Aleksa Sarai | 74dc338 | 2017-08-06 14:41:41 +1000 | [diff] [blame] | 1449 | proc_sched_show_task(p, ns, m); |
Ingo Molnar | 43ae34c | 2007-07-09 18:52:00 +0200 | [diff] [blame] | 1450 | |
| 1451 | put_task_struct(p); |
| 1452 | |
| 1453 | return 0; |
| 1454 | } |
| 1455 | |
| 1456 | static ssize_t |
| 1457 | sched_write(struct file *file, const char __user *buf, |
| 1458 | size_t count, loff_t *offset) |
| 1459 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 1460 | struct inode *inode = file_inode(file); |
Ingo Molnar | 43ae34c | 2007-07-09 18:52:00 +0200 | [diff] [blame] | 1461 | struct task_struct *p; |
| 1462 | |
Ingo Molnar | 43ae34c | 2007-07-09 18:52:00 +0200 | [diff] [blame] | 1463 | p = get_proc_task(inode); |
| 1464 | if (!p) |
| 1465 | return -ESRCH; |
| 1466 | proc_sched_set_task(p); |
| 1467 | |
| 1468 | put_task_struct(p); |
| 1469 | |
| 1470 | return count; |
| 1471 | } |
| 1472 | |
| 1473 | static int sched_open(struct inode *inode, struct file *filp) |
| 1474 | { |
Jovi Zhang | c6a3405 | 2011-01-12 17:00:34 -0800 | [diff] [blame] | 1475 | return single_open(filp, sched_show, inode); |
Ingo Molnar | 43ae34c | 2007-07-09 18:52:00 +0200 | [diff] [blame] | 1476 | } |
| 1477 | |
| 1478 | static const struct file_operations proc_pid_sched_operations = { |
| 1479 | .open = sched_open, |
| 1480 | .read = seq_read, |
| 1481 | .write = sched_write, |
| 1482 | .llseek = seq_lseek, |
Alexey Dobriyan | 5ea473a | 2007-07-31 00:38:50 -0700 | [diff] [blame] | 1483 | .release = single_release, |
Ingo Molnar | 43ae34c | 2007-07-09 18:52:00 +0200 | [diff] [blame] | 1484 | }; |
| 1485 | |
| 1486 | #endif |
| 1487 | |
Mike Galbraith | 5091faa | 2010-11-30 14:18:03 +0100 | [diff] [blame] | 1488 | #ifdef CONFIG_SCHED_AUTOGROUP |
| 1489 | /* |
| 1490 | * Print out autogroup related information: |
| 1491 | */ |
| 1492 | static int sched_autogroup_show(struct seq_file *m, void *v) |
| 1493 | { |
| 1494 | struct inode *inode = m->private; |
| 1495 | struct task_struct *p; |
| 1496 | |
| 1497 | p = get_proc_task(inode); |
| 1498 | if (!p) |
| 1499 | return -ESRCH; |
| 1500 | proc_sched_autogroup_show_task(p, m); |
| 1501 | |
| 1502 | put_task_struct(p); |
| 1503 | |
| 1504 | return 0; |
| 1505 | } |
| 1506 | |
| 1507 | static ssize_t |
| 1508 | sched_autogroup_write(struct file *file, const char __user *buf, |
| 1509 | size_t count, loff_t *offset) |
| 1510 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 1511 | struct inode *inode = file_inode(file); |
Mike Galbraith | 5091faa | 2010-11-30 14:18:03 +0100 | [diff] [blame] | 1512 | struct task_struct *p; |
| 1513 | char buffer[PROC_NUMBUF]; |
Alexey Dobriyan | 0a8cb8e | 2011-05-26 16:25:50 -0700 | [diff] [blame] | 1514 | int nice; |
Mike Galbraith | 5091faa | 2010-11-30 14:18:03 +0100 | [diff] [blame] | 1515 | int err; |
| 1516 | |
| 1517 | memset(buffer, 0, sizeof(buffer)); |
| 1518 | if (count > sizeof(buffer) - 1) |
| 1519 | count = sizeof(buffer) - 1; |
| 1520 | if (copy_from_user(buffer, buf, count)) |
| 1521 | return -EFAULT; |
| 1522 | |
Alexey Dobriyan | 0a8cb8e | 2011-05-26 16:25:50 -0700 | [diff] [blame] | 1523 | err = kstrtoint(strstrip(buffer), 0, &nice); |
| 1524 | if (err < 0) |
| 1525 | return err; |
Mike Galbraith | 5091faa | 2010-11-30 14:18:03 +0100 | [diff] [blame] | 1526 | |
| 1527 | p = get_proc_task(inode); |
| 1528 | if (!p) |
| 1529 | return -ESRCH; |
| 1530 | |
Hiroshi Shimamoto | 2e5b5b3 | 2012-02-23 17:41:27 +0900 | [diff] [blame] | 1531 | err = proc_sched_autogroup_set_nice(p, nice); |
Mike Galbraith | 5091faa | 2010-11-30 14:18:03 +0100 | [diff] [blame] | 1532 | if (err) |
| 1533 | count = err; |
| 1534 | |
| 1535 | put_task_struct(p); |
| 1536 | |
| 1537 | return count; |
| 1538 | } |
| 1539 | |
| 1540 | static int sched_autogroup_open(struct inode *inode, struct file *filp) |
| 1541 | { |
| 1542 | int ret; |
| 1543 | |
| 1544 | ret = single_open(filp, sched_autogroup_show, NULL); |
| 1545 | if (!ret) { |
| 1546 | struct seq_file *m = filp->private_data; |
| 1547 | |
| 1548 | m->private = inode; |
| 1549 | } |
| 1550 | return ret; |
| 1551 | } |
| 1552 | |
| 1553 | static const struct file_operations proc_pid_sched_autogroup_operations = { |
| 1554 | .open = sched_autogroup_open, |
| 1555 | .read = seq_read, |
| 1556 | .write = sched_autogroup_write, |
| 1557 | .llseek = seq_lseek, |
| 1558 | .release = single_release, |
| 1559 | }; |
| 1560 | |
| 1561 | #endif /* CONFIG_SCHED_AUTOGROUP */ |
| 1562 | |
Andrei Vagin | 04a8682 | 2019-11-12 01:27:16 +0000 | [diff] [blame] | 1563 | #ifdef CONFIG_TIME_NS |
| 1564 | static int timens_offsets_show(struct seq_file *m, void *v) |
| 1565 | { |
| 1566 | struct task_struct *p; |
| 1567 | |
| 1568 | p = get_proc_task(file_inode(m->file)); |
| 1569 | if (!p) |
| 1570 | return -ESRCH; |
| 1571 | proc_timens_show_offsets(p, m); |
| 1572 | |
| 1573 | put_task_struct(p); |
| 1574 | |
| 1575 | return 0; |
| 1576 | } |
| 1577 | |
| 1578 | static ssize_t timens_offsets_write(struct file *file, const char __user *buf, |
| 1579 | size_t count, loff_t *ppos) |
| 1580 | { |
| 1581 | struct inode *inode = file_inode(file); |
| 1582 | struct proc_timens_offset offsets[2]; |
| 1583 | char *kbuf = NULL, *pos, *next_line; |
| 1584 | struct task_struct *p; |
| 1585 | int ret, noffsets; |
| 1586 | |
| 1587 | /* Only allow < page size writes at the beginning of the file */ |
| 1588 | if ((*ppos != 0) || (count >= PAGE_SIZE)) |
| 1589 | return -EINVAL; |
| 1590 | |
| 1591 | /* Slurp in the user data */ |
| 1592 | kbuf = memdup_user_nul(buf, count); |
| 1593 | if (IS_ERR(kbuf)) |
| 1594 | return PTR_ERR(kbuf); |
| 1595 | |
| 1596 | /* Parse the user data */ |
| 1597 | ret = -EINVAL; |
| 1598 | noffsets = 0; |
| 1599 | for (pos = kbuf; pos; pos = next_line) { |
| 1600 | struct proc_timens_offset *off = &offsets[noffsets]; |
Andrei Vagin | 94d440d | 2020-04-11 08:40:31 -0700 | [diff] [blame] | 1601 | char clock[10]; |
Andrei Vagin | 04a8682 | 2019-11-12 01:27:16 +0000 | [diff] [blame] | 1602 | int err; |
| 1603 | |
| 1604 | /* Find the end of line and ensure we don't look past it */ |
| 1605 | next_line = strchr(pos, '\n'); |
| 1606 | if (next_line) { |
| 1607 | *next_line = '\0'; |
| 1608 | next_line++; |
| 1609 | if (*next_line == '\0') |
| 1610 | next_line = NULL; |
| 1611 | } |
| 1612 | |
Andrei Vagin | 94d440d | 2020-04-11 08:40:31 -0700 | [diff] [blame] | 1613 | err = sscanf(pos, "%9s %lld %lu", clock, |
Andrei Vagin | 04a8682 | 2019-11-12 01:27:16 +0000 | [diff] [blame] | 1614 | &off->val.tv_sec, &off->val.tv_nsec); |
| 1615 | if (err != 3 || off->val.tv_nsec >= NSEC_PER_SEC) |
| 1616 | goto out; |
Andrei Vagin | 94d440d | 2020-04-11 08:40:31 -0700 | [diff] [blame] | 1617 | |
| 1618 | clock[sizeof(clock) - 1] = 0; |
| 1619 | if (strcmp(clock, "monotonic") == 0 || |
| 1620 | strcmp(clock, __stringify(CLOCK_MONOTONIC)) == 0) |
| 1621 | off->clockid = CLOCK_MONOTONIC; |
| 1622 | else if (strcmp(clock, "boottime") == 0 || |
| 1623 | strcmp(clock, __stringify(CLOCK_BOOTTIME)) == 0) |
| 1624 | off->clockid = CLOCK_BOOTTIME; |
| 1625 | else |
| 1626 | goto out; |
| 1627 | |
Andrei Vagin | 04a8682 | 2019-11-12 01:27:16 +0000 | [diff] [blame] | 1628 | noffsets++; |
| 1629 | if (noffsets == ARRAY_SIZE(offsets)) { |
| 1630 | if (next_line) |
| 1631 | count = next_line - kbuf; |
| 1632 | break; |
| 1633 | } |
| 1634 | } |
| 1635 | |
| 1636 | ret = -ESRCH; |
| 1637 | p = get_proc_task(inode); |
| 1638 | if (!p) |
| 1639 | goto out; |
| 1640 | ret = proc_timens_set_offset(file, p, offsets, noffsets); |
| 1641 | put_task_struct(p); |
| 1642 | if (ret) |
| 1643 | goto out; |
| 1644 | |
| 1645 | ret = count; |
| 1646 | out: |
| 1647 | kfree(kbuf); |
| 1648 | return ret; |
| 1649 | } |
| 1650 | |
| 1651 | static int timens_offsets_open(struct inode *inode, struct file *filp) |
| 1652 | { |
| 1653 | return single_open(filp, timens_offsets_show, inode); |
| 1654 | } |
| 1655 | |
| 1656 | static const struct file_operations proc_timens_offsets_operations = { |
| 1657 | .open = timens_offsets_open, |
| 1658 | .read = seq_read, |
| 1659 | .write = timens_offsets_write, |
| 1660 | .llseek = seq_lseek, |
| 1661 | .release = single_release, |
| 1662 | }; |
| 1663 | #endif /* CONFIG_TIME_NS */ |
| 1664 | |
john stultz | 4614a696b | 2009-12-14 18:00:05 -0800 | [diff] [blame] | 1665 | static ssize_t comm_write(struct file *file, const char __user *buf, |
| 1666 | size_t count, loff_t *offset) |
| 1667 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 1668 | struct inode *inode = file_inode(file); |
john stultz | 4614a696b | 2009-12-14 18:00:05 -0800 | [diff] [blame] | 1669 | struct task_struct *p; |
| 1670 | char buffer[TASK_COMM_LEN]; |
David Rientjes | 830e0fc | 2013-04-30 15:28:18 -0700 | [diff] [blame] | 1671 | const size_t maxlen = sizeof(buffer) - 1; |
john stultz | 4614a696b | 2009-12-14 18:00:05 -0800 | [diff] [blame] | 1672 | |
| 1673 | memset(buffer, 0, sizeof(buffer)); |
David Rientjes | 830e0fc | 2013-04-30 15:28:18 -0700 | [diff] [blame] | 1674 | if (copy_from_user(buffer, buf, count > maxlen ? maxlen : count)) |
john stultz | 4614a696b | 2009-12-14 18:00:05 -0800 | [diff] [blame] | 1675 | return -EFAULT; |
| 1676 | |
| 1677 | p = get_proc_task(inode); |
| 1678 | if (!p) |
| 1679 | return -ESRCH; |
| 1680 | |
Ohhoon Kwon | c2f273e | 2021-09-07 19:57:35 -0700 | [diff] [blame] | 1681 | if (same_thread_group(current, p)) { |
john stultz | 4614a696b | 2009-12-14 18:00:05 -0800 | [diff] [blame] | 1682 | set_task_comm(p, buffer); |
Ohhoon Kwon | c2f273e | 2021-09-07 19:57:35 -0700 | [diff] [blame] | 1683 | proc_comm_connector(p); |
| 1684 | } |
john stultz | 4614a696b | 2009-12-14 18:00:05 -0800 | [diff] [blame] | 1685 | else |
| 1686 | count = -EINVAL; |
| 1687 | |
| 1688 | put_task_struct(p); |
| 1689 | |
| 1690 | return count; |
| 1691 | } |
| 1692 | |
| 1693 | static int comm_show(struct seq_file *m, void *v) |
| 1694 | { |
| 1695 | struct inode *inode = m->private; |
| 1696 | struct task_struct *p; |
| 1697 | |
| 1698 | p = get_proc_task(inode); |
| 1699 | if (!p) |
| 1700 | return -ESRCH; |
| 1701 | |
Tejun Heo | 88b72b3 | 2018-05-18 08:47:13 -0700 | [diff] [blame] | 1702 | proc_task_name(m, p, false); |
| 1703 | seq_putc(m, '\n'); |
john stultz | 4614a696b | 2009-12-14 18:00:05 -0800 | [diff] [blame] | 1704 | |
| 1705 | put_task_struct(p); |
| 1706 | |
| 1707 | return 0; |
| 1708 | } |
| 1709 | |
| 1710 | static int comm_open(struct inode *inode, struct file *filp) |
| 1711 | { |
Jovi Zhang | c6a3405 | 2011-01-12 17:00:34 -0800 | [diff] [blame] | 1712 | return single_open(filp, comm_show, inode); |
john stultz | 4614a696b | 2009-12-14 18:00:05 -0800 | [diff] [blame] | 1713 | } |
| 1714 | |
| 1715 | static const struct file_operations proc_pid_set_comm_operations = { |
| 1716 | .open = comm_open, |
| 1717 | .read = seq_read, |
| 1718 | .write = comm_write, |
| 1719 | .llseek = seq_lseek, |
| 1720 | .release = single_release, |
| 1721 | }; |
| 1722 | |
Cyrill Gorcunov | 7773fbc | 2012-01-10 15:11:20 -0800 | [diff] [blame] | 1723 | static int proc_exe_link(struct dentry *dentry, struct path *exe_path) |
Matt Helsley | 925d1c4 | 2008-04-29 01:01:36 -0700 | [diff] [blame] | 1724 | { |
| 1725 | struct task_struct *task; |
Matt Helsley | 925d1c4 | 2008-04-29 01:01:36 -0700 | [diff] [blame] | 1726 | struct file *exe_file; |
| 1727 | |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 1728 | task = get_proc_task(d_inode(dentry)); |
Matt Helsley | 925d1c4 | 2008-04-29 01:01:36 -0700 | [diff] [blame] | 1729 | if (!task) |
| 1730 | return -ENOENT; |
Mateusz Guzik | cd81a917 | 2016-08-23 16:20:38 +0200 | [diff] [blame] | 1731 | exe_file = get_task_exe_file(task); |
Matt Helsley | 925d1c4 | 2008-04-29 01:01:36 -0700 | [diff] [blame] | 1732 | put_task_struct(task); |
Matt Helsley | 925d1c4 | 2008-04-29 01:01:36 -0700 | [diff] [blame] | 1733 | if (exe_file) { |
| 1734 | *exe_path = exe_file->f_path; |
| 1735 | path_get(&exe_file->f_path); |
| 1736 | fput(exe_file); |
| 1737 | return 0; |
| 1738 | } else |
| 1739 | return -ENOENT; |
| 1740 | } |
| 1741 | |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 1742 | static const char *proc_pid_get_link(struct dentry *dentry, |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 1743 | struct inode *inode, |
| 1744 | struct delayed_call *done) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1745 | { |
Christoph Hellwig | 408ef01 | 2012-06-18 10:47:03 -0400 | [diff] [blame] | 1746 | struct path path; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1747 | int error = -EACCES; |
| 1748 | |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 1749 | if (!dentry) |
| 1750 | return ERR_PTR(-ECHILD); |
| 1751 | |
Eric W. Biederman | 778c114 | 2006-06-26 00:25:58 -0700 | [diff] [blame] | 1752 | /* Are we allowed to snoop on the tasks file descriptors? */ |
| 1753 | if (!proc_fd_access_allowed(inode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1754 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1755 | |
Christoph Hellwig | 408ef01 | 2012-06-18 10:47:03 -0400 | [diff] [blame] | 1756 | error = PROC_I(inode)->op.proc_get_link(dentry, &path); |
| 1757 | if (error) |
| 1758 | goto out; |
| 1759 | |
Aleksa Sarai | 1bc8207 | 2019-12-07 01:13:28 +1100 | [diff] [blame] | 1760 | error = nd_jump_link(&path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1761 | out: |
Al Viro | 008b150 | 2005-08-20 00:17:39 +0100 | [diff] [blame] | 1762 | return ERR_PTR(error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1763 | } |
| 1764 | |
Jan Blunck | 3dcd25f | 2008-02-14 19:38:35 -0800 | [diff] [blame] | 1765 | static int do_proc_readlink(struct path *path, char __user *buffer, int buflen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1766 | { |
Michal Hocko | 0ee931c | 2017-09-13 16:28:29 -0700 | [diff] [blame] | 1767 | char *tmp = (char *)__get_free_page(GFP_KERNEL); |
Jan Blunck | 3dcd25f | 2008-02-14 19:38:35 -0800 | [diff] [blame] | 1768 | char *pathname; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1769 | int len; |
| 1770 | |
| 1771 | if (!tmp) |
| 1772 | return -ENOMEM; |
Akinobu Mita | 0c28f28 | 2007-05-08 00:31:41 -0700 | [diff] [blame] | 1773 | |
Eric W. Biederman | 7b2a69b | 2010-12-05 15:51:21 -0800 | [diff] [blame] | 1774 | pathname = d_path(path, tmp, PAGE_SIZE); |
Jan Blunck | 3dcd25f | 2008-02-14 19:38:35 -0800 | [diff] [blame] | 1775 | len = PTR_ERR(pathname); |
| 1776 | if (IS_ERR(pathname)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1777 | goto out; |
Jan Blunck | 3dcd25f | 2008-02-14 19:38:35 -0800 | [diff] [blame] | 1778 | len = tmp + PAGE_SIZE - 1 - pathname; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1779 | |
| 1780 | if (len > buflen) |
| 1781 | len = buflen; |
Jan Blunck | 3dcd25f | 2008-02-14 19:38:35 -0800 | [diff] [blame] | 1782 | if (copy_to_user(buffer, pathname, len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1783 | len = -EFAULT; |
| 1784 | out: |
| 1785 | free_page((unsigned long)tmp); |
| 1786 | return len; |
| 1787 | } |
| 1788 | |
| 1789 | static int proc_pid_readlink(struct dentry * dentry, char __user * buffer, int buflen) |
| 1790 | { |
| 1791 | int error = -EACCES; |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 1792 | struct inode *inode = d_inode(dentry); |
Jan Blunck | 3dcd25f | 2008-02-14 19:38:35 -0800 | [diff] [blame] | 1793 | struct path path; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1794 | |
Eric W. Biederman | 778c114 | 2006-06-26 00:25:58 -0700 | [diff] [blame] | 1795 | /* Are we allowed to snoop on the tasks file descriptors? */ |
| 1796 | if (!proc_fd_access_allowed(inode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1797 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1798 | |
Cyrill Gorcunov | 7773fbc | 2012-01-10 15:11:20 -0800 | [diff] [blame] | 1799 | error = PROC_I(inode)->op.proc_get_link(dentry, &path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1800 | if (error) |
| 1801 | goto out; |
| 1802 | |
Jan Blunck | 3dcd25f | 2008-02-14 19:38:35 -0800 | [diff] [blame] | 1803 | error = do_proc_readlink(&path, buffer, buflen); |
| 1804 | path_put(&path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1805 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1806 | return error; |
| 1807 | } |
| 1808 | |
Cyrill Gorcunov | faf60af | 2012-08-23 14:43:24 +0400 | [diff] [blame] | 1809 | const struct inode_operations proc_pid_link_inode_operations = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1810 | .readlink = proc_pid_readlink, |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 1811 | .get_link = proc_pid_get_link, |
Linus Torvalds | 6d76fa5 | 2006-07-15 12:26:45 -0700 | [diff] [blame] | 1812 | .setattr = proc_setattr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1813 | }; |
| 1814 | |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 1815 | |
| 1816 | /* building an inode */ |
| 1817 | |
Al Viro | c6eb50d | 2017-09-30 14:45:42 -0400 | [diff] [blame] | 1818 | void task_dump_owner(struct task_struct *task, umode_t mode, |
Eric W. Biederman | 68eb94f | 2017-01-03 10:23:11 +1300 | [diff] [blame] | 1819 | kuid_t *ruid, kgid_t *rgid) |
| 1820 | { |
| 1821 | /* Depending on the state of dumpable compute who should own a |
| 1822 | * proc file for a task. |
| 1823 | */ |
| 1824 | const struct cred *cred; |
| 1825 | kuid_t uid; |
| 1826 | kgid_t gid; |
| 1827 | |
Alexey Dobriyan | 2e0ad55 | 2018-04-20 14:56:03 -0700 | [diff] [blame] | 1828 | if (unlikely(task->flags & PF_KTHREAD)) { |
| 1829 | *ruid = GLOBAL_ROOT_UID; |
| 1830 | *rgid = GLOBAL_ROOT_GID; |
| 1831 | return; |
| 1832 | } |
| 1833 | |
Eric W. Biederman | 68eb94f | 2017-01-03 10:23:11 +1300 | [diff] [blame] | 1834 | /* Default to the tasks effective ownership */ |
| 1835 | rcu_read_lock(); |
| 1836 | cred = __task_cred(task); |
| 1837 | uid = cred->euid; |
| 1838 | gid = cred->egid; |
| 1839 | rcu_read_unlock(); |
| 1840 | |
| 1841 | /* |
| 1842 | * Before the /proc/pid/status file was created the only way to read |
| 1843 | * the effective uid of a /process was to stat /proc/pid. Reading |
| 1844 | * /proc/pid/status is slow enough that procps and other packages |
| 1845 | * kept stating /proc/pid. To keep the rules in /proc simple I have |
| 1846 | * made this apply to all per process world readable and executable |
| 1847 | * directories. |
| 1848 | */ |
| 1849 | if (mode != (S_IFDIR|S_IRUGO|S_IXUGO)) { |
| 1850 | struct mm_struct *mm; |
| 1851 | task_lock(task); |
| 1852 | mm = task->mm; |
| 1853 | /* Make non-dumpable tasks owned by some root */ |
| 1854 | if (mm) { |
| 1855 | if (get_dumpable(mm) != SUID_DUMP_USER) { |
| 1856 | struct user_namespace *user_ns = mm->user_ns; |
| 1857 | |
| 1858 | uid = make_kuid(user_ns, 0); |
| 1859 | if (!uid_valid(uid)) |
| 1860 | uid = GLOBAL_ROOT_UID; |
| 1861 | |
| 1862 | gid = make_kgid(user_ns, 0); |
| 1863 | if (!gid_valid(gid)) |
| 1864 | gid = GLOBAL_ROOT_GID; |
| 1865 | } |
| 1866 | } else { |
| 1867 | uid = GLOBAL_ROOT_UID; |
| 1868 | gid = GLOBAL_ROOT_GID; |
| 1869 | } |
| 1870 | task_unlock(task); |
| 1871 | } |
| 1872 | *ruid = uid; |
| 1873 | *rgid = gid; |
| 1874 | } |
| 1875 | |
Eric W. Biederman | 7bc3e6e | 2020-02-19 18:22:26 -0600 | [diff] [blame] | 1876 | void proc_pid_evict_inode(struct proc_inode *ei) |
| 1877 | { |
| 1878 | struct pid *pid = ei->pid; |
| 1879 | |
| 1880 | if (S_ISDIR(ei->vfs_inode.i_mode)) { |
Eric W. Biederman | 63f818f | 2020-04-07 09:43:04 -0500 | [diff] [blame] | 1881 | spin_lock(&pid->lock); |
Eric W. Biederman | 7bc3e6e | 2020-02-19 18:22:26 -0600 | [diff] [blame] | 1882 | hlist_del_init_rcu(&ei->sibling_inodes); |
Eric W. Biederman | 63f818f | 2020-04-07 09:43:04 -0500 | [diff] [blame] | 1883 | spin_unlock(&pid->lock); |
Eric W. Biederman | 7bc3e6e | 2020-02-19 18:22:26 -0600 | [diff] [blame] | 1884 | } |
| 1885 | |
| 1886 | put_pid(pid); |
| 1887 | } |
| 1888 | |
Andreas Gruenbacher | db978da | 2016-11-10 22:18:28 +0100 | [diff] [blame] | 1889 | struct inode *proc_pid_make_inode(struct super_block * sb, |
| 1890 | struct task_struct *task, umode_t mode) |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 1891 | { |
| 1892 | struct inode * inode; |
| 1893 | struct proc_inode *ei; |
Eric W. Biederman | 7bc3e6e | 2020-02-19 18:22:26 -0600 | [diff] [blame] | 1894 | struct pid *pid; |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 1895 | |
| 1896 | /* We need a new inode */ |
| 1897 | |
| 1898 | inode = new_inode(sb); |
| 1899 | if (!inode) |
| 1900 | goto out; |
| 1901 | |
| 1902 | /* Common stuff */ |
| 1903 | ei = PROC_I(inode); |
Andreas Gruenbacher | db978da | 2016-11-10 22:18:28 +0100 | [diff] [blame] | 1904 | inode->i_mode = mode; |
Christoph Hellwig | 85fe402 | 2010-10-23 11:19:54 -0400 | [diff] [blame] | 1905 | inode->i_ino = get_next_ino(); |
Deepa Dinamani | 078cd82 | 2016-09-14 07:48:04 -0700 | [diff] [blame] | 1906 | inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode); |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 1907 | inode->i_op = &proc_def_inode_operations; |
| 1908 | |
| 1909 | /* |
| 1910 | * grab the reference to task. |
| 1911 | */ |
Eric W. Biederman | 7bc3e6e | 2020-02-19 18:22:26 -0600 | [diff] [blame] | 1912 | pid = get_task_pid(task, PIDTYPE_PID); |
| 1913 | if (!pid) |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 1914 | goto out_unlock; |
| 1915 | |
Eric W. Biederman | 7bc3e6e | 2020-02-19 18:22:26 -0600 | [diff] [blame] | 1916 | /* Let the pid remember us for quick removal */ |
| 1917 | ei->pid = pid; |
| 1918 | if (S_ISDIR(mode)) { |
Eric W. Biederman | 63f818f | 2020-04-07 09:43:04 -0500 | [diff] [blame] | 1919 | spin_lock(&pid->lock); |
Eric W. Biederman | 7bc3e6e | 2020-02-19 18:22:26 -0600 | [diff] [blame] | 1920 | hlist_add_head_rcu(&ei->sibling_inodes, &pid->inodes); |
Eric W. Biederman | 63f818f | 2020-04-07 09:43:04 -0500 | [diff] [blame] | 1921 | spin_unlock(&pid->lock); |
Eric W. Biederman | 7bc3e6e | 2020-02-19 18:22:26 -0600 | [diff] [blame] | 1922 | } |
| 1923 | |
Eric W. Biederman | 68eb94f | 2017-01-03 10:23:11 +1300 | [diff] [blame] | 1924 | task_dump_owner(task, 0, &inode->i_uid, &inode->i_gid); |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 1925 | security_task_to_inode(task, inode); |
| 1926 | |
| 1927 | out: |
| 1928 | return inode; |
| 1929 | |
| 1930 | out_unlock: |
| 1931 | iput(inode); |
| 1932 | return NULL; |
| 1933 | } |
| 1934 | |
Christian Brauner | 549c729 | 2021-01-21 14:19:43 +0100 | [diff] [blame] | 1935 | int pid_getattr(struct user_namespace *mnt_userns, const struct path *path, |
| 1936 | struct kstat *stat, u32 request_mask, unsigned int query_flags) |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 1937 | { |
David Howells | a528d35 | 2017-01-31 16:46:22 +0000 | [diff] [blame] | 1938 | struct inode *inode = d_inode(path->dentry); |
Alexey Gladkov | fa10fed | 2020-04-19 16:10:52 +0200 | [diff] [blame] | 1939 | struct proc_fs_info *fs_info = proc_sb_info(inode->i_sb); |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 1940 | struct task_struct *task; |
David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1941 | |
Christian Brauner | 0d56a45 | 2021-01-21 14:19:30 +0100 | [diff] [blame] | 1942 | generic_fillattr(&init_user_ns, inode, stat); |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 1943 | |
Eric W. Biederman | dcb0f22 | 2012-02-09 08:48:21 -0800 | [diff] [blame] | 1944 | stat->uid = GLOBAL_ROOT_UID; |
| 1945 | stat->gid = GLOBAL_ROOT_GID; |
Alexey Dobriyan | 9411692 | 2018-06-07 17:10:07 -0700 | [diff] [blame] | 1946 | rcu_read_lock(); |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 1947 | task = pid_task(proc_pid(inode), PIDTYPE_PID); |
| 1948 | if (task) { |
Alexey Gladkov | fa10fed | 2020-04-19 16:10:52 +0200 | [diff] [blame] | 1949 | if (!has_pid_permissions(fs_info, task, HIDEPID_INVISIBLE)) { |
Vasiliy Kulikov | 0499680 | 2012-01-10 15:11:31 -0800 | [diff] [blame] | 1950 | rcu_read_unlock(); |
| 1951 | /* |
| 1952 | * This doesn't prevent learning whether PID exists, |
| 1953 | * it only makes getattr() consistent with readdir(). |
| 1954 | */ |
| 1955 | return -ENOENT; |
| 1956 | } |
Eric W. Biederman | 68eb94f | 2017-01-03 10:23:11 +1300 | [diff] [blame] | 1957 | task_dump_owner(task, inode->i_mode, &stat->uid, &stat->gid); |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 1958 | } |
| 1959 | rcu_read_unlock(); |
| 1960 | return 0; |
| 1961 | } |
| 1962 | |
| 1963 | /* dentry stuff */ |
| 1964 | |
| 1965 | /* |
Al Viro | 1bbc551 | 2018-05-02 21:26:16 -0400 | [diff] [blame] | 1966 | * Set <pid>/... inode ownership (can change due to setuid(), etc.) |
| 1967 | */ |
| 1968 | void pid_update_inode(struct task_struct *task, struct inode *inode) |
| 1969 | { |
| 1970 | task_dump_owner(task, inode->i_mode, &inode->i_uid, &inode->i_gid); |
| 1971 | |
| 1972 | inode->i_mode &= ~(S_ISUID | S_ISGID); |
| 1973 | security_task_to_inode(task, inode); |
| 1974 | } |
| 1975 | |
| 1976 | /* |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 1977 | * Rewrite the inode's ownerships here because the owning task may have |
| 1978 | * performed a setuid(), etc. |
| 1979 | * |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 1980 | */ |
Al Viro | 1bbc551 | 2018-05-02 21:26:16 -0400 | [diff] [blame] | 1981 | static int pid_revalidate(struct dentry *dentry, unsigned int flags) |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 1982 | { |
Nick Piggin | 34286d6 | 2011-01-07 17:49:57 +1100 | [diff] [blame] | 1983 | struct inode *inode; |
| 1984 | struct task_struct *task; |
Stephen Brennan | da4d6b9 | 2021-11-08 18:32:05 -0800 | [diff] [blame] | 1985 | int ret = 0; |
David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 1986 | |
Stephen Brennan | da4d6b9 | 2021-11-08 18:32:05 -0800 | [diff] [blame] | 1987 | rcu_read_lock(); |
| 1988 | inode = d_inode_rcu(dentry); |
| 1989 | if (!inode) |
| 1990 | goto out; |
| 1991 | task = pid_task(proc_pid(inode), PIDTYPE_PID); |
Nick Piggin | 34286d6 | 2011-01-07 17:49:57 +1100 | [diff] [blame] | 1992 | |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 1993 | if (task) { |
Al Viro | 1bbc551 | 2018-05-02 21:26:16 -0400 | [diff] [blame] | 1994 | pid_update_inode(task, inode); |
Stephen Brennan | da4d6b9 | 2021-11-08 18:32:05 -0800 | [diff] [blame] | 1995 | ret = 1; |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 1996 | } |
Stephen Brennan | da4d6b9 | 2021-11-08 18:32:05 -0800 | [diff] [blame] | 1997 | out: |
| 1998 | rcu_read_unlock(); |
| 1999 | return ret; |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2000 | } |
| 2001 | |
Oleg Nesterov | d855a4b | 2014-01-23 15:55:39 -0800 | [diff] [blame] | 2002 | static inline bool proc_inode_is_dead(struct inode *inode) |
| 2003 | { |
| 2004 | return !proc_pid(inode)->tasks[PIDTYPE_PID].first; |
| 2005 | } |
| 2006 | |
David Howells | 1dd704b | 2013-04-12 01:08:50 +0100 | [diff] [blame] | 2007 | int pid_delete_dentry(const struct dentry *dentry) |
| 2008 | { |
| 2009 | /* Is the task we represent dead? |
| 2010 | * If so, then don't put the dentry on the lru list, |
| 2011 | * kill it immediately. |
| 2012 | */ |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 2013 | return proc_inode_is_dead(d_inode(dentry)); |
David Howells | 1dd704b | 2013-04-12 01:08:50 +0100 | [diff] [blame] | 2014 | } |
| 2015 | |
Eric W. Biederman | 6b4e306 | 2010-03-07 16:41:34 -0800 | [diff] [blame] | 2016 | const struct dentry_operations pid_dentry_operations = |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2017 | { |
| 2018 | .d_revalidate = pid_revalidate, |
| 2019 | .d_delete = pid_delete_dentry, |
| 2020 | }; |
| 2021 | |
| 2022 | /* Lookups */ |
| 2023 | |
Eric W. Biederman | 1c0d04c | 2006-10-02 02:18:57 -0700 | [diff] [blame] | 2024 | /* |
| 2025 | * Fill a directory entry. |
| 2026 | * |
| 2027 | * If possible create the dcache entry and derive our inode number and |
| 2028 | * file type from dcache entry. |
| 2029 | * |
| 2030 | * Since all of the proc inode numbers are dynamically generated, the inode |
Randy Dunlap | d2928e8 | 2020-12-15 20:42:32 -0800 | [diff] [blame] | 2031 | * numbers do not exist until the inode is cache. This means creating |
Eric W. Biederman | 1c0d04c | 2006-10-02 02:18:57 -0700 | [diff] [blame] | 2032 | * the dcache entry in readdir is necessary to keep the inode numbers |
| 2033 | * reported by readdir in sync with the inode numbers reported |
| 2034 | * by stat. |
| 2035 | */ |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 2036 | bool proc_fill_cache(struct file *file, struct dir_context *ctx, |
Alexey Dobriyan | a4ef389 | 2018-06-07 17:10:10 -0700 | [diff] [blame] | 2037 | const char *name, unsigned int len, |
Eric Dumazet | c5141e6 | 2007-05-08 00:26:15 -0700 | [diff] [blame] | 2038 | instantiate_t instantiate, struct task_struct *task, const void *ptr) |
Eric W. Biederman | 61a2878 | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2039 | { |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 2040 | struct dentry *child, *dir = file->f_path.dentry; |
Al Viro | 1df98b8 | 2013-06-15 11:33:10 +0400 | [diff] [blame] | 2041 | struct qstr qname = QSTR_INIT(name, len); |
Eric W. Biederman | 61a2878 | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2042 | struct inode *inode; |
Al Viro | 0168b9e | 2018-05-03 09:21:05 -0400 | [diff] [blame] | 2043 | unsigned type = DT_UNKNOWN; |
| 2044 | ino_t ino = 1; |
Eric W. Biederman | 61a2878 | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2045 | |
Al Viro | 1df98b8 | 2013-06-15 11:33:10 +0400 | [diff] [blame] | 2046 | child = d_hash_and_lookup(dir, &qname); |
Eric W. Biederman | 61a2878 | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2047 | if (!child) { |
Al Viro | 3781764 | 2016-04-20 16:31:31 -0400 | [diff] [blame] | 2048 | DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq); |
| 2049 | child = d_alloc_parallel(dir, &qname, &wq); |
| 2050 | if (IS_ERR(child)) |
Al Viro | 1df98b8 | 2013-06-15 11:33:10 +0400 | [diff] [blame] | 2051 | goto end_instantiate; |
Al Viro | 3781764 | 2016-04-20 16:31:31 -0400 | [diff] [blame] | 2052 | if (d_in_lookup(child)) { |
Al Viro | 0168b9e | 2018-05-03 09:21:05 -0400 | [diff] [blame] | 2053 | struct dentry *res; |
| 2054 | res = instantiate(child, task, ptr); |
Al Viro | 3781764 | 2016-04-20 16:31:31 -0400 | [diff] [blame] | 2055 | d_lookup_done(child); |
Al Viro | 0168b9e | 2018-05-03 09:21:05 -0400 | [diff] [blame] | 2056 | if (unlikely(res)) { |
| 2057 | dput(child); |
| 2058 | child = res; |
Al Viro | d85b399 | 2018-06-08 01:17:11 -0400 | [diff] [blame] | 2059 | if (IS_ERR(child)) |
| 2060 | goto end_instantiate; |
Al Viro | 3781764 | 2016-04-20 16:31:31 -0400 | [diff] [blame] | 2061 | } |
Eric W. Biederman | 61a2878 | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2062 | } |
| 2063 | } |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 2064 | inode = d_inode(child); |
Al Viro | 147ce69 | 2013-06-15 10:26:35 +0400 | [diff] [blame] | 2065 | ino = inode->i_ino; |
| 2066 | type = inode->i_mode >> 12; |
Eric W. Biederman | 61a2878 | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2067 | dput(child); |
Al Viro | d85b399 | 2018-06-08 01:17:11 -0400 | [diff] [blame] | 2068 | end_instantiate: |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 2069 | return dir_emit(ctx, name, len, ino, type); |
Eric W. Biederman | 61a2878 | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2070 | } |
| 2071 | |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2072 | /* |
| 2073 | * dname_to_vma_addr - maps a dentry name into two unsigned longs |
| 2074 | * which represent vma start and end addresses. |
| 2075 | */ |
| 2076 | static int dname_to_vma_addr(struct dentry *dentry, |
| 2077 | unsigned long *start, unsigned long *end) |
| 2078 | { |
Alexey Dobriyan | ac7f106 | 2018-02-06 15:36:59 -0800 | [diff] [blame] | 2079 | const char *str = dentry->d_name.name; |
| 2080 | unsigned long long sval, eval; |
| 2081 | unsigned int len; |
| 2082 | |
Alexey Dobriyan | 35318db | 2018-04-10 16:41:14 -0700 | [diff] [blame] | 2083 | if (str[0] == '0' && str[1] != '-') |
| 2084 | return -EINVAL; |
Alexey Dobriyan | ac7f106 | 2018-02-06 15:36:59 -0800 | [diff] [blame] | 2085 | len = _parse_integer(str, 16, &sval); |
| 2086 | if (len & KSTRTOX_OVERFLOW) |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2087 | return -EINVAL; |
Alexey Dobriyan | ac7f106 | 2018-02-06 15:36:59 -0800 | [diff] [blame] | 2088 | if (sval != (unsigned long)sval) |
| 2089 | return -EINVAL; |
| 2090 | str += len; |
| 2091 | |
| 2092 | if (*str != '-') |
| 2093 | return -EINVAL; |
| 2094 | str++; |
| 2095 | |
Alexey Dobriyan | 35318db | 2018-04-10 16:41:14 -0700 | [diff] [blame] | 2096 | if (str[0] == '0' && str[1]) |
| 2097 | return -EINVAL; |
Alexey Dobriyan | ac7f106 | 2018-02-06 15:36:59 -0800 | [diff] [blame] | 2098 | len = _parse_integer(str, 16, &eval); |
| 2099 | if (len & KSTRTOX_OVERFLOW) |
| 2100 | return -EINVAL; |
| 2101 | if (eval != (unsigned long)eval) |
| 2102 | return -EINVAL; |
| 2103 | str += len; |
| 2104 | |
| 2105 | if (*str != '\0') |
| 2106 | return -EINVAL; |
| 2107 | |
| 2108 | *start = sval; |
| 2109 | *end = eval; |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2110 | |
| 2111 | return 0; |
| 2112 | } |
| 2113 | |
Al Viro | 0b728e1 | 2012-06-10 16:03:43 -0400 | [diff] [blame] | 2114 | static int map_files_d_revalidate(struct dentry *dentry, unsigned int flags) |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2115 | { |
| 2116 | unsigned long vm_start, vm_end; |
| 2117 | bool exact_vma_exists = false; |
| 2118 | struct mm_struct *mm = NULL; |
| 2119 | struct task_struct *task; |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2120 | struct inode *inode; |
| 2121 | int status = 0; |
| 2122 | |
Al Viro | 0b728e1 | 2012-06-10 16:03:43 -0400 | [diff] [blame] | 2123 | if (flags & LOOKUP_RCU) |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2124 | return -ECHILD; |
| 2125 | |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 2126 | inode = d_inode(dentry); |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2127 | task = get_proc_task(inode); |
| 2128 | if (!task) |
| 2129 | goto out_notask; |
| 2130 | |
Jann Horn | caaee62 | 2016-01-20 15:00:04 -0800 | [diff] [blame] | 2131 | mm = mm_access(task, PTRACE_MODE_READ_FSCREDS); |
Cong Wang | 2344bec | 2012-05-31 16:26:18 -0700 | [diff] [blame] | 2132 | if (IS_ERR_OR_NULL(mm)) |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2133 | goto out; |
| 2134 | |
| 2135 | if (!dname_to_vma_addr(dentry, &vm_start, &vm_end)) { |
Michel Lespinasse | d8ed45c | 2020-06-08 21:33:25 -0700 | [diff] [blame] | 2136 | status = mmap_read_lock_killable(mm); |
Konstantin Khlebnikov | cd9e2bb | 2019-07-11 21:00:03 -0700 | [diff] [blame] | 2137 | if (!status) { |
| 2138 | exact_vma_exists = !!find_exact_vma(mm, vm_start, |
| 2139 | vm_end); |
Michel Lespinasse | d8ed45c | 2020-06-08 21:33:25 -0700 | [diff] [blame] | 2140 | mmap_read_unlock(mm); |
Konstantin Khlebnikov | cd9e2bb | 2019-07-11 21:00:03 -0700 | [diff] [blame] | 2141 | } |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2142 | } |
| 2143 | |
| 2144 | mmput(mm); |
| 2145 | |
| 2146 | if (exact_vma_exists) { |
Eric W. Biederman | 68eb94f | 2017-01-03 10:23:11 +1300 | [diff] [blame] | 2147 | task_dump_owner(task, 0, &inode->i_uid, &inode->i_gid); |
| 2148 | |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2149 | security_task_to_inode(task, inode); |
| 2150 | status = 1; |
| 2151 | } |
| 2152 | |
| 2153 | out: |
| 2154 | put_task_struct(task); |
| 2155 | |
| 2156 | out_notask: |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2157 | return status; |
| 2158 | } |
| 2159 | |
| 2160 | static const struct dentry_operations tid_map_files_dentry_operations = { |
| 2161 | .d_revalidate = map_files_d_revalidate, |
| 2162 | .d_delete = pid_delete_dentry, |
| 2163 | }; |
| 2164 | |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 2165 | static int map_files_get_link(struct dentry *dentry, struct path *path) |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2166 | { |
| 2167 | unsigned long vm_start, vm_end; |
| 2168 | struct vm_area_struct *vma; |
| 2169 | struct task_struct *task; |
| 2170 | struct mm_struct *mm; |
| 2171 | int rc; |
| 2172 | |
| 2173 | rc = -ENOENT; |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 2174 | task = get_proc_task(d_inode(dentry)); |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2175 | if (!task) |
| 2176 | goto out; |
| 2177 | |
| 2178 | mm = get_task_mm(task); |
| 2179 | put_task_struct(task); |
| 2180 | if (!mm) |
| 2181 | goto out; |
| 2182 | |
| 2183 | rc = dname_to_vma_addr(dentry, &vm_start, &vm_end); |
| 2184 | if (rc) |
| 2185 | goto out_mmput; |
| 2186 | |
Michel Lespinasse | d8ed45c | 2020-06-08 21:33:25 -0700 | [diff] [blame] | 2187 | rc = mmap_read_lock_killable(mm); |
Konstantin Khlebnikov | cd9e2bb | 2019-07-11 21:00:03 -0700 | [diff] [blame] | 2188 | if (rc) |
| 2189 | goto out_mmput; |
| 2190 | |
Artem Fetishev | 70335ab | 2014-03-10 15:49:45 -0700 | [diff] [blame] | 2191 | rc = -ENOENT; |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2192 | vma = find_exact_vma(mm, vm_start, vm_end); |
| 2193 | if (vma && vma->vm_file) { |
| 2194 | *path = vma->vm_file->f_path; |
| 2195 | path_get(path); |
| 2196 | rc = 0; |
| 2197 | } |
Michel Lespinasse | d8ed45c | 2020-06-08 21:33:25 -0700 | [diff] [blame] | 2198 | mmap_read_unlock(mm); |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2199 | |
| 2200 | out_mmput: |
| 2201 | mmput(mm); |
| 2202 | out: |
| 2203 | return rc; |
| 2204 | } |
| 2205 | |
| 2206 | struct map_files_info { |
Alexey Dobriyan | 20d28cd | 2018-02-06 15:37:06 -0800 | [diff] [blame] | 2207 | unsigned long start; |
| 2208 | unsigned long end; |
Al Viro | 7b540d0 | 2012-08-27 14:55:26 -0400 | [diff] [blame] | 2209 | fmode_t mode; |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2210 | }; |
| 2211 | |
Calvin Owens | bdb4d10 | 2015-09-09 15:35:54 -0700 | [diff] [blame] | 2212 | /* |
Adrian Reber | 12886f8 | 2020-07-19 12:04:14 +0200 | [diff] [blame] | 2213 | * Only allow CAP_SYS_ADMIN and CAP_CHECKPOINT_RESTORE to follow the links, due |
| 2214 | * to concerns about how the symlinks may be used to bypass permissions on |
| 2215 | * ancestor directories in the path to the file in question. |
Calvin Owens | bdb4d10 | 2015-09-09 15:35:54 -0700 | [diff] [blame] | 2216 | */ |
| 2217 | static const char * |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 2218 | proc_map_files_get_link(struct dentry *dentry, |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 2219 | struct inode *inode, |
| 2220 | struct delayed_call *done) |
Calvin Owens | bdb4d10 | 2015-09-09 15:35:54 -0700 | [diff] [blame] | 2221 | { |
Adrian Reber | 12886f8 | 2020-07-19 12:04:14 +0200 | [diff] [blame] | 2222 | if (!checkpoint_restore_ns_capable(&init_user_ns)) |
Calvin Owens | bdb4d10 | 2015-09-09 15:35:54 -0700 | [diff] [blame] | 2223 | return ERR_PTR(-EPERM); |
| 2224 | |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 2225 | return proc_pid_get_link(dentry, inode, done); |
Calvin Owens | bdb4d10 | 2015-09-09 15:35:54 -0700 | [diff] [blame] | 2226 | } |
| 2227 | |
| 2228 | /* |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 2229 | * Identical to proc_pid_link_inode_operations except for get_link() |
Calvin Owens | bdb4d10 | 2015-09-09 15:35:54 -0700 | [diff] [blame] | 2230 | */ |
| 2231 | static const struct inode_operations proc_map_files_link_inode_operations = { |
| 2232 | .readlink = proc_pid_readlink, |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 2233 | .get_link = proc_map_files_get_link, |
Calvin Owens | bdb4d10 | 2015-09-09 15:35:54 -0700 | [diff] [blame] | 2234 | .setattr = proc_setattr, |
| 2235 | }; |
| 2236 | |
Al Viro | 0168b9e | 2018-05-03 09:21:05 -0400 | [diff] [blame] | 2237 | static struct dentry * |
| 2238 | proc_map_files_instantiate(struct dentry *dentry, |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2239 | struct task_struct *task, const void *ptr) |
| 2240 | { |
Al Viro | 7b540d0 | 2012-08-27 14:55:26 -0400 | [diff] [blame] | 2241 | fmode_t mode = (fmode_t)(unsigned long)ptr; |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2242 | struct proc_inode *ei; |
| 2243 | struct inode *inode; |
| 2244 | |
Al Viro | 0168b9e | 2018-05-03 09:21:05 -0400 | [diff] [blame] | 2245 | inode = proc_pid_make_inode(dentry->d_sb, task, S_IFLNK | |
Andreas Gruenbacher | db978da | 2016-11-10 22:18:28 +0100 | [diff] [blame] | 2246 | ((mode & FMODE_READ ) ? S_IRUSR : 0) | |
| 2247 | ((mode & FMODE_WRITE) ? S_IWUSR : 0)); |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2248 | if (!inode) |
Al Viro | 0168b9e | 2018-05-03 09:21:05 -0400 | [diff] [blame] | 2249 | return ERR_PTR(-ENOENT); |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2250 | |
| 2251 | ei = PROC_I(inode); |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 2252 | ei->op.proc_get_link = map_files_get_link; |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2253 | |
Calvin Owens | bdb4d10 | 2015-09-09 15:35:54 -0700 | [diff] [blame] | 2254 | inode->i_op = &proc_map_files_link_inode_operations; |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2255 | inode->i_size = 64; |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2256 | |
| 2257 | d_set_d_op(dentry, &tid_map_files_dentry_operations); |
Al Viro | 0168b9e | 2018-05-03 09:21:05 -0400 | [diff] [blame] | 2258 | return d_splice_alias(inode, dentry); |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2259 | } |
| 2260 | |
| 2261 | static struct dentry *proc_map_files_lookup(struct inode *dir, |
Al Viro | 00cd8dd | 2012-06-10 17:13:09 -0400 | [diff] [blame] | 2262 | struct dentry *dentry, unsigned int flags) |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2263 | { |
| 2264 | unsigned long vm_start, vm_end; |
| 2265 | struct vm_area_struct *vma; |
| 2266 | struct task_struct *task; |
Al Viro | 0168b9e | 2018-05-03 09:21:05 -0400 | [diff] [blame] | 2267 | struct dentry *result; |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2268 | struct mm_struct *mm; |
| 2269 | |
Al Viro | 0168b9e | 2018-05-03 09:21:05 -0400 | [diff] [blame] | 2270 | result = ERR_PTR(-ENOENT); |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2271 | task = get_proc_task(dir); |
| 2272 | if (!task) |
| 2273 | goto out; |
| 2274 | |
Al Viro | 0168b9e | 2018-05-03 09:21:05 -0400 | [diff] [blame] | 2275 | result = ERR_PTR(-EACCES); |
Jann Horn | caaee62 | 2016-01-20 15:00:04 -0800 | [diff] [blame] | 2276 | if (!ptrace_may_access(task, PTRACE_MODE_READ_FSCREDS)) |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2277 | goto out_put_task; |
| 2278 | |
Al Viro | 0168b9e | 2018-05-03 09:21:05 -0400 | [diff] [blame] | 2279 | result = ERR_PTR(-ENOENT); |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2280 | if (dname_to_vma_addr(dentry, &vm_start, &vm_end)) |
Cyrill Gorcunov | eb94cd9 | 2012-05-17 17:03:25 -0700 | [diff] [blame] | 2281 | goto out_put_task; |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2282 | |
| 2283 | mm = get_task_mm(task); |
| 2284 | if (!mm) |
Cyrill Gorcunov | eb94cd9 | 2012-05-17 17:03:25 -0700 | [diff] [blame] | 2285 | goto out_put_task; |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2286 | |
Konstantin Khlebnikov | cd9e2bb | 2019-07-11 21:00:03 -0700 | [diff] [blame] | 2287 | result = ERR_PTR(-EINTR); |
Michel Lespinasse | d8ed45c | 2020-06-08 21:33:25 -0700 | [diff] [blame] | 2288 | if (mmap_read_lock_killable(mm)) |
Konstantin Khlebnikov | cd9e2bb | 2019-07-11 21:00:03 -0700 | [diff] [blame] | 2289 | goto out_put_mm; |
| 2290 | |
| 2291 | result = ERR_PTR(-ENOENT); |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2292 | vma = find_exact_vma(mm, vm_start, vm_end); |
| 2293 | if (!vma) |
| 2294 | goto out_no_vma; |
| 2295 | |
Stanislav Kinsbursky | 05f5648 | 2012-11-26 16:29:42 -0800 | [diff] [blame] | 2296 | if (vma->vm_file) |
Al Viro | 0168b9e | 2018-05-03 09:21:05 -0400 | [diff] [blame] | 2297 | result = proc_map_files_instantiate(dentry, task, |
Stanislav Kinsbursky | 05f5648 | 2012-11-26 16:29:42 -0800 | [diff] [blame] | 2298 | (void *)(unsigned long)vma->vm_file->f_mode); |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2299 | |
| 2300 | out_no_vma: |
Michel Lespinasse | d8ed45c | 2020-06-08 21:33:25 -0700 | [diff] [blame] | 2301 | mmap_read_unlock(mm); |
Konstantin Khlebnikov | cd9e2bb | 2019-07-11 21:00:03 -0700 | [diff] [blame] | 2302 | out_put_mm: |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2303 | mmput(mm); |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2304 | out_put_task: |
| 2305 | put_task_struct(task); |
| 2306 | out: |
Al Viro | 0168b9e | 2018-05-03 09:21:05 -0400 | [diff] [blame] | 2307 | return result; |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2308 | } |
| 2309 | |
| 2310 | static const struct inode_operations proc_map_files_inode_operations = { |
| 2311 | .lookup = proc_map_files_lookup, |
| 2312 | .permission = proc_fd_permission, |
| 2313 | .setattr = proc_setattr, |
| 2314 | }; |
| 2315 | |
| 2316 | static int |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 2317 | proc_map_files_readdir(struct file *file, struct dir_context *ctx) |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2318 | { |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2319 | struct vm_area_struct *vma; |
| 2320 | struct task_struct *task; |
| 2321 | struct mm_struct *mm; |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 2322 | unsigned long nr_files, pos, i; |
Kent Overstreet | 94f8f3b | 2019-03-11 23:31:18 -0700 | [diff] [blame] | 2323 | GENRADIX(struct map_files_info) fa; |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 2324 | struct map_files_info *p; |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2325 | int ret; |
| 2326 | |
Kent Overstreet | 94f8f3b | 2019-03-11 23:31:18 -0700 | [diff] [blame] | 2327 | genradix_init(&fa); |
| 2328 | |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2329 | ret = -ENOENT; |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 2330 | task = get_proc_task(file_inode(file)); |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2331 | if (!task) |
| 2332 | goto out; |
| 2333 | |
| 2334 | ret = -EACCES; |
Jann Horn | caaee62 | 2016-01-20 15:00:04 -0800 | [diff] [blame] | 2335 | if (!ptrace_may_access(task, PTRACE_MODE_READ_FSCREDS)) |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2336 | goto out_put_task; |
| 2337 | |
| 2338 | ret = 0; |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 2339 | if (!dir_emit_dots(file, ctx)) |
| 2340 | goto out_put_task; |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2341 | |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 2342 | mm = get_task_mm(task); |
| 2343 | if (!mm) |
| 2344 | goto out_put_task; |
Konstantin Khlebnikov | cd9e2bb | 2019-07-11 21:00:03 -0700 | [diff] [blame] | 2345 | |
Michel Lespinasse | 89154dd | 2020-06-08 21:33:29 -0700 | [diff] [blame] | 2346 | ret = mmap_read_lock_killable(mm); |
Konstantin Khlebnikov | cd9e2bb | 2019-07-11 21:00:03 -0700 | [diff] [blame] | 2347 | if (ret) { |
| 2348 | mmput(mm); |
| 2349 | goto out_put_task; |
| 2350 | } |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2351 | |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 2352 | nr_files = 0; |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2353 | |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 2354 | /* |
| 2355 | * We need two passes here: |
| 2356 | * |
Michel Lespinasse | c1e8d7c | 2020-06-08 21:33:54 -0700 | [diff] [blame] | 2357 | * 1) Collect vmas of mapped files with mmap_lock taken |
| 2358 | * 2) Release mmap_lock and instantiate entries |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 2359 | * |
| 2360 | * otherwise we get lockdep complained, since filldir() |
Michel Lespinasse | c1e8d7c | 2020-06-08 21:33:54 -0700 | [diff] [blame] | 2361 | * routine might require mmap_lock taken in might_fault(). |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 2362 | */ |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2363 | |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 2364 | for (vma = mm->mmap, pos = 2; vma; vma = vma->vm_next) { |
Kent Overstreet | 94f8f3b | 2019-03-11 23:31:18 -0700 | [diff] [blame] | 2365 | if (!vma->vm_file) |
| 2366 | continue; |
| 2367 | if (++pos <= ctx->pos) |
| 2368 | continue; |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 2369 | |
Kent Overstreet | 94f8f3b | 2019-03-11 23:31:18 -0700 | [diff] [blame] | 2370 | p = genradix_ptr_alloc(&fa, nr_files++, GFP_KERNEL); |
| 2371 | if (!p) { |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 2372 | ret = -ENOMEM; |
Michel Lespinasse | 89154dd | 2020-06-08 21:33:29 -0700 | [diff] [blame] | 2373 | mmap_read_unlock(mm); |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 2374 | mmput(mm); |
| 2375 | goto out_put_task; |
| 2376 | } |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 2377 | |
Kent Overstreet | 94f8f3b | 2019-03-11 23:31:18 -0700 | [diff] [blame] | 2378 | p->start = vma->vm_start; |
| 2379 | p->end = vma->vm_end; |
| 2380 | p->mode = vma->vm_file->f_mode; |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2381 | } |
Michel Lespinasse | 89154dd | 2020-06-08 21:33:29 -0700 | [diff] [blame] | 2382 | mmap_read_unlock(mm); |
Alexey Dobriyan | fe079a5 | 2018-04-10 16:32:05 -0700 | [diff] [blame] | 2383 | mmput(mm); |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 2384 | |
| 2385 | for (i = 0; i < nr_files; i++) { |
Alexey Dobriyan | 20d28cd | 2018-02-06 15:37:06 -0800 | [diff] [blame] | 2386 | char buf[4 * sizeof(long) + 2]; /* max: %lx-%lx\0 */ |
| 2387 | unsigned int len; |
| 2388 | |
Kent Overstreet | 94f8f3b | 2019-03-11 23:31:18 -0700 | [diff] [blame] | 2389 | p = genradix_ptr(&fa, i); |
Alexey Dobriyan | 20d28cd | 2018-02-06 15:37:06 -0800 | [diff] [blame] | 2390 | len = snprintf(buf, sizeof(buf), "%lx-%lx", p->start, p->end); |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 2391 | if (!proc_fill_cache(file, ctx, |
Alexey Dobriyan | 20d28cd | 2018-02-06 15:37:06 -0800 | [diff] [blame] | 2392 | buf, len, |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 2393 | proc_map_files_instantiate, |
| 2394 | task, |
| 2395 | (void *)(unsigned long)p->mode)) |
| 2396 | break; |
| 2397 | ctx->pos++; |
| 2398 | } |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2399 | |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2400 | out_put_task: |
| 2401 | put_task_struct(task); |
| 2402 | out: |
Kent Overstreet | 94f8f3b | 2019-03-11 23:31:18 -0700 | [diff] [blame] | 2403 | genradix_free(&fa); |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2404 | return ret; |
| 2405 | } |
| 2406 | |
| 2407 | static const struct file_operations proc_map_files_operations = { |
| 2408 | .read = generic_read_dir, |
Al Viro | f50752e | 2016-04-20 17:13:54 -0400 | [diff] [blame] | 2409 | .iterate_shared = proc_map_files_readdir, |
| 2410 | .llseek = generic_file_llseek, |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2411 | }; |
| 2412 | |
Nicolas Pitre | b18b6a9 | 2017-01-21 00:09:08 -0500 | [diff] [blame] | 2413 | #if defined(CONFIG_CHECKPOINT_RESTORE) && defined(CONFIG_POSIX_TIMERS) |
Pavel Emelyanov | 48f6a7a | 2013-03-11 13:12:45 +0400 | [diff] [blame] | 2414 | struct timers_private { |
| 2415 | struct pid *pid; |
| 2416 | struct task_struct *task; |
| 2417 | struct sighand_struct *sighand; |
Pavel Emelyanov | 57b8015 | 2013-03-11 13:13:08 +0400 | [diff] [blame] | 2418 | struct pid_namespace *ns; |
Pavel Emelyanov | 48f6a7a | 2013-03-11 13:12:45 +0400 | [diff] [blame] | 2419 | unsigned long flags; |
| 2420 | }; |
| 2421 | |
| 2422 | static void *timers_start(struct seq_file *m, loff_t *pos) |
| 2423 | { |
| 2424 | struct timers_private *tp = m->private; |
| 2425 | |
| 2426 | tp->task = get_pid_task(tp->pid, PIDTYPE_PID); |
| 2427 | if (!tp->task) |
| 2428 | return ERR_PTR(-ESRCH); |
| 2429 | |
| 2430 | tp->sighand = lock_task_sighand(tp->task, &tp->flags); |
| 2431 | if (!tp->sighand) |
| 2432 | return ERR_PTR(-ESRCH); |
| 2433 | |
| 2434 | return seq_list_start(&tp->task->signal->posix_timers, *pos); |
| 2435 | } |
| 2436 | |
| 2437 | static void *timers_next(struct seq_file *m, void *v, loff_t *pos) |
| 2438 | { |
| 2439 | struct timers_private *tp = m->private; |
| 2440 | return seq_list_next(v, &tp->task->signal->posix_timers, pos); |
| 2441 | } |
| 2442 | |
| 2443 | static void timers_stop(struct seq_file *m, void *v) |
| 2444 | { |
| 2445 | struct timers_private *tp = m->private; |
| 2446 | |
| 2447 | if (tp->sighand) { |
| 2448 | unlock_task_sighand(tp->task, &tp->flags); |
| 2449 | tp->sighand = NULL; |
| 2450 | } |
| 2451 | |
| 2452 | if (tp->task) { |
| 2453 | put_task_struct(tp->task); |
| 2454 | tp->task = NULL; |
| 2455 | } |
| 2456 | } |
| 2457 | |
| 2458 | static int show_timer(struct seq_file *m, void *v) |
| 2459 | { |
| 2460 | struct k_itimer *timer; |
Pavel Emelyanov | 57b8015 | 2013-03-11 13:13:08 +0400 | [diff] [blame] | 2461 | struct timers_private *tp = m->private; |
| 2462 | int notify; |
Alexey Dobriyan | cedbcca | 2014-08-08 14:21:33 -0700 | [diff] [blame] | 2463 | static const char * const nstr[] = { |
Pavel Emelyanov | 57b8015 | 2013-03-11 13:13:08 +0400 | [diff] [blame] | 2464 | [SIGEV_SIGNAL] = "signal", |
| 2465 | [SIGEV_NONE] = "none", |
| 2466 | [SIGEV_THREAD] = "thread", |
| 2467 | }; |
Pavel Emelyanov | 48f6a7a | 2013-03-11 13:12:45 +0400 | [diff] [blame] | 2468 | |
| 2469 | timer = list_entry((struct list_head *)v, struct k_itimer, list); |
Pavel Emelyanov | 57b8015 | 2013-03-11 13:13:08 +0400 | [diff] [blame] | 2470 | notify = timer->it_sigev_notify; |
| 2471 | |
Pavel Emelyanov | 48f6a7a | 2013-03-11 13:12:45 +0400 | [diff] [blame] | 2472 | seq_printf(m, "ID: %d\n", timer->it_id); |
Linus Torvalds | ba3edf1f | 2017-12-06 18:23:27 -0800 | [diff] [blame] | 2473 | seq_printf(m, "signal: %d/%px\n", |
Joe Perches | 25ce319 | 2015-04-15 16:18:17 -0700 | [diff] [blame] | 2474 | timer->sigq->info.si_signo, |
| 2475 | timer->sigq->info.si_value.sival_ptr); |
Pavel Emelyanov | 57b8015 | 2013-03-11 13:13:08 +0400 | [diff] [blame] | 2476 | seq_printf(m, "notify: %s/%s.%d\n", |
Joe Perches | 25ce319 | 2015-04-15 16:18:17 -0700 | [diff] [blame] | 2477 | nstr[notify & ~SIGEV_THREAD_ID], |
| 2478 | (notify & SIGEV_THREAD_ID) ? "tid" : "pid", |
| 2479 | pid_nr_ns(timer->it_pid, tp->ns)); |
Pavel Tikhomirov | 15ef029 | 2013-05-17 02:12:03 +0400 | [diff] [blame] | 2480 | seq_printf(m, "ClockID: %d\n", timer->it_clock); |
Pavel Emelyanov | 48f6a7a | 2013-03-11 13:12:45 +0400 | [diff] [blame] | 2481 | |
| 2482 | return 0; |
| 2483 | } |
| 2484 | |
| 2485 | static const struct seq_operations proc_timers_seq_ops = { |
| 2486 | .start = timers_start, |
| 2487 | .next = timers_next, |
| 2488 | .stop = timers_stop, |
| 2489 | .show = show_timer, |
| 2490 | }; |
| 2491 | |
| 2492 | static int proc_timers_open(struct inode *inode, struct file *file) |
| 2493 | { |
| 2494 | struct timers_private *tp; |
| 2495 | |
| 2496 | tp = __seq_open_private(file, &proc_timers_seq_ops, |
| 2497 | sizeof(struct timers_private)); |
| 2498 | if (!tp) |
| 2499 | return -ENOMEM; |
| 2500 | |
| 2501 | tp->pid = proc_pid(inode); |
Alexey Gladkov | 9d78ede | 2020-05-18 20:07:38 +0200 | [diff] [blame] | 2502 | tp->ns = proc_pid_ns(inode->i_sb); |
Pavel Emelyanov | 48f6a7a | 2013-03-11 13:12:45 +0400 | [diff] [blame] | 2503 | return 0; |
| 2504 | } |
| 2505 | |
| 2506 | static const struct file_operations proc_timers_operations = { |
| 2507 | .open = proc_timers_open, |
| 2508 | .read = seq_read, |
| 2509 | .llseek = seq_lseek, |
| 2510 | .release = seq_release_private, |
| 2511 | }; |
Eric Engestrom | b5946be | 2016-03-17 14:20:57 -0700 | [diff] [blame] | 2512 | #endif |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 2513 | |
John Stultz | 5de23d4 | 2016-03-17 14:20:54 -0700 | [diff] [blame] | 2514 | static ssize_t timerslack_ns_write(struct file *file, const char __user *buf, |
| 2515 | size_t count, loff_t *offset) |
| 2516 | { |
| 2517 | struct inode *inode = file_inode(file); |
| 2518 | struct task_struct *p; |
| 2519 | u64 slack_ns; |
| 2520 | int err; |
| 2521 | |
| 2522 | err = kstrtoull_from_user(buf, count, 10, &slack_ns); |
| 2523 | if (err < 0) |
| 2524 | return err; |
| 2525 | |
| 2526 | p = get_proc_task(inode); |
| 2527 | if (!p) |
| 2528 | return -ESRCH; |
| 2529 | |
John Stultz | 4b2bd5f | 2016-10-07 17:02:33 -0700 | [diff] [blame] | 2530 | if (p != current) { |
Benjamin Gordon | 8da0b4f | 2019-01-03 15:25:56 -0800 | [diff] [blame] | 2531 | rcu_read_lock(); |
| 2532 | if (!ns_capable(__task_cred(p)->user_ns, CAP_SYS_NICE)) { |
| 2533 | rcu_read_unlock(); |
John Stultz | 4b2bd5f | 2016-10-07 17:02:33 -0700 | [diff] [blame] | 2534 | count = -EPERM; |
| 2535 | goto out; |
| 2536 | } |
Benjamin Gordon | 8da0b4f | 2019-01-03 15:25:56 -0800 | [diff] [blame] | 2537 | rcu_read_unlock(); |
John Stultz | 5de23d4 | 2016-03-17 14:20:54 -0700 | [diff] [blame] | 2538 | |
John Stultz | 4b2bd5f | 2016-10-07 17:02:33 -0700 | [diff] [blame] | 2539 | err = security_task_setscheduler(p); |
| 2540 | if (err) { |
| 2541 | count = err; |
| 2542 | goto out; |
| 2543 | } |
John Stultz | 904763e | 2016-10-07 17:02:29 -0700 | [diff] [blame] | 2544 | } |
| 2545 | |
John Stultz | 7abbaf9 | 2016-10-07 17:02:26 -0700 | [diff] [blame] | 2546 | task_lock(p); |
| 2547 | if (slack_ns == 0) |
| 2548 | p->timer_slack_ns = p->default_timer_slack_ns; |
| 2549 | else |
| 2550 | p->timer_slack_ns = slack_ns; |
| 2551 | task_unlock(p); |
| 2552 | |
| 2553 | out: |
John Stultz | 5de23d4 | 2016-03-17 14:20:54 -0700 | [diff] [blame] | 2554 | put_task_struct(p); |
| 2555 | |
| 2556 | return count; |
| 2557 | } |
| 2558 | |
| 2559 | static int timerslack_ns_show(struct seq_file *m, void *v) |
| 2560 | { |
| 2561 | struct inode *inode = m->private; |
| 2562 | struct task_struct *p; |
John Stultz | 7abbaf9 | 2016-10-07 17:02:26 -0700 | [diff] [blame] | 2563 | int err = 0; |
John Stultz | 5de23d4 | 2016-03-17 14:20:54 -0700 | [diff] [blame] | 2564 | |
| 2565 | p = get_proc_task(inode); |
| 2566 | if (!p) |
| 2567 | return -ESRCH; |
| 2568 | |
John Stultz | 4b2bd5f | 2016-10-07 17:02:33 -0700 | [diff] [blame] | 2569 | if (p != current) { |
Benjamin Gordon | 8da0b4f | 2019-01-03 15:25:56 -0800 | [diff] [blame] | 2570 | rcu_read_lock(); |
| 2571 | if (!ns_capable(__task_cred(p)->user_ns, CAP_SYS_NICE)) { |
| 2572 | rcu_read_unlock(); |
John Stultz | 4b2bd5f | 2016-10-07 17:02:33 -0700 | [diff] [blame] | 2573 | err = -EPERM; |
| 2574 | goto out; |
| 2575 | } |
Benjamin Gordon | 8da0b4f | 2019-01-03 15:25:56 -0800 | [diff] [blame] | 2576 | rcu_read_unlock(); |
| 2577 | |
John Stultz | 4b2bd5f | 2016-10-07 17:02:33 -0700 | [diff] [blame] | 2578 | err = security_task_getscheduler(p); |
| 2579 | if (err) |
| 2580 | goto out; |
| 2581 | } |
John Stultz | 904763e | 2016-10-07 17:02:29 -0700 | [diff] [blame] | 2582 | |
John Stultz | 7abbaf9 | 2016-10-07 17:02:26 -0700 | [diff] [blame] | 2583 | task_lock(p); |
| 2584 | seq_printf(m, "%llu\n", p->timer_slack_ns); |
| 2585 | task_unlock(p); |
| 2586 | |
| 2587 | out: |
John Stultz | 5de23d4 | 2016-03-17 14:20:54 -0700 | [diff] [blame] | 2588 | put_task_struct(p); |
| 2589 | |
| 2590 | return err; |
| 2591 | } |
| 2592 | |
| 2593 | static int timerslack_ns_open(struct inode *inode, struct file *filp) |
| 2594 | { |
| 2595 | return single_open(filp, timerslack_ns_show, inode); |
| 2596 | } |
| 2597 | |
| 2598 | static const struct file_operations proc_pid_set_timerslack_ns_operations = { |
| 2599 | .open = timerslack_ns_open, |
| 2600 | .read = seq_read, |
| 2601 | .write = timerslack_ns_write, |
| 2602 | .llseek = seq_lseek, |
| 2603 | .release = single_release, |
| 2604 | }; |
| 2605 | |
Al Viro | 0168b9e | 2018-05-03 09:21:05 -0400 | [diff] [blame] | 2606 | static struct dentry *proc_pident_instantiate(struct dentry *dentry, |
| 2607 | struct task_struct *task, const void *ptr) |
Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2608 | { |
Eric Dumazet | c5141e6 | 2007-05-08 00:26:15 -0700 | [diff] [blame] | 2609 | const struct pid_entry *p = ptr; |
Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2610 | struct inode *inode; |
| 2611 | struct proc_inode *ei; |
Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2612 | |
Al Viro | 0168b9e | 2018-05-03 09:21:05 -0400 | [diff] [blame] | 2613 | inode = proc_pid_make_inode(dentry->d_sb, task, p->mode); |
Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2614 | if (!inode) |
Al Viro | 0168b9e | 2018-05-03 09:21:05 -0400 | [diff] [blame] | 2615 | return ERR_PTR(-ENOENT); |
Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2616 | |
| 2617 | ei = PROC_I(inode); |
Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2618 | if (S_ISDIR(inode->i_mode)) |
Miklos Szeredi | bfe8684 | 2011-10-28 14:13:29 +0200 | [diff] [blame] | 2619 | set_nlink(inode, 2); /* Use getattr to fix if necessary */ |
Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2620 | if (p->iop) |
| 2621 | inode->i_op = p->iop; |
| 2622 | if (p->fop) |
| 2623 | inode->i_fop = p->fop; |
| 2624 | ei->op = p->op; |
Al Viro | 1bbc551 | 2018-05-02 21:26:16 -0400 | [diff] [blame] | 2625 | pid_update_inode(task, inode); |
Nick Piggin | fb045ad | 2011-01-07 17:49:55 +1100 | [diff] [blame] | 2626 | d_set_d_op(dentry, &pid_dentry_operations); |
Al Viro | 0168b9e | 2018-05-03 09:21:05 -0400 | [diff] [blame] | 2627 | return d_splice_alias(inode, dentry); |
Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2628 | } |
| 2629 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2630 | static struct dentry *proc_pident_lookup(struct inode *dir, |
| 2631 | struct dentry *dentry, |
Alexey Dobriyan | d5a572a | 2019-03-11 23:28:51 -0700 | [diff] [blame] | 2632 | const struct pid_entry *p, |
| 2633 | const struct pid_entry *end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2634 | { |
Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 2635 | struct task_struct *task = get_proc_task(dir); |
Al Viro | 0168b9e | 2018-05-03 09:21:05 -0400 | [diff] [blame] | 2636 | struct dentry *res = ERR_PTR(-ENOENT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2637 | |
Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 2638 | if (!task) |
| 2639 | goto out_no_task; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2640 | |
Eric W. Biederman | 20cdc89 | 2006-10-02 02:17:07 -0700 | [diff] [blame] | 2641 | /* |
| 2642 | * Yes, it does not scale. And it should not. Don't add |
| 2643 | * new entries into /proc/<tgid>/ without very good reasons. |
| 2644 | */ |
Alexey Dobriyan | d5a572a | 2019-03-11 23:28:51 -0700 | [diff] [blame] | 2645 | for (; p < end; p++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2646 | if (p->len != dentry->d_name.len) |
| 2647 | continue; |
Alexey Dobriyan | 26b9513 | 2018-06-14 15:27:17 -0700 | [diff] [blame] | 2648 | if (!memcmp(dentry->d_name.name, p->name, p->len)) { |
| 2649 | res = proc_pident_instantiate(dentry, task, p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2650 | break; |
Alexey Dobriyan | 26b9513 | 2018-06-14 15:27:17 -0700 | [diff] [blame] | 2651 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2652 | } |
Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 2653 | put_task_struct(task); |
| 2654 | out_no_task: |
Al Viro | 0168b9e | 2018-05-03 09:21:05 -0400 | [diff] [blame] | 2655 | return res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2656 | } |
| 2657 | |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 2658 | static int proc_pident_readdir(struct file *file, struct dir_context *ctx, |
Eric Dumazet | c5141e6 | 2007-05-08 00:26:15 -0700 | [diff] [blame] | 2659 | const struct pid_entry *ents, unsigned int nents) |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2660 | { |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 2661 | struct task_struct *task = get_proc_task(file_inode(file)); |
| 2662 | const struct pid_entry *p; |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2663 | |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2664 | if (!task) |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 2665 | return -ENOENT; |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2666 | |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 2667 | if (!dir_emit_dots(file, ctx)) |
| 2668 | goto out; |
| 2669 | |
| 2670 | if (ctx->pos >= nents + 2) |
| 2671 | goto out; |
| 2672 | |
Alexey Dobriyan | bac5f5d | 2016-12-12 16:45:28 -0800 | [diff] [blame] | 2673 | for (p = ents + (ctx->pos - 2); p < ents + nents; p++) { |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 2674 | if (!proc_fill_cache(file, ctx, p->name, p->len, |
| 2675 | proc_pident_instantiate, task, p)) |
| 2676 | break; |
| 2677 | ctx->pos++; |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2678 | } |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2679 | out: |
Eric W. Biederman | 61a2878 | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 2680 | put_task_struct(task); |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 2681 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2682 | } |
| 2683 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2684 | #ifdef CONFIG_SECURITY |
Kees Cook | 591a22c | 2021-06-08 10:12:21 -0700 | [diff] [blame] | 2685 | static int proc_pid_attr_open(struct inode *inode, struct file *file) |
| 2686 | { |
Linus Torvalds | 94f0b2d | 2021-06-15 09:26:19 -0700 | [diff] [blame] | 2687 | file->private_data = NULL; |
| 2688 | __mem_open(inode, file, PTRACE_MODE_READ_FSCREDS); |
| 2689 | return 0; |
Kees Cook | 591a22c | 2021-06-08 10:12:21 -0700 | [diff] [blame] | 2690 | } |
| 2691 | |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2692 | static ssize_t proc_pid_attr_read(struct file * file, char __user * buf, |
| 2693 | size_t count, loff_t *ppos) |
| 2694 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 2695 | struct inode * inode = file_inode(file); |
Al Viro | 04ff970 | 2007-03-12 16:17:58 +0000 | [diff] [blame] | 2696 | char *p = NULL; |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2697 | ssize_t length; |
| 2698 | struct task_struct *task = get_proc_task(inode); |
| 2699 | |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2700 | if (!task) |
Al Viro | 04ff970 | 2007-03-12 16:17:58 +0000 | [diff] [blame] | 2701 | return -ESRCH; |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2702 | |
Casey Schaufler | 6d9c939 | 2018-09-21 17:16:59 -0700 | [diff] [blame] | 2703 | length = security_getprocattr(task, PROC_I(inode)->op.lsm, |
Josef "Jeff" Sipek | 2fddfee | 2006-12-08 02:36:36 -0800 | [diff] [blame] | 2704 | (char*)file->f_path.dentry->d_name.name, |
Al Viro | 04ff970 | 2007-03-12 16:17:58 +0000 | [diff] [blame] | 2705 | &p); |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2706 | put_task_struct(task); |
Al Viro | 04ff970 | 2007-03-12 16:17:58 +0000 | [diff] [blame] | 2707 | if (length > 0) |
| 2708 | length = simple_read_from_buffer(buf, count, ppos, p, length); |
| 2709 | kfree(p); |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2710 | return length; |
| 2711 | } |
| 2712 | |
| 2713 | static ssize_t proc_pid_attr_write(struct file * file, const char __user * buf, |
| 2714 | size_t count, loff_t *ppos) |
| 2715 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 2716 | struct inode * inode = file_inode(file); |
Alexey Dobriyan | 41089b6 | 2018-08-21 21:54:30 -0700 | [diff] [blame] | 2717 | struct task_struct *task; |
Al Viro | bb646cd | 2015-12-24 00:16:30 -0500 | [diff] [blame] | 2718 | void *page; |
Alexey Dobriyan | 41089b6 | 2018-08-21 21:54:30 -0700 | [diff] [blame] | 2719 | int rv; |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2720 | |
Kees Cook | bfb819e | 2021-05-25 12:37:35 -0700 | [diff] [blame] | 2721 | /* A task may only write when it was the opener. */ |
Kees Cook | 591a22c | 2021-06-08 10:12:21 -0700 | [diff] [blame] | 2722 | if (file->private_data != current->mm) |
Kees Cook | bfb819e | 2021-05-25 12:37:35 -0700 | [diff] [blame] | 2723 | return -EPERM; |
| 2724 | |
Alexey Dobriyan | 41089b6 | 2018-08-21 21:54:30 -0700 | [diff] [blame] | 2725 | rcu_read_lock(); |
| 2726 | task = pid_task(proc_pid(inode), PIDTYPE_PID); |
| 2727 | if (!task) { |
| 2728 | rcu_read_unlock(); |
| 2729 | return -ESRCH; |
| 2730 | } |
Stephen Smalley | b21507e | 2017-01-09 10:07:31 -0500 | [diff] [blame] | 2731 | /* A task may only write its own attributes. */ |
Alexey Dobriyan | 41089b6 | 2018-08-21 21:54:30 -0700 | [diff] [blame] | 2732 | if (current != task) { |
| 2733 | rcu_read_unlock(); |
| 2734 | return -EACCES; |
| 2735 | } |
Paul Moore | 35a196b | 2019-04-19 14:55:12 -0400 | [diff] [blame] | 2736 | /* Prevent changes to overridden credentials. */ |
| 2737 | if (current_cred() != current_real_cred()) { |
| 2738 | rcu_read_unlock(); |
| 2739 | return -EBUSY; |
| 2740 | } |
Alexey Dobriyan | 41089b6 | 2018-08-21 21:54:30 -0700 | [diff] [blame] | 2741 | rcu_read_unlock(); |
Stephen Smalley | b21507e | 2017-01-09 10:07:31 -0500 | [diff] [blame] | 2742 | |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2743 | if (count > PAGE_SIZE) |
| 2744 | count = PAGE_SIZE; |
| 2745 | |
| 2746 | /* No partial writes. */ |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2747 | if (*ppos != 0) |
Alexey Dobriyan | 41089b6 | 2018-08-21 21:54:30 -0700 | [diff] [blame] | 2748 | return -EINVAL; |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2749 | |
Al Viro | bb646cd | 2015-12-24 00:16:30 -0500 | [diff] [blame] | 2750 | page = memdup_user(buf, count); |
| 2751 | if (IS_ERR(page)) { |
Alexey Dobriyan | 41089b6 | 2018-08-21 21:54:30 -0700 | [diff] [blame] | 2752 | rv = PTR_ERR(page); |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2753 | goto out; |
Al Viro | bb646cd | 2015-12-24 00:16:30 -0500 | [diff] [blame] | 2754 | } |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2755 | |
David Howells | 107db7c | 2009-05-08 13:55:27 +0100 | [diff] [blame] | 2756 | /* Guard against adverse ptrace interaction */ |
Alexey Dobriyan | 41089b6 | 2018-08-21 21:54:30 -0700 | [diff] [blame] | 2757 | rv = mutex_lock_interruptible(¤t->signal->cred_guard_mutex); |
| 2758 | if (rv < 0) |
David Howells | 107db7c | 2009-05-08 13:55:27 +0100 | [diff] [blame] | 2759 | goto out_free; |
| 2760 | |
Casey Schaufler | 6d9c939 | 2018-09-21 17:16:59 -0700 | [diff] [blame] | 2761 | rv = security_setprocattr(PROC_I(inode)->op.lsm, |
| 2762 | file->f_path.dentry->d_name.name, page, |
| 2763 | count); |
Stephen Smalley | b21507e | 2017-01-09 10:07:31 -0500 | [diff] [blame] | 2764 | mutex_unlock(¤t->signal->cred_guard_mutex); |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2765 | out_free: |
Al Viro | bb646cd | 2015-12-24 00:16:30 -0500 | [diff] [blame] | 2766 | kfree(page); |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2767 | out: |
Alexey Dobriyan | 41089b6 | 2018-08-21 21:54:30 -0700 | [diff] [blame] | 2768 | return rv; |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2769 | } |
| 2770 | |
Arjan van de Ven | 00977a5 | 2007-02-12 00:55:34 -0800 | [diff] [blame] | 2771 | static const struct file_operations proc_pid_attr_operations = { |
Kees Cook | 591a22c | 2021-06-08 10:12:21 -0700 | [diff] [blame] | 2772 | .open = proc_pid_attr_open, |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2773 | .read = proc_pid_attr_read, |
| 2774 | .write = proc_pid_attr_write, |
Arnd Bergmann | 87df842 | 2010-03-17 23:06:02 +0100 | [diff] [blame] | 2775 | .llseek = generic_file_llseek, |
Kees Cook | 591a22c | 2021-06-08 10:12:21 -0700 | [diff] [blame] | 2776 | .release = mem_release, |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2777 | }; |
| 2778 | |
Casey Schaufler | 6d9c939 | 2018-09-21 17:16:59 -0700 | [diff] [blame] | 2779 | #define LSM_DIR_OPS(LSM) \ |
| 2780 | static int proc_##LSM##_attr_dir_iterate(struct file *filp, \ |
| 2781 | struct dir_context *ctx) \ |
| 2782 | { \ |
| 2783 | return proc_pident_readdir(filp, ctx, \ |
| 2784 | LSM##_attr_dir_stuff, \ |
| 2785 | ARRAY_SIZE(LSM##_attr_dir_stuff)); \ |
| 2786 | } \ |
| 2787 | \ |
| 2788 | static const struct file_operations proc_##LSM##_attr_dir_ops = { \ |
| 2789 | .read = generic_read_dir, \ |
| 2790 | .iterate = proc_##LSM##_attr_dir_iterate, \ |
| 2791 | .llseek = default_llseek, \ |
| 2792 | }; \ |
| 2793 | \ |
| 2794 | static struct dentry *proc_##LSM##_attr_dir_lookup(struct inode *dir, \ |
| 2795 | struct dentry *dentry, unsigned int flags) \ |
| 2796 | { \ |
| 2797 | return proc_pident_lookup(dir, dentry, \ |
| 2798 | LSM##_attr_dir_stuff, \ |
Alexey Dobriyan | d5a572a | 2019-03-11 23:28:51 -0700 | [diff] [blame] | 2799 | LSM##_attr_dir_stuff + ARRAY_SIZE(LSM##_attr_dir_stuff)); \ |
Casey Schaufler | 6d9c939 | 2018-09-21 17:16:59 -0700 | [diff] [blame] | 2800 | } \ |
| 2801 | \ |
| 2802 | static const struct inode_operations proc_##LSM##_attr_dir_inode_ops = { \ |
| 2803 | .lookup = proc_##LSM##_attr_dir_lookup, \ |
| 2804 | .getattr = pid_getattr, \ |
| 2805 | .setattr = proc_setattr, \ |
| 2806 | } |
| 2807 | |
| 2808 | #ifdef CONFIG_SECURITY_SMACK |
| 2809 | static const struct pid_entry smack_attr_dir_stuff[] = { |
| 2810 | ATTR("smack", "current", 0666), |
| 2811 | }; |
| 2812 | LSM_DIR_OPS(smack); |
| 2813 | #endif |
| 2814 | |
John Johansen | 6413f85 | 2019-02-04 05:23:14 -0800 | [diff] [blame] | 2815 | #ifdef CONFIG_SECURITY_APPARMOR |
| 2816 | static const struct pid_entry apparmor_attr_dir_stuff[] = { |
| 2817 | ATTR("apparmor", "current", 0666), |
| 2818 | ATTR("apparmor", "prev", 0444), |
| 2819 | ATTR("apparmor", "exec", 0666), |
| 2820 | }; |
| 2821 | LSM_DIR_OPS(apparmor); |
| 2822 | #endif |
| 2823 | |
Eric Dumazet | c5141e6 | 2007-05-08 00:26:15 -0700 | [diff] [blame] | 2824 | static const struct pid_entry attr_dir_stuff[] = { |
Casey Schaufler | 6d9c939 | 2018-09-21 17:16:59 -0700 | [diff] [blame] | 2825 | ATTR(NULL, "current", 0666), |
| 2826 | ATTR(NULL, "prev", 0444), |
| 2827 | ATTR(NULL, "exec", 0666), |
| 2828 | ATTR(NULL, "fscreate", 0666), |
| 2829 | ATTR(NULL, "keycreate", 0666), |
| 2830 | ATTR(NULL, "sockcreate", 0666), |
| 2831 | #ifdef CONFIG_SECURITY_SMACK |
| 2832 | DIR("smack", 0555, |
| 2833 | proc_smack_attr_dir_inode_ops, proc_smack_attr_dir_ops), |
| 2834 | #endif |
John Johansen | 6413f85 | 2019-02-04 05:23:14 -0800 | [diff] [blame] | 2835 | #ifdef CONFIG_SECURITY_APPARMOR |
| 2836 | DIR("apparmor", 0555, |
| 2837 | proc_apparmor_attr_dir_inode_ops, proc_apparmor_attr_dir_ops), |
| 2838 | #endif |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 2839 | }; |
| 2840 | |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 2841 | static int proc_attr_dir_readdir(struct file *file, struct dir_context *ctx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2842 | { |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 2843 | return proc_pident_readdir(file, ctx, |
| 2844 | attr_dir_stuff, ARRAY_SIZE(attr_dir_stuff)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2845 | } |
| 2846 | |
Arjan van de Ven | 00977a5 | 2007-02-12 00:55:34 -0800 | [diff] [blame] | 2847 | static const struct file_operations proc_attr_dir_operations = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2848 | .read = generic_read_dir, |
Al Viro | f50752e | 2016-04-20 17:13:54 -0400 | [diff] [blame] | 2849 | .iterate_shared = proc_attr_dir_readdir, |
| 2850 | .llseek = generic_file_llseek, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2851 | }; |
| 2852 | |
Eric W. Biederman | 72d9dcf | 2006-10-02 02:18:50 -0700 | [diff] [blame] | 2853 | static struct dentry *proc_attr_dir_lookup(struct inode *dir, |
Al Viro | 00cd8dd | 2012-06-10 17:13:09 -0400 | [diff] [blame] | 2854 | struct dentry *dentry, unsigned int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2855 | { |
Eric W. Biederman | 7bcd6b0 | 2006-10-02 02:18:56 -0700 | [diff] [blame] | 2856 | return proc_pident_lookup(dir, dentry, |
Alexey Dobriyan | d5a572a | 2019-03-11 23:28:51 -0700 | [diff] [blame] | 2857 | attr_dir_stuff, |
| 2858 | attr_dir_stuff + ARRAY_SIZE(attr_dir_stuff)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2859 | } |
| 2860 | |
Arjan van de Ven | c5ef1c4 | 2007-02-12 00:55:40 -0800 | [diff] [blame] | 2861 | static const struct inode_operations proc_attr_dir_inode_operations = { |
Eric W. Biederman | 72d9dcf | 2006-10-02 02:18:50 -0700 | [diff] [blame] | 2862 | .lookup = proc_attr_dir_lookup, |
Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 2863 | .getattr = pid_getattr, |
Linus Torvalds | 6d76fa5 | 2006-07-15 12:26:45 -0700 | [diff] [blame] | 2864 | .setattr = proc_setattr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2865 | }; |
| 2866 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2867 | #endif |
| 2868 | |
Christoph Hellwig | 698ba7b | 2009-12-15 16:47:37 -0800 | [diff] [blame] | 2869 | #ifdef CONFIG_ELF_CORE |
Kawai, Hidehiro | 3cb4a0b | 2007-07-19 01:48:28 -0700 | [diff] [blame] | 2870 | static ssize_t proc_coredump_filter_read(struct file *file, char __user *buf, |
| 2871 | size_t count, loff_t *ppos) |
| 2872 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 2873 | struct task_struct *task = get_proc_task(file_inode(file)); |
Kawai, Hidehiro | 3cb4a0b | 2007-07-19 01:48:28 -0700 | [diff] [blame] | 2874 | struct mm_struct *mm; |
| 2875 | char buffer[PROC_NUMBUF]; |
| 2876 | size_t len; |
| 2877 | int ret; |
| 2878 | |
| 2879 | if (!task) |
| 2880 | return -ESRCH; |
| 2881 | |
| 2882 | ret = 0; |
| 2883 | mm = get_task_mm(task); |
| 2884 | if (mm) { |
| 2885 | len = snprintf(buffer, sizeof(buffer), "%08lx\n", |
| 2886 | ((mm->flags & MMF_DUMP_FILTER_MASK) >> |
| 2887 | MMF_DUMP_FILTER_SHIFT)); |
| 2888 | mmput(mm); |
| 2889 | ret = simple_read_from_buffer(buf, count, ppos, buffer, len); |
| 2890 | } |
| 2891 | |
| 2892 | put_task_struct(task); |
| 2893 | |
| 2894 | return ret; |
| 2895 | } |
| 2896 | |
| 2897 | static ssize_t proc_coredump_filter_write(struct file *file, |
| 2898 | const char __user *buf, |
| 2899 | size_t count, |
| 2900 | loff_t *ppos) |
| 2901 | { |
| 2902 | struct task_struct *task; |
| 2903 | struct mm_struct *mm; |
Kawai, Hidehiro | 3cb4a0b | 2007-07-19 01:48:28 -0700 | [diff] [blame] | 2904 | unsigned int val; |
| 2905 | int ret; |
| 2906 | int i; |
| 2907 | unsigned long mask; |
| 2908 | |
Alexey Dobriyan | 774636e | 2015-09-09 15:36:59 -0700 | [diff] [blame] | 2909 | ret = kstrtouint_from_user(buf, count, 0, &val); |
| 2910 | if (ret < 0) |
| 2911 | return ret; |
Kawai, Hidehiro | 3cb4a0b | 2007-07-19 01:48:28 -0700 | [diff] [blame] | 2912 | |
| 2913 | ret = -ESRCH; |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 2914 | task = get_proc_task(file_inode(file)); |
Kawai, Hidehiro | 3cb4a0b | 2007-07-19 01:48:28 -0700 | [diff] [blame] | 2915 | if (!task) |
| 2916 | goto out_no_task; |
| 2917 | |
Kawai, Hidehiro | 3cb4a0b | 2007-07-19 01:48:28 -0700 | [diff] [blame] | 2918 | mm = get_task_mm(task); |
| 2919 | if (!mm) |
| 2920 | goto out_no_mm; |
Colin Ian King | 41a0c249 | 2015-12-18 14:22:01 -0800 | [diff] [blame] | 2921 | ret = 0; |
Kawai, Hidehiro | 3cb4a0b | 2007-07-19 01:48:28 -0700 | [diff] [blame] | 2922 | |
| 2923 | for (i = 0, mask = 1; i < MMF_DUMP_FILTER_BITS; i++, mask <<= 1) { |
| 2924 | if (val & mask) |
| 2925 | set_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags); |
| 2926 | else |
| 2927 | clear_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags); |
| 2928 | } |
| 2929 | |
| 2930 | mmput(mm); |
| 2931 | out_no_mm: |
| 2932 | put_task_struct(task); |
| 2933 | out_no_task: |
Alexey Dobriyan | 774636e | 2015-09-09 15:36:59 -0700 | [diff] [blame] | 2934 | if (ret < 0) |
| 2935 | return ret; |
| 2936 | return count; |
Kawai, Hidehiro | 3cb4a0b | 2007-07-19 01:48:28 -0700 | [diff] [blame] | 2937 | } |
| 2938 | |
| 2939 | static const struct file_operations proc_coredump_filter_operations = { |
| 2940 | .read = proc_coredump_filter_read, |
| 2941 | .write = proc_coredump_filter_write, |
Arnd Bergmann | 87df842 | 2010-03-17 23:06:02 +0100 | [diff] [blame] | 2942 | .llseek = generic_file_llseek, |
Kawai, Hidehiro | 3cb4a0b | 2007-07-19 01:48:28 -0700 | [diff] [blame] | 2943 | }; |
| 2944 | #endif |
| 2945 | |
Andrew Morton | aba76fd | 2006-12-10 02:19:48 -0800 | [diff] [blame] | 2946 | #ifdef CONFIG_TASK_IO_ACCOUNTING |
Alexey Dobriyan | 19aadc9 | 2014-08-08 14:21:50 -0700 | [diff] [blame] | 2947 | static int do_io_accounting(struct task_struct *task, struct seq_file *m, int whole) |
Andrew Morton | aba76fd | 2006-12-10 02:19:48 -0800 | [diff] [blame] | 2948 | { |
Andrea Righi | 940389b | 2008-07-28 00:48:12 +0200 | [diff] [blame] | 2949 | struct task_io_accounting acct = task->ioac; |
Andrea Righi | 5995477 | 2008-07-27 17:29:15 +0200 | [diff] [blame] | 2950 | unsigned long flags; |
Vasiliy Kulikov | 293eb1e | 2011-07-26 16:08:38 -0700 | [diff] [blame] | 2951 | int result; |
Andrea Righi | 297c5d9 | 2008-07-25 01:48:49 -0700 | [diff] [blame] | 2952 | |
Eric W. Biederman | f7cfd87 | 2020-12-03 14:12:00 -0600 | [diff] [blame] | 2953 | result = down_read_killable(&task->signal->exec_update_lock); |
Vasiliy Kulikov | 293eb1e | 2011-07-26 16:08:38 -0700 | [diff] [blame] | 2954 | if (result) |
| 2955 | return result; |
| 2956 | |
Jann Horn | caaee62 | 2016-01-20 15:00:04 -0800 | [diff] [blame] | 2957 | if (!ptrace_may_access(task, PTRACE_MODE_READ_FSCREDS)) { |
Vasiliy Kulikov | 293eb1e | 2011-07-26 16:08:38 -0700 | [diff] [blame] | 2958 | result = -EACCES; |
| 2959 | goto out_unlock; |
| 2960 | } |
Vasiliy Kulikov | 1d1221f | 2011-06-24 16:08:38 +0400 | [diff] [blame] | 2961 | |
Andrea Righi | 5995477 | 2008-07-27 17:29:15 +0200 | [diff] [blame] | 2962 | if (whole && lock_task_sighand(task, &flags)) { |
| 2963 | struct task_struct *t = task; |
Andrea Righi | b2d002d | 2008-07-26 15:22:27 -0700 | [diff] [blame] | 2964 | |
Andrea Righi | 5995477 | 2008-07-27 17:29:15 +0200 | [diff] [blame] | 2965 | task_io_accounting_add(&acct, &task->signal->ioac); |
| 2966 | while_each_thread(task, t) |
| 2967 | task_io_accounting_add(&acct, &t->ioac); |
Andrea Righi | 297c5d9 | 2008-07-25 01:48:49 -0700 | [diff] [blame] | 2968 | |
Andrea Righi | 5995477 | 2008-07-27 17:29:15 +0200 | [diff] [blame] | 2969 | unlock_task_sighand(task, &flags); |
Andrea Righi | 297c5d9 | 2008-07-25 01:48:49 -0700 | [diff] [blame] | 2970 | } |
Joe Perches | 25ce319 | 2015-04-15 16:18:17 -0700 | [diff] [blame] | 2971 | seq_printf(m, |
| 2972 | "rchar: %llu\n" |
| 2973 | "wchar: %llu\n" |
| 2974 | "syscr: %llu\n" |
| 2975 | "syscw: %llu\n" |
| 2976 | "read_bytes: %llu\n" |
| 2977 | "write_bytes: %llu\n" |
| 2978 | "cancelled_write_bytes: %llu\n", |
| 2979 | (unsigned long long)acct.rchar, |
| 2980 | (unsigned long long)acct.wchar, |
| 2981 | (unsigned long long)acct.syscr, |
| 2982 | (unsigned long long)acct.syscw, |
| 2983 | (unsigned long long)acct.read_bytes, |
| 2984 | (unsigned long long)acct.write_bytes, |
| 2985 | (unsigned long long)acct.cancelled_write_bytes); |
| 2986 | result = 0; |
| 2987 | |
Vasiliy Kulikov | 293eb1e | 2011-07-26 16:08:38 -0700 | [diff] [blame] | 2988 | out_unlock: |
Eric W. Biederman | f7cfd87 | 2020-12-03 14:12:00 -0600 | [diff] [blame] | 2989 | up_read(&task->signal->exec_update_lock); |
Vasiliy Kulikov | 293eb1e | 2011-07-26 16:08:38 -0700 | [diff] [blame] | 2990 | return result; |
Andrew Morton | aba76fd | 2006-12-10 02:19:48 -0800 | [diff] [blame] | 2991 | } |
Andrea Righi | 297c5d9 | 2008-07-25 01:48:49 -0700 | [diff] [blame] | 2992 | |
Alexey Dobriyan | 19aadc9 | 2014-08-08 14:21:50 -0700 | [diff] [blame] | 2993 | static int proc_tid_io_accounting(struct seq_file *m, struct pid_namespace *ns, |
| 2994 | struct pid *pid, struct task_struct *task) |
Andrea Righi | 297c5d9 | 2008-07-25 01:48:49 -0700 | [diff] [blame] | 2995 | { |
Alexey Dobriyan | 19aadc9 | 2014-08-08 14:21:50 -0700 | [diff] [blame] | 2996 | return do_io_accounting(task, m, 0); |
Andrea Righi | 297c5d9 | 2008-07-25 01:48:49 -0700 | [diff] [blame] | 2997 | } |
| 2998 | |
Alexey Dobriyan | 19aadc9 | 2014-08-08 14:21:50 -0700 | [diff] [blame] | 2999 | static int proc_tgid_io_accounting(struct seq_file *m, struct pid_namespace *ns, |
| 3000 | struct pid *pid, struct task_struct *task) |
Andrea Righi | 297c5d9 | 2008-07-25 01:48:49 -0700 | [diff] [blame] | 3001 | { |
Alexey Dobriyan | 19aadc9 | 2014-08-08 14:21:50 -0700 | [diff] [blame] | 3002 | return do_io_accounting(task, m, 1); |
Andrea Righi | 297c5d9 | 2008-07-25 01:48:49 -0700 | [diff] [blame] | 3003 | } |
| 3004 | #endif /* CONFIG_TASK_IO_ACCOUNTING */ |
Andrew Morton | aba76fd | 2006-12-10 02:19:48 -0800 | [diff] [blame] | 3005 | |
Eric W. Biederman | 22d917d | 2011-11-17 00:11:58 -0800 | [diff] [blame] | 3006 | #ifdef CONFIG_USER_NS |
| 3007 | static int proc_id_map_open(struct inode *inode, struct file *file, |
Fabian Frederick | ccf94f1 | 2014-08-08 14:21:22 -0700 | [diff] [blame] | 3008 | const struct seq_operations *seq_ops) |
Eric W. Biederman | 22d917d | 2011-11-17 00:11:58 -0800 | [diff] [blame] | 3009 | { |
| 3010 | struct user_namespace *ns = NULL; |
| 3011 | struct task_struct *task; |
| 3012 | struct seq_file *seq; |
| 3013 | int ret = -EINVAL; |
| 3014 | |
| 3015 | task = get_proc_task(inode); |
| 3016 | if (task) { |
| 3017 | rcu_read_lock(); |
| 3018 | ns = get_user_ns(task_cred_xxx(task, user_ns)); |
| 3019 | rcu_read_unlock(); |
| 3020 | put_task_struct(task); |
| 3021 | } |
| 3022 | if (!ns) |
| 3023 | goto err; |
| 3024 | |
| 3025 | ret = seq_open(file, seq_ops); |
| 3026 | if (ret) |
| 3027 | goto err_put_ns; |
| 3028 | |
| 3029 | seq = file->private_data; |
| 3030 | seq->private = ns; |
| 3031 | |
| 3032 | return 0; |
| 3033 | err_put_ns: |
| 3034 | put_user_ns(ns); |
| 3035 | err: |
| 3036 | return ret; |
| 3037 | } |
| 3038 | |
| 3039 | static int proc_id_map_release(struct inode *inode, struct file *file) |
| 3040 | { |
| 3041 | struct seq_file *seq = file->private_data; |
| 3042 | struct user_namespace *ns = seq->private; |
| 3043 | put_user_ns(ns); |
| 3044 | return seq_release(inode, file); |
| 3045 | } |
| 3046 | |
| 3047 | static int proc_uid_map_open(struct inode *inode, struct file *file) |
| 3048 | { |
| 3049 | return proc_id_map_open(inode, file, &proc_uid_seq_operations); |
| 3050 | } |
| 3051 | |
| 3052 | static int proc_gid_map_open(struct inode *inode, struct file *file) |
| 3053 | { |
| 3054 | return proc_id_map_open(inode, file, &proc_gid_seq_operations); |
| 3055 | } |
| 3056 | |
Eric W. Biederman | f76d207 | 2012-08-30 01:24:05 -0700 | [diff] [blame] | 3057 | static int proc_projid_map_open(struct inode *inode, struct file *file) |
| 3058 | { |
| 3059 | return proc_id_map_open(inode, file, &proc_projid_seq_operations); |
| 3060 | } |
| 3061 | |
Eric W. Biederman | 22d917d | 2011-11-17 00:11:58 -0800 | [diff] [blame] | 3062 | static const struct file_operations proc_uid_map_operations = { |
| 3063 | .open = proc_uid_map_open, |
| 3064 | .write = proc_uid_map_write, |
| 3065 | .read = seq_read, |
| 3066 | .llseek = seq_lseek, |
| 3067 | .release = proc_id_map_release, |
| 3068 | }; |
| 3069 | |
| 3070 | static const struct file_operations proc_gid_map_operations = { |
| 3071 | .open = proc_gid_map_open, |
| 3072 | .write = proc_gid_map_write, |
| 3073 | .read = seq_read, |
| 3074 | .llseek = seq_lseek, |
| 3075 | .release = proc_id_map_release, |
| 3076 | }; |
Eric W. Biederman | f76d207 | 2012-08-30 01:24:05 -0700 | [diff] [blame] | 3077 | |
| 3078 | static const struct file_operations proc_projid_map_operations = { |
| 3079 | .open = proc_projid_map_open, |
| 3080 | .write = proc_projid_map_write, |
| 3081 | .read = seq_read, |
| 3082 | .llseek = seq_lseek, |
| 3083 | .release = proc_id_map_release, |
| 3084 | }; |
Eric W. Biederman | 9cc4651 | 2014-12-02 12:27:26 -0600 | [diff] [blame] | 3085 | |
| 3086 | static int proc_setgroups_open(struct inode *inode, struct file *file) |
| 3087 | { |
| 3088 | struct user_namespace *ns = NULL; |
| 3089 | struct task_struct *task; |
| 3090 | int ret; |
| 3091 | |
| 3092 | ret = -ESRCH; |
| 3093 | task = get_proc_task(inode); |
| 3094 | if (task) { |
| 3095 | rcu_read_lock(); |
| 3096 | ns = get_user_ns(task_cred_xxx(task, user_ns)); |
| 3097 | rcu_read_unlock(); |
| 3098 | put_task_struct(task); |
| 3099 | } |
| 3100 | if (!ns) |
| 3101 | goto err; |
| 3102 | |
| 3103 | if (file->f_mode & FMODE_WRITE) { |
| 3104 | ret = -EACCES; |
| 3105 | if (!ns_capable(ns, CAP_SYS_ADMIN)) |
| 3106 | goto err_put_ns; |
| 3107 | } |
| 3108 | |
| 3109 | ret = single_open(file, &proc_setgroups_show, ns); |
| 3110 | if (ret) |
| 3111 | goto err_put_ns; |
| 3112 | |
| 3113 | return 0; |
| 3114 | err_put_ns: |
| 3115 | put_user_ns(ns); |
| 3116 | err: |
| 3117 | return ret; |
| 3118 | } |
| 3119 | |
| 3120 | static int proc_setgroups_release(struct inode *inode, struct file *file) |
| 3121 | { |
| 3122 | struct seq_file *seq = file->private_data; |
| 3123 | struct user_namespace *ns = seq->private; |
| 3124 | int ret = single_release(inode, file); |
| 3125 | put_user_ns(ns); |
| 3126 | return ret; |
| 3127 | } |
| 3128 | |
| 3129 | static const struct file_operations proc_setgroups_operations = { |
| 3130 | .open = proc_setgroups_open, |
| 3131 | .write = proc_setgroups_write, |
| 3132 | .read = seq_read, |
| 3133 | .llseek = seq_lseek, |
| 3134 | .release = proc_setgroups_release, |
| 3135 | }; |
Eric W. Biederman | 22d917d | 2011-11-17 00:11:58 -0800 | [diff] [blame] | 3136 | #endif /* CONFIG_USER_NS */ |
| 3137 | |
Kees Cook | 4783072 | 2008-10-06 03:11:58 +0400 | [diff] [blame] | 3138 | static int proc_pid_personality(struct seq_file *m, struct pid_namespace *ns, |
| 3139 | struct pid *pid, struct task_struct *task) |
| 3140 | { |
Al Viro | a9712bc | 2011-03-23 15:52:50 -0400 | [diff] [blame] | 3141 | int err = lock_trace(task); |
| 3142 | if (!err) { |
| 3143 | seq_printf(m, "%08x\n", task->personality); |
| 3144 | unlock_trace(task); |
| 3145 | } |
| 3146 | return err; |
Kees Cook | 4783072 | 2008-10-06 03:11:58 +0400 | [diff] [blame] | 3147 | } |
| 3148 | |
Josh Poimboeuf | 7c23b33 | 2017-02-13 19:42:41 -0600 | [diff] [blame] | 3149 | #ifdef CONFIG_LIVEPATCH |
| 3150 | static int proc_pid_patch_state(struct seq_file *m, struct pid_namespace *ns, |
| 3151 | struct pid *pid, struct task_struct *task) |
| 3152 | { |
| 3153 | seq_printf(m, "%d\n", task->patch_state); |
| 3154 | return 0; |
| 3155 | } |
| 3156 | #endif /* CONFIG_LIVEPATCH */ |
| 3157 | |
Alexander Popov | c8d1262 | 2018-08-17 01:17:01 +0300 | [diff] [blame] | 3158 | #ifdef CONFIG_STACKLEAK_METRICS |
| 3159 | static int proc_stack_depth(struct seq_file *m, struct pid_namespace *ns, |
| 3160 | struct pid *pid, struct task_struct *task) |
| 3161 | { |
| 3162 | unsigned long prev_depth = THREAD_SIZE - |
| 3163 | (task->prev_lowest_stack & (THREAD_SIZE - 1)); |
| 3164 | unsigned long depth = THREAD_SIZE - |
| 3165 | (task->lowest_stack & (THREAD_SIZE - 1)); |
| 3166 | |
| 3167 | seq_printf(m, "previous stack depth: %lu\nstack depth: %lu\n", |
| 3168 | prev_depth, depth); |
| 3169 | return 0; |
| 3170 | } |
| 3171 | #endif /* CONFIG_STACKLEAK_METRICS */ |
| 3172 | |
Eric W. Biederman | 801199c | 2006-10-02 02:18:48 -0700 | [diff] [blame] | 3173 | /* |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3174 | * Thread groups |
| 3175 | */ |
Arjan van de Ven | 00977a5 | 2007-02-12 00:55:34 -0800 | [diff] [blame] | 3176 | static const struct file_operations proc_task_operations; |
Arjan van de Ven | c5ef1c4 | 2007-02-12 00:55:40 -0800 | [diff] [blame] | 3177 | static const struct inode_operations proc_task_inode_operations; |
Eric W. Biederman | 20cdc89 | 2006-10-02 02:17:07 -0700 | [diff] [blame] | 3178 | |
Eric Dumazet | c5141e6 | 2007-05-08 00:26:15 -0700 | [diff] [blame] | 3179 | static const struct pid_entry tgid_base_stuff[] = { |
Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 3180 | DIR("task", S_IRUGO|S_IXUGO, proc_task_inode_operations, proc_task_operations), |
| 3181 | DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations), |
Pavel Emelyanov | 640708a | 2012-01-10 15:11:23 -0800 | [diff] [blame] | 3182 | DIR("map_files", S_IRUSR|S_IXUSR, proc_map_files_inode_operations, proc_map_files_operations), |
Kalesh Singh | 7bc3fa0 | 2021-06-30 18:54:44 -0700 | [diff] [blame] | 3183 | DIR("fdinfo", S_IRUGO|S_IXUGO, proc_fdinfo_inode_operations, proc_fdinfo_operations), |
Eric W. Biederman | 6b4e306 | 2010-03-07 16:41:34 -0800 | [diff] [blame] | 3184 | DIR("ns", S_IRUSR|S_IXUGO, proc_ns_dir_inode_operations, proc_ns_dir_operations), |
Andrew Morton | b2211a3 | 2008-03-11 18:03:35 -0700 | [diff] [blame] | 3185 | #ifdef CONFIG_NET |
Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 3186 | DIR("net", S_IRUGO|S_IXUGO, proc_net_inode_operations, proc_net_operations), |
Andrew Morton | b2211a3 | 2008-03-11 18:03:35 -0700 | [diff] [blame] | 3187 | #endif |
Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 3188 | REG("environ", S_IRUSR, proc_environ_operations), |
Al Viro | c531716 | 2016-10-05 18:43:43 -0400 | [diff] [blame] | 3189 | REG("auxv", S_IRUSR, proc_auxv_operations), |
Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 3190 | ONE("status", S_IRUGO, proc_pid_status), |
Djalal Harouni | 35a3504 | 2014-04-07 15:38:36 -0700 | [diff] [blame] | 3191 | ONE("personality", S_IRUSR, proc_pid_personality), |
Alexey Dobriyan | 1c963eb | 2014-08-08 14:21:37 -0700 | [diff] [blame] | 3192 | ONE("limits", S_IRUGO, proc_pid_limits), |
Ingo Molnar | 43ae34c | 2007-07-09 18:52:00 +0200 | [diff] [blame] | 3193 | #ifdef CONFIG_SCHED_DEBUG |
Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 3194 | REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations), |
Ingo Molnar | 43ae34c | 2007-07-09 18:52:00 +0200 | [diff] [blame] | 3195 | #endif |
Mike Galbraith | 5091faa | 2010-11-30 14:18:03 +0100 | [diff] [blame] | 3196 | #ifdef CONFIG_SCHED_AUTOGROUP |
| 3197 | REG("autogroup", S_IRUGO|S_IWUSR, proc_pid_sched_autogroup_operations), |
| 3198 | #endif |
Andrei Vagin | 04a8682 | 2019-11-12 01:27:16 +0000 | [diff] [blame] | 3199 | #ifdef CONFIG_TIME_NS |
| 3200 | REG("timens_offsets", S_IRUGO|S_IWUSR, proc_timens_offsets_operations), |
| 3201 | #endif |
john stultz | 4614a696b | 2009-12-14 18:00:05 -0800 | [diff] [blame] | 3202 | REG("comm", S_IRUGO|S_IWUSR, proc_pid_set_comm_operations), |
Roland McGrath | ebcb673 | 2008-07-25 19:46:00 -0700 | [diff] [blame] | 3203 | #ifdef CONFIG_HAVE_ARCH_TRACEHOOK |
Alexey Dobriyan | 09d93bd | 2014-08-08 14:21:39 -0700 | [diff] [blame] | 3204 | ONE("syscall", S_IRUSR, proc_pid_syscall), |
Roland McGrath | ebcb673 | 2008-07-25 19:46:00 -0700 | [diff] [blame] | 3205 | #endif |
Alexey Dobriyan | c2c0bb4 | 2015-06-25 15:00:54 -0700 | [diff] [blame] | 3206 | REG("cmdline", S_IRUGO, proc_pid_cmdline_ops), |
Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 3207 | ONE("stat", S_IRUGO, proc_tgid_stat), |
| 3208 | ONE("statm", S_IRUGO, proc_pid_statm), |
Siddhesh Poyarekar | b764375 | 2012-03-21 16:34:04 -0700 | [diff] [blame] | 3209 | REG("maps", S_IRUGO, proc_pid_maps_operations), |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3210 | #ifdef CONFIG_NUMA |
Siddhesh Poyarekar | b764375 | 2012-03-21 16:34:04 -0700 | [diff] [blame] | 3211 | REG("numa_maps", S_IRUGO, proc_pid_numa_maps_operations), |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3212 | #endif |
Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 3213 | REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations), |
| 3214 | LNK("cwd", proc_cwd_link), |
| 3215 | LNK("root", proc_root_link), |
| 3216 | LNK("exe", proc_exe_link), |
| 3217 | REG("mounts", S_IRUGO, proc_mounts_operations), |
| 3218 | REG("mountinfo", S_IRUGO, proc_mountinfo_operations), |
| 3219 | REG("mountstats", S_IRUSR, proc_mountstats_operations), |
Matt Mackall | 1e88328 | 2008-02-04 22:29:07 -0800 | [diff] [blame] | 3220 | #ifdef CONFIG_PROC_PAGE_MONITOR |
Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 3221 | REG("clear_refs", S_IWUSR, proc_clear_refs_operations), |
Siddhesh Poyarekar | b764375 | 2012-03-21 16:34:04 -0700 | [diff] [blame] | 3222 | REG("smaps", S_IRUGO, proc_pid_smaps_operations), |
Daniel Colascione | 493b0e9 | 2017-09-06 16:25:08 -0700 | [diff] [blame] | 3223 | REG("smaps_rollup", S_IRUGO, proc_pid_smaps_rollup_operations), |
Djalal Harouni | 32ed74a | 2014-04-07 15:38:38 -0700 | [diff] [blame] | 3224 | REG("pagemap", S_IRUSR, proc_pagemap_operations), |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3225 | #endif |
| 3226 | #ifdef CONFIG_SECURITY |
Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 3227 | DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations), |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3228 | #endif |
| 3229 | #ifdef CONFIG_KALLSYMS |
Alexey Dobriyan | edfcd60 | 2014-08-08 14:21:44 -0700 | [diff] [blame] | 3230 | ONE("wchan", S_IRUGO, proc_pid_wchan), |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3231 | #endif |
Ken Chen | 2ec220e | 2008-11-10 11:26:08 +0300 | [diff] [blame] | 3232 | #ifdef CONFIG_STACKTRACE |
Djalal Harouni | 35a3504 | 2014-04-07 15:38:36 -0700 | [diff] [blame] | 3233 | ONE("stack", S_IRUSR, proc_pid_stack), |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3234 | #endif |
Naveen N. Rao | 5968cec | 2015-06-30 14:36:03 +0530 | [diff] [blame] | 3235 | #ifdef CONFIG_SCHED_INFO |
Alexey Dobriyan | f6e826c | 2014-08-08 14:21:46 -0700 | [diff] [blame] | 3236 | ONE("schedstat", S_IRUGO, proc_pid_schedstat), |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3237 | #endif |
Arjan van de Ven | 9745512 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 3238 | #ifdef CONFIG_LATENCYTOP |
Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 3239 | REG("latency", S_IRUGO, proc_lstats_operations), |
Arjan van de Ven | 9745512 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 3240 | #endif |
Paul Menage | 8793d85 | 2007-10-18 23:39:39 -0700 | [diff] [blame] | 3241 | #ifdef CONFIG_PROC_PID_CPUSET |
Zefan Li | 52de477 | 2014-09-18 16:03:36 +0800 | [diff] [blame] | 3242 | ONE("cpuset", S_IRUGO, proc_cpuset_show), |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3243 | #endif |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 3244 | #ifdef CONFIG_CGROUPS |
Zefan Li | 006f4ac | 2014-09-18 16:03:15 +0800 | [diff] [blame] | 3245 | ONE("cgroup", S_IRUGO, proc_cgroup_show), |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 3246 | #endif |
Chen Yu | e79f15a | 2020-01-15 17:28:51 +0800 | [diff] [blame] | 3247 | #ifdef CONFIG_PROC_CPU_RESCTRL |
| 3248 | ONE("cpu_resctrl_groups", S_IRUGO, proc_resctrl_show), |
| 3249 | #endif |
Alexey Dobriyan | 6ba51e3 | 2014-08-08 14:21:48 -0700 | [diff] [blame] | 3250 | ONE("oom_score", S_IRUGO, proc_oom_score), |
David Rientjes | fa0cbbf | 2012-11-12 17:53:04 -0800 | [diff] [blame] | 3251 | REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adj_operations), |
David Rientjes | a63d83f | 2010-08-09 17:19:46 -0700 | [diff] [blame] | 3252 | REG("oom_score_adj", S_IRUGO|S_IWUSR, proc_oom_score_adj_operations), |
Richard Guy Briggs | 4b7d248 | 2019-01-22 17:06:39 -0500 | [diff] [blame] | 3253 | #ifdef CONFIG_AUDIT |
Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 3254 | REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations), |
| 3255 | REG("sessionid", S_IRUGO, proc_sessionid_operations), |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3256 | #endif |
Akinobu Mita | f4f154f | 2006-12-08 02:39:47 -0800 | [diff] [blame] | 3257 | #ifdef CONFIG_FAULT_INJECTION |
Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 3258 | REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations), |
Akinobu Mita | 168c42b | 2017-07-14 14:50:00 -0700 | [diff] [blame] | 3259 | REG("fail-nth", 0644, proc_fail_nth_operations), |
Akinobu Mita | f4f154f | 2006-12-08 02:39:47 -0800 | [diff] [blame] | 3260 | #endif |
Christoph Hellwig | 698ba7b | 2009-12-15 16:47:37 -0800 | [diff] [blame] | 3261 | #ifdef CONFIG_ELF_CORE |
Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 3262 | REG("coredump_filter", S_IRUGO|S_IWUSR, proc_coredump_filter_operations), |
Kawai, Hidehiro | 3cb4a0b | 2007-07-19 01:48:28 -0700 | [diff] [blame] | 3263 | #endif |
Andrew Morton | aba76fd | 2006-12-10 02:19:48 -0800 | [diff] [blame] | 3264 | #ifdef CONFIG_TASK_IO_ACCOUNTING |
Alexey Dobriyan | 19aadc9 | 2014-08-08 14:21:50 -0700 | [diff] [blame] | 3265 | ONE("io", S_IRUSR, proc_tgid_io_accounting), |
Andrew Morton | aba76fd | 2006-12-10 02:19:48 -0800 | [diff] [blame] | 3266 | #endif |
Eric W. Biederman | 22d917d | 2011-11-17 00:11:58 -0800 | [diff] [blame] | 3267 | #ifdef CONFIG_USER_NS |
| 3268 | REG("uid_map", S_IRUGO|S_IWUSR, proc_uid_map_operations), |
| 3269 | REG("gid_map", S_IRUGO|S_IWUSR, proc_gid_map_operations), |
Eric W. Biederman | f76d207 | 2012-08-30 01:24:05 -0700 | [diff] [blame] | 3270 | REG("projid_map", S_IRUGO|S_IWUSR, proc_projid_map_operations), |
Eric W. Biederman | 9cc4651 | 2014-12-02 12:27:26 -0600 | [diff] [blame] | 3271 | REG("setgroups", S_IRUGO|S_IWUSR, proc_setgroups_operations), |
Eric W. Biederman | 22d917d | 2011-11-17 00:11:58 -0800 | [diff] [blame] | 3272 | #endif |
Nicolas Pitre | b18b6a9 | 2017-01-21 00:09:08 -0500 | [diff] [blame] | 3273 | #if defined(CONFIG_CHECKPOINT_RESTORE) && defined(CONFIG_POSIX_TIMERS) |
Pavel Emelyanov | 48f6a7a | 2013-03-11 13:12:45 +0400 | [diff] [blame] | 3274 | REG("timers", S_IRUGO, proc_timers_operations), |
| 3275 | #endif |
John Stultz | 5de23d4 | 2016-03-17 14:20:54 -0700 | [diff] [blame] | 3276 | REG("timerslack_ns", S_IRUGO|S_IWUGO, proc_pid_set_timerslack_ns_operations), |
Josh Poimboeuf | 7c23b33 | 2017-02-13 19:42:41 -0600 | [diff] [blame] | 3277 | #ifdef CONFIG_LIVEPATCH |
| 3278 | ONE("patch_state", S_IRUSR, proc_pid_patch_state), |
| 3279 | #endif |
Alexander Popov | c8d1262 | 2018-08-17 01:17:01 +0300 | [diff] [blame] | 3280 | #ifdef CONFIG_STACKLEAK_METRICS |
| 3281 | ONE("stack_depth", S_IRUGO, proc_stack_depth), |
| 3282 | #endif |
Aubrey Li | 68bc30b | 2019-06-06 09:22:34 +0800 | [diff] [blame] | 3283 | #ifdef CONFIG_PROC_PID_ARCH_STATUS |
| 3284 | ONE("arch_status", S_IRUGO, proc_pid_arch_status), |
| 3285 | #endif |
YiFei Zhu | 0d8315d | 2020-11-11 07:33:54 -0600 | [diff] [blame] | 3286 | #ifdef CONFIG_SECCOMP_CACHE_DEBUG |
| 3287 | ONE("seccomp_cache", S_IRUSR, proc_pid_seccomp_cache), |
| 3288 | #endif |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3289 | }; |
| 3290 | |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 3291 | static int proc_tgid_base_readdir(struct file *file, struct dir_context *ctx) |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3292 | { |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 3293 | return proc_pident_readdir(file, ctx, |
| 3294 | tgid_base_stuff, ARRAY_SIZE(tgid_base_stuff)); |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3295 | } |
| 3296 | |
Arjan van de Ven | 00977a5 | 2007-02-12 00:55:34 -0800 | [diff] [blame] | 3297 | static const struct file_operations proc_tgid_base_operations = { |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3298 | .read = generic_read_dir, |
Al Viro | f50752e | 2016-04-20 17:13:54 -0400 | [diff] [blame] | 3299 | .iterate_shared = proc_tgid_base_readdir, |
| 3300 | .llseek = generic_file_llseek, |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3301 | }; |
| 3302 | |
Christian Brauner | 3eb39f4 | 2018-11-19 00:51:56 +0100 | [diff] [blame] | 3303 | struct pid *tgid_pidfd_to_pid(const struct file *file) |
| 3304 | { |
Christian Brauner | 30d158b | 2019-06-27 11:35:14 +0200 | [diff] [blame] | 3305 | if (file->f_op != &proc_tgid_base_operations) |
Christian Brauner | 3eb39f4 | 2018-11-19 00:51:56 +0100 | [diff] [blame] | 3306 | return ERR_PTR(-EBADF); |
| 3307 | |
| 3308 | return proc_pid(file_inode(file)); |
| 3309 | } |
| 3310 | |
Al Viro | 00cd8dd | 2012-06-10 17:13:09 -0400 | [diff] [blame] | 3311 | static struct dentry *proc_tgid_base_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags) |
| 3312 | { |
Eric W. Biederman | 7bcd6b0 | 2006-10-02 02:18:56 -0700 | [diff] [blame] | 3313 | return proc_pident_lookup(dir, dentry, |
Alexey Dobriyan | d5a572a | 2019-03-11 23:28:51 -0700 | [diff] [blame] | 3314 | tgid_base_stuff, |
| 3315 | tgid_base_stuff + ARRAY_SIZE(tgid_base_stuff)); |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3316 | } |
| 3317 | |
Arjan van de Ven | c5ef1c4 | 2007-02-12 00:55:40 -0800 | [diff] [blame] | 3318 | static const struct inode_operations proc_tgid_base_inode_operations = { |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3319 | .lookup = proc_tgid_base_lookup, |
| 3320 | .getattr = pid_getattr, |
| 3321 | .setattr = proc_setattr, |
Vasiliy Kulikov | 0499680 | 2012-01-10 15:11:31 -0800 | [diff] [blame] | 3322 | .permission = proc_pid_permission, |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3323 | }; |
| 3324 | |
Randy Dunlap | 0895e91 | 2007-10-21 21:00:10 -0700 | [diff] [blame] | 3325 | /** |
Eric W. Biederman | 7bc3e6e | 2020-02-19 18:22:26 -0600 | [diff] [blame] | 3326 | * proc_flush_pid - Remove dcache entries for @pid from the /proc dcache. |
| 3327 | * @pid: pid that should be flushed. |
Randy Dunlap | 0895e91 | 2007-10-21 21:00:10 -0700 | [diff] [blame] | 3328 | * |
Eric W. Biederman | 7bc3e6e | 2020-02-19 18:22:26 -0600 | [diff] [blame] | 3329 | * This function walks a list of inodes (that belong to any proc |
| 3330 | * filesystem) that are attached to the pid and flushes them from |
| 3331 | * the dentry cache. |
Randy Dunlap | 0895e91 | 2007-10-21 21:00:10 -0700 | [diff] [blame] | 3332 | * |
| 3333 | * It is safe and reasonable to cache /proc entries for a task until |
| 3334 | * that task exits. After that they just clog up the dcache with |
| 3335 | * useless entries, possibly causing useful dcache entries to be |
Eric W. Biederman | 7bc3e6e | 2020-02-19 18:22:26 -0600 | [diff] [blame] | 3336 | * flushed instead. This routine is provided to flush those useless |
| 3337 | * dcache entries when a process is reaped. |
Randy Dunlap | 0895e91 | 2007-10-21 21:00:10 -0700 | [diff] [blame] | 3338 | * |
| 3339 | * NOTE: This routine is just an optimization so it does not guarantee |
Eric W. Biederman | 7bc3e6e | 2020-02-19 18:22:26 -0600 | [diff] [blame] | 3340 | * that no dcache entries will exist after a process is reaped |
| 3341 | * it just makes it very unlikely that any will persist. |
Pavel Emelyanov | 60347f6 | 2007-10-18 23:40:03 -0700 | [diff] [blame] | 3342 | */ |
| 3343 | |
Eric W. Biederman | 7bc3e6e | 2020-02-19 18:22:26 -0600 | [diff] [blame] | 3344 | void proc_flush_pid(struct pid *pid) |
Pavel Emelyanov | 60347f6 | 2007-10-18 23:40:03 -0700 | [diff] [blame] | 3345 | { |
Eric W. Biederman | 63f818f | 2020-04-07 09:43:04 -0500 | [diff] [blame] | 3346 | proc_invalidate_siblings_dcache(&pid->inodes, &pid->lock); |
Pavel Emelyanov | 60347f6 | 2007-10-18 23:40:03 -0700 | [diff] [blame] | 3347 | } |
| 3348 | |
Al Viro | 0168b9e | 2018-05-03 09:21:05 -0400 | [diff] [blame] | 3349 | static struct dentry *proc_pid_instantiate(struct dentry * dentry, |
Al Viro | c52a47a | 2013-06-15 11:15:20 +0400 | [diff] [blame] | 3350 | struct task_struct *task, const void *ptr) |
Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 3351 | { |
Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 3352 | struct inode *inode; |
| 3353 | |
Al Viro | 0168b9e | 2018-05-03 09:21:05 -0400 | [diff] [blame] | 3354 | inode = proc_pid_make_inode(dentry->d_sb, task, S_IFDIR | S_IRUGO | S_IXUGO); |
Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 3355 | if (!inode) |
Al Viro | 0168b9e | 2018-05-03 09:21:05 -0400 | [diff] [blame] | 3356 | return ERR_PTR(-ENOENT); |
Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 3357 | |
Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 3358 | inode->i_op = &proc_tgid_base_inode_operations; |
| 3359 | inode->i_fop = &proc_tgid_base_operations; |
| 3360 | inode->i_flags|=S_IMMUTABLE; |
Vegard Nossum | aed5417 | 2008-06-05 22:46:53 -0700 | [diff] [blame] | 3361 | |
Alexey Dobriyan | 1270dd8 | 2016-12-12 16:45:32 -0800 | [diff] [blame] | 3362 | set_nlink(inode, nlink_tgid); |
Al Viro | 1bbc551 | 2018-05-02 21:26:16 -0400 | [diff] [blame] | 3363 | pid_update_inode(task, inode); |
Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 3364 | |
Nick Piggin | fb045ad | 2011-01-07 17:49:55 +1100 | [diff] [blame] | 3365 | d_set_d_op(dentry, &pid_dentry_operations); |
Al Viro | 0168b9e | 2018-05-03 09:21:05 -0400 | [diff] [blame] | 3366 | return d_splice_alias(inode, dentry); |
Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 3367 | } |
| 3368 | |
Zhikang Zhang | 867aacc | 2019-03-05 15:50:29 -0800 | [diff] [blame] | 3369 | struct dentry *proc_pid_lookup(struct dentry *dentry, unsigned int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3370 | { |
| 3371 | struct task_struct *task; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3372 | unsigned tgid; |
Alexey Gladkov | fa10fed | 2020-04-19 16:10:52 +0200 | [diff] [blame] | 3373 | struct proc_fs_info *fs_info; |
Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 3374 | struct pid_namespace *ns; |
Al Viro | 0168b9e | 2018-05-03 09:21:05 -0400 | [diff] [blame] | 3375 | struct dentry *result = ERR_PTR(-ENOENT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3376 | |
Alexey Dobriyan | dbcdb50 | 2014-08-08 14:21:25 -0700 | [diff] [blame] | 3377 | tgid = name_to_int(&dentry->d_name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3378 | if (tgid == ~0U) |
| 3379 | goto out; |
| 3380 | |
Alexey Gladkov | fa10fed | 2020-04-19 16:10:52 +0200 | [diff] [blame] | 3381 | fs_info = proc_sb_info(dentry->d_sb); |
| 3382 | ns = fs_info->pid_ns; |
Eric W. Biederman | de75873 | 2006-06-26 00:25:51 -0700 | [diff] [blame] | 3383 | rcu_read_lock(); |
Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 3384 | task = find_task_by_pid_ns(tgid, ns); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3385 | if (task) |
| 3386 | get_task_struct(task); |
Eric W. Biederman | de75873 | 2006-06-26 00:25:51 -0700 | [diff] [blame] | 3387 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3388 | if (!task) |
| 3389 | goto out; |
| 3390 | |
Alexey Gladkov | 24a71ce | 2020-04-19 16:10:53 +0200 | [diff] [blame] | 3391 | /* Limit procfs to only ptraceable tasks */ |
| 3392 | if (fs_info->hide_pid == HIDEPID_NOT_PTRACEABLE) { |
| 3393 | if (!has_pid_permissions(fs_info, task, HIDEPID_NO_ACCESS)) |
| 3394 | goto out_put_task; |
| 3395 | } |
| 3396 | |
Al Viro | 0168b9e | 2018-05-03 09:21:05 -0400 | [diff] [blame] | 3397 | result = proc_pid_instantiate(dentry, task, NULL); |
Alexey Gladkov | 24a71ce | 2020-04-19 16:10:53 +0200 | [diff] [blame] | 3398 | out_put_task: |
Eric W. Biederman | 48e6484 | 2006-06-26 00:25:48 -0700 | [diff] [blame] | 3399 | put_task_struct(task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3400 | out: |
Al Viro | 0168b9e | 2018-05-03 09:21:05 -0400 | [diff] [blame] | 3401 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3402 | } |
| 3403 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3404 | /* |
Eric W. Biederman | 0804ef4 | 2006-10-02 02:17:04 -0700 | [diff] [blame] | 3405 | * Find the first task with tgid >= tgid |
Eric W. Biederman | 0bc58a9 | 2006-06-26 00:25:50 -0700 | [diff] [blame] | 3406 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3407 | */ |
Eric W. Biederman | 19fd4bb | 2007-11-28 16:21:26 -0800 | [diff] [blame] | 3408 | struct tgid_iter { |
| 3409 | unsigned int tgid; |
Eric W. Biederman | 0804ef4 | 2006-10-02 02:17:04 -0700 | [diff] [blame] | 3410 | struct task_struct *task; |
Eric W. Biederman | 19fd4bb | 2007-11-28 16:21:26 -0800 | [diff] [blame] | 3411 | }; |
| 3412 | static struct tgid_iter next_tgid(struct pid_namespace *ns, struct tgid_iter iter) |
| 3413 | { |
Eric W. Biederman | 0804ef4 | 2006-10-02 02:17:04 -0700 | [diff] [blame] | 3414 | struct pid *pid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3415 | |
Eric W. Biederman | 19fd4bb | 2007-11-28 16:21:26 -0800 | [diff] [blame] | 3416 | if (iter.task) |
| 3417 | put_task_struct(iter.task); |
Eric W. Biederman | 0804ef4 | 2006-10-02 02:17:04 -0700 | [diff] [blame] | 3418 | rcu_read_lock(); |
| 3419 | retry: |
Eric W. Biederman | 19fd4bb | 2007-11-28 16:21:26 -0800 | [diff] [blame] | 3420 | iter.task = NULL; |
| 3421 | pid = find_ge_pid(iter.tgid, ns); |
Eric W. Biederman | 0804ef4 | 2006-10-02 02:17:04 -0700 | [diff] [blame] | 3422 | if (pid) { |
Eric W. Biederman | 19fd4bb | 2007-11-28 16:21:26 -0800 | [diff] [blame] | 3423 | iter.tgid = pid_nr_ns(pid, ns); |
Eric W. Biederman | 3147d8a | 2020-02-24 18:53:09 -0600 | [diff] [blame] | 3424 | iter.task = pid_task(pid, PIDTYPE_TGID); |
| 3425 | if (!iter.task) { |
Eric W. Biederman | 19fd4bb | 2007-11-28 16:21:26 -0800 | [diff] [blame] | 3426 | iter.tgid += 1; |
Eric W. Biederman | 0804ef4 | 2006-10-02 02:17:04 -0700 | [diff] [blame] | 3427 | goto retry; |
Eric W. Biederman | 19fd4bb | 2007-11-28 16:21:26 -0800 | [diff] [blame] | 3428 | } |
| 3429 | get_task_struct(iter.task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3430 | } |
Eric W. Biederman | 454cc10 | 2006-06-26 00:25:51 -0700 | [diff] [blame] | 3431 | rcu_read_unlock(); |
Eric W. Biederman | 19fd4bb | 2007-11-28 16:21:26 -0800 | [diff] [blame] | 3432 | return iter; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3433 | } |
| 3434 | |
Eric W. Biederman | 0097875 | 2014-07-31 03:10:50 -0700 | [diff] [blame] | 3435 | #define TGID_OFFSET (FIRST_PROCESS_ENTRY + 2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3436 | |
| 3437 | /* for the /proc/ directory itself, after non-process stuff has been done */ |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 3438 | int proc_pid_readdir(struct file *file, struct dir_context *ctx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3439 | { |
Eric W. Biederman | 19fd4bb | 2007-11-28 16:21:26 -0800 | [diff] [blame] | 3440 | struct tgid_iter iter; |
Alexey Gladkov | fa10fed | 2020-04-19 16:10:52 +0200 | [diff] [blame] | 3441 | struct proc_fs_info *fs_info = proc_sb_info(file_inode(file)->i_sb); |
Alexey Gladkov | 9d78ede | 2020-05-18 20:07:38 +0200 | [diff] [blame] | 3442 | struct pid_namespace *ns = proc_pid_ns(file_inode(file)->i_sb); |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 3443 | loff_t pos = ctx->pos; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3444 | |
Al Viro | 021ada7 | 2013-03-29 19:27:05 -0400 | [diff] [blame] | 3445 | if (pos >= PID_MAX_LIMIT + TGID_OFFSET) |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 3446 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3447 | |
Eric W. Biederman | 0097875 | 2014-07-31 03:10:50 -0700 | [diff] [blame] | 3448 | if (pos == TGID_OFFSET - 2) { |
Alexey Gladkov | fa10fed | 2020-04-19 16:10:52 +0200 | [diff] [blame] | 3449 | struct inode *inode = d_inode(fs_info->proc_self); |
Al Viro | db96316 | 2013-06-15 10:45:10 +0400 | [diff] [blame] | 3450 | if (!dir_emit(ctx, "self", 4, inode->i_ino, DT_LNK)) |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 3451 | return 0; |
Eric W. Biederman | 0097875 | 2014-07-31 03:10:50 -0700 | [diff] [blame] | 3452 | ctx->pos = pos = pos + 1; |
Al Viro | 021ada7 | 2013-03-29 19:27:05 -0400 | [diff] [blame] | 3453 | } |
Eric W. Biederman | 0097875 | 2014-07-31 03:10:50 -0700 | [diff] [blame] | 3454 | if (pos == TGID_OFFSET - 1) { |
Alexey Gladkov | fa10fed | 2020-04-19 16:10:52 +0200 | [diff] [blame] | 3455 | struct inode *inode = d_inode(fs_info->proc_thread_self); |
Eric W. Biederman | 0097875 | 2014-07-31 03:10:50 -0700 | [diff] [blame] | 3456 | if (!dir_emit(ctx, "thread-self", 11, inode->i_ino, DT_LNK)) |
| 3457 | return 0; |
| 3458 | ctx->pos = pos = pos + 1; |
| 3459 | } |
| 3460 | iter.tgid = pos - TGID_OFFSET; |
Eric W. Biederman | 19fd4bb | 2007-11-28 16:21:26 -0800 | [diff] [blame] | 3461 | iter.task = NULL; |
Eric W. Biederman | 19fd4bb | 2007-11-28 16:21:26 -0800 | [diff] [blame] | 3462 | for (iter = next_tgid(ns, iter); |
| 3463 | iter.task; |
| 3464 | iter.tgid += 1, iter = next_tgid(ns, iter)) { |
Alexey Dobriyan | e3912ac | 2018-02-06 15:36:51 -0800 | [diff] [blame] | 3465 | char name[10 + 1]; |
Alexey Dobriyan | a4ef389 | 2018-06-07 17:10:10 -0700 | [diff] [blame] | 3466 | unsigned int len; |
Eric Dumazet | 3ba4bce | 2017-01-24 15:18:07 -0800 | [diff] [blame] | 3467 | |
| 3468 | cond_resched(); |
Alexey Gladkov | fa10fed | 2020-04-19 16:10:52 +0200 | [diff] [blame] | 3469 | if (!has_pid_permissions(fs_info, iter.task, HIDEPID_INVISIBLE)) |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 3470 | continue; |
Vasiliy Kulikov | 0499680 | 2012-01-10 15:11:31 -0800 | [diff] [blame] | 3471 | |
Alexey Dobriyan | e3912ac | 2018-02-06 15:36:51 -0800 | [diff] [blame] | 3472 | len = snprintf(name, sizeof(name), "%u", iter.tgid); |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 3473 | ctx->pos = iter.tgid + TGID_OFFSET; |
| 3474 | if (!proc_fill_cache(file, ctx, name, len, |
| 3475 | proc_pid_instantiate, iter.task, NULL)) { |
Eric W. Biederman | 19fd4bb | 2007-11-28 16:21:26 -0800 | [diff] [blame] | 3476 | put_task_struct(iter.task); |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 3477 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3478 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3479 | } |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 3480 | ctx->pos = PID_MAX_LIMIT + TGID_OFFSET; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3481 | return 0; |
| 3482 | } |
| 3483 | |
Eric W. Biederman | 0bc58a9 | 2006-06-26 00:25:50 -0700 | [diff] [blame] | 3484 | /* |
Janis Danisevskis | 1b3044e | 2016-05-20 17:00:08 -0700 | [diff] [blame] | 3485 | * proc_tid_comm_permission is a special permission function exclusively |
| 3486 | * used for the node /proc/<pid>/task/<tid>/comm. |
| 3487 | * It bypasses generic permission checks in the case where a task of the same |
| 3488 | * task group attempts to access the node. |
| 3489 | * The rationale behind this is that glibc and bionic access this node for |
| 3490 | * cross thread naming (pthread_set/getname_np(!self)). However, if |
| 3491 | * PR_SET_DUMPABLE gets set to 0 this node among others becomes uid=0 gid=0, |
| 3492 | * which locks out the cross thread naming implementation. |
| 3493 | * This function makes sure that the node is always accessible for members of |
| 3494 | * same thread group. |
| 3495 | */ |
Christian Brauner | 549c729 | 2021-01-21 14:19:43 +0100 | [diff] [blame] | 3496 | static int proc_tid_comm_permission(struct user_namespace *mnt_userns, |
| 3497 | struct inode *inode, int mask) |
Janis Danisevskis | 1b3044e | 2016-05-20 17:00:08 -0700 | [diff] [blame] | 3498 | { |
| 3499 | bool is_same_tgroup; |
| 3500 | struct task_struct *task; |
| 3501 | |
| 3502 | task = get_proc_task(inode); |
| 3503 | if (!task) |
| 3504 | return -ESRCH; |
| 3505 | is_same_tgroup = same_thread_group(current, task); |
| 3506 | put_task_struct(task); |
| 3507 | |
| 3508 | if (likely(is_same_tgroup && !(mask & MAY_EXEC))) { |
| 3509 | /* This file (/proc/<pid>/task/<tid>/comm) can always be |
| 3510 | * read or written by the members of the corresponding |
| 3511 | * thread group. |
| 3512 | */ |
| 3513 | return 0; |
| 3514 | } |
| 3515 | |
Christian Brauner | 47291ba | 2021-01-21 14:19:24 +0100 | [diff] [blame] | 3516 | return generic_permission(&init_user_ns, inode, mask); |
Janis Danisevskis | 1b3044e | 2016-05-20 17:00:08 -0700 | [diff] [blame] | 3517 | } |
| 3518 | |
| 3519 | static const struct inode_operations proc_tid_comm_inode_operations = { |
| 3520 | .permission = proc_tid_comm_permission, |
| 3521 | }; |
| 3522 | |
| 3523 | /* |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3524 | * Tasks |
| 3525 | */ |
Eric Dumazet | c5141e6 | 2007-05-08 00:26:15 -0700 | [diff] [blame] | 3526 | static const struct pid_entry tid_base_stuff[] = { |
Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 3527 | DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations), |
Kalesh Singh | 7bc3fa0 | 2021-06-30 18:54:44 -0700 | [diff] [blame] | 3528 | DIR("fdinfo", S_IRUGO|S_IXUGO, proc_fdinfo_inode_operations, proc_fdinfo_operations), |
Eric W. Biederman | 6b4e306 | 2010-03-07 16:41:34 -0800 | [diff] [blame] | 3529 | DIR("ns", S_IRUSR|S_IXUGO, proc_ns_dir_inode_operations, proc_ns_dir_operations), |
Eric W. Biederman | 6ba8ed7 | 2014-07-31 16:27:08 -0700 | [diff] [blame] | 3530 | #ifdef CONFIG_NET |
| 3531 | DIR("net", S_IRUGO|S_IXUGO, proc_net_inode_operations, proc_net_operations), |
| 3532 | #endif |
Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 3533 | REG("environ", S_IRUSR, proc_environ_operations), |
Al Viro | c531716 | 2016-10-05 18:43:43 -0400 | [diff] [blame] | 3534 | REG("auxv", S_IRUSR, proc_auxv_operations), |
Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 3535 | ONE("status", S_IRUGO, proc_pid_status), |
Djalal Harouni | 35a3504 | 2014-04-07 15:38:36 -0700 | [diff] [blame] | 3536 | ONE("personality", S_IRUSR, proc_pid_personality), |
Alexey Dobriyan | 1c963eb | 2014-08-08 14:21:37 -0700 | [diff] [blame] | 3537 | ONE("limits", S_IRUGO, proc_pid_limits), |
Ingo Molnar | 43ae34c | 2007-07-09 18:52:00 +0200 | [diff] [blame] | 3538 | #ifdef CONFIG_SCHED_DEBUG |
Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 3539 | REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations), |
Ingo Molnar | 43ae34c | 2007-07-09 18:52:00 +0200 | [diff] [blame] | 3540 | #endif |
Janis Danisevskis | 1b3044e | 2016-05-20 17:00:08 -0700 | [diff] [blame] | 3541 | NOD("comm", S_IFREG|S_IRUGO|S_IWUSR, |
| 3542 | &proc_tid_comm_inode_operations, |
| 3543 | &proc_pid_set_comm_operations, {}), |
Roland McGrath | ebcb673 | 2008-07-25 19:46:00 -0700 | [diff] [blame] | 3544 | #ifdef CONFIG_HAVE_ARCH_TRACEHOOK |
Alexey Dobriyan | 09d93bd | 2014-08-08 14:21:39 -0700 | [diff] [blame] | 3545 | ONE("syscall", S_IRUSR, proc_pid_syscall), |
Roland McGrath | ebcb673 | 2008-07-25 19:46:00 -0700 | [diff] [blame] | 3546 | #endif |
Alexey Dobriyan | c2c0bb4 | 2015-06-25 15:00:54 -0700 | [diff] [blame] | 3547 | REG("cmdline", S_IRUGO, proc_pid_cmdline_ops), |
Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 3548 | ONE("stat", S_IRUGO, proc_tid_stat), |
| 3549 | ONE("statm", S_IRUGO, proc_pid_statm), |
Vlastimil Babka | 871305b | 2018-08-21 21:52:48 -0700 | [diff] [blame] | 3550 | REG("maps", S_IRUGO, proc_pid_maps_operations), |
Iago López Galeiras | 2e13ba5 | 2015-06-25 15:00:57 -0700 | [diff] [blame] | 3551 | #ifdef CONFIG_PROC_CHILDREN |
Cyrill Gorcunov | 81841161 | 2012-05-31 16:26:43 -0700 | [diff] [blame] | 3552 | REG("children", S_IRUGO, proc_tid_children_operations), |
| 3553 | #endif |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3554 | #ifdef CONFIG_NUMA |
Vlastimil Babka | 871305b | 2018-08-21 21:52:48 -0700 | [diff] [blame] | 3555 | REG("numa_maps", S_IRUGO, proc_pid_numa_maps_operations), |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3556 | #endif |
Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 3557 | REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations), |
| 3558 | LNK("cwd", proc_cwd_link), |
| 3559 | LNK("root", proc_root_link), |
| 3560 | LNK("exe", proc_exe_link), |
| 3561 | REG("mounts", S_IRUGO, proc_mounts_operations), |
| 3562 | REG("mountinfo", S_IRUGO, proc_mountinfo_operations), |
Matt Mackall | 1e88328 | 2008-02-04 22:29:07 -0800 | [diff] [blame] | 3563 | #ifdef CONFIG_PROC_PAGE_MONITOR |
Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 3564 | REG("clear_refs", S_IWUSR, proc_clear_refs_operations), |
Vlastimil Babka | 871305b | 2018-08-21 21:52:48 -0700 | [diff] [blame] | 3565 | REG("smaps", S_IRUGO, proc_pid_smaps_operations), |
Daniel Colascione | 493b0e9 | 2017-09-06 16:25:08 -0700 | [diff] [blame] | 3566 | REG("smaps_rollup", S_IRUGO, proc_pid_smaps_rollup_operations), |
Djalal Harouni | 32ed74a | 2014-04-07 15:38:38 -0700 | [diff] [blame] | 3567 | REG("pagemap", S_IRUSR, proc_pagemap_operations), |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3568 | #endif |
| 3569 | #ifdef CONFIG_SECURITY |
Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 3570 | DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations), |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3571 | #endif |
| 3572 | #ifdef CONFIG_KALLSYMS |
Alexey Dobriyan | edfcd60 | 2014-08-08 14:21:44 -0700 | [diff] [blame] | 3573 | ONE("wchan", S_IRUGO, proc_pid_wchan), |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3574 | #endif |
Ken Chen | 2ec220e | 2008-11-10 11:26:08 +0300 | [diff] [blame] | 3575 | #ifdef CONFIG_STACKTRACE |
Djalal Harouni | 35a3504 | 2014-04-07 15:38:36 -0700 | [diff] [blame] | 3576 | ONE("stack", S_IRUSR, proc_pid_stack), |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3577 | #endif |
Naveen N. Rao | 5968cec | 2015-06-30 14:36:03 +0530 | [diff] [blame] | 3578 | #ifdef CONFIG_SCHED_INFO |
Alexey Dobriyan | f6e826c | 2014-08-08 14:21:46 -0700 | [diff] [blame] | 3579 | ONE("schedstat", S_IRUGO, proc_pid_schedstat), |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3580 | #endif |
Arjan van de Ven | 9745512 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 3581 | #ifdef CONFIG_LATENCYTOP |
Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 3582 | REG("latency", S_IRUGO, proc_lstats_operations), |
Arjan van de Ven | 9745512 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 3583 | #endif |
Paul Menage | 8793d85 | 2007-10-18 23:39:39 -0700 | [diff] [blame] | 3584 | #ifdef CONFIG_PROC_PID_CPUSET |
Zefan Li | 52de477 | 2014-09-18 16:03:36 +0800 | [diff] [blame] | 3585 | ONE("cpuset", S_IRUGO, proc_cpuset_show), |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3586 | #endif |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 3587 | #ifdef CONFIG_CGROUPS |
Zefan Li | 006f4ac | 2014-09-18 16:03:15 +0800 | [diff] [blame] | 3588 | ONE("cgroup", S_IRUGO, proc_cgroup_show), |
Paul Menage | a424316 | 2007-10-18 23:39:35 -0700 | [diff] [blame] | 3589 | #endif |
Chen Yu | e79f15a | 2020-01-15 17:28:51 +0800 | [diff] [blame] | 3590 | #ifdef CONFIG_PROC_CPU_RESCTRL |
| 3591 | ONE("cpu_resctrl_groups", S_IRUGO, proc_resctrl_show), |
| 3592 | #endif |
Alexey Dobriyan | 6ba51e3 | 2014-08-08 14:21:48 -0700 | [diff] [blame] | 3593 | ONE("oom_score", S_IRUGO, proc_oom_score), |
David Rientjes | fa0cbbf | 2012-11-12 17:53:04 -0800 | [diff] [blame] | 3594 | REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adj_operations), |
David Rientjes | a63d83f | 2010-08-09 17:19:46 -0700 | [diff] [blame] | 3595 | REG("oom_score_adj", S_IRUGO|S_IWUSR, proc_oom_score_adj_operations), |
Richard Guy Briggs | 4b7d248 | 2019-01-22 17:06:39 -0500 | [diff] [blame] | 3596 | #ifdef CONFIG_AUDIT |
Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 3597 | REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations), |
Al Viro | 26ec3c6 | 2011-02-15 21:24:05 -0500 | [diff] [blame] | 3598 | REG("sessionid", S_IRUGO, proc_sessionid_operations), |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3599 | #endif |
Akinobu Mita | f4f154f | 2006-12-08 02:39:47 -0800 | [diff] [blame] | 3600 | #ifdef CONFIG_FAULT_INJECTION |
Alexey Dobriyan | 631f9c1 | 2008-11-10 01:32:52 +0300 | [diff] [blame] | 3601 | REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations), |
Akinobu Mita | 1203c8e | 2017-07-14 14:49:57 -0700 | [diff] [blame] | 3602 | REG("fail-nth", 0644, proc_fail_nth_operations), |
Akinobu Mita | f4f154f | 2006-12-08 02:39:47 -0800 | [diff] [blame] | 3603 | #endif |
Andrea Righi | 297c5d9 | 2008-07-25 01:48:49 -0700 | [diff] [blame] | 3604 | #ifdef CONFIG_TASK_IO_ACCOUNTING |
Alexey Dobriyan | 19aadc9 | 2014-08-08 14:21:50 -0700 | [diff] [blame] | 3605 | ONE("io", S_IRUSR, proc_tid_io_accounting), |
Andrea Righi | 297c5d9 | 2008-07-25 01:48:49 -0700 | [diff] [blame] | 3606 | #endif |
Eric W. Biederman | 22d917d | 2011-11-17 00:11:58 -0800 | [diff] [blame] | 3607 | #ifdef CONFIG_USER_NS |
| 3608 | REG("uid_map", S_IRUGO|S_IWUSR, proc_uid_map_operations), |
| 3609 | REG("gid_map", S_IRUGO|S_IWUSR, proc_gid_map_operations), |
Eric W. Biederman | f76d207 | 2012-08-30 01:24:05 -0700 | [diff] [blame] | 3610 | REG("projid_map", S_IRUGO|S_IWUSR, proc_projid_map_operations), |
Eric W. Biederman | 9cc4651 | 2014-12-02 12:27:26 -0600 | [diff] [blame] | 3611 | REG("setgroups", S_IRUGO|S_IWUSR, proc_setgroups_operations), |
Eric W. Biederman | 22d917d | 2011-11-17 00:11:58 -0800 | [diff] [blame] | 3612 | #endif |
Josh Poimboeuf | 7c23b33 | 2017-02-13 19:42:41 -0600 | [diff] [blame] | 3613 | #ifdef CONFIG_LIVEPATCH |
| 3614 | ONE("patch_state", S_IRUSR, proc_pid_patch_state), |
| 3615 | #endif |
Aubrey Li | 68bc30b | 2019-06-06 09:22:34 +0800 | [diff] [blame] | 3616 | #ifdef CONFIG_PROC_PID_ARCH_STATUS |
| 3617 | ONE("arch_status", S_IRUGO, proc_pid_arch_status), |
| 3618 | #endif |
YiFei Zhu | 0d8315d | 2020-11-11 07:33:54 -0600 | [diff] [blame] | 3619 | #ifdef CONFIG_SECCOMP_CACHE_DEBUG |
| 3620 | ONE("seccomp_cache", S_IRUSR, proc_pid_seccomp_cache), |
| 3621 | #endif |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3622 | }; |
| 3623 | |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 3624 | static int proc_tid_base_readdir(struct file *file, struct dir_context *ctx) |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3625 | { |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 3626 | return proc_pident_readdir(file, ctx, |
| 3627 | tid_base_stuff, ARRAY_SIZE(tid_base_stuff)); |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3628 | } |
| 3629 | |
Al Viro | 00cd8dd | 2012-06-10 17:13:09 -0400 | [diff] [blame] | 3630 | static struct dentry *proc_tid_base_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags) |
| 3631 | { |
Eric W. Biederman | 7bcd6b0 | 2006-10-02 02:18:56 -0700 | [diff] [blame] | 3632 | return proc_pident_lookup(dir, dentry, |
Alexey Dobriyan | d5a572a | 2019-03-11 23:28:51 -0700 | [diff] [blame] | 3633 | tid_base_stuff, |
| 3634 | tid_base_stuff + ARRAY_SIZE(tid_base_stuff)); |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3635 | } |
| 3636 | |
Arjan van de Ven | 00977a5 | 2007-02-12 00:55:34 -0800 | [diff] [blame] | 3637 | static const struct file_operations proc_tid_base_operations = { |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3638 | .read = generic_read_dir, |
Al Viro | f50752e | 2016-04-20 17:13:54 -0400 | [diff] [blame] | 3639 | .iterate_shared = proc_tid_base_readdir, |
| 3640 | .llseek = generic_file_llseek, |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3641 | }; |
| 3642 | |
Arjan van de Ven | c5ef1c4 | 2007-02-12 00:55:40 -0800 | [diff] [blame] | 3643 | static const struct inode_operations proc_tid_base_inode_operations = { |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3644 | .lookup = proc_tid_base_lookup, |
| 3645 | .getattr = pid_getattr, |
| 3646 | .setattr = proc_setattr, |
| 3647 | }; |
| 3648 | |
Al Viro | 0168b9e | 2018-05-03 09:21:05 -0400 | [diff] [blame] | 3649 | static struct dentry *proc_task_instantiate(struct dentry *dentry, |
| 3650 | struct task_struct *task, const void *ptr) |
Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 3651 | { |
Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 3652 | struct inode *inode; |
Al Viro | 0168b9e | 2018-05-03 09:21:05 -0400 | [diff] [blame] | 3653 | inode = proc_pid_make_inode(dentry->d_sb, task, S_IFDIR | S_IRUGO | S_IXUGO); |
Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 3654 | if (!inode) |
Al Viro | 0168b9e | 2018-05-03 09:21:05 -0400 | [diff] [blame] | 3655 | return ERR_PTR(-ENOENT); |
Al Viro | 1bbc551 | 2018-05-02 21:26:16 -0400 | [diff] [blame] | 3656 | |
Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 3657 | inode->i_op = &proc_tid_base_inode_operations; |
| 3658 | inode->i_fop = &proc_tid_base_operations; |
Al Viro | 1bbc551 | 2018-05-02 21:26:16 -0400 | [diff] [blame] | 3659 | inode->i_flags |= S_IMMUTABLE; |
Vegard Nossum | aed5417 | 2008-06-05 22:46:53 -0700 | [diff] [blame] | 3660 | |
Alexey Dobriyan | 1270dd8 | 2016-12-12 16:45:32 -0800 | [diff] [blame] | 3661 | set_nlink(inode, nlink_tid); |
Al Viro | 1bbc551 | 2018-05-02 21:26:16 -0400 | [diff] [blame] | 3662 | pid_update_inode(task, inode); |
Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 3663 | |
Nick Piggin | fb045ad | 2011-01-07 17:49:55 +1100 | [diff] [blame] | 3664 | d_set_d_op(dentry, &pid_dentry_operations); |
Al Viro | 0168b9e | 2018-05-03 09:21:05 -0400 | [diff] [blame] | 3665 | return d_splice_alias(inode, dentry); |
Eric W. Biederman | 444ceed | 2006-10-02 02:18:49 -0700 | [diff] [blame] | 3666 | } |
| 3667 | |
Al Viro | 00cd8dd | 2012-06-10 17:13:09 -0400 | [diff] [blame] | 3668 | static struct dentry *proc_task_lookup(struct inode *dir, struct dentry * dentry, unsigned int flags) |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3669 | { |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3670 | struct task_struct *task; |
| 3671 | struct task_struct *leader = get_proc_task(dir); |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3672 | unsigned tid; |
Alexey Gladkov | fa10fed | 2020-04-19 16:10:52 +0200 | [diff] [blame] | 3673 | struct proc_fs_info *fs_info; |
Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 3674 | struct pid_namespace *ns; |
Al Viro | 0168b9e | 2018-05-03 09:21:05 -0400 | [diff] [blame] | 3675 | struct dentry *result = ERR_PTR(-ENOENT); |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3676 | |
| 3677 | if (!leader) |
| 3678 | goto out_no_task; |
| 3679 | |
Alexey Dobriyan | dbcdb50 | 2014-08-08 14:21:25 -0700 | [diff] [blame] | 3680 | tid = name_to_int(&dentry->d_name); |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3681 | if (tid == ~0U) |
| 3682 | goto out; |
| 3683 | |
Alexey Gladkov | fa10fed | 2020-04-19 16:10:52 +0200 | [diff] [blame] | 3684 | fs_info = proc_sb_info(dentry->d_sb); |
| 3685 | ns = fs_info->pid_ns; |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3686 | rcu_read_lock(); |
Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 3687 | task = find_task_by_pid_ns(tid, ns); |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3688 | if (task) |
| 3689 | get_task_struct(task); |
| 3690 | rcu_read_unlock(); |
| 3691 | if (!task) |
| 3692 | goto out; |
Pavel Emelyanov | bac0abd | 2007-10-18 23:40:18 -0700 | [diff] [blame] | 3693 | if (!same_thread_group(leader, task)) |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3694 | goto out_drop_task; |
| 3695 | |
Al Viro | 0168b9e | 2018-05-03 09:21:05 -0400 | [diff] [blame] | 3696 | result = proc_task_instantiate(dentry, task, NULL); |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3697 | out_drop_task: |
| 3698 | put_task_struct(task); |
| 3699 | out: |
| 3700 | put_task_struct(leader); |
| 3701 | out_no_task: |
Al Viro | 0168b9e | 2018-05-03 09:21:05 -0400 | [diff] [blame] | 3702 | return result; |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3703 | } |
| 3704 | |
| 3705 | /* |
Eric W. Biederman | 0bc58a9 | 2006-06-26 00:25:50 -0700 | [diff] [blame] | 3706 | * Find the first tid of a thread group to return to user space. |
| 3707 | * |
| 3708 | * Usually this is just the thread group leader, but if the users |
| 3709 | * buffer was too small or there was a seek into the middle of the |
| 3710 | * directory we have more work todo. |
| 3711 | * |
| 3712 | * In the case of a short read we start with find_task_by_pid. |
| 3713 | * |
| 3714 | * In the case of a seek we start with the leader and walk nr |
| 3715 | * threads past it. |
| 3716 | */ |
Oleg Nesterov | 9f6e963 | 2014-01-23 15:55:40 -0800 | [diff] [blame] | 3717 | static struct task_struct *first_tid(struct pid *pid, int tid, loff_t f_pos, |
| 3718 | struct pid_namespace *ns) |
Eric W. Biederman | 0bc58a9 | 2006-06-26 00:25:50 -0700 | [diff] [blame] | 3719 | { |
Oleg Nesterov | d855a4b | 2014-01-23 15:55:39 -0800 | [diff] [blame] | 3720 | struct task_struct *pos, *task; |
Oleg Nesterov | 9f6e963 | 2014-01-23 15:55:40 -0800 | [diff] [blame] | 3721 | unsigned long nr = f_pos; |
| 3722 | |
| 3723 | if (nr != f_pos) /* 32bit overflow? */ |
| 3724 | return NULL; |
Eric W. Biederman | 0bc58a9 | 2006-06-26 00:25:50 -0700 | [diff] [blame] | 3725 | |
Eric W. Biederman | cc28873 | 2006-06-26 00:26:01 -0700 | [diff] [blame] | 3726 | rcu_read_lock(); |
Oleg Nesterov | d855a4b | 2014-01-23 15:55:39 -0800 | [diff] [blame] | 3727 | task = pid_task(pid, PIDTYPE_PID); |
| 3728 | if (!task) |
| 3729 | goto fail; |
| 3730 | |
| 3731 | /* Attempt to start with the tid of a thread */ |
Oleg Nesterov | 9f6e963 | 2014-01-23 15:55:40 -0800 | [diff] [blame] | 3732 | if (tid && nr) { |
Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 3733 | pos = find_task_by_pid_ns(tid, ns); |
Oleg Nesterov | d855a4b | 2014-01-23 15:55:39 -0800 | [diff] [blame] | 3734 | if (pos && same_thread_group(pos, task)) |
Oleg Nesterov | a872ff0 | 2006-06-26 00:26:01 -0700 | [diff] [blame] | 3735 | goto found; |
Eric W. Biederman | 0bc58a9 | 2006-06-26 00:25:50 -0700 | [diff] [blame] | 3736 | } |
| 3737 | |
| 3738 | /* If nr exceeds the number of threads there is nothing todo */ |
Oleg Nesterov | 9f6e963 | 2014-01-23 15:55:40 -0800 | [diff] [blame] | 3739 | if (nr >= get_nr_threads(task)) |
Oleg Nesterov | c986c14 | 2014-01-23 15:55:38 -0800 | [diff] [blame] | 3740 | goto fail; |
Oleg Nesterov | a872ff0 | 2006-06-26 00:26:01 -0700 | [diff] [blame] | 3741 | |
| 3742 | /* If we haven't found our starting place yet start |
| 3743 | * with the leader and walk nr threads forward. |
| 3744 | */ |
Oleg Nesterov | d855a4b | 2014-01-23 15:55:39 -0800 | [diff] [blame] | 3745 | pos = task = task->group_leader; |
Oleg Nesterov | c986c14 | 2014-01-23 15:55:38 -0800 | [diff] [blame] | 3746 | do { |
Oleg Nesterov | 9f6e963 | 2014-01-23 15:55:40 -0800 | [diff] [blame] | 3747 | if (!nr--) |
Oleg Nesterov | c986c14 | 2014-01-23 15:55:38 -0800 | [diff] [blame] | 3748 | goto found; |
Oleg Nesterov | d855a4b | 2014-01-23 15:55:39 -0800 | [diff] [blame] | 3749 | } while_each_thread(task, pos); |
Oleg Nesterov | c986c14 | 2014-01-23 15:55:38 -0800 | [diff] [blame] | 3750 | fail: |
| 3751 | pos = NULL; |
| 3752 | goto out; |
Oleg Nesterov | a872ff0 | 2006-06-26 00:26:01 -0700 | [diff] [blame] | 3753 | found: |
| 3754 | get_task_struct(pos); |
| 3755 | out: |
Eric W. Biederman | cc28873 | 2006-06-26 00:26:01 -0700 | [diff] [blame] | 3756 | rcu_read_unlock(); |
Eric W. Biederman | 0bc58a9 | 2006-06-26 00:25:50 -0700 | [diff] [blame] | 3757 | return pos; |
| 3758 | } |
| 3759 | |
| 3760 | /* |
| 3761 | * Find the next thread in the thread list. |
| 3762 | * Return NULL if there is an error or no next thread. |
| 3763 | * |
| 3764 | * The reference to the input task_struct is released. |
| 3765 | */ |
| 3766 | static struct task_struct *next_tid(struct task_struct *start) |
| 3767 | { |
Oleg Nesterov | c1df7fb | 2006-06-26 00:26:02 -0700 | [diff] [blame] | 3768 | struct task_struct *pos = NULL; |
Eric W. Biederman | cc28873 | 2006-06-26 00:26:01 -0700 | [diff] [blame] | 3769 | rcu_read_lock(); |
Oleg Nesterov | c1df7fb | 2006-06-26 00:26:02 -0700 | [diff] [blame] | 3770 | if (pid_alive(start)) { |
Eric W. Biederman | 0bc58a9 | 2006-06-26 00:25:50 -0700 | [diff] [blame] | 3771 | pos = next_thread(start); |
Oleg Nesterov | c1df7fb | 2006-06-26 00:26:02 -0700 | [diff] [blame] | 3772 | if (thread_group_leader(pos)) |
| 3773 | pos = NULL; |
| 3774 | else |
| 3775 | get_task_struct(pos); |
| 3776 | } |
Eric W. Biederman | cc28873 | 2006-06-26 00:26:01 -0700 | [diff] [blame] | 3777 | rcu_read_unlock(); |
Eric W. Biederman | 0bc58a9 | 2006-06-26 00:25:50 -0700 | [diff] [blame] | 3778 | put_task_struct(start); |
| 3779 | return pos; |
| 3780 | } |
| 3781 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3782 | /* for the /proc/TGID/task/ directories */ |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 3783 | static int proc_task_readdir(struct file *file, struct dir_context *ctx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3784 | { |
Oleg Nesterov | d855a4b | 2014-01-23 15:55:39 -0800 | [diff] [blame] | 3785 | struct inode *inode = file_inode(file); |
| 3786 | struct task_struct *task; |
Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 3787 | struct pid_namespace *ns; |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 3788 | int tid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3789 | |
Oleg Nesterov | d855a4b | 2014-01-23 15:55:39 -0800 | [diff] [blame] | 3790 | if (proc_inode_is_dead(inode)) |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 3791 | return -ENOENT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3792 | |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 3793 | if (!dir_emit_dots(file, ctx)) |
Oleg Nesterov | d855a4b | 2014-01-23 15:55:39 -0800 | [diff] [blame] | 3794 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3795 | |
Eric W. Biederman | 0bc58a9 | 2006-06-26 00:25:50 -0700 | [diff] [blame] | 3796 | /* f_version caches the tgid value that the last readdir call couldn't |
| 3797 | * return. lseek aka telldir automagically resets f_version to 0. |
| 3798 | */ |
Alexey Gladkov | 9d78ede | 2020-05-18 20:07:38 +0200 | [diff] [blame] | 3799 | ns = proc_pid_ns(inode->i_sb); |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 3800 | tid = (int)file->f_version; |
| 3801 | file->f_version = 0; |
Oleg Nesterov | d855a4b | 2014-01-23 15:55:39 -0800 | [diff] [blame] | 3802 | for (task = first_tid(proc_pid(inode), tid, ctx->pos - 2, ns); |
Eric W. Biederman | 0bc58a9 | 2006-06-26 00:25:50 -0700 | [diff] [blame] | 3803 | task; |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 3804 | task = next_tid(task), ctx->pos++) { |
Alexey Dobriyan | e3912ac | 2018-02-06 15:36:51 -0800 | [diff] [blame] | 3805 | char name[10 + 1]; |
Alexey Dobriyan | a4ef389 | 2018-06-07 17:10:10 -0700 | [diff] [blame] | 3806 | unsigned int len; |
Florian Weimer | 0658a09 | 2021-11-08 18:31:30 -0800 | [diff] [blame] | 3807 | |
Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 3808 | tid = task_pid_nr_ns(task, ns); |
Florian Weimer | 0658a09 | 2021-11-08 18:31:30 -0800 | [diff] [blame] | 3809 | if (!tid) |
| 3810 | continue; /* The task has just exited. */ |
Alexey Dobriyan | e3912ac | 2018-02-06 15:36:51 -0800 | [diff] [blame] | 3811 | len = snprintf(name, sizeof(name), "%u", tid); |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 3812 | if (!proc_fill_cache(file, ctx, name, len, |
| 3813 | proc_task_instantiate, task, NULL)) { |
Eric W. Biederman | 0bc58a9 | 2006-06-26 00:25:50 -0700 | [diff] [blame] | 3814 | /* returning this tgid failed, save it as the first |
| 3815 | * pid for the next readir call */ |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 3816 | file->f_version = (u64)tid; |
Eric W. Biederman | 0bc58a9 | 2006-06-26 00:25:50 -0700 | [diff] [blame] | 3817 | put_task_struct(task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3818 | break; |
Eric W. Biederman | 0bc58a9 | 2006-06-26 00:25:50 -0700 | [diff] [blame] | 3819 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3820 | } |
Oleg Nesterov | d855a4b | 2014-01-23 15:55:39 -0800 | [diff] [blame] | 3821 | |
Al Viro | f0c3b50 | 2013-05-16 12:07:31 -0400 | [diff] [blame] | 3822 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3823 | } |
Eric W. Biederman | 6e66b52 | 2006-06-26 00:25:47 -0700 | [diff] [blame] | 3824 | |
Christian Brauner | 549c729 | 2021-01-21 14:19:43 +0100 | [diff] [blame] | 3825 | static int proc_task_getattr(struct user_namespace *mnt_userns, |
| 3826 | const struct path *path, struct kstat *stat, |
David Howells | a528d35 | 2017-01-31 16:46:22 +0000 | [diff] [blame] | 3827 | u32 request_mask, unsigned int query_flags) |
Eric W. Biederman | 6e66b52 | 2006-06-26 00:25:47 -0700 | [diff] [blame] | 3828 | { |
David Howells | a528d35 | 2017-01-31 16:46:22 +0000 | [diff] [blame] | 3829 | struct inode *inode = d_inode(path->dentry); |
Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 3830 | struct task_struct *p = get_proc_task(inode); |
Christian Brauner | 0d56a45 | 2021-01-21 14:19:30 +0100 | [diff] [blame] | 3831 | generic_fillattr(&init_user_ns, inode, stat); |
Eric W. Biederman | 6e66b52 | 2006-06-26 00:25:47 -0700 | [diff] [blame] | 3832 | |
Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 3833 | if (p) { |
Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 3834 | stat->nlink += get_nr_threads(p); |
Eric W. Biederman | 99f8955 | 2006-06-26 00:25:55 -0700 | [diff] [blame] | 3835 | put_task_struct(p); |
Eric W. Biederman | 6e66b52 | 2006-06-26 00:25:47 -0700 | [diff] [blame] | 3836 | } |
| 3837 | |
| 3838 | return 0; |
| 3839 | } |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3840 | |
Arjan van de Ven | c5ef1c4 | 2007-02-12 00:55:40 -0800 | [diff] [blame] | 3841 | static const struct inode_operations proc_task_inode_operations = { |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3842 | .lookup = proc_task_lookup, |
| 3843 | .getattr = proc_task_getattr, |
| 3844 | .setattr = proc_setattr, |
Vasiliy Kulikov | 0499680 | 2012-01-10 15:11:31 -0800 | [diff] [blame] | 3845 | .permission = proc_pid_permission, |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3846 | }; |
| 3847 | |
Arjan van de Ven | 00977a5 | 2007-02-12 00:55:34 -0800 | [diff] [blame] | 3848 | static const struct file_operations proc_task_operations = { |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3849 | .read = generic_read_dir, |
Al Viro | f50752e | 2016-04-20 17:13:54 -0400 | [diff] [blame] | 3850 | .iterate_shared = proc_task_readdir, |
| 3851 | .llseek = generic_file_llseek, |
Eric W. Biederman | 28a6d67 | 2006-10-02 02:17:05 -0700 | [diff] [blame] | 3852 | }; |
Alexey Dobriyan | 1270dd8 | 2016-12-12 16:45:32 -0800 | [diff] [blame] | 3853 | |
| 3854 | void __init set_proc_pid_nlink(void) |
| 3855 | { |
| 3856 | nlink_tid = pid_entry_nlink(tid_base_stuff, ARRAY_SIZE(tid_base_stuff)); |
| 3857 | nlink_tgid = pid_entry_nlink(tgid_base_stuff, ARRAY_SIZE(tgid_base_stuff)); |
| 3858 | } |