blob: ee97dd322f3ebf4f422f0bf2001e357a1f3c9814 [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
Aleksa Sarai1bc82072019-12-07 01:13:28 +11001629 error = nd_jump_link(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630out:
Al Viro008b1502005-08-20 00:17:39 +01001631 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632}
1633
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001634static int do_proc_readlink(struct path *path, char __user *buffer, int buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635{
Michal Hocko0ee931c2017-09-13 16:28:29 -07001636 char *tmp = (char *)__get_free_page(GFP_KERNEL);
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001637 char *pathname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 int len;
1639
1640 if (!tmp)
1641 return -ENOMEM;
Akinobu Mita0c28f282007-05-08 00:31:41 -07001642
Eric W. Biederman7b2a69b2010-12-05 15:51:21 -08001643 pathname = d_path(path, tmp, PAGE_SIZE);
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001644 len = PTR_ERR(pathname);
1645 if (IS_ERR(pathname))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 goto out;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001647 len = tmp + PAGE_SIZE - 1 - pathname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
1649 if (len > buflen)
1650 len = buflen;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001651 if (copy_to_user(buffer, pathname, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 len = -EFAULT;
1653 out:
1654 free_page((unsigned long)tmp);
1655 return len;
1656}
1657
1658static int proc_pid_readlink(struct dentry * dentry, char __user * buffer, int buflen)
1659{
1660 int error = -EACCES;
David Howells2b0143b2015-03-17 22:25:59 +00001661 struct inode *inode = d_inode(dentry);
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001662 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663
Eric W. Biederman778c1142006-06-26 00:25:58 -07001664 /* Are we allowed to snoop on the tasks file descriptors? */
1665 if (!proc_fd_access_allowed(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667
Cyrill Gorcunov7773fbc2012-01-10 15:11:20 -08001668 error = PROC_I(inode)->op.proc_get_link(dentry, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 if (error)
1670 goto out;
1671
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001672 error = do_proc_readlink(&path, buffer, buflen);
1673 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 return error;
1676}
1677
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +04001678const struct inode_operations proc_pid_link_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 .readlink = proc_pid_readlink,
Al Viro6b255392015-11-17 10:20:54 -05001680 .get_link = proc_pid_get_link,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07001681 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682};
1683
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001684
1685/* building an inode */
1686
Al Viroc6eb50d2017-09-30 14:45:42 -04001687void task_dump_owner(struct task_struct *task, umode_t mode,
Eric W. Biederman68eb94f2017-01-03 10:23:11 +13001688 kuid_t *ruid, kgid_t *rgid)
1689{
1690 /* Depending on the state of dumpable compute who should own a
1691 * proc file for a task.
1692 */
1693 const struct cred *cred;
1694 kuid_t uid;
1695 kgid_t gid;
1696
Alexey Dobriyan2e0ad552018-04-20 14:56:03 -07001697 if (unlikely(task->flags & PF_KTHREAD)) {
1698 *ruid = GLOBAL_ROOT_UID;
1699 *rgid = GLOBAL_ROOT_GID;
1700 return;
1701 }
1702
Eric W. Biederman68eb94f2017-01-03 10:23:11 +13001703 /* Default to the tasks effective ownership */
1704 rcu_read_lock();
1705 cred = __task_cred(task);
1706 uid = cred->euid;
1707 gid = cred->egid;
1708 rcu_read_unlock();
1709
1710 /*
1711 * Before the /proc/pid/status file was created the only way to read
1712 * the effective uid of a /process was to stat /proc/pid. Reading
1713 * /proc/pid/status is slow enough that procps and other packages
1714 * kept stating /proc/pid. To keep the rules in /proc simple I have
1715 * made this apply to all per process world readable and executable
1716 * directories.
1717 */
1718 if (mode != (S_IFDIR|S_IRUGO|S_IXUGO)) {
1719 struct mm_struct *mm;
1720 task_lock(task);
1721 mm = task->mm;
1722 /* Make non-dumpable tasks owned by some root */
1723 if (mm) {
1724 if (get_dumpable(mm) != SUID_DUMP_USER) {
1725 struct user_namespace *user_ns = mm->user_ns;
1726
1727 uid = make_kuid(user_ns, 0);
1728 if (!uid_valid(uid))
1729 uid = GLOBAL_ROOT_UID;
1730
1731 gid = make_kgid(user_ns, 0);
1732 if (!gid_valid(gid))
1733 gid = GLOBAL_ROOT_GID;
1734 }
1735 } else {
1736 uid = GLOBAL_ROOT_UID;
1737 gid = GLOBAL_ROOT_GID;
1738 }
1739 task_unlock(task);
1740 }
1741 *ruid = uid;
1742 *rgid = gid;
1743}
1744
Andreas Gruenbacherdb978da2016-11-10 22:18:28 +01001745struct inode *proc_pid_make_inode(struct super_block * sb,
1746 struct task_struct *task, umode_t mode)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001747{
1748 struct inode * inode;
1749 struct proc_inode *ei;
1750
1751 /* We need a new inode */
1752
1753 inode = new_inode(sb);
1754 if (!inode)
1755 goto out;
1756
1757 /* Common stuff */
1758 ei = PROC_I(inode);
Andreas Gruenbacherdb978da2016-11-10 22:18:28 +01001759 inode->i_mode = mode;
Christoph Hellwig85fe4022010-10-23 11:19:54 -04001760 inode->i_ino = get_next_ino();
Deepa Dinamani078cd822016-09-14 07:48:04 -07001761 inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001762 inode->i_op = &proc_def_inode_operations;
1763
1764 /*
1765 * grab the reference to task.
1766 */
Oleg Nesterov1a657f782006-10-02 02:18:59 -07001767 ei->pid = get_task_pid(task, PIDTYPE_PID);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001768 if (!ei->pid)
1769 goto out_unlock;
1770
Eric W. Biederman68eb94f2017-01-03 10:23:11 +13001771 task_dump_owner(task, 0, &inode->i_uid, &inode->i_gid);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001772 security_task_to_inode(task, inode);
1773
1774out:
1775 return inode;
1776
1777out_unlock:
1778 iput(inode);
1779 return NULL;
1780}
1781
David Howellsa528d352017-01-31 16:46:22 +00001782int pid_getattr(const struct path *path, struct kstat *stat,
1783 u32 request_mask, unsigned int query_flags)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001784{
David Howellsa528d352017-01-31 16:46:22 +00001785 struct inode *inode = d_inode(path->dentry);
Christoph Hellwig76f668b2018-05-16 07:19:01 +02001786 struct pid_namespace *pid = proc_pid_ns(inode);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001787 struct task_struct *task;
David Howellsc69e8d92008-11-14 10:39:19 +11001788
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001789 generic_fillattr(inode, stat);
1790
Eric W. Biedermandcb0f222012-02-09 08:48:21 -08001791 stat->uid = GLOBAL_ROOT_UID;
1792 stat->gid = GLOBAL_ROOT_GID;
Alexey Dobriyan94116922018-06-07 17:10:07 -07001793 rcu_read_lock();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001794 task = pid_task(proc_pid(inode), PIDTYPE_PID);
1795 if (task) {
Lafcadio Wluiki796f5712017-02-24 15:00:23 -08001796 if (!has_pid_permissions(pid, task, HIDEPID_INVISIBLE)) {
Vasiliy Kulikov04996802012-01-10 15:11:31 -08001797 rcu_read_unlock();
1798 /*
1799 * This doesn't prevent learning whether PID exists,
1800 * it only makes getattr() consistent with readdir().
1801 */
1802 return -ENOENT;
1803 }
Eric W. Biederman68eb94f2017-01-03 10:23:11 +13001804 task_dump_owner(task, inode->i_mode, &stat->uid, &stat->gid);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001805 }
1806 rcu_read_unlock();
1807 return 0;
1808}
1809
1810/* dentry stuff */
1811
1812/*
Al Viro1bbc5512018-05-02 21:26:16 -04001813 * Set <pid>/... inode ownership (can change due to setuid(), etc.)
1814 */
1815void pid_update_inode(struct task_struct *task, struct inode *inode)
1816{
1817 task_dump_owner(task, inode->i_mode, &inode->i_uid, &inode->i_gid);
1818
1819 inode->i_mode &= ~(S_ISUID | S_ISGID);
1820 security_task_to_inode(task, inode);
1821}
1822
1823/*
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001824 * Rewrite the inode's ownerships here because the owning task may have
1825 * performed a setuid(), etc.
1826 *
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001827 */
Al Viro1bbc5512018-05-02 21:26:16 -04001828static int pid_revalidate(struct dentry *dentry, unsigned int flags)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001829{
Nick Piggin34286d62011-01-07 17:49:57 +11001830 struct inode *inode;
1831 struct task_struct *task;
David Howellsc69e8d92008-11-14 10:39:19 +11001832
Al Viro0b728e12012-06-10 16:03:43 -04001833 if (flags & LOOKUP_RCU)
Nick Piggin34286d62011-01-07 17:49:57 +11001834 return -ECHILD;
1835
David Howells2b0143b2015-03-17 22:25:59 +00001836 inode = d_inode(dentry);
Nick Piggin34286d62011-01-07 17:49:57 +11001837 task = get_proc_task(inode);
1838
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001839 if (task) {
Al Viro1bbc5512018-05-02 21:26:16 -04001840 pid_update_inode(task, inode);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001841 put_task_struct(task);
1842 return 1;
1843 }
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001844 return 0;
1845}
1846
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08001847static inline bool proc_inode_is_dead(struct inode *inode)
1848{
1849 return !proc_pid(inode)->tasks[PIDTYPE_PID].first;
1850}
1851
David Howells1dd704b2013-04-12 01:08:50 +01001852int pid_delete_dentry(const struct dentry *dentry)
1853{
1854 /* Is the task we represent dead?
1855 * If so, then don't put the dentry on the lru list,
1856 * kill it immediately.
1857 */
David Howells2b0143b2015-03-17 22:25:59 +00001858 return proc_inode_is_dead(d_inode(dentry));
David Howells1dd704b2013-04-12 01:08:50 +01001859}
1860
Eric W. Biederman6b4e3062010-03-07 16:41:34 -08001861const struct dentry_operations pid_dentry_operations =
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001862{
1863 .d_revalidate = pid_revalidate,
1864 .d_delete = pid_delete_dentry,
1865};
1866
1867/* Lookups */
1868
Eric W. Biederman1c0d04c2006-10-02 02:18:57 -07001869/*
1870 * Fill a directory entry.
1871 *
1872 * If possible create the dcache entry and derive our inode number and
1873 * file type from dcache entry.
1874 *
1875 * Since all of the proc inode numbers are dynamically generated, the inode
1876 * numbers do not exist until the inode is cache. This means creating the
1877 * the dcache entry in readdir is necessary to keep the inode numbers
1878 * reported by readdir in sync with the inode numbers reported
1879 * by stat.
1880 */
Al Virof0c3b502013-05-16 12:07:31 -04001881bool proc_fill_cache(struct file *file, struct dir_context *ctx,
Alexey Dobriyana4ef3892018-06-07 17:10:10 -07001882 const char *name, unsigned int len,
Eric Dumazetc5141e62007-05-08 00:26:15 -07001883 instantiate_t instantiate, struct task_struct *task, const void *ptr)
Eric W. Biederman61a28782006-10-02 02:18:49 -07001884{
Al Virof0c3b502013-05-16 12:07:31 -04001885 struct dentry *child, *dir = file->f_path.dentry;
Al Viro1df98b82013-06-15 11:33:10 +04001886 struct qstr qname = QSTR_INIT(name, len);
Eric W. Biederman61a28782006-10-02 02:18:49 -07001887 struct inode *inode;
Al Viro0168b9e2018-05-03 09:21:05 -04001888 unsigned type = DT_UNKNOWN;
1889 ino_t ino = 1;
Eric W. Biederman61a28782006-10-02 02:18:49 -07001890
Al Viro1df98b82013-06-15 11:33:10 +04001891 child = d_hash_and_lookup(dir, &qname);
Eric W. Biederman61a28782006-10-02 02:18:49 -07001892 if (!child) {
Al Viro37817642016-04-20 16:31:31 -04001893 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
1894 child = d_alloc_parallel(dir, &qname, &wq);
1895 if (IS_ERR(child))
Al Viro1df98b82013-06-15 11:33:10 +04001896 goto end_instantiate;
Al Viro37817642016-04-20 16:31:31 -04001897 if (d_in_lookup(child)) {
Al Viro0168b9e2018-05-03 09:21:05 -04001898 struct dentry *res;
1899 res = instantiate(child, task, ptr);
Al Viro37817642016-04-20 16:31:31 -04001900 d_lookup_done(child);
Al Viro0168b9e2018-05-03 09:21:05 -04001901 if (unlikely(res)) {
1902 dput(child);
1903 child = res;
Al Virod85b3992018-06-08 01:17:11 -04001904 if (IS_ERR(child))
1905 goto end_instantiate;
Al Viro37817642016-04-20 16:31:31 -04001906 }
Eric W. Biederman61a28782006-10-02 02:18:49 -07001907 }
1908 }
David Howells2b0143b2015-03-17 22:25:59 +00001909 inode = d_inode(child);
Al Viro147ce692013-06-15 10:26:35 +04001910 ino = inode->i_ino;
1911 type = inode->i_mode >> 12;
Eric W. Biederman61a28782006-10-02 02:18:49 -07001912 dput(child);
Al Virod85b3992018-06-08 01:17:11 -04001913end_instantiate:
Al Virof0c3b502013-05-16 12:07:31 -04001914 return dir_emit(ctx, name, len, ino, type);
Eric W. Biederman61a28782006-10-02 02:18:49 -07001915}
1916
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001917/*
1918 * dname_to_vma_addr - maps a dentry name into two unsigned longs
1919 * which represent vma start and end addresses.
1920 */
1921static int dname_to_vma_addr(struct dentry *dentry,
1922 unsigned long *start, unsigned long *end)
1923{
Alexey Dobriyanac7f1062018-02-06 15:36:59 -08001924 const char *str = dentry->d_name.name;
1925 unsigned long long sval, eval;
1926 unsigned int len;
1927
Alexey Dobriyan35318db2018-04-10 16:41:14 -07001928 if (str[0] == '0' && str[1] != '-')
1929 return -EINVAL;
Alexey Dobriyanac7f1062018-02-06 15:36:59 -08001930 len = _parse_integer(str, 16, &sval);
1931 if (len & KSTRTOX_OVERFLOW)
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001932 return -EINVAL;
Alexey Dobriyanac7f1062018-02-06 15:36:59 -08001933 if (sval != (unsigned long)sval)
1934 return -EINVAL;
1935 str += len;
1936
1937 if (*str != '-')
1938 return -EINVAL;
1939 str++;
1940
Alexey Dobriyan35318db2018-04-10 16:41:14 -07001941 if (str[0] == '0' && str[1])
1942 return -EINVAL;
Alexey Dobriyanac7f1062018-02-06 15:36:59 -08001943 len = _parse_integer(str, 16, &eval);
1944 if (len & KSTRTOX_OVERFLOW)
1945 return -EINVAL;
1946 if (eval != (unsigned long)eval)
1947 return -EINVAL;
1948 str += len;
1949
1950 if (*str != '\0')
1951 return -EINVAL;
1952
1953 *start = sval;
1954 *end = eval;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001955
1956 return 0;
1957}
1958
Al Viro0b728e12012-06-10 16:03:43 -04001959static int map_files_d_revalidate(struct dentry *dentry, unsigned int flags)
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001960{
1961 unsigned long vm_start, vm_end;
1962 bool exact_vma_exists = false;
1963 struct mm_struct *mm = NULL;
1964 struct task_struct *task;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001965 struct inode *inode;
1966 int status = 0;
1967
Al Viro0b728e12012-06-10 16:03:43 -04001968 if (flags & LOOKUP_RCU)
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001969 return -ECHILD;
1970
David Howells2b0143b2015-03-17 22:25:59 +00001971 inode = d_inode(dentry);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001972 task = get_proc_task(inode);
1973 if (!task)
1974 goto out_notask;
1975
Jann Horncaaee622016-01-20 15:00:04 -08001976 mm = mm_access(task, PTRACE_MODE_READ_FSCREDS);
Cong Wang2344bec2012-05-31 16:26:18 -07001977 if (IS_ERR_OR_NULL(mm))
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001978 goto out;
1979
1980 if (!dname_to_vma_addr(dentry, &vm_start, &vm_end)) {
Konstantin Khlebnikovcd9e2bb2019-07-11 21:00:03 -07001981 status = down_read_killable(&mm->mmap_sem);
1982 if (!status) {
1983 exact_vma_exists = !!find_exact_vma(mm, vm_start,
1984 vm_end);
1985 up_read(&mm->mmap_sem);
1986 }
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001987 }
1988
1989 mmput(mm);
1990
1991 if (exact_vma_exists) {
Eric W. Biederman68eb94f2017-01-03 10:23:11 +13001992 task_dump_owner(task, 0, &inode->i_uid, &inode->i_gid);
1993
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001994 security_task_to_inode(task, inode);
1995 status = 1;
1996 }
1997
1998out:
1999 put_task_struct(task);
2000
2001out_notask:
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002002 return status;
2003}
2004
2005static const struct dentry_operations tid_map_files_dentry_operations = {
2006 .d_revalidate = map_files_d_revalidate,
2007 .d_delete = pid_delete_dentry,
2008};
2009
Al Viro6b255392015-11-17 10:20:54 -05002010static int map_files_get_link(struct dentry *dentry, struct path *path)
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002011{
2012 unsigned long vm_start, vm_end;
2013 struct vm_area_struct *vma;
2014 struct task_struct *task;
2015 struct mm_struct *mm;
2016 int rc;
2017
2018 rc = -ENOENT;
David Howells2b0143b2015-03-17 22:25:59 +00002019 task = get_proc_task(d_inode(dentry));
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002020 if (!task)
2021 goto out;
2022
2023 mm = get_task_mm(task);
2024 put_task_struct(task);
2025 if (!mm)
2026 goto out;
2027
2028 rc = dname_to_vma_addr(dentry, &vm_start, &vm_end);
2029 if (rc)
2030 goto out_mmput;
2031
Konstantin Khlebnikovcd9e2bb2019-07-11 21:00:03 -07002032 rc = down_read_killable(&mm->mmap_sem);
2033 if (rc)
2034 goto out_mmput;
2035
Artem Fetishev70335ab2014-03-10 15:49:45 -07002036 rc = -ENOENT;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002037 vma = find_exact_vma(mm, vm_start, vm_end);
2038 if (vma && vma->vm_file) {
2039 *path = vma->vm_file->f_path;
2040 path_get(path);
2041 rc = 0;
2042 }
2043 up_read(&mm->mmap_sem);
2044
2045out_mmput:
2046 mmput(mm);
2047out:
2048 return rc;
2049}
2050
2051struct map_files_info {
Alexey Dobriyan20d28cd2018-02-06 15:37:06 -08002052 unsigned long start;
2053 unsigned long end;
Al Viro7b540d02012-08-27 14:55:26 -04002054 fmode_t mode;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002055};
2056
Calvin Owensbdb4d102015-09-09 15:35:54 -07002057/*
2058 * Only allow CAP_SYS_ADMIN to follow the links, due to concerns about how the
2059 * symlinks may be used to bypass permissions on ancestor directories in the
2060 * path to the file in question.
2061 */
2062static const char *
Al Viro6b255392015-11-17 10:20:54 -05002063proc_map_files_get_link(struct dentry *dentry,
Al Virofceef392015-12-29 15:58:39 -05002064 struct inode *inode,
2065 struct delayed_call *done)
Calvin Owensbdb4d102015-09-09 15:35:54 -07002066{
2067 if (!capable(CAP_SYS_ADMIN))
2068 return ERR_PTR(-EPERM);
2069
Al Virofceef392015-12-29 15:58:39 -05002070 return proc_pid_get_link(dentry, inode, done);
Calvin Owensbdb4d102015-09-09 15:35:54 -07002071}
2072
2073/*
Al Viro6b255392015-11-17 10:20:54 -05002074 * Identical to proc_pid_link_inode_operations except for get_link()
Calvin Owensbdb4d102015-09-09 15:35:54 -07002075 */
2076static const struct inode_operations proc_map_files_link_inode_operations = {
2077 .readlink = proc_pid_readlink,
Al Viro6b255392015-11-17 10:20:54 -05002078 .get_link = proc_map_files_get_link,
Calvin Owensbdb4d102015-09-09 15:35:54 -07002079 .setattr = proc_setattr,
2080};
2081
Al Viro0168b9e2018-05-03 09:21:05 -04002082static struct dentry *
2083proc_map_files_instantiate(struct dentry *dentry,
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002084 struct task_struct *task, const void *ptr)
2085{
Al Viro7b540d02012-08-27 14:55:26 -04002086 fmode_t mode = (fmode_t)(unsigned long)ptr;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002087 struct proc_inode *ei;
2088 struct inode *inode;
2089
Al Viro0168b9e2018-05-03 09:21:05 -04002090 inode = proc_pid_make_inode(dentry->d_sb, task, S_IFLNK |
Andreas Gruenbacherdb978da2016-11-10 22:18:28 +01002091 ((mode & FMODE_READ ) ? S_IRUSR : 0) |
2092 ((mode & FMODE_WRITE) ? S_IWUSR : 0));
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002093 if (!inode)
Al Viro0168b9e2018-05-03 09:21:05 -04002094 return ERR_PTR(-ENOENT);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002095
2096 ei = PROC_I(inode);
Al Viro6b255392015-11-17 10:20:54 -05002097 ei->op.proc_get_link = map_files_get_link;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002098
Calvin Owensbdb4d102015-09-09 15:35:54 -07002099 inode->i_op = &proc_map_files_link_inode_operations;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002100 inode->i_size = 64;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002101
2102 d_set_d_op(dentry, &tid_map_files_dentry_operations);
Al Viro0168b9e2018-05-03 09:21:05 -04002103 return d_splice_alias(inode, dentry);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002104}
2105
2106static struct dentry *proc_map_files_lookup(struct inode *dir,
Al Viro00cd8dd2012-06-10 17:13:09 -04002107 struct dentry *dentry, unsigned int flags)
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002108{
2109 unsigned long vm_start, vm_end;
2110 struct vm_area_struct *vma;
2111 struct task_struct *task;
Al Viro0168b9e2018-05-03 09:21:05 -04002112 struct dentry *result;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002113 struct mm_struct *mm;
2114
Al Viro0168b9e2018-05-03 09:21:05 -04002115 result = ERR_PTR(-ENOENT);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002116 task = get_proc_task(dir);
2117 if (!task)
2118 goto out;
2119
Al Viro0168b9e2018-05-03 09:21:05 -04002120 result = ERR_PTR(-EACCES);
Jann Horncaaee622016-01-20 15:00:04 -08002121 if (!ptrace_may_access(task, PTRACE_MODE_READ_FSCREDS))
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002122 goto out_put_task;
2123
Al Viro0168b9e2018-05-03 09:21:05 -04002124 result = ERR_PTR(-ENOENT);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002125 if (dname_to_vma_addr(dentry, &vm_start, &vm_end))
Cyrill Gorcunoveb94cd92012-05-17 17:03:25 -07002126 goto out_put_task;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002127
2128 mm = get_task_mm(task);
2129 if (!mm)
Cyrill Gorcunoveb94cd92012-05-17 17:03:25 -07002130 goto out_put_task;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002131
Konstantin Khlebnikovcd9e2bb2019-07-11 21:00:03 -07002132 result = ERR_PTR(-EINTR);
2133 if (down_read_killable(&mm->mmap_sem))
2134 goto out_put_mm;
2135
2136 result = ERR_PTR(-ENOENT);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002137 vma = find_exact_vma(mm, vm_start, vm_end);
2138 if (!vma)
2139 goto out_no_vma;
2140
Stanislav Kinsbursky05f56482012-11-26 16:29:42 -08002141 if (vma->vm_file)
Al Viro0168b9e2018-05-03 09:21:05 -04002142 result = proc_map_files_instantiate(dentry, task,
Stanislav Kinsbursky05f56482012-11-26 16:29:42 -08002143 (void *)(unsigned long)vma->vm_file->f_mode);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002144
2145out_no_vma:
2146 up_read(&mm->mmap_sem);
Konstantin Khlebnikovcd9e2bb2019-07-11 21:00:03 -07002147out_put_mm:
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002148 mmput(mm);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002149out_put_task:
2150 put_task_struct(task);
2151out:
Al Viro0168b9e2018-05-03 09:21:05 -04002152 return result;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002153}
2154
2155static const struct inode_operations proc_map_files_inode_operations = {
2156 .lookup = proc_map_files_lookup,
2157 .permission = proc_fd_permission,
2158 .setattr = proc_setattr,
2159};
2160
2161static int
Al Virof0c3b502013-05-16 12:07:31 -04002162proc_map_files_readdir(struct file *file, struct dir_context *ctx)
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002163{
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002164 struct vm_area_struct *vma;
2165 struct task_struct *task;
2166 struct mm_struct *mm;
Al Virof0c3b502013-05-16 12:07:31 -04002167 unsigned long nr_files, pos, i;
Kent Overstreet94f8f3b2019-03-11 23:31:18 -07002168 GENRADIX(struct map_files_info) fa;
Al Virof0c3b502013-05-16 12:07:31 -04002169 struct map_files_info *p;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002170 int ret;
2171
Kent Overstreet94f8f3b2019-03-11 23:31:18 -07002172 genradix_init(&fa);
2173
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002174 ret = -ENOENT;
Al Virof0c3b502013-05-16 12:07:31 -04002175 task = get_proc_task(file_inode(file));
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002176 if (!task)
2177 goto out;
2178
2179 ret = -EACCES;
Jann Horncaaee622016-01-20 15:00:04 -08002180 if (!ptrace_may_access(task, PTRACE_MODE_READ_FSCREDS))
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002181 goto out_put_task;
2182
2183 ret = 0;
Al Virof0c3b502013-05-16 12:07:31 -04002184 if (!dir_emit_dots(file, ctx))
2185 goto out_put_task;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002186
Al Virof0c3b502013-05-16 12:07:31 -04002187 mm = get_task_mm(task);
2188 if (!mm)
2189 goto out_put_task;
Konstantin Khlebnikovcd9e2bb2019-07-11 21:00:03 -07002190
2191 ret = down_read_killable(&mm->mmap_sem);
2192 if (ret) {
2193 mmput(mm);
2194 goto out_put_task;
2195 }
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002196
Al Virof0c3b502013-05-16 12:07:31 -04002197 nr_files = 0;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002198
Al Virof0c3b502013-05-16 12:07:31 -04002199 /*
2200 * We need two passes here:
2201 *
2202 * 1) Collect vmas of mapped files with mmap_sem taken
2203 * 2) Release mmap_sem and instantiate entries
2204 *
2205 * otherwise we get lockdep complained, since filldir()
2206 * routine might require mmap_sem taken in might_fault().
2207 */
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002208
Al Virof0c3b502013-05-16 12:07:31 -04002209 for (vma = mm->mmap, pos = 2; vma; vma = vma->vm_next) {
Kent Overstreet94f8f3b2019-03-11 23:31:18 -07002210 if (!vma->vm_file)
2211 continue;
2212 if (++pos <= ctx->pos)
2213 continue;
Al Virof0c3b502013-05-16 12:07:31 -04002214
Kent Overstreet94f8f3b2019-03-11 23:31:18 -07002215 p = genradix_ptr_alloc(&fa, nr_files++, GFP_KERNEL);
2216 if (!p) {
Al Virof0c3b502013-05-16 12:07:31 -04002217 ret = -ENOMEM;
Al Virof0c3b502013-05-16 12:07:31 -04002218 up_read(&mm->mmap_sem);
2219 mmput(mm);
2220 goto out_put_task;
2221 }
Al Virof0c3b502013-05-16 12:07:31 -04002222
Kent Overstreet94f8f3b2019-03-11 23:31:18 -07002223 p->start = vma->vm_start;
2224 p->end = vma->vm_end;
2225 p->mode = vma->vm_file->f_mode;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002226 }
Al Virof0c3b502013-05-16 12:07:31 -04002227 up_read(&mm->mmap_sem);
Alexey Dobriyanfe079a52018-04-10 16:32:05 -07002228 mmput(mm);
Al Virof0c3b502013-05-16 12:07:31 -04002229
2230 for (i = 0; i < nr_files; i++) {
Alexey Dobriyan20d28cd2018-02-06 15:37:06 -08002231 char buf[4 * sizeof(long) + 2]; /* max: %lx-%lx\0 */
2232 unsigned int len;
2233
Kent Overstreet94f8f3b2019-03-11 23:31:18 -07002234 p = genradix_ptr(&fa, i);
Alexey Dobriyan20d28cd2018-02-06 15:37:06 -08002235 len = snprintf(buf, sizeof(buf), "%lx-%lx", p->start, p->end);
Al Virof0c3b502013-05-16 12:07:31 -04002236 if (!proc_fill_cache(file, ctx,
Alexey Dobriyan20d28cd2018-02-06 15:37:06 -08002237 buf, len,
Al Virof0c3b502013-05-16 12:07:31 -04002238 proc_map_files_instantiate,
2239 task,
2240 (void *)(unsigned long)p->mode))
2241 break;
2242 ctx->pos++;
2243 }
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002244
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002245out_put_task:
2246 put_task_struct(task);
2247out:
Kent Overstreet94f8f3b2019-03-11 23:31:18 -07002248 genradix_free(&fa);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002249 return ret;
2250}
2251
2252static const struct file_operations proc_map_files_operations = {
2253 .read = generic_read_dir,
Al Virof50752e2016-04-20 17:13:54 -04002254 .iterate_shared = proc_map_files_readdir,
2255 .llseek = generic_file_llseek,
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002256};
2257
Nicolas Pitreb18b6a92017-01-21 00:09:08 -05002258#if defined(CONFIG_CHECKPOINT_RESTORE) && defined(CONFIG_POSIX_TIMERS)
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04002259struct timers_private {
2260 struct pid *pid;
2261 struct task_struct *task;
2262 struct sighand_struct *sighand;
Pavel Emelyanov57b80152013-03-11 13:13:08 +04002263 struct pid_namespace *ns;
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04002264 unsigned long flags;
2265};
2266
2267static void *timers_start(struct seq_file *m, loff_t *pos)
2268{
2269 struct timers_private *tp = m->private;
2270
2271 tp->task = get_pid_task(tp->pid, PIDTYPE_PID);
2272 if (!tp->task)
2273 return ERR_PTR(-ESRCH);
2274
2275 tp->sighand = lock_task_sighand(tp->task, &tp->flags);
2276 if (!tp->sighand)
2277 return ERR_PTR(-ESRCH);
2278
2279 return seq_list_start(&tp->task->signal->posix_timers, *pos);
2280}
2281
2282static void *timers_next(struct seq_file *m, void *v, loff_t *pos)
2283{
2284 struct timers_private *tp = m->private;
2285 return seq_list_next(v, &tp->task->signal->posix_timers, pos);
2286}
2287
2288static void timers_stop(struct seq_file *m, void *v)
2289{
2290 struct timers_private *tp = m->private;
2291
2292 if (tp->sighand) {
2293 unlock_task_sighand(tp->task, &tp->flags);
2294 tp->sighand = NULL;
2295 }
2296
2297 if (tp->task) {
2298 put_task_struct(tp->task);
2299 tp->task = NULL;
2300 }
2301}
2302
2303static int show_timer(struct seq_file *m, void *v)
2304{
2305 struct k_itimer *timer;
Pavel Emelyanov57b80152013-03-11 13:13:08 +04002306 struct timers_private *tp = m->private;
2307 int notify;
Alexey Dobriyancedbcca2014-08-08 14:21:33 -07002308 static const char * const nstr[] = {
Pavel Emelyanov57b80152013-03-11 13:13:08 +04002309 [SIGEV_SIGNAL] = "signal",
2310 [SIGEV_NONE] = "none",
2311 [SIGEV_THREAD] = "thread",
2312 };
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04002313
2314 timer = list_entry((struct list_head *)v, struct k_itimer, list);
Pavel Emelyanov57b80152013-03-11 13:13:08 +04002315 notify = timer->it_sigev_notify;
2316
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04002317 seq_printf(m, "ID: %d\n", timer->it_id);
Linus Torvaldsba3edf1f2017-12-06 18:23:27 -08002318 seq_printf(m, "signal: %d/%px\n",
Joe Perches25ce3192015-04-15 16:18:17 -07002319 timer->sigq->info.si_signo,
2320 timer->sigq->info.si_value.sival_ptr);
Pavel Emelyanov57b80152013-03-11 13:13:08 +04002321 seq_printf(m, "notify: %s/%s.%d\n",
Joe Perches25ce3192015-04-15 16:18:17 -07002322 nstr[notify & ~SIGEV_THREAD_ID],
2323 (notify & SIGEV_THREAD_ID) ? "tid" : "pid",
2324 pid_nr_ns(timer->it_pid, tp->ns));
Pavel Tikhomirov15ef0292013-05-17 02:12:03 +04002325 seq_printf(m, "ClockID: %d\n", timer->it_clock);
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04002326
2327 return 0;
2328}
2329
2330static const struct seq_operations proc_timers_seq_ops = {
2331 .start = timers_start,
2332 .next = timers_next,
2333 .stop = timers_stop,
2334 .show = show_timer,
2335};
2336
2337static int proc_timers_open(struct inode *inode, struct file *file)
2338{
2339 struct timers_private *tp;
2340
2341 tp = __seq_open_private(file, &proc_timers_seq_ops,
2342 sizeof(struct timers_private));
2343 if (!tp)
2344 return -ENOMEM;
2345
2346 tp->pid = proc_pid(inode);
Christoph Hellwig76f668b2018-05-16 07:19:01 +02002347 tp->ns = proc_pid_ns(inode);
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04002348 return 0;
2349}
2350
2351static const struct file_operations proc_timers_operations = {
2352 .open = proc_timers_open,
2353 .read = seq_read,
2354 .llseek = seq_lseek,
2355 .release = seq_release_private,
2356};
Eric Engestromb5946be2016-03-17 14:20:57 -07002357#endif
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002358
John Stultz5de23d42016-03-17 14:20:54 -07002359static ssize_t timerslack_ns_write(struct file *file, const char __user *buf,
2360 size_t count, loff_t *offset)
2361{
2362 struct inode *inode = file_inode(file);
2363 struct task_struct *p;
2364 u64 slack_ns;
2365 int err;
2366
2367 err = kstrtoull_from_user(buf, count, 10, &slack_ns);
2368 if (err < 0)
2369 return err;
2370
2371 p = get_proc_task(inode);
2372 if (!p)
2373 return -ESRCH;
2374
John Stultz4b2bd5f2016-10-07 17:02:33 -07002375 if (p != current) {
Benjamin Gordon8da0b4f2019-01-03 15:25:56 -08002376 rcu_read_lock();
2377 if (!ns_capable(__task_cred(p)->user_ns, CAP_SYS_NICE)) {
2378 rcu_read_unlock();
John Stultz4b2bd5f2016-10-07 17:02:33 -07002379 count = -EPERM;
2380 goto out;
2381 }
Benjamin Gordon8da0b4f2019-01-03 15:25:56 -08002382 rcu_read_unlock();
John Stultz5de23d42016-03-17 14:20:54 -07002383
John Stultz4b2bd5f2016-10-07 17:02:33 -07002384 err = security_task_setscheduler(p);
2385 if (err) {
2386 count = err;
2387 goto out;
2388 }
John Stultz904763e2016-10-07 17:02:29 -07002389 }
2390
John Stultz7abbaf92016-10-07 17:02:26 -07002391 task_lock(p);
2392 if (slack_ns == 0)
2393 p->timer_slack_ns = p->default_timer_slack_ns;
2394 else
2395 p->timer_slack_ns = slack_ns;
2396 task_unlock(p);
2397
2398out:
John Stultz5de23d42016-03-17 14:20:54 -07002399 put_task_struct(p);
2400
2401 return count;
2402}
2403
2404static int timerslack_ns_show(struct seq_file *m, void *v)
2405{
2406 struct inode *inode = m->private;
2407 struct task_struct *p;
John Stultz7abbaf92016-10-07 17:02:26 -07002408 int err = 0;
John Stultz5de23d42016-03-17 14:20:54 -07002409
2410 p = get_proc_task(inode);
2411 if (!p)
2412 return -ESRCH;
2413
John Stultz4b2bd5f2016-10-07 17:02:33 -07002414 if (p != current) {
Benjamin Gordon8da0b4f2019-01-03 15:25:56 -08002415 rcu_read_lock();
2416 if (!ns_capable(__task_cred(p)->user_ns, CAP_SYS_NICE)) {
2417 rcu_read_unlock();
John Stultz4b2bd5f2016-10-07 17:02:33 -07002418 err = -EPERM;
2419 goto out;
2420 }
Benjamin Gordon8da0b4f2019-01-03 15:25:56 -08002421 rcu_read_unlock();
2422
John Stultz4b2bd5f2016-10-07 17:02:33 -07002423 err = security_task_getscheduler(p);
2424 if (err)
2425 goto out;
2426 }
John Stultz904763e2016-10-07 17:02:29 -07002427
John Stultz7abbaf92016-10-07 17:02:26 -07002428 task_lock(p);
2429 seq_printf(m, "%llu\n", p->timer_slack_ns);
2430 task_unlock(p);
2431
2432out:
John Stultz5de23d42016-03-17 14:20:54 -07002433 put_task_struct(p);
2434
2435 return err;
2436}
2437
2438static int timerslack_ns_open(struct inode *inode, struct file *filp)
2439{
2440 return single_open(filp, timerslack_ns_show, inode);
2441}
2442
2443static const struct file_operations proc_pid_set_timerslack_ns_operations = {
2444 .open = timerslack_ns_open,
2445 .read = seq_read,
2446 .write = timerslack_ns_write,
2447 .llseek = seq_lseek,
2448 .release = single_release,
2449};
2450
Al Viro0168b9e2018-05-03 09:21:05 -04002451static struct dentry *proc_pident_instantiate(struct dentry *dentry,
2452 struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002453{
Eric Dumazetc5141e62007-05-08 00:26:15 -07002454 const struct pid_entry *p = ptr;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002455 struct inode *inode;
2456 struct proc_inode *ei;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002457
Al Viro0168b9e2018-05-03 09:21:05 -04002458 inode = proc_pid_make_inode(dentry->d_sb, task, p->mode);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002459 if (!inode)
Al Viro0168b9e2018-05-03 09:21:05 -04002460 return ERR_PTR(-ENOENT);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002461
2462 ei = PROC_I(inode);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002463 if (S_ISDIR(inode->i_mode))
Miklos Szeredibfe86842011-10-28 14:13:29 +02002464 set_nlink(inode, 2); /* Use getattr to fix if necessary */
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002465 if (p->iop)
2466 inode->i_op = p->iop;
2467 if (p->fop)
2468 inode->i_fop = p->fop;
2469 ei->op = p->op;
Al Viro1bbc5512018-05-02 21:26:16 -04002470 pid_update_inode(task, inode);
Nick Pigginfb045ad2011-01-07 17:49:55 +11002471 d_set_d_op(dentry, &pid_dentry_operations);
Al Viro0168b9e2018-05-03 09:21:05 -04002472 return d_splice_alias(inode, dentry);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002473}
2474
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475static struct dentry *proc_pident_lookup(struct inode *dir,
2476 struct dentry *dentry,
Alexey Dobriyand5a572a2019-03-11 23:28:51 -07002477 const struct pid_entry *p,
2478 const struct pid_entry *end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479{
Eric W. Biederman99f89552006-06-26 00:25:55 -07002480 struct task_struct *task = get_proc_task(dir);
Al Viro0168b9e2018-05-03 09:21:05 -04002481 struct dentry *res = ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482
Eric W. Biederman99f89552006-06-26 00:25:55 -07002483 if (!task)
2484 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485
Eric W. Biederman20cdc892006-10-02 02:17:07 -07002486 /*
2487 * Yes, it does not scale. And it should not. Don't add
2488 * new entries into /proc/<tgid>/ without very good reasons.
2489 */
Alexey Dobriyand5a572a2019-03-11 23:28:51 -07002490 for (; p < end; p++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 if (p->len != dentry->d_name.len)
2492 continue;
Alexey Dobriyan26b95132018-06-14 15:27:17 -07002493 if (!memcmp(dentry->d_name.name, p->name, p->len)) {
2494 res = proc_pident_instantiate(dentry, task, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 break;
Alexey Dobriyan26b95132018-06-14 15:27:17 -07002496 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 }
Eric W. Biederman99f89552006-06-26 00:25:55 -07002498 put_task_struct(task);
2499out_no_task:
Al Viro0168b9e2018-05-03 09:21:05 -04002500 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501}
2502
Al Virof0c3b502013-05-16 12:07:31 -04002503static int proc_pident_readdir(struct file *file, struct dir_context *ctx,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002504 const struct pid_entry *ents, unsigned int nents)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002505{
Al Virof0c3b502013-05-16 12:07:31 -04002506 struct task_struct *task = get_proc_task(file_inode(file));
2507 const struct pid_entry *p;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002508
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002509 if (!task)
Al Virof0c3b502013-05-16 12:07:31 -04002510 return -ENOENT;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002511
Al Virof0c3b502013-05-16 12:07:31 -04002512 if (!dir_emit_dots(file, ctx))
2513 goto out;
2514
2515 if (ctx->pos >= nents + 2)
2516 goto out;
2517
Alexey Dobriyanbac5f5d2016-12-12 16:45:28 -08002518 for (p = ents + (ctx->pos - 2); p < ents + nents; p++) {
Al Virof0c3b502013-05-16 12:07:31 -04002519 if (!proc_fill_cache(file, ctx, p->name, p->len,
2520 proc_pident_instantiate, task, p))
2521 break;
2522 ctx->pos++;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002523 }
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002524out:
Eric W. Biederman61a28782006-10-02 02:18:49 -07002525 put_task_struct(task);
Al Virof0c3b502013-05-16 12:07:31 -04002526 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527}
2528
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529#ifdef CONFIG_SECURITY
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002530static ssize_t proc_pid_attr_read(struct file * file, char __user * buf,
2531 size_t count, loff_t *ppos)
2532{
Al Viro496ad9a2013-01-23 17:07:38 -05002533 struct inode * inode = file_inode(file);
Al Viro04ff9702007-03-12 16:17:58 +00002534 char *p = NULL;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002535 ssize_t length;
2536 struct task_struct *task = get_proc_task(inode);
2537
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002538 if (!task)
Al Viro04ff9702007-03-12 16:17:58 +00002539 return -ESRCH;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002540
Casey Schaufler6d9c9392018-09-21 17:16:59 -07002541 length = security_getprocattr(task, PROC_I(inode)->op.lsm,
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002542 (char*)file->f_path.dentry->d_name.name,
Al Viro04ff9702007-03-12 16:17:58 +00002543 &p);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002544 put_task_struct(task);
Al Viro04ff9702007-03-12 16:17:58 +00002545 if (length > 0)
2546 length = simple_read_from_buffer(buf, count, ppos, p, length);
2547 kfree(p);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002548 return length;
2549}
2550
2551static ssize_t proc_pid_attr_write(struct file * file, const char __user * buf,
2552 size_t count, loff_t *ppos)
2553{
Al Viro496ad9a2013-01-23 17:07:38 -05002554 struct inode * inode = file_inode(file);
Alexey Dobriyan41089b62018-08-21 21:54:30 -07002555 struct task_struct *task;
Al Virobb646cd2015-12-24 00:16:30 -05002556 void *page;
Alexey Dobriyan41089b62018-08-21 21:54:30 -07002557 int rv;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002558
Alexey Dobriyan41089b62018-08-21 21:54:30 -07002559 rcu_read_lock();
2560 task = pid_task(proc_pid(inode), PIDTYPE_PID);
2561 if (!task) {
2562 rcu_read_unlock();
2563 return -ESRCH;
2564 }
Stephen Smalleyb21507e2017-01-09 10:07:31 -05002565 /* A task may only write its own attributes. */
Alexey Dobriyan41089b62018-08-21 21:54:30 -07002566 if (current != task) {
2567 rcu_read_unlock();
2568 return -EACCES;
2569 }
Paul Moore35a196b2019-04-19 14:55:12 -04002570 /* Prevent changes to overridden credentials. */
2571 if (current_cred() != current_real_cred()) {
2572 rcu_read_unlock();
2573 return -EBUSY;
2574 }
Alexey Dobriyan41089b62018-08-21 21:54:30 -07002575 rcu_read_unlock();
Stephen Smalleyb21507e2017-01-09 10:07:31 -05002576
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002577 if (count > PAGE_SIZE)
2578 count = PAGE_SIZE;
2579
2580 /* No partial writes. */
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002581 if (*ppos != 0)
Alexey Dobriyan41089b62018-08-21 21:54:30 -07002582 return -EINVAL;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002583
Al Virobb646cd2015-12-24 00:16:30 -05002584 page = memdup_user(buf, count);
2585 if (IS_ERR(page)) {
Alexey Dobriyan41089b62018-08-21 21:54:30 -07002586 rv = PTR_ERR(page);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002587 goto out;
Al Virobb646cd2015-12-24 00:16:30 -05002588 }
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002589
David Howells107db7c2009-05-08 13:55:27 +01002590 /* Guard against adverse ptrace interaction */
Alexey Dobriyan41089b62018-08-21 21:54:30 -07002591 rv = mutex_lock_interruptible(&current->signal->cred_guard_mutex);
2592 if (rv < 0)
David Howells107db7c2009-05-08 13:55:27 +01002593 goto out_free;
2594
Casey Schaufler6d9c9392018-09-21 17:16:59 -07002595 rv = security_setprocattr(PROC_I(inode)->op.lsm,
2596 file->f_path.dentry->d_name.name, page,
2597 count);
Stephen Smalleyb21507e2017-01-09 10:07:31 -05002598 mutex_unlock(&current->signal->cred_guard_mutex);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002599out_free:
Al Virobb646cd2015-12-24 00:16:30 -05002600 kfree(page);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002601out:
Alexey Dobriyan41089b62018-08-21 21:54:30 -07002602 return rv;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002603}
2604
Arjan van de Ven00977a52007-02-12 00:55:34 -08002605static const struct file_operations proc_pid_attr_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002606 .read = proc_pid_attr_read,
2607 .write = proc_pid_attr_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01002608 .llseek = generic_file_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002609};
2610
Casey Schaufler6d9c9392018-09-21 17:16:59 -07002611#define LSM_DIR_OPS(LSM) \
2612static int proc_##LSM##_attr_dir_iterate(struct file *filp, \
2613 struct dir_context *ctx) \
2614{ \
2615 return proc_pident_readdir(filp, ctx, \
2616 LSM##_attr_dir_stuff, \
2617 ARRAY_SIZE(LSM##_attr_dir_stuff)); \
2618} \
2619\
2620static const struct file_operations proc_##LSM##_attr_dir_ops = { \
2621 .read = generic_read_dir, \
2622 .iterate = proc_##LSM##_attr_dir_iterate, \
2623 .llseek = default_llseek, \
2624}; \
2625\
2626static struct dentry *proc_##LSM##_attr_dir_lookup(struct inode *dir, \
2627 struct dentry *dentry, unsigned int flags) \
2628{ \
2629 return proc_pident_lookup(dir, dentry, \
2630 LSM##_attr_dir_stuff, \
Alexey Dobriyand5a572a2019-03-11 23:28:51 -07002631 LSM##_attr_dir_stuff + ARRAY_SIZE(LSM##_attr_dir_stuff)); \
Casey Schaufler6d9c9392018-09-21 17:16:59 -07002632} \
2633\
2634static const struct inode_operations proc_##LSM##_attr_dir_inode_ops = { \
2635 .lookup = proc_##LSM##_attr_dir_lookup, \
2636 .getattr = pid_getattr, \
2637 .setattr = proc_setattr, \
2638}
2639
2640#ifdef CONFIG_SECURITY_SMACK
2641static const struct pid_entry smack_attr_dir_stuff[] = {
2642 ATTR("smack", "current", 0666),
2643};
2644LSM_DIR_OPS(smack);
2645#endif
2646
Eric Dumazetc5141e62007-05-08 00:26:15 -07002647static const struct pid_entry attr_dir_stuff[] = {
Casey Schaufler6d9c9392018-09-21 17:16:59 -07002648 ATTR(NULL, "current", 0666),
2649 ATTR(NULL, "prev", 0444),
2650 ATTR(NULL, "exec", 0666),
2651 ATTR(NULL, "fscreate", 0666),
2652 ATTR(NULL, "keycreate", 0666),
2653 ATTR(NULL, "sockcreate", 0666),
2654#ifdef CONFIG_SECURITY_SMACK
2655 DIR("smack", 0555,
2656 proc_smack_attr_dir_inode_ops, proc_smack_attr_dir_ops),
2657#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002658};
2659
Al Virof0c3b502013-05-16 12:07:31 -04002660static int proc_attr_dir_readdir(struct file *file, struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661{
Al Virof0c3b502013-05-16 12:07:31 -04002662 return proc_pident_readdir(file, ctx,
2663 attr_dir_stuff, ARRAY_SIZE(attr_dir_stuff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664}
2665
Arjan van de Ven00977a52007-02-12 00:55:34 -08002666static const struct file_operations proc_attr_dir_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 .read = generic_read_dir,
Al Virof50752e2016-04-20 17:13:54 -04002668 .iterate_shared = proc_attr_dir_readdir,
2669 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670};
2671
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002672static struct dentry *proc_attr_dir_lookup(struct inode *dir,
Al Viro00cd8dd2012-06-10 17:13:09 -04002673 struct dentry *dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674{
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002675 return proc_pident_lookup(dir, dentry,
Alexey Dobriyand5a572a2019-03-11 23:28:51 -07002676 attr_dir_stuff,
2677 attr_dir_stuff + ARRAY_SIZE(attr_dir_stuff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678}
2679
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002680static const struct inode_operations proc_attr_dir_inode_operations = {
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002681 .lookup = proc_attr_dir_lookup,
Eric W. Biederman99f89552006-06-26 00:25:55 -07002682 .getattr = pid_getattr,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07002683 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684};
2685
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686#endif
2687
Christoph Hellwig698ba7b2009-12-15 16:47:37 -08002688#ifdef CONFIG_ELF_CORE
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002689static ssize_t proc_coredump_filter_read(struct file *file, char __user *buf,
2690 size_t count, loff_t *ppos)
2691{
Al Viro496ad9a2013-01-23 17:07:38 -05002692 struct task_struct *task = get_proc_task(file_inode(file));
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002693 struct mm_struct *mm;
2694 char buffer[PROC_NUMBUF];
2695 size_t len;
2696 int ret;
2697
2698 if (!task)
2699 return -ESRCH;
2700
2701 ret = 0;
2702 mm = get_task_mm(task);
2703 if (mm) {
2704 len = snprintf(buffer, sizeof(buffer), "%08lx\n",
2705 ((mm->flags & MMF_DUMP_FILTER_MASK) >>
2706 MMF_DUMP_FILTER_SHIFT));
2707 mmput(mm);
2708 ret = simple_read_from_buffer(buf, count, ppos, buffer, len);
2709 }
2710
2711 put_task_struct(task);
2712
2713 return ret;
2714}
2715
2716static ssize_t proc_coredump_filter_write(struct file *file,
2717 const char __user *buf,
2718 size_t count,
2719 loff_t *ppos)
2720{
2721 struct task_struct *task;
2722 struct mm_struct *mm;
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002723 unsigned int val;
2724 int ret;
2725 int i;
2726 unsigned long mask;
2727
Alexey Dobriyan774636e2015-09-09 15:36:59 -07002728 ret = kstrtouint_from_user(buf, count, 0, &val);
2729 if (ret < 0)
2730 return ret;
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002731
2732 ret = -ESRCH;
Al Viro496ad9a2013-01-23 17:07:38 -05002733 task = get_proc_task(file_inode(file));
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002734 if (!task)
2735 goto out_no_task;
2736
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002737 mm = get_task_mm(task);
2738 if (!mm)
2739 goto out_no_mm;
Colin Ian King41a0c2492015-12-18 14:22:01 -08002740 ret = 0;
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002741
2742 for (i = 0, mask = 1; i < MMF_DUMP_FILTER_BITS; i++, mask <<= 1) {
2743 if (val & mask)
2744 set_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags);
2745 else
2746 clear_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags);
2747 }
2748
2749 mmput(mm);
2750 out_no_mm:
2751 put_task_struct(task);
2752 out_no_task:
Alexey Dobriyan774636e2015-09-09 15:36:59 -07002753 if (ret < 0)
2754 return ret;
2755 return count;
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002756}
2757
2758static const struct file_operations proc_coredump_filter_operations = {
2759 .read = proc_coredump_filter_read,
2760 .write = proc_coredump_filter_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01002761 .llseek = generic_file_llseek,
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002762};
2763#endif
2764
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002765#ifdef CONFIG_TASK_IO_ACCOUNTING
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07002766static int do_io_accounting(struct task_struct *task, struct seq_file *m, int whole)
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002767{
Andrea Righi940389b2008-07-28 00:48:12 +02002768 struct task_io_accounting acct = task->ioac;
Andrea Righi59954772008-07-27 17:29:15 +02002769 unsigned long flags;
Vasiliy Kulikov293eb1e2011-07-26 16:08:38 -07002770 int result;
Andrea Righi297c5d92008-07-25 01:48:49 -07002771
Vasiliy Kulikov293eb1e2011-07-26 16:08:38 -07002772 result = mutex_lock_killable(&task->signal->cred_guard_mutex);
2773 if (result)
2774 return result;
2775
Jann Horncaaee622016-01-20 15:00:04 -08002776 if (!ptrace_may_access(task, PTRACE_MODE_READ_FSCREDS)) {
Vasiliy Kulikov293eb1e2011-07-26 16:08:38 -07002777 result = -EACCES;
2778 goto out_unlock;
2779 }
Vasiliy Kulikov1d1221f2011-06-24 16:08:38 +04002780
Andrea Righi59954772008-07-27 17:29:15 +02002781 if (whole && lock_task_sighand(task, &flags)) {
2782 struct task_struct *t = task;
Andrea Righib2d002d2008-07-26 15:22:27 -07002783
Andrea Righi59954772008-07-27 17:29:15 +02002784 task_io_accounting_add(&acct, &task->signal->ioac);
2785 while_each_thread(task, t)
2786 task_io_accounting_add(&acct, &t->ioac);
Andrea Righi297c5d92008-07-25 01:48:49 -07002787
Andrea Righi59954772008-07-27 17:29:15 +02002788 unlock_task_sighand(task, &flags);
Andrea Righi297c5d92008-07-25 01:48:49 -07002789 }
Joe Perches25ce3192015-04-15 16:18:17 -07002790 seq_printf(m,
2791 "rchar: %llu\n"
2792 "wchar: %llu\n"
2793 "syscr: %llu\n"
2794 "syscw: %llu\n"
2795 "read_bytes: %llu\n"
2796 "write_bytes: %llu\n"
2797 "cancelled_write_bytes: %llu\n",
2798 (unsigned long long)acct.rchar,
2799 (unsigned long long)acct.wchar,
2800 (unsigned long long)acct.syscr,
2801 (unsigned long long)acct.syscw,
2802 (unsigned long long)acct.read_bytes,
2803 (unsigned long long)acct.write_bytes,
2804 (unsigned long long)acct.cancelled_write_bytes);
2805 result = 0;
2806
Vasiliy Kulikov293eb1e2011-07-26 16:08:38 -07002807out_unlock:
2808 mutex_unlock(&task->signal->cred_guard_mutex);
2809 return result;
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002810}
Andrea Righi297c5d92008-07-25 01:48:49 -07002811
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07002812static int proc_tid_io_accounting(struct seq_file *m, struct pid_namespace *ns,
2813 struct pid *pid, struct task_struct *task)
Andrea Righi297c5d92008-07-25 01:48:49 -07002814{
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07002815 return do_io_accounting(task, m, 0);
Andrea Righi297c5d92008-07-25 01:48:49 -07002816}
2817
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07002818static int proc_tgid_io_accounting(struct seq_file *m, struct pid_namespace *ns,
2819 struct pid *pid, struct task_struct *task)
Andrea Righi297c5d92008-07-25 01:48:49 -07002820{
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07002821 return do_io_accounting(task, m, 1);
Andrea Righi297c5d92008-07-25 01:48:49 -07002822}
2823#endif /* CONFIG_TASK_IO_ACCOUNTING */
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002824
Eric W. Biederman22d917d2011-11-17 00:11:58 -08002825#ifdef CONFIG_USER_NS
2826static int proc_id_map_open(struct inode *inode, struct file *file,
Fabian Frederickccf94f12014-08-08 14:21:22 -07002827 const struct seq_operations *seq_ops)
Eric W. Biederman22d917d2011-11-17 00:11:58 -08002828{
2829 struct user_namespace *ns = NULL;
2830 struct task_struct *task;
2831 struct seq_file *seq;
2832 int ret = -EINVAL;
2833
2834 task = get_proc_task(inode);
2835 if (task) {
2836 rcu_read_lock();
2837 ns = get_user_ns(task_cred_xxx(task, user_ns));
2838 rcu_read_unlock();
2839 put_task_struct(task);
2840 }
2841 if (!ns)
2842 goto err;
2843
2844 ret = seq_open(file, seq_ops);
2845 if (ret)
2846 goto err_put_ns;
2847
2848 seq = file->private_data;
2849 seq->private = ns;
2850
2851 return 0;
2852err_put_ns:
2853 put_user_ns(ns);
2854err:
2855 return ret;
2856}
2857
2858static int proc_id_map_release(struct inode *inode, struct file *file)
2859{
2860 struct seq_file *seq = file->private_data;
2861 struct user_namespace *ns = seq->private;
2862 put_user_ns(ns);
2863 return seq_release(inode, file);
2864}
2865
2866static int proc_uid_map_open(struct inode *inode, struct file *file)
2867{
2868 return proc_id_map_open(inode, file, &proc_uid_seq_operations);
2869}
2870
2871static int proc_gid_map_open(struct inode *inode, struct file *file)
2872{
2873 return proc_id_map_open(inode, file, &proc_gid_seq_operations);
2874}
2875
Eric W. Biedermanf76d2072012-08-30 01:24:05 -07002876static int proc_projid_map_open(struct inode *inode, struct file *file)
2877{
2878 return proc_id_map_open(inode, file, &proc_projid_seq_operations);
2879}
2880
Eric W. Biederman22d917d2011-11-17 00:11:58 -08002881static const struct file_operations proc_uid_map_operations = {
2882 .open = proc_uid_map_open,
2883 .write = proc_uid_map_write,
2884 .read = seq_read,
2885 .llseek = seq_lseek,
2886 .release = proc_id_map_release,
2887};
2888
2889static const struct file_operations proc_gid_map_operations = {
2890 .open = proc_gid_map_open,
2891 .write = proc_gid_map_write,
2892 .read = seq_read,
2893 .llseek = seq_lseek,
2894 .release = proc_id_map_release,
2895};
Eric W. Biedermanf76d2072012-08-30 01:24:05 -07002896
2897static const struct file_operations proc_projid_map_operations = {
2898 .open = proc_projid_map_open,
2899 .write = proc_projid_map_write,
2900 .read = seq_read,
2901 .llseek = seq_lseek,
2902 .release = proc_id_map_release,
2903};
Eric W. Biederman9cc46512014-12-02 12:27:26 -06002904
2905static int proc_setgroups_open(struct inode *inode, struct file *file)
2906{
2907 struct user_namespace *ns = NULL;
2908 struct task_struct *task;
2909 int ret;
2910
2911 ret = -ESRCH;
2912 task = get_proc_task(inode);
2913 if (task) {
2914 rcu_read_lock();
2915 ns = get_user_ns(task_cred_xxx(task, user_ns));
2916 rcu_read_unlock();
2917 put_task_struct(task);
2918 }
2919 if (!ns)
2920 goto err;
2921
2922 if (file->f_mode & FMODE_WRITE) {
2923 ret = -EACCES;
2924 if (!ns_capable(ns, CAP_SYS_ADMIN))
2925 goto err_put_ns;
2926 }
2927
2928 ret = single_open(file, &proc_setgroups_show, ns);
2929 if (ret)
2930 goto err_put_ns;
2931
2932 return 0;
2933err_put_ns:
2934 put_user_ns(ns);
2935err:
2936 return ret;
2937}
2938
2939static int proc_setgroups_release(struct inode *inode, struct file *file)
2940{
2941 struct seq_file *seq = file->private_data;
2942 struct user_namespace *ns = seq->private;
2943 int ret = single_release(inode, file);
2944 put_user_ns(ns);
2945 return ret;
2946}
2947
2948static const struct file_operations proc_setgroups_operations = {
2949 .open = proc_setgroups_open,
2950 .write = proc_setgroups_write,
2951 .read = seq_read,
2952 .llseek = seq_lseek,
2953 .release = proc_setgroups_release,
2954};
Eric W. Biederman22d917d2011-11-17 00:11:58 -08002955#endif /* CONFIG_USER_NS */
2956
Kees Cook47830722008-10-06 03:11:58 +04002957static int proc_pid_personality(struct seq_file *m, struct pid_namespace *ns,
2958 struct pid *pid, struct task_struct *task)
2959{
Al Viroa9712bc2011-03-23 15:52:50 -04002960 int err = lock_trace(task);
2961 if (!err) {
2962 seq_printf(m, "%08x\n", task->personality);
2963 unlock_trace(task);
2964 }
2965 return err;
Kees Cook47830722008-10-06 03:11:58 +04002966}
2967
Josh Poimboeuf7c23b332017-02-13 19:42:41 -06002968#ifdef CONFIG_LIVEPATCH
2969static int proc_pid_patch_state(struct seq_file *m, struct pid_namespace *ns,
2970 struct pid *pid, struct task_struct *task)
2971{
2972 seq_printf(m, "%d\n", task->patch_state);
2973 return 0;
2974}
2975#endif /* CONFIG_LIVEPATCH */
2976
Alexander Popovc8d12622018-08-17 01:17:01 +03002977#ifdef CONFIG_STACKLEAK_METRICS
2978static int proc_stack_depth(struct seq_file *m, struct pid_namespace *ns,
2979 struct pid *pid, struct task_struct *task)
2980{
2981 unsigned long prev_depth = THREAD_SIZE -
2982 (task->prev_lowest_stack & (THREAD_SIZE - 1));
2983 unsigned long depth = THREAD_SIZE -
2984 (task->lowest_stack & (THREAD_SIZE - 1));
2985
2986 seq_printf(m, "previous stack depth: %lu\nstack depth: %lu\n",
2987 prev_depth, depth);
2988 return 0;
2989}
2990#endif /* CONFIG_STACKLEAK_METRICS */
2991
Eric W. Biederman801199c2006-10-02 02:18:48 -07002992/*
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002993 * Thread groups
2994 */
Arjan van de Ven00977a52007-02-12 00:55:34 -08002995static const struct file_operations proc_task_operations;
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002996static const struct inode_operations proc_task_inode_operations;
Eric W. Biederman20cdc892006-10-02 02:17:07 -07002997
Eric Dumazetc5141e62007-05-08 00:26:15 -07002998static const struct pid_entry tgid_base_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002999 DIR("task", S_IRUGO|S_IXUGO, proc_task_inode_operations, proc_task_operations),
3000 DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations),
Pavel Emelyanov640708a2012-01-10 15:11:23 -08003001 DIR("map_files", S_IRUSR|S_IXUSR, proc_map_files_inode_operations, proc_map_files_operations),
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003002 DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations),
Eric W. Biederman6b4e3062010-03-07 16:41:34 -08003003 DIR("ns", S_IRUSR|S_IXUGO, proc_ns_dir_inode_operations, proc_ns_dir_operations),
Andrew Mortonb2211a32008-03-11 18:03:35 -07003004#ifdef CONFIG_NET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003005 DIR("net", S_IRUGO|S_IXUGO, proc_net_inode_operations, proc_net_operations),
Andrew Mortonb2211a32008-03-11 18:03:35 -07003006#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003007 REG("environ", S_IRUSR, proc_environ_operations),
Al Viroc5317162016-10-05 18:43:43 -04003008 REG("auxv", S_IRUSR, proc_auxv_operations),
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003009 ONE("status", S_IRUGO, proc_pid_status),
Djalal Harouni35a35042014-04-07 15:38:36 -07003010 ONE("personality", S_IRUSR, proc_pid_personality),
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -07003011 ONE("limits", S_IRUGO, proc_pid_limits),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02003012#ifdef CONFIG_SCHED_DEBUG
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003013 REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02003014#endif
Mike Galbraith5091faa2010-11-30 14:18:03 +01003015#ifdef CONFIG_SCHED_AUTOGROUP
3016 REG("autogroup", S_IRUGO|S_IWUSR, proc_pid_sched_autogroup_operations),
3017#endif
john stultz4614a696b2009-12-14 18:00:05 -08003018 REG("comm", S_IRUGO|S_IWUSR, proc_pid_set_comm_operations),
Roland McGrathebcb6732008-07-25 19:46:00 -07003019#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
Alexey Dobriyan09d93bd2014-08-08 14:21:39 -07003020 ONE("syscall", S_IRUSR, proc_pid_syscall),
Roland McGrathebcb6732008-07-25 19:46:00 -07003021#endif
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -07003022 REG("cmdline", S_IRUGO, proc_pid_cmdline_ops),
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003023 ONE("stat", S_IRUGO, proc_tgid_stat),
3024 ONE("statm", S_IRUGO, proc_pid_statm),
Siddhesh Poyarekarb7643752012-03-21 16:34:04 -07003025 REG("maps", S_IRUGO, proc_pid_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003026#ifdef CONFIG_NUMA
Siddhesh Poyarekarb7643752012-03-21 16:34:04 -07003027 REG("numa_maps", S_IRUGO, proc_pid_numa_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003028#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003029 REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations),
3030 LNK("cwd", proc_cwd_link),
3031 LNK("root", proc_root_link),
3032 LNK("exe", proc_exe_link),
3033 REG("mounts", S_IRUGO, proc_mounts_operations),
3034 REG("mountinfo", S_IRUGO, proc_mountinfo_operations),
3035 REG("mountstats", S_IRUSR, proc_mountstats_operations),
Matt Mackall1e883282008-02-04 22:29:07 -08003036#ifdef CONFIG_PROC_PAGE_MONITOR
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003037 REG("clear_refs", S_IWUSR, proc_clear_refs_operations),
Siddhesh Poyarekarb7643752012-03-21 16:34:04 -07003038 REG("smaps", S_IRUGO, proc_pid_smaps_operations),
Daniel Colascione493b0e92017-09-06 16:25:08 -07003039 REG("smaps_rollup", S_IRUGO, proc_pid_smaps_rollup_operations),
Djalal Harouni32ed74a2014-04-07 15:38:38 -07003040 REG("pagemap", S_IRUSR, proc_pagemap_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003041#endif
3042#ifdef CONFIG_SECURITY
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003043 DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003044#endif
3045#ifdef CONFIG_KALLSYMS
Alexey Dobriyanedfcd602014-08-08 14:21:44 -07003046 ONE("wchan", S_IRUGO, proc_pid_wchan),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003047#endif
Ken Chen2ec220e2008-11-10 11:26:08 +03003048#ifdef CONFIG_STACKTRACE
Djalal Harouni35a35042014-04-07 15:38:36 -07003049 ONE("stack", S_IRUSR, proc_pid_stack),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003050#endif
Naveen N. Rao5968cec2015-06-30 14:36:03 +05303051#ifdef CONFIG_SCHED_INFO
Alexey Dobriyanf6e826c2014-08-08 14:21:46 -07003052 ONE("schedstat", S_IRUGO, proc_pid_schedstat),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003053#endif
Arjan van de Ven97455122008-01-25 21:08:34 +01003054#ifdef CONFIG_LATENCYTOP
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003055 REG("latency", S_IRUGO, proc_lstats_operations),
Arjan van de Ven97455122008-01-25 21:08:34 +01003056#endif
Paul Menage8793d852007-10-18 23:39:39 -07003057#ifdef CONFIG_PROC_PID_CPUSET
Zefan Li52de4772014-09-18 16:03:36 +08003058 ONE("cpuset", S_IRUGO, proc_cpuset_show),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003059#endif
Paul Menagea4243162007-10-18 23:39:35 -07003060#ifdef CONFIG_CGROUPS
Zefan Li006f4ac2014-09-18 16:03:15 +08003061 ONE("cgroup", S_IRUGO, proc_cgroup_show),
Paul Menagea4243162007-10-18 23:39:35 -07003062#endif
Alexey Dobriyan6ba51e32014-08-08 14:21:48 -07003063 ONE("oom_score", S_IRUGO, proc_oom_score),
David Rientjesfa0cbbf2012-11-12 17:53:04 -08003064 REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adj_operations),
David Rientjesa63d83f2010-08-09 17:19:46 -07003065 REG("oom_score_adj", S_IRUGO|S_IWUSR, proc_oom_score_adj_operations),
Richard Guy Briggs4b7d2482019-01-22 17:06:39 -05003066#ifdef CONFIG_AUDIT
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003067 REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations),
3068 REG("sessionid", S_IRUGO, proc_sessionid_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003069#endif
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08003070#ifdef CONFIG_FAULT_INJECTION
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003071 REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations),
Akinobu Mita168c42b2017-07-14 14:50:00 -07003072 REG("fail-nth", 0644, proc_fail_nth_operations),
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08003073#endif
Christoph Hellwig698ba7b2009-12-15 16:47:37 -08003074#ifdef CONFIG_ELF_CORE
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003075 REG("coredump_filter", S_IRUGO|S_IWUSR, proc_coredump_filter_operations),
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07003076#endif
Andrew Mortonaba76fd2006-12-10 02:19:48 -08003077#ifdef CONFIG_TASK_IO_ACCOUNTING
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07003078 ONE("io", S_IRUSR, proc_tgid_io_accounting),
Andrew Mortonaba76fd2006-12-10 02:19:48 -08003079#endif
Eric W. Biederman22d917d2011-11-17 00:11:58 -08003080#ifdef CONFIG_USER_NS
3081 REG("uid_map", S_IRUGO|S_IWUSR, proc_uid_map_operations),
3082 REG("gid_map", S_IRUGO|S_IWUSR, proc_gid_map_operations),
Eric W. Biedermanf76d2072012-08-30 01:24:05 -07003083 REG("projid_map", S_IRUGO|S_IWUSR, proc_projid_map_operations),
Eric W. Biederman9cc46512014-12-02 12:27:26 -06003084 REG("setgroups", S_IRUGO|S_IWUSR, proc_setgroups_operations),
Eric W. Biederman22d917d2011-11-17 00:11:58 -08003085#endif
Nicolas Pitreb18b6a92017-01-21 00:09:08 -05003086#if defined(CONFIG_CHECKPOINT_RESTORE) && defined(CONFIG_POSIX_TIMERS)
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04003087 REG("timers", S_IRUGO, proc_timers_operations),
3088#endif
John Stultz5de23d42016-03-17 14:20:54 -07003089 REG("timerslack_ns", S_IRUGO|S_IWUGO, proc_pid_set_timerslack_ns_operations),
Josh Poimboeuf7c23b332017-02-13 19:42:41 -06003090#ifdef CONFIG_LIVEPATCH
3091 ONE("patch_state", S_IRUSR, proc_pid_patch_state),
3092#endif
Alexander Popovc8d12622018-08-17 01:17:01 +03003093#ifdef CONFIG_STACKLEAK_METRICS
3094 ONE("stack_depth", S_IRUGO, proc_stack_depth),
3095#endif
Aubrey Li68bc30b2019-06-06 09:22:34 +08003096#ifdef CONFIG_PROC_PID_ARCH_STATUS
3097 ONE("arch_status", S_IRUGO, proc_pid_arch_status),
3098#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003099};
3100
Al Virof0c3b502013-05-16 12:07:31 -04003101static int proc_tgid_base_readdir(struct file *file, struct dir_context *ctx)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003102{
Al Virof0c3b502013-05-16 12:07:31 -04003103 return proc_pident_readdir(file, ctx,
3104 tgid_base_stuff, ARRAY_SIZE(tgid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003105}
3106
Arjan van de Ven00977a52007-02-12 00:55:34 -08003107static const struct file_operations proc_tgid_base_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003108 .read = generic_read_dir,
Al Virof50752e2016-04-20 17:13:54 -04003109 .iterate_shared = proc_tgid_base_readdir,
3110 .llseek = generic_file_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003111};
3112
Christian Brauner3eb39f42018-11-19 00:51:56 +01003113struct pid *tgid_pidfd_to_pid(const struct file *file)
3114{
Christian Brauner30d158b2019-06-27 11:35:14 +02003115 if (file->f_op != &proc_tgid_base_operations)
Christian Brauner3eb39f42018-11-19 00:51:56 +01003116 return ERR_PTR(-EBADF);
3117
3118 return proc_pid(file_inode(file));
3119}
3120
Al Viro00cd8dd2012-06-10 17:13:09 -04003121static struct dentry *proc_tgid_base_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
3122{
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07003123 return proc_pident_lookup(dir, dentry,
Alexey Dobriyand5a572a2019-03-11 23:28:51 -07003124 tgid_base_stuff,
3125 tgid_base_stuff + ARRAY_SIZE(tgid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003126}
3127
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08003128static const struct inode_operations proc_tgid_base_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003129 .lookup = proc_tgid_base_lookup,
3130 .getattr = pid_getattr,
3131 .setattr = proc_setattr,
Vasiliy Kulikov04996802012-01-10 15:11:31 -08003132 .permission = proc_pid_permission,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003133};
3134
Pavel Emelyanov60347f62007-10-18 23:40:03 -07003135static void proc_flush_task_mnt(struct vfsmount *mnt, pid_t pid, pid_t tgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136{
Eric W. Biederman48e64842006-06-26 00:25:48 -07003137 struct dentry *dentry, *leader, *dir;
Alexey Dobriyane3912ac2018-02-06 15:36:51 -08003138 char buf[10 + 1];
Eric W. Biederman48e64842006-06-26 00:25:48 -07003139 struct qstr name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140
Eric W. Biederman48e64842006-06-26 00:25:48 -07003141 name.name = buf;
Alexey Dobriyane3912ac2018-02-06 15:36:51 -08003142 name.len = snprintf(buf, sizeof(buf), "%u", pid);
Al Viro4f522a22013-02-11 23:20:37 -05003143 /* no ->d_hash() rejects on procfs */
Pavel Emelyanov60347f62007-10-18 23:40:03 -07003144 dentry = d_hash_and_lookup(mnt->mnt_root, &name);
Eric W. Biederman48e64842006-06-26 00:25:48 -07003145 if (dentry) {
Eric W. Biedermanbbd51922014-02-13 10:24:23 -08003146 d_invalidate(dentry);
Eric W. Biederman48e64842006-06-26 00:25:48 -07003147 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149
Oleg Nesterovc35a7f12014-12-10 15:54:56 -08003150 if (pid == tgid)
3151 return;
3152
Eric W. Biederman48e64842006-06-26 00:25:48 -07003153 name.name = buf;
Alexey Dobriyane3912ac2018-02-06 15:36:51 -08003154 name.len = snprintf(buf, sizeof(buf), "%u", tgid);
Pavel Emelyanov60347f62007-10-18 23:40:03 -07003155 leader = d_hash_and_lookup(mnt->mnt_root, &name);
Eric W. Biederman48e64842006-06-26 00:25:48 -07003156 if (!leader)
3157 goto out;
3158
3159 name.name = "task";
3160 name.len = strlen(name.name);
3161 dir = d_hash_and_lookup(leader, &name);
3162 if (!dir)
3163 goto out_put_leader;
3164
3165 name.name = buf;
Alexey Dobriyane3912ac2018-02-06 15:36:51 -08003166 name.len = snprintf(buf, sizeof(buf), "%u", pid);
Eric W. Biederman48e64842006-06-26 00:25:48 -07003167 dentry = d_hash_and_lookup(dir, &name);
3168 if (dentry) {
Eric W. Biedermanbbd51922014-02-13 10:24:23 -08003169 d_invalidate(dentry);
Eric W. Biederman48e64842006-06-26 00:25:48 -07003170 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171 }
Eric W. Biederman48e64842006-06-26 00:25:48 -07003172
3173 dput(dir);
3174out_put_leader:
3175 dput(leader);
3176out:
3177 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178}
3179
Randy Dunlap0895e912007-10-21 21:00:10 -07003180/**
3181 * proc_flush_task - Remove dcache entries for @task from the /proc dcache.
3182 * @task: task that should be flushed.
3183 *
3184 * When flushing dentries from proc, one needs to flush them from global
Pavel Emelyanov60347f62007-10-18 23:40:03 -07003185 * proc (proc_mnt) and from all the namespaces' procs this task was seen
Randy Dunlap0895e912007-10-21 21:00:10 -07003186 * in. This call is supposed to do all of this job.
3187 *
3188 * Looks in the dcache for
3189 * /proc/@pid
3190 * /proc/@tgid/task/@pid
3191 * if either directory is present flushes it and all of it'ts children
3192 * from the dcache.
3193 *
3194 * It is safe and reasonable to cache /proc entries for a task until
3195 * that task exits. After that they just clog up the dcache with
3196 * useless entries, possibly causing useful dcache entries to be
3197 * flushed instead. This routine is proved to flush those useless
3198 * dcache entries at process exit time.
3199 *
3200 * NOTE: This routine is just an optimization so it does not guarantee
3201 * that no dcache entries will exist at process exit time it
3202 * just makes it very unlikely that any will persist.
Pavel Emelyanov60347f62007-10-18 23:40:03 -07003203 */
3204
3205void proc_flush_task(struct task_struct *task)
3206{
Eric W. Biederman9fcc2d12007-11-14 17:00:07 -08003207 int i;
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07003208 struct pid *pid, *tgid;
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07003209 struct upid *upid;
3210
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07003211 pid = task_pid(task);
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07003212 tgid = task_tgid(task);
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07003213
Eric W. Biederman9fcc2d12007-11-14 17:00:07 -08003214 for (i = 0; i <= pid->level; i++) {
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07003215 upid = &pid->numbers[i];
3216 proc_flush_task_mnt(upid->ns->proc_mnt, upid->nr,
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07003217 tgid->numbers[i].nr);
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07003218 }
Pavel Emelyanov60347f62007-10-18 23:40:03 -07003219}
3220
Al Viro0168b9e2018-05-03 09:21:05 -04003221static struct dentry *proc_pid_instantiate(struct dentry * dentry,
Al Viroc52a47a2013-06-15 11:15:20 +04003222 struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003223{
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003224 struct inode *inode;
3225
Al Viro0168b9e2018-05-03 09:21:05 -04003226 inode = proc_pid_make_inode(dentry->d_sb, task, S_IFDIR | S_IRUGO | S_IXUGO);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003227 if (!inode)
Al Viro0168b9e2018-05-03 09:21:05 -04003228 return ERR_PTR(-ENOENT);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003229
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003230 inode->i_op = &proc_tgid_base_inode_operations;
3231 inode->i_fop = &proc_tgid_base_operations;
3232 inode->i_flags|=S_IMMUTABLE;
Vegard Nossumaed54172008-06-05 22:46:53 -07003233
Alexey Dobriyan1270dd82016-12-12 16:45:32 -08003234 set_nlink(inode, nlink_tgid);
Al Viro1bbc5512018-05-02 21:26:16 -04003235 pid_update_inode(task, inode);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003236
Nick Pigginfb045ad2011-01-07 17:49:55 +11003237 d_set_d_op(dentry, &pid_dentry_operations);
Al Viro0168b9e2018-05-03 09:21:05 -04003238 return d_splice_alias(inode, dentry);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003239}
3240
Zhikang Zhang867aacc2019-03-05 15:50:29 -08003241struct dentry *proc_pid_lookup(struct dentry *dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242{
3243 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244 unsigned tgid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003245 struct pid_namespace *ns;
Al Viro0168b9e2018-05-03 09:21:05 -04003246 struct dentry *result = ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247
Alexey Dobriyandbcdb502014-08-08 14:21:25 -07003248 tgid = name_to_int(&dentry->d_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249 if (tgid == ~0U)
3250 goto out;
3251
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003252 ns = dentry->d_sb->s_fs_info;
Eric W. Biedermande758732006-06-26 00:25:51 -07003253 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003254 task = find_task_by_pid_ns(tgid, ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255 if (task)
3256 get_task_struct(task);
Eric W. Biedermande758732006-06-26 00:25:51 -07003257 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258 if (!task)
3259 goto out;
3260
Al Viro0168b9e2018-05-03 09:21:05 -04003261 result = proc_pid_instantiate(dentry, task, NULL);
Eric W. Biederman48e64842006-06-26 00:25:48 -07003262 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263out:
Al Viro0168b9e2018-05-03 09:21:05 -04003264 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265}
3266
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267/*
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003268 * Find the first task with tgid >= tgid
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003269 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270 */
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003271struct tgid_iter {
3272 unsigned int tgid;
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003273 struct task_struct *task;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003274};
3275static struct tgid_iter next_tgid(struct pid_namespace *ns, struct tgid_iter iter)
3276{
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003277 struct pid *pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003279 if (iter.task)
3280 put_task_struct(iter.task);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003281 rcu_read_lock();
3282retry:
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003283 iter.task = NULL;
3284 pid = find_ge_pid(iter.tgid, ns);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003285 if (pid) {
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003286 iter.tgid = pid_nr_ns(pid, ns);
3287 iter.task = pid_task(pid, PIDTYPE_PID);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003288 /* What we to know is if the pid we have find is the
3289 * pid of a thread_group_leader. Testing for task
3290 * being a thread_group_leader is the obvious thing
3291 * todo but there is a window when it fails, due to
3292 * the pid transfer logic in de_thread.
3293 *
3294 * So we perform the straight forward test of seeing
3295 * if the pid we have found is the pid of a thread
3296 * group leader, and don't worry if the task we have
3297 * found doesn't happen to be a thread group leader.
3298 * As we don't care in the case of readdir.
3299 */
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003300 if (!iter.task || !has_group_leader_pid(iter.task)) {
3301 iter.tgid += 1;
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003302 goto retry;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003303 }
3304 get_task_struct(iter.task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305 }
Eric W. Biederman454cc102006-06-26 00:25:51 -07003306 rcu_read_unlock();
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003307 return iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308}
3309
Eric W. Biederman00978752014-07-31 03:10:50 -07003310#define TGID_OFFSET (FIRST_PROCESS_ENTRY + 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311
3312/* for the /proc/ directory itself, after non-process stuff has been done */
Al Virof0c3b502013-05-16 12:07:31 -04003313int proc_pid_readdir(struct file *file, struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314{
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003315 struct tgid_iter iter;
Christoph Hellwig76f668b2018-05-16 07:19:01 +02003316 struct pid_namespace *ns = proc_pid_ns(file_inode(file));
Al Virof0c3b502013-05-16 12:07:31 -04003317 loff_t pos = ctx->pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318
Al Viro021ada72013-03-29 19:27:05 -04003319 if (pos >= PID_MAX_LIMIT + TGID_OFFSET)
Al Virof0c3b502013-05-16 12:07:31 -04003320 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321
Eric W. Biederman00978752014-07-31 03:10:50 -07003322 if (pos == TGID_OFFSET - 2) {
David Howells2b0143b2015-03-17 22:25:59 +00003323 struct inode *inode = d_inode(ns->proc_self);
Al Virodb963162013-06-15 10:45:10 +04003324 if (!dir_emit(ctx, "self", 4, inode->i_ino, DT_LNK))
Al Virof0c3b502013-05-16 12:07:31 -04003325 return 0;
Eric W. Biederman00978752014-07-31 03:10:50 -07003326 ctx->pos = pos = pos + 1;
Al Viro021ada72013-03-29 19:27:05 -04003327 }
Eric W. Biederman00978752014-07-31 03:10:50 -07003328 if (pos == TGID_OFFSET - 1) {
David Howells2b0143b2015-03-17 22:25:59 +00003329 struct inode *inode = d_inode(ns->proc_thread_self);
Eric W. Biederman00978752014-07-31 03:10:50 -07003330 if (!dir_emit(ctx, "thread-self", 11, inode->i_ino, DT_LNK))
3331 return 0;
3332 ctx->pos = pos = pos + 1;
3333 }
3334 iter.tgid = pos - TGID_OFFSET;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003335 iter.task = NULL;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003336 for (iter = next_tgid(ns, iter);
3337 iter.task;
3338 iter.tgid += 1, iter = next_tgid(ns, iter)) {
Alexey Dobriyane3912ac2018-02-06 15:36:51 -08003339 char name[10 + 1];
Alexey Dobriyana4ef3892018-06-07 17:10:10 -07003340 unsigned int len;
Eric Dumazet3ba4bce2017-01-24 15:18:07 -08003341
3342 cond_resched();
Lafcadio Wluiki796f5712017-02-24 15:00:23 -08003343 if (!has_pid_permissions(ns, iter.task, HIDEPID_INVISIBLE))
Al Virof0c3b502013-05-16 12:07:31 -04003344 continue;
Vasiliy Kulikov04996802012-01-10 15:11:31 -08003345
Alexey Dobriyane3912ac2018-02-06 15:36:51 -08003346 len = snprintf(name, sizeof(name), "%u", iter.tgid);
Al Virof0c3b502013-05-16 12:07:31 -04003347 ctx->pos = iter.tgid + TGID_OFFSET;
3348 if (!proc_fill_cache(file, ctx, name, len,
3349 proc_pid_instantiate, iter.task, NULL)) {
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003350 put_task_struct(iter.task);
Al Virof0c3b502013-05-16 12:07:31 -04003351 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353 }
Al Virof0c3b502013-05-16 12:07:31 -04003354 ctx->pos = PID_MAX_LIMIT + TGID_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355 return 0;
3356}
3357
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003358/*
Janis Danisevskis1b3044e2016-05-20 17:00:08 -07003359 * proc_tid_comm_permission is a special permission function exclusively
3360 * used for the node /proc/<pid>/task/<tid>/comm.
3361 * It bypasses generic permission checks in the case where a task of the same
3362 * task group attempts to access the node.
3363 * The rationale behind this is that glibc and bionic access this node for
3364 * cross thread naming (pthread_set/getname_np(!self)). However, if
3365 * PR_SET_DUMPABLE gets set to 0 this node among others becomes uid=0 gid=0,
3366 * which locks out the cross thread naming implementation.
3367 * This function makes sure that the node is always accessible for members of
3368 * same thread group.
3369 */
3370static int proc_tid_comm_permission(struct inode *inode, int mask)
3371{
3372 bool is_same_tgroup;
3373 struct task_struct *task;
3374
3375 task = get_proc_task(inode);
3376 if (!task)
3377 return -ESRCH;
3378 is_same_tgroup = same_thread_group(current, task);
3379 put_task_struct(task);
3380
3381 if (likely(is_same_tgroup && !(mask & MAY_EXEC))) {
3382 /* This file (/proc/<pid>/task/<tid>/comm) can always be
3383 * read or written by the members of the corresponding
3384 * thread group.
3385 */
3386 return 0;
3387 }
3388
3389 return generic_permission(inode, mask);
3390}
3391
3392static const struct inode_operations proc_tid_comm_inode_operations = {
3393 .permission = proc_tid_comm_permission,
3394};
3395
3396/*
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003397 * Tasks
3398 */
Eric Dumazetc5141e62007-05-08 00:26:15 -07003399static const struct pid_entry tid_base_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003400 DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations),
Jerome Marchand38355412010-04-27 13:13:06 -07003401 DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations),
Eric W. Biederman6b4e3062010-03-07 16:41:34 -08003402 DIR("ns", S_IRUSR|S_IXUGO, proc_ns_dir_inode_operations, proc_ns_dir_operations),
Eric W. Biederman6ba8ed72014-07-31 16:27:08 -07003403#ifdef CONFIG_NET
3404 DIR("net", S_IRUGO|S_IXUGO, proc_net_inode_operations, proc_net_operations),
3405#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003406 REG("environ", S_IRUSR, proc_environ_operations),
Al Viroc5317162016-10-05 18:43:43 -04003407 REG("auxv", S_IRUSR, proc_auxv_operations),
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003408 ONE("status", S_IRUGO, proc_pid_status),
Djalal Harouni35a35042014-04-07 15:38:36 -07003409 ONE("personality", S_IRUSR, proc_pid_personality),
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -07003410 ONE("limits", S_IRUGO, proc_pid_limits),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02003411#ifdef CONFIG_SCHED_DEBUG
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003412 REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02003413#endif
Janis Danisevskis1b3044e2016-05-20 17:00:08 -07003414 NOD("comm", S_IFREG|S_IRUGO|S_IWUSR,
3415 &proc_tid_comm_inode_operations,
3416 &proc_pid_set_comm_operations, {}),
Roland McGrathebcb6732008-07-25 19:46:00 -07003417#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
Alexey Dobriyan09d93bd2014-08-08 14:21:39 -07003418 ONE("syscall", S_IRUSR, proc_pid_syscall),
Roland McGrathebcb6732008-07-25 19:46:00 -07003419#endif
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -07003420 REG("cmdline", S_IRUGO, proc_pid_cmdline_ops),
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003421 ONE("stat", S_IRUGO, proc_tid_stat),
3422 ONE("statm", S_IRUGO, proc_pid_statm),
Vlastimil Babka871305b2018-08-21 21:52:48 -07003423 REG("maps", S_IRUGO, proc_pid_maps_operations),
Iago López Galeiras2e13ba52015-06-25 15:00:57 -07003424#ifdef CONFIG_PROC_CHILDREN
Cyrill Gorcunov818411612012-05-31 16:26:43 -07003425 REG("children", S_IRUGO, proc_tid_children_operations),
3426#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003427#ifdef CONFIG_NUMA
Vlastimil Babka871305b2018-08-21 21:52:48 -07003428 REG("numa_maps", S_IRUGO, proc_pid_numa_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003429#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003430 REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations),
3431 LNK("cwd", proc_cwd_link),
3432 LNK("root", proc_root_link),
3433 LNK("exe", proc_exe_link),
3434 REG("mounts", S_IRUGO, proc_mounts_operations),
3435 REG("mountinfo", S_IRUGO, proc_mountinfo_operations),
Matt Mackall1e883282008-02-04 22:29:07 -08003436#ifdef CONFIG_PROC_PAGE_MONITOR
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003437 REG("clear_refs", S_IWUSR, proc_clear_refs_operations),
Vlastimil Babka871305b2018-08-21 21:52:48 -07003438 REG("smaps", S_IRUGO, proc_pid_smaps_operations),
Daniel Colascione493b0e92017-09-06 16:25:08 -07003439 REG("smaps_rollup", S_IRUGO, proc_pid_smaps_rollup_operations),
Djalal Harouni32ed74a2014-04-07 15:38:38 -07003440 REG("pagemap", S_IRUSR, proc_pagemap_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003441#endif
3442#ifdef CONFIG_SECURITY
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003443 DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003444#endif
3445#ifdef CONFIG_KALLSYMS
Alexey Dobriyanedfcd602014-08-08 14:21:44 -07003446 ONE("wchan", S_IRUGO, proc_pid_wchan),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003447#endif
Ken Chen2ec220e2008-11-10 11:26:08 +03003448#ifdef CONFIG_STACKTRACE
Djalal Harouni35a35042014-04-07 15:38:36 -07003449 ONE("stack", S_IRUSR, proc_pid_stack),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003450#endif
Naveen N. Rao5968cec2015-06-30 14:36:03 +05303451#ifdef CONFIG_SCHED_INFO
Alexey Dobriyanf6e826c2014-08-08 14:21:46 -07003452 ONE("schedstat", S_IRUGO, proc_pid_schedstat),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003453#endif
Arjan van de Ven97455122008-01-25 21:08:34 +01003454#ifdef CONFIG_LATENCYTOP
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003455 REG("latency", S_IRUGO, proc_lstats_operations),
Arjan van de Ven97455122008-01-25 21:08:34 +01003456#endif
Paul Menage8793d852007-10-18 23:39:39 -07003457#ifdef CONFIG_PROC_PID_CPUSET
Zefan Li52de4772014-09-18 16:03:36 +08003458 ONE("cpuset", S_IRUGO, proc_cpuset_show),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003459#endif
Paul Menagea4243162007-10-18 23:39:35 -07003460#ifdef CONFIG_CGROUPS
Zefan Li006f4ac2014-09-18 16:03:15 +08003461 ONE("cgroup", S_IRUGO, proc_cgroup_show),
Paul Menagea4243162007-10-18 23:39:35 -07003462#endif
Alexey Dobriyan6ba51e32014-08-08 14:21:48 -07003463 ONE("oom_score", S_IRUGO, proc_oom_score),
David Rientjesfa0cbbf2012-11-12 17:53:04 -08003464 REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adj_operations),
David Rientjesa63d83f2010-08-09 17:19:46 -07003465 REG("oom_score_adj", S_IRUGO|S_IWUSR, proc_oom_score_adj_operations),
Richard Guy Briggs4b7d2482019-01-22 17:06:39 -05003466#ifdef CONFIG_AUDIT
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003467 REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations),
Al Viro26ec3c62011-02-15 21:24:05 -05003468 REG("sessionid", S_IRUGO, proc_sessionid_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003469#endif
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08003470#ifdef CONFIG_FAULT_INJECTION
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003471 REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations),
Akinobu Mita1203c8e2017-07-14 14:49:57 -07003472 REG("fail-nth", 0644, proc_fail_nth_operations),
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08003473#endif
Andrea Righi297c5d92008-07-25 01:48:49 -07003474#ifdef CONFIG_TASK_IO_ACCOUNTING
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07003475 ONE("io", S_IRUSR, proc_tid_io_accounting),
Andrea Righi297c5d92008-07-25 01:48:49 -07003476#endif
Eric W. Biederman22d917d2011-11-17 00:11:58 -08003477#ifdef CONFIG_USER_NS
3478 REG("uid_map", S_IRUGO|S_IWUSR, proc_uid_map_operations),
3479 REG("gid_map", S_IRUGO|S_IWUSR, proc_gid_map_operations),
Eric W. Biedermanf76d2072012-08-30 01:24:05 -07003480 REG("projid_map", S_IRUGO|S_IWUSR, proc_projid_map_operations),
Eric W. Biederman9cc46512014-12-02 12:27:26 -06003481 REG("setgroups", S_IRUGO|S_IWUSR, proc_setgroups_operations),
Eric W. Biederman22d917d2011-11-17 00:11:58 -08003482#endif
Josh Poimboeuf7c23b332017-02-13 19:42:41 -06003483#ifdef CONFIG_LIVEPATCH
3484 ONE("patch_state", S_IRUSR, proc_pid_patch_state),
3485#endif
Aubrey Li68bc30b2019-06-06 09:22:34 +08003486#ifdef CONFIG_PROC_PID_ARCH_STATUS
3487 ONE("arch_status", S_IRUGO, proc_pid_arch_status),
3488#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003489};
3490
Al Virof0c3b502013-05-16 12:07:31 -04003491static int proc_tid_base_readdir(struct file *file, struct dir_context *ctx)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003492{
Al Virof0c3b502013-05-16 12:07:31 -04003493 return proc_pident_readdir(file, ctx,
3494 tid_base_stuff, ARRAY_SIZE(tid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003495}
3496
Al Viro00cd8dd2012-06-10 17:13:09 -04003497static struct dentry *proc_tid_base_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
3498{
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07003499 return proc_pident_lookup(dir, dentry,
Alexey Dobriyand5a572a2019-03-11 23:28:51 -07003500 tid_base_stuff,
3501 tid_base_stuff + ARRAY_SIZE(tid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003502}
3503
Arjan van de Ven00977a52007-02-12 00:55:34 -08003504static const struct file_operations proc_tid_base_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003505 .read = generic_read_dir,
Al Virof50752e2016-04-20 17:13:54 -04003506 .iterate_shared = proc_tid_base_readdir,
3507 .llseek = generic_file_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003508};
3509
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08003510static const struct inode_operations proc_tid_base_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003511 .lookup = proc_tid_base_lookup,
3512 .getattr = pid_getattr,
3513 .setattr = proc_setattr,
3514};
3515
Al Viro0168b9e2018-05-03 09:21:05 -04003516static struct dentry *proc_task_instantiate(struct dentry *dentry,
3517 struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003518{
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003519 struct inode *inode;
Al Viro0168b9e2018-05-03 09:21:05 -04003520 inode = proc_pid_make_inode(dentry->d_sb, task, S_IFDIR | S_IRUGO | S_IXUGO);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003521 if (!inode)
Al Viro0168b9e2018-05-03 09:21:05 -04003522 return ERR_PTR(-ENOENT);
Al Viro1bbc5512018-05-02 21:26:16 -04003523
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003524 inode->i_op = &proc_tid_base_inode_operations;
3525 inode->i_fop = &proc_tid_base_operations;
Al Viro1bbc5512018-05-02 21:26:16 -04003526 inode->i_flags |= S_IMMUTABLE;
Vegard Nossumaed54172008-06-05 22:46:53 -07003527
Alexey Dobriyan1270dd82016-12-12 16:45:32 -08003528 set_nlink(inode, nlink_tid);
Al Viro1bbc5512018-05-02 21:26:16 -04003529 pid_update_inode(task, inode);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003530
Nick Pigginfb045ad2011-01-07 17:49:55 +11003531 d_set_d_op(dentry, &pid_dentry_operations);
Al Viro0168b9e2018-05-03 09:21:05 -04003532 return d_splice_alias(inode, dentry);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003533}
3534
Al Viro00cd8dd2012-06-10 17:13:09 -04003535static struct dentry *proc_task_lookup(struct inode *dir, struct dentry * dentry, unsigned int flags)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003536{
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003537 struct task_struct *task;
3538 struct task_struct *leader = get_proc_task(dir);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003539 unsigned tid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003540 struct pid_namespace *ns;
Al Viro0168b9e2018-05-03 09:21:05 -04003541 struct dentry *result = ERR_PTR(-ENOENT);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003542
3543 if (!leader)
3544 goto out_no_task;
3545
Alexey Dobriyandbcdb502014-08-08 14:21:25 -07003546 tid = name_to_int(&dentry->d_name);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003547 if (tid == ~0U)
3548 goto out;
3549
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003550 ns = dentry->d_sb->s_fs_info;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003551 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003552 task = find_task_by_pid_ns(tid, ns);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003553 if (task)
3554 get_task_struct(task);
3555 rcu_read_unlock();
3556 if (!task)
3557 goto out;
Pavel Emelyanovbac0abd2007-10-18 23:40:18 -07003558 if (!same_thread_group(leader, task))
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003559 goto out_drop_task;
3560
Al Viro0168b9e2018-05-03 09:21:05 -04003561 result = proc_task_instantiate(dentry, task, NULL);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003562out_drop_task:
3563 put_task_struct(task);
3564out:
3565 put_task_struct(leader);
3566out_no_task:
Al Viro0168b9e2018-05-03 09:21:05 -04003567 return result;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003568}
3569
3570/*
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003571 * Find the first tid of a thread group to return to user space.
3572 *
3573 * Usually this is just the thread group leader, but if the users
3574 * buffer was too small or there was a seek into the middle of the
3575 * directory we have more work todo.
3576 *
3577 * In the case of a short read we start with find_task_by_pid.
3578 *
3579 * In the case of a seek we start with the leader and walk nr
3580 * threads past it.
3581 */
Oleg Nesterov9f6e9632014-01-23 15:55:40 -08003582static struct task_struct *first_tid(struct pid *pid, int tid, loff_t f_pos,
3583 struct pid_namespace *ns)
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003584{
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003585 struct task_struct *pos, *task;
Oleg Nesterov9f6e9632014-01-23 15:55:40 -08003586 unsigned long nr = f_pos;
3587
3588 if (nr != f_pos) /* 32bit overflow? */
3589 return NULL;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003590
Eric W. Biedermancc288732006-06-26 00:26:01 -07003591 rcu_read_lock();
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003592 task = pid_task(pid, PIDTYPE_PID);
3593 if (!task)
3594 goto fail;
3595
3596 /* Attempt to start with the tid of a thread */
Oleg Nesterov9f6e9632014-01-23 15:55:40 -08003597 if (tid && nr) {
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003598 pos = find_task_by_pid_ns(tid, ns);
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003599 if (pos && same_thread_group(pos, task))
Oleg Nesterova872ff02006-06-26 00:26:01 -07003600 goto found;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003601 }
3602
3603 /* If nr exceeds the number of threads there is nothing todo */
Oleg Nesterov9f6e9632014-01-23 15:55:40 -08003604 if (nr >= get_nr_threads(task))
Oleg Nesterovc986c142014-01-23 15:55:38 -08003605 goto fail;
Oleg Nesterova872ff02006-06-26 00:26:01 -07003606
3607 /* If we haven't found our starting place yet start
3608 * with the leader and walk nr threads forward.
3609 */
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003610 pos = task = task->group_leader;
Oleg Nesterovc986c142014-01-23 15:55:38 -08003611 do {
Oleg Nesterov9f6e9632014-01-23 15:55:40 -08003612 if (!nr--)
Oleg Nesterovc986c142014-01-23 15:55:38 -08003613 goto found;
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003614 } while_each_thread(task, pos);
Oleg Nesterovc986c142014-01-23 15:55:38 -08003615fail:
3616 pos = NULL;
3617 goto out;
Oleg Nesterova872ff02006-06-26 00:26:01 -07003618found:
3619 get_task_struct(pos);
3620out:
Eric W. Biedermancc288732006-06-26 00:26:01 -07003621 rcu_read_unlock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003622 return pos;
3623}
3624
3625/*
3626 * Find the next thread in the thread list.
3627 * Return NULL if there is an error or no next thread.
3628 *
3629 * The reference to the input task_struct is released.
3630 */
3631static struct task_struct *next_tid(struct task_struct *start)
3632{
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003633 struct task_struct *pos = NULL;
Eric W. Biedermancc288732006-06-26 00:26:01 -07003634 rcu_read_lock();
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003635 if (pid_alive(start)) {
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003636 pos = next_thread(start);
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003637 if (thread_group_leader(pos))
3638 pos = NULL;
3639 else
3640 get_task_struct(pos);
3641 }
Eric W. Biedermancc288732006-06-26 00:26:01 -07003642 rcu_read_unlock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003643 put_task_struct(start);
3644 return pos;
3645}
3646
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647/* for the /proc/TGID/task/ directories */
Al Virof0c3b502013-05-16 12:07:31 -04003648static int proc_task_readdir(struct file *file, struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649{
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003650 struct inode *inode = file_inode(file);
3651 struct task_struct *task;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003652 struct pid_namespace *ns;
Al Virof0c3b502013-05-16 12:07:31 -04003653 int tid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003655 if (proc_inode_is_dead(inode))
Al Virof0c3b502013-05-16 12:07:31 -04003656 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657
Al Virof0c3b502013-05-16 12:07:31 -04003658 if (!dir_emit_dots(file, ctx))
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003659 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003661 /* f_version caches the tgid value that the last readdir call couldn't
3662 * return. lseek aka telldir automagically resets f_version to 0.
3663 */
Christoph Hellwig76f668b2018-05-16 07:19:01 +02003664 ns = proc_pid_ns(inode);
Al Virof0c3b502013-05-16 12:07:31 -04003665 tid = (int)file->f_version;
3666 file->f_version = 0;
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003667 for (task = first_tid(proc_pid(inode), tid, ctx->pos - 2, ns);
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003668 task;
Al Virof0c3b502013-05-16 12:07:31 -04003669 task = next_tid(task), ctx->pos++) {
Alexey Dobriyane3912ac2018-02-06 15:36:51 -08003670 char name[10 + 1];
Alexey Dobriyana4ef3892018-06-07 17:10:10 -07003671 unsigned int len;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003672 tid = task_pid_nr_ns(task, ns);
Alexey Dobriyane3912ac2018-02-06 15:36:51 -08003673 len = snprintf(name, sizeof(name), "%u", tid);
Al Virof0c3b502013-05-16 12:07:31 -04003674 if (!proc_fill_cache(file, ctx, name, len,
3675 proc_task_instantiate, task, NULL)) {
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003676 /* returning this tgid failed, save it as the first
3677 * pid for the next readir call */
Al Virof0c3b502013-05-16 12:07:31 -04003678 file->f_version = (u64)tid;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003679 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680 break;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003681 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682 }
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003683
Al Virof0c3b502013-05-16 12:07:31 -04003684 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685}
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003686
David Howellsa528d352017-01-31 16:46:22 +00003687static int proc_task_getattr(const struct path *path, struct kstat *stat,
3688 u32 request_mask, unsigned int query_flags)
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003689{
David Howellsa528d352017-01-31 16:46:22 +00003690 struct inode *inode = d_inode(path->dentry);
Eric W. Biederman99f89552006-06-26 00:25:55 -07003691 struct task_struct *p = get_proc_task(inode);
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003692 generic_fillattr(inode, stat);
3693
Eric W. Biederman99f89552006-06-26 00:25:55 -07003694 if (p) {
Eric W. Biederman99f89552006-06-26 00:25:55 -07003695 stat->nlink += get_nr_threads(p);
Eric W. Biederman99f89552006-06-26 00:25:55 -07003696 put_task_struct(p);
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003697 }
3698
3699 return 0;
3700}
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003701
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08003702static const struct inode_operations proc_task_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003703 .lookup = proc_task_lookup,
3704 .getattr = proc_task_getattr,
3705 .setattr = proc_setattr,
Vasiliy Kulikov04996802012-01-10 15:11:31 -08003706 .permission = proc_pid_permission,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003707};
3708
Arjan van de Ven00977a52007-02-12 00:55:34 -08003709static const struct file_operations proc_task_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003710 .read = generic_read_dir,
Al Virof50752e2016-04-20 17:13:54 -04003711 .iterate_shared = proc_task_readdir,
3712 .llseek = generic_file_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003713};
Alexey Dobriyan1270dd82016-12-12 16:45:32 -08003714
3715void __init set_proc_pid_nlink(void)
3716{
3717 nlink_tid = pid_entry_nlink(tid_base_stuff, ARRAY_SIZE(tid_base_stuff));
3718 nlink_tgid = pid_entry_nlink(tgid_base_stuff, ARRAY_SIZE(tgid_base_stuff));
3719}