blob: ebea9501afb84cd8969d2a4a4a25361a91e353c3 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
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 Line070ad42005-09-03 15:55:10 -070015 *
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 Torvalds1da177e2005-04-16 15:20:36 -070049 */
50
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080051#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <linux/errno.h>
54#include <linux/time.h>
55#include <linux/proc_fs.h>
56#include <linux/stat.h>
Andrea Righi59954772008-07-27 17:29:15 +020057#include <linux/task_io_accounting_ops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#include <linux/init.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080059#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <linux/file.h>
Al Viro9f3acc32008-04-24 07:44:08 -040061#include <linux/fdtable.h>
Kent Overstreet94f8f3b2019-03-11 23:31:18 -070062#include <linux/generic-radix-tree.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#include <linux/string.h>
64#include <linux/seq_file.h>
65#include <linux/namei.h>
Kirill Korotaev6b3286e2006-12-08 02:37:56 -080066#include <linux/mnt_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#include <linux/mm.h>
David Rientjesa63d83f2010-08-09 17:19:46 -070068#include <linux/swap.h>
Dipankar Sarmab8359962005-09-09 13:04:14 -070069#include <linux/rcupdate.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#include <linux/kallsyms.h>
Ken Chen2ec220e2008-11-10 11:26:08 +030071#include <linux/stacktrace.h>
Neil Hormand85f50d2007-10-18 23:40:37 -070072#include <linux/resource.h>
Kees Cook5096add2007-05-08 00:26:04 -070073#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070074#include <linux/mount.h>
75#include <linux/security.h>
76#include <linux/ptrace.h>
Roland McGrath0d094ef2008-07-25 19:45:49 -070077#include <linux/tracehook.h>
Andrew Morton87ebdc02013-02-27 17:03:16 -080078#include <linux/printk.h>
Alexey Dobriyanefb1a572018-02-06 15:37:24 -080079#include <linux/cache.h>
Paul Menagea4243162007-10-18 23:39:35 -070080#include <linux/cgroup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#include <linux/cpuset.h>
82#include <linux/audit.h>
Al Viro5addc5d2005-11-07 17:15:49 -050083#include <linux/poll.h>
Serge E. Hallyn1651e142006-10-02 02:18:08 -070084#include <linux/nsproxy.h>
Alexey Dobriyan8ac773b2006-10-19 23:28:32 -070085#include <linux/oom.h>
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -070086#include <linux/elf.h>
Pavel Emelyanov60347f62007-10-18 23:40:03 -070087#include <linux/pid_namespace.h>
Eric W. Biederman22d917d2011-11-17 00:11:58 -080088#include <linux/user_namespace.h>
Al Viro5ad4e532009-03-29 19:50:06 -040089#include <linux/fs_struct.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090090#include <linux/slab.h>
Ingo Molnar4eb5aaa2017-02-08 18:51:29 +010091#include <linux/sched/autogroup.h>
Ingo Molnar6e84f312017-02-08 18:51:29 +010092#include <linux/sched/mm.h>
Ingo Molnarf7ccbae2017-02-08 18:51:30 +010093#include <linux/sched/coredump.h>
Ingo Molnarb17b0152017-02-08 18:51:35 +010094#include <linux/sched/debug.h>
Ingo Molnar3905f9a2017-02-05 12:07:04 +010095#include <linux/sched/stat.h>
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +040096#include <linux/posix-timers.h>
KAMEZAWA Hiroyuki43d2b112012-01-10 15:08:09 -080097#include <trace/events/oom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070098#include "internal.h"
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +040099#include "fd.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Alexey Dobriyanac7f1062018-02-06 15:36:59 -0800101#include "../../lib/kstrtox.h"
102
Eric W. Biederman0f2fe202006-06-26 00:25:46 -0700103/* NOTE:
104 * Implementing inode permission operations in /proc is almost
105 * certainly an error. Permission checks need to happen during
106 * each system call not at open time. The reason is that most of
107 * what we wish to check for permissions in /proc varies at runtime.
108 *
109 * The classic example of a problem is opening file descriptors
110 * in /proc for a task before it execs a suid executable.
111 */
112
Alexey Dobriyanefb1a572018-02-06 15:37:24 -0800113static u8 nlink_tid __ro_after_init;
114static u8 nlink_tgid __ro_after_init;
Alexey Dobriyan1270dd82016-12-12 16:45:32 -0800115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116struct pid_entry {
Alexey Dobriyancedbcca2014-08-08 14:21:33 -0700117 const char *name;
Alexey Dobriyan623f5942016-12-12 16:45:08 -0800118 unsigned int len;
Al Virod161a132011-07-24 03:36:29 -0400119 umode_t mode;
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800120 const struct inode_operations *iop;
Arjan van de Ven00977a52007-02-12 00:55:34 -0800121 const struct file_operations *fop;
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700122 union proc_op op;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123};
124
Eric W. Biederman61a28782006-10-02 02:18:49 -0700125#define NOD(NAME, MODE, IOP, FOP, OP) { \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700126 .name = (NAME), \
Eric Dumazetc5141e62007-05-08 00:26:15 -0700127 .len = sizeof(NAME) - 1, \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700128 .mode = MODE, \
129 .iop = IOP, \
130 .fop = FOP, \
131 .op = OP, \
132}
133
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300134#define DIR(NAME, MODE, iops, fops) \
135 NOD(NAME, (S_IFDIR|(MODE)), &iops, &fops, {} )
136#define LNK(NAME, get_link) \
Eric W. Biederman61a28782006-10-02 02:18:49 -0700137 NOD(NAME, (S_IFLNK|S_IRWXUGO), \
Eric W. Biederman20cdc892006-10-02 02:17:07 -0700138 &proc_pid_link_inode_operations, NULL, \
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300139 { .proc_get_link = get_link } )
140#define REG(NAME, MODE, fops) \
141 NOD(NAME, (S_IFREG|(MODE)), NULL, &fops, {})
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300142#define ONE(NAME, MODE, show) \
Casey Schaufler6d9c9392018-09-21 17:16:59 -0700143 NOD(NAME, (S_IFREG|(MODE)), \
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800144 NULL, &proc_single_file_operations, \
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300145 { .proc_show = show } )
Casey Schaufler6d9c9392018-09-21 17:16:59 -0700146#define ATTR(LSM, NAME, MODE) \
147 NOD(NAME, (S_IFREG|(MODE)), \
148 NULL, &proc_pid_attr_operations, \
149 { .lsm = LSM })
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Vegard Nossumaed54172008-06-05 22:46:53 -0700151/*
152 * Count the number of hardlinks for the pid_entry table, excluding the .
153 * and .. links.
154 */
Alexey Dobriyan1270dd82016-12-12 16:45:32 -0800155static unsigned int __init pid_entry_nlink(const struct pid_entry *entries,
Vegard Nossumaed54172008-06-05 22:46:53 -0700156 unsigned int n)
157{
158 unsigned int i;
159 unsigned int count;
160
Alexey Dobriyan1270dd82016-12-12 16:45:32 -0800161 count = 2;
Vegard Nossumaed54172008-06-05 22:46:53 -0700162 for (i = 0; i < n; ++i) {
163 if (S_ISDIR(entries[i].mode))
164 ++count;
165 }
166
167 return count;
168}
169
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200170static int get_task_root(struct task_struct *task, struct path *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000172 int result = -ENOENT;
173
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700174 task_lock(task);
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200175 if (task->fs) {
176 get_fs_root(task->fs, root);
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000177 result = 0;
178 }
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700179 task_unlock(task);
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000180 return result;
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700181}
182
Cyrill Gorcunov7773fbc2012-01-10 15:11:20 -0800183static int proc_cwd_link(struct dentry *dentry, struct path *path)
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700184{
David Howells2b0143b2015-03-17 22:25:59 +0000185 struct task_struct *task = get_proc_task(d_inode(dentry));
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700186 int result = -ENOENT;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700187
188 if (task) {
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200189 task_lock(task);
190 if (task->fs) {
191 get_fs_pwd(task->fs, path);
192 result = 0;
193 }
194 task_unlock(task);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700195 put_task_struct(task);
196 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 return result;
198}
199
Cyrill Gorcunov7773fbc2012-01-10 15:11:20 -0800200static int proc_root_link(struct dentry *dentry, struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
David Howells2b0143b2015-03-17 22:25:59 +0000202 struct task_struct *task = get_proc_task(d_inode(dentry));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 int result = -ENOENT;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700204
205 if (task) {
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200206 result = get_task_root(task, path);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700207 put_task_struct(task);
208 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 return result;
210}
211
Linus Torvaldsd26d0cd92019-07-13 14:27:14 -0700212/*
213 * If the user used setproctitle(), we just get the string from
214 * user space at arg_start, and limit it to a maximum of one page.
215 */
216static ssize_t get_mm_proctitle(struct mm_struct *mm, char __user *buf,
217 size_t count, unsigned long pos,
218 unsigned long arg_start)
219{
220 char *page;
221 int ret, got;
222
223 if (pos >= PAGE_SIZE)
224 return 0;
225
226 page = (char *)__get_free_page(GFP_KERNEL);
227 if (!page)
228 return -ENOMEM;
229
230 ret = 0;
231 got = access_remote_vm(mm, arg_start, page, PAGE_SIZE, FOLL_ANON);
232 if (got > 0) {
233 int len = strnlen(page, got);
234
235 /* Include the NUL character if it was found */
236 if (len < got)
237 len++;
238
239 if (len > pos) {
240 len -= pos;
241 if (len > count)
242 len = count;
243 len -= copy_to_user(buf, page+pos, len);
244 if (!len)
245 len = -EFAULT;
246 ret = len;
247 }
248 }
249 free_page((unsigned long)page);
250 return ret;
251}
252
Linus Torvaldse4b4e442018-05-17 13:04:17 -0700253static ssize_t get_mm_cmdline(struct mm_struct *mm, char __user *buf,
Linus Torvalds5ab82712018-05-17 15:17:33 -0700254 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700256 unsigned long arg_start, arg_end, env_start, env_end;
Linus Torvalds5ab82712018-05-17 15:17:33 -0700257 unsigned long pos, len;
Linus Torvaldsd26d0cd92019-07-13 14:27:14 -0700258 char *page, c;
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700259
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700260 /* Check if process spawned far enough to have cmdline. */
Linus Torvaldse4b4e442018-05-17 13:04:17 -0700261 if (!mm->env_end)
262 return 0;
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700263
Yang Shi88aa7cc2018-06-07 17:05:28 -0700264 spin_lock(&mm->arg_lock);
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700265 arg_start = mm->arg_start;
266 arg_end = mm->arg_end;
267 env_start = mm->env_start;
268 env_end = mm->env_end;
Yang Shi88aa7cc2018-06-07 17:05:28 -0700269 spin_unlock(&mm->arg_lock);
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700270
Linus Torvalds5ab82712018-05-17 15:17:33 -0700271 if (arg_start >= arg_end)
272 return 0;
Alexey Dobriyan6a6cbe72018-06-07 17:09:59 -0700273
Alexey Dobriyan2ca66ff2014-08-08 14:21:41 -0700274 /*
Linus Torvaldsd26d0cd92019-07-13 14:27:14 -0700275 * We allow setproctitle() to overwrite the argument
276 * strings, and overflow past the original end. But
277 * only when it overflows into the environment area.
Alexey Dobriyan2ca66ff2014-08-08 14:21:41 -0700278 */
Linus Torvaldsd26d0cd92019-07-13 14:27:14 -0700279 if (env_start != arg_end || env_end < env_start)
Linus Torvalds5ab82712018-05-17 15:17:33 -0700280 env_start = env_end = arg_end;
Linus Torvaldsd26d0cd92019-07-13 14:27:14 -0700281 len = env_end - arg_start;
Linus Torvaldsf5b65342018-06-20 09:47:20 +0900282
Linus Torvalds5ab82712018-05-17 15:17:33 -0700283 /* We're not going to care if "*ppos" has high bits set */
Linus Torvaldsd26d0cd92019-07-13 14:27:14 -0700284 pos = *ppos;
285 if (pos >= len)
286 return 0;
287 if (count > len - pos)
288 count = len - pos;
289 if (!count)
Linus Torvalds5ab82712018-05-17 15:17:33 -0700290 return 0;
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700291
Linus Torvaldsd26d0cd92019-07-13 14:27:14 -0700292 /*
293 * Magical special case: if the argv[] end byte is not
294 * zero, the user has overwritten it with setproctitle(3).
295 *
296 * Possible future enhancement: do this only once when
297 * pos is 0, and set a flag in the 'struct file'.
298 */
299 if (access_remote_vm(mm, arg_end-1, &c, 1, FOLL_ANON) == 1 && c)
300 return get_mm_proctitle(mm, buf, count, pos, arg_start);
301
302 /*
303 * For the non-setproctitle() case we limit things strictly
304 * to the [arg_start, arg_end[ range.
305 */
306 pos += arg_start;
Linus Torvalds3d712542019-07-13 13:40:13 -0700307 if (pos < arg_start || pos >= arg_end)
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700308 return 0;
Linus Torvalds3d712542019-07-13 13:40:13 -0700309 if (count > arg_end - pos)
310 count = arg_end - pos;
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700311
Linus Torvalds5ab82712018-05-17 15:17:33 -0700312 page = (char *)__get_free_page(GFP_KERNEL);
313 if (!page)
314 return -ENOMEM;
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700315
Linus Torvalds5ab82712018-05-17 15:17:33 -0700316 len = 0;
317 while (count) {
318 int got;
319 size_t size = min_t(size_t, PAGE_SIZE, count);
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700320
Linus Torvalds3d712542019-07-13 13:40:13 -0700321 got = access_remote_vm(mm, pos, page, size, FOLL_ANON);
322 if (got <= 0)
Linus Torvalds5ab82712018-05-17 15:17:33 -0700323 break;
Linus Torvalds3d712542019-07-13 13:40:13 -0700324 got -= copy_to_user(buf, page, got);
Linus Torvalds5ab82712018-05-17 15:17:33 -0700325 if (unlikely(!got)) {
326 if (!len)
327 len = -EFAULT;
328 break;
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700329 }
Linus Torvalds5ab82712018-05-17 15:17:33 -0700330 pos += got;
331 buf += got;
332 len += got;
333 count -= got;
Alexey Dobriyan3cb4e162018-06-07 17:10:02 -0700334 }
335
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700336 free_page((unsigned long)page);
Linus Torvalds5ab82712018-05-17 15:17:33 -0700337 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338}
339
Linus Torvaldse4b4e442018-05-17 13:04:17 -0700340static ssize_t get_task_cmdline(struct task_struct *tsk, char __user *buf,
341 size_t count, loff_t *pos)
342{
343 struct mm_struct *mm;
344 ssize_t ret;
345
346 mm = get_task_mm(tsk);
347 if (!mm)
348 return 0;
349
350 ret = get_mm_cmdline(mm, buf, count, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 mmput(mm);
Linus Torvaldse4b4e442018-05-17 13:04:17 -0700352 return ret;
353}
354
355static ssize_t proc_pid_cmdline_read(struct file *file, char __user *buf,
356 size_t count, loff_t *pos)
357{
358 struct task_struct *tsk;
359 ssize_t ret;
360
361 BUG_ON(*pos < 0);
362
363 tsk = get_proc_task(file_inode(file));
364 if (!tsk)
365 return -ESRCH;
366 ret = get_task_cmdline(tsk, buf, count, pos);
367 put_task_struct(tsk);
368 if (ret > 0)
369 *pos += ret;
370 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371}
372
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700373static const struct file_operations proc_pid_cmdline_ops = {
374 .read = proc_pid_cmdline_read,
375 .llseek = generic_file_llseek,
376};
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378#ifdef CONFIG_KALLSYMS
379/*
380 * Provides a wchan file via kallsyms in a proper one-value-per-file format.
381 * Returns the resolved symbol. If that fails, simply return the address.
382 */
Alexey Dobriyanedfcd602014-08-08 14:21:44 -0700383static int proc_pid_wchan(struct seq_file *m, struct pid_namespace *ns,
384 struct pid *pid, struct task_struct *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
Alexey Dobriyanffb45122007-05-08 00:28:41 -0700386 unsigned long wchan;
Tejun Heo9281ace2007-07-17 04:03:51 -0700387 char symname[KSYM_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Alexey Dobriyan24b2ec22018-04-10 16:31:30 -0700389 if (!ptrace_may_access(task, PTRACE_MODE_READ_FSCREDS))
390 goto print0;
391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 wchan = get_wchan(task);
Alexey Dobriyan24b2ec22018-04-10 16:31:30 -0700393 if (wchan && !lookup_symbol_name(wchan, symname)) {
Alexey Dobriyan21dae0a2018-04-10 16:31:34 -0700394 seq_puts(m, symname);
Alexey Dobriyan24b2ec22018-04-10 16:31:30 -0700395 return 0;
396 }
Joe Perches25ce3192015-04-15 16:18:17 -0700397
Alexey Dobriyan24b2ec22018-04-10 16:31:30 -0700398print0:
399 seq_putc(m, '0');
Joe Perches25ce3192015-04-15 16:18:17 -0700400 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401}
402#endif /* CONFIG_KALLSYMS */
403
Al Viroa9712bc2011-03-23 15:52:50 -0400404static int lock_trace(struct task_struct *task)
405{
406 int err = mutex_lock_killable(&task->signal->cred_guard_mutex);
407 if (err)
408 return err;
Jann Horncaaee622016-01-20 15:00:04 -0800409 if (!ptrace_may_access(task, PTRACE_MODE_ATTACH_FSCREDS)) {
Al Viroa9712bc2011-03-23 15:52:50 -0400410 mutex_unlock(&task->signal->cred_guard_mutex);
411 return -EPERM;
412 }
413 return 0;
414}
415
416static void unlock_trace(struct task_struct *task)
417{
418 mutex_unlock(&task->signal->cred_guard_mutex);
419}
420
Ken Chen2ec220e2008-11-10 11:26:08 +0300421#ifdef CONFIG_STACKTRACE
422
423#define MAX_STACK_TRACE_DEPTH 64
424
425static int proc_pid_stack(struct seq_file *m, struct pid_namespace *ns,
426 struct pid *pid, struct task_struct *task)
427{
Ken Chen2ec220e2008-11-10 11:26:08 +0300428 unsigned long *entries;
Al Viroa9712bc2011-03-23 15:52:50 -0400429 int err;
Ken Chen2ec220e2008-11-10 11:26:08 +0300430
Jann Hornf8a00ce2018-10-05 15:51:58 -0700431 /*
432 * The ability to racily run the kernel stack unwinder on a running task
433 * and then observe the unwinder output is scary; while it is useful for
434 * debugging kernel issues, it can also allow an attacker to leak kernel
435 * stack contents.
436 * Doing this in a manner that is at least safe from races would require
437 * some work to ensure that the remote task can not be scheduled; and
438 * even then, this would still expose the unwinder as local attack
439 * surface.
440 * Therefore, this interface is restricted to root.
441 */
442 if (!file_ns_capable(m->file, &init_user_ns, CAP_SYS_ADMIN))
443 return -EACCES;
444
Kees Cook6da2ec52018-06-12 13:55:00 -0700445 entries = kmalloc_array(MAX_STACK_TRACE_DEPTH, sizeof(*entries),
446 GFP_KERNEL);
Ken Chen2ec220e2008-11-10 11:26:08 +0300447 if (!entries)
448 return -ENOMEM;
449
Al Viroa9712bc2011-03-23 15:52:50 -0400450 err = lock_trace(task);
451 if (!err) {
Thomas Gleixnere988e5e2019-04-25 11:44:58 +0200452 unsigned int i, nr_entries;
Alexey Dobriyan5d008fb2018-06-07 17:10:17 -0700453
Thomas Gleixnere988e5e2019-04-25 11:44:58 +0200454 nr_entries = stack_trace_save_tsk(task, entries,
455 MAX_STACK_TRACE_DEPTH, 0);
Al Viroa9712bc2011-03-23 15:52:50 -0400456
Thomas Gleixnere988e5e2019-04-25 11:44:58 +0200457 for (i = 0; i < nr_entries; i++) {
Linus Torvalds8f5abe82017-11-27 16:45:56 -0800458 seq_printf(m, "[<0>] %pB\n", (void *)entries[i]);
Al Viroa9712bc2011-03-23 15:52:50 -0400459 }
Thomas Gleixnere988e5e2019-04-25 11:44:58 +0200460
Al Viroa9712bc2011-03-23 15:52:50 -0400461 unlock_trace(task);
Ken Chen2ec220e2008-11-10 11:26:08 +0300462 }
463 kfree(entries);
464
Al Viroa9712bc2011-03-23 15:52:50 -0400465 return err;
Ken Chen2ec220e2008-11-10 11:26:08 +0300466}
467#endif
468
Naveen N. Rao5968cec2015-06-30 14:36:03 +0530469#ifdef CONFIG_SCHED_INFO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470/*
471 * Provides /proc/PID/schedstat
472 */
Alexey Dobriyanf6e826c2014-08-08 14:21:46 -0700473static int proc_pid_schedstat(struct seq_file *m, struct pid_namespace *ns,
474 struct pid *pid, struct task_struct *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475{
Naveen N. Rao5968cec2015-06-30 14:36:03 +0530476 if (unlikely(!sched_info_on()))
Alexey Dobriyan08b55772019-03-05 15:50:35 -0800477 seq_puts(m, "0 0 0\n");
Naveen N. Rao5968cec2015-06-30 14:36:03 +0530478 else
479 seq_printf(m, "%llu %llu %lu\n",
Joe Perches25ce3192015-04-15 16:18:17 -0700480 (unsigned long long)task->se.sum_exec_runtime,
481 (unsigned long long)task->sched_info.run_delay,
482 task->sched_info.pcount);
483
484 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485}
486#endif
487
Arjan van de Ven97455122008-01-25 21:08:34 +0100488#ifdef CONFIG_LATENCYTOP
489static int lstats_show_proc(struct seq_file *m, void *v)
490{
491 int i;
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800492 struct inode *inode = m->private;
493 struct task_struct *task = get_proc_task(inode);
Arjan van de Ven97455122008-01-25 21:08:34 +0100494
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800495 if (!task)
496 return -ESRCH;
497 seq_puts(m, "Latency Top version : v0.1\n");
Alexey Dobriyanf6d2f582018-08-21 21:54:34 -0700498 for (i = 0; i < LT_SAVECOUNT; i++) {
Joe Perches34e49d42011-01-12 17:00:30 -0800499 struct latency_record *lr = &task->latency_record[i];
500 if (lr->backtrace[0]) {
Arjan van de Ven97455122008-01-25 21:08:34 +0100501 int q;
Joe Perches34e49d42011-01-12 17:00:30 -0800502 seq_printf(m, "%i %li %li",
503 lr->count, lr->time, lr->max);
Arjan van de Ven97455122008-01-25 21:08:34 +0100504 for (q = 0; q < LT_BACKTRACEDEPTH; q++) {
Joe Perches34e49d42011-01-12 17:00:30 -0800505 unsigned long bt = lr->backtrace[q];
Thomas Gleixneraccddc42019-04-10 12:28:08 +0200506
Joe Perches34e49d42011-01-12 17:00:30 -0800507 if (!bt)
Arjan van de Ven97455122008-01-25 21:08:34 +0100508 break;
Joe Perches34e49d42011-01-12 17:00:30 -0800509 seq_printf(m, " %ps", (void *)bt);
Arjan van de Ven97455122008-01-25 21:08:34 +0100510 }
Alexey Dobriyan9d6de122011-01-12 17:00:32 -0800511 seq_putc(m, '\n');
Arjan van de Ven97455122008-01-25 21:08:34 +0100512 }
513
514 }
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800515 put_task_struct(task);
Arjan van de Ven97455122008-01-25 21:08:34 +0100516 return 0;
517}
518
519static int lstats_open(struct inode *inode, struct file *file)
520{
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800521 return single_open(file, lstats_show_proc, inode);
Hiroshi Shimamotod6643d12008-02-14 10:27:00 -0800522}
523
Arjan van de Ven97455122008-01-25 21:08:34 +0100524static ssize_t lstats_write(struct file *file, const char __user *buf,
525 size_t count, loff_t *offs)
526{
Al Viro496ad9a2013-01-23 17:07:38 -0500527 struct task_struct *task = get_proc_task(file_inode(file));
Arjan van de Ven97455122008-01-25 21:08:34 +0100528
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800529 if (!task)
530 return -ESRCH;
Lin Fenge02c9b02019-05-14 15:42:34 -0700531 clear_tsk_latency_tracing(task);
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800532 put_task_struct(task);
Arjan van de Ven97455122008-01-25 21:08:34 +0100533
534 return count;
535}
536
537static const struct file_operations proc_lstats_operations = {
538 .open = lstats_open,
539 .read = seq_read,
540 .write = lstats_write,
541 .llseek = seq_lseek,
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800542 .release = single_release,
Arjan van de Ven97455122008-01-25 21:08:34 +0100543};
544
545#endif
546
Alexey Dobriyan6ba51e32014-08-08 14:21:48 -0700547static int proc_oom_score(struct seq_file *m, struct pid_namespace *ns,
548 struct pid *pid, struct task_struct *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549{
Arun KSca79b0c2018-12-28 00:34:29 -0800550 unsigned long totalpages = totalram_pages() + total_swap_pages;
Oleg Nesterovb95c35e2010-04-01 15:13:57 +0200551 unsigned long points = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Shakeel Buttac311a12019-07-11 21:00:31 -0700553 points = oom_badness(task, totalpages) * 1000 / totalpages;
Joe Perches25ce3192015-04-15 16:18:17 -0700554 seq_printf(m, "%lu\n", points);
555
556 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557}
558
Neil Hormand85f50d2007-10-18 23:40:37 -0700559struct limit_names {
Alexey Dobriyancedbcca2014-08-08 14:21:33 -0700560 const char *name;
561 const char *unit;
Neil Hormand85f50d2007-10-18 23:40:37 -0700562};
563
564static const struct limit_names lnames[RLIM_NLIMITS] = {
Kees Cookcff4edb2009-09-22 16:45:32 -0700565 [RLIMIT_CPU] = {"Max cpu time", "seconds"},
Neil Hormand85f50d2007-10-18 23:40:37 -0700566 [RLIMIT_FSIZE] = {"Max file size", "bytes"},
567 [RLIMIT_DATA] = {"Max data size", "bytes"},
568 [RLIMIT_STACK] = {"Max stack size", "bytes"},
569 [RLIMIT_CORE] = {"Max core file size", "bytes"},
570 [RLIMIT_RSS] = {"Max resident set", "bytes"},
571 [RLIMIT_NPROC] = {"Max processes", "processes"},
572 [RLIMIT_NOFILE] = {"Max open files", "files"},
573 [RLIMIT_MEMLOCK] = {"Max locked memory", "bytes"},
574 [RLIMIT_AS] = {"Max address space", "bytes"},
575 [RLIMIT_LOCKS] = {"Max file locks", "locks"},
576 [RLIMIT_SIGPENDING] = {"Max pending signals", "signals"},
577 [RLIMIT_MSGQUEUE] = {"Max msgqueue size", "bytes"},
578 [RLIMIT_NICE] = {"Max nice priority", NULL},
579 [RLIMIT_RTPRIO] = {"Max realtime priority", NULL},
Eugene Teo88081172008-02-23 15:23:52 -0800580 [RLIMIT_RTTIME] = {"Max realtime timeout", "us"},
Neil Hormand85f50d2007-10-18 23:40:37 -0700581};
582
583/* Display limits for a process */
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700584static int proc_pid_limits(struct seq_file *m, struct pid_namespace *ns,
585 struct pid *pid, struct task_struct *task)
Neil Hormand85f50d2007-10-18 23:40:37 -0700586{
587 unsigned int i;
Neil Hormand85f50d2007-10-18 23:40:37 -0700588 unsigned long flags;
Neil Hormand85f50d2007-10-18 23:40:37 -0700589
590 struct rlimit rlim[RLIM_NLIMITS];
591
Lai Jiangshana6bebbc2008-10-05 00:51:15 +0400592 if (!lock_task_sighand(task, &flags))
Neil Hormand85f50d2007-10-18 23:40:37 -0700593 return 0;
Neil Hormand85f50d2007-10-18 23:40:37 -0700594 memcpy(rlim, task->signal->rlim, sizeof(struct rlimit) * RLIM_NLIMITS);
595 unlock_task_sighand(task, &flags);
Neil Hormand85f50d2007-10-18 23:40:37 -0700596
597 /*
598 * print the file header
599 */
Alexey Dobriyanafe922c2019-01-03 15:26:09 -0800600 seq_puts(m, "Limit "
601 "Soft Limit "
602 "Hard Limit "
603 "Units \n");
Neil Hormand85f50d2007-10-18 23:40:37 -0700604
605 for (i = 0; i < RLIM_NLIMITS; i++) {
606 if (rlim[i].rlim_cur == RLIM_INFINITY)
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700607 seq_printf(m, "%-25s %-20s ",
Joe Perches25ce3192015-04-15 16:18:17 -0700608 lnames[i].name, "unlimited");
Neil Hormand85f50d2007-10-18 23:40:37 -0700609 else
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700610 seq_printf(m, "%-25s %-20lu ",
Joe Perches25ce3192015-04-15 16:18:17 -0700611 lnames[i].name, rlim[i].rlim_cur);
Neil Hormand85f50d2007-10-18 23:40:37 -0700612
613 if (rlim[i].rlim_max == RLIM_INFINITY)
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700614 seq_printf(m, "%-20s ", "unlimited");
Neil Hormand85f50d2007-10-18 23:40:37 -0700615 else
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700616 seq_printf(m, "%-20lu ", rlim[i].rlim_max);
Neil Hormand85f50d2007-10-18 23:40:37 -0700617
618 if (lnames[i].unit)
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700619 seq_printf(m, "%-10s\n", lnames[i].unit);
Neil Hormand85f50d2007-10-18 23:40:37 -0700620 else
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700621 seq_putc(m, '\n');
Neil Hormand85f50d2007-10-18 23:40:37 -0700622 }
623
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700624 return 0;
Neil Hormand85f50d2007-10-18 23:40:37 -0700625}
626
Roland McGrathebcb6732008-07-25 19:46:00 -0700627#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
Alexey Dobriyan09d93bd2014-08-08 14:21:39 -0700628static int proc_pid_syscall(struct seq_file *m, struct pid_namespace *ns,
629 struct pid *pid, struct task_struct *task)
Roland McGrathebcb6732008-07-25 19:46:00 -0700630{
Steven Rostedt (Red Hat)631b7ab2016-11-07 16:26:35 -0500631 struct syscall_info info;
632 u64 *args = &info.data.args[0];
Joe Perches25ce3192015-04-15 16:18:17 -0700633 int res;
634
635 res = lock_trace(task);
Al Viroa9712bc2011-03-23 15:52:50 -0400636 if (res)
637 return res;
Roland McGrathebcb6732008-07-25 19:46:00 -0700638
Steven Rostedt (Red Hat)631b7ab2016-11-07 16:26:35 -0500639 if (task_current_syscall(task, &info))
Alexey Dobriyan09d93bd2014-08-08 14:21:39 -0700640 seq_puts(m, "running\n");
Steven Rostedt (Red Hat)631b7ab2016-11-07 16:26:35 -0500641 else if (info.data.nr < 0)
642 seq_printf(m, "%d 0x%llx 0x%llx\n",
643 info.data.nr, info.sp, info.data.instruction_pointer);
Al Viroa9712bc2011-03-23 15:52:50 -0400644 else
Alexey Dobriyan09d93bd2014-08-08 14:21:39 -0700645 seq_printf(m,
Steven Rostedt (Red Hat)631b7ab2016-11-07 16:26:35 -0500646 "%d 0x%llx 0x%llx 0x%llx 0x%llx 0x%llx 0x%llx 0x%llx 0x%llx\n",
647 info.data.nr,
Roland McGrathebcb6732008-07-25 19:46:00 -0700648 args[0], args[1], args[2], args[3], args[4], args[5],
Steven Rostedt (Red Hat)631b7ab2016-11-07 16:26:35 -0500649 info.sp, info.data.instruction_pointer);
Al Viroa9712bc2011-03-23 15:52:50 -0400650 unlock_trace(task);
Joe Perches25ce3192015-04-15 16:18:17 -0700651
652 return 0;
Roland McGrathebcb6732008-07-25 19:46:00 -0700653}
654#endif /* CONFIG_HAVE_ARCH_TRACEHOOK */
655
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656/************************************************************************/
657/* Here the fs part begins */
658/************************************************************************/
659
660/* permission checks */
Eric W. Biederman778c1142006-06-26 00:25:58 -0700661static int proc_fd_access_allowed(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662{
Eric W. Biederman778c1142006-06-26 00:25:58 -0700663 struct task_struct *task;
664 int allowed = 0;
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700665 /* Allow access to a task's file descriptors if it is us or we
666 * may use ptrace attach to the process and find out that
667 * information.
Eric W. Biederman778c1142006-06-26 00:25:58 -0700668 */
669 task = get_proc_task(inode);
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700670 if (task) {
Jann Horncaaee622016-01-20 15:00:04 -0800671 allowed = ptrace_may_access(task, PTRACE_MODE_READ_FSCREDS);
Eric W. Biederman778c1142006-06-26 00:25:58 -0700672 put_task_struct(task);
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700673 }
Eric W. Biederman778c1142006-06-26 00:25:58 -0700674 return allowed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675}
676
Eric W. Biederman6b4e3062010-03-07 16:41:34 -0800677int proc_setattr(struct dentry *dentry, struct iattr *attr)
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700678{
679 int error;
David Howells2b0143b2015-03-17 22:25:59 +0000680 struct inode *inode = d_inode(dentry);
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700681
682 if (attr->ia_valid & ATTR_MODE)
683 return -EPERM;
684
Jan Kara31051c82016-05-26 16:55:18 +0200685 error = setattr_prepare(dentry, attr);
Christoph Hellwig10257742010-06-04 11:30:02 +0200686 if (error)
687 return error;
688
Christoph Hellwig10257742010-06-04 11:30:02 +0200689 setattr_copy(inode, attr);
690 mark_inode_dirty(inode);
691 return 0;
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700692}
693
Vasiliy Kulikov04996802012-01-10 15:11:31 -0800694/*
695 * May current process learn task's sched/cmdline info (for hide_pid_min=1)
696 * or euid/egid (for hide_pid_min=2)?
697 */
698static bool has_pid_permissions(struct pid_namespace *pid,
699 struct task_struct *task,
700 int hide_pid_min)
701{
702 if (pid->hide_pid < hide_pid_min)
703 return true;
704 if (in_group_p(pid->pid_gid))
705 return true;
Jann Horncaaee622016-01-20 15:00:04 -0800706 return ptrace_may_access(task, PTRACE_MODE_READ_FSCREDS);
Vasiliy Kulikov04996802012-01-10 15:11:31 -0800707}
708
709
710static int proc_pid_permission(struct inode *inode, int mask)
711{
Christoph Hellwig76f668b2018-05-16 07:19:01 +0200712 struct pid_namespace *pid = proc_pid_ns(inode);
Vasiliy Kulikov04996802012-01-10 15:11:31 -0800713 struct task_struct *task;
714 bool has_perms;
715
716 task = get_proc_task(inode);
Xiaotian Fenga2ef9902012-01-12 17:17:08 -0800717 if (!task)
718 return -ESRCH;
Lafcadio Wluiki796f5712017-02-24 15:00:23 -0800719 has_perms = has_pid_permissions(pid, task, HIDEPID_NO_ACCESS);
Vasiliy Kulikov04996802012-01-10 15:11:31 -0800720 put_task_struct(task);
721
722 if (!has_perms) {
Lafcadio Wluiki796f5712017-02-24 15:00:23 -0800723 if (pid->hide_pid == HIDEPID_INVISIBLE) {
Vasiliy Kulikov04996802012-01-10 15:11:31 -0800724 /*
725 * Let's make getdents(), stat(), and open()
726 * consistent with each other. If a process
727 * may not stat() a file, it shouldn't be seen
728 * in procfs at all.
729 */
730 return -ENOENT;
731 }
732
733 return -EPERM;
734 }
735 return generic_permission(inode, mask);
736}
737
738
739
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800740static const struct inode_operations proc_def_inode_operations = {
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700741 .setattr = proc_setattr,
742};
743
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800744static int proc_single_show(struct seq_file *m, void *v)
745{
746 struct inode *inode = m->private;
Christoph Hellwig76f668b2018-05-16 07:19:01 +0200747 struct pid_namespace *ns = proc_pid_ns(inode);
748 struct pid *pid = proc_pid(inode);
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800749 struct task_struct *task;
750 int ret;
751
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800752 task = get_pid_task(pid, PIDTYPE_PID);
753 if (!task)
754 return -ESRCH;
755
756 ret = PROC_I(inode)->op.proc_show(m, ns, pid, task);
757
758 put_task_struct(task);
759 return ret;
760}
761
762static int proc_single_open(struct inode *inode, struct file *filp)
763{
Jovi Zhangc6a34052011-01-12 17:00:34 -0800764 return single_open(filp, proc_single_show, inode);
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800765}
766
767static const struct file_operations proc_single_file_operations = {
768 .open = proc_single_open,
769 .read = seq_read,
770 .llseek = seq_lseek,
771 .release = single_release,
772};
773
Oleg Nesterov5381e162014-10-09 15:25:24 -0700774
775struct mm_struct *proc_mem_open(struct inode *inode, unsigned int mode)
776{
777 struct task_struct *task = get_proc_task(inode);
778 struct mm_struct *mm = ERR_PTR(-ESRCH);
779
780 if (task) {
Jann Horncaaee622016-01-20 15:00:04 -0800781 mm = mm_access(task, mode | PTRACE_MODE_FSCREDS);
Oleg Nesterov5381e162014-10-09 15:25:24 -0700782 put_task_struct(task);
783
784 if (!IS_ERR_OR_NULL(mm)) {
785 /* ensure this mm_struct can't be freed */
Vegard Nossumf1f10072017-02-27 14:30:07 -0800786 mmgrab(mm);
Oleg Nesterov5381e162014-10-09 15:25:24 -0700787 /* but do not pin its memory */
788 mmput(mm);
789 }
790 }
791
792 return mm;
793}
794
Cong Wangb409e572012-05-31 16:26:17 -0700795static int __mem_open(struct inode *inode, struct file *file, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796{
Oleg Nesterov5381e162014-10-09 15:25:24 -0700797 struct mm_struct *mm = proc_mem_open(inode, mode);
Linus Torvaldse2683372012-01-17 15:21:19 -0800798
799 if (IS_ERR(mm))
800 return PTR_ERR(mm);
801
Linus Torvaldse2683372012-01-17 15:21:19 -0800802 file->private_data = mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 return 0;
804}
805
Cong Wangb409e572012-05-31 16:26:17 -0700806static int mem_open(struct inode *inode, struct file *file)
807{
Djalal Harounibc452b42012-07-30 14:42:28 -0700808 int ret = __mem_open(inode, file, PTRACE_MODE_ATTACH);
809
810 /* OK to pass negative loff_t, we can catch out-of-range */
811 file->f_mode |= FMODE_UNSIGNED_OFFSET;
812
813 return ret;
Cong Wangb409e572012-05-31 16:26:17 -0700814}
815
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100816static ssize_t mem_rw(struct file *file, char __user *buf,
817 size_t count, loff_t *ppos, int write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818{
Linus Torvaldse2683372012-01-17 15:21:19 -0800819 struct mm_struct *mm = file->private_data;
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100820 unsigned long addr = *ppos;
821 ssize_t copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 char *page;
Linus Torvalds272ddc82016-10-24 19:00:44 -0700823 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
Linus Torvaldse2683372012-01-17 15:21:19 -0800825 if (!mm)
826 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
Michal Hocko0ee931c2017-09-13 16:28:29 -0700828 page = (char *)__get_free_page(GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 if (!page)
Linus Torvaldse2683372012-01-17 15:21:19 -0800830 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
Frederik Deweerdtf7ca54f2006-09-29 02:01:02 -0700832 copied = 0;
Vegard Nossum388f7932017-02-27 14:30:13 -0800833 if (!mmget_not_zero(mm))
Oleg Nesterov6d08f2c2012-01-31 17:15:11 +0100834 goto free;
835
Linus Torvaldsf511c0b2017-05-30 12:38:59 -0700836 flags = FOLL_FORCE | (write ? FOLL_WRITE : 0);
Lorenzo Stoakes6347e8d2016-10-13 01:20:19 +0100837
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 while (count > 0) {
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100839 int this_len = min_t(int, count, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100841 if (write && copy_from_user(page, buf, this_len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 copied = -EFAULT;
843 break;
844 }
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100845
Lorenzo Stoakes6347e8d2016-10-13 01:20:19 +0100846 this_len = access_remote_vm(mm, addr, page, this_len, flags);
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100847 if (!this_len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 if (!copied)
849 copied = -EIO;
850 break;
851 }
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100852
853 if (!write && copy_to_user(buf, page, this_len)) {
854 copied = -EFAULT;
855 break;
856 }
857
858 buf += this_len;
859 addr += this_len;
860 copied += this_len;
861 count -= this_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 }
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100863 *ppos = addr;
KOSAKI Motohiro30cd8902011-05-26 16:25:52 -0700864
Oleg Nesterov6d08f2c2012-01-31 17:15:11 +0100865 mmput(mm);
866free:
KOSAKI Motohiro30cd8902011-05-26 16:25:52 -0700867 free_page((unsigned long) page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 return copied;
869}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100871static ssize_t mem_read(struct file *file, char __user *buf,
872 size_t count, loff_t *ppos)
873{
874 return mem_rw(file, buf, count, ppos, 0);
875}
876
877static ssize_t mem_write(struct file *file, const char __user *buf,
878 size_t count, loff_t *ppos)
879{
880 return mem_rw(file, (char __user*)buf, count, ppos, 1);
881}
882
Matt Mackall85863e42008-02-04 22:29:04 -0800883loff_t mem_lseek(struct file *file, loff_t offset, int orig)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884{
885 switch (orig) {
886 case 0:
887 file->f_pos = offset;
888 break;
889 case 1:
890 file->f_pos += offset;
891 break;
892 default:
893 return -EINVAL;
894 }
895 force_successful_syscall_return();
896 return file->f_pos;
897}
898
Linus Torvaldse2683372012-01-17 15:21:19 -0800899static int mem_release(struct inode *inode, struct file *file)
900{
901 struct mm_struct *mm = file->private_data;
Oleg Nesterov71879d32012-01-31 17:14:38 +0100902 if (mm)
Oleg Nesterov6d08f2c2012-01-31 17:15:11 +0100903 mmdrop(mm);
Linus Torvaldse2683372012-01-17 15:21:19 -0800904 return 0;
905}
906
Arjan van de Ven00977a52007-02-12 00:55:34 -0800907static const struct file_operations proc_mem_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 .llseek = mem_lseek,
909 .read = mem_read,
910 .write = mem_write,
911 .open = mem_open,
Linus Torvaldse2683372012-01-17 15:21:19 -0800912 .release = mem_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913};
914
Cong Wangb409e572012-05-31 16:26:17 -0700915static int environ_open(struct inode *inode, struct file *file)
916{
917 return __mem_open(inode, file, PTRACE_MODE_READ);
918}
919
James Pearson315e28c2007-10-16 23:30:17 -0700920static ssize_t environ_read(struct file *file, char __user *buf,
921 size_t count, loff_t *ppos)
922{
James Pearson315e28c2007-10-16 23:30:17 -0700923 char *page;
924 unsigned long src = *ppos;
Cong Wangb409e572012-05-31 16:26:17 -0700925 int ret = 0;
926 struct mm_struct *mm = file->private_data;
Mateusz Guzika3b609e2016-01-20 15:01:05 -0800927 unsigned long env_start, env_end;
James Pearson315e28c2007-10-16 23:30:17 -0700928
Mathias Krause8148a732016-05-05 16:22:26 -0700929 /* Ensure the process spawned far enough to have an environment. */
930 if (!mm || !mm->env_end)
Cong Wangb409e572012-05-31 16:26:17 -0700931 return 0;
James Pearson315e28c2007-10-16 23:30:17 -0700932
Michal Hocko0ee931c2017-09-13 16:28:29 -0700933 page = (char *)__get_free_page(GFP_KERNEL);
James Pearson315e28c2007-10-16 23:30:17 -0700934 if (!page)
Cong Wangb409e572012-05-31 16:26:17 -0700935 return -ENOMEM;
James Pearson315e28c2007-10-16 23:30:17 -0700936
Al Virod6f64b82011-02-15 22:26:01 -0500937 ret = 0;
Vegard Nossum388f7932017-02-27 14:30:13 -0800938 if (!mmget_not_zero(mm))
Cong Wangb409e572012-05-31 16:26:17 -0700939 goto free;
Mateusz Guzika3b609e2016-01-20 15:01:05 -0800940
Yang Shi88aa7cc2018-06-07 17:05:28 -0700941 spin_lock(&mm->arg_lock);
Mateusz Guzika3b609e2016-01-20 15:01:05 -0800942 env_start = mm->env_start;
943 env_end = mm->env_end;
Yang Shi88aa7cc2018-06-07 17:05:28 -0700944 spin_unlock(&mm->arg_lock);
Mateusz Guzika3b609e2016-01-20 15:01:05 -0800945
James Pearson315e28c2007-10-16 23:30:17 -0700946 while (count > 0) {
Djalal Harounie8905ec2012-07-30 14:42:26 -0700947 size_t this_len, max_len;
948 int retval;
949
Mateusz Guzika3b609e2016-01-20 15:01:05 -0800950 if (src >= (env_end - env_start))
Djalal Harounie8905ec2012-07-30 14:42:26 -0700951 break;
James Pearson315e28c2007-10-16 23:30:17 -0700952
Mateusz Guzika3b609e2016-01-20 15:01:05 -0800953 this_len = env_end - (env_start + src);
James Pearson315e28c2007-10-16 23:30:17 -0700954
Djalal Harounie8905ec2012-07-30 14:42:26 -0700955 max_len = min_t(size_t, PAGE_SIZE, count);
956 this_len = min(max_len, this_len);
James Pearson315e28c2007-10-16 23:30:17 -0700957
Willy Tarreau7f7ccc22018-05-11 08:11:44 +0200958 retval = access_remote_vm(mm, (env_start + src), page, this_len, FOLL_ANON);
James Pearson315e28c2007-10-16 23:30:17 -0700959
960 if (retval <= 0) {
961 ret = retval;
962 break;
963 }
964
965 if (copy_to_user(buf, page, retval)) {
966 ret = -EFAULT;
967 break;
968 }
969
970 ret += retval;
971 src += retval;
972 buf += retval;
973 count -= retval;
974 }
975 *ppos = src;
James Pearson315e28c2007-10-16 23:30:17 -0700976 mmput(mm);
Cong Wangb409e572012-05-31 16:26:17 -0700977
978free:
James Pearson315e28c2007-10-16 23:30:17 -0700979 free_page((unsigned long) page);
James Pearson315e28c2007-10-16 23:30:17 -0700980 return ret;
981}
982
983static const struct file_operations proc_environ_operations = {
Cong Wangb409e572012-05-31 16:26:17 -0700984 .open = environ_open,
James Pearson315e28c2007-10-16 23:30:17 -0700985 .read = environ_read,
Arnd Bergmann87df8422010-03-17 23:06:02 +0100986 .llseek = generic_file_llseek,
Cong Wangb409e572012-05-31 16:26:17 -0700987 .release = mem_release,
James Pearson315e28c2007-10-16 23:30:17 -0700988};
989
Al Viroc5317162016-10-05 18:43:43 -0400990static int auxv_open(struct inode *inode, struct file *file)
991{
992 return __mem_open(inode, file, PTRACE_MODE_READ_FSCREDS);
993}
994
995static ssize_t auxv_read(struct file *file, char __user *buf,
996 size_t count, loff_t *ppos)
997{
998 struct mm_struct *mm = file->private_data;
999 unsigned int nwords = 0;
Leon Yu06b28492016-10-27 17:46:50 -07001000
1001 if (!mm)
1002 return 0;
Al Viroc5317162016-10-05 18:43:43 -04001003 do {
1004 nwords += 2;
1005 } while (mm->saved_auxv[nwords - 2] != 0); /* AT_NULL */
1006 return simple_read_from_buffer(buf, count, ppos, mm->saved_auxv,
1007 nwords * sizeof(mm->saved_auxv[0]));
1008}
1009
1010static const struct file_operations proc_auxv_operations = {
1011 .open = auxv_open,
1012 .read = auxv_read,
1013 .llseek = generic_file_llseek,
1014 .release = mem_release,
1015};
1016
David Rientjesfa0cbbf2012-11-12 17:53:04 -08001017static ssize_t oom_adj_read(struct file *file, char __user *buf, size_t count,
1018 loff_t *ppos)
1019{
Al Viro496ad9a2013-01-23 17:07:38 -05001020 struct task_struct *task = get_proc_task(file_inode(file));
David Rientjesfa0cbbf2012-11-12 17:53:04 -08001021 char buffer[PROC_NUMBUF];
1022 int oom_adj = OOM_ADJUST_MIN;
1023 size_t len;
David Rientjesfa0cbbf2012-11-12 17:53:04 -08001024
1025 if (!task)
1026 return -ESRCH;
Michal Hockof913da52016-07-28 15:44:37 -07001027 if (task->signal->oom_score_adj == OOM_SCORE_ADJ_MAX)
1028 oom_adj = OOM_ADJUST_MAX;
1029 else
1030 oom_adj = (task->signal->oom_score_adj * -OOM_DISABLE) /
1031 OOM_SCORE_ADJ_MAX;
David Rientjesfa0cbbf2012-11-12 17:53:04 -08001032 put_task_struct(task);
1033 len = snprintf(buffer, sizeof(buffer), "%d\n", oom_adj);
1034 return simple_read_from_buffer(buf, count, ppos, buffer, len);
1035}
1036
Michal Hocko1d5f0ac2016-07-28 15:44:40 -07001037static int __set_oom_adj(struct file *file, int oom_adj, bool legacy)
1038{
1039 static DEFINE_MUTEX(oom_adj_mutex);
Michal Hocko44a70ade2016-07-28 15:44:43 -07001040 struct mm_struct *mm = NULL;
Michal Hocko1d5f0ac2016-07-28 15:44:40 -07001041 struct task_struct *task;
1042 int err = 0;
1043
1044 task = get_proc_task(file_inode(file));
1045 if (!task)
1046 return -ESRCH;
1047
1048 mutex_lock(&oom_adj_mutex);
1049 if (legacy) {
1050 if (oom_adj < task->signal->oom_score_adj &&
1051 !capable(CAP_SYS_RESOURCE)) {
1052 err = -EACCES;
1053 goto err_unlock;
1054 }
1055 /*
1056 * /proc/pid/oom_adj is provided for legacy purposes, ask users to use
1057 * /proc/pid/oom_score_adj instead.
1058 */
1059 pr_warn_once("%s (%d): /proc/%d/oom_adj is deprecated, please use /proc/%d/oom_score_adj instead.\n",
1060 current->comm, task_pid_nr(current), task_pid_nr(task),
1061 task_pid_nr(task));
1062 } else {
1063 if ((short)oom_adj < task->signal->oom_score_adj_min &&
1064 !capable(CAP_SYS_RESOURCE)) {
1065 err = -EACCES;
1066 goto err_unlock;
1067 }
1068 }
1069
Michal Hocko44a70ade2016-07-28 15:44:43 -07001070 /*
1071 * Make sure we will check other processes sharing the mm if this is
1072 * not vfrok which wants its own oom_score_adj.
1073 * pin the mm so it doesn't go away and get reused after task_unlock
1074 */
1075 if (!task->vfork_done) {
1076 struct task_struct *p = find_lock_task_mm(task);
1077
1078 if (p) {
1079 if (atomic_read(&p->mm->mm_users) > 1) {
1080 mm = p->mm;
Vegard Nossumf1f10072017-02-27 14:30:07 -08001081 mmgrab(mm);
Michal Hocko44a70ade2016-07-28 15:44:43 -07001082 }
1083 task_unlock(p);
1084 }
1085 }
1086
Michal Hocko1d5f0ac2016-07-28 15:44:40 -07001087 task->signal->oom_score_adj = oom_adj;
1088 if (!legacy && has_capability_noaudit(current, CAP_SYS_RESOURCE))
1089 task->signal->oom_score_adj_min = (short)oom_adj;
1090 trace_oom_score_adj_update(task);
Michal Hocko44a70ade2016-07-28 15:44:43 -07001091
1092 if (mm) {
1093 struct task_struct *p;
1094
1095 rcu_read_lock();
1096 for_each_process(p) {
1097 if (same_thread_group(task, p))
1098 continue;
1099
1100 /* do not touch kernel threads or the global init */
1101 if (p->flags & PF_KTHREAD || is_global_init(p))
1102 continue;
1103
1104 task_lock(p);
1105 if (!p->vfork_done && process_shares_mm(p, mm)) {
Michal Hocko44a70ade2016-07-28 15:44:43 -07001106 p->signal->oom_score_adj = oom_adj;
1107 if (!legacy && has_capability_noaudit(current, CAP_SYS_RESOURCE))
1108 p->signal->oom_score_adj_min = (short)oom_adj;
1109 }
1110 task_unlock(p);
1111 }
1112 rcu_read_unlock();
1113 mmdrop(mm);
1114 }
Michal Hocko1d5f0ac2016-07-28 15:44:40 -07001115err_unlock:
1116 mutex_unlock(&oom_adj_mutex);
1117 put_task_struct(task);
1118 return err;
1119}
Michal Hockof913da52016-07-28 15:44:37 -07001120
David Rientjesb72bdfa2015-11-05 18:50:32 -08001121/*
1122 * /proc/pid/oom_adj exists solely for backwards compatibility with previous
1123 * kernels. The effective policy is defined by oom_score_adj, which has a
1124 * different scale: oom_adj grew exponentially and oom_score_adj grows linearly.
1125 * Values written to oom_adj are simply mapped linearly to oom_score_adj.
1126 * Processes that become oom disabled via oom_adj will still be oom disabled
1127 * with this implementation.
1128 *
1129 * oom_adj cannot be removed since existing userspace binaries use it.
1130 */
David Rientjesfa0cbbf2012-11-12 17:53:04 -08001131static ssize_t oom_adj_write(struct file *file, const char __user *buf,
1132 size_t count, loff_t *ppos)
1133{
David Rientjesfa0cbbf2012-11-12 17:53:04 -08001134 char buffer[PROC_NUMBUF];
1135 int oom_adj;
David Rientjesfa0cbbf2012-11-12 17:53:04 -08001136 int err;
1137
1138 memset(buffer, 0, sizeof(buffer));
1139 if (count > sizeof(buffer) - 1)
1140 count = sizeof(buffer) - 1;
1141 if (copy_from_user(buffer, buf, count)) {
1142 err = -EFAULT;
1143 goto out;
1144 }
1145
1146 err = kstrtoint(strstrip(buffer), 0, &oom_adj);
1147 if (err)
1148 goto out;
1149 if ((oom_adj < OOM_ADJUST_MIN || oom_adj > OOM_ADJUST_MAX) &&
1150 oom_adj != OOM_DISABLE) {
1151 err = -EINVAL;
1152 goto out;
1153 }
1154
David Rientjesfa0cbbf2012-11-12 17:53:04 -08001155 /*
1156 * Scale /proc/pid/oom_score_adj appropriately ensuring that a maximum
1157 * value is always attainable.
1158 */
1159 if (oom_adj == OOM_ADJUST_MAX)
1160 oom_adj = OOM_SCORE_ADJ_MAX;
1161 else
1162 oom_adj = (oom_adj * OOM_SCORE_ADJ_MAX) / -OOM_DISABLE;
1163
Michal Hocko1d5f0ac2016-07-28 15:44:40 -07001164 err = __set_oom_adj(file, oom_adj, true);
David Rientjesfa0cbbf2012-11-12 17:53:04 -08001165out:
1166 return err < 0 ? err : count;
1167}
1168
1169static const struct file_operations proc_oom_adj_operations = {
1170 .read = oom_adj_read,
1171 .write = oom_adj_write,
1172 .llseek = generic_file_llseek,
1173};
1174
David Rientjesa63d83f2010-08-09 17:19:46 -07001175static ssize_t oom_score_adj_read(struct file *file, char __user *buf,
1176 size_t count, loff_t *ppos)
1177{
Al Viro496ad9a2013-01-23 17:07:38 -05001178 struct task_struct *task = get_proc_task(file_inode(file));
David Rientjesa63d83f2010-08-09 17:19:46 -07001179 char buffer[PROC_NUMBUF];
David Rientjesa9c58b902012-12-11 16:02:54 -08001180 short oom_score_adj = OOM_SCORE_ADJ_MIN;
David Rientjesa63d83f2010-08-09 17:19:46 -07001181 size_t len;
1182
1183 if (!task)
1184 return -ESRCH;
Michal Hockof913da52016-07-28 15:44:37 -07001185 oom_score_adj = task->signal->oom_score_adj;
David Rientjesa63d83f2010-08-09 17:19:46 -07001186 put_task_struct(task);
David Rientjesa9c58b902012-12-11 16:02:54 -08001187 len = snprintf(buffer, sizeof(buffer), "%hd\n", oom_score_adj);
David Rientjesa63d83f2010-08-09 17:19:46 -07001188 return simple_read_from_buffer(buf, count, ppos, buffer, len);
1189}
1190
1191static ssize_t oom_score_adj_write(struct file *file, const char __user *buf,
1192 size_t count, loff_t *ppos)
1193{
David Rientjesa63d83f2010-08-09 17:19:46 -07001194 char buffer[PROC_NUMBUF];
Alexey Dobriyan0a8cb8e2011-05-26 16:25:50 -07001195 int oom_score_adj;
David Rientjesa63d83f2010-08-09 17:19:46 -07001196 int err;
1197
1198 memset(buffer, 0, sizeof(buffer));
1199 if (count > sizeof(buffer) - 1)
1200 count = sizeof(buffer) - 1;
David Rientjes723548b2010-10-26 14:21:25 -07001201 if (copy_from_user(buffer, buf, count)) {
1202 err = -EFAULT;
1203 goto out;
1204 }
David Rientjesa63d83f2010-08-09 17:19:46 -07001205
Alexey Dobriyan0a8cb8e2011-05-26 16:25:50 -07001206 err = kstrtoint(strstrip(buffer), 0, &oom_score_adj);
David Rientjesa63d83f2010-08-09 17:19:46 -07001207 if (err)
David Rientjes723548b2010-10-26 14:21:25 -07001208 goto out;
David Rientjesa63d83f2010-08-09 17:19:46 -07001209 if (oom_score_adj < OOM_SCORE_ADJ_MIN ||
David Rientjes723548b2010-10-26 14:21:25 -07001210 oom_score_adj > OOM_SCORE_ADJ_MAX) {
1211 err = -EINVAL;
1212 goto out;
1213 }
David Rientjesa63d83f2010-08-09 17:19:46 -07001214
Michal Hocko1d5f0ac2016-07-28 15:44:40 -07001215 err = __set_oom_adj(file, oom_score_adj, false);
David Rientjes723548b2010-10-26 14:21:25 -07001216out:
1217 return err < 0 ? err : count;
David Rientjesa63d83f2010-08-09 17:19:46 -07001218}
1219
1220static const struct file_operations proc_oom_score_adj_operations = {
1221 .read = oom_score_adj_read,
1222 .write = oom_score_adj_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001223 .llseek = default_llseek,
David Rientjesa63d83f2010-08-09 17:19:46 -07001224};
1225
Richard Guy Briggs4b7d2482019-01-22 17:06:39 -05001226#ifdef CONFIG_AUDIT
Alexey Dobriyanb4eb4f72016-10-29 19:04:39 +03001227#define TMPBUFLEN 11
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228static ssize_t proc_loginuid_read(struct file * file, char __user * buf,
1229 size_t count, loff_t *ppos)
1230{
Al Viro496ad9a2013-01-23 17:07:38 -05001231 struct inode * inode = file_inode(file);
Eric W. Biederman99f89552006-06-26 00:25:55 -07001232 struct task_struct *task = get_proc_task(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 ssize_t length;
1234 char tmpbuf[TMPBUFLEN];
1235
Eric W. Biederman99f89552006-06-26 00:25:55 -07001236 if (!task)
1237 return -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07001239 from_kuid(file->f_cred->user_ns,
1240 audit_get_loginuid(task)));
Eric W. Biederman99f89552006-06-26 00:25:55 -07001241 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1243}
1244
1245static ssize_t proc_loginuid_write(struct file * file, const char __user * buf,
1246 size_t count, loff_t *ppos)
1247{
Al Viro496ad9a2013-01-23 17:07:38 -05001248 struct inode * inode = file_inode(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 uid_t loginuid;
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07001250 kuid_t kloginuid;
Alexey Dobriyan774636e2015-09-09 15:36:59 -07001251 int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Paul E. McKenney7dc52152010-02-22 17:04:52 -08001253 rcu_read_lock();
1254 if (current != pid_task(proc_pid(inode), PIDTYPE_PID)) {
1255 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 return -EPERM;
Paul E. McKenney7dc52152010-02-22 17:04:52 -08001257 }
1258 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 if (*ppos != 0) {
1261 /* No partial writes. */
1262 return -EINVAL;
1263 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
Alexey Dobriyan774636e2015-09-09 15:36:59 -07001265 rv = kstrtou32_from_user(buf, count, 10, &loginuid);
1266 if (rv < 0)
1267 return rv;
Eric Paris81407c82013-05-24 09:49:14 -04001268
1269 /* is userspace tring to explicitly UNSET the loginuid? */
1270 if (loginuid == AUDIT_UID_UNSET) {
1271 kloginuid = INVALID_UID;
1272 } else {
1273 kloginuid = make_kuid(file->f_cred->user_ns, loginuid);
Alexey Dobriyan774636e2015-09-09 15:36:59 -07001274 if (!uid_valid(kloginuid))
1275 return -EINVAL;
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07001276 }
1277
Alexey Dobriyan774636e2015-09-09 15:36:59 -07001278 rv = audit_set_loginuid(kloginuid);
1279 if (rv < 0)
1280 return rv;
1281 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282}
1283
Arjan van de Ven00977a52007-02-12 00:55:34 -08001284static const struct file_operations proc_loginuid_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 .read = proc_loginuid_read,
1286 .write = proc_loginuid_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001287 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288};
Eric Paris1e0bd752008-03-13 08:15:31 -04001289
1290static ssize_t proc_sessionid_read(struct file * file, char __user * buf,
1291 size_t count, loff_t *ppos)
1292{
Al Viro496ad9a2013-01-23 17:07:38 -05001293 struct inode * inode = file_inode(file);
Eric Paris1e0bd752008-03-13 08:15:31 -04001294 struct task_struct *task = get_proc_task(inode);
1295 ssize_t length;
1296 char tmpbuf[TMPBUFLEN];
1297
1298 if (!task)
1299 return -ESRCH;
1300 length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
1301 audit_get_sessionid(task));
1302 put_task_struct(task);
1303 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1304}
1305
1306static const struct file_operations proc_sessionid_operations = {
1307 .read = proc_sessionid_read,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001308 .llseek = generic_file_llseek,
Eric Paris1e0bd752008-03-13 08:15:31 -04001309};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310#endif
1311
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001312#ifdef CONFIG_FAULT_INJECTION
1313static ssize_t proc_fault_inject_read(struct file * file, char __user * buf,
1314 size_t count, loff_t *ppos)
1315{
Al Viro496ad9a2013-01-23 17:07:38 -05001316 struct task_struct *task = get_proc_task(file_inode(file));
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001317 char buffer[PROC_NUMBUF];
1318 size_t len;
1319 int make_it_fail;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001320
1321 if (!task)
1322 return -ESRCH;
1323 make_it_fail = task->make_it_fail;
1324 put_task_struct(task);
1325
1326 len = snprintf(buffer, sizeof(buffer), "%i\n", make_it_fail);
Akinobu Mita0c28f282007-05-08 00:31:41 -07001327
1328 return simple_read_from_buffer(buf, count, ppos, buffer, len);
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001329}
1330
1331static ssize_t proc_fault_inject_write(struct file * file,
1332 const char __user * buf, size_t count, loff_t *ppos)
1333{
1334 struct task_struct *task;
Alexey Dobriyan774636e2015-09-09 15:36:59 -07001335 char buffer[PROC_NUMBUF];
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001336 int make_it_fail;
Alexey Dobriyan774636e2015-09-09 15:36:59 -07001337 int rv;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001338
1339 if (!capable(CAP_SYS_RESOURCE))
1340 return -EPERM;
1341 memset(buffer, 0, sizeof(buffer));
1342 if (count > sizeof(buffer) - 1)
1343 count = sizeof(buffer) - 1;
1344 if (copy_from_user(buffer, buf, count))
1345 return -EFAULT;
Alexey Dobriyan774636e2015-09-09 15:36:59 -07001346 rv = kstrtoint(strstrip(buffer), 0, &make_it_fail);
1347 if (rv < 0)
1348 return rv;
Dave Jones16caed32014-04-07 15:39:15 -07001349 if (make_it_fail < 0 || make_it_fail > 1)
1350 return -EINVAL;
1351
Al Viro496ad9a2013-01-23 17:07:38 -05001352 task = get_proc_task(file_inode(file));
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001353 if (!task)
1354 return -ESRCH;
1355 task->make_it_fail = make_it_fail;
1356 put_task_struct(task);
Vincent Licba8aaf2009-09-22 16:45:38 -07001357
1358 return count;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001359}
1360
Arjan van de Ven00977a52007-02-12 00:55:34 -08001361static const struct file_operations proc_fault_inject_operations = {
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001362 .read = proc_fault_inject_read,
1363 .write = proc_fault_inject_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001364 .llseek = generic_file_llseek,
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001365};
Dmitry Vyukove41d58182017-07-12 14:34:35 -07001366
1367static ssize_t proc_fail_nth_write(struct file *file, const char __user *buf,
1368 size_t count, loff_t *ppos)
1369{
1370 struct task_struct *task;
Akinobu Mita9049f2f2017-07-14 14:49:52 -07001371 int err;
1372 unsigned int n;
Dmitry Vyukove41d58182017-07-12 14:34:35 -07001373
Akinobu Mita9049f2f2017-07-14 14:49:52 -07001374 err = kstrtouint_from_user(buf, count, 0, &n);
Dmitry Vyukove41d58182017-07-12 14:34:35 -07001375 if (err)
1376 return err;
Akinobu Mita1203c8e2017-07-14 14:49:57 -07001377
1378 task = get_proc_task(file_inode(file));
1379 if (!task)
1380 return -ESRCH;
Alexey Dobriyan9f7118b2018-02-06 15:36:55 -08001381 task->fail_nth = n;
Akinobu Mita1203c8e2017-07-14 14:49:57 -07001382 put_task_struct(task);
1383
Dmitry Vyukove41d58182017-07-12 14:34:35 -07001384 return count;
1385}
1386
1387static ssize_t proc_fail_nth_read(struct file *file, char __user *buf,
1388 size_t count, loff_t *ppos)
1389{
1390 struct task_struct *task;
Akinobu Mitabfc74092017-07-14 14:49:54 -07001391 char numbuf[PROC_NUMBUF];
1392 ssize_t len;
Dmitry Vyukove41d58182017-07-12 14:34:35 -07001393
1394 task = get_proc_task(file_inode(file));
1395 if (!task)
1396 return -ESRCH;
Alexey Dobriyan9f7118b2018-02-06 15:36:55 -08001397 len = snprintf(numbuf, sizeof(numbuf), "%u\n", task->fail_nth);
Akinobu Mita1203c8e2017-07-14 14:49:57 -07001398 put_task_struct(task);
Alexey Dobriyana44937f2018-08-21 21:54:27 -07001399 return simple_read_from_buffer(buf, count, ppos, numbuf, len);
Dmitry Vyukove41d58182017-07-12 14:34:35 -07001400}
1401
1402static const struct file_operations proc_fail_nth_operations = {
1403 .read = proc_fail_nth_read,
1404 .write = proc_fail_nth_write,
1405};
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001406#endif
1407
Arjan van de Ven97455122008-01-25 21:08:34 +01001408
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001409#ifdef CONFIG_SCHED_DEBUG
1410/*
1411 * Print out various scheduling related per-task fields:
1412 */
1413static int sched_show(struct seq_file *m, void *v)
1414{
1415 struct inode *inode = m->private;
Christoph Hellwig76f668b2018-05-16 07:19:01 +02001416 struct pid_namespace *ns = proc_pid_ns(inode);
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001417 struct task_struct *p;
1418
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001419 p = get_proc_task(inode);
1420 if (!p)
1421 return -ESRCH;
Aleksa Sarai74dc3382017-08-06 14:41:41 +10001422 proc_sched_show_task(p, ns, m);
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001423
1424 put_task_struct(p);
1425
1426 return 0;
1427}
1428
1429static ssize_t
1430sched_write(struct file *file, const char __user *buf,
1431 size_t count, loff_t *offset)
1432{
Al Viro496ad9a2013-01-23 17:07:38 -05001433 struct inode *inode = file_inode(file);
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001434 struct task_struct *p;
1435
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001436 p = get_proc_task(inode);
1437 if (!p)
1438 return -ESRCH;
1439 proc_sched_set_task(p);
1440
1441 put_task_struct(p);
1442
1443 return count;
1444}
1445
1446static int sched_open(struct inode *inode, struct file *filp)
1447{
Jovi Zhangc6a34052011-01-12 17:00:34 -08001448 return single_open(filp, sched_show, inode);
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001449}
1450
1451static const struct file_operations proc_pid_sched_operations = {
1452 .open = sched_open,
1453 .read = seq_read,
1454 .write = sched_write,
1455 .llseek = seq_lseek,
Alexey Dobriyan5ea473a2007-07-31 00:38:50 -07001456 .release = single_release,
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001457};
1458
1459#endif
1460
Mike Galbraith5091faa2010-11-30 14:18:03 +01001461#ifdef CONFIG_SCHED_AUTOGROUP
1462/*
1463 * Print out autogroup related information:
1464 */
1465static int sched_autogroup_show(struct seq_file *m, void *v)
1466{
1467 struct inode *inode = m->private;
1468 struct task_struct *p;
1469
1470 p = get_proc_task(inode);
1471 if (!p)
1472 return -ESRCH;
1473 proc_sched_autogroup_show_task(p, m);
1474
1475 put_task_struct(p);
1476
1477 return 0;
1478}
1479
1480static ssize_t
1481sched_autogroup_write(struct file *file, const char __user *buf,
1482 size_t count, loff_t *offset)
1483{
Al Viro496ad9a2013-01-23 17:07:38 -05001484 struct inode *inode = file_inode(file);
Mike Galbraith5091faa2010-11-30 14:18:03 +01001485 struct task_struct *p;
1486 char buffer[PROC_NUMBUF];
Alexey Dobriyan0a8cb8e2011-05-26 16:25:50 -07001487 int nice;
Mike Galbraith5091faa2010-11-30 14:18:03 +01001488 int err;
1489
1490 memset(buffer, 0, sizeof(buffer));
1491 if (count > sizeof(buffer) - 1)
1492 count = sizeof(buffer) - 1;
1493 if (copy_from_user(buffer, buf, count))
1494 return -EFAULT;
1495
Alexey Dobriyan0a8cb8e2011-05-26 16:25:50 -07001496 err = kstrtoint(strstrip(buffer), 0, &nice);
1497 if (err < 0)
1498 return err;
Mike Galbraith5091faa2010-11-30 14:18:03 +01001499
1500 p = get_proc_task(inode);
1501 if (!p)
1502 return -ESRCH;
1503
Hiroshi Shimamoto2e5b5b32012-02-23 17:41:27 +09001504 err = proc_sched_autogroup_set_nice(p, nice);
Mike Galbraith5091faa2010-11-30 14:18:03 +01001505 if (err)
1506 count = err;
1507
1508 put_task_struct(p);
1509
1510 return count;
1511}
1512
1513static int sched_autogroup_open(struct inode *inode, struct file *filp)
1514{
1515 int ret;
1516
1517 ret = single_open(filp, sched_autogroup_show, NULL);
1518 if (!ret) {
1519 struct seq_file *m = filp->private_data;
1520
1521 m->private = inode;
1522 }
1523 return ret;
1524}
1525
1526static const struct file_operations proc_pid_sched_autogroup_operations = {
1527 .open = sched_autogroup_open,
1528 .read = seq_read,
1529 .write = sched_autogroup_write,
1530 .llseek = seq_lseek,
1531 .release = single_release,
1532};
1533
1534#endif /* CONFIG_SCHED_AUTOGROUP */
1535
john stultz4614a696b2009-12-14 18:00:05 -08001536static ssize_t comm_write(struct file *file, const char __user *buf,
1537 size_t count, loff_t *offset)
1538{
Al Viro496ad9a2013-01-23 17:07:38 -05001539 struct inode *inode = file_inode(file);
john stultz4614a696b2009-12-14 18:00:05 -08001540 struct task_struct *p;
1541 char buffer[TASK_COMM_LEN];
David Rientjes830e0fc2013-04-30 15:28:18 -07001542 const size_t maxlen = sizeof(buffer) - 1;
john stultz4614a696b2009-12-14 18:00:05 -08001543
1544 memset(buffer, 0, sizeof(buffer));
David Rientjes830e0fc2013-04-30 15:28:18 -07001545 if (copy_from_user(buffer, buf, count > maxlen ? maxlen : count))
john stultz4614a696b2009-12-14 18:00:05 -08001546 return -EFAULT;
1547
1548 p = get_proc_task(inode);
1549 if (!p)
1550 return -ESRCH;
1551
1552 if (same_thread_group(current, p))
1553 set_task_comm(p, buffer);
1554 else
1555 count = -EINVAL;
1556
1557 put_task_struct(p);
1558
1559 return count;
1560}
1561
1562static int comm_show(struct seq_file *m, void *v)
1563{
1564 struct inode *inode = m->private;
1565 struct task_struct *p;
1566
1567 p = get_proc_task(inode);
1568 if (!p)
1569 return -ESRCH;
1570
Tejun Heo88b72b32018-05-18 08:47:13 -07001571 proc_task_name(m, p, false);
1572 seq_putc(m, '\n');
john stultz4614a696b2009-12-14 18:00:05 -08001573
1574 put_task_struct(p);
1575
1576 return 0;
1577}
1578
1579static int comm_open(struct inode *inode, struct file *filp)
1580{
Jovi Zhangc6a34052011-01-12 17:00:34 -08001581 return single_open(filp, comm_show, inode);
john stultz4614a696b2009-12-14 18:00:05 -08001582}
1583
1584static const struct file_operations proc_pid_set_comm_operations = {
1585 .open = comm_open,
1586 .read = seq_read,
1587 .write = comm_write,
1588 .llseek = seq_lseek,
1589 .release = single_release,
1590};
1591
Cyrill Gorcunov7773fbc2012-01-10 15:11:20 -08001592static int proc_exe_link(struct dentry *dentry, struct path *exe_path)
Matt Helsley925d1c42008-04-29 01:01:36 -07001593{
1594 struct task_struct *task;
Matt Helsley925d1c42008-04-29 01:01:36 -07001595 struct file *exe_file;
1596
David Howells2b0143b2015-03-17 22:25:59 +00001597 task = get_proc_task(d_inode(dentry));
Matt Helsley925d1c42008-04-29 01:01:36 -07001598 if (!task)
1599 return -ENOENT;
Mateusz Guzikcd81a9172016-08-23 16:20:38 +02001600 exe_file = get_task_exe_file(task);
Matt Helsley925d1c42008-04-29 01:01:36 -07001601 put_task_struct(task);
Matt Helsley925d1c42008-04-29 01:01:36 -07001602 if (exe_file) {
1603 *exe_path = exe_file->f_path;
1604 path_get(&exe_file->f_path);
1605 fput(exe_file);
1606 return 0;
1607 } else
1608 return -ENOENT;
1609}
1610
Al Viro6b255392015-11-17 10:20:54 -05001611static const char *proc_pid_get_link(struct dentry *dentry,
Al Virofceef392015-12-29 15:58:39 -05001612 struct inode *inode,
1613 struct delayed_call *done)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614{
Christoph Hellwig408ef012012-06-18 10:47:03 -04001615 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 int error = -EACCES;
1617
Al Viro6b255392015-11-17 10:20:54 -05001618 if (!dentry)
1619 return ERR_PTR(-ECHILD);
1620
Eric W. Biederman778c1142006-06-26 00:25:58 -07001621 /* Are we allowed to snoop on the tasks file descriptors? */
1622 if (!proc_fd_access_allowed(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
Christoph Hellwig408ef012012-06-18 10:47:03 -04001625 error = PROC_I(inode)->op.proc_get_link(dentry, &path);
1626 if (error)
1627 goto out;
1628
Al Viro6e77137b2015-05-02 13:37:52 -04001629 nd_jump_link(&path);
Christoph Hellwig408ef012012-06-18 10:47:03 -04001630 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631out:
Al Viro008b1502005-08-20 00:17:39 +01001632 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633}
1634
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001635static int do_proc_readlink(struct path *path, char __user *buffer, int buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636{
Michal Hocko0ee931c2017-09-13 16:28:29 -07001637 char *tmp = (char *)__get_free_page(GFP_KERNEL);
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001638 char *pathname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 int len;
1640
1641 if (!tmp)
1642 return -ENOMEM;
Akinobu Mita0c28f282007-05-08 00:31:41 -07001643
Eric W. Biederman7b2a69b2010-12-05 15:51:21 -08001644 pathname = d_path(path, tmp, PAGE_SIZE);
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001645 len = PTR_ERR(pathname);
1646 if (IS_ERR(pathname))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 goto out;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001648 len = tmp + PAGE_SIZE - 1 - pathname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649
1650 if (len > buflen)
1651 len = buflen;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001652 if (copy_to_user(buffer, pathname, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 len = -EFAULT;
1654 out:
1655 free_page((unsigned long)tmp);
1656 return len;
1657}
1658
1659static int proc_pid_readlink(struct dentry * dentry, char __user * buffer, int buflen)
1660{
1661 int error = -EACCES;
David Howells2b0143b2015-03-17 22:25:59 +00001662 struct inode *inode = d_inode(dentry);
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001663 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664
Eric W. Biederman778c1142006-06-26 00:25:58 -07001665 /* Are we allowed to snoop on the tasks file descriptors? */
1666 if (!proc_fd_access_allowed(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
Cyrill Gorcunov7773fbc2012-01-10 15:11:20 -08001669 error = PROC_I(inode)->op.proc_get_link(dentry, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 if (error)
1671 goto out;
1672
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001673 error = do_proc_readlink(&path, buffer, buflen);
1674 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 return error;
1677}
1678
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +04001679const struct inode_operations proc_pid_link_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 .readlink = proc_pid_readlink,
Al Viro6b255392015-11-17 10:20:54 -05001681 .get_link = proc_pid_get_link,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07001682 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683};
1684
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001685
1686/* building an inode */
1687
Al Viroc6eb50d2017-09-30 14:45:42 -04001688void task_dump_owner(struct task_struct *task, umode_t mode,
Eric W. Biederman68eb94f2017-01-03 10:23:11 +13001689 kuid_t *ruid, kgid_t *rgid)
1690{
1691 /* Depending on the state of dumpable compute who should own a
1692 * proc file for a task.
1693 */
1694 const struct cred *cred;
1695 kuid_t uid;
1696 kgid_t gid;
1697
Alexey Dobriyan2e0ad552018-04-20 14:56:03 -07001698 if (unlikely(task->flags & PF_KTHREAD)) {
1699 *ruid = GLOBAL_ROOT_UID;
1700 *rgid = GLOBAL_ROOT_GID;
1701 return;
1702 }
1703
Eric W. Biederman68eb94f2017-01-03 10:23:11 +13001704 /* Default to the tasks effective ownership */
1705 rcu_read_lock();
1706 cred = __task_cred(task);
1707 uid = cred->euid;
1708 gid = cred->egid;
1709 rcu_read_unlock();
1710
1711 /*
1712 * Before the /proc/pid/status file was created the only way to read
1713 * the effective uid of a /process was to stat /proc/pid. Reading
1714 * /proc/pid/status is slow enough that procps and other packages
1715 * kept stating /proc/pid. To keep the rules in /proc simple I have
1716 * made this apply to all per process world readable and executable
1717 * directories.
1718 */
1719 if (mode != (S_IFDIR|S_IRUGO|S_IXUGO)) {
1720 struct mm_struct *mm;
1721 task_lock(task);
1722 mm = task->mm;
1723 /* Make non-dumpable tasks owned by some root */
1724 if (mm) {
1725 if (get_dumpable(mm) != SUID_DUMP_USER) {
1726 struct user_namespace *user_ns = mm->user_ns;
1727
1728 uid = make_kuid(user_ns, 0);
1729 if (!uid_valid(uid))
1730 uid = GLOBAL_ROOT_UID;
1731
1732 gid = make_kgid(user_ns, 0);
1733 if (!gid_valid(gid))
1734 gid = GLOBAL_ROOT_GID;
1735 }
1736 } else {
1737 uid = GLOBAL_ROOT_UID;
1738 gid = GLOBAL_ROOT_GID;
1739 }
1740 task_unlock(task);
1741 }
1742 *ruid = uid;
1743 *rgid = gid;
1744}
1745
Andreas Gruenbacherdb978da2016-11-10 22:18:28 +01001746struct inode *proc_pid_make_inode(struct super_block * sb,
1747 struct task_struct *task, umode_t mode)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001748{
1749 struct inode * inode;
1750 struct proc_inode *ei;
1751
1752 /* We need a new inode */
1753
1754 inode = new_inode(sb);
1755 if (!inode)
1756 goto out;
1757
1758 /* Common stuff */
1759 ei = PROC_I(inode);
Andreas Gruenbacherdb978da2016-11-10 22:18:28 +01001760 inode->i_mode = mode;
Christoph Hellwig85fe4022010-10-23 11:19:54 -04001761 inode->i_ino = get_next_ino();
Deepa Dinamani078cd822016-09-14 07:48:04 -07001762 inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001763 inode->i_op = &proc_def_inode_operations;
1764
1765 /*
1766 * grab the reference to task.
1767 */
Oleg Nesterov1a657f782006-10-02 02:18:59 -07001768 ei->pid = get_task_pid(task, PIDTYPE_PID);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001769 if (!ei->pid)
1770 goto out_unlock;
1771
Eric W. Biederman68eb94f2017-01-03 10:23:11 +13001772 task_dump_owner(task, 0, &inode->i_uid, &inode->i_gid);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001773 security_task_to_inode(task, inode);
1774
1775out:
1776 return inode;
1777
1778out_unlock:
1779 iput(inode);
1780 return NULL;
1781}
1782
David Howellsa528d352017-01-31 16:46:22 +00001783int pid_getattr(const struct path *path, struct kstat *stat,
1784 u32 request_mask, unsigned int query_flags)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001785{
David Howellsa528d352017-01-31 16:46:22 +00001786 struct inode *inode = d_inode(path->dentry);
Christoph Hellwig76f668b2018-05-16 07:19:01 +02001787 struct pid_namespace *pid = proc_pid_ns(inode);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001788 struct task_struct *task;
David Howellsc69e8d92008-11-14 10:39:19 +11001789
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001790 generic_fillattr(inode, stat);
1791
Eric W. Biedermandcb0f222012-02-09 08:48:21 -08001792 stat->uid = GLOBAL_ROOT_UID;
1793 stat->gid = GLOBAL_ROOT_GID;
Alexey Dobriyan94116922018-06-07 17:10:07 -07001794 rcu_read_lock();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001795 task = pid_task(proc_pid(inode), PIDTYPE_PID);
1796 if (task) {
Lafcadio Wluiki796f5712017-02-24 15:00:23 -08001797 if (!has_pid_permissions(pid, task, HIDEPID_INVISIBLE)) {
Vasiliy Kulikov04996802012-01-10 15:11:31 -08001798 rcu_read_unlock();
1799 /*
1800 * This doesn't prevent learning whether PID exists,
1801 * it only makes getattr() consistent with readdir().
1802 */
1803 return -ENOENT;
1804 }
Eric W. Biederman68eb94f2017-01-03 10:23:11 +13001805 task_dump_owner(task, inode->i_mode, &stat->uid, &stat->gid);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001806 }
1807 rcu_read_unlock();
1808 return 0;
1809}
1810
1811/* dentry stuff */
1812
1813/*
Al Viro1bbc5512018-05-02 21:26:16 -04001814 * Set <pid>/... inode ownership (can change due to setuid(), etc.)
1815 */
1816void pid_update_inode(struct task_struct *task, struct inode *inode)
1817{
1818 task_dump_owner(task, inode->i_mode, &inode->i_uid, &inode->i_gid);
1819
1820 inode->i_mode &= ~(S_ISUID | S_ISGID);
1821 security_task_to_inode(task, inode);
1822}
1823
1824/*
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001825 * Rewrite the inode's ownerships here because the owning task may have
1826 * performed a setuid(), etc.
1827 *
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001828 */
Al Viro1bbc5512018-05-02 21:26:16 -04001829static int pid_revalidate(struct dentry *dentry, unsigned int flags)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001830{
Nick Piggin34286d62011-01-07 17:49:57 +11001831 struct inode *inode;
1832 struct task_struct *task;
David Howellsc69e8d92008-11-14 10:39:19 +11001833
Al Viro0b728e12012-06-10 16:03:43 -04001834 if (flags & LOOKUP_RCU)
Nick Piggin34286d62011-01-07 17:49:57 +11001835 return -ECHILD;
1836
David Howells2b0143b2015-03-17 22:25:59 +00001837 inode = d_inode(dentry);
Nick Piggin34286d62011-01-07 17:49:57 +11001838 task = get_proc_task(inode);
1839
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001840 if (task) {
Al Viro1bbc5512018-05-02 21:26:16 -04001841 pid_update_inode(task, inode);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001842 put_task_struct(task);
1843 return 1;
1844 }
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001845 return 0;
1846}
1847
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08001848static inline bool proc_inode_is_dead(struct inode *inode)
1849{
1850 return !proc_pid(inode)->tasks[PIDTYPE_PID].first;
1851}
1852
David Howells1dd704b2013-04-12 01:08:50 +01001853int pid_delete_dentry(const struct dentry *dentry)
1854{
1855 /* Is the task we represent dead?
1856 * If so, then don't put the dentry on the lru list,
1857 * kill it immediately.
1858 */
David Howells2b0143b2015-03-17 22:25:59 +00001859 return proc_inode_is_dead(d_inode(dentry));
David Howells1dd704b2013-04-12 01:08:50 +01001860}
1861
Eric W. Biederman6b4e3062010-03-07 16:41:34 -08001862const struct dentry_operations pid_dentry_operations =
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001863{
1864 .d_revalidate = pid_revalidate,
1865 .d_delete = pid_delete_dentry,
1866};
1867
1868/* Lookups */
1869
Eric W. Biederman1c0d04c2006-10-02 02:18:57 -07001870/*
1871 * Fill a directory entry.
1872 *
1873 * If possible create the dcache entry and derive our inode number and
1874 * file type from dcache entry.
1875 *
1876 * Since all of the proc inode numbers are dynamically generated, the inode
1877 * numbers do not exist until the inode is cache. This means creating the
1878 * the dcache entry in readdir is necessary to keep the inode numbers
1879 * reported by readdir in sync with the inode numbers reported
1880 * by stat.
1881 */
Al Virof0c3b502013-05-16 12:07:31 -04001882bool proc_fill_cache(struct file *file, struct dir_context *ctx,
Alexey Dobriyana4ef3892018-06-07 17:10:10 -07001883 const char *name, unsigned int len,
Eric Dumazetc5141e62007-05-08 00:26:15 -07001884 instantiate_t instantiate, struct task_struct *task, const void *ptr)
Eric W. Biederman61a28782006-10-02 02:18:49 -07001885{
Al Virof0c3b502013-05-16 12:07:31 -04001886 struct dentry *child, *dir = file->f_path.dentry;
Al Viro1df98b82013-06-15 11:33:10 +04001887 struct qstr qname = QSTR_INIT(name, len);
Eric W. Biederman61a28782006-10-02 02:18:49 -07001888 struct inode *inode;
Al Viro0168b9e2018-05-03 09:21:05 -04001889 unsigned type = DT_UNKNOWN;
1890 ino_t ino = 1;
Eric W. Biederman61a28782006-10-02 02:18:49 -07001891
Al Viro1df98b82013-06-15 11:33:10 +04001892 child = d_hash_and_lookup(dir, &qname);
Eric W. Biederman61a28782006-10-02 02:18:49 -07001893 if (!child) {
Al Viro37817642016-04-20 16:31:31 -04001894 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
1895 child = d_alloc_parallel(dir, &qname, &wq);
1896 if (IS_ERR(child))
Al Viro1df98b82013-06-15 11:33:10 +04001897 goto end_instantiate;
Al Viro37817642016-04-20 16:31:31 -04001898 if (d_in_lookup(child)) {
Al Viro0168b9e2018-05-03 09:21:05 -04001899 struct dentry *res;
1900 res = instantiate(child, task, ptr);
Al Viro37817642016-04-20 16:31:31 -04001901 d_lookup_done(child);
Al Viro0168b9e2018-05-03 09:21:05 -04001902 if (unlikely(res)) {
1903 dput(child);
1904 child = res;
Al Virod85b3992018-06-08 01:17:11 -04001905 if (IS_ERR(child))
1906 goto end_instantiate;
Al Viro37817642016-04-20 16:31:31 -04001907 }
Eric W. Biederman61a28782006-10-02 02:18:49 -07001908 }
1909 }
David Howells2b0143b2015-03-17 22:25:59 +00001910 inode = d_inode(child);
Al Viro147ce692013-06-15 10:26:35 +04001911 ino = inode->i_ino;
1912 type = inode->i_mode >> 12;
Eric W. Biederman61a28782006-10-02 02:18:49 -07001913 dput(child);
Al Virod85b3992018-06-08 01:17:11 -04001914end_instantiate:
Al Virof0c3b502013-05-16 12:07:31 -04001915 return dir_emit(ctx, name, len, ino, type);
Eric W. Biederman61a28782006-10-02 02:18:49 -07001916}
1917
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001918/*
1919 * dname_to_vma_addr - maps a dentry name into two unsigned longs
1920 * which represent vma start and end addresses.
1921 */
1922static int dname_to_vma_addr(struct dentry *dentry,
1923 unsigned long *start, unsigned long *end)
1924{
Alexey Dobriyanac7f1062018-02-06 15:36:59 -08001925 const char *str = dentry->d_name.name;
1926 unsigned long long sval, eval;
1927 unsigned int len;
1928
Alexey Dobriyan35318db2018-04-10 16:41:14 -07001929 if (str[0] == '0' && str[1] != '-')
1930 return -EINVAL;
Alexey Dobriyanac7f1062018-02-06 15:36:59 -08001931 len = _parse_integer(str, 16, &sval);
1932 if (len & KSTRTOX_OVERFLOW)
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001933 return -EINVAL;
Alexey Dobriyanac7f1062018-02-06 15:36:59 -08001934 if (sval != (unsigned long)sval)
1935 return -EINVAL;
1936 str += len;
1937
1938 if (*str != '-')
1939 return -EINVAL;
1940 str++;
1941
Alexey Dobriyan35318db2018-04-10 16:41:14 -07001942 if (str[0] == '0' && str[1])
1943 return -EINVAL;
Alexey Dobriyanac7f1062018-02-06 15:36:59 -08001944 len = _parse_integer(str, 16, &eval);
1945 if (len & KSTRTOX_OVERFLOW)
1946 return -EINVAL;
1947 if (eval != (unsigned long)eval)
1948 return -EINVAL;
1949 str += len;
1950
1951 if (*str != '\0')
1952 return -EINVAL;
1953
1954 *start = sval;
1955 *end = eval;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001956
1957 return 0;
1958}
1959
Al Viro0b728e12012-06-10 16:03:43 -04001960static int map_files_d_revalidate(struct dentry *dentry, unsigned int flags)
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001961{
1962 unsigned long vm_start, vm_end;
1963 bool exact_vma_exists = false;
1964 struct mm_struct *mm = NULL;
1965 struct task_struct *task;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001966 struct inode *inode;
1967 int status = 0;
1968
Al Viro0b728e12012-06-10 16:03:43 -04001969 if (flags & LOOKUP_RCU)
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001970 return -ECHILD;
1971
David Howells2b0143b2015-03-17 22:25:59 +00001972 inode = d_inode(dentry);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001973 task = get_proc_task(inode);
1974 if (!task)
1975 goto out_notask;
1976
Jann Horncaaee622016-01-20 15:00:04 -08001977 mm = mm_access(task, PTRACE_MODE_READ_FSCREDS);
Cong Wang2344bec2012-05-31 16:26:18 -07001978 if (IS_ERR_OR_NULL(mm))
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001979 goto out;
1980
1981 if (!dname_to_vma_addr(dentry, &vm_start, &vm_end)) {
Konstantin Khlebnikovcd9e2bb2019-07-11 21:00:03 -07001982 status = down_read_killable(&mm->mmap_sem);
1983 if (!status) {
1984 exact_vma_exists = !!find_exact_vma(mm, vm_start,
1985 vm_end);
1986 up_read(&mm->mmap_sem);
1987 }
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001988 }
1989
1990 mmput(mm);
1991
1992 if (exact_vma_exists) {
Eric W. Biederman68eb94f2017-01-03 10:23:11 +13001993 task_dump_owner(task, 0, &inode->i_uid, &inode->i_gid);
1994
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001995 security_task_to_inode(task, inode);
1996 status = 1;
1997 }
1998
1999out:
2000 put_task_struct(task);
2001
2002out_notask:
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002003 return status;
2004}
2005
2006static const struct dentry_operations tid_map_files_dentry_operations = {
2007 .d_revalidate = map_files_d_revalidate,
2008 .d_delete = pid_delete_dentry,
2009};
2010
Al Viro6b255392015-11-17 10:20:54 -05002011static int map_files_get_link(struct dentry *dentry, struct path *path)
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002012{
2013 unsigned long vm_start, vm_end;
2014 struct vm_area_struct *vma;
2015 struct task_struct *task;
2016 struct mm_struct *mm;
2017 int rc;
2018
2019 rc = -ENOENT;
David Howells2b0143b2015-03-17 22:25:59 +00002020 task = get_proc_task(d_inode(dentry));
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002021 if (!task)
2022 goto out;
2023
2024 mm = get_task_mm(task);
2025 put_task_struct(task);
2026 if (!mm)
2027 goto out;
2028
2029 rc = dname_to_vma_addr(dentry, &vm_start, &vm_end);
2030 if (rc)
2031 goto out_mmput;
2032
Konstantin Khlebnikovcd9e2bb2019-07-11 21:00:03 -07002033 rc = down_read_killable(&mm->mmap_sem);
2034 if (rc)
2035 goto out_mmput;
2036
Artem Fetishev70335ab2014-03-10 15:49:45 -07002037 rc = -ENOENT;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002038 vma = find_exact_vma(mm, vm_start, vm_end);
2039 if (vma && vma->vm_file) {
2040 *path = vma->vm_file->f_path;
2041 path_get(path);
2042 rc = 0;
2043 }
2044 up_read(&mm->mmap_sem);
2045
2046out_mmput:
2047 mmput(mm);
2048out:
2049 return rc;
2050}
2051
2052struct map_files_info {
Alexey Dobriyan20d28cd2018-02-06 15:37:06 -08002053 unsigned long start;
2054 unsigned long end;
Al Viro7b540d02012-08-27 14:55:26 -04002055 fmode_t mode;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002056};
2057
Calvin Owensbdb4d102015-09-09 15:35:54 -07002058/*
2059 * Only allow CAP_SYS_ADMIN to follow the links, due to concerns about how the
2060 * symlinks may be used to bypass permissions on ancestor directories in the
2061 * path to the file in question.
2062 */
2063static const char *
Al Viro6b255392015-11-17 10:20:54 -05002064proc_map_files_get_link(struct dentry *dentry,
Al Virofceef392015-12-29 15:58:39 -05002065 struct inode *inode,
2066 struct delayed_call *done)
Calvin Owensbdb4d102015-09-09 15:35:54 -07002067{
2068 if (!capable(CAP_SYS_ADMIN))
2069 return ERR_PTR(-EPERM);
2070
Al Virofceef392015-12-29 15:58:39 -05002071 return proc_pid_get_link(dentry, inode, done);
Calvin Owensbdb4d102015-09-09 15:35:54 -07002072}
2073
2074/*
Al Viro6b255392015-11-17 10:20:54 -05002075 * Identical to proc_pid_link_inode_operations except for get_link()
Calvin Owensbdb4d102015-09-09 15:35:54 -07002076 */
2077static const struct inode_operations proc_map_files_link_inode_operations = {
2078 .readlink = proc_pid_readlink,
Al Viro6b255392015-11-17 10:20:54 -05002079 .get_link = proc_map_files_get_link,
Calvin Owensbdb4d102015-09-09 15:35:54 -07002080 .setattr = proc_setattr,
2081};
2082
Al Viro0168b9e2018-05-03 09:21:05 -04002083static struct dentry *
2084proc_map_files_instantiate(struct dentry *dentry,
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002085 struct task_struct *task, const void *ptr)
2086{
Al Viro7b540d02012-08-27 14:55:26 -04002087 fmode_t mode = (fmode_t)(unsigned long)ptr;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002088 struct proc_inode *ei;
2089 struct inode *inode;
2090
Al Viro0168b9e2018-05-03 09:21:05 -04002091 inode = proc_pid_make_inode(dentry->d_sb, task, S_IFLNK |
Andreas Gruenbacherdb978da2016-11-10 22:18:28 +01002092 ((mode & FMODE_READ ) ? S_IRUSR : 0) |
2093 ((mode & FMODE_WRITE) ? S_IWUSR : 0));
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002094 if (!inode)
Al Viro0168b9e2018-05-03 09:21:05 -04002095 return ERR_PTR(-ENOENT);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002096
2097 ei = PROC_I(inode);
Al Viro6b255392015-11-17 10:20:54 -05002098 ei->op.proc_get_link = map_files_get_link;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002099
Calvin Owensbdb4d102015-09-09 15:35:54 -07002100 inode->i_op = &proc_map_files_link_inode_operations;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002101 inode->i_size = 64;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002102
2103 d_set_d_op(dentry, &tid_map_files_dentry_operations);
Al Viro0168b9e2018-05-03 09:21:05 -04002104 return d_splice_alias(inode, dentry);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002105}
2106
2107static struct dentry *proc_map_files_lookup(struct inode *dir,
Al Viro00cd8dd2012-06-10 17:13:09 -04002108 struct dentry *dentry, unsigned int flags)
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002109{
2110 unsigned long vm_start, vm_end;
2111 struct vm_area_struct *vma;
2112 struct task_struct *task;
Al Viro0168b9e2018-05-03 09:21:05 -04002113 struct dentry *result;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002114 struct mm_struct *mm;
2115
Al Viro0168b9e2018-05-03 09:21:05 -04002116 result = ERR_PTR(-ENOENT);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002117 task = get_proc_task(dir);
2118 if (!task)
2119 goto out;
2120
Al Viro0168b9e2018-05-03 09:21:05 -04002121 result = ERR_PTR(-EACCES);
Jann Horncaaee622016-01-20 15:00:04 -08002122 if (!ptrace_may_access(task, PTRACE_MODE_READ_FSCREDS))
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002123 goto out_put_task;
2124
Al Viro0168b9e2018-05-03 09:21:05 -04002125 result = ERR_PTR(-ENOENT);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002126 if (dname_to_vma_addr(dentry, &vm_start, &vm_end))
Cyrill Gorcunoveb94cd92012-05-17 17:03:25 -07002127 goto out_put_task;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002128
2129 mm = get_task_mm(task);
2130 if (!mm)
Cyrill Gorcunoveb94cd92012-05-17 17:03:25 -07002131 goto out_put_task;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002132
Konstantin Khlebnikovcd9e2bb2019-07-11 21:00:03 -07002133 result = ERR_PTR(-EINTR);
2134 if (down_read_killable(&mm->mmap_sem))
2135 goto out_put_mm;
2136
2137 result = ERR_PTR(-ENOENT);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002138 vma = find_exact_vma(mm, vm_start, vm_end);
2139 if (!vma)
2140 goto out_no_vma;
2141
Stanislav Kinsbursky05f56482012-11-26 16:29:42 -08002142 if (vma->vm_file)
Al Viro0168b9e2018-05-03 09:21:05 -04002143 result = proc_map_files_instantiate(dentry, task,
Stanislav Kinsbursky05f56482012-11-26 16:29:42 -08002144 (void *)(unsigned long)vma->vm_file->f_mode);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002145
2146out_no_vma:
2147 up_read(&mm->mmap_sem);
Konstantin Khlebnikovcd9e2bb2019-07-11 21:00:03 -07002148out_put_mm:
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002149 mmput(mm);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002150out_put_task:
2151 put_task_struct(task);
2152out:
Al Viro0168b9e2018-05-03 09:21:05 -04002153 return result;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002154}
2155
2156static const struct inode_operations proc_map_files_inode_operations = {
2157 .lookup = proc_map_files_lookup,
2158 .permission = proc_fd_permission,
2159 .setattr = proc_setattr,
2160};
2161
2162static int
Al Virof0c3b502013-05-16 12:07:31 -04002163proc_map_files_readdir(struct file *file, struct dir_context *ctx)
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002164{
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002165 struct vm_area_struct *vma;
2166 struct task_struct *task;
2167 struct mm_struct *mm;
Al Virof0c3b502013-05-16 12:07:31 -04002168 unsigned long nr_files, pos, i;
Kent Overstreet94f8f3b2019-03-11 23:31:18 -07002169 GENRADIX(struct map_files_info) fa;
Al Virof0c3b502013-05-16 12:07:31 -04002170 struct map_files_info *p;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002171 int ret;
2172
Kent Overstreet94f8f3b2019-03-11 23:31:18 -07002173 genradix_init(&fa);
2174
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002175 ret = -ENOENT;
Al Virof0c3b502013-05-16 12:07:31 -04002176 task = get_proc_task(file_inode(file));
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002177 if (!task)
2178 goto out;
2179
2180 ret = -EACCES;
Jann Horncaaee622016-01-20 15:00:04 -08002181 if (!ptrace_may_access(task, PTRACE_MODE_READ_FSCREDS))
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002182 goto out_put_task;
2183
2184 ret = 0;
Al Virof0c3b502013-05-16 12:07:31 -04002185 if (!dir_emit_dots(file, ctx))
2186 goto out_put_task;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002187
Al Virof0c3b502013-05-16 12:07:31 -04002188 mm = get_task_mm(task);
2189 if (!mm)
2190 goto out_put_task;
Konstantin Khlebnikovcd9e2bb2019-07-11 21:00:03 -07002191
2192 ret = down_read_killable(&mm->mmap_sem);
2193 if (ret) {
2194 mmput(mm);
2195 goto out_put_task;
2196 }
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002197
Al Virof0c3b502013-05-16 12:07:31 -04002198 nr_files = 0;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002199
Al Virof0c3b502013-05-16 12:07:31 -04002200 /*
2201 * We need two passes here:
2202 *
2203 * 1) Collect vmas of mapped files with mmap_sem taken
2204 * 2) Release mmap_sem and instantiate entries
2205 *
2206 * otherwise we get lockdep complained, since filldir()
2207 * routine might require mmap_sem taken in might_fault().
2208 */
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002209
Al Virof0c3b502013-05-16 12:07:31 -04002210 for (vma = mm->mmap, pos = 2; vma; vma = vma->vm_next) {
Kent Overstreet94f8f3b2019-03-11 23:31:18 -07002211 if (!vma->vm_file)
2212 continue;
2213 if (++pos <= ctx->pos)
2214 continue;
Al Virof0c3b502013-05-16 12:07:31 -04002215
Kent Overstreet94f8f3b2019-03-11 23:31:18 -07002216 p = genradix_ptr_alloc(&fa, nr_files++, GFP_KERNEL);
2217 if (!p) {
Al Virof0c3b502013-05-16 12:07:31 -04002218 ret = -ENOMEM;
Al Virof0c3b502013-05-16 12:07:31 -04002219 up_read(&mm->mmap_sem);
2220 mmput(mm);
2221 goto out_put_task;
2222 }
Al Virof0c3b502013-05-16 12:07:31 -04002223
Kent Overstreet94f8f3b2019-03-11 23:31:18 -07002224 p->start = vma->vm_start;
2225 p->end = vma->vm_end;
2226 p->mode = vma->vm_file->f_mode;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002227 }
Al Virof0c3b502013-05-16 12:07:31 -04002228 up_read(&mm->mmap_sem);
Alexey Dobriyanfe079a52018-04-10 16:32:05 -07002229 mmput(mm);
Al Virof0c3b502013-05-16 12:07:31 -04002230
2231 for (i = 0; i < nr_files; i++) {
Alexey Dobriyan20d28cd2018-02-06 15:37:06 -08002232 char buf[4 * sizeof(long) + 2]; /* max: %lx-%lx\0 */
2233 unsigned int len;
2234
Kent Overstreet94f8f3b2019-03-11 23:31:18 -07002235 p = genradix_ptr(&fa, i);
Alexey Dobriyan20d28cd2018-02-06 15:37:06 -08002236 len = snprintf(buf, sizeof(buf), "%lx-%lx", p->start, p->end);
Al Virof0c3b502013-05-16 12:07:31 -04002237 if (!proc_fill_cache(file, ctx,
Alexey Dobriyan20d28cd2018-02-06 15:37:06 -08002238 buf, len,
Al Virof0c3b502013-05-16 12:07:31 -04002239 proc_map_files_instantiate,
2240 task,
2241 (void *)(unsigned long)p->mode))
2242 break;
2243 ctx->pos++;
2244 }
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002245
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002246out_put_task:
2247 put_task_struct(task);
2248out:
Kent Overstreet94f8f3b2019-03-11 23:31:18 -07002249 genradix_free(&fa);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002250 return ret;
2251}
2252
2253static const struct file_operations proc_map_files_operations = {
2254 .read = generic_read_dir,
Al Virof50752e2016-04-20 17:13:54 -04002255 .iterate_shared = proc_map_files_readdir,
2256 .llseek = generic_file_llseek,
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002257};
2258
Nicolas Pitreb18b6a92017-01-21 00:09:08 -05002259#if defined(CONFIG_CHECKPOINT_RESTORE) && defined(CONFIG_POSIX_TIMERS)
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04002260struct timers_private {
2261 struct pid *pid;
2262 struct task_struct *task;
2263 struct sighand_struct *sighand;
Pavel Emelyanov57b80152013-03-11 13:13:08 +04002264 struct pid_namespace *ns;
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04002265 unsigned long flags;
2266};
2267
2268static void *timers_start(struct seq_file *m, loff_t *pos)
2269{
2270 struct timers_private *tp = m->private;
2271
2272 tp->task = get_pid_task(tp->pid, PIDTYPE_PID);
2273 if (!tp->task)
2274 return ERR_PTR(-ESRCH);
2275
2276 tp->sighand = lock_task_sighand(tp->task, &tp->flags);
2277 if (!tp->sighand)
2278 return ERR_PTR(-ESRCH);
2279
2280 return seq_list_start(&tp->task->signal->posix_timers, *pos);
2281}
2282
2283static void *timers_next(struct seq_file *m, void *v, loff_t *pos)
2284{
2285 struct timers_private *tp = m->private;
2286 return seq_list_next(v, &tp->task->signal->posix_timers, pos);
2287}
2288
2289static void timers_stop(struct seq_file *m, void *v)
2290{
2291 struct timers_private *tp = m->private;
2292
2293 if (tp->sighand) {
2294 unlock_task_sighand(tp->task, &tp->flags);
2295 tp->sighand = NULL;
2296 }
2297
2298 if (tp->task) {
2299 put_task_struct(tp->task);
2300 tp->task = NULL;
2301 }
2302}
2303
2304static int show_timer(struct seq_file *m, void *v)
2305{
2306 struct k_itimer *timer;
Pavel Emelyanov57b80152013-03-11 13:13:08 +04002307 struct timers_private *tp = m->private;
2308 int notify;
Alexey Dobriyancedbcca2014-08-08 14:21:33 -07002309 static const char * const nstr[] = {
Pavel Emelyanov57b80152013-03-11 13:13:08 +04002310 [SIGEV_SIGNAL] = "signal",
2311 [SIGEV_NONE] = "none",
2312 [SIGEV_THREAD] = "thread",
2313 };
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04002314
2315 timer = list_entry((struct list_head *)v, struct k_itimer, list);
Pavel Emelyanov57b80152013-03-11 13:13:08 +04002316 notify = timer->it_sigev_notify;
2317
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04002318 seq_printf(m, "ID: %d\n", timer->it_id);
Linus Torvaldsba3edf1f2017-12-06 18:23:27 -08002319 seq_printf(m, "signal: %d/%px\n",
Joe Perches25ce3192015-04-15 16:18:17 -07002320 timer->sigq->info.si_signo,
2321 timer->sigq->info.si_value.sival_ptr);
Pavel Emelyanov57b80152013-03-11 13:13:08 +04002322 seq_printf(m, "notify: %s/%s.%d\n",
Joe Perches25ce3192015-04-15 16:18:17 -07002323 nstr[notify & ~SIGEV_THREAD_ID],
2324 (notify & SIGEV_THREAD_ID) ? "tid" : "pid",
2325 pid_nr_ns(timer->it_pid, tp->ns));
Pavel Tikhomirov15ef0292013-05-17 02:12:03 +04002326 seq_printf(m, "ClockID: %d\n", timer->it_clock);
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04002327
2328 return 0;
2329}
2330
2331static const struct seq_operations proc_timers_seq_ops = {
2332 .start = timers_start,
2333 .next = timers_next,
2334 .stop = timers_stop,
2335 .show = show_timer,
2336};
2337
2338static int proc_timers_open(struct inode *inode, struct file *file)
2339{
2340 struct timers_private *tp;
2341
2342 tp = __seq_open_private(file, &proc_timers_seq_ops,
2343 sizeof(struct timers_private));
2344 if (!tp)
2345 return -ENOMEM;
2346
2347 tp->pid = proc_pid(inode);
Christoph Hellwig76f668b2018-05-16 07:19:01 +02002348 tp->ns = proc_pid_ns(inode);
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04002349 return 0;
2350}
2351
2352static const struct file_operations proc_timers_operations = {
2353 .open = proc_timers_open,
2354 .read = seq_read,
2355 .llseek = seq_lseek,
2356 .release = seq_release_private,
2357};
Eric Engestromb5946be2016-03-17 14:20:57 -07002358#endif
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002359
John Stultz5de23d42016-03-17 14:20:54 -07002360static ssize_t timerslack_ns_write(struct file *file, const char __user *buf,
2361 size_t count, loff_t *offset)
2362{
2363 struct inode *inode = file_inode(file);
2364 struct task_struct *p;
2365 u64 slack_ns;
2366 int err;
2367
2368 err = kstrtoull_from_user(buf, count, 10, &slack_ns);
2369 if (err < 0)
2370 return err;
2371
2372 p = get_proc_task(inode);
2373 if (!p)
2374 return -ESRCH;
2375
John Stultz4b2bd5f2016-10-07 17:02:33 -07002376 if (p != current) {
Benjamin Gordon8da0b4f2019-01-03 15:25:56 -08002377 rcu_read_lock();
2378 if (!ns_capable(__task_cred(p)->user_ns, CAP_SYS_NICE)) {
2379 rcu_read_unlock();
John Stultz4b2bd5f2016-10-07 17:02:33 -07002380 count = -EPERM;
2381 goto out;
2382 }
Benjamin Gordon8da0b4f2019-01-03 15:25:56 -08002383 rcu_read_unlock();
John Stultz5de23d42016-03-17 14:20:54 -07002384
John Stultz4b2bd5f2016-10-07 17:02:33 -07002385 err = security_task_setscheduler(p);
2386 if (err) {
2387 count = err;
2388 goto out;
2389 }
John Stultz904763e2016-10-07 17:02:29 -07002390 }
2391
John Stultz7abbaf92016-10-07 17:02:26 -07002392 task_lock(p);
2393 if (slack_ns == 0)
2394 p->timer_slack_ns = p->default_timer_slack_ns;
2395 else
2396 p->timer_slack_ns = slack_ns;
2397 task_unlock(p);
2398
2399out:
John Stultz5de23d42016-03-17 14:20:54 -07002400 put_task_struct(p);
2401
2402 return count;
2403}
2404
2405static int timerslack_ns_show(struct seq_file *m, void *v)
2406{
2407 struct inode *inode = m->private;
2408 struct task_struct *p;
John Stultz7abbaf92016-10-07 17:02:26 -07002409 int err = 0;
John Stultz5de23d42016-03-17 14:20:54 -07002410
2411 p = get_proc_task(inode);
2412 if (!p)
2413 return -ESRCH;
2414
John Stultz4b2bd5f2016-10-07 17:02:33 -07002415 if (p != current) {
Benjamin Gordon8da0b4f2019-01-03 15:25:56 -08002416 rcu_read_lock();
2417 if (!ns_capable(__task_cred(p)->user_ns, CAP_SYS_NICE)) {
2418 rcu_read_unlock();
John Stultz4b2bd5f2016-10-07 17:02:33 -07002419 err = -EPERM;
2420 goto out;
2421 }
Benjamin Gordon8da0b4f2019-01-03 15:25:56 -08002422 rcu_read_unlock();
2423
John Stultz4b2bd5f2016-10-07 17:02:33 -07002424 err = security_task_getscheduler(p);
2425 if (err)
2426 goto out;
2427 }
John Stultz904763e2016-10-07 17:02:29 -07002428
John Stultz7abbaf92016-10-07 17:02:26 -07002429 task_lock(p);
2430 seq_printf(m, "%llu\n", p->timer_slack_ns);
2431 task_unlock(p);
2432
2433out:
John Stultz5de23d42016-03-17 14:20:54 -07002434 put_task_struct(p);
2435
2436 return err;
2437}
2438
2439static int timerslack_ns_open(struct inode *inode, struct file *filp)
2440{
2441 return single_open(filp, timerslack_ns_show, inode);
2442}
2443
2444static const struct file_operations proc_pid_set_timerslack_ns_operations = {
2445 .open = timerslack_ns_open,
2446 .read = seq_read,
2447 .write = timerslack_ns_write,
2448 .llseek = seq_lseek,
2449 .release = single_release,
2450};
2451
Al Viro0168b9e2018-05-03 09:21:05 -04002452static struct dentry *proc_pident_instantiate(struct dentry *dentry,
2453 struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002454{
Eric Dumazetc5141e62007-05-08 00:26:15 -07002455 const struct pid_entry *p = ptr;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002456 struct inode *inode;
2457 struct proc_inode *ei;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002458
Al Viro0168b9e2018-05-03 09:21:05 -04002459 inode = proc_pid_make_inode(dentry->d_sb, task, p->mode);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002460 if (!inode)
Al Viro0168b9e2018-05-03 09:21:05 -04002461 return ERR_PTR(-ENOENT);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002462
2463 ei = PROC_I(inode);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002464 if (S_ISDIR(inode->i_mode))
Miklos Szeredibfe86842011-10-28 14:13:29 +02002465 set_nlink(inode, 2); /* Use getattr to fix if necessary */
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002466 if (p->iop)
2467 inode->i_op = p->iop;
2468 if (p->fop)
2469 inode->i_fop = p->fop;
2470 ei->op = p->op;
Al Viro1bbc5512018-05-02 21:26:16 -04002471 pid_update_inode(task, inode);
Nick Pigginfb045ad2011-01-07 17:49:55 +11002472 d_set_d_op(dentry, &pid_dentry_operations);
Al Viro0168b9e2018-05-03 09:21:05 -04002473 return d_splice_alias(inode, dentry);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002474}
2475
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476static struct dentry *proc_pident_lookup(struct inode *dir,
2477 struct dentry *dentry,
Alexey Dobriyand5a572a2019-03-11 23:28:51 -07002478 const struct pid_entry *p,
2479 const struct pid_entry *end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480{
Eric W. Biederman99f89552006-06-26 00:25:55 -07002481 struct task_struct *task = get_proc_task(dir);
Al Viro0168b9e2018-05-03 09:21:05 -04002482 struct dentry *res = ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483
Eric W. Biederman99f89552006-06-26 00:25:55 -07002484 if (!task)
2485 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486
Eric W. Biederman20cdc892006-10-02 02:17:07 -07002487 /*
2488 * Yes, it does not scale. And it should not. Don't add
2489 * new entries into /proc/<tgid>/ without very good reasons.
2490 */
Alexey Dobriyand5a572a2019-03-11 23:28:51 -07002491 for (; p < end; p++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 if (p->len != dentry->d_name.len)
2493 continue;
Alexey Dobriyan26b95132018-06-14 15:27:17 -07002494 if (!memcmp(dentry->d_name.name, p->name, p->len)) {
2495 res = proc_pident_instantiate(dentry, task, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 break;
Alexey Dobriyan26b95132018-06-14 15:27:17 -07002497 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 }
Eric W. Biederman99f89552006-06-26 00:25:55 -07002499 put_task_struct(task);
2500out_no_task:
Al Viro0168b9e2018-05-03 09:21:05 -04002501 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502}
2503
Al Virof0c3b502013-05-16 12:07:31 -04002504static int proc_pident_readdir(struct file *file, struct dir_context *ctx,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002505 const struct pid_entry *ents, unsigned int nents)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002506{
Al Virof0c3b502013-05-16 12:07:31 -04002507 struct task_struct *task = get_proc_task(file_inode(file));
2508 const struct pid_entry *p;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002509
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002510 if (!task)
Al Virof0c3b502013-05-16 12:07:31 -04002511 return -ENOENT;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002512
Al Virof0c3b502013-05-16 12:07:31 -04002513 if (!dir_emit_dots(file, ctx))
2514 goto out;
2515
2516 if (ctx->pos >= nents + 2)
2517 goto out;
2518
Alexey Dobriyanbac5f5d2016-12-12 16:45:28 -08002519 for (p = ents + (ctx->pos - 2); p < ents + nents; p++) {
Al Virof0c3b502013-05-16 12:07:31 -04002520 if (!proc_fill_cache(file, ctx, p->name, p->len,
2521 proc_pident_instantiate, task, p))
2522 break;
2523 ctx->pos++;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002524 }
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002525out:
Eric W. Biederman61a28782006-10-02 02:18:49 -07002526 put_task_struct(task);
Al Virof0c3b502013-05-16 12:07:31 -04002527 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528}
2529
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530#ifdef CONFIG_SECURITY
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002531static ssize_t proc_pid_attr_read(struct file * file, char __user * buf,
2532 size_t count, loff_t *ppos)
2533{
Al Viro496ad9a2013-01-23 17:07:38 -05002534 struct inode * inode = file_inode(file);
Al Viro04ff9702007-03-12 16:17:58 +00002535 char *p = NULL;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002536 ssize_t length;
2537 struct task_struct *task = get_proc_task(inode);
2538
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002539 if (!task)
Al Viro04ff9702007-03-12 16:17:58 +00002540 return -ESRCH;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002541
Casey Schaufler6d9c9392018-09-21 17:16:59 -07002542 length = security_getprocattr(task, PROC_I(inode)->op.lsm,
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002543 (char*)file->f_path.dentry->d_name.name,
Al Viro04ff9702007-03-12 16:17:58 +00002544 &p);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002545 put_task_struct(task);
Al Viro04ff9702007-03-12 16:17:58 +00002546 if (length > 0)
2547 length = simple_read_from_buffer(buf, count, ppos, p, length);
2548 kfree(p);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002549 return length;
2550}
2551
2552static ssize_t proc_pid_attr_write(struct file * file, const char __user * buf,
2553 size_t count, loff_t *ppos)
2554{
Al Viro496ad9a2013-01-23 17:07:38 -05002555 struct inode * inode = file_inode(file);
Alexey Dobriyan41089b62018-08-21 21:54:30 -07002556 struct task_struct *task;
Al Virobb646cd2015-12-24 00:16:30 -05002557 void *page;
Alexey Dobriyan41089b62018-08-21 21:54:30 -07002558 int rv;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002559
Alexey Dobriyan41089b62018-08-21 21:54:30 -07002560 rcu_read_lock();
2561 task = pid_task(proc_pid(inode), PIDTYPE_PID);
2562 if (!task) {
2563 rcu_read_unlock();
2564 return -ESRCH;
2565 }
Stephen Smalleyb21507e2017-01-09 10:07:31 -05002566 /* A task may only write its own attributes. */
Alexey Dobriyan41089b62018-08-21 21:54:30 -07002567 if (current != task) {
2568 rcu_read_unlock();
2569 return -EACCES;
2570 }
Paul Moore35a196b2019-04-19 14:55:12 -04002571 /* Prevent changes to overridden credentials. */
2572 if (current_cred() != current_real_cred()) {
2573 rcu_read_unlock();
2574 return -EBUSY;
2575 }
Alexey Dobriyan41089b62018-08-21 21:54:30 -07002576 rcu_read_unlock();
Stephen Smalleyb21507e2017-01-09 10:07:31 -05002577
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002578 if (count > PAGE_SIZE)
2579 count = PAGE_SIZE;
2580
2581 /* No partial writes. */
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002582 if (*ppos != 0)
Alexey Dobriyan41089b62018-08-21 21:54:30 -07002583 return -EINVAL;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002584
Al Virobb646cd2015-12-24 00:16:30 -05002585 page = memdup_user(buf, count);
2586 if (IS_ERR(page)) {
Alexey Dobriyan41089b62018-08-21 21:54:30 -07002587 rv = PTR_ERR(page);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002588 goto out;
Al Virobb646cd2015-12-24 00:16:30 -05002589 }
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002590
David Howells107db7c2009-05-08 13:55:27 +01002591 /* Guard against adverse ptrace interaction */
Alexey Dobriyan41089b62018-08-21 21:54:30 -07002592 rv = mutex_lock_interruptible(&current->signal->cred_guard_mutex);
2593 if (rv < 0)
David Howells107db7c2009-05-08 13:55:27 +01002594 goto out_free;
2595
Casey Schaufler6d9c9392018-09-21 17:16:59 -07002596 rv = security_setprocattr(PROC_I(inode)->op.lsm,
2597 file->f_path.dentry->d_name.name, page,
2598 count);
Stephen Smalleyb21507e2017-01-09 10:07:31 -05002599 mutex_unlock(&current->signal->cred_guard_mutex);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002600out_free:
Al Virobb646cd2015-12-24 00:16:30 -05002601 kfree(page);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002602out:
Alexey Dobriyan41089b62018-08-21 21:54:30 -07002603 return rv;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002604}
2605
Arjan van de Ven00977a52007-02-12 00:55:34 -08002606static const struct file_operations proc_pid_attr_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002607 .read = proc_pid_attr_read,
2608 .write = proc_pid_attr_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01002609 .llseek = generic_file_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002610};
2611
Casey Schaufler6d9c9392018-09-21 17:16:59 -07002612#define LSM_DIR_OPS(LSM) \
2613static int proc_##LSM##_attr_dir_iterate(struct file *filp, \
2614 struct dir_context *ctx) \
2615{ \
2616 return proc_pident_readdir(filp, ctx, \
2617 LSM##_attr_dir_stuff, \
2618 ARRAY_SIZE(LSM##_attr_dir_stuff)); \
2619} \
2620\
2621static const struct file_operations proc_##LSM##_attr_dir_ops = { \
2622 .read = generic_read_dir, \
2623 .iterate = proc_##LSM##_attr_dir_iterate, \
2624 .llseek = default_llseek, \
2625}; \
2626\
2627static struct dentry *proc_##LSM##_attr_dir_lookup(struct inode *dir, \
2628 struct dentry *dentry, unsigned int flags) \
2629{ \
2630 return proc_pident_lookup(dir, dentry, \
2631 LSM##_attr_dir_stuff, \
Alexey Dobriyand5a572a2019-03-11 23:28:51 -07002632 LSM##_attr_dir_stuff + ARRAY_SIZE(LSM##_attr_dir_stuff)); \
Casey Schaufler6d9c9392018-09-21 17:16:59 -07002633} \
2634\
2635static const struct inode_operations proc_##LSM##_attr_dir_inode_ops = { \
2636 .lookup = proc_##LSM##_attr_dir_lookup, \
2637 .getattr = pid_getattr, \
2638 .setattr = proc_setattr, \
2639}
2640
2641#ifdef CONFIG_SECURITY_SMACK
2642static const struct pid_entry smack_attr_dir_stuff[] = {
2643 ATTR("smack", "current", 0666),
2644};
2645LSM_DIR_OPS(smack);
2646#endif
2647
Eric Dumazetc5141e62007-05-08 00:26:15 -07002648static const struct pid_entry attr_dir_stuff[] = {
Casey Schaufler6d9c9392018-09-21 17:16:59 -07002649 ATTR(NULL, "current", 0666),
2650 ATTR(NULL, "prev", 0444),
2651 ATTR(NULL, "exec", 0666),
2652 ATTR(NULL, "fscreate", 0666),
2653 ATTR(NULL, "keycreate", 0666),
2654 ATTR(NULL, "sockcreate", 0666),
2655#ifdef CONFIG_SECURITY_SMACK
2656 DIR("smack", 0555,
2657 proc_smack_attr_dir_inode_ops, proc_smack_attr_dir_ops),
2658#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002659};
2660
Al Virof0c3b502013-05-16 12:07:31 -04002661static int proc_attr_dir_readdir(struct file *file, struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662{
Al Virof0c3b502013-05-16 12:07:31 -04002663 return proc_pident_readdir(file, ctx,
2664 attr_dir_stuff, ARRAY_SIZE(attr_dir_stuff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665}
2666
Arjan van de Ven00977a52007-02-12 00:55:34 -08002667static const struct file_operations proc_attr_dir_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 .read = generic_read_dir,
Al Virof50752e2016-04-20 17:13:54 -04002669 .iterate_shared = proc_attr_dir_readdir,
2670 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671};
2672
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002673static struct dentry *proc_attr_dir_lookup(struct inode *dir,
Al Viro00cd8dd2012-06-10 17:13:09 -04002674 struct dentry *dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675{
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002676 return proc_pident_lookup(dir, dentry,
Alexey Dobriyand5a572a2019-03-11 23:28:51 -07002677 attr_dir_stuff,
2678 attr_dir_stuff + ARRAY_SIZE(attr_dir_stuff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679}
2680
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002681static const struct inode_operations proc_attr_dir_inode_operations = {
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002682 .lookup = proc_attr_dir_lookup,
Eric W. Biederman99f89552006-06-26 00:25:55 -07002683 .getattr = pid_getattr,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07002684 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685};
2686
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687#endif
2688
Christoph Hellwig698ba7b2009-12-15 16:47:37 -08002689#ifdef CONFIG_ELF_CORE
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002690static ssize_t proc_coredump_filter_read(struct file *file, char __user *buf,
2691 size_t count, loff_t *ppos)
2692{
Al Viro496ad9a2013-01-23 17:07:38 -05002693 struct task_struct *task = get_proc_task(file_inode(file));
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002694 struct mm_struct *mm;
2695 char buffer[PROC_NUMBUF];
2696 size_t len;
2697 int ret;
2698
2699 if (!task)
2700 return -ESRCH;
2701
2702 ret = 0;
2703 mm = get_task_mm(task);
2704 if (mm) {
2705 len = snprintf(buffer, sizeof(buffer), "%08lx\n",
2706 ((mm->flags & MMF_DUMP_FILTER_MASK) >>
2707 MMF_DUMP_FILTER_SHIFT));
2708 mmput(mm);
2709 ret = simple_read_from_buffer(buf, count, ppos, buffer, len);
2710 }
2711
2712 put_task_struct(task);
2713
2714 return ret;
2715}
2716
2717static ssize_t proc_coredump_filter_write(struct file *file,
2718 const char __user *buf,
2719 size_t count,
2720 loff_t *ppos)
2721{
2722 struct task_struct *task;
2723 struct mm_struct *mm;
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002724 unsigned int val;
2725 int ret;
2726 int i;
2727 unsigned long mask;
2728
Alexey Dobriyan774636e2015-09-09 15:36:59 -07002729 ret = kstrtouint_from_user(buf, count, 0, &val);
2730 if (ret < 0)
2731 return ret;
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002732
2733 ret = -ESRCH;
Al Viro496ad9a2013-01-23 17:07:38 -05002734 task = get_proc_task(file_inode(file));
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002735 if (!task)
2736 goto out_no_task;
2737
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002738 mm = get_task_mm(task);
2739 if (!mm)
2740 goto out_no_mm;
Colin Ian King41a0c2492015-12-18 14:22:01 -08002741 ret = 0;
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002742
2743 for (i = 0, mask = 1; i < MMF_DUMP_FILTER_BITS; i++, mask <<= 1) {
2744 if (val & mask)
2745 set_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags);
2746 else
2747 clear_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags);
2748 }
2749
2750 mmput(mm);
2751 out_no_mm:
2752 put_task_struct(task);
2753 out_no_task:
Alexey Dobriyan774636e2015-09-09 15:36:59 -07002754 if (ret < 0)
2755 return ret;
2756 return count;
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002757}
2758
2759static const struct file_operations proc_coredump_filter_operations = {
2760 .read = proc_coredump_filter_read,
2761 .write = proc_coredump_filter_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01002762 .llseek = generic_file_llseek,
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002763};
2764#endif
2765
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002766#ifdef CONFIG_TASK_IO_ACCOUNTING
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07002767static int do_io_accounting(struct task_struct *task, struct seq_file *m, int whole)
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002768{
Andrea Righi940389b2008-07-28 00:48:12 +02002769 struct task_io_accounting acct = task->ioac;
Andrea Righi59954772008-07-27 17:29:15 +02002770 unsigned long flags;
Vasiliy Kulikov293eb1e2011-07-26 16:08:38 -07002771 int result;
Andrea Righi297c5d92008-07-25 01:48:49 -07002772
Vasiliy Kulikov293eb1e2011-07-26 16:08:38 -07002773 result = mutex_lock_killable(&task->signal->cred_guard_mutex);
2774 if (result)
2775 return result;
2776
Jann Horncaaee622016-01-20 15:00:04 -08002777 if (!ptrace_may_access(task, PTRACE_MODE_READ_FSCREDS)) {
Vasiliy Kulikov293eb1e2011-07-26 16:08:38 -07002778 result = -EACCES;
2779 goto out_unlock;
2780 }
Vasiliy Kulikov1d1221f2011-06-24 16:08:38 +04002781
Andrea Righi59954772008-07-27 17:29:15 +02002782 if (whole && lock_task_sighand(task, &flags)) {
2783 struct task_struct *t = task;
Andrea Righib2d002d2008-07-26 15:22:27 -07002784
Andrea Righi59954772008-07-27 17:29:15 +02002785 task_io_accounting_add(&acct, &task->signal->ioac);
2786 while_each_thread(task, t)
2787 task_io_accounting_add(&acct, &t->ioac);
Andrea Righi297c5d92008-07-25 01:48:49 -07002788
Andrea Righi59954772008-07-27 17:29:15 +02002789 unlock_task_sighand(task, &flags);
Andrea Righi297c5d92008-07-25 01:48:49 -07002790 }
Joe Perches25ce3192015-04-15 16:18:17 -07002791 seq_printf(m,
2792 "rchar: %llu\n"
2793 "wchar: %llu\n"
2794 "syscr: %llu\n"
2795 "syscw: %llu\n"
2796 "read_bytes: %llu\n"
2797 "write_bytes: %llu\n"
2798 "cancelled_write_bytes: %llu\n",
2799 (unsigned long long)acct.rchar,
2800 (unsigned long long)acct.wchar,
2801 (unsigned long long)acct.syscr,
2802 (unsigned long long)acct.syscw,
2803 (unsigned long long)acct.read_bytes,
2804 (unsigned long long)acct.write_bytes,
2805 (unsigned long long)acct.cancelled_write_bytes);
2806 result = 0;
2807
Vasiliy Kulikov293eb1e2011-07-26 16:08:38 -07002808out_unlock:
2809 mutex_unlock(&task->signal->cred_guard_mutex);
2810 return result;
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002811}
Andrea Righi297c5d92008-07-25 01:48:49 -07002812
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07002813static int proc_tid_io_accounting(struct seq_file *m, struct pid_namespace *ns,
2814 struct pid *pid, struct task_struct *task)
Andrea Righi297c5d92008-07-25 01:48:49 -07002815{
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07002816 return do_io_accounting(task, m, 0);
Andrea Righi297c5d92008-07-25 01:48:49 -07002817}
2818
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07002819static int proc_tgid_io_accounting(struct seq_file *m, struct pid_namespace *ns,
2820 struct pid *pid, struct task_struct *task)
Andrea Righi297c5d92008-07-25 01:48:49 -07002821{
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07002822 return do_io_accounting(task, m, 1);
Andrea Righi297c5d92008-07-25 01:48:49 -07002823}
2824#endif /* CONFIG_TASK_IO_ACCOUNTING */
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002825
Eric W. Biederman22d917d2011-11-17 00:11:58 -08002826#ifdef CONFIG_USER_NS
2827static int proc_id_map_open(struct inode *inode, struct file *file,
Fabian Frederickccf94f12014-08-08 14:21:22 -07002828 const struct seq_operations *seq_ops)
Eric W. Biederman22d917d2011-11-17 00:11:58 -08002829{
2830 struct user_namespace *ns = NULL;
2831 struct task_struct *task;
2832 struct seq_file *seq;
2833 int ret = -EINVAL;
2834
2835 task = get_proc_task(inode);
2836 if (task) {
2837 rcu_read_lock();
2838 ns = get_user_ns(task_cred_xxx(task, user_ns));
2839 rcu_read_unlock();
2840 put_task_struct(task);
2841 }
2842 if (!ns)
2843 goto err;
2844
2845 ret = seq_open(file, seq_ops);
2846 if (ret)
2847 goto err_put_ns;
2848
2849 seq = file->private_data;
2850 seq->private = ns;
2851
2852 return 0;
2853err_put_ns:
2854 put_user_ns(ns);
2855err:
2856 return ret;
2857}
2858
2859static int proc_id_map_release(struct inode *inode, struct file *file)
2860{
2861 struct seq_file *seq = file->private_data;
2862 struct user_namespace *ns = seq->private;
2863 put_user_ns(ns);
2864 return seq_release(inode, file);
2865}
2866
2867static int proc_uid_map_open(struct inode *inode, struct file *file)
2868{
2869 return proc_id_map_open(inode, file, &proc_uid_seq_operations);
2870}
2871
2872static int proc_gid_map_open(struct inode *inode, struct file *file)
2873{
2874 return proc_id_map_open(inode, file, &proc_gid_seq_operations);
2875}
2876
Eric W. Biedermanf76d2072012-08-30 01:24:05 -07002877static int proc_projid_map_open(struct inode *inode, struct file *file)
2878{
2879 return proc_id_map_open(inode, file, &proc_projid_seq_operations);
2880}
2881
Eric W. Biederman22d917d2011-11-17 00:11:58 -08002882static const struct file_operations proc_uid_map_operations = {
2883 .open = proc_uid_map_open,
2884 .write = proc_uid_map_write,
2885 .read = seq_read,
2886 .llseek = seq_lseek,
2887 .release = proc_id_map_release,
2888};
2889
2890static const struct file_operations proc_gid_map_operations = {
2891 .open = proc_gid_map_open,
2892 .write = proc_gid_map_write,
2893 .read = seq_read,
2894 .llseek = seq_lseek,
2895 .release = proc_id_map_release,
2896};
Eric W. Biedermanf76d2072012-08-30 01:24:05 -07002897
2898static const struct file_operations proc_projid_map_operations = {
2899 .open = proc_projid_map_open,
2900 .write = proc_projid_map_write,
2901 .read = seq_read,
2902 .llseek = seq_lseek,
2903 .release = proc_id_map_release,
2904};
Eric W. Biederman9cc46512014-12-02 12:27:26 -06002905
2906static int proc_setgroups_open(struct inode *inode, struct file *file)
2907{
2908 struct user_namespace *ns = NULL;
2909 struct task_struct *task;
2910 int ret;
2911
2912 ret = -ESRCH;
2913 task = get_proc_task(inode);
2914 if (task) {
2915 rcu_read_lock();
2916 ns = get_user_ns(task_cred_xxx(task, user_ns));
2917 rcu_read_unlock();
2918 put_task_struct(task);
2919 }
2920 if (!ns)
2921 goto err;
2922
2923 if (file->f_mode & FMODE_WRITE) {
2924 ret = -EACCES;
2925 if (!ns_capable(ns, CAP_SYS_ADMIN))
2926 goto err_put_ns;
2927 }
2928
2929 ret = single_open(file, &proc_setgroups_show, ns);
2930 if (ret)
2931 goto err_put_ns;
2932
2933 return 0;
2934err_put_ns:
2935 put_user_ns(ns);
2936err:
2937 return ret;
2938}
2939
2940static int proc_setgroups_release(struct inode *inode, struct file *file)
2941{
2942 struct seq_file *seq = file->private_data;
2943 struct user_namespace *ns = seq->private;
2944 int ret = single_release(inode, file);
2945 put_user_ns(ns);
2946 return ret;
2947}
2948
2949static const struct file_operations proc_setgroups_operations = {
2950 .open = proc_setgroups_open,
2951 .write = proc_setgroups_write,
2952 .read = seq_read,
2953 .llseek = seq_lseek,
2954 .release = proc_setgroups_release,
2955};
Eric W. Biederman22d917d2011-11-17 00:11:58 -08002956#endif /* CONFIG_USER_NS */
2957
Kees Cook47830722008-10-06 03:11:58 +04002958static int proc_pid_personality(struct seq_file *m, struct pid_namespace *ns,
2959 struct pid *pid, struct task_struct *task)
2960{
Al Viroa9712bc2011-03-23 15:52:50 -04002961 int err = lock_trace(task);
2962 if (!err) {
2963 seq_printf(m, "%08x\n", task->personality);
2964 unlock_trace(task);
2965 }
2966 return err;
Kees Cook47830722008-10-06 03:11:58 +04002967}
2968
Josh Poimboeuf7c23b332017-02-13 19:42:41 -06002969#ifdef CONFIG_LIVEPATCH
2970static int proc_pid_patch_state(struct seq_file *m, struct pid_namespace *ns,
2971 struct pid *pid, struct task_struct *task)
2972{
2973 seq_printf(m, "%d\n", task->patch_state);
2974 return 0;
2975}
2976#endif /* CONFIG_LIVEPATCH */
2977
Alexander Popovc8d12622018-08-17 01:17:01 +03002978#ifdef CONFIG_STACKLEAK_METRICS
2979static int proc_stack_depth(struct seq_file *m, struct pid_namespace *ns,
2980 struct pid *pid, struct task_struct *task)
2981{
2982 unsigned long prev_depth = THREAD_SIZE -
2983 (task->prev_lowest_stack & (THREAD_SIZE - 1));
2984 unsigned long depth = THREAD_SIZE -
2985 (task->lowest_stack & (THREAD_SIZE - 1));
2986
2987 seq_printf(m, "previous stack depth: %lu\nstack depth: %lu\n",
2988 prev_depth, depth);
2989 return 0;
2990}
2991#endif /* CONFIG_STACKLEAK_METRICS */
2992
Eric W. Biederman801199c2006-10-02 02:18:48 -07002993/*
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002994 * Thread groups
2995 */
Arjan van de Ven00977a52007-02-12 00:55:34 -08002996static const struct file_operations proc_task_operations;
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002997static const struct inode_operations proc_task_inode_operations;
Eric W. Biederman20cdc892006-10-02 02:17:07 -07002998
Eric Dumazetc5141e62007-05-08 00:26:15 -07002999static const struct pid_entry tgid_base_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003000 DIR("task", S_IRUGO|S_IXUGO, proc_task_inode_operations, proc_task_operations),
3001 DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations),
Pavel Emelyanov640708a2012-01-10 15:11:23 -08003002 DIR("map_files", S_IRUSR|S_IXUSR, proc_map_files_inode_operations, proc_map_files_operations),
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003003 DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations),
Eric W. Biederman6b4e3062010-03-07 16:41:34 -08003004 DIR("ns", S_IRUSR|S_IXUGO, proc_ns_dir_inode_operations, proc_ns_dir_operations),
Andrew Mortonb2211a32008-03-11 18:03:35 -07003005#ifdef CONFIG_NET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003006 DIR("net", S_IRUGO|S_IXUGO, proc_net_inode_operations, proc_net_operations),
Andrew Mortonb2211a32008-03-11 18:03:35 -07003007#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003008 REG("environ", S_IRUSR, proc_environ_operations),
Al Viroc5317162016-10-05 18:43:43 -04003009 REG("auxv", S_IRUSR, proc_auxv_operations),
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003010 ONE("status", S_IRUGO, proc_pid_status),
Djalal Harouni35a35042014-04-07 15:38:36 -07003011 ONE("personality", S_IRUSR, proc_pid_personality),
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -07003012 ONE("limits", S_IRUGO, proc_pid_limits),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02003013#ifdef CONFIG_SCHED_DEBUG
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003014 REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02003015#endif
Mike Galbraith5091faa2010-11-30 14:18:03 +01003016#ifdef CONFIG_SCHED_AUTOGROUP
3017 REG("autogroup", S_IRUGO|S_IWUSR, proc_pid_sched_autogroup_operations),
3018#endif
john stultz4614a696b2009-12-14 18:00:05 -08003019 REG("comm", S_IRUGO|S_IWUSR, proc_pid_set_comm_operations),
Roland McGrathebcb6732008-07-25 19:46:00 -07003020#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
Alexey Dobriyan09d93bd2014-08-08 14:21:39 -07003021 ONE("syscall", S_IRUSR, proc_pid_syscall),
Roland McGrathebcb6732008-07-25 19:46:00 -07003022#endif
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -07003023 REG("cmdline", S_IRUGO, proc_pid_cmdline_ops),
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003024 ONE("stat", S_IRUGO, proc_tgid_stat),
3025 ONE("statm", S_IRUGO, proc_pid_statm),
Siddhesh Poyarekarb7643752012-03-21 16:34:04 -07003026 REG("maps", S_IRUGO, proc_pid_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003027#ifdef CONFIG_NUMA
Siddhesh Poyarekarb7643752012-03-21 16:34:04 -07003028 REG("numa_maps", S_IRUGO, proc_pid_numa_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003029#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003030 REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations),
3031 LNK("cwd", proc_cwd_link),
3032 LNK("root", proc_root_link),
3033 LNK("exe", proc_exe_link),
3034 REG("mounts", S_IRUGO, proc_mounts_operations),
3035 REG("mountinfo", S_IRUGO, proc_mountinfo_operations),
3036 REG("mountstats", S_IRUSR, proc_mountstats_operations),
Matt Mackall1e883282008-02-04 22:29:07 -08003037#ifdef CONFIG_PROC_PAGE_MONITOR
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003038 REG("clear_refs", S_IWUSR, proc_clear_refs_operations),
Siddhesh Poyarekarb7643752012-03-21 16:34:04 -07003039 REG("smaps", S_IRUGO, proc_pid_smaps_operations),
Daniel Colascione493b0e92017-09-06 16:25:08 -07003040 REG("smaps_rollup", S_IRUGO, proc_pid_smaps_rollup_operations),
Djalal Harouni32ed74a2014-04-07 15:38:38 -07003041 REG("pagemap", S_IRUSR, proc_pagemap_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003042#endif
3043#ifdef CONFIG_SECURITY
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003044 DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003045#endif
3046#ifdef CONFIG_KALLSYMS
Alexey Dobriyanedfcd602014-08-08 14:21:44 -07003047 ONE("wchan", S_IRUGO, proc_pid_wchan),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003048#endif
Ken Chen2ec220e2008-11-10 11:26:08 +03003049#ifdef CONFIG_STACKTRACE
Djalal Harouni35a35042014-04-07 15:38:36 -07003050 ONE("stack", S_IRUSR, proc_pid_stack),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003051#endif
Naveen N. Rao5968cec2015-06-30 14:36:03 +05303052#ifdef CONFIG_SCHED_INFO
Alexey Dobriyanf6e826c2014-08-08 14:21:46 -07003053 ONE("schedstat", S_IRUGO, proc_pid_schedstat),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003054#endif
Arjan van de Ven97455122008-01-25 21:08:34 +01003055#ifdef CONFIG_LATENCYTOP
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003056 REG("latency", S_IRUGO, proc_lstats_operations),
Arjan van de Ven97455122008-01-25 21:08:34 +01003057#endif
Paul Menage8793d852007-10-18 23:39:39 -07003058#ifdef CONFIG_PROC_PID_CPUSET
Zefan Li52de4772014-09-18 16:03:36 +08003059 ONE("cpuset", S_IRUGO, proc_cpuset_show),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003060#endif
Paul Menagea4243162007-10-18 23:39:35 -07003061#ifdef CONFIG_CGROUPS
Zefan Li006f4ac2014-09-18 16:03:15 +08003062 ONE("cgroup", S_IRUGO, proc_cgroup_show),
Paul Menagea4243162007-10-18 23:39:35 -07003063#endif
Alexey Dobriyan6ba51e32014-08-08 14:21:48 -07003064 ONE("oom_score", S_IRUGO, proc_oom_score),
David Rientjesfa0cbbf2012-11-12 17:53:04 -08003065 REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adj_operations),
David Rientjesa63d83f2010-08-09 17:19:46 -07003066 REG("oom_score_adj", S_IRUGO|S_IWUSR, proc_oom_score_adj_operations),
Richard Guy Briggs4b7d2482019-01-22 17:06:39 -05003067#ifdef CONFIG_AUDIT
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003068 REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations),
3069 REG("sessionid", S_IRUGO, proc_sessionid_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003070#endif
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08003071#ifdef CONFIG_FAULT_INJECTION
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003072 REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations),
Akinobu Mita168c42b2017-07-14 14:50:00 -07003073 REG("fail-nth", 0644, proc_fail_nth_operations),
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08003074#endif
Christoph Hellwig698ba7b2009-12-15 16:47:37 -08003075#ifdef CONFIG_ELF_CORE
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003076 REG("coredump_filter", S_IRUGO|S_IWUSR, proc_coredump_filter_operations),
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07003077#endif
Andrew Mortonaba76fd2006-12-10 02:19:48 -08003078#ifdef CONFIG_TASK_IO_ACCOUNTING
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07003079 ONE("io", S_IRUSR, proc_tgid_io_accounting),
Andrew Mortonaba76fd2006-12-10 02:19:48 -08003080#endif
Eric W. Biederman22d917d2011-11-17 00:11:58 -08003081#ifdef CONFIG_USER_NS
3082 REG("uid_map", S_IRUGO|S_IWUSR, proc_uid_map_operations),
3083 REG("gid_map", S_IRUGO|S_IWUSR, proc_gid_map_operations),
Eric W. Biedermanf76d2072012-08-30 01:24:05 -07003084 REG("projid_map", S_IRUGO|S_IWUSR, proc_projid_map_operations),
Eric W. Biederman9cc46512014-12-02 12:27:26 -06003085 REG("setgroups", S_IRUGO|S_IWUSR, proc_setgroups_operations),
Eric W. Biederman22d917d2011-11-17 00:11:58 -08003086#endif
Nicolas Pitreb18b6a92017-01-21 00:09:08 -05003087#if defined(CONFIG_CHECKPOINT_RESTORE) && defined(CONFIG_POSIX_TIMERS)
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04003088 REG("timers", S_IRUGO, proc_timers_operations),
3089#endif
John Stultz5de23d42016-03-17 14:20:54 -07003090 REG("timerslack_ns", S_IRUGO|S_IWUGO, proc_pid_set_timerslack_ns_operations),
Josh Poimboeuf7c23b332017-02-13 19:42:41 -06003091#ifdef CONFIG_LIVEPATCH
3092 ONE("patch_state", S_IRUSR, proc_pid_patch_state),
3093#endif
Alexander Popovc8d12622018-08-17 01:17:01 +03003094#ifdef CONFIG_STACKLEAK_METRICS
3095 ONE("stack_depth", S_IRUGO, proc_stack_depth),
3096#endif
Aubrey Li68bc30b2019-06-06 09:22:34 +08003097#ifdef CONFIG_PROC_PID_ARCH_STATUS
3098 ONE("arch_status", S_IRUGO, proc_pid_arch_status),
3099#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003100};
3101
Al Virof0c3b502013-05-16 12:07:31 -04003102static int proc_tgid_base_readdir(struct file *file, struct dir_context *ctx)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003103{
Al Virof0c3b502013-05-16 12:07:31 -04003104 return proc_pident_readdir(file, ctx,
3105 tgid_base_stuff, ARRAY_SIZE(tgid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003106}
3107
Arjan van de Ven00977a52007-02-12 00:55:34 -08003108static const struct file_operations proc_tgid_base_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003109 .read = generic_read_dir,
Al Virof50752e2016-04-20 17:13:54 -04003110 .iterate_shared = proc_tgid_base_readdir,
3111 .llseek = generic_file_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003112};
3113
Christian Brauner3eb39f42018-11-19 00:51:56 +01003114struct pid *tgid_pidfd_to_pid(const struct file *file)
3115{
Christian Brauner30d158b2019-06-27 11:35:14 +02003116 if (file->f_op != &proc_tgid_base_operations)
Christian Brauner3eb39f42018-11-19 00:51:56 +01003117 return ERR_PTR(-EBADF);
3118
3119 return proc_pid(file_inode(file));
3120}
3121
Al Viro00cd8dd2012-06-10 17:13:09 -04003122static struct dentry *proc_tgid_base_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
3123{
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07003124 return proc_pident_lookup(dir, dentry,
Alexey Dobriyand5a572a2019-03-11 23:28:51 -07003125 tgid_base_stuff,
3126 tgid_base_stuff + ARRAY_SIZE(tgid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003127}
3128
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08003129static const struct inode_operations proc_tgid_base_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003130 .lookup = proc_tgid_base_lookup,
3131 .getattr = pid_getattr,
3132 .setattr = proc_setattr,
Vasiliy Kulikov04996802012-01-10 15:11:31 -08003133 .permission = proc_pid_permission,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003134};
3135
Pavel Emelyanov60347f62007-10-18 23:40:03 -07003136static void proc_flush_task_mnt(struct vfsmount *mnt, pid_t pid, pid_t tgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137{
Eric W. Biederman48e64842006-06-26 00:25:48 -07003138 struct dentry *dentry, *leader, *dir;
Alexey Dobriyane3912ac2018-02-06 15:36:51 -08003139 char buf[10 + 1];
Eric W. Biederman48e64842006-06-26 00:25:48 -07003140 struct qstr name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141
Eric W. Biederman48e64842006-06-26 00:25:48 -07003142 name.name = buf;
Alexey Dobriyane3912ac2018-02-06 15:36:51 -08003143 name.len = snprintf(buf, sizeof(buf), "%u", pid);
Al Viro4f522a22013-02-11 23:20:37 -05003144 /* no ->d_hash() rejects on procfs */
Pavel Emelyanov60347f62007-10-18 23:40:03 -07003145 dentry = d_hash_and_lookup(mnt->mnt_root, &name);
Eric W. Biederman48e64842006-06-26 00:25:48 -07003146 if (dentry) {
Eric W. Biedermanbbd51922014-02-13 10:24:23 -08003147 d_invalidate(dentry);
Eric W. Biederman48e64842006-06-26 00:25:48 -07003148 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150
Oleg Nesterovc35a7f12014-12-10 15:54:56 -08003151 if (pid == tgid)
3152 return;
3153
Eric W. Biederman48e64842006-06-26 00:25:48 -07003154 name.name = buf;
Alexey Dobriyane3912ac2018-02-06 15:36:51 -08003155 name.len = snprintf(buf, sizeof(buf), "%u", tgid);
Pavel Emelyanov60347f62007-10-18 23:40:03 -07003156 leader = d_hash_and_lookup(mnt->mnt_root, &name);
Eric W. Biederman48e64842006-06-26 00:25:48 -07003157 if (!leader)
3158 goto out;
3159
3160 name.name = "task";
3161 name.len = strlen(name.name);
3162 dir = d_hash_and_lookup(leader, &name);
3163 if (!dir)
3164 goto out_put_leader;
3165
3166 name.name = buf;
Alexey Dobriyane3912ac2018-02-06 15:36:51 -08003167 name.len = snprintf(buf, sizeof(buf), "%u", pid);
Eric W. Biederman48e64842006-06-26 00:25:48 -07003168 dentry = d_hash_and_lookup(dir, &name);
3169 if (dentry) {
Eric W. Biedermanbbd51922014-02-13 10:24:23 -08003170 d_invalidate(dentry);
Eric W. Biederman48e64842006-06-26 00:25:48 -07003171 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172 }
Eric W. Biederman48e64842006-06-26 00:25:48 -07003173
3174 dput(dir);
3175out_put_leader:
3176 dput(leader);
3177out:
3178 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179}
3180
Randy Dunlap0895e912007-10-21 21:00:10 -07003181/**
3182 * proc_flush_task - Remove dcache entries for @task from the /proc dcache.
3183 * @task: task that should be flushed.
3184 *
3185 * When flushing dentries from proc, one needs to flush them from global
Pavel Emelyanov60347f62007-10-18 23:40:03 -07003186 * proc (proc_mnt) and from all the namespaces' procs this task was seen
Randy Dunlap0895e912007-10-21 21:00:10 -07003187 * in. This call is supposed to do all of this job.
3188 *
3189 * Looks in the dcache for
3190 * /proc/@pid
3191 * /proc/@tgid/task/@pid
3192 * if either directory is present flushes it and all of it'ts children
3193 * from the dcache.
3194 *
3195 * It is safe and reasonable to cache /proc entries for a task until
3196 * that task exits. After that they just clog up the dcache with
3197 * useless entries, possibly causing useful dcache entries to be
3198 * flushed instead. This routine is proved to flush those useless
3199 * dcache entries at process exit time.
3200 *
3201 * NOTE: This routine is just an optimization so it does not guarantee
3202 * that no dcache entries will exist at process exit time it
3203 * just makes it very unlikely that any will persist.
Pavel Emelyanov60347f62007-10-18 23:40:03 -07003204 */
3205
3206void proc_flush_task(struct task_struct *task)
3207{
Eric W. Biederman9fcc2d12007-11-14 17:00:07 -08003208 int i;
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07003209 struct pid *pid, *tgid;
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07003210 struct upid *upid;
3211
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07003212 pid = task_pid(task);
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07003213 tgid = task_tgid(task);
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07003214
Eric W. Biederman9fcc2d12007-11-14 17:00:07 -08003215 for (i = 0; i <= pid->level; i++) {
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07003216 upid = &pid->numbers[i];
3217 proc_flush_task_mnt(upid->ns->proc_mnt, upid->nr,
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07003218 tgid->numbers[i].nr);
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07003219 }
Pavel Emelyanov60347f62007-10-18 23:40:03 -07003220}
3221
Al Viro0168b9e2018-05-03 09:21:05 -04003222static struct dentry *proc_pid_instantiate(struct dentry * dentry,
Al Viroc52a47a2013-06-15 11:15:20 +04003223 struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003224{
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003225 struct inode *inode;
3226
Al Viro0168b9e2018-05-03 09:21:05 -04003227 inode = proc_pid_make_inode(dentry->d_sb, task, S_IFDIR | S_IRUGO | S_IXUGO);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003228 if (!inode)
Al Viro0168b9e2018-05-03 09:21:05 -04003229 return ERR_PTR(-ENOENT);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003230
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003231 inode->i_op = &proc_tgid_base_inode_operations;
3232 inode->i_fop = &proc_tgid_base_operations;
3233 inode->i_flags|=S_IMMUTABLE;
Vegard Nossumaed54172008-06-05 22:46:53 -07003234
Alexey Dobriyan1270dd82016-12-12 16:45:32 -08003235 set_nlink(inode, nlink_tgid);
Al Viro1bbc5512018-05-02 21:26:16 -04003236 pid_update_inode(task, inode);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003237
Nick Pigginfb045ad2011-01-07 17:49:55 +11003238 d_set_d_op(dentry, &pid_dentry_operations);
Al Viro0168b9e2018-05-03 09:21:05 -04003239 return d_splice_alias(inode, dentry);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003240}
3241
Zhikang Zhang867aacc2019-03-05 15:50:29 -08003242struct dentry *proc_pid_lookup(struct dentry *dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243{
3244 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245 unsigned tgid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003246 struct pid_namespace *ns;
Al Viro0168b9e2018-05-03 09:21:05 -04003247 struct dentry *result = ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248
Alexey Dobriyandbcdb502014-08-08 14:21:25 -07003249 tgid = name_to_int(&dentry->d_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250 if (tgid == ~0U)
3251 goto out;
3252
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003253 ns = dentry->d_sb->s_fs_info;
Eric W. Biedermande758732006-06-26 00:25:51 -07003254 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003255 task = find_task_by_pid_ns(tgid, ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256 if (task)
3257 get_task_struct(task);
Eric W. Biedermande758732006-06-26 00:25:51 -07003258 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259 if (!task)
3260 goto out;
3261
Al Viro0168b9e2018-05-03 09:21:05 -04003262 result = proc_pid_instantiate(dentry, task, NULL);
Eric W. Biederman48e64842006-06-26 00:25:48 -07003263 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264out:
Al Viro0168b9e2018-05-03 09:21:05 -04003265 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266}
3267
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268/*
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003269 * Find the first task with tgid >= tgid
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003270 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271 */
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003272struct tgid_iter {
3273 unsigned int tgid;
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003274 struct task_struct *task;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003275};
3276static struct tgid_iter next_tgid(struct pid_namespace *ns, struct tgid_iter iter)
3277{
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003278 struct pid *pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003280 if (iter.task)
3281 put_task_struct(iter.task);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003282 rcu_read_lock();
3283retry:
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003284 iter.task = NULL;
3285 pid = find_ge_pid(iter.tgid, ns);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003286 if (pid) {
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003287 iter.tgid = pid_nr_ns(pid, ns);
3288 iter.task = pid_task(pid, PIDTYPE_PID);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003289 /* What we to know is if the pid we have find is the
3290 * pid of a thread_group_leader. Testing for task
3291 * being a thread_group_leader is the obvious thing
3292 * todo but there is a window when it fails, due to
3293 * the pid transfer logic in de_thread.
3294 *
3295 * So we perform the straight forward test of seeing
3296 * if the pid we have found is the pid of a thread
3297 * group leader, and don't worry if the task we have
3298 * found doesn't happen to be a thread group leader.
3299 * As we don't care in the case of readdir.
3300 */
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003301 if (!iter.task || !has_group_leader_pid(iter.task)) {
3302 iter.tgid += 1;
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003303 goto retry;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003304 }
3305 get_task_struct(iter.task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306 }
Eric W. Biederman454cc102006-06-26 00:25:51 -07003307 rcu_read_unlock();
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003308 return iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309}
3310
Eric W. Biederman00978752014-07-31 03:10:50 -07003311#define TGID_OFFSET (FIRST_PROCESS_ENTRY + 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312
3313/* for the /proc/ directory itself, after non-process stuff has been done */
Al Virof0c3b502013-05-16 12:07:31 -04003314int proc_pid_readdir(struct file *file, struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315{
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003316 struct tgid_iter iter;
Christoph Hellwig76f668b2018-05-16 07:19:01 +02003317 struct pid_namespace *ns = proc_pid_ns(file_inode(file));
Al Virof0c3b502013-05-16 12:07:31 -04003318 loff_t pos = ctx->pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319
Al Viro021ada72013-03-29 19:27:05 -04003320 if (pos >= PID_MAX_LIMIT + TGID_OFFSET)
Al Virof0c3b502013-05-16 12:07:31 -04003321 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322
Eric W. Biederman00978752014-07-31 03:10:50 -07003323 if (pos == TGID_OFFSET - 2) {
David Howells2b0143b2015-03-17 22:25:59 +00003324 struct inode *inode = d_inode(ns->proc_self);
Al Virodb963162013-06-15 10:45:10 +04003325 if (!dir_emit(ctx, "self", 4, inode->i_ino, DT_LNK))
Al Virof0c3b502013-05-16 12:07:31 -04003326 return 0;
Eric W. Biederman00978752014-07-31 03:10:50 -07003327 ctx->pos = pos = pos + 1;
Al Viro021ada72013-03-29 19:27:05 -04003328 }
Eric W. Biederman00978752014-07-31 03:10:50 -07003329 if (pos == TGID_OFFSET - 1) {
David Howells2b0143b2015-03-17 22:25:59 +00003330 struct inode *inode = d_inode(ns->proc_thread_self);
Eric W. Biederman00978752014-07-31 03:10:50 -07003331 if (!dir_emit(ctx, "thread-self", 11, inode->i_ino, DT_LNK))
3332 return 0;
3333 ctx->pos = pos = pos + 1;
3334 }
3335 iter.tgid = pos - TGID_OFFSET;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003336 iter.task = NULL;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003337 for (iter = next_tgid(ns, iter);
3338 iter.task;
3339 iter.tgid += 1, iter = next_tgid(ns, iter)) {
Alexey Dobriyane3912ac2018-02-06 15:36:51 -08003340 char name[10 + 1];
Alexey Dobriyana4ef3892018-06-07 17:10:10 -07003341 unsigned int len;
Eric Dumazet3ba4bce2017-01-24 15:18:07 -08003342
3343 cond_resched();
Lafcadio Wluiki796f5712017-02-24 15:00:23 -08003344 if (!has_pid_permissions(ns, iter.task, HIDEPID_INVISIBLE))
Al Virof0c3b502013-05-16 12:07:31 -04003345 continue;
Vasiliy Kulikov04996802012-01-10 15:11:31 -08003346
Alexey Dobriyane3912ac2018-02-06 15:36:51 -08003347 len = snprintf(name, sizeof(name), "%u", iter.tgid);
Al Virof0c3b502013-05-16 12:07:31 -04003348 ctx->pos = iter.tgid + TGID_OFFSET;
3349 if (!proc_fill_cache(file, ctx, name, len,
3350 proc_pid_instantiate, iter.task, NULL)) {
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003351 put_task_struct(iter.task);
Al Virof0c3b502013-05-16 12:07:31 -04003352 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354 }
Al Virof0c3b502013-05-16 12:07:31 -04003355 ctx->pos = PID_MAX_LIMIT + TGID_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356 return 0;
3357}
3358
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003359/*
Janis Danisevskis1b3044e2016-05-20 17:00:08 -07003360 * proc_tid_comm_permission is a special permission function exclusively
3361 * used for the node /proc/<pid>/task/<tid>/comm.
3362 * It bypasses generic permission checks in the case where a task of the same
3363 * task group attempts to access the node.
3364 * The rationale behind this is that glibc and bionic access this node for
3365 * cross thread naming (pthread_set/getname_np(!self)). However, if
3366 * PR_SET_DUMPABLE gets set to 0 this node among others becomes uid=0 gid=0,
3367 * which locks out the cross thread naming implementation.
3368 * This function makes sure that the node is always accessible for members of
3369 * same thread group.
3370 */
3371static int proc_tid_comm_permission(struct inode *inode, int mask)
3372{
3373 bool is_same_tgroup;
3374 struct task_struct *task;
3375
3376 task = get_proc_task(inode);
3377 if (!task)
3378 return -ESRCH;
3379 is_same_tgroup = same_thread_group(current, task);
3380 put_task_struct(task);
3381
3382 if (likely(is_same_tgroup && !(mask & MAY_EXEC))) {
3383 /* This file (/proc/<pid>/task/<tid>/comm) can always be
3384 * read or written by the members of the corresponding
3385 * thread group.
3386 */
3387 return 0;
3388 }
3389
3390 return generic_permission(inode, mask);
3391}
3392
3393static const struct inode_operations proc_tid_comm_inode_operations = {
3394 .permission = proc_tid_comm_permission,
3395};
3396
3397/*
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003398 * Tasks
3399 */
Eric Dumazetc5141e62007-05-08 00:26:15 -07003400static const struct pid_entry tid_base_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003401 DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations),
Jerome Marchand38355412010-04-27 13:13:06 -07003402 DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations),
Eric W. Biederman6b4e3062010-03-07 16:41:34 -08003403 DIR("ns", S_IRUSR|S_IXUGO, proc_ns_dir_inode_operations, proc_ns_dir_operations),
Eric W. Biederman6ba8ed72014-07-31 16:27:08 -07003404#ifdef CONFIG_NET
3405 DIR("net", S_IRUGO|S_IXUGO, proc_net_inode_operations, proc_net_operations),
3406#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003407 REG("environ", S_IRUSR, proc_environ_operations),
Al Viroc5317162016-10-05 18:43:43 -04003408 REG("auxv", S_IRUSR, proc_auxv_operations),
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003409 ONE("status", S_IRUGO, proc_pid_status),
Djalal Harouni35a35042014-04-07 15:38:36 -07003410 ONE("personality", S_IRUSR, proc_pid_personality),
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -07003411 ONE("limits", S_IRUGO, proc_pid_limits),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02003412#ifdef CONFIG_SCHED_DEBUG
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003413 REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02003414#endif
Janis Danisevskis1b3044e2016-05-20 17:00:08 -07003415 NOD("comm", S_IFREG|S_IRUGO|S_IWUSR,
3416 &proc_tid_comm_inode_operations,
3417 &proc_pid_set_comm_operations, {}),
Roland McGrathebcb6732008-07-25 19:46:00 -07003418#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
Alexey Dobriyan09d93bd2014-08-08 14:21:39 -07003419 ONE("syscall", S_IRUSR, proc_pid_syscall),
Roland McGrathebcb6732008-07-25 19:46:00 -07003420#endif
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -07003421 REG("cmdline", S_IRUGO, proc_pid_cmdline_ops),
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003422 ONE("stat", S_IRUGO, proc_tid_stat),
3423 ONE("statm", S_IRUGO, proc_pid_statm),
Vlastimil Babka871305b2018-08-21 21:52:48 -07003424 REG("maps", S_IRUGO, proc_pid_maps_operations),
Iago López Galeiras2e13ba52015-06-25 15:00:57 -07003425#ifdef CONFIG_PROC_CHILDREN
Cyrill Gorcunov818411612012-05-31 16:26:43 -07003426 REG("children", S_IRUGO, proc_tid_children_operations),
3427#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003428#ifdef CONFIG_NUMA
Vlastimil Babka871305b2018-08-21 21:52:48 -07003429 REG("numa_maps", S_IRUGO, proc_pid_numa_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003430#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003431 REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations),
3432 LNK("cwd", proc_cwd_link),
3433 LNK("root", proc_root_link),
3434 LNK("exe", proc_exe_link),
3435 REG("mounts", S_IRUGO, proc_mounts_operations),
3436 REG("mountinfo", S_IRUGO, proc_mountinfo_operations),
Matt Mackall1e883282008-02-04 22:29:07 -08003437#ifdef CONFIG_PROC_PAGE_MONITOR
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003438 REG("clear_refs", S_IWUSR, proc_clear_refs_operations),
Vlastimil Babka871305b2018-08-21 21:52:48 -07003439 REG("smaps", S_IRUGO, proc_pid_smaps_operations),
Daniel Colascione493b0e92017-09-06 16:25:08 -07003440 REG("smaps_rollup", S_IRUGO, proc_pid_smaps_rollup_operations),
Djalal Harouni32ed74a2014-04-07 15:38:38 -07003441 REG("pagemap", S_IRUSR, proc_pagemap_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003442#endif
3443#ifdef CONFIG_SECURITY
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003444 DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003445#endif
3446#ifdef CONFIG_KALLSYMS
Alexey Dobriyanedfcd602014-08-08 14:21:44 -07003447 ONE("wchan", S_IRUGO, proc_pid_wchan),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003448#endif
Ken Chen2ec220e2008-11-10 11:26:08 +03003449#ifdef CONFIG_STACKTRACE
Djalal Harouni35a35042014-04-07 15:38:36 -07003450 ONE("stack", S_IRUSR, proc_pid_stack),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003451#endif
Naveen N. Rao5968cec2015-06-30 14:36:03 +05303452#ifdef CONFIG_SCHED_INFO
Alexey Dobriyanf6e826c2014-08-08 14:21:46 -07003453 ONE("schedstat", S_IRUGO, proc_pid_schedstat),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003454#endif
Arjan van de Ven97455122008-01-25 21:08:34 +01003455#ifdef CONFIG_LATENCYTOP
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003456 REG("latency", S_IRUGO, proc_lstats_operations),
Arjan van de Ven97455122008-01-25 21:08:34 +01003457#endif
Paul Menage8793d852007-10-18 23:39:39 -07003458#ifdef CONFIG_PROC_PID_CPUSET
Zefan Li52de4772014-09-18 16:03:36 +08003459 ONE("cpuset", S_IRUGO, proc_cpuset_show),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003460#endif
Paul Menagea4243162007-10-18 23:39:35 -07003461#ifdef CONFIG_CGROUPS
Zefan Li006f4ac2014-09-18 16:03:15 +08003462 ONE("cgroup", S_IRUGO, proc_cgroup_show),
Paul Menagea4243162007-10-18 23:39:35 -07003463#endif
Alexey Dobriyan6ba51e32014-08-08 14:21:48 -07003464 ONE("oom_score", S_IRUGO, proc_oom_score),
David Rientjesfa0cbbf2012-11-12 17:53:04 -08003465 REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adj_operations),
David Rientjesa63d83f2010-08-09 17:19:46 -07003466 REG("oom_score_adj", S_IRUGO|S_IWUSR, proc_oom_score_adj_operations),
Richard Guy Briggs4b7d2482019-01-22 17:06:39 -05003467#ifdef CONFIG_AUDIT
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003468 REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations),
Al Viro26ec3c62011-02-15 21:24:05 -05003469 REG("sessionid", S_IRUGO, proc_sessionid_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003470#endif
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08003471#ifdef CONFIG_FAULT_INJECTION
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003472 REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations),
Akinobu Mita1203c8e2017-07-14 14:49:57 -07003473 REG("fail-nth", 0644, proc_fail_nth_operations),
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08003474#endif
Andrea Righi297c5d92008-07-25 01:48:49 -07003475#ifdef CONFIG_TASK_IO_ACCOUNTING
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07003476 ONE("io", S_IRUSR, proc_tid_io_accounting),
Andrea Righi297c5d92008-07-25 01:48:49 -07003477#endif
Eric W. Biederman22d917d2011-11-17 00:11:58 -08003478#ifdef CONFIG_USER_NS
3479 REG("uid_map", S_IRUGO|S_IWUSR, proc_uid_map_operations),
3480 REG("gid_map", S_IRUGO|S_IWUSR, proc_gid_map_operations),
Eric W. Biedermanf76d2072012-08-30 01:24:05 -07003481 REG("projid_map", S_IRUGO|S_IWUSR, proc_projid_map_operations),
Eric W. Biederman9cc46512014-12-02 12:27:26 -06003482 REG("setgroups", S_IRUGO|S_IWUSR, proc_setgroups_operations),
Eric W. Biederman22d917d2011-11-17 00:11:58 -08003483#endif
Josh Poimboeuf7c23b332017-02-13 19:42:41 -06003484#ifdef CONFIG_LIVEPATCH
3485 ONE("patch_state", S_IRUSR, proc_pid_patch_state),
3486#endif
Aubrey Li68bc30b2019-06-06 09:22:34 +08003487#ifdef CONFIG_PROC_PID_ARCH_STATUS
3488 ONE("arch_status", S_IRUGO, proc_pid_arch_status),
3489#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003490};
3491
Al Virof0c3b502013-05-16 12:07:31 -04003492static int proc_tid_base_readdir(struct file *file, struct dir_context *ctx)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003493{
Al Virof0c3b502013-05-16 12:07:31 -04003494 return proc_pident_readdir(file, ctx,
3495 tid_base_stuff, ARRAY_SIZE(tid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003496}
3497
Al Viro00cd8dd2012-06-10 17:13:09 -04003498static struct dentry *proc_tid_base_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
3499{
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07003500 return proc_pident_lookup(dir, dentry,
Alexey Dobriyand5a572a2019-03-11 23:28:51 -07003501 tid_base_stuff,
3502 tid_base_stuff + ARRAY_SIZE(tid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003503}
3504
Arjan van de Ven00977a52007-02-12 00:55:34 -08003505static const struct file_operations proc_tid_base_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003506 .read = generic_read_dir,
Al Virof50752e2016-04-20 17:13:54 -04003507 .iterate_shared = proc_tid_base_readdir,
3508 .llseek = generic_file_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003509};
3510
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08003511static const struct inode_operations proc_tid_base_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003512 .lookup = proc_tid_base_lookup,
3513 .getattr = pid_getattr,
3514 .setattr = proc_setattr,
3515};
3516
Al Viro0168b9e2018-05-03 09:21:05 -04003517static struct dentry *proc_task_instantiate(struct dentry *dentry,
3518 struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003519{
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003520 struct inode *inode;
Al Viro0168b9e2018-05-03 09:21:05 -04003521 inode = proc_pid_make_inode(dentry->d_sb, task, S_IFDIR | S_IRUGO | S_IXUGO);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003522 if (!inode)
Al Viro0168b9e2018-05-03 09:21:05 -04003523 return ERR_PTR(-ENOENT);
Al Viro1bbc5512018-05-02 21:26:16 -04003524
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003525 inode->i_op = &proc_tid_base_inode_operations;
3526 inode->i_fop = &proc_tid_base_operations;
Al Viro1bbc5512018-05-02 21:26:16 -04003527 inode->i_flags |= S_IMMUTABLE;
Vegard Nossumaed54172008-06-05 22:46:53 -07003528
Alexey Dobriyan1270dd82016-12-12 16:45:32 -08003529 set_nlink(inode, nlink_tid);
Al Viro1bbc5512018-05-02 21:26:16 -04003530 pid_update_inode(task, inode);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003531
Nick Pigginfb045ad2011-01-07 17:49:55 +11003532 d_set_d_op(dentry, &pid_dentry_operations);
Al Viro0168b9e2018-05-03 09:21:05 -04003533 return d_splice_alias(inode, dentry);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003534}
3535
Al Viro00cd8dd2012-06-10 17:13:09 -04003536static struct dentry *proc_task_lookup(struct inode *dir, struct dentry * dentry, unsigned int flags)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003537{
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003538 struct task_struct *task;
3539 struct task_struct *leader = get_proc_task(dir);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003540 unsigned tid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003541 struct pid_namespace *ns;
Al Viro0168b9e2018-05-03 09:21:05 -04003542 struct dentry *result = ERR_PTR(-ENOENT);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003543
3544 if (!leader)
3545 goto out_no_task;
3546
Alexey Dobriyandbcdb502014-08-08 14:21:25 -07003547 tid = name_to_int(&dentry->d_name);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003548 if (tid == ~0U)
3549 goto out;
3550
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003551 ns = dentry->d_sb->s_fs_info;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003552 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003553 task = find_task_by_pid_ns(tid, ns);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003554 if (task)
3555 get_task_struct(task);
3556 rcu_read_unlock();
3557 if (!task)
3558 goto out;
Pavel Emelyanovbac0abd2007-10-18 23:40:18 -07003559 if (!same_thread_group(leader, task))
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003560 goto out_drop_task;
3561
Al Viro0168b9e2018-05-03 09:21:05 -04003562 result = proc_task_instantiate(dentry, task, NULL);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003563out_drop_task:
3564 put_task_struct(task);
3565out:
3566 put_task_struct(leader);
3567out_no_task:
Al Viro0168b9e2018-05-03 09:21:05 -04003568 return result;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003569}
3570
3571/*
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003572 * Find the first tid of a thread group to return to user space.
3573 *
3574 * Usually this is just the thread group leader, but if the users
3575 * buffer was too small or there was a seek into the middle of the
3576 * directory we have more work todo.
3577 *
3578 * In the case of a short read we start with find_task_by_pid.
3579 *
3580 * In the case of a seek we start with the leader and walk nr
3581 * threads past it.
3582 */
Oleg Nesterov9f6e9632014-01-23 15:55:40 -08003583static struct task_struct *first_tid(struct pid *pid, int tid, loff_t f_pos,
3584 struct pid_namespace *ns)
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003585{
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003586 struct task_struct *pos, *task;
Oleg Nesterov9f6e9632014-01-23 15:55:40 -08003587 unsigned long nr = f_pos;
3588
3589 if (nr != f_pos) /* 32bit overflow? */
3590 return NULL;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003591
Eric W. Biedermancc288732006-06-26 00:26:01 -07003592 rcu_read_lock();
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003593 task = pid_task(pid, PIDTYPE_PID);
3594 if (!task)
3595 goto fail;
3596
3597 /* Attempt to start with the tid of a thread */
Oleg Nesterov9f6e9632014-01-23 15:55:40 -08003598 if (tid && nr) {
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003599 pos = find_task_by_pid_ns(tid, ns);
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003600 if (pos && same_thread_group(pos, task))
Oleg Nesterova872ff02006-06-26 00:26:01 -07003601 goto found;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003602 }
3603
3604 /* If nr exceeds the number of threads there is nothing todo */
Oleg Nesterov9f6e9632014-01-23 15:55:40 -08003605 if (nr >= get_nr_threads(task))
Oleg Nesterovc986c142014-01-23 15:55:38 -08003606 goto fail;
Oleg Nesterova872ff02006-06-26 00:26:01 -07003607
3608 /* If we haven't found our starting place yet start
3609 * with the leader and walk nr threads forward.
3610 */
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003611 pos = task = task->group_leader;
Oleg Nesterovc986c142014-01-23 15:55:38 -08003612 do {
Oleg Nesterov9f6e9632014-01-23 15:55:40 -08003613 if (!nr--)
Oleg Nesterovc986c142014-01-23 15:55:38 -08003614 goto found;
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003615 } while_each_thread(task, pos);
Oleg Nesterovc986c142014-01-23 15:55:38 -08003616fail:
3617 pos = NULL;
3618 goto out;
Oleg Nesterova872ff02006-06-26 00:26:01 -07003619found:
3620 get_task_struct(pos);
3621out:
Eric W. Biedermancc288732006-06-26 00:26:01 -07003622 rcu_read_unlock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003623 return pos;
3624}
3625
3626/*
3627 * Find the next thread in the thread list.
3628 * Return NULL if there is an error or no next thread.
3629 *
3630 * The reference to the input task_struct is released.
3631 */
3632static struct task_struct *next_tid(struct task_struct *start)
3633{
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003634 struct task_struct *pos = NULL;
Eric W. Biedermancc288732006-06-26 00:26:01 -07003635 rcu_read_lock();
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003636 if (pid_alive(start)) {
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003637 pos = next_thread(start);
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003638 if (thread_group_leader(pos))
3639 pos = NULL;
3640 else
3641 get_task_struct(pos);
3642 }
Eric W. Biedermancc288732006-06-26 00:26:01 -07003643 rcu_read_unlock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003644 put_task_struct(start);
3645 return pos;
3646}
3647
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648/* for the /proc/TGID/task/ directories */
Al Virof0c3b502013-05-16 12:07:31 -04003649static int proc_task_readdir(struct file *file, struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650{
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003651 struct inode *inode = file_inode(file);
3652 struct task_struct *task;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003653 struct pid_namespace *ns;
Al Virof0c3b502013-05-16 12:07:31 -04003654 int tid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003656 if (proc_inode_is_dead(inode))
Al Virof0c3b502013-05-16 12:07:31 -04003657 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658
Al Virof0c3b502013-05-16 12:07:31 -04003659 if (!dir_emit_dots(file, ctx))
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003660 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003662 /* f_version caches the tgid value that the last readdir call couldn't
3663 * return. lseek aka telldir automagically resets f_version to 0.
3664 */
Christoph Hellwig76f668b2018-05-16 07:19:01 +02003665 ns = proc_pid_ns(inode);
Al Virof0c3b502013-05-16 12:07:31 -04003666 tid = (int)file->f_version;
3667 file->f_version = 0;
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003668 for (task = first_tid(proc_pid(inode), tid, ctx->pos - 2, ns);
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003669 task;
Al Virof0c3b502013-05-16 12:07:31 -04003670 task = next_tid(task), ctx->pos++) {
Alexey Dobriyane3912ac2018-02-06 15:36:51 -08003671 char name[10 + 1];
Alexey Dobriyana4ef3892018-06-07 17:10:10 -07003672 unsigned int len;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003673 tid = task_pid_nr_ns(task, ns);
Alexey Dobriyane3912ac2018-02-06 15:36:51 -08003674 len = snprintf(name, sizeof(name), "%u", tid);
Al Virof0c3b502013-05-16 12:07:31 -04003675 if (!proc_fill_cache(file, ctx, name, len,
3676 proc_task_instantiate, task, NULL)) {
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003677 /* returning this tgid failed, save it as the first
3678 * pid for the next readir call */
Al Virof0c3b502013-05-16 12:07:31 -04003679 file->f_version = (u64)tid;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003680 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681 break;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003682 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683 }
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003684
Al Virof0c3b502013-05-16 12:07:31 -04003685 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686}
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003687
David Howellsa528d352017-01-31 16:46:22 +00003688static int proc_task_getattr(const struct path *path, struct kstat *stat,
3689 u32 request_mask, unsigned int query_flags)
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003690{
David Howellsa528d352017-01-31 16:46:22 +00003691 struct inode *inode = d_inode(path->dentry);
Eric W. Biederman99f89552006-06-26 00:25:55 -07003692 struct task_struct *p = get_proc_task(inode);
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003693 generic_fillattr(inode, stat);
3694
Eric W. Biederman99f89552006-06-26 00:25:55 -07003695 if (p) {
Eric W. Biederman99f89552006-06-26 00:25:55 -07003696 stat->nlink += get_nr_threads(p);
Eric W. Biederman99f89552006-06-26 00:25:55 -07003697 put_task_struct(p);
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003698 }
3699
3700 return 0;
3701}
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003702
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08003703static const struct inode_operations proc_task_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003704 .lookup = proc_task_lookup,
3705 .getattr = proc_task_getattr,
3706 .setattr = proc_setattr,
Vasiliy Kulikov04996802012-01-10 15:11:31 -08003707 .permission = proc_pid_permission,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003708};
3709
Arjan van de Ven00977a52007-02-12 00:55:34 -08003710static const struct file_operations proc_task_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003711 .read = generic_read_dir,
Al Virof50752e2016-04-20 17:13:54 -04003712 .iterate_shared = proc_task_readdir,
3713 .llseek = generic_file_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003714};
Alexey Dobriyan1270dd82016-12-12 16:45:32 -08003715
3716void __init set_proc_pid_nlink(void)
3717{
3718 nlink_tid = pid_entry_nlink(tid_base_stuff, ARRAY_SIZE(tid_base_stuff));
3719 nlink_tgid = pid_entry_nlink(tgid_base_stuff, ARRAY_SIZE(tgid_base_stuff));
3720}