blob: 1b548d060d28ad9f5d950f865459b622555fd181 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <linux/string.h>
63#include <linux/seq_file.h>
64#include <linux/namei.h>
Kirill Korotaev6b3286e2006-12-08 02:37:56 -080065#include <linux/mnt_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#include <linux/mm.h>
David Rientjesa63d83f2010-08-09 17:19:46 -070067#include <linux/swap.h>
Dipankar Sarmab8359962005-09-09 13:04:14 -070068#include <linux/rcupdate.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#include <linux/kallsyms.h>
Ken Chen2ec220e2008-11-10 11:26:08 +030070#include <linux/stacktrace.h>
Neil Hormand85f50d2007-10-18 23:40:37 -070071#include <linux/resource.h>
Kees Cook5096add2007-05-08 00:26:04 -070072#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#include <linux/mount.h>
74#include <linux/security.h>
75#include <linux/ptrace.h>
Roland McGrath0d094ef2008-07-25 19:45:49 -070076#include <linux/tracehook.h>
Andrew Morton87ebdc02013-02-27 17:03:16 -080077#include <linux/printk.h>
Alexey Dobriyanefb1a572018-02-06 15:37:24 -080078#include <linux/cache.h>
Paul Menagea4243162007-10-18 23:39:35 -070079#include <linux/cgroup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070080#include <linux/cpuset.h>
81#include <linux/audit.h>
Al Viro5addc5d2005-11-07 17:15:49 -050082#include <linux/poll.h>
Serge E. Hallyn1651e142006-10-02 02:18:08 -070083#include <linux/nsproxy.h>
Alexey Dobriyan8ac773b2006-10-19 23:28:32 -070084#include <linux/oom.h>
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -070085#include <linux/elf.h>
Pavel Emelyanov60347f62007-10-18 23:40:03 -070086#include <linux/pid_namespace.h>
Eric W. Biederman22d917d2011-11-17 00:11:58 -080087#include <linux/user_namespace.h>
Al Viro5ad4e532009-03-29 19:50:06 -040088#include <linux/fs_struct.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090089#include <linux/slab.h>
Ingo Molnar4eb5aaa2017-02-08 18:51:29 +010090#include <linux/sched/autogroup.h>
Ingo Molnar6e84f312017-02-08 18:51:29 +010091#include <linux/sched/mm.h>
Ingo Molnarf7ccbae2017-02-08 18:51:30 +010092#include <linux/sched/coredump.h>
Ingo Molnarb17b0152017-02-08 18:51:35 +010093#include <linux/sched/debug.h>
Ingo Molnar3905f9a2017-02-05 12:07:04 +010094#include <linux/sched/stat.h>
Pavel Emelyanov640708a2012-01-10 15:11:23 -080095#include <linux/flex_array.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 Torvaldse4b4e442018-05-17 13:04:17 -0700212static ssize_t get_mm_cmdline(struct mm_struct *mm, char __user *buf,
Linus Torvalds5ab82712018-05-17 15:17:33 -0700213 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700215 unsigned long arg_start, arg_end, env_start, env_end;
Linus Torvalds5ab82712018-05-17 15:17:33 -0700216 unsigned long pos, len;
217 char *page;
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700218
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700219 /* Check if process spawned far enough to have cmdline. */
Linus Torvaldse4b4e442018-05-17 13:04:17 -0700220 if (!mm->env_end)
221 return 0;
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700222
Yang Shi88aa7cc2018-06-07 17:05:28 -0700223 spin_lock(&mm->arg_lock);
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700224 arg_start = mm->arg_start;
225 arg_end = mm->arg_end;
226 env_start = mm->env_start;
227 env_end = mm->env_end;
Yang Shi88aa7cc2018-06-07 17:05:28 -0700228 spin_unlock(&mm->arg_lock);
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700229
Linus Torvalds5ab82712018-05-17 15:17:33 -0700230 if (arg_start >= arg_end)
231 return 0;
Alexey Dobriyan6a6cbe72018-06-07 17:09:59 -0700232
Alexey Dobriyan2ca66ff2014-08-08 14:21:41 -0700233 /*
Linus Torvalds5ab82712018-05-17 15:17:33 -0700234 * We have traditionally allowed the user to re-write
235 * the argument strings and overflow the end result
236 * into the environment section. But only do that if
237 * the environment area is contiguous to the arguments.
Alexey Dobriyan2ca66ff2014-08-08 14:21:41 -0700238 */
Linus Torvalds5ab82712018-05-17 15:17:33 -0700239 if (env_start != arg_end || env_start >= env_end)
240 env_start = env_end = arg_end;
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700241
Linus Torvaldsf5b65342018-06-20 09:47:20 +0900242 /* .. and limit it to a maximum of one page of slop */
243 if (env_end >= arg_end + PAGE_SIZE)
244 env_end = arg_end + PAGE_SIZE - 1;
245
Linus Torvalds5ab82712018-05-17 15:17:33 -0700246 /* We're not going to care if "*ppos" has high bits set */
247 pos = arg_start + *ppos;
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700248
Linus Torvalds5ab82712018-05-17 15:17:33 -0700249 /* .. but we do check the result is in the proper range */
250 if (pos < arg_start || pos >= env_end)
251 return 0;
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700252
Linus Torvalds5ab82712018-05-17 15:17:33 -0700253 /* .. and we never go past env_end */
254 if (env_end - pos < count)
255 count = env_end - pos;
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700256
Linus Torvalds5ab82712018-05-17 15:17:33 -0700257 page = (char *)__get_free_page(GFP_KERNEL);
258 if (!page)
259 return -ENOMEM;
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700260
Linus Torvalds5ab82712018-05-17 15:17:33 -0700261 len = 0;
262 while (count) {
263 int got;
264 size_t size = min_t(size_t, PAGE_SIZE, count);
Linus Torvaldsf5b65342018-06-20 09:47:20 +0900265 long offset;
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700266
Linus Torvaldsf5b65342018-06-20 09:47:20 +0900267 /*
268 * Are we already starting past the official end?
269 * We always include the last byte that is *supposed*
270 * to be NUL
271 */
272 offset = (pos >= arg_end) ? pos - arg_end + 1 : 0;
273
274 got = access_remote_vm(mm, pos - offset, page, size + offset, FOLL_ANON);
275 if (got <= offset)
Linus Torvalds5ab82712018-05-17 15:17:33 -0700276 break;
Linus Torvaldsf5b65342018-06-20 09:47:20 +0900277 got -= offset;
Linus Torvalds5ab82712018-05-17 15:17:33 -0700278
279 /* Don't walk past a NUL character once you hit arg_end */
280 if (pos + got >= arg_end) {
281 int n = 0;
282
283 /*
284 * If we started before 'arg_end' but ended up
285 * at or after it, we start the NUL character
286 * check at arg_end-1 (where we expect the normal
287 * EOF to be).
288 *
289 * NOTE! This is smaller than 'got', because
290 * pos + got >= arg_end
291 */
292 if (pos < arg_end)
293 n = arg_end - pos - 1;
294
295 /* Cut off at first NUL after 'n' */
Linus Torvaldsf5b65342018-06-20 09:47:20 +0900296 got = n + strnlen(page+n, offset+got-n);
297 if (got < offset)
Linus Torvalds5ab82712018-05-17 15:17:33 -0700298 break;
Linus Torvaldsf5b65342018-06-20 09:47:20 +0900299 got -= offset;
300
301 /* Include the NUL if it existed */
302 if (got < size)
303 got++;
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700304 }
Alexey Dobriyana0a07b82017-02-24 15:00:20 -0800305
Linus Torvaldsf5b65342018-06-20 09:47:20 +0900306 got -= copy_to_user(buf, page+offset, got);
Linus Torvalds5ab82712018-05-17 15:17:33 -0700307 if (unlikely(!got)) {
308 if (!len)
309 len = -EFAULT;
310 break;
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700311 }
Linus Torvalds5ab82712018-05-17 15:17:33 -0700312 pos += got;
313 buf += got;
314 len += got;
315 count -= got;
Alexey Dobriyan3cb4e162018-06-07 17:10:02 -0700316 }
317
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700318 free_page((unsigned long)page);
Linus Torvalds5ab82712018-05-17 15:17:33 -0700319 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320}
321
Linus Torvaldse4b4e442018-05-17 13:04:17 -0700322static ssize_t get_task_cmdline(struct task_struct *tsk, char __user *buf,
323 size_t count, loff_t *pos)
324{
325 struct mm_struct *mm;
326 ssize_t ret;
327
328 mm = get_task_mm(tsk);
329 if (!mm)
330 return 0;
331
332 ret = get_mm_cmdline(mm, buf, count, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 mmput(mm);
Linus Torvaldse4b4e442018-05-17 13:04:17 -0700334 return ret;
335}
336
337static ssize_t proc_pid_cmdline_read(struct file *file, char __user *buf,
338 size_t count, loff_t *pos)
339{
340 struct task_struct *tsk;
341 ssize_t ret;
342
343 BUG_ON(*pos < 0);
344
345 tsk = get_proc_task(file_inode(file));
346 if (!tsk)
347 return -ESRCH;
348 ret = get_task_cmdline(tsk, buf, count, pos);
349 put_task_struct(tsk);
350 if (ret > 0)
351 *pos += ret;
352 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353}
354
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700355static const struct file_operations proc_pid_cmdline_ops = {
356 .read = proc_pid_cmdline_read,
357 .llseek = generic_file_llseek,
358};
359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360#ifdef CONFIG_KALLSYMS
361/*
362 * Provides a wchan file via kallsyms in a proper one-value-per-file format.
363 * Returns the resolved symbol. If that fails, simply return the address.
364 */
Alexey Dobriyanedfcd602014-08-08 14:21:44 -0700365static int proc_pid_wchan(struct seq_file *m, struct pid_namespace *ns,
366 struct pid *pid, struct task_struct *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367{
Alexey Dobriyanffb45122007-05-08 00:28:41 -0700368 unsigned long wchan;
Tejun Heo9281ace2007-07-17 04:03:51 -0700369 char symname[KSYM_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Alexey Dobriyan24b2ec22018-04-10 16:31:30 -0700371 if (!ptrace_may_access(task, PTRACE_MODE_READ_FSCREDS))
372 goto print0;
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 wchan = get_wchan(task);
Alexey Dobriyan24b2ec22018-04-10 16:31:30 -0700375 if (wchan && !lookup_symbol_name(wchan, symname)) {
Alexey Dobriyan21dae0a2018-04-10 16:31:34 -0700376 seq_puts(m, symname);
Alexey Dobriyan24b2ec22018-04-10 16:31:30 -0700377 return 0;
378 }
Joe Perches25ce3192015-04-15 16:18:17 -0700379
Alexey Dobriyan24b2ec22018-04-10 16:31:30 -0700380print0:
381 seq_putc(m, '0');
Joe Perches25ce3192015-04-15 16:18:17 -0700382 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383}
384#endif /* CONFIG_KALLSYMS */
385
Al Viroa9712bc2011-03-23 15:52:50 -0400386static int lock_trace(struct task_struct *task)
387{
388 int err = mutex_lock_killable(&task->signal->cred_guard_mutex);
389 if (err)
390 return err;
Jann Horncaaee622016-01-20 15:00:04 -0800391 if (!ptrace_may_access(task, PTRACE_MODE_ATTACH_FSCREDS)) {
Al Viroa9712bc2011-03-23 15:52:50 -0400392 mutex_unlock(&task->signal->cred_guard_mutex);
393 return -EPERM;
394 }
395 return 0;
396}
397
398static void unlock_trace(struct task_struct *task)
399{
400 mutex_unlock(&task->signal->cred_guard_mutex);
401}
402
Ken Chen2ec220e2008-11-10 11:26:08 +0300403#ifdef CONFIG_STACKTRACE
404
405#define MAX_STACK_TRACE_DEPTH 64
406
407static int proc_pid_stack(struct seq_file *m, struct pid_namespace *ns,
408 struct pid *pid, struct task_struct *task)
409{
410 struct stack_trace trace;
411 unsigned long *entries;
Al Viroa9712bc2011-03-23 15:52:50 -0400412 int err;
Ken Chen2ec220e2008-11-10 11:26:08 +0300413
Jann Hornf8a00ce2018-10-05 15:51:58 -0700414 /*
415 * The ability to racily run the kernel stack unwinder on a running task
416 * and then observe the unwinder output is scary; while it is useful for
417 * debugging kernel issues, it can also allow an attacker to leak kernel
418 * stack contents.
419 * Doing this in a manner that is at least safe from races would require
420 * some work to ensure that the remote task can not be scheduled; and
421 * even then, this would still expose the unwinder as local attack
422 * surface.
423 * Therefore, this interface is restricted to root.
424 */
425 if (!file_ns_capable(m->file, &init_user_ns, CAP_SYS_ADMIN))
426 return -EACCES;
427
Kees Cook6da2ec52018-06-12 13:55:00 -0700428 entries = kmalloc_array(MAX_STACK_TRACE_DEPTH, sizeof(*entries),
429 GFP_KERNEL);
Ken Chen2ec220e2008-11-10 11:26:08 +0300430 if (!entries)
431 return -ENOMEM;
432
433 trace.nr_entries = 0;
434 trace.max_entries = MAX_STACK_TRACE_DEPTH;
435 trace.entries = entries;
436 trace.skip = 0;
Ken Chen2ec220e2008-11-10 11:26:08 +0300437
Al Viroa9712bc2011-03-23 15:52:50 -0400438 err = lock_trace(task);
439 if (!err) {
Alexey Dobriyan5d008fb2018-06-07 17:10:17 -0700440 unsigned int i;
441
Al Viroa9712bc2011-03-23 15:52:50 -0400442 save_stack_trace_tsk(task, &trace);
443
444 for (i = 0; i < trace.nr_entries; i++) {
Linus Torvalds8f5abe82017-11-27 16:45:56 -0800445 seq_printf(m, "[<0>] %pB\n", (void *)entries[i]);
Al Viroa9712bc2011-03-23 15:52:50 -0400446 }
447 unlock_trace(task);
Ken Chen2ec220e2008-11-10 11:26:08 +0300448 }
449 kfree(entries);
450
Al Viroa9712bc2011-03-23 15:52:50 -0400451 return err;
Ken Chen2ec220e2008-11-10 11:26:08 +0300452}
453#endif
454
Naveen N. Rao5968cec2015-06-30 14:36:03 +0530455#ifdef CONFIG_SCHED_INFO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456/*
457 * Provides /proc/PID/schedstat
458 */
Alexey Dobriyanf6e826c2014-08-08 14:21:46 -0700459static int proc_pid_schedstat(struct seq_file *m, struct pid_namespace *ns,
460 struct pid *pid, struct task_struct *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
Naveen N. Rao5968cec2015-06-30 14:36:03 +0530462 if (unlikely(!sched_info_on()))
Alexey Dobriyan08b55772019-03-05 15:50:35 -0800463 seq_puts(m, "0 0 0\n");
Naveen N. Rao5968cec2015-06-30 14:36:03 +0530464 else
465 seq_printf(m, "%llu %llu %lu\n",
Joe Perches25ce3192015-04-15 16:18:17 -0700466 (unsigned long long)task->se.sum_exec_runtime,
467 (unsigned long long)task->sched_info.run_delay,
468 task->sched_info.pcount);
469
470 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471}
472#endif
473
Arjan van de Ven97455122008-01-25 21:08:34 +0100474#ifdef CONFIG_LATENCYTOP
475static int lstats_show_proc(struct seq_file *m, void *v)
476{
477 int i;
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800478 struct inode *inode = m->private;
479 struct task_struct *task = get_proc_task(inode);
Arjan van de Ven97455122008-01-25 21:08:34 +0100480
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800481 if (!task)
482 return -ESRCH;
483 seq_puts(m, "Latency Top version : v0.1\n");
Alexey Dobriyanf6d2f582018-08-21 21:54:34 -0700484 for (i = 0; i < LT_SAVECOUNT; i++) {
Joe Perches34e49d42011-01-12 17:00:30 -0800485 struct latency_record *lr = &task->latency_record[i];
486 if (lr->backtrace[0]) {
Arjan van de Ven97455122008-01-25 21:08:34 +0100487 int q;
Joe Perches34e49d42011-01-12 17:00:30 -0800488 seq_printf(m, "%i %li %li",
489 lr->count, lr->time, lr->max);
Arjan van de Ven97455122008-01-25 21:08:34 +0100490 for (q = 0; q < LT_BACKTRACEDEPTH; q++) {
Joe Perches34e49d42011-01-12 17:00:30 -0800491 unsigned long bt = lr->backtrace[q];
492 if (!bt)
Arjan van de Ven97455122008-01-25 21:08:34 +0100493 break;
Joe Perches34e49d42011-01-12 17:00:30 -0800494 if (bt == ULONG_MAX)
Arjan van de Ven97455122008-01-25 21:08:34 +0100495 break;
Joe Perches34e49d42011-01-12 17:00:30 -0800496 seq_printf(m, " %ps", (void *)bt);
Arjan van de Ven97455122008-01-25 21:08:34 +0100497 }
Alexey Dobriyan9d6de122011-01-12 17:00:32 -0800498 seq_putc(m, '\n');
Arjan van de Ven97455122008-01-25 21:08:34 +0100499 }
500
501 }
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800502 put_task_struct(task);
Arjan van de Ven97455122008-01-25 21:08:34 +0100503 return 0;
504}
505
506static int lstats_open(struct inode *inode, struct file *file)
507{
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800508 return single_open(file, lstats_show_proc, inode);
Hiroshi Shimamotod6643d12008-02-14 10:27:00 -0800509}
510
Arjan van de Ven97455122008-01-25 21:08:34 +0100511static ssize_t lstats_write(struct file *file, const char __user *buf,
512 size_t count, loff_t *offs)
513{
Al Viro496ad9a2013-01-23 17:07:38 -0500514 struct task_struct *task = get_proc_task(file_inode(file));
Arjan van de Ven97455122008-01-25 21:08:34 +0100515
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800516 if (!task)
517 return -ESRCH;
Arjan van de Ven97455122008-01-25 21:08:34 +0100518 clear_all_latency_tracing(task);
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800519 put_task_struct(task);
Arjan van de Ven97455122008-01-25 21:08:34 +0100520
521 return count;
522}
523
524static const struct file_operations proc_lstats_operations = {
525 .open = lstats_open,
526 .read = seq_read,
527 .write = lstats_write,
528 .llseek = seq_lseek,
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800529 .release = single_release,
Arjan van de Ven97455122008-01-25 21:08:34 +0100530};
531
532#endif
533
Alexey Dobriyan6ba51e32014-08-08 14:21:48 -0700534static int proc_oom_score(struct seq_file *m, struct pid_namespace *ns,
535 struct pid *pid, struct task_struct *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536{
Arun KSca79b0c2018-12-28 00:34:29 -0800537 unsigned long totalpages = totalram_pages() + total_swap_pages;
Oleg Nesterovb95c35e2010-04-01 15:13:57 +0200538 unsigned long points = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Oleg Nesterovef419392016-08-02 14:03:19 -0700540 points = oom_badness(task, NULL, NULL, totalpages) *
541 1000 / totalpages;
Joe Perches25ce3192015-04-15 16:18:17 -0700542 seq_printf(m, "%lu\n", points);
543
544 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545}
546
Neil Hormand85f50d2007-10-18 23:40:37 -0700547struct limit_names {
Alexey Dobriyancedbcca2014-08-08 14:21:33 -0700548 const char *name;
549 const char *unit;
Neil Hormand85f50d2007-10-18 23:40:37 -0700550};
551
552static const struct limit_names lnames[RLIM_NLIMITS] = {
Kees Cookcff4edb2009-09-22 16:45:32 -0700553 [RLIMIT_CPU] = {"Max cpu time", "seconds"},
Neil Hormand85f50d2007-10-18 23:40:37 -0700554 [RLIMIT_FSIZE] = {"Max file size", "bytes"},
555 [RLIMIT_DATA] = {"Max data size", "bytes"},
556 [RLIMIT_STACK] = {"Max stack size", "bytes"},
557 [RLIMIT_CORE] = {"Max core file size", "bytes"},
558 [RLIMIT_RSS] = {"Max resident set", "bytes"},
559 [RLIMIT_NPROC] = {"Max processes", "processes"},
560 [RLIMIT_NOFILE] = {"Max open files", "files"},
561 [RLIMIT_MEMLOCK] = {"Max locked memory", "bytes"},
562 [RLIMIT_AS] = {"Max address space", "bytes"},
563 [RLIMIT_LOCKS] = {"Max file locks", "locks"},
564 [RLIMIT_SIGPENDING] = {"Max pending signals", "signals"},
565 [RLIMIT_MSGQUEUE] = {"Max msgqueue size", "bytes"},
566 [RLIMIT_NICE] = {"Max nice priority", NULL},
567 [RLIMIT_RTPRIO] = {"Max realtime priority", NULL},
Eugene Teo88081172008-02-23 15:23:52 -0800568 [RLIMIT_RTTIME] = {"Max realtime timeout", "us"},
Neil Hormand85f50d2007-10-18 23:40:37 -0700569};
570
571/* Display limits for a process */
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700572static int proc_pid_limits(struct seq_file *m, struct pid_namespace *ns,
573 struct pid *pid, struct task_struct *task)
Neil Hormand85f50d2007-10-18 23:40:37 -0700574{
575 unsigned int i;
Neil Hormand85f50d2007-10-18 23:40:37 -0700576 unsigned long flags;
Neil Hormand85f50d2007-10-18 23:40:37 -0700577
578 struct rlimit rlim[RLIM_NLIMITS];
579
Lai Jiangshana6bebbc2008-10-05 00:51:15 +0400580 if (!lock_task_sighand(task, &flags))
Neil Hormand85f50d2007-10-18 23:40:37 -0700581 return 0;
Neil Hormand85f50d2007-10-18 23:40:37 -0700582 memcpy(rlim, task->signal->rlim, sizeof(struct rlimit) * RLIM_NLIMITS);
583 unlock_task_sighand(task, &flags);
Neil Hormand85f50d2007-10-18 23:40:37 -0700584
585 /*
586 * print the file header
587 */
Alexey Dobriyanafe922c2019-01-03 15:26:09 -0800588 seq_puts(m, "Limit "
589 "Soft Limit "
590 "Hard Limit "
591 "Units \n");
Neil Hormand85f50d2007-10-18 23:40:37 -0700592
593 for (i = 0; i < RLIM_NLIMITS; i++) {
594 if (rlim[i].rlim_cur == RLIM_INFINITY)
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700595 seq_printf(m, "%-25s %-20s ",
Joe Perches25ce3192015-04-15 16:18:17 -0700596 lnames[i].name, "unlimited");
Neil Hormand85f50d2007-10-18 23:40:37 -0700597 else
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700598 seq_printf(m, "%-25s %-20lu ",
Joe Perches25ce3192015-04-15 16:18:17 -0700599 lnames[i].name, rlim[i].rlim_cur);
Neil Hormand85f50d2007-10-18 23:40:37 -0700600
601 if (rlim[i].rlim_max == RLIM_INFINITY)
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700602 seq_printf(m, "%-20s ", "unlimited");
Neil Hormand85f50d2007-10-18 23:40:37 -0700603 else
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700604 seq_printf(m, "%-20lu ", rlim[i].rlim_max);
Neil Hormand85f50d2007-10-18 23:40:37 -0700605
606 if (lnames[i].unit)
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700607 seq_printf(m, "%-10s\n", lnames[i].unit);
Neil Hormand85f50d2007-10-18 23:40:37 -0700608 else
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700609 seq_putc(m, '\n');
Neil Hormand85f50d2007-10-18 23:40:37 -0700610 }
611
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700612 return 0;
Neil Hormand85f50d2007-10-18 23:40:37 -0700613}
614
Roland McGrathebcb6732008-07-25 19:46:00 -0700615#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
Alexey Dobriyan09d93bd2014-08-08 14:21:39 -0700616static int proc_pid_syscall(struct seq_file *m, struct pid_namespace *ns,
617 struct pid *pid, struct task_struct *task)
Roland McGrathebcb6732008-07-25 19:46:00 -0700618{
619 long nr;
620 unsigned long args[6], sp, pc;
Joe Perches25ce3192015-04-15 16:18:17 -0700621 int res;
622
623 res = lock_trace(task);
Al Viroa9712bc2011-03-23 15:52:50 -0400624 if (res)
625 return res;
Roland McGrathebcb6732008-07-25 19:46:00 -0700626
627 if (task_current_syscall(task, &nr, args, 6, &sp, &pc))
Alexey Dobriyan09d93bd2014-08-08 14:21:39 -0700628 seq_puts(m, "running\n");
Al Viroa9712bc2011-03-23 15:52:50 -0400629 else if (nr < 0)
Alexey Dobriyan09d93bd2014-08-08 14:21:39 -0700630 seq_printf(m, "%ld 0x%lx 0x%lx\n", nr, sp, pc);
Al Viroa9712bc2011-03-23 15:52:50 -0400631 else
Alexey Dobriyan09d93bd2014-08-08 14:21:39 -0700632 seq_printf(m,
Roland McGrathebcb6732008-07-25 19:46:00 -0700633 "%ld 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx\n",
634 nr,
635 args[0], args[1], args[2], args[3], args[4], args[5],
636 sp, pc);
Al Viroa9712bc2011-03-23 15:52:50 -0400637 unlock_trace(task);
Joe Perches25ce3192015-04-15 16:18:17 -0700638
639 return 0;
Roland McGrathebcb6732008-07-25 19:46:00 -0700640}
641#endif /* CONFIG_HAVE_ARCH_TRACEHOOK */
642
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643/************************************************************************/
644/* Here the fs part begins */
645/************************************************************************/
646
647/* permission checks */
Eric W. Biederman778c1142006-06-26 00:25:58 -0700648static int proc_fd_access_allowed(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649{
Eric W. Biederman778c1142006-06-26 00:25:58 -0700650 struct task_struct *task;
651 int allowed = 0;
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700652 /* Allow access to a task's file descriptors if it is us or we
653 * may use ptrace attach to the process and find out that
654 * information.
Eric W. Biederman778c1142006-06-26 00:25:58 -0700655 */
656 task = get_proc_task(inode);
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700657 if (task) {
Jann Horncaaee622016-01-20 15:00:04 -0800658 allowed = ptrace_may_access(task, PTRACE_MODE_READ_FSCREDS);
Eric W. Biederman778c1142006-06-26 00:25:58 -0700659 put_task_struct(task);
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700660 }
Eric W. Biederman778c1142006-06-26 00:25:58 -0700661 return allowed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662}
663
Eric W. Biederman6b4e3062010-03-07 16:41:34 -0800664int proc_setattr(struct dentry *dentry, struct iattr *attr)
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700665{
666 int error;
David Howells2b0143b2015-03-17 22:25:59 +0000667 struct inode *inode = d_inode(dentry);
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700668
669 if (attr->ia_valid & ATTR_MODE)
670 return -EPERM;
671
Jan Kara31051c82016-05-26 16:55:18 +0200672 error = setattr_prepare(dentry, attr);
Christoph Hellwig10257742010-06-04 11:30:02 +0200673 if (error)
674 return error;
675
Christoph Hellwig10257742010-06-04 11:30:02 +0200676 setattr_copy(inode, attr);
677 mark_inode_dirty(inode);
678 return 0;
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700679}
680
Vasiliy Kulikov04996802012-01-10 15:11:31 -0800681/*
682 * May current process learn task's sched/cmdline info (for hide_pid_min=1)
683 * or euid/egid (for hide_pid_min=2)?
684 */
685static bool has_pid_permissions(struct pid_namespace *pid,
686 struct task_struct *task,
687 int hide_pid_min)
688{
689 if (pid->hide_pid < hide_pid_min)
690 return true;
691 if (in_group_p(pid->pid_gid))
692 return true;
Jann Horncaaee622016-01-20 15:00:04 -0800693 return ptrace_may_access(task, PTRACE_MODE_READ_FSCREDS);
Vasiliy Kulikov04996802012-01-10 15:11:31 -0800694}
695
696
697static int proc_pid_permission(struct inode *inode, int mask)
698{
Christoph Hellwig76f668b2018-05-16 07:19:01 +0200699 struct pid_namespace *pid = proc_pid_ns(inode);
Vasiliy Kulikov04996802012-01-10 15:11:31 -0800700 struct task_struct *task;
701 bool has_perms;
702
703 task = get_proc_task(inode);
Xiaotian Fenga2ef9902012-01-12 17:17:08 -0800704 if (!task)
705 return -ESRCH;
Lafcadio Wluiki796f5712017-02-24 15:00:23 -0800706 has_perms = has_pid_permissions(pid, task, HIDEPID_NO_ACCESS);
Vasiliy Kulikov04996802012-01-10 15:11:31 -0800707 put_task_struct(task);
708
709 if (!has_perms) {
Lafcadio Wluiki796f5712017-02-24 15:00:23 -0800710 if (pid->hide_pid == HIDEPID_INVISIBLE) {
Vasiliy Kulikov04996802012-01-10 15:11:31 -0800711 /*
712 * Let's make getdents(), stat(), and open()
713 * consistent with each other. If a process
714 * may not stat() a file, it shouldn't be seen
715 * in procfs at all.
716 */
717 return -ENOENT;
718 }
719
720 return -EPERM;
721 }
722 return generic_permission(inode, mask);
723}
724
725
726
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800727static const struct inode_operations proc_def_inode_operations = {
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700728 .setattr = proc_setattr,
729};
730
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800731static int proc_single_show(struct seq_file *m, void *v)
732{
733 struct inode *inode = m->private;
Christoph Hellwig76f668b2018-05-16 07:19:01 +0200734 struct pid_namespace *ns = proc_pid_ns(inode);
735 struct pid *pid = proc_pid(inode);
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800736 struct task_struct *task;
737 int ret;
738
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800739 task = get_pid_task(pid, PIDTYPE_PID);
740 if (!task)
741 return -ESRCH;
742
743 ret = PROC_I(inode)->op.proc_show(m, ns, pid, task);
744
745 put_task_struct(task);
746 return ret;
747}
748
749static int proc_single_open(struct inode *inode, struct file *filp)
750{
Jovi Zhangc6a34052011-01-12 17:00:34 -0800751 return single_open(filp, proc_single_show, inode);
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800752}
753
754static const struct file_operations proc_single_file_operations = {
755 .open = proc_single_open,
756 .read = seq_read,
757 .llseek = seq_lseek,
758 .release = single_release,
759};
760
Oleg Nesterov5381e162014-10-09 15:25:24 -0700761
762struct mm_struct *proc_mem_open(struct inode *inode, unsigned int mode)
763{
764 struct task_struct *task = get_proc_task(inode);
765 struct mm_struct *mm = ERR_PTR(-ESRCH);
766
767 if (task) {
Jann Horncaaee622016-01-20 15:00:04 -0800768 mm = mm_access(task, mode | PTRACE_MODE_FSCREDS);
Oleg Nesterov5381e162014-10-09 15:25:24 -0700769 put_task_struct(task);
770
771 if (!IS_ERR_OR_NULL(mm)) {
772 /* ensure this mm_struct can't be freed */
Vegard Nossumf1f10072017-02-27 14:30:07 -0800773 mmgrab(mm);
Oleg Nesterov5381e162014-10-09 15:25:24 -0700774 /* but do not pin its memory */
775 mmput(mm);
776 }
777 }
778
779 return mm;
780}
781
Cong Wangb409e572012-05-31 16:26:17 -0700782static int __mem_open(struct inode *inode, struct file *file, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783{
Oleg Nesterov5381e162014-10-09 15:25:24 -0700784 struct mm_struct *mm = proc_mem_open(inode, mode);
Linus Torvaldse2683372012-01-17 15:21:19 -0800785
786 if (IS_ERR(mm))
787 return PTR_ERR(mm);
788
Linus Torvaldse2683372012-01-17 15:21:19 -0800789 file->private_data = mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 return 0;
791}
792
Cong Wangb409e572012-05-31 16:26:17 -0700793static int mem_open(struct inode *inode, struct file *file)
794{
Djalal Harounibc452b42012-07-30 14:42:28 -0700795 int ret = __mem_open(inode, file, PTRACE_MODE_ATTACH);
796
797 /* OK to pass negative loff_t, we can catch out-of-range */
798 file->f_mode |= FMODE_UNSIGNED_OFFSET;
799
800 return ret;
Cong Wangb409e572012-05-31 16:26:17 -0700801}
802
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100803static ssize_t mem_rw(struct file *file, char __user *buf,
804 size_t count, loff_t *ppos, int write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805{
Linus Torvaldse2683372012-01-17 15:21:19 -0800806 struct mm_struct *mm = file->private_data;
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100807 unsigned long addr = *ppos;
808 ssize_t copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 char *page;
Linus Torvalds272ddc82016-10-24 19:00:44 -0700810 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
Linus Torvaldse2683372012-01-17 15:21:19 -0800812 if (!mm)
813 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
Michal Hocko0ee931c2017-09-13 16:28:29 -0700815 page = (char *)__get_free_page(GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 if (!page)
Linus Torvaldse2683372012-01-17 15:21:19 -0800817 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Frederik Deweerdtf7ca54f2006-09-29 02:01:02 -0700819 copied = 0;
Vegard Nossum388f7932017-02-27 14:30:13 -0800820 if (!mmget_not_zero(mm))
Oleg Nesterov6d08f2c2012-01-31 17:15:11 +0100821 goto free;
822
Linus Torvaldsf511c0b2017-05-30 12:38:59 -0700823 flags = FOLL_FORCE | (write ? FOLL_WRITE : 0);
Lorenzo Stoakes6347e8d2016-10-13 01:20:19 +0100824
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 while (count > 0) {
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100826 int this_len = min_t(int, count, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100828 if (write && copy_from_user(page, buf, this_len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 copied = -EFAULT;
830 break;
831 }
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100832
Lorenzo Stoakes6347e8d2016-10-13 01:20:19 +0100833 this_len = access_remote_vm(mm, addr, page, this_len, flags);
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100834 if (!this_len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 if (!copied)
836 copied = -EIO;
837 break;
838 }
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100839
840 if (!write && copy_to_user(buf, page, this_len)) {
841 copied = -EFAULT;
842 break;
843 }
844
845 buf += this_len;
846 addr += this_len;
847 copied += this_len;
848 count -= this_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 }
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100850 *ppos = addr;
KOSAKI Motohiro30cd8902011-05-26 16:25:52 -0700851
Oleg Nesterov6d08f2c2012-01-31 17:15:11 +0100852 mmput(mm);
853free:
KOSAKI Motohiro30cd8902011-05-26 16:25:52 -0700854 free_page((unsigned long) page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 return copied;
856}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100858static ssize_t mem_read(struct file *file, char __user *buf,
859 size_t count, loff_t *ppos)
860{
861 return mem_rw(file, buf, count, ppos, 0);
862}
863
864static ssize_t mem_write(struct file *file, const char __user *buf,
865 size_t count, loff_t *ppos)
866{
867 return mem_rw(file, (char __user*)buf, count, ppos, 1);
868}
869
Matt Mackall85863e42008-02-04 22:29:04 -0800870loff_t mem_lseek(struct file *file, loff_t offset, int orig)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871{
872 switch (orig) {
873 case 0:
874 file->f_pos = offset;
875 break;
876 case 1:
877 file->f_pos += offset;
878 break;
879 default:
880 return -EINVAL;
881 }
882 force_successful_syscall_return();
883 return file->f_pos;
884}
885
Linus Torvaldse2683372012-01-17 15:21:19 -0800886static int mem_release(struct inode *inode, struct file *file)
887{
888 struct mm_struct *mm = file->private_data;
Oleg Nesterov71879d32012-01-31 17:14:38 +0100889 if (mm)
Oleg Nesterov6d08f2c2012-01-31 17:15:11 +0100890 mmdrop(mm);
Linus Torvaldse2683372012-01-17 15:21:19 -0800891 return 0;
892}
893
Arjan van de Ven00977a52007-02-12 00:55:34 -0800894static const struct file_operations proc_mem_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 .llseek = mem_lseek,
896 .read = mem_read,
897 .write = mem_write,
898 .open = mem_open,
Linus Torvaldse2683372012-01-17 15:21:19 -0800899 .release = mem_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900};
901
Cong Wangb409e572012-05-31 16:26:17 -0700902static int environ_open(struct inode *inode, struct file *file)
903{
904 return __mem_open(inode, file, PTRACE_MODE_READ);
905}
906
James Pearson315e28c2007-10-16 23:30:17 -0700907static ssize_t environ_read(struct file *file, char __user *buf,
908 size_t count, loff_t *ppos)
909{
James Pearson315e28c2007-10-16 23:30:17 -0700910 char *page;
911 unsigned long src = *ppos;
Cong Wangb409e572012-05-31 16:26:17 -0700912 int ret = 0;
913 struct mm_struct *mm = file->private_data;
Mateusz Guzika3b609e2016-01-20 15:01:05 -0800914 unsigned long env_start, env_end;
James Pearson315e28c2007-10-16 23:30:17 -0700915
Mathias Krause8148a732016-05-05 16:22:26 -0700916 /* Ensure the process spawned far enough to have an environment. */
917 if (!mm || !mm->env_end)
Cong Wangb409e572012-05-31 16:26:17 -0700918 return 0;
James Pearson315e28c2007-10-16 23:30:17 -0700919
Michal Hocko0ee931c2017-09-13 16:28:29 -0700920 page = (char *)__get_free_page(GFP_KERNEL);
James Pearson315e28c2007-10-16 23:30:17 -0700921 if (!page)
Cong Wangb409e572012-05-31 16:26:17 -0700922 return -ENOMEM;
James Pearson315e28c2007-10-16 23:30:17 -0700923
Al Virod6f64b82011-02-15 22:26:01 -0500924 ret = 0;
Vegard Nossum388f7932017-02-27 14:30:13 -0800925 if (!mmget_not_zero(mm))
Cong Wangb409e572012-05-31 16:26:17 -0700926 goto free;
Mateusz Guzika3b609e2016-01-20 15:01:05 -0800927
Yang Shi88aa7cc2018-06-07 17:05:28 -0700928 spin_lock(&mm->arg_lock);
Mateusz Guzika3b609e2016-01-20 15:01:05 -0800929 env_start = mm->env_start;
930 env_end = mm->env_end;
Yang Shi88aa7cc2018-06-07 17:05:28 -0700931 spin_unlock(&mm->arg_lock);
Mateusz Guzika3b609e2016-01-20 15:01:05 -0800932
James Pearson315e28c2007-10-16 23:30:17 -0700933 while (count > 0) {
Djalal Harounie8905ec2012-07-30 14:42:26 -0700934 size_t this_len, max_len;
935 int retval;
936
Mateusz Guzika3b609e2016-01-20 15:01:05 -0800937 if (src >= (env_end - env_start))
Djalal Harounie8905ec2012-07-30 14:42:26 -0700938 break;
James Pearson315e28c2007-10-16 23:30:17 -0700939
Mateusz Guzika3b609e2016-01-20 15:01:05 -0800940 this_len = env_end - (env_start + src);
James Pearson315e28c2007-10-16 23:30:17 -0700941
Djalal Harounie8905ec2012-07-30 14:42:26 -0700942 max_len = min_t(size_t, PAGE_SIZE, count);
943 this_len = min(max_len, this_len);
James Pearson315e28c2007-10-16 23:30:17 -0700944
Willy Tarreau7f7ccc22018-05-11 08:11:44 +0200945 retval = access_remote_vm(mm, (env_start + src), page, this_len, FOLL_ANON);
James Pearson315e28c2007-10-16 23:30:17 -0700946
947 if (retval <= 0) {
948 ret = retval;
949 break;
950 }
951
952 if (copy_to_user(buf, page, retval)) {
953 ret = -EFAULT;
954 break;
955 }
956
957 ret += retval;
958 src += retval;
959 buf += retval;
960 count -= retval;
961 }
962 *ppos = src;
James Pearson315e28c2007-10-16 23:30:17 -0700963 mmput(mm);
Cong Wangb409e572012-05-31 16:26:17 -0700964
965free:
James Pearson315e28c2007-10-16 23:30:17 -0700966 free_page((unsigned long) page);
James Pearson315e28c2007-10-16 23:30:17 -0700967 return ret;
968}
969
970static const struct file_operations proc_environ_operations = {
Cong Wangb409e572012-05-31 16:26:17 -0700971 .open = environ_open,
James Pearson315e28c2007-10-16 23:30:17 -0700972 .read = environ_read,
Arnd Bergmann87df8422010-03-17 23:06:02 +0100973 .llseek = generic_file_llseek,
Cong Wangb409e572012-05-31 16:26:17 -0700974 .release = mem_release,
James Pearson315e28c2007-10-16 23:30:17 -0700975};
976
Al Viroc5317162016-10-05 18:43:43 -0400977static int auxv_open(struct inode *inode, struct file *file)
978{
979 return __mem_open(inode, file, PTRACE_MODE_READ_FSCREDS);
980}
981
982static ssize_t auxv_read(struct file *file, char __user *buf,
983 size_t count, loff_t *ppos)
984{
985 struct mm_struct *mm = file->private_data;
986 unsigned int nwords = 0;
Leon Yu06b28492016-10-27 17:46:50 -0700987
988 if (!mm)
989 return 0;
Al Viroc5317162016-10-05 18:43:43 -0400990 do {
991 nwords += 2;
992 } while (mm->saved_auxv[nwords - 2] != 0); /* AT_NULL */
993 return simple_read_from_buffer(buf, count, ppos, mm->saved_auxv,
994 nwords * sizeof(mm->saved_auxv[0]));
995}
996
997static const struct file_operations proc_auxv_operations = {
998 .open = auxv_open,
999 .read = auxv_read,
1000 .llseek = generic_file_llseek,
1001 .release = mem_release,
1002};
1003
David Rientjesfa0cbbf2012-11-12 17:53:04 -08001004static ssize_t oom_adj_read(struct file *file, char __user *buf, size_t count,
1005 loff_t *ppos)
1006{
Al Viro496ad9a2013-01-23 17:07:38 -05001007 struct task_struct *task = get_proc_task(file_inode(file));
David Rientjesfa0cbbf2012-11-12 17:53:04 -08001008 char buffer[PROC_NUMBUF];
1009 int oom_adj = OOM_ADJUST_MIN;
1010 size_t len;
David Rientjesfa0cbbf2012-11-12 17:53:04 -08001011
1012 if (!task)
1013 return -ESRCH;
Michal Hockof913da52016-07-28 15:44:37 -07001014 if (task->signal->oom_score_adj == OOM_SCORE_ADJ_MAX)
1015 oom_adj = OOM_ADJUST_MAX;
1016 else
1017 oom_adj = (task->signal->oom_score_adj * -OOM_DISABLE) /
1018 OOM_SCORE_ADJ_MAX;
David Rientjesfa0cbbf2012-11-12 17:53:04 -08001019 put_task_struct(task);
1020 len = snprintf(buffer, sizeof(buffer), "%d\n", oom_adj);
1021 return simple_read_from_buffer(buf, count, ppos, buffer, len);
1022}
1023
Michal Hocko1d5f0ac2016-07-28 15:44:40 -07001024static int __set_oom_adj(struct file *file, int oom_adj, bool legacy)
1025{
1026 static DEFINE_MUTEX(oom_adj_mutex);
Michal Hocko44a70ade2016-07-28 15:44:43 -07001027 struct mm_struct *mm = NULL;
Michal Hocko1d5f0ac2016-07-28 15:44:40 -07001028 struct task_struct *task;
1029 int err = 0;
1030
1031 task = get_proc_task(file_inode(file));
1032 if (!task)
1033 return -ESRCH;
1034
1035 mutex_lock(&oom_adj_mutex);
1036 if (legacy) {
1037 if (oom_adj < task->signal->oom_score_adj &&
1038 !capable(CAP_SYS_RESOURCE)) {
1039 err = -EACCES;
1040 goto err_unlock;
1041 }
1042 /*
1043 * /proc/pid/oom_adj is provided for legacy purposes, ask users to use
1044 * /proc/pid/oom_score_adj instead.
1045 */
1046 pr_warn_once("%s (%d): /proc/%d/oom_adj is deprecated, please use /proc/%d/oom_score_adj instead.\n",
1047 current->comm, task_pid_nr(current), task_pid_nr(task),
1048 task_pid_nr(task));
1049 } else {
1050 if ((short)oom_adj < task->signal->oom_score_adj_min &&
1051 !capable(CAP_SYS_RESOURCE)) {
1052 err = -EACCES;
1053 goto err_unlock;
1054 }
1055 }
1056
Michal Hocko44a70ade2016-07-28 15:44:43 -07001057 /*
1058 * Make sure we will check other processes sharing the mm if this is
1059 * not vfrok which wants its own oom_score_adj.
1060 * pin the mm so it doesn't go away and get reused after task_unlock
1061 */
1062 if (!task->vfork_done) {
1063 struct task_struct *p = find_lock_task_mm(task);
1064
1065 if (p) {
1066 if (atomic_read(&p->mm->mm_users) > 1) {
1067 mm = p->mm;
Vegard Nossumf1f10072017-02-27 14:30:07 -08001068 mmgrab(mm);
Michal Hocko44a70ade2016-07-28 15:44:43 -07001069 }
1070 task_unlock(p);
1071 }
1072 }
1073
Michal Hocko1d5f0ac2016-07-28 15:44:40 -07001074 task->signal->oom_score_adj = oom_adj;
1075 if (!legacy && has_capability_noaudit(current, CAP_SYS_RESOURCE))
1076 task->signal->oom_score_adj_min = (short)oom_adj;
1077 trace_oom_score_adj_update(task);
Michal Hocko44a70ade2016-07-28 15:44:43 -07001078
1079 if (mm) {
1080 struct task_struct *p;
1081
1082 rcu_read_lock();
1083 for_each_process(p) {
1084 if (same_thread_group(task, p))
1085 continue;
1086
1087 /* do not touch kernel threads or the global init */
1088 if (p->flags & PF_KTHREAD || is_global_init(p))
1089 continue;
1090
1091 task_lock(p);
1092 if (!p->vfork_done && process_shares_mm(p, mm)) {
Michal Hocko44a70ade2016-07-28 15:44:43 -07001093 p->signal->oom_score_adj = oom_adj;
1094 if (!legacy && has_capability_noaudit(current, CAP_SYS_RESOURCE))
1095 p->signal->oom_score_adj_min = (short)oom_adj;
1096 }
1097 task_unlock(p);
1098 }
1099 rcu_read_unlock();
1100 mmdrop(mm);
1101 }
Michal Hocko1d5f0ac2016-07-28 15:44:40 -07001102err_unlock:
1103 mutex_unlock(&oom_adj_mutex);
1104 put_task_struct(task);
1105 return err;
1106}
Michal Hockof913da52016-07-28 15:44:37 -07001107
David Rientjesb72bdfa2015-11-05 18:50:32 -08001108/*
1109 * /proc/pid/oom_adj exists solely for backwards compatibility with previous
1110 * kernels. The effective policy is defined by oom_score_adj, which has a
1111 * different scale: oom_adj grew exponentially and oom_score_adj grows linearly.
1112 * Values written to oom_adj are simply mapped linearly to oom_score_adj.
1113 * Processes that become oom disabled via oom_adj will still be oom disabled
1114 * with this implementation.
1115 *
1116 * oom_adj cannot be removed since existing userspace binaries use it.
1117 */
David Rientjesfa0cbbf2012-11-12 17:53:04 -08001118static ssize_t oom_adj_write(struct file *file, const char __user *buf,
1119 size_t count, loff_t *ppos)
1120{
David Rientjesfa0cbbf2012-11-12 17:53:04 -08001121 char buffer[PROC_NUMBUF];
1122 int oom_adj;
David Rientjesfa0cbbf2012-11-12 17:53:04 -08001123 int err;
1124
1125 memset(buffer, 0, sizeof(buffer));
1126 if (count > sizeof(buffer) - 1)
1127 count = sizeof(buffer) - 1;
1128 if (copy_from_user(buffer, buf, count)) {
1129 err = -EFAULT;
1130 goto out;
1131 }
1132
1133 err = kstrtoint(strstrip(buffer), 0, &oom_adj);
1134 if (err)
1135 goto out;
1136 if ((oom_adj < OOM_ADJUST_MIN || oom_adj > OOM_ADJUST_MAX) &&
1137 oom_adj != OOM_DISABLE) {
1138 err = -EINVAL;
1139 goto out;
1140 }
1141
David Rientjesfa0cbbf2012-11-12 17:53:04 -08001142 /*
1143 * Scale /proc/pid/oom_score_adj appropriately ensuring that a maximum
1144 * value is always attainable.
1145 */
1146 if (oom_adj == OOM_ADJUST_MAX)
1147 oom_adj = OOM_SCORE_ADJ_MAX;
1148 else
1149 oom_adj = (oom_adj * OOM_SCORE_ADJ_MAX) / -OOM_DISABLE;
1150
Michal Hocko1d5f0ac2016-07-28 15:44:40 -07001151 err = __set_oom_adj(file, oom_adj, true);
David Rientjesfa0cbbf2012-11-12 17:53:04 -08001152out:
1153 return err < 0 ? err : count;
1154}
1155
1156static const struct file_operations proc_oom_adj_operations = {
1157 .read = oom_adj_read,
1158 .write = oom_adj_write,
1159 .llseek = generic_file_llseek,
1160};
1161
David Rientjesa63d83f2010-08-09 17:19:46 -07001162static ssize_t oom_score_adj_read(struct file *file, char __user *buf,
1163 size_t count, loff_t *ppos)
1164{
Al Viro496ad9a2013-01-23 17:07:38 -05001165 struct task_struct *task = get_proc_task(file_inode(file));
David Rientjesa63d83f2010-08-09 17:19:46 -07001166 char buffer[PROC_NUMBUF];
David Rientjesa9c58b902012-12-11 16:02:54 -08001167 short oom_score_adj = OOM_SCORE_ADJ_MIN;
David Rientjesa63d83f2010-08-09 17:19:46 -07001168 size_t len;
1169
1170 if (!task)
1171 return -ESRCH;
Michal Hockof913da52016-07-28 15:44:37 -07001172 oom_score_adj = task->signal->oom_score_adj;
David Rientjesa63d83f2010-08-09 17:19:46 -07001173 put_task_struct(task);
David Rientjesa9c58b902012-12-11 16:02:54 -08001174 len = snprintf(buffer, sizeof(buffer), "%hd\n", oom_score_adj);
David Rientjesa63d83f2010-08-09 17:19:46 -07001175 return simple_read_from_buffer(buf, count, ppos, buffer, len);
1176}
1177
1178static ssize_t oom_score_adj_write(struct file *file, const char __user *buf,
1179 size_t count, loff_t *ppos)
1180{
David Rientjesa63d83f2010-08-09 17:19:46 -07001181 char buffer[PROC_NUMBUF];
Alexey Dobriyan0a8cb8e2011-05-26 16:25:50 -07001182 int oom_score_adj;
David Rientjesa63d83f2010-08-09 17:19:46 -07001183 int err;
1184
1185 memset(buffer, 0, sizeof(buffer));
1186 if (count > sizeof(buffer) - 1)
1187 count = sizeof(buffer) - 1;
David Rientjes723548b2010-10-26 14:21:25 -07001188 if (copy_from_user(buffer, buf, count)) {
1189 err = -EFAULT;
1190 goto out;
1191 }
David Rientjesa63d83f2010-08-09 17:19:46 -07001192
Alexey Dobriyan0a8cb8e2011-05-26 16:25:50 -07001193 err = kstrtoint(strstrip(buffer), 0, &oom_score_adj);
David Rientjesa63d83f2010-08-09 17:19:46 -07001194 if (err)
David Rientjes723548b2010-10-26 14:21:25 -07001195 goto out;
David Rientjesa63d83f2010-08-09 17:19:46 -07001196 if (oom_score_adj < OOM_SCORE_ADJ_MIN ||
David Rientjes723548b2010-10-26 14:21:25 -07001197 oom_score_adj > OOM_SCORE_ADJ_MAX) {
1198 err = -EINVAL;
1199 goto out;
1200 }
David Rientjesa63d83f2010-08-09 17:19:46 -07001201
Michal Hocko1d5f0ac2016-07-28 15:44:40 -07001202 err = __set_oom_adj(file, oom_score_adj, false);
David Rientjes723548b2010-10-26 14:21:25 -07001203out:
1204 return err < 0 ? err : count;
David Rientjesa63d83f2010-08-09 17:19:46 -07001205}
1206
1207static const struct file_operations proc_oom_score_adj_operations = {
1208 .read = oom_score_adj_read,
1209 .write = oom_score_adj_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001210 .llseek = default_llseek,
David Rientjesa63d83f2010-08-09 17:19:46 -07001211};
1212
Richard Guy Briggs4b7d2482019-01-22 17:06:39 -05001213#ifdef CONFIG_AUDIT
Alexey Dobriyanb4eb4f72016-10-29 19:04:39 +03001214#define TMPBUFLEN 11
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215static ssize_t proc_loginuid_read(struct file * file, char __user * buf,
1216 size_t count, loff_t *ppos)
1217{
Al Viro496ad9a2013-01-23 17:07:38 -05001218 struct inode * inode = file_inode(file);
Eric W. Biederman99f89552006-06-26 00:25:55 -07001219 struct task_struct *task = get_proc_task(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 ssize_t length;
1221 char tmpbuf[TMPBUFLEN];
1222
Eric W. Biederman99f89552006-06-26 00:25:55 -07001223 if (!task)
1224 return -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07001226 from_kuid(file->f_cred->user_ns,
1227 audit_get_loginuid(task)));
Eric W. Biederman99f89552006-06-26 00:25:55 -07001228 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1230}
1231
1232static ssize_t proc_loginuid_write(struct file * file, const char __user * buf,
1233 size_t count, loff_t *ppos)
1234{
Al Viro496ad9a2013-01-23 17:07:38 -05001235 struct inode * inode = file_inode(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 uid_t loginuid;
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07001237 kuid_t kloginuid;
Alexey Dobriyan774636e2015-09-09 15:36:59 -07001238 int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
Paul E. McKenney7dc52152010-02-22 17:04:52 -08001240 rcu_read_lock();
1241 if (current != pid_task(proc_pid(inode), PIDTYPE_PID)) {
1242 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 return -EPERM;
Paul E. McKenney7dc52152010-02-22 17:04:52 -08001244 }
1245 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 if (*ppos != 0) {
1248 /* No partial writes. */
1249 return -EINVAL;
1250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
Alexey Dobriyan774636e2015-09-09 15:36:59 -07001252 rv = kstrtou32_from_user(buf, count, 10, &loginuid);
1253 if (rv < 0)
1254 return rv;
Eric Paris81407c82013-05-24 09:49:14 -04001255
1256 /* is userspace tring to explicitly UNSET the loginuid? */
1257 if (loginuid == AUDIT_UID_UNSET) {
1258 kloginuid = INVALID_UID;
1259 } else {
1260 kloginuid = make_kuid(file->f_cred->user_ns, loginuid);
Alexey Dobriyan774636e2015-09-09 15:36:59 -07001261 if (!uid_valid(kloginuid))
1262 return -EINVAL;
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07001263 }
1264
Alexey Dobriyan774636e2015-09-09 15:36:59 -07001265 rv = audit_set_loginuid(kloginuid);
1266 if (rv < 0)
1267 return rv;
1268 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269}
1270
Arjan van de Ven00977a52007-02-12 00:55:34 -08001271static const struct file_operations proc_loginuid_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 .read = proc_loginuid_read,
1273 .write = proc_loginuid_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001274 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275};
Eric Paris1e0bd752008-03-13 08:15:31 -04001276
1277static ssize_t proc_sessionid_read(struct file * file, char __user * buf,
1278 size_t count, loff_t *ppos)
1279{
Al Viro496ad9a2013-01-23 17:07:38 -05001280 struct inode * inode = file_inode(file);
Eric Paris1e0bd752008-03-13 08:15:31 -04001281 struct task_struct *task = get_proc_task(inode);
1282 ssize_t length;
1283 char tmpbuf[TMPBUFLEN];
1284
1285 if (!task)
1286 return -ESRCH;
1287 length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
1288 audit_get_sessionid(task));
1289 put_task_struct(task);
1290 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1291}
1292
1293static const struct file_operations proc_sessionid_operations = {
1294 .read = proc_sessionid_read,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001295 .llseek = generic_file_llseek,
Eric Paris1e0bd752008-03-13 08:15:31 -04001296};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297#endif
1298
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001299#ifdef CONFIG_FAULT_INJECTION
1300static ssize_t proc_fault_inject_read(struct file * file, char __user * buf,
1301 size_t count, loff_t *ppos)
1302{
Al Viro496ad9a2013-01-23 17:07:38 -05001303 struct task_struct *task = get_proc_task(file_inode(file));
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001304 char buffer[PROC_NUMBUF];
1305 size_t len;
1306 int make_it_fail;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001307
1308 if (!task)
1309 return -ESRCH;
1310 make_it_fail = task->make_it_fail;
1311 put_task_struct(task);
1312
1313 len = snprintf(buffer, sizeof(buffer), "%i\n", make_it_fail);
Akinobu Mita0c28f282007-05-08 00:31:41 -07001314
1315 return simple_read_from_buffer(buf, count, ppos, buffer, len);
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001316}
1317
1318static ssize_t proc_fault_inject_write(struct file * file,
1319 const char __user * buf, size_t count, loff_t *ppos)
1320{
1321 struct task_struct *task;
Alexey Dobriyan774636e2015-09-09 15:36:59 -07001322 char buffer[PROC_NUMBUF];
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001323 int make_it_fail;
Alexey Dobriyan774636e2015-09-09 15:36:59 -07001324 int rv;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001325
1326 if (!capable(CAP_SYS_RESOURCE))
1327 return -EPERM;
1328 memset(buffer, 0, sizeof(buffer));
1329 if (count > sizeof(buffer) - 1)
1330 count = sizeof(buffer) - 1;
1331 if (copy_from_user(buffer, buf, count))
1332 return -EFAULT;
Alexey Dobriyan774636e2015-09-09 15:36:59 -07001333 rv = kstrtoint(strstrip(buffer), 0, &make_it_fail);
1334 if (rv < 0)
1335 return rv;
Dave Jones16caed32014-04-07 15:39:15 -07001336 if (make_it_fail < 0 || make_it_fail > 1)
1337 return -EINVAL;
1338
Al Viro496ad9a2013-01-23 17:07:38 -05001339 task = get_proc_task(file_inode(file));
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001340 if (!task)
1341 return -ESRCH;
1342 task->make_it_fail = make_it_fail;
1343 put_task_struct(task);
Vincent Licba8aaf2009-09-22 16:45:38 -07001344
1345 return count;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001346}
1347
Arjan van de Ven00977a52007-02-12 00:55:34 -08001348static const struct file_operations proc_fault_inject_operations = {
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001349 .read = proc_fault_inject_read,
1350 .write = proc_fault_inject_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001351 .llseek = generic_file_llseek,
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001352};
Dmitry Vyukove41d58182017-07-12 14:34:35 -07001353
1354static ssize_t proc_fail_nth_write(struct file *file, const char __user *buf,
1355 size_t count, loff_t *ppos)
1356{
1357 struct task_struct *task;
Akinobu Mita9049f2f2017-07-14 14:49:52 -07001358 int err;
1359 unsigned int n;
Dmitry Vyukove41d58182017-07-12 14:34:35 -07001360
Akinobu Mita9049f2f2017-07-14 14:49:52 -07001361 err = kstrtouint_from_user(buf, count, 0, &n);
Dmitry Vyukove41d58182017-07-12 14:34:35 -07001362 if (err)
1363 return err;
Akinobu Mita1203c8e2017-07-14 14:49:57 -07001364
1365 task = get_proc_task(file_inode(file));
1366 if (!task)
1367 return -ESRCH;
Alexey Dobriyan9f7118b2018-02-06 15:36:55 -08001368 task->fail_nth = n;
Akinobu Mita1203c8e2017-07-14 14:49:57 -07001369 put_task_struct(task);
1370
Dmitry Vyukove41d58182017-07-12 14:34:35 -07001371 return count;
1372}
1373
1374static ssize_t proc_fail_nth_read(struct file *file, char __user *buf,
1375 size_t count, loff_t *ppos)
1376{
1377 struct task_struct *task;
Akinobu Mitabfc74092017-07-14 14:49:54 -07001378 char numbuf[PROC_NUMBUF];
1379 ssize_t len;
Dmitry Vyukove41d58182017-07-12 14:34:35 -07001380
1381 task = get_proc_task(file_inode(file));
1382 if (!task)
1383 return -ESRCH;
Alexey Dobriyan9f7118b2018-02-06 15:36:55 -08001384 len = snprintf(numbuf, sizeof(numbuf), "%u\n", task->fail_nth);
Akinobu Mita1203c8e2017-07-14 14:49:57 -07001385 put_task_struct(task);
Alexey Dobriyana44937f2018-08-21 21:54:27 -07001386 return simple_read_from_buffer(buf, count, ppos, numbuf, len);
Dmitry Vyukove41d58182017-07-12 14:34:35 -07001387}
1388
1389static const struct file_operations proc_fail_nth_operations = {
1390 .read = proc_fail_nth_read,
1391 .write = proc_fail_nth_write,
1392};
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001393#endif
1394
Arjan van de Ven97455122008-01-25 21:08:34 +01001395
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001396#ifdef CONFIG_SCHED_DEBUG
1397/*
1398 * Print out various scheduling related per-task fields:
1399 */
1400static int sched_show(struct seq_file *m, void *v)
1401{
1402 struct inode *inode = m->private;
Christoph Hellwig76f668b2018-05-16 07:19:01 +02001403 struct pid_namespace *ns = proc_pid_ns(inode);
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001404 struct task_struct *p;
1405
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001406 p = get_proc_task(inode);
1407 if (!p)
1408 return -ESRCH;
Aleksa Sarai74dc3382017-08-06 14:41:41 +10001409 proc_sched_show_task(p, ns, m);
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001410
1411 put_task_struct(p);
1412
1413 return 0;
1414}
1415
1416static ssize_t
1417sched_write(struct file *file, const char __user *buf,
1418 size_t count, loff_t *offset)
1419{
Al Viro496ad9a2013-01-23 17:07:38 -05001420 struct inode *inode = file_inode(file);
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001421 struct task_struct *p;
1422
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001423 p = get_proc_task(inode);
1424 if (!p)
1425 return -ESRCH;
1426 proc_sched_set_task(p);
1427
1428 put_task_struct(p);
1429
1430 return count;
1431}
1432
1433static int sched_open(struct inode *inode, struct file *filp)
1434{
Jovi Zhangc6a34052011-01-12 17:00:34 -08001435 return single_open(filp, sched_show, inode);
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001436}
1437
1438static const struct file_operations proc_pid_sched_operations = {
1439 .open = sched_open,
1440 .read = seq_read,
1441 .write = sched_write,
1442 .llseek = seq_lseek,
Alexey Dobriyan5ea473a2007-07-31 00:38:50 -07001443 .release = single_release,
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001444};
1445
1446#endif
1447
Mike Galbraith5091faa2010-11-30 14:18:03 +01001448#ifdef CONFIG_SCHED_AUTOGROUP
1449/*
1450 * Print out autogroup related information:
1451 */
1452static int sched_autogroup_show(struct seq_file *m, void *v)
1453{
1454 struct inode *inode = m->private;
1455 struct task_struct *p;
1456
1457 p = get_proc_task(inode);
1458 if (!p)
1459 return -ESRCH;
1460 proc_sched_autogroup_show_task(p, m);
1461
1462 put_task_struct(p);
1463
1464 return 0;
1465}
1466
1467static ssize_t
1468sched_autogroup_write(struct file *file, const char __user *buf,
1469 size_t count, loff_t *offset)
1470{
Al Viro496ad9a2013-01-23 17:07:38 -05001471 struct inode *inode = file_inode(file);
Mike Galbraith5091faa2010-11-30 14:18:03 +01001472 struct task_struct *p;
1473 char buffer[PROC_NUMBUF];
Alexey Dobriyan0a8cb8e2011-05-26 16:25:50 -07001474 int nice;
Mike Galbraith5091faa2010-11-30 14:18:03 +01001475 int err;
1476
1477 memset(buffer, 0, sizeof(buffer));
1478 if (count > sizeof(buffer) - 1)
1479 count = sizeof(buffer) - 1;
1480 if (copy_from_user(buffer, buf, count))
1481 return -EFAULT;
1482
Alexey Dobriyan0a8cb8e2011-05-26 16:25:50 -07001483 err = kstrtoint(strstrip(buffer), 0, &nice);
1484 if (err < 0)
1485 return err;
Mike Galbraith5091faa2010-11-30 14:18:03 +01001486
1487 p = get_proc_task(inode);
1488 if (!p)
1489 return -ESRCH;
1490
Hiroshi Shimamoto2e5b5b32012-02-23 17:41:27 +09001491 err = proc_sched_autogroup_set_nice(p, nice);
Mike Galbraith5091faa2010-11-30 14:18:03 +01001492 if (err)
1493 count = err;
1494
1495 put_task_struct(p);
1496
1497 return count;
1498}
1499
1500static int sched_autogroup_open(struct inode *inode, struct file *filp)
1501{
1502 int ret;
1503
1504 ret = single_open(filp, sched_autogroup_show, NULL);
1505 if (!ret) {
1506 struct seq_file *m = filp->private_data;
1507
1508 m->private = inode;
1509 }
1510 return ret;
1511}
1512
1513static const struct file_operations proc_pid_sched_autogroup_operations = {
1514 .open = sched_autogroup_open,
1515 .read = seq_read,
1516 .write = sched_autogroup_write,
1517 .llseek = seq_lseek,
1518 .release = single_release,
1519};
1520
1521#endif /* CONFIG_SCHED_AUTOGROUP */
1522
john stultz4614a696b2009-12-14 18:00:05 -08001523static ssize_t comm_write(struct file *file, const char __user *buf,
1524 size_t count, loff_t *offset)
1525{
Al Viro496ad9a2013-01-23 17:07:38 -05001526 struct inode *inode = file_inode(file);
john stultz4614a696b2009-12-14 18:00:05 -08001527 struct task_struct *p;
1528 char buffer[TASK_COMM_LEN];
David Rientjes830e0fc2013-04-30 15:28:18 -07001529 const size_t maxlen = sizeof(buffer) - 1;
john stultz4614a696b2009-12-14 18:00:05 -08001530
1531 memset(buffer, 0, sizeof(buffer));
David Rientjes830e0fc2013-04-30 15:28:18 -07001532 if (copy_from_user(buffer, buf, count > maxlen ? maxlen : count))
john stultz4614a696b2009-12-14 18:00:05 -08001533 return -EFAULT;
1534
1535 p = get_proc_task(inode);
1536 if (!p)
1537 return -ESRCH;
1538
1539 if (same_thread_group(current, p))
1540 set_task_comm(p, buffer);
1541 else
1542 count = -EINVAL;
1543
1544 put_task_struct(p);
1545
1546 return count;
1547}
1548
1549static int comm_show(struct seq_file *m, void *v)
1550{
1551 struct inode *inode = m->private;
1552 struct task_struct *p;
1553
1554 p = get_proc_task(inode);
1555 if (!p)
1556 return -ESRCH;
1557
Tejun Heo88b72b32018-05-18 08:47:13 -07001558 proc_task_name(m, p, false);
1559 seq_putc(m, '\n');
john stultz4614a696b2009-12-14 18:00:05 -08001560
1561 put_task_struct(p);
1562
1563 return 0;
1564}
1565
1566static int comm_open(struct inode *inode, struct file *filp)
1567{
Jovi Zhangc6a34052011-01-12 17:00:34 -08001568 return single_open(filp, comm_show, inode);
john stultz4614a696b2009-12-14 18:00:05 -08001569}
1570
1571static const struct file_operations proc_pid_set_comm_operations = {
1572 .open = comm_open,
1573 .read = seq_read,
1574 .write = comm_write,
1575 .llseek = seq_lseek,
1576 .release = single_release,
1577};
1578
Cyrill Gorcunov7773fbc2012-01-10 15:11:20 -08001579static int proc_exe_link(struct dentry *dentry, struct path *exe_path)
Matt Helsley925d1c42008-04-29 01:01:36 -07001580{
1581 struct task_struct *task;
Matt Helsley925d1c42008-04-29 01:01:36 -07001582 struct file *exe_file;
1583
David Howells2b0143b2015-03-17 22:25:59 +00001584 task = get_proc_task(d_inode(dentry));
Matt Helsley925d1c42008-04-29 01:01:36 -07001585 if (!task)
1586 return -ENOENT;
Mateusz Guzikcd81a9172016-08-23 16:20:38 +02001587 exe_file = get_task_exe_file(task);
Matt Helsley925d1c42008-04-29 01:01:36 -07001588 put_task_struct(task);
Matt Helsley925d1c42008-04-29 01:01:36 -07001589 if (exe_file) {
1590 *exe_path = exe_file->f_path;
1591 path_get(&exe_file->f_path);
1592 fput(exe_file);
1593 return 0;
1594 } else
1595 return -ENOENT;
1596}
1597
Al Viro6b255392015-11-17 10:20:54 -05001598static const char *proc_pid_get_link(struct dentry *dentry,
Al Virofceef392015-12-29 15:58:39 -05001599 struct inode *inode,
1600 struct delayed_call *done)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601{
Christoph Hellwig408ef012012-06-18 10:47:03 -04001602 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 int error = -EACCES;
1604
Al Viro6b255392015-11-17 10:20:54 -05001605 if (!dentry)
1606 return ERR_PTR(-ECHILD);
1607
Eric W. Biederman778c1142006-06-26 00:25:58 -07001608 /* Are we allowed to snoop on the tasks file descriptors? */
1609 if (!proc_fd_access_allowed(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
Christoph Hellwig408ef012012-06-18 10:47:03 -04001612 error = PROC_I(inode)->op.proc_get_link(dentry, &path);
1613 if (error)
1614 goto out;
1615
Al Viro6e77137b2015-05-02 13:37:52 -04001616 nd_jump_link(&path);
Christoph Hellwig408ef012012-06-18 10:47:03 -04001617 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618out:
Al Viro008b1502005-08-20 00:17:39 +01001619 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620}
1621
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001622static int do_proc_readlink(struct path *path, char __user *buffer, int buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623{
Michal Hocko0ee931c2017-09-13 16:28:29 -07001624 char *tmp = (char *)__get_free_page(GFP_KERNEL);
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001625 char *pathname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 int len;
1627
1628 if (!tmp)
1629 return -ENOMEM;
Akinobu Mita0c28f282007-05-08 00:31:41 -07001630
Eric W. Biederman7b2a69b2010-12-05 15:51:21 -08001631 pathname = d_path(path, tmp, PAGE_SIZE);
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001632 len = PTR_ERR(pathname);
1633 if (IS_ERR(pathname))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 goto out;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001635 len = tmp + PAGE_SIZE - 1 - pathname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
1637 if (len > buflen)
1638 len = buflen;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001639 if (copy_to_user(buffer, pathname, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 len = -EFAULT;
1641 out:
1642 free_page((unsigned long)tmp);
1643 return len;
1644}
1645
1646static int proc_pid_readlink(struct dentry * dentry, char __user * buffer, int buflen)
1647{
1648 int error = -EACCES;
David Howells2b0143b2015-03-17 22:25:59 +00001649 struct inode *inode = d_inode(dentry);
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001650 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
Eric W. Biederman778c1142006-06-26 00:25:58 -07001652 /* Are we allowed to snoop on the tasks file descriptors? */
1653 if (!proc_fd_access_allowed(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
Cyrill Gorcunov7773fbc2012-01-10 15:11:20 -08001656 error = PROC_I(inode)->op.proc_get_link(dentry, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 if (error)
1658 goto out;
1659
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001660 error = do_proc_readlink(&path, buffer, buflen);
1661 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 return error;
1664}
1665
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +04001666const struct inode_operations proc_pid_link_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 .readlink = proc_pid_readlink,
Al Viro6b255392015-11-17 10:20:54 -05001668 .get_link = proc_pid_get_link,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07001669 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670};
1671
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001672
1673/* building an inode */
1674
Al Viroc6eb50d2017-09-30 14:45:42 -04001675void task_dump_owner(struct task_struct *task, umode_t mode,
Eric W. Biederman68eb94f2017-01-03 10:23:11 +13001676 kuid_t *ruid, kgid_t *rgid)
1677{
1678 /* Depending on the state of dumpable compute who should own a
1679 * proc file for a task.
1680 */
1681 const struct cred *cred;
1682 kuid_t uid;
1683 kgid_t gid;
1684
Alexey Dobriyan2e0ad552018-04-20 14:56:03 -07001685 if (unlikely(task->flags & PF_KTHREAD)) {
1686 *ruid = GLOBAL_ROOT_UID;
1687 *rgid = GLOBAL_ROOT_GID;
1688 return;
1689 }
1690
Eric W. Biederman68eb94f2017-01-03 10:23:11 +13001691 /* Default to the tasks effective ownership */
1692 rcu_read_lock();
1693 cred = __task_cred(task);
1694 uid = cred->euid;
1695 gid = cred->egid;
1696 rcu_read_unlock();
1697
1698 /*
1699 * Before the /proc/pid/status file was created the only way to read
1700 * the effective uid of a /process was to stat /proc/pid. Reading
1701 * /proc/pid/status is slow enough that procps and other packages
1702 * kept stating /proc/pid. To keep the rules in /proc simple I have
1703 * made this apply to all per process world readable and executable
1704 * directories.
1705 */
1706 if (mode != (S_IFDIR|S_IRUGO|S_IXUGO)) {
1707 struct mm_struct *mm;
1708 task_lock(task);
1709 mm = task->mm;
1710 /* Make non-dumpable tasks owned by some root */
1711 if (mm) {
1712 if (get_dumpable(mm) != SUID_DUMP_USER) {
1713 struct user_namespace *user_ns = mm->user_ns;
1714
1715 uid = make_kuid(user_ns, 0);
1716 if (!uid_valid(uid))
1717 uid = GLOBAL_ROOT_UID;
1718
1719 gid = make_kgid(user_ns, 0);
1720 if (!gid_valid(gid))
1721 gid = GLOBAL_ROOT_GID;
1722 }
1723 } else {
1724 uid = GLOBAL_ROOT_UID;
1725 gid = GLOBAL_ROOT_GID;
1726 }
1727 task_unlock(task);
1728 }
1729 *ruid = uid;
1730 *rgid = gid;
1731}
1732
Andreas Gruenbacherdb978da2016-11-10 22:18:28 +01001733struct inode *proc_pid_make_inode(struct super_block * sb,
1734 struct task_struct *task, umode_t mode)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001735{
1736 struct inode * inode;
1737 struct proc_inode *ei;
1738
1739 /* We need a new inode */
1740
1741 inode = new_inode(sb);
1742 if (!inode)
1743 goto out;
1744
1745 /* Common stuff */
1746 ei = PROC_I(inode);
Andreas Gruenbacherdb978da2016-11-10 22:18:28 +01001747 inode->i_mode = mode;
Christoph Hellwig85fe4022010-10-23 11:19:54 -04001748 inode->i_ino = get_next_ino();
Deepa Dinamani078cd822016-09-14 07:48:04 -07001749 inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001750 inode->i_op = &proc_def_inode_operations;
1751
1752 /*
1753 * grab the reference to task.
1754 */
Oleg Nesterov1a657f782006-10-02 02:18:59 -07001755 ei->pid = get_task_pid(task, PIDTYPE_PID);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001756 if (!ei->pid)
1757 goto out_unlock;
1758
Eric W. Biederman68eb94f2017-01-03 10:23:11 +13001759 task_dump_owner(task, 0, &inode->i_uid, &inode->i_gid);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001760 security_task_to_inode(task, inode);
1761
1762out:
1763 return inode;
1764
1765out_unlock:
1766 iput(inode);
1767 return NULL;
1768}
1769
David Howellsa528d352017-01-31 16:46:22 +00001770int pid_getattr(const struct path *path, struct kstat *stat,
1771 u32 request_mask, unsigned int query_flags)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001772{
David Howellsa528d352017-01-31 16:46:22 +00001773 struct inode *inode = d_inode(path->dentry);
Christoph Hellwig76f668b2018-05-16 07:19:01 +02001774 struct pid_namespace *pid = proc_pid_ns(inode);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001775 struct task_struct *task;
David Howellsc69e8d92008-11-14 10:39:19 +11001776
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001777 generic_fillattr(inode, stat);
1778
Eric W. Biedermandcb0f222012-02-09 08:48:21 -08001779 stat->uid = GLOBAL_ROOT_UID;
1780 stat->gid = GLOBAL_ROOT_GID;
Alexey Dobriyan94116922018-06-07 17:10:07 -07001781 rcu_read_lock();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001782 task = pid_task(proc_pid(inode), PIDTYPE_PID);
1783 if (task) {
Lafcadio Wluiki796f5712017-02-24 15:00:23 -08001784 if (!has_pid_permissions(pid, task, HIDEPID_INVISIBLE)) {
Vasiliy Kulikov04996802012-01-10 15:11:31 -08001785 rcu_read_unlock();
1786 /*
1787 * This doesn't prevent learning whether PID exists,
1788 * it only makes getattr() consistent with readdir().
1789 */
1790 return -ENOENT;
1791 }
Eric W. Biederman68eb94f2017-01-03 10:23:11 +13001792 task_dump_owner(task, inode->i_mode, &stat->uid, &stat->gid);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001793 }
1794 rcu_read_unlock();
1795 return 0;
1796}
1797
1798/* dentry stuff */
1799
1800/*
Al Viro1bbc5512018-05-02 21:26:16 -04001801 * Set <pid>/... inode ownership (can change due to setuid(), etc.)
1802 */
1803void pid_update_inode(struct task_struct *task, struct inode *inode)
1804{
1805 task_dump_owner(task, inode->i_mode, &inode->i_uid, &inode->i_gid);
1806
1807 inode->i_mode &= ~(S_ISUID | S_ISGID);
1808 security_task_to_inode(task, inode);
1809}
1810
1811/*
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001812 * Rewrite the inode's ownerships here because the owning task may have
1813 * performed a setuid(), etc.
1814 *
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001815 */
Al Viro1bbc5512018-05-02 21:26:16 -04001816static int pid_revalidate(struct dentry *dentry, unsigned int flags)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001817{
Nick Piggin34286d62011-01-07 17:49:57 +11001818 struct inode *inode;
1819 struct task_struct *task;
David Howellsc69e8d92008-11-14 10:39:19 +11001820
Al Viro0b728e12012-06-10 16:03:43 -04001821 if (flags & LOOKUP_RCU)
Nick Piggin34286d62011-01-07 17:49:57 +11001822 return -ECHILD;
1823
David Howells2b0143b2015-03-17 22:25:59 +00001824 inode = d_inode(dentry);
Nick Piggin34286d62011-01-07 17:49:57 +11001825 task = get_proc_task(inode);
1826
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001827 if (task) {
Al Viro1bbc5512018-05-02 21:26:16 -04001828 pid_update_inode(task, inode);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001829 put_task_struct(task);
1830 return 1;
1831 }
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001832 return 0;
1833}
1834
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08001835static inline bool proc_inode_is_dead(struct inode *inode)
1836{
1837 return !proc_pid(inode)->tasks[PIDTYPE_PID].first;
1838}
1839
David Howells1dd704b2013-04-12 01:08:50 +01001840int pid_delete_dentry(const struct dentry *dentry)
1841{
1842 /* Is the task we represent dead?
1843 * If so, then don't put the dentry on the lru list,
1844 * kill it immediately.
1845 */
David Howells2b0143b2015-03-17 22:25:59 +00001846 return proc_inode_is_dead(d_inode(dentry));
David Howells1dd704b2013-04-12 01:08:50 +01001847}
1848
Eric W. Biederman6b4e3062010-03-07 16:41:34 -08001849const struct dentry_operations pid_dentry_operations =
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001850{
1851 .d_revalidate = pid_revalidate,
1852 .d_delete = pid_delete_dentry,
1853};
1854
1855/* Lookups */
1856
Eric W. Biederman1c0d04c2006-10-02 02:18:57 -07001857/*
1858 * Fill a directory entry.
1859 *
1860 * If possible create the dcache entry and derive our inode number and
1861 * file type from dcache entry.
1862 *
1863 * Since all of the proc inode numbers are dynamically generated, the inode
1864 * numbers do not exist until the inode is cache. This means creating the
1865 * the dcache entry in readdir is necessary to keep the inode numbers
1866 * reported by readdir in sync with the inode numbers reported
1867 * by stat.
1868 */
Al Virof0c3b502013-05-16 12:07:31 -04001869bool proc_fill_cache(struct file *file, struct dir_context *ctx,
Alexey Dobriyana4ef3892018-06-07 17:10:10 -07001870 const char *name, unsigned int len,
Eric Dumazetc5141e62007-05-08 00:26:15 -07001871 instantiate_t instantiate, struct task_struct *task, const void *ptr)
Eric W. Biederman61a28782006-10-02 02:18:49 -07001872{
Al Virof0c3b502013-05-16 12:07:31 -04001873 struct dentry *child, *dir = file->f_path.dentry;
Al Viro1df98b82013-06-15 11:33:10 +04001874 struct qstr qname = QSTR_INIT(name, len);
Eric W. Biederman61a28782006-10-02 02:18:49 -07001875 struct inode *inode;
Al Viro0168b9e2018-05-03 09:21:05 -04001876 unsigned type = DT_UNKNOWN;
1877 ino_t ino = 1;
Eric W. Biederman61a28782006-10-02 02:18:49 -07001878
Al Viro1df98b82013-06-15 11:33:10 +04001879 child = d_hash_and_lookup(dir, &qname);
Eric W. Biederman61a28782006-10-02 02:18:49 -07001880 if (!child) {
Al Viro37817642016-04-20 16:31:31 -04001881 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
1882 child = d_alloc_parallel(dir, &qname, &wq);
1883 if (IS_ERR(child))
Al Viro1df98b82013-06-15 11:33:10 +04001884 goto end_instantiate;
Al Viro37817642016-04-20 16:31:31 -04001885 if (d_in_lookup(child)) {
Al Viro0168b9e2018-05-03 09:21:05 -04001886 struct dentry *res;
1887 res = instantiate(child, task, ptr);
Al Viro37817642016-04-20 16:31:31 -04001888 d_lookup_done(child);
Al Viro0168b9e2018-05-03 09:21:05 -04001889 if (unlikely(res)) {
1890 dput(child);
1891 child = res;
Al Virod85b3992018-06-08 01:17:11 -04001892 if (IS_ERR(child))
1893 goto end_instantiate;
Al Viro37817642016-04-20 16:31:31 -04001894 }
Eric W. Biederman61a28782006-10-02 02:18:49 -07001895 }
1896 }
David Howells2b0143b2015-03-17 22:25:59 +00001897 inode = d_inode(child);
Al Viro147ce692013-06-15 10:26:35 +04001898 ino = inode->i_ino;
1899 type = inode->i_mode >> 12;
Eric W. Biederman61a28782006-10-02 02:18:49 -07001900 dput(child);
Al Virod85b3992018-06-08 01:17:11 -04001901end_instantiate:
Al Virof0c3b502013-05-16 12:07:31 -04001902 return dir_emit(ctx, name, len, ino, type);
Eric W. Biederman61a28782006-10-02 02:18:49 -07001903}
1904
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001905/*
1906 * dname_to_vma_addr - maps a dentry name into two unsigned longs
1907 * which represent vma start and end addresses.
1908 */
1909static int dname_to_vma_addr(struct dentry *dentry,
1910 unsigned long *start, unsigned long *end)
1911{
Alexey Dobriyanac7f1062018-02-06 15:36:59 -08001912 const char *str = dentry->d_name.name;
1913 unsigned long long sval, eval;
1914 unsigned int len;
1915
Alexey Dobriyan35318db2018-04-10 16:41:14 -07001916 if (str[0] == '0' && str[1] != '-')
1917 return -EINVAL;
Alexey Dobriyanac7f1062018-02-06 15:36:59 -08001918 len = _parse_integer(str, 16, &sval);
1919 if (len & KSTRTOX_OVERFLOW)
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001920 return -EINVAL;
Alexey Dobriyanac7f1062018-02-06 15:36:59 -08001921 if (sval != (unsigned long)sval)
1922 return -EINVAL;
1923 str += len;
1924
1925 if (*str != '-')
1926 return -EINVAL;
1927 str++;
1928
Alexey Dobriyan35318db2018-04-10 16:41:14 -07001929 if (str[0] == '0' && str[1])
1930 return -EINVAL;
Alexey Dobriyanac7f1062018-02-06 15:36:59 -08001931 len = _parse_integer(str, 16, &eval);
1932 if (len & KSTRTOX_OVERFLOW)
1933 return -EINVAL;
1934 if (eval != (unsigned long)eval)
1935 return -EINVAL;
1936 str += len;
1937
1938 if (*str != '\0')
1939 return -EINVAL;
1940
1941 *start = sval;
1942 *end = eval;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001943
1944 return 0;
1945}
1946
Al Viro0b728e12012-06-10 16:03:43 -04001947static int map_files_d_revalidate(struct dentry *dentry, unsigned int flags)
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001948{
1949 unsigned long vm_start, vm_end;
1950 bool exact_vma_exists = false;
1951 struct mm_struct *mm = NULL;
1952 struct task_struct *task;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001953 struct inode *inode;
1954 int status = 0;
1955
Al Viro0b728e12012-06-10 16:03:43 -04001956 if (flags & LOOKUP_RCU)
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001957 return -ECHILD;
1958
David Howells2b0143b2015-03-17 22:25:59 +00001959 inode = d_inode(dentry);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001960 task = get_proc_task(inode);
1961 if (!task)
1962 goto out_notask;
1963
Jann Horncaaee622016-01-20 15:00:04 -08001964 mm = mm_access(task, PTRACE_MODE_READ_FSCREDS);
Cong Wang2344bec2012-05-31 16:26:18 -07001965 if (IS_ERR_OR_NULL(mm))
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001966 goto out;
1967
1968 if (!dname_to_vma_addr(dentry, &vm_start, &vm_end)) {
1969 down_read(&mm->mmap_sem);
1970 exact_vma_exists = !!find_exact_vma(mm, vm_start, vm_end);
1971 up_read(&mm->mmap_sem);
1972 }
1973
1974 mmput(mm);
1975
1976 if (exact_vma_exists) {
Eric W. Biederman68eb94f2017-01-03 10:23:11 +13001977 task_dump_owner(task, 0, &inode->i_uid, &inode->i_gid);
1978
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001979 security_task_to_inode(task, inode);
1980 status = 1;
1981 }
1982
1983out:
1984 put_task_struct(task);
1985
1986out_notask:
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001987 return status;
1988}
1989
1990static const struct dentry_operations tid_map_files_dentry_operations = {
1991 .d_revalidate = map_files_d_revalidate,
1992 .d_delete = pid_delete_dentry,
1993};
1994
Al Viro6b255392015-11-17 10:20:54 -05001995static int map_files_get_link(struct dentry *dentry, struct path *path)
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001996{
1997 unsigned long vm_start, vm_end;
1998 struct vm_area_struct *vma;
1999 struct task_struct *task;
2000 struct mm_struct *mm;
2001 int rc;
2002
2003 rc = -ENOENT;
David Howells2b0143b2015-03-17 22:25:59 +00002004 task = get_proc_task(d_inode(dentry));
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002005 if (!task)
2006 goto out;
2007
2008 mm = get_task_mm(task);
2009 put_task_struct(task);
2010 if (!mm)
2011 goto out;
2012
2013 rc = dname_to_vma_addr(dentry, &vm_start, &vm_end);
2014 if (rc)
2015 goto out_mmput;
2016
Artem Fetishev70335ab2014-03-10 15:49:45 -07002017 rc = -ENOENT;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002018 down_read(&mm->mmap_sem);
2019 vma = find_exact_vma(mm, vm_start, vm_end);
2020 if (vma && vma->vm_file) {
2021 *path = vma->vm_file->f_path;
2022 path_get(path);
2023 rc = 0;
2024 }
2025 up_read(&mm->mmap_sem);
2026
2027out_mmput:
2028 mmput(mm);
2029out:
2030 return rc;
2031}
2032
2033struct map_files_info {
Alexey Dobriyan20d28cd2018-02-06 15:37:06 -08002034 unsigned long start;
2035 unsigned long end;
Al Viro7b540d02012-08-27 14:55:26 -04002036 fmode_t mode;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002037};
2038
Calvin Owensbdb4d102015-09-09 15:35:54 -07002039/*
2040 * Only allow CAP_SYS_ADMIN to follow the links, due to concerns about how the
2041 * symlinks may be used to bypass permissions on ancestor directories in the
2042 * path to the file in question.
2043 */
2044static const char *
Al Viro6b255392015-11-17 10:20:54 -05002045proc_map_files_get_link(struct dentry *dentry,
Al Virofceef392015-12-29 15:58:39 -05002046 struct inode *inode,
2047 struct delayed_call *done)
Calvin Owensbdb4d102015-09-09 15:35:54 -07002048{
2049 if (!capable(CAP_SYS_ADMIN))
2050 return ERR_PTR(-EPERM);
2051
Al Virofceef392015-12-29 15:58:39 -05002052 return proc_pid_get_link(dentry, inode, done);
Calvin Owensbdb4d102015-09-09 15:35:54 -07002053}
2054
2055/*
Al Viro6b255392015-11-17 10:20:54 -05002056 * Identical to proc_pid_link_inode_operations except for get_link()
Calvin Owensbdb4d102015-09-09 15:35:54 -07002057 */
2058static const struct inode_operations proc_map_files_link_inode_operations = {
2059 .readlink = proc_pid_readlink,
Al Viro6b255392015-11-17 10:20:54 -05002060 .get_link = proc_map_files_get_link,
Calvin Owensbdb4d102015-09-09 15:35:54 -07002061 .setattr = proc_setattr,
2062};
2063
Al Viro0168b9e2018-05-03 09:21:05 -04002064static struct dentry *
2065proc_map_files_instantiate(struct dentry *dentry,
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002066 struct task_struct *task, const void *ptr)
2067{
Al Viro7b540d02012-08-27 14:55:26 -04002068 fmode_t mode = (fmode_t)(unsigned long)ptr;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002069 struct proc_inode *ei;
2070 struct inode *inode;
2071
Al Viro0168b9e2018-05-03 09:21:05 -04002072 inode = proc_pid_make_inode(dentry->d_sb, task, S_IFLNK |
Andreas Gruenbacherdb978da2016-11-10 22:18:28 +01002073 ((mode & FMODE_READ ) ? S_IRUSR : 0) |
2074 ((mode & FMODE_WRITE) ? S_IWUSR : 0));
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002075 if (!inode)
Al Viro0168b9e2018-05-03 09:21:05 -04002076 return ERR_PTR(-ENOENT);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002077
2078 ei = PROC_I(inode);
Al Viro6b255392015-11-17 10:20:54 -05002079 ei->op.proc_get_link = map_files_get_link;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002080
Calvin Owensbdb4d102015-09-09 15:35:54 -07002081 inode->i_op = &proc_map_files_link_inode_operations;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002082 inode->i_size = 64;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002083
2084 d_set_d_op(dentry, &tid_map_files_dentry_operations);
Al Viro0168b9e2018-05-03 09:21:05 -04002085 return d_splice_alias(inode, dentry);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002086}
2087
2088static struct dentry *proc_map_files_lookup(struct inode *dir,
Al Viro00cd8dd2012-06-10 17:13:09 -04002089 struct dentry *dentry, unsigned int flags)
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002090{
2091 unsigned long vm_start, vm_end;
2092 struct vm_area_struct *vma;
2093 struct task_struct *task;
Al Viro0168b9e2018-05-03 09:21:05 -04002094 struct dentry *result;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002095 struct mm_struct *mm;
2096
Al Viro0168b9e2018-05-03 09:21:05 -04002097 result = ERR_PTR(-ENOENT);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002098 task = get_proc_task(dir);
2099 if (!task)
2100 goto out;
2101
Al Viro0168b9e2018-05-03 09:21:05 -04002102 result = ERR_PTR(-EACCES);
Jann Horncaaee622016-01-20 15:00:04 -08002103 if (!ptrace_may_access(task, PTRACE_MODE_READ_FSCREDS))
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002104 goto out_put_task;
2105
Al Viro0168b9e2018-05-03 09:21:05 -04002106 result = ERR_PTR(-ENOENT);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002107 if (dname_to_vma_addr(dentry, &vm_start, &vm_end))
Cyrill Gorcunoveb94cd92012-05-17 17:03:25 -07002108 goto out_put_task;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002109
2110 mm = get_task_mm(task);
2111 if (!mm)
Cyrill Gorcunoveb94cd92012-05-17 17:03:25 -07002112 goto out_put_task;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002113
2114 down_read(&mm->mmap_sem);
2115 vma = find_exact_vma(mm, vm_start, vm_end);
2116 if (!vma)
2117 goto out_no_vma;
2118
Stanislav Kinsbursky05f56482012-11-26 16:29:42 -08002119 if (vma->vm_file)
Al Viro0168b9e2018-05-03 09:21:05 -04002120 result = proc_map_files_instantiate(dentry, task,
Stanislav Kinsbursky05f56482012-11-26 16:29:42 -08002121 (void *)(unsigned long)vma->vm_file->f_mode);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002122
2123out_no_vma:
2124 up_read(&mm->mmap_sem);
2125 mmput(mm);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002126out_put_task:
2127 put_task_struct(task);
2128out:
Al Viro0168b9e2018-05-03 09:21:05 -04002129 return result;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002130}
2131
2132static const struct inode_operations proc_map_files_inode_operations = {
2133 .lookup = proc_map_files_lookup,
2134 .permission = proc_fd_permission,
2135 .setattr = proc_setattr,
2136};
2137
2138static int
Al Virof0c3b502013-05-16 12:07:31 -04002139proc_map_files_readdir(struct file *file, struct dir_context *ctx)
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002140{
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002141 struct vm_area_struct *vma;
2142 struct task_struct *task;
2143 struct mm_struct *mm;
Al Virof0c3b502013-05-16 12:07:31 -04002144 unsigned long nr_files, pos, i;
2145 struct flex_array *fa = NULL;
2146 struct map_files_info info;
2147 struct map_files_info *p;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002148 int ret;
2149
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002150 ret = -ENOENT;
Al Virof0c3b502013-05-16 12:07:31 -04002151 task = get_proc_task(file_inode(file));
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002152 if (!task)
2153 goto out;
2154
2155 ret = -EACCES;
Jann Horncaaee622016-01-20 15:00:04 -08002156 if (!ptrace_may_access(task, PTRACE_MODE_READ_FSCREDS))
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002157 goto out_put_task;
2158
2159 ret = 0;
Al Virof0c3b502013-05-16 12:07:31 -04002160 if (!dir_emit_dots(file, ctx))
2161 goto out_put_task;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002162
Al Virof0c3b502013-05-16 12:07:31 -04002163 mm = get_task_mm(task);
2164 if (!mm)
2165 goto out_put_task;
2166 down_read(&mm->mmap_sem);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002167
Al Virof0c3b502013-05-16 12:07:31 -04002168 nr_files = 0;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002169
Al Virof0c3b502013-05-16 12:07:31 -04002170 /*
2171 * We need two passes here:
2172 *
2173 * 1) Collect vmas of mapped files with mmap_sem taken
2174 * 2) Release mmap_sem and instantiate entries
2175 *
2176 * otherwise we get lockdep complained, since filldir()
2177 * routine might require mmap_sem taken in might_fault().
2178 */
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002179
Al Virof0c3b502013-05-16 12:07:31 -04002180 for (vma = mm->mmap, pos = 2; vma; vma = vma->vm_next) {
2181 if (vma->vm_file && ++pos > ctx->pos)
2182 nr_files++;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002183 }
Al Virof0c3b502013-05-16 12:07:31 -04002184
2185 if (nr_files) {
2186 fa = flex_array_alloc(sizeof(info), nr_files,
2187 GFP_KERNEL);
2188 if (!fa || flex_array_prealloc(fa, 0, nr_files,
2189 GFP_KERNEL)) {
2190 ret = -ENOMEM;
2191 if (fa)
2192 flex_array_free(fa);
2193 up_read(&mm->mmap_sem);
2194 mmput(mm);
2195 goto out_put_task;
2196 }
2197 for (i = 0, vma = mm->mmap, pos = 2; vma;
2198 vma = vma->vm_next) {
2199 if (!vma->vm_file)
2200 continue;
2201 if (++pos <= ctx->pos)
2202 continue;
2203
Alexey Dobriyan20d28cd2018-02-06 15:37:06 -08002204 info.start = vma->vm_start;
2205 info.end = vma->vm_end;
Al Virof0c3b502013-05-16 12:07:31 -04002206 info.mode = vma->vm_file->f_mode;
Al Virof0c3b502013-05-16 12:07:31 -04002207 if (flex_array_put(fa, i++, &info, GFP_KERNEL))
2208 BUG();
2209 }
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002210 }
Al Virof0c3b502013-05-16 12:07:31 -04002211 up_read(&mm->mmap_sem);
Alexey Dobriyanfe079a52018-04-10 16:32:05 -07002212 mmput(mm);
Al Virof0c3b502013-05-16 12:07:31 -04002213
2214 for (i = 0; i < nr_files; i++) {
Alexey Dobriyan20d28cd2018-02-06 15:37:06 -08002215 char buf[4 * sizeof(long) + 2]; /* max: %lx-%lx\0 */
2216 unsigned int len;
2217
Al Virof0c3b502013-05-16 12:07:31 -04002218 p = flex_array_get(fa, i);
Alexey Dobriyan20d28cd2018-02-06 15:37:06 -08002219 len = snprintf(buf, sizeof(buf), "%lx-%lx", p->start, p->end);
Al Virof0c3b502013-05-16 12:07:31 -04002220 if (!proc_fill_cache(file, ctx,
Alexey Dobriyan20d28cd2018-02-06 15:37:06 -08002221 buf, len,
Al Virof0c3b502013-05-16 12:07:31 -04002222 proc_map_files_instantiate,
2223 task,
2224 (void *)(unsigned long)p->mode))
2225 break;
2226 ctx->pos++;
2227 }
2228 if (fa)
2229 flex_array_free(fa);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002230
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002231out_put_task:
2232 put_task_struct(task);
2233out:
2234 return ret;
2235}
2236
2237static const struct file_operations proc_map_files_operations = {
2238 .read = generic_read_dir,
Al Virof50752e2016-04-20 17:13:54 -04002239 .iterate_shared = proc_map_files_readdir,
2240 .llseek = generic_file_llseek,
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002241};
2242
Nicolas Pitreb18b6a92017-01-21 00:09:08 -05002243#if defined(CONFIG_CHECKPOINT_RESTORE) && defined(CONFIG_POSIX_TIMERS)
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04002244struct timers_private {
2245 struct pid *pid;
2246 struct task_struct *task;
2247 struct sighand_struct *sighand;
Pavel Emelyanov57b80152013-03-11 13:13:08 +04002248 struct pid_namespace *ns;
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04002249 unsigned long flags;
2250};
2251
2252static void *timers_start(struct seq_file *m, loff_t *pos)
2253{
2254 struct timers_private *tp = m->private;
2255
2256 tp->task = get_pid_task(tp->pid, PIDTYPE_PID);
2257 if (!tp->task)
2258 return ERR_PTR(-ESRCH);
2259
2260 tp->sighand = lock_task_sighand(tp->task, &tp->flags);
2261 if (!tp->sighand)
2262 return ERR_PTR(-ESRCH);
2263
2264 return seq_list_start(&tp->task->signal->posix_timers, *pos);
2265}
2266
2267static void *timers_next(struct seq_file *m, void *v, loff_t *pos)
2268{
2269 struct timers_private *tp = m->private;
2270 return seq_list_next(v, &tp->task->signal->posix_timers, pos);
2271}
2272
2273static void timers_stop(struct seq_file *m, void *v)
2274{
2275 struct timers_private *tp = m->private;
2276
2277 if (tp->sighand) {
2278 unlock_task_sighand(tp->task, &tp->flags);
2279 tp->sighand = NULL;
2280 }
2281
2282 if (tp->task) {
2283 put_task_struct(tp->task);
2284 tp->task = NULL;
2285 }
2286}
2287
2288static int show_timer(struct seq_file *m, void *v)
2289{
2290 struct k_itimer *timer;
Pavel Emelyanov57b80152013-03-11 13:13:08 +04002291 struct timers_private *tp = m->private;
2292 int notify;
Alexey Dobriyancedbcca2014-08-08 14:21:33 -07002293 static const char * const nstr[] = {
Pavel Emelyanov57b80152013-03-11 13:13:08 +04002294 [SIGEV_SIGNAL] = "signal",
2295 [SIGEV_NONE] = "none",
2296 [SIGEV_THREAD] = "thread",
2297 };
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04002298
2299 timer = list_entry((struct list_head *)v, struct k_itimer, list);
Pavel Emelyanov57b80152013-03-11 13:13:08 +04002300 notify = timer->it_sigev_notify;
2301
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04002302 seq_printf(m, "ID: %d\n", timer->it_id);
Linus Torvaldsba3edf1f2017-12-06 18:23:27 -08002303 seq_printf(m, "signal: %d/%px\n",
Joe Perches25ce3192015-04-15 16:18:17 -07002304 timer->sigq->info.si_signo,
2305 timer->sigq->info.si_value.sival_ptr);
Pavel Emelyanov57b80152013-03-11 13:13:08 +04002306 seq_printf(m, "notify: %s/%s.%d\n",
Joe Perches25ce3192015-04-15 16:18:17 -07002307 nstr[notify & ~SIGEV_THREAD_ID],
2308 (notify & SIGEV_THREAD_ID) ? "tid" : "pid",
2309 pid_nr_ns(timer->it_pid, tp->ns));
Pavel Tikhomirov15ef0292013-05-17 02:12:03 +04002310 seq_printf(m, "ClockID: %d\n", timer->it_clock);
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04002311
2312 return 0;
2313}
2314
2315static const struct seq_operations proc_timers_seq_ops = {
2316 .start = timers_start,
2317 .next = timers_next,
2318 .stop = timers_stop,
2319 .show = show_timer,
2320};
2321
2322static int proc_timers_open(struct inode *inode, struct file *file)
2323{
2324 struct timers_private *tp;
2325
2326 tp = __seq_open_private(file, &proc_timers_seq_ops,
2327 sizeof(struct timers_private));
2328 if (!tp)
2329 return -ENOMEM;
2330
2331 tp->pid = proc_pid(inode);
Christoph Hellwig76f668b2018-05-16 07:19:01 +02002332 tp->ns = proc_pid_ns(inode);
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04002333 return 0;
2334}
2335
2336static const struct file_operations proc_timers_operations = {
2337 .open = proc_timers_open,
2338 .read = seq_read,
2339 .llseek = seq_lseek,
2340 .release = seq_release_private,
2341};
Eric Engestromb5946be2016-03-17 14:20:57 -07002342#endif
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002343
John Stultz5de23d42016-03-17 14:20:54 -07002344static ssize_t timerslack_ns_write(struct file *file, const char __user *buf,
2345 size_t count, loff_t *offset)
2346{
2347 struct inode *inode = file_inode(file);
2348 struct task_struct *p;
2349 u64 slack_ns;
2350 int err;
2351
2352 err = kstrtoull_from_user(buf, count, 10, &slack_ns);
2353 if (err < 0)
2354 return err;
2355
2356 p = get_proc_task(inode);
2357 if (!p)
2358 return -ESRCH;
2359
John Stultz4b2bd5f2016-10-07 17:02:33 -07002360 if (p != current) {
Benjamin Gordon8da0b4f2019-01-03 15:25:56 -08002361 rcu_read_lock();
2362 if (!ns_capable(__task_cred(p)->user_ns, CAP_SYS_NICE)) {
2363 rcu_read_unlock();
John Stultz4b2bd5f2016-10-07 17:02:33 -07002364 count = -EPERM;
2365 goto out;
2366 }
Benjamin Gordon8da0b4f2019-01-03 15:25:56 -08002367 rcu_read_unlock();
John Stultz5de23d42016-03-17 14:20:54 -07002368
John Stultz4b2bd5f2016-10-07 17:02:33 -07002369 err = security_task_setscheduler(p);
2370 if (err) {
2371 count = err;
2372 goto out;
2373 }
John Stultz904763e2016-10-07 17:02:29 -07002374 }
2375
John Stultz7abbaf92016-10-07 17:02:26 -07002376 task_lock(p);
2377 if (slack_ns == 0)
2378 p->timer_slack_ns = p->default_timer_slack_ns;
2379 else
2380 p->timer_slack_ns = slack_ns;
2381 task_unlock(p);
2382
2383out:
John Stultz5de23d42016-03-17 14:20:54 -07002384 put_task_struct(p);
2385
2386 return count;
2387}
2388
2389static int timerslack_ns_show(struct seq_file *m, void *v)
2390{
2391 struct inode *inode = m->private;
2392 struct task_struct *p;
John Stultz7abbaf92016-10-07 17:02:26 -07002393 int err = 0;
John Stultz5de23d42016-03-17 14:20:54 -07002394
2395 p = get_proc_task(inode);
2396 if (!p)
2397 return -ESRCH;
2398
John Stultz4b2bd5f2016-10-07 17:02:33 -07002399 if (p != current) {
Benjamin Gordon8da0b4f2019-01-03 15:25:56 -08002400 rcu_read_lock();
2401 if (!ns_capable(__task_cred(p)->user_ns, CAP_SYS_NICE)) {
2402 rcu_read_unlock();
John Stultz4b2bd5f2016-10-07 17:02:33 -07002403 err = -EPERM;
2404 goto out;
2405 }
Benjamin Gordon8da0b4f2019-01-03 15:25:56 -08002406 rcu_read_unlock();
2407
John Stultz4b2bd5f2016-10-07 17:02:33 -07002408 err = security_task_getscheduler(p);
2409 if (err)
2410 goto out;
2411 }
John Stultz904763e2016-10-07 17:02:29 -07002412
John Stultz7abbaf92016-10-07 17:02:26 -07002413 task_lock(p);
2414 seq_printf(m, "%llu\n", p->timer_slack_ns);
2415 task_unlock(p);
2416
2417out:
John Stultz5de23d42016-03-17 14:20:54 -07002418 put_task_struct(p);
2419
2420 return err;
2421}
2422
2423static int timerslack_ns_open(struct inode *inode, struct file *filp)
2424{
2425 return single_open(filp, timerslack_ns_show, inode);
2426}
2427
2428static const struct file_operations proc_pid_set_timerslack_ns_operations = {
2429 .open = timerslack_ns_open,
2430 .read = seq_read,
2431 .write = timerslack_ns_write,
2432 .llseek = seq_lseek,
2433 .release = single_release,
2434};
2435
Al Viro0168b9e2018-05-03 09:21:05 -04002436static struct dentry *proc_pident_instantiate(struct dentry *dentry,
2437 struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002438{
Eric Dumazetc5141e62007-05-08 00:26:15 -07002439 const struct pid_entry *p = ptr;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002440 struct inode *inode;
2441 struct proc_inode *ei;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002442
Al Viro0168b9e2018-05-03 09:21:05 -04002443 inode = proc_pid_make_inode(dentry->d_sb, task, p->mode);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002444 if (!inode)
Al Viro0168b9e2018-05-03 09:21:05 -04002445 return ERR_PTR(-ENOENT);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002446
2447 ei = PROC_I(inode);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002448 if (S_ISDIR(inode->i_mode))
Miklos Szeredibfe86842011-10-28 14:13:29 +02002449 set_nlink(inode, 2); /* Use getattr to fix if necessary */
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002450 if (p->iop)
2451 inode->i_op = p->iop;
2452 if (p->fop)
2453 inode->i_fop = p->fop;
2454 ei->op = p->op;
Al Viro1bbc5512018-05-02 21:26:16 -04002455 pid_update_inode(task, inode);
Nick Pigginfb045ad2011-01-07 17:49:55 +11002456 d_set_d_op(dentry, &pid_dentry_operations);
Al Viro0168b9e2018-05-03 09:21:05 -04002457 return d_splice_alias(inode, dentry);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002458}
2459
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460static struct dentry *proc_pident_lookup(struct inode *dir,
2461 struct dentry *dentry,
Alexey Dobriyand5a572a2019-03-11 23:28:51 -07002462 const struct pid_entry *p,
2463 const struct pid_entry *end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464{
Eric W. Biederman99f89552006-06-26 00:25:55 -07002465 struct task_struct *task = get_proc_task(dir);
Al Viro0168b9e2018-05-03 09:21:05 -04002466 struct dentry *res = ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467
Eric W. Biederman99f89552006-06-26 00:25:55 -07002468 if (!task)
2469 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470
Eric W. Biederman20cdc892006-10-02 02:17:07 -07002471 /*
2472 * Yes, it does not scale. And it should not. Don't add
2473 * new entries into /proc/<tgid>/ without very good reasons.
2474 */
Alexey Dobriyand5a572a2019-03-11 23:28:51 -07002475 for (; p < end; p++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 if (p->len != dentry->d_name.len)
2477 continue;
Alexey Dobriyan26b95132018-06-14 15:27:17 -07002478 if (!memcmp(dentry->d_name.name, p->name, p->len)) {
2479 res = proc_pident_instantiate(dentry, task, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 break;
Alexey Dobriyan26b95132018-06-14 15:27:17 -07002481 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 }
Eric W. Biederman99f89552006-06-26 00:25:55 -07002483 put_task_struct(task);
2484out_no_task:
Al Viro0168b9e2018-05-03 09:21:05 -04002485 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486}
2487
Al Virof0c3b502013-05-16 12:07:31 -04002488static int proc_pident_readdir(struct file *file, struct dir_context *ctx,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002489 const struct pid_entry *ents, unsigned int nents)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002490{
Al Virof0c3b502013-05-16 12:07:31 -04002491 struct task_struct *task = get_proc_task(file_inode(file));
2492 const struct pid_entry *p;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002493
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002494 if (!task)
Al Virof0c3b502013-05-16 12:07:31 -04002495 return -ENOENT;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002496
Al Virof0c3b502013-05-16 12:07:31 -04002497 if (!dir_emit_dots(file, ctx))
2498 goto out;
2499
2500 if (ctx->pos >= nents + 2)
2501 goto out;
2502
Alexey Dobriyanbac5f5d2016-12-12 16:45:28 -08002503 for (p = ents + (ctx->pos - 2); p < ents + nents; p++) {
Al Virof0c3b502013-05-16 12:07:31 -04002504 if (!proc_fill_cache(file, ctx, p->name, p->len,
2505 proc_pident_instantiate, task, p))
2506 break;
2507 ctx->pos++;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002508 }
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002509out:
Eric W. Biederman61a28782006-10-02 02:18:49 -07002510 put_task_struct(task);
Al Virof0c3b502013-05-16 12:07:31 -04002511 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512}
2513
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514#ifdef CONFIG_SECURITY
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002515static ssize_t proc_pid_attr_read(struct file * file, char __user * buf,
2516 size_t count, loff_t *ppos)
2517{
Al Viro496ad9a2013-01-23 17:07:38 -05002518 struct inode * inode = file_inode(file);
Al Viro04ff9702007-03-12 16:17:58 +00002519 char *p = NULL;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002520 ssize_t length;
2521 struct task_struct *task = get_proc_task(inode);
2522
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002523 if (!task)
Al Viro04ff9702007-03-12 16:17:58 +00002524 return -ESRCH;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002525
Casey Schaufler6d9c9392018-09-21 17:16:59 -07002526 length = security_getprocattr(task, PROC_I(inode)->op.lsm,
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002527 (char*)file->f_path.dentry->d_name.name,
Al Viro04ff9702007-03-12 16:17:58 +00002528 &p);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002529 put_task_struct(task);
Al Viro04ff9702007-03-12 16:17:58 +00002530 if (length > 0)
2531 length = simple_read_from_buffer(buf, count, ppos, p, length);
2532 kfree(p);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002533 return length;
2534}
2535
2536static ssize_t proc_pid_attr_write(struct file * file, const char __user * buf,
2537 size_t count, loff_t *ppos)
2538{
Al Viro496ad9a2013-01-23 17:07:38 -05002539 struct inode * inode = file_inode(file);
Alexey Dobriyan41089b62018-08-21 21:54:30 -07002540 struct task_struct *task;
Al Virobb646cd2015-12-24 00:16:30 -05002541 void *page;
Alexey Dobriyan41089b62018-08-21 21:54:30 -07002542 int rv;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002543
Alexey Dobriyan41089b62018-08-21 21:54:30 -07002544 rcu_read_lock();
2545 task = pid_task(proc_pid(inode), PIDTYPE_PID);
2546 if (!task) {
2547 rcu_read_unlock();
2548 return -ESRCH;
2549 }
Stephen Smalleyb21507e2017-01-09 10:07:31 -05002550 /* A task may only write its own attributes. */
Alexey Dobriyan41089b62018-08-21 21:54:30 -07002551 if (current != task) {
2552 rcu_read_unlock();
2553 return -EACCES;
2554 }
2555 rcu_read_unlock();
Stephen Smalleyb21507e2017-01-09 10:07:31 -05002556
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002557 if (count > PAGE_SIZE)
2558 count = PAGE_SIZE;
2559
2560 /* No partial writes. */
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002561 if (*ppos != 0)
Alexey Dobriyan41089b62018-08-21 21:54:30 -07002562 return -EINVAL;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002563
Al Virobb646cd2015-12-24 00:16:30 -05002564 page = memdup_user(buf, count);
2565 if (IS_ERR(page)) {
Alexey Dobriyan41089b62018-08-21 21:54:30 -07002566 rv = PTR_ERR(page);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002567 goto out;
Al Virobb646cd2015-12-24 00:16:30 -05002568 }
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002569
David Howells107db7c2009-05-08 13:55:27 +01002570 /* Guard against adverse ptrace interaction */
Alexey Dobriyan41089b62018-08-21 21:54:30 -07002571 rv = mutex_lock_interruptible(&current->signal->cred_guard_mutex);
2572 if (rv < 0)
David Howells107db7c2009-05-08 13:55:27 +01002573 goto out_free;
2574
Casey Schaufler6d9c9392018-09-21 17:16:59 -07002575 rv = security_setprocattr(PROC_I(inode)->op.lsm,
2576 file->f_path.dentry->d_name.name, page,
2577 count);
Stephen Smalleyb21507e2017-01-09 10:07:31 -05002578 mutex_unlock(&current->signal->cred_guard_mutex);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002579out_free:
Al Virobb646cd2015-12-24 00:16:30 -05002580 kfree(page);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002581out:
Alexey Dobriyan41089b62018-08-21 21:54:30 -07002582 return rv;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002583}
2584
Arjan van de Ven00977a52007-02-12 00:55:34 -08002585static const struct file_operations proc_pid_attr_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002586 .read = proc_pid_attr_read,
2587 .write = proc_pid_attr_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01002588 .llseek = generic_file_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002589};
2590
Casey Schaufler6d9c9392018-09-21 17:16:59 -07002591#define LSM_DIR_OPS(LSM) \
2592static int proc_##LSM##_attr_dir_iterate(struct file *filp, \
2593 struct dir_context *ctx) \
2594{ \
2595 return proc_pident_readdir(filp, ctx, \
2596 LSM##_attr_dir_stuff, \
2597 ARRAY_SIZE(LSM##_attr_dir_stuff)); \
2598} \
2599\
2600static const struct file_operations proc_##LSM##_attr_dir_ops = { \
2601 .read = generic_read_dir, \
2602 .iterate = proc_##LSM##_attr_dir_iterate, \
2603 .llseek = default_llseek, \
2604}; \
2605\
2606static struct dentry *proc_##LSM##_attr_dir_lookup(struct inode *dir, \
2607 struct dentry *dentry, unsigned int flags) \
2608{ \
2609 return proc_pident_lookup(dir, dentry, \
2610 LSM##_attr_dir_stuff, \
Alexey Dobriyand5a572a2019-03-11 23:28:51 -07002611 LSM##_attr_dir_stuff + ARRAY_SIZE(LSM##_attr_dir_stuff)); \
Casey Schaufler6d9c9392018-09-21 17:16:59 -07002612} \
2613\
2614static const struct inode_operations proc_##LSM##_attr_dir_inode_ops = { \
2615 .lookup = proc_##LSM##_attr_dir_lookup, \
2616 .getattr = pid_getattr, \
2617 .setattr = proc_setattr, \
2618}
2619
2620#ifdef CONFIG_SECURITY_SMACK
2621static const struct pid_entry smack_attr_dir_stuff[] = {
2622 ATTR("smack", "current", 0666),
2623};
2624LSM_DIR_OPS(smack);
2625#endif
2626
Eric Dumazetc5141e62007-05-08 00:26:15 -07002627static const struct pid_entry attr_dir_stuff[] = {
Casey Schaufler6d9c9392018-09-21 17:16:59 -07002628 ATTR(NULL, "current", 0666),
2629 ATTR(NULL, "prev", 0444),
2630 ATTR(NULL, "exec", 0666),
2631 ATTR(NULL, "fscreate", 0666),
2632 ATTR(NULL, "keycreate", 0666),
2633 ATTR(NULL, "sockcreate", 0666),
2634#ifdef CONFIG_SECURITY_SMACK
2635 DIR("smack", 0555,
2636 proc_smack_attr_dir_inode_ops, proc_smack_attr_dir_ops),
2637#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002638};
2639
Al Virof0c3b502013-05-16 12:07:31 -04002640static int proc_attr_dir_readdir(struct file *file, struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641{
Al Virof0c3b502013-05-16 12:07:31 -04002642 return proc_pident_readdir(file, ctx,
2643 attr_dir_stuff, ARRAY_SIZE(attr_dir_stuff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644}
2645
Arjan van de Ven00977a52007-02-12 00:55:34 -08002646static const struct file_operations proc_attr_dir_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647 .read = generic_read_dir,
Al Virof50752e2016-04-20 17:13:54 -04002648 .iterate_shared = proc_attr_dir_readdir,
2649 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650};
2651
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002652static struct dentry *proc_attr_dir_lookup(struct inode *dir,
Al Viro00cd8dd2012-06-10 17:13:09 -04002653 struct dentry *dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654{
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002655 return proc_pident_lookup(dir, dentry,
Alexey Dobriyand5a572a2019-03-11 23:28:51 -07002656 attr_dir_stuff,
2657 attr_dir_stuff + ARRAY_SIZE(attr_dir_stuff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658}
2659
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002660static const struct inode_operations proc_attr_dir_inode_operations = {
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002661 .lookup = proc_attr_dir_lookup,
Eric W. Biederman99f89552006-06-26 00:25:55 -07002662 .getattr = pid_getattr,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07002663 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664};
2665
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666#endif
2667
Christoph Hellwig698ba7b2009-12-15 16:47:37 -08002668#ifdef CONFIG_ELF_CORE
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002669static ssize_t proc_coredump_filter_read(struct file *file, char __user *buf,
2670 size_t count, loff_t *ppos)
2671{
Al Viro496ad9a2013-01-23 17:07:38 -05002672 struct task_struct *task = get_proc_task(file_inode(file));
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002673 struct mm_struct *mm;
2674 char buffer[PROC_NUMBUF];
2675 size_t len;
2676 int ret;
2677
2678 if (!task)
2679 return -ESRCH;
2680
2681 ret = 0;
2682 mm = get_task_mm(task);
2683 if (mm) {
2684 len = snprintf(buffer, sizeof(buffer), "%08lx\n",
2685 ((mm->flags & MMF_DUMP_FILTER_MASK) >>
2686 MMF_DUMP_FILTER_SHIFT));
2687 mmput(mm);
2688 ret = simple_read_from_buffer(buf, count, ppos, buffer, len);
2689 }
2690
2691 put_task_struct(task);
2692
2693 return ret;
2694}
2695
2696static ssize_t proc_coredump_filter_write(struct file *file,
2697 const char __user *buf,
2698 size_t count,
2699 loff_t *ppos)
2700{
2701 struct task_struct *task;
2702 struct mm_struct *mm;
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002703 unsigned int val;
2704 int ret;
2705 int i;
2706 unsigned long mask;
2707
Alexey Dobriyan774636e2015-09-09 15:36:59 -07002708 ret = kstrtouint_from_user(buf, count, 0, &val);
2709 if (ret < 0)
2710 return ret;
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002711
2712 ret = -ESRCH;
Al Viro496ad9a2013-01-23 17:07:38 -05002713 task = get_proc_task(file_inode(file));
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002714 if (!task)
2715 goto out_no_task;
2716
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002717 mm = get_task_mm(task);
2718 if (!mm)
2719 goto out_no_mm;
Colin Ian King41a0c2492015-12-18 14:22:01 -08002720 ret = 0;
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002721
2722 for (i = 0, mask = 1; i < MMF_DUMP_FILTER_BITS; i++, mask <<= 1) {
2723 if (val & mask)
2724 set_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags);
2725 else
2726 clear_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags);
2727 }
2728
2729 mmput(mm);
2730 out_no_mm:
2731 put_task_struct(task);
2732 out_no_task:
Alexey Dobriyan774636e2015-09-09 15:36:59 -07002733 if (ret < 0)
2734 return ret;
2735 return count;
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002736}
2737
2738static const struct file_operations proc_coredump_filter_operations = {
2739 .read = proc_coredump_filter_read,
2740 .write = proc_coredump_filter_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01002741 .llseek = generic_file_llseek,
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002742};
2743#endif
2744
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002745#ifdef CONFIG_TASK_IO_ACCOUNTING
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07002746static int do_io_accounting(struct task_struct *task, struct seq_file *m, int whole)
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002747{
Andrea Righi940389b2008-07-28 00:48:12 +02002748 struct task_io_accounting acct = task->ioac;
Andrea Righi59954772008-07-27 17:29:15 +02002749 unsigned long flags;
Vasiliy Kulikov293eb1e2011-07-26 16:08:38 -07002750 int result;
Andrea Righi297c5d92008-07-25 01:48:49 -07002751
Vasiliy Kulikov293eb1e2011-07-26 16:08:38 -07002752 result = mutex_lock_killable(&task->signal->cred_guard_mutex);
2753 if (result)
2754 return result;
2755
Jann Horncaaee622016-01-20 15:00:04 -08002756 if (!ptrace_may_access(task, PTRACE_MODE_READ_FSCREDS)) {
Vasiliy Kulikov293eb1e2011-07-26 16:08:38 -07002757 result = -EACCES;
2758 goto out_unlock;
2759 }
Vasiliy Kulikov1d1221f2011-06-24 16:08:38 +04002760
Andrea Righi59954772008-07-27 17:29:15 +02002761 if (whole && lock_task_sighand(task, &flags)) {
2762 struct task_struct *t = task;
Andrea Righib2d002d2008-07-26 15:22:27 -07002763
Andrea Righi59954772008-07-27 17:29:15 +02002764 task_io_accounting_add(&acct, &task->signal->ioac);
2765 while_each_thread(task, t)
2766 task_io_accounting_add(&acct, &t->ioac);
Andrea Righi297c5d92008-07-25 01:48:49 -07002767
Andrea Righi59954772008-07-27 17:29:15 +02002768 unlock_task_sighand(task, &flags);
Andrea Righi297c5d92008-07-25 01:48:49 -07002769 }
Joe Perches25ce3192015-04-15 16:18:17 -07002770 seq_printf(m,
2771 "rchar: %llu\n"
2772 "wchar: %llu\n"
2773 "syscr: %llu\n"
2774 "syscw: %llu\n"
2775 "read_bytes: %llu\n"
2776 "write_bytes: %llu\n"
2777 "cancelled_write_bytes: %llu\n",
2778 (unsigned long long)acct.rchar,
2779 (unsigned long long)acct.wchar,
2780 (unsigned long long)acct.syscr,
2781 (unsigned long long)acct.syscw,
2782 (unsigned long long)acct.read_bytes,
2783 (unsigned long long)acct.write_bytes,
2784 (unsigned long long)acct.cancelled_write_bytes);
2785 result = 0;
2786
Vasiliy Kulikov293eb1e2011-07-26 16:08:38 -07002787out_unlock:
2788 mutex_unlock(&task->signal->cred_guard_mutex);
2789 return result;
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002790}
Andrea Righi297c5d92008-07-25 01:48:49 -07002791
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07002792static int proc_tid_io_accounting(struct seq_file *m, struct pid_namespace *ns,
2793 struct pid *pid, struct task_struct *task)
Andrea Righi297c5d92008-07-25 01:48:49 -07002794{
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07002795 return do_io_accounting(task, m, 0);
Andrea Righi297c5d92008-07-25 01:48:49 -07002796}
2797
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07002798static int proc_tgid_io_accounting(struct seq_file *m, struct pid_namespace *ns,
2799 struct pid *pid, struct task_struct *task)
Andrea Righi297c5d92008-07-25 01:48:49 -07002800{
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07002801 return do_io_accounting(task, m, 1);
Andrea Righi297c5d92008-07-25 01:48:49 -07002802}
2803#endif /* CONFIG_TASK_IO_ACCOUNTING */
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002804
Eric W. Biederman22d917d2011-11-17 00:11:58 -08002805#ifdef CONFIG_USER_NS
2806static int proc_id_map_open(struct inode *inode, struct file *file,
Fabian Frederickccf94f12014-08-08 14:21:22 -07002807 const struct seq_operations *seq_ops)
Eric W. Biederman22d917d2011-11-17 00:11:58 -08002808{
2809 struct user_namespace *ns = NULL;
2810 struct task_struct *task;
2811 struct seq_file *seq;
2812 int ret = -EINVAL;
2813
2814 task = get_proc_task(inode);
2815 if (task) {
2816 rcu_read_lock();
2817 ns = get_user_ns(task_cred_xxx(task, user_ns));
2818 rcu_read_unlock();
2819 put_task_struct(task);
2820 }
2821 if (!ns)
2822 goto err;
2823
2824 ret = seq_open(file, seq_ops);
2825 if (ret)
2826 goto err_put_ns;
2827
2828 seq = file->private_data;
2829 seq->private = ns;
2830
2831 return 0;
2832err_put_ns:
2833 put_user_ns(ns);
2834err:
2835 return ret;
2836}
2837
2838static int proc_id_map_release(struct inode *inode, struct file *file)
2839{
2840 struct seq_file *seq = file->private_data;
2841 struct user_namespace *ns = seq->private;
2842 put_user_ns(ns);
2843 return seq_release(inode, file);
2844}
2845
2846static int proc_uid_map_open(struct inode *inode, struct file *file)
2847{
2848 return proc_id_map_open(inode, file, &proc_uid_seq_operations);
2849}
2850
2851static int proc_gid_map_open(struct inode *inode, struct file *file)
2852{
2853 return proc_id_map_open(inode, file, &proc_gid_seq_operations);
2854}
2855
Eric W. Biedermanf76d2072012-08-30 01:24:05 -07002856static int proc_projid_map_open(struct inode *inode, struct file *file)
2857{
2858 return proc_id_map_open(inode, file, &proc_projid_seq_operations);
2859}
2860
Eric W. Biederman22d917d2011-11-17 00:11:58 -08002861static const struct file_operations proc_uid_map_operations = {
2862 .open = proc_uid_map_open,
2863 .write = proc_uid_map_write,
2864 .read = seq_read,
2865 .llseek = seq_lseek,
2866 .release = proc_id_map_release,
2867};
2868
2869static const struct file_operations proc_gid_map_operations = {
2870 .open = proc_gid_map_open,
2871 .write = proc_gid_map_write,
2872 .read = seq_read,
2873 .llseek = seq_lseek,
2874 .release = proc_id_map_release,
2875};
Eric W. Biedermanf76d2072012-08-30 01:24:05 -07002876
2877static const struct file_operations proc_projid_map_operations = {
2878 .open = proc_projid_map_open,
2879 .write = proc_projid_map_write,
2880 .read = seq_read,
2881 .llseek = seq_lseek,
2882 .release = proc_id_map_release,
2883};
Eric W. Biederman9cc46512014-12-02 12:27:26 -06002884
2885static int proc_setgroups_open(struct inode *inode, struct file *file)
2886{
2887 struct user_namespace *ns = NULL;
2888 struct task_struct *task;
2889 int ret;
2890
2891 ret = -ESRCH;
2892 task = get_proc_task(inode);
2893 if (task) {
2894 rcu_read_lock();
2895 ns = get_user_ns(task_cred_xxx(task, user_ns));
2896 rcu_read_unlock();
2897 put_task_struct(task);
2898 }
2899 if (!ns)
2900 goto err;
2901
2902 if (file->f_mode & FMODE_WRITE) {
2903 ret = -EACCES;
2904 if (!ns_capable(ns, CAP_SYS_ADMIN))
2905 goto err_put_ns;
2906 }
2907
2908 ret = single_open(file, &proc_setgroups_show, ns);
2909 if (ret)
2910 goto err_put_ns;
2911
2912 return 0;
2913err_put_ns:
2914 put_user_ns(ns);
2915err:
2916 return ret;
2917}
2918
2919static int proc_setgroups_release(struct inode *inode, struct file *file)
2920{
2921 struct seq_file *seq = file->private_data;
2922 struct user_namespace *ns = seq->private;
2923 int ret = single_release(inode, file);
2924 put_user_ns(ns);
2925 return ret;
2926}
2927
2928static const struct file_operations proc_setgroups_operations = {
2929 .open = proc_setgroups_open,
2930 .write = proc_setgroups_write,
2931 .read = seq_read,
2932 .llseek = seq_lseek,
2933 .release = proc_setgroups_release,
2934};
Eric W. Biederman22d917d2011-11-17 00:11:58 -08002935#endif /* CONFIG_USER_NS */
2936
Kees Cook47830722008-10-06 03:11:58 +04002937static int proc_pid_personality(struct seq_file *m, struct pid_namespace *ns,
2938 struct pid *pid, struct task_struct *task)
2939{
Al Viroa9712bc2011-03-23 15:52:50 -04002940 int err = lock_trace(task);
2941 if (!err) {
2942 seq_printf(m, "%08x\n", task->personality);
2943 unlock_trace(task);
2944 }
2945 return err;
Kees Cook47830722008-10-06 03:11:58 +04002946}
2947
Josh Poimboeuf7c23b332017-02-13 19:42:41 -06002948#ifdef CONFIG_LIVEPATCH
2949static int proc_pid_patch_state(struct seq_file *m, struct pid_namespace *ns,
2950 struct pid *pid, struct task_struct *task)
2951{
2952 seq_printf(m, "%d\n", task->patch_state);
2953 return 0;
2954}
2955#endif /* CONFIG_LIVEPATCH */
2956
Alexander Popovc8d12622018-08-17 01:17:01 +03002957#ifdef CONFIG_STACKLEAK_METRICS
2958static int proc_stack_depth(struct seq_file *m, struct pid_namespace *ns,
2959 struct pid *pid, struct task_struct *task)
2960{
2961 unsigned long prev_depth = THREAD_SIZE -
2962 (task->prev_lowest_stack & (THREAD_SIZE - 1));
2963 unsigned long depth = THREAD_SIZE -
2964 (task->lowest_stack & (THREAD_SIZE - 1));
2965
2966 seq_printf(m, "previous stack depth: %lu\nstack depth: %lu\n",
2967 prev_depth, depth);
2968 return 0;
2969}
2970#endif /* CONFIG_STACKLEAK_METRICS */
2971
Eric W. Biederman801199c2006-10-02 02:18:48 -07002972/*
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002973 * Thread groups
2974 */
Arjan van de Ven00977a52007-02-12 00:55:34 -08002975static const struct file_operations proc_task_operations;
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002976static const struct inode_operations proc_task_inode_operations;
Eric W. Biederman20cdc892006-10-02 02:17:07 -07002977
Eric Dumazetc5141e62007-05-08 00:26:15 -07002978static const struct pid_entry tgid_base_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002979 DIR("task", S_IRUGO|S_IXUGO, proc_task_inode_operations, proc_task_operations),
2980 DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations),
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002981 DIR("map_files", S_IRUSR|S_IXUSR, proc_map_files_inode_operations, proc_map_files_operations),
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002982 DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations),
Eric W. Biederman6b4e3062010-03-07 16:41:34 -08002983 DIR("ns", S_IRUSR|S_IXUGO, proc_ns_dir_inode_operations, proc_ns_dir_operations),
Andrew Mortonb2211a32008-03-11 18:03:35 -07002984#ifdef CONFIG_NET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002985 DIR("net", S_IRUGO|S_IXUGO, proc_net_inode_operations, proc_net_operations),
Andrew Mortonb2211a32008-03-11 18:03:35 -07002986#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002987 REG("environ", S_IRUSR, proc_environ_operations),
Al Viroc5317162016-10-05 18:43:43 -04002988 REG("auxv", S_IRUSR, proc_auxv_operations),
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002989 ONE("status", S_IRUGO, proc_pid_status),
Djalal Harouni35a35042014-04-07 15:38:36 -07002990 ONE("personality", S_IRUSR, proc_pid_personality),
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -07002991 ONE("limits", S_IRUGO, proc_pid_limits),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002992#ifdef CONFIG_SCHED_DEBUG
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002993 REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002994#endif
Mike Galbraith5091faa2010-11-30 14:18:03 +01002995#ifdef CONFIG_SCHED_AUTOGROUP
2996 REG("autogroup", S_IRUGO|S_IWUSR, proc_pid_sched_autogroup_operations),
2997#endif
john stultz4614a696b2009-12-14 18:00:05 -08002998 REG("comm", S_IRUGO|S_IWUSR, proc_pid_set_comm_operations),
Roland McGrathebcb6732008-07-25 19:46:00 -07002999#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
Alexey Dobriyan09d93bd2014-08-08 14:21:39 -07003000 ONE("syscall", S_IRUSR, proc_pid_syscall),
Roland McGrathebcb6732008-07-25 19:46:00 -07003001#endif
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -07003002 REG("cmdline", S_IRUGO, proc_pid_cmdline_ops),
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003003 ONE("stat", S_IRUGO, proc_tgid_stat),
3004 ONE("statm", S_IRUGO, proc_pid_statm),
Siddhesh Poyarekarb7643752012-03-21 16:34:04 -07003005 REG("maps", S_IRUGO, proc_pid_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003006#ifdef CONFIG_NUMA
Siddhesh Poyarekarb7643752012-03-21 16:34:04 -07003007 REG("numa_maps", S_IRUGO, proc_pid_numa_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003008#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003009 REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations),
3010 LNK("cwd", proc_cwd_link),
3011 LNK("root", proc_root_link),
3012 LNK("exe", proc_exe_link),
3013 REG("mounts", S_IRUGO, proc_mounts_operations),
3014 REG("mountinfo", S_IRUGO, proc_mountinfo_operations),
3015 REG("mountstats", S_IRUSR, proc_mountstats_operations),
Matt Mackall1e883282008-02-04 22:29:07 -08003016#ifdef CONFIG_PROC_PAGE_MONITOR
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003017 REG("clear_refs", S_IWUSR, proc_clear_refs_operations),
Siddhesh Poyarekarb7643752012-03-21 16:34:04 -07003018 REG("smaps", S_IRUGO, proc_pid_smaps_operations),
Daniel Colascione493b0e92017-09-06 16:25:08 -07003019 REG("smaps_rollup", S_IRUGO, proc_pid_smaps_rollup_operations),
Djalal Harouni32ed74a2014-04-07 15:38:38 -07003020 REG("pagemap", S_IRUSR, proc_pagemap_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003021#endif
3022#ifdef CONFIG_SECURITY
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003023 DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003024#endif
3025#ifdef CONFIG_KALLSYMS
Alexey Dobriyanedfcd602014-08-08 14:21:44 -07003026 ONE("wchan", S_IRUGO, proc_pid_wchan),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003027#endif
Ken Chen2ec220e2008-11-10 11:26:08 +03003028#ifdef CONFIG_STACKTRACE
Djalal Harouni35a35042014-04-07 15:38:36 -07003029 ONE("stack", S_IRUSR, proc_pid_stack),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003030#endif
Naveen N. Rao5968cec2015-06-30 14:36:03 +05303031#ifdef CONFIG_SCHED_INFO
Alexey Dobriyanf6e826c2014-08-08 14:21:46 -07003032 ONE("schedstat", S_IRUGO, proc_pid_schedstat),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003033#endif
Arjan van de Ven97455122008-01-25 21:08:34 +01003034#ifdef CONFIG_LATENCYTOP
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003035 REG("latency", S_IRUGO, proc_lstats_operations),
Arjan van de Ven97455122008-01-25 21:08:34 +01003036#endif
Paul Menage8793d852007-10-18 23:39:39 -07003037#ifdef CONFIG_PROC_PID_CPUSET
Zefan Li52de4772014-09-18 16:03:36 +08003038 ONE("cpuset", S_IRUGO, proc_cpuset_show),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003039#endif
Paul Menagea4243162007-10-18 23:39:35 -07003040#ifdef CONFIG_CGROUPS
Zefan Li006f4ac2014-09-18 16:03:15 +08003041 ONE("cgroup", S_IRUGO, proc_cgroup_show),
Paul Menagea4243162007-10-18 23:39:35 -07003042#endif
Alexey Dobriyan6ba51e32014-08-08 14:21:48 -07003043 ONE("oom_score", S_IRUGO, proc_oom_score),
David Rientjesfa0cbbf2012-11-12 17:53:04 -08003044 REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adj_operations),
David Rientjesa63d83f2010-08-09 17:19:46 -07003045 REG("oom_score_adj", S_IRUGO|S_IWUSR, proc_oom_score_adj_operations),
Richard Guy Briggs4b7d2482019-01-22 17:06:39 -05003046#ifdef CONFIG_AUDIT
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003047 REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations),
3048 REG("sessionid", S_IRUGO, proc_sessionid_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003049#endif
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08003050#ifdef CONFIG_FAULT_INJECTION
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003051 REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations),
Akinobu Mita168c42b2017-07-14 14:50:00 -07003052 REG("fail-nth", 0644, proc_fail_nth_operations),
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08003053#endif
Christoph Hellwig698ba7b2009-12-15 16:47:37 -08003054#ifdef CONFIG_ELF_CORE
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003055 REG("coredump_filter", S_IRUGO|S_IWUSR, proc_coredump_filter_operations),
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07003056#endif
Andrew Mortonaba76fd2006-12-10 02:19:48 -08003057#ifdef CONFIG_TASK_IO_ACCOUNTING
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07003058 ONE("io", S_IRUSR, proc_tgid_io_accounting),
Andrew Mortonaba76fd2006-12-10 02:19:48 -08003059#endif
Eric W. Biederman22d917d2011-11-17 00:11:58 -08003060#ifdef CONFIG_USER_NS
3061 REG("uid_map", S_IRUGO|S_IWUSR, proc_uid_map_operations),
3062 REG("gid_map", S_IRUGO|S_IWUSR, proc_gid_map_operations),
Eric W. Biedermanf76d2072012-08-30 01:24:05 -07003063 REG("projid_map", S_IRUGO|S_IWUSR, proc_projid_map_operations),
Eric W. Biederman9cc46512014-12-02 12:27:26 -06003064 REG("setgroups", S_IRUGO|S_IWUSR, proc_setgroups_operations),
Eric W. Biederman22d917d2011-11-17 00:11:58 -08003065#endif
Nicolas Pitreb18b6a92017-01-21 00:09:08 -05003066#if defined(CONFIG_CHECKPOINT_RESTORE) && defined(CONFIG_POSIX_TIMERS)
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04003067 REG("timers", S_IRUGO, proc_timers_operations),
3068#endif
John Stultz5de23d42016-03-17 14:20:54 -07003069 REG("timerslack_ns", S_IRUGO|S_IWUGO, proc_pid_set_timerslack_ns_operations),
Josh Poimboeuf7c23b332017-02-13 19:42:41 -06003070#ifdef CONFIG_LIVEPATCH
3071 ONE("patch_state", S_IRUSR, proc_pid_patch_state),
3072#endif
Alexander Popovc8d12622018-08-17 01:17:01 +03003073#ifdef CONFIG_STACKLEAK_METRICS
3074 ONE("stack_depth", S_IRUGO, proc_stack_depth),
3075#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003076};
3077
Al Virof0c3b502013-05-16 12:07:31 -04003078static int proc_tgid_base_readdir(struct file *file, struct dir_context *ctx)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003079{
Al Virof0c3b502013-05-16 12:07:31 -04003080 return proc_pident_readdir(file, ctx,
3081 tgid_base_stuff, ARRAY_SIZE(tgid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003082}
3083
Arjan van de Ven00977a52007-02-12 00:55:34 -08003084static const struct file_operations proc_tgid_base_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003085 .read = generic_read_dir,
Al Virof50752e2016-04-20 17:13:54 -04003086 .iterate_shared = proc_tgid_base_readdir,
3087 .llseek = generic_file_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003088};
3089
Al Viro00cd8dd2012-06-10 17:13:09 -04003090static struct dentry *proc_tgid_base_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
3091{
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07003092 return proc_pident_lookup(dir, dentry,
Alexey Dobriyand5a572a2019-03-11 23:28:51 -07003093 tgid_base_stuff,
3094 tgid_base_stuff + ARRAY_SIZE(tgid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003095}
3096
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08003097static const struct inode_operations proc_tgid_base_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003098 .lookup = proc_tgid_base_lookup,
3099 .getattr = pid_getattr,
3100 .setattr = proc_setattr,
Vasiliy Kulikov04996802012-01-10 15:11:31 -08003101 .permission = proc_pid_permission,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003102};
3103
Pavel Emelyanov60347f62007-10-18 23:40:03 -07003104static void proc_flush_task_mnt(struct vfsmount *mnt, pid_t pid, pid_t tgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105{
Eric W. Biederman48e64842006-06-26 00:25:48 -07003106 struct dentry *dentry, *leader, *dir;
Alexey Dobriyane3912ac2018-02-06 15:36:51 -08003107 char buf[10 + 1];
Eric W. Biederman48e64842006-06-26 00:25:48 -07003108 struct qstr name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109
Eric W. Biederman48e64842006-06-26 00:25:48 -07003110 name.name = buf;
Alexey Dobriyane3912ac2018-02-06 15:36:51 -08003111 name.len = snprintf(buf, sizeof(buf), "%u", pid);
Al Viro4f522a22013-02-11 23:20:37 -05003112 /* no ->d_hash() rejects on procfs */
Pavel Emelyanov60347f62007-10-18 23:40:03 -07003113 dentry = d_hash_and_lookup(mnt->mnt_root, &name);
Eric W. Biederman48e64842006-06-26 00:25:48 -07003114 if (dentry) {
Eric W. Biedermanbbd51922014-02-13 10:24:23 -08003115 d_invalidate(dentry);
Eric W. Biederman48e64842006-06-26 00:25:48 -07003116 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118
Oleg Nesterovc35a7f12014-12-10 15:54:56 -08003119 if (pid == tgid)
3120 return;
3121
Eric W. Biederman48e64842006-06-26 00:25:48 -07003122 name.name = buf;
Alexey Dobriyane3912ac2018-02-06 15:36:51 -08003123 name.len = snprintf(buf, sizeof(buf), "%u", tgid);
Pavel Emelyanov60347f62007-10-18 23:40:03 -07003124 leader = d_hash_and_lookup(mnt->mnt_root, &name);
Eric W. Biederman48e64842006-06-26 00:25:48 -07003125 if (!leader)
3126 goto out;
3127
3128 name.name = "task";
3129 name.len = strlen(name.name);
3130 dir = d_hash_and_lookup(leader, &name);
3131 if (!dir)
3132 goto out_put_leader;
3133
3134 name.name = buf;
Alexey Dobriyane3912ac2018-02-06 15:36:51 -08003135 name.len = snprintf(buf, sizeof(buf), "%u", pid);
Eric W. Biederman48e64842006-06-26 00:25:48 -07003136 dentry = d_hash_and_lookup(dir, &name);
3137 if (dentry) {
Eric W. Biedermanbbd51922014-02-13 10:24:23 -08003138 d_invalidate(dentry);
Eric W. Biederman48e64842006-06-26 00:25:48 -07003139 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140 }
Eric W. Biederman48e64842006-06-26 00:25:48 -07003141
3142 dput(dir);
3143out_put_leader:
3144 dput(leader);
3145out:
3146 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147}
3148
Randy Dunlap0895e912007-10-21 21:00:10 -07003149/**
3150 * proc_flush_task - Remove dcache entries for @task from the /proc dcache.
3151 * @task: task that should be flushed.
3152 *
3153 * When flushing dentries from proc, one needs to flush them from global
Pavel Emelyanov60347f62007-10-18 23:40:03 -07003154 * proc (proc_mnt) and from all the namespaces' procs this task was seen
Randy Dunlap0895e912007-10-21 21:00:10 -07003155 * in. This call is supposed to do all of this job.
3156 *
3157 * Looks in the dcache for
3158 * /proc/@pid
3159 * /proc/@tgid/task/@pid
3160 * if either directory is present flushes it and all of it'ts children
3161 * from the dcache.
3162 *
3163 * It is safe and reasonable to cache /proc entries for a task until
3164 * that task exits. After that they just clog up the dcache with
3165 * useless entries, possibly causing useful dcache entries to be
3166 * flushed instead. This routine is proved to flush those useless
3167 * dcache entries at process exit time.
3168 *
3169 * NOTE: This routine is just an optimization so it does not guarantee
3170 * that no dcache entries will exist at process exit time it
3171 * just makes it very unlikely that any will persist.
Pavel Emelyanov60347f62007-10-18 23:40:03 -07003172 */
3173
3174void proc_flush_task(struct task_struct *task)
3175{
Eric W. Biederman9fcc2d12007-11-14 17:00:07 -08003176 int i;
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07003177 struct pid *pid, *tgid;
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07003178 struct upid *upid;
3179
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07003180 pid = task_pid(task);
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07003181 tgid = task_tgid(task);
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07003182
Eric W. Biederman9fcc2d12007-11-14 17:00:07 -08003183 for (i = 0; i <= pid->level; i++) {
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07003184 upid = &pid->numbers[i];
3185 proc_flush_task_mnt(upid->ns->proc_mnt, upid->nr,
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07003186 tgid->numbers[i].nr);
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07003187 }
Pavel Emelyanov60347f62007-10-18 23:40:03 -07003188}
3189
Al Viro0168b9e2018-05-03 09:21:05 -04003190static struct dentry *proc_pid_instantiate(struct dentry * dentry,
Al Viroc52a47a2013-06-15 11:15:20 +04003191 struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003192{
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003193 struct inode *inode;
3194
Al Viro0168b9e2018-05-03 09:21:05 -04003195 inode = proc_pid_make_inode(dentry->d_sb, task, S_IFDIR | S_IRUGO | S_IXUGO);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003196 if (!inode)
Al Viro0168b9e2018-05-03 09:21:05 -04003197 return ERR_PTR(-ENOENT);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003198
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003199 inode->i_op = &proc_tgid_base_inode_operations;
3200 inode->i_fop = &proc_tgid_base_operations;
3201 inode->i_flags|=S_IMMUTABLE;
Vegard Nossumaed54172008-06-05 22:46:53 -07003202
Alexey Dobriyan1270dd82016-12-12 16:45:32 -08003203 set_nlink(inode, nlink_tgid);
Al Viro1bbc5512018-05-02 21:26:16 -04003204 pid_update_inode(task, inode);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003205
Nick Pigginfb045ad2011-01-07 17:49:55 +11003206 d_set_d_op(dentry, &pid_dentry_operations);
Al Viro0168b9e2018-05-03 09:21:05 -04003207 return d_splice_alias(inode, dentry);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003208}
3209
Zhikang Zhang867aacc2019-03-05 15:50:29 -08003210struct dentry *proc_pid_lookup(struct dentry *dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211{
3212 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213 unsigned tgid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003214 struct pid_namespace *ns;
Al Viro0168b9e2018-05-03 09:21:05 -04003215 struct dentry *result = ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216
Alexey Dobriyandbcdb502014-08-08 14:21:25 -07003217 tgid = name_to_int(&dentry->d_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218 if (tgid == ~0U)
3219 goto out;
3220
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003221 ns = dentry->d_sb->s_fs_info;
Eric W. Biedermande758732006-06-26 00:25:51 -07003222 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003223 task = find_task_by_pid_ns(tgid, ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224 if (task)
3225 get_task_struct(task);
Eric W. Biedermande758732006-06-26 00:25:51 -07003226 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227 if (!task)
3228 goto out;
3229
Al Viro0168b9e2018-05-03 09:21:05 -04003230 result = proc_pid_instantiate(dentry, task, NULL);
Eric W. Biederman48e64842006-06-26 00:25:48 -07003231 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232out:
Al Viro0168b9e2018-05-03 09:21:05 -04003233 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234}
3235
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236/*
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003237 * Find the first task with tgid >= tgid
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003238 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239 */
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003240struct tgid_iter {
3241 unsigned int tgid;
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003242 struct task_struct *task;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003243};
3244static struct tgid_iter next_tgid(struct pid_namespace *ns, struct tgid_iter iter)
3245{
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003246 struct pid *pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003248 if (iter.task)
3249 put_task_struct(iter.task);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003250 rcu_read_lock();
3251retry:
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003252 iter.task = NULL;
3253 pid = find_ge_pid(iter.tgid, ns);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003254 if (pid) {
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003255 iter.tgid = pid_nr_ns(pid, ns);
3256 iter.task = pid_task(pid, PIDTYPE_PID);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003257 /* What we to know is if the pid we have find is the
3258 * pid of a thread_group_leader. Testing for task
3259 * being a thread_group_leader is the obvious thing
3260 * todo but there is a window when it fails, due to
3261 * the pid transfer logic in de_thread.
3262 *
3263 * So we perform the straight forward test of seeing
3264 * if the pid we have found is the pid of a thread
3265 * group leader, and don't worry if the task we have
3266 * found doesn't happen to be a thread group leader.
3267 * As we don't care in the case of readdir.
3268 */
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003269 if (!iter.task || !has_group_leader_pid(iter.task)) {
3270 iter.tgid += 1;
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003271 goto retry;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003272 }
3273 get_task_struct(iter.task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274 }
Eric W. Biederman454cc102006-06-26 00:25:51 -07003275 rcu_read_unlock();
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003276 return iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277}
3278
Eric W. Biederman00978752014-07-31 03:10:50 -07003279#define TGID_OFFSET (FIRST_PROCESS_ENTRY + 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280
3281/* for the /proc/ directory itself, after non-process stuff has been done */
Al Virof0c3b502013-05-16 12:07:31 -04003282int proc_pid_readdir(struct file *file, struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283{
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003284 struct tgid_iter iter;
Christoph Hellwig76f668b2018-05-16 07:19:01 +02003285 struct pid_namespace *ns = proc_pid_ns(file_inode(file));
Al Virof0c3b502013-05-16 12:07:31 -04003286 loff_t pos = ctx->pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287
Al Viro021ada72013-03-29 19:27:05 -04003288 if (pos >= PID_MAX_LIMIT + TGID_OFFSET)
Al Virof0c3b502013-05-16 12:07:31 -04003289 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290
Eric W. Biederman00978752014-07-31 03:10:50 -07003291 if (pos == TGID_OFFSET - 2) {
David Howells2b0143b2015-03-17 22:25:59 +00003292 struct inode *inode = d_inode(ns->proc_self);
Al Virodb963162013-06-15 10:45:10 +04003293 if (!dir_emit(ctx, "self", 4, inode->i_ino, DT_LNK))
Al Virof0c3b502013-05-16 12:07:31 -04003294 return 0;
Eric W. Biederman00978752014-07-31 03:10:50 -07003295 ctx->pos = pos = pos + 1;
Al Viro021ada72013-03-29 19:27:05 -04003296 }
Eric W. Biederman00978752014-07-31 03:10:50 -07003297 if (pos == TGID_OFFSET - 1) {
David Howells2b0143b2015-03-17 22:25:59 +00003298 struct inode *inode = d_inode(ns->proc_thread_self);
Eric W. Biederman00978752014-07-31 03:10:50 -07003299 if (!dir_emit(ctx, "thread-self", 11, inode->i_ino, DT_LNK))
3300 return 0;
3301 ctx->pos = pos = pos + 1;
3302 }
3303 iter.tgid = pos - TGID_OFFSET;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003304 iter.task = NULL;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003305 for (iter = next_tgid(ns, iter);
3306 iter.task;
3307 iter.tgid += 1, iter = next_tgid(ns, iter)) {
Alexey Dobriyane3912ac2018-02-06 15:36:51 -08003308 char name[10 + 1];
Alexey Dobriyana4ef3892018-06-07 17:10:10 -07003309 unsigned int len;
Eric Dumazet3ba4bce2017-01-24 15:18:07 -08003310
3311 cond_resched();
Lafcadio Wluiki796f5712017-02-24 15:00:23 -08003312 if (!has_pid_permissions(ns, iter.task, HIDEPID_INVISIBLE))
Al Virof0c3b502013-05-16 12:07:31 -04003313 continue;
Vasiliy Kulikov04996802012-01-10 15:11:31 -08003314
Alexey Dobriyane3912ac2018-02-06 15:36:51 -08003315 len = snprintf(name, sizeof(name), "%u", iter.tgid);
Al Virof0c3b502013-05-16 12:07:31 -04003316 ctx->pos = iter.tgid + TGID_OFFSET;
3317 if (!proc_fill_cache(file, ctx, name, len,
3318 proc_pid_instantiate, iter.task, NULL)) {
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003319 put_task_struct(iter.task);
Al Virof0c3b502013-05-16 12:07:31 -04003320 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322 }
Al Virof0c3b502013-05-16 12:07:31 -04003323 ctx->pos = PID_MAX_LIMIT + TGID_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324 return 0;
3325}
3326
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003327/*
Janis Danisevskis1b3044e2016-05-20 17:00:08 -07003328 * proc_tid_comm_permission is a special permission function exclusively
3329 * used for the node /proc/<pid>/task/<tid>/comm.
3330 * It bypasses generic permission checks in the case where a task of the same
3331 * task group attempts to access the node.
3332 * The rationale behind this is that glibc and bionic access this node for
3333 * cross thread naming (pthread_set/getname_np(!self)). However, if
3334 * PR_SET_DUMPABLE gets set to 0 this node among others becomes uid=0 gid=0,
3335 * which locks out the cross thread naming implementation.
3336 * This function makes sure that the node is always accessible for members of
3337 * same thread group.
3338 */
3339static int proc_tid_comm_permission(struct inode *inode, int mask)
3340{
3341 bool is_same_tgroup;
3342 struct task_struct *task;
3343
3344 task = get_proc_task(inode);
3345 if (!task)
3346 return -ESRCH;
3347 is_same_tgroup = same_thread_group(current, task);
3348 put_task_struct(task);
3349
3350 if (likely(is_same_tgroup && !(mask & MAY_EXEC))) {
3351 /* This file (/proc/<pid>/task/<tid>/comm) can always be
3352 * read or written by the members of the corresponding
3353 * thread group.
3354 */
3355 return 0;
3356 }
3357
3358 return generic_permission(inode, mask);
3359}
3360
3361static const struct inode_operations proc_tid_comm_inode_operations = {
3362 .permission = proc_tid_comm_permission,
3363};
3364
3365/*
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003366 * Tasks
3367 */
Eric Dumazetc5141e62007-05-08 00:26:15 -07003368static const struct pid_entry tid_base_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003369 DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations),
Jerome Marchand38355412010-04-27 13:13:06 -07003370 DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations),
Eric W. Biederman6b4e3062010-03-07 16:41:34 -08003371 DIR("ns", S_IRUSR|S_IXUGO, proc_ns_dir_inode_operations, proc_ns_dir_operations),
Eric W. Biederman6ba8ed72014-07-31 16:27:08 -07003372#ifdef CONFIG_NET
3373 DIR("net", S_IRUGO|S_IXUGO, proc_net_inode_operations, proc_net_operations),
3374#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003375 REG("environ", S_IRUSR, proc_environ_operations),
Al Viroc5317162016-10-05 18:43:43 -04003376 REG("auxv", S_IRUSR, proc_auxv_operations),
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003377 ONE("status", S_IRUGO, proc_pid_status),
Djalal Harouni35a35042014-04-07 15:38:36 -07003378 ONE("personality", S_IRUSR, proc_pid_personality),
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -07003379 ONE("limits", S_IRUGO, proc_pid_limits),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02003380#ifdef CONFIG_SCHED_DEBUG
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003381 REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02003382#endif
Janis Danisevskis1b3044e2016-05-20 17:00:08 -07003383 NOD("comm", S_IFREG|S_IRUGO|S_IWUSR,
3384 &proc_tid_comm_inode_operations,
3385 &proc_pid_set_comm_operations, {}),
Roland McGrathebcb6732008-07-25 19:46:00 -07003386#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
Alexey Dobriyan09d93bd2014-08-08 14:21:39 -07003387 ONE("syscall", S_IRUSR, proc_pid_syscall),
Roland McGrathebcb6732008-07-25 19:46:00 -07003388#endif
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -07003389 REG("cmdline", S_IRUGO, proc_pid_cmdline_ops),
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003390 ONE("stat", S_IRUGO, proc_tid_stat),
3391 ONE("statm", S_IRUGO, proc_pid_statm),
Vlastimil Babka871305b2018-08-21 21:52:48 -07003392 REG("maps", S_IRUGO, proc_pid_maps_operations),
Iago López Galeiras2e13ba52015-06-25 15:00:57 -07003393#ifdef CONFIG_PROC_CHILDREN
Cyrill Gorcunov818411612012-05-31 16:26:43 -07003394 REG("children", S_IRUGO, proc_tid_children_operations),
3395#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003396#ifdef CONFIG_NUMA
Vlastimil Babka871305b2018-08-21 21:52:48 -07003397 REG("numa_maps", S_IRUGO, proc_pid_numa_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003398#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003399 REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations),
3400 LNK("cwd", proc_cwd_link),
3401 LNK("root", proc_root_link),
3402 LNK("exe", proc_exe_link),
3403 REG("mounts", S_IRUGO, proc_mounts_operations),
3404 REG("mountinfo", S_IRUGO, proc_mountinfo_operations),
Matt Mackall1e883282008-02-04 22:29:07 -08003405#ifdef CONFIG_PROC_PAGE_MONITOR
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003406 REG("clear_refs", S_IWUSR, proc_clear_refs_operations),
Vlastimil Babka871305b2018-08-21 21:52:48 -07003407 REG("smaps", S_IRUGO, proc_pid_smaps_operations),
Daniel Colascione493b0e92017-09-06 16:25:08 -07003408 REG("smaps_rollup", S_IRUGO, proc_pid_smaps_rollup_operations),
Djalal Harouni32ed74a2014-04-07 15:38:38 -07003409 REG("pagemap", S_IRUSR, proc_pagemap_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003410#endif
3411#ifdef CONFIG_SECURITY
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003412 DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003413#endif
3414#ifdef CONFIG_KALLSYMS
Alexey Dobriyanedfcd602014-08-08 14:21:44 -07003415 ONE("wchan", S_IRUGO, proc_pid_wchan),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003416#endif
Ken Chen2ec220e2008-11-10 11:26:08 +03003417#ifdef CONFIG_STACKTRACE
Djalal Harouni35a35042014-04-07 15:38:36 -07003418 ONE("stack", S_IRUSR, proc_pid_stack),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003419#endif
Naveen N. Rao5968cec2015-06-30 14:36:03 +05303420#ifdef CONFIG_SCHED_INFO
Alexey Dobriyanf6e826c2014-08-08 14:21:46 -07003421 ONE("schedstat", S_IRUGO, proc_pid_schedstat),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003422#endif
Arjan van de Ven97455122008-01-25 21:08:34 +01003423#ifdef CONFIG_LATENCYTOP
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003424 REG("latency", S_IRUGO, proc_lstats_operations),
Arjan van de Ven97455122008-01-25 21:08:34 +01003425#endif
Paul Menage8793d852007-10-18 23:39:39 -07003426#ifdef CONFIG_PROC_PID_CPUSET
Zefan Li52de4772014-09-18 16:03:36 +08003427 ONE("cpuset", S_IRUGO, proc_cpuset_show),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003428#endif
Paul Menagea4243162007-10-18 23:39:35 -07003429#ifdef CONFIG_CGROUPS
Zefan Li006f4ac2014-09-18 16:03:15 +08003430 ONE("cgroup", S_IRUGO, proc_cgroup_show),
Paul Menagea4243162007-10-18 23:39:35 -07003431#endif
Alexey Dobriyan6ba51e32014-08-08 14:21:48 -07003432 ONE("oom_score", S_IRUGO, proc_oom_score),
David Rientjesfa0cbbf2012-11-12 17:53:04 -08003433 REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adj_operations),
David Rientjesa63d83f2010-08-09 17:19:46 -07003434 REG("oom_score_adj", S_IRUGO|S_IWUSR, proc_oom_score_adj_operations),
Richard Guy Briggs4b7d2482019-01-22 17:06:39 -05003435#ifdef CONFIG_AUDIT
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003436 REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations),
Al Viro26ec3c62011-02-15 21:24:05 -05003437 REG("sessionid", S_IRUGO, proc_sessionid_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003438#endif
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08003439#ifdef CONFIG_FAULT_INJECTION
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003440 REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations),
Akinobu Mita1203c8e2017-07-14 14:49:57 -07003441 REG("fail-nth", 0644, proc_fail_nth_operations),
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08003442#endif
Andrea Righi297c5d92008-07-25 01:48:49 -07003443#ifdef CONFIG_TASK_IO_ACCOUNTING
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07003444 ONE("io", S_IRUSR, proc_tid_io_accounting),
Andrea Righi297c5d92008-07-25 01:48:49 -07003445#endif
Eric W. Biederman22d917d2011-11-17 00:11:58 -08003446#ifdef CONFIG_USER_NS
3447 REG("uid_map", S_IRUGO|S_IWUSR, proc_uid_map_operations),
3448 REG("gid_map", S_IRUGO|S_IWUSR, proc_gid_map_operations),
Eric W. Biedermanf76d2072012-08-30 01:24:05 -07003449 REG("projid_map", S_IRUGO|S_IWUSR, proc_projid_map_operations),
Eric W. Biederman9cc46512014-12-02 12:27:26 -06003450 REG("setgroups", S_IRUGO|S_IWUSR, proc_setgroups_operations),
Eric W. Biederman22d917d2011-11-17 00:11:58 -08003451#endif
Josh Poimboeuf7c23b332017-02-13 19:42:41 -06003452#ifdef CONFIG_LIVEPATCH
3453 ONE("patch_state", S_IRUSR, proc_pid_patch_state),
3454#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003455};
3456
Al Virof0c3b502013-05-16 12:07:31 -04003457static int proc_tid_base_readdir(struct file *file, struct dir_context *ctx)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003458{
Al Virof0c3b502013-05-16 12:07:31 -04003459 return proc_pident_readdir(file, ctx,
3460 tid_base_stuff, ARRAY_SIZE(tid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003461}
3462
Al Viro00cd8dd2012-06-10 17:13:09 -04003463static struct dentry *proc_tid_base_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
3464{
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07003465 return proc_pident_lookup(dir, dentry,
Alexey Dobriyand5a572a2019-03-11 23:28:51 -07003466 tid_base_stuff,
3467 tid_base_stuff + ARRAY_SIZE(tid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003468}
3469
Arjan van de Ven00977a52007-02-12 00:55:34 -08003470static const struct file_operations proc_tid_base_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003471 .read = generic_read_dir,
Al Virof50752e2016-04-20 17:13:54 -04003472 .iterate_shared = proc_tid_base_readdir,
3473 .llseek = generic_file_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003474};
3475
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08003476static const struct inode_operations proc_tid_base_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003477 .lookup = proc_tid_base_lookup,
3478 .getattr = pid_getattr,
3479 .setattr = proc_setattr,
3480};
3481
Al Viro0168b9e2018-05-03 09:21:05 -04003482static struct dentry *proc_task_instantiate(struct dentry *dentry,
3483 struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003484{
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003485 struct inode *inode;
Al Viro0168b9e2018-05-03 09:21:05 -04003486 inode = proc_pid_make_inode(dentry->d_sb, task, S_IFDIR | S_IRUGO | S_IXUGO);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003487 if (!inode)
Al Viro0168b9e2018-05-03 09:21:05 -04003488 return ERR_PTR(-ENOENT);
Al Viro1bbc5512018-05-02 21:26:16 -04003489
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003490 inode->i_op = &proc_tid_base_inode_operations;
3491 inode->i_fop = &proc_tid_base_operations;
Al Viro1bbc5512018-05-02 21:26:16 -04003492 inode->i_flags |= S_IMMUTABLE;
Vegard Nossumaed54172008-06-05 22:46:53 -07003493
Alexey Dobriyan1270dd82016-12-12 16:45:32 -08003494 set_nlink(inode, nlink_tid);
Al Viro1bbc5512018-05-02 21:26:16 -04003495 pid_update_inode(task, inode);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003496
Nick Pigginfb045ad2011-01-07 17:49:55 +11003497 d_set_d_op(dentry, &pid_dentry_operations);
Al Viro0168b9e2018-05-03 09:21:05 -04003498 return d_splice_alias(inode, dentry);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003499}
3500
Al Viro00cd8dd2012-06-10 17:13:09 -04003501static struct dentry *proc_task_lookup(struct inode *dir, struct dentry * dentry, unsigned int flags)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003502{
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003503 struct task_struct *task;
3504 struct task_struct *leader = get_proc_task(dir);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003505 unsigned tid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003506 struct pid_namespace *ns;
Al Viro0168b9e2018-05-03 09:21:05 -04003507 struct dentry *result = ERR_PTR(-ENOENT);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003508
3509 if (!leader)
3510 goto out_no_task;
3511
Alexey Dobriyandbcdb502014-08-08 14:21:25 -07003512 tid = name_to_int(&dentry->d_name);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003513 if (tid == ~0U)
3514 goto out;
3515
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003516 ns = dentry->d_sb->s_fs_info;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003517 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003518 task = find_task_by_pid_ns(tid, ns);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003519 if (task)
3520 get_task_struct(task);
3521 rcu_read_unlock();
3522 if (!task)
3523 goto out;
Pavel Emelyanovbac0abd2007-10-18 23:40:18 -07003524 if (!same_thread_group(leader, task))
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003525 goto out_drop_task;
3526
Al Viro0168b9e2018-05-03 09:21:05 -04003527 result = proc_task_instantiate(dentry, task, NULL);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003528out_drop_task:
3529 put_task_struct(task);
3530out:
3531 put_task_struct(leader);
3532out_no_task:
Al Viro0168b9e2018-05-03 09:21:05 -04003533 return result;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003534}
3535
3536/*
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003537 * Find the first tid of a thread group to return to user space.
3538 *
3539 * Usually this is just the thread group leader, but if the users
3540 * buffer was too small or there was a seek into the middle of the
3541 * directory we have more work todo.
3542 *
3543 * In the case of a short read we start with find_task_by_pid.
3544 *
3545 * In the case of a seek we start with the leader and walk nr
3546 * threads past it.
3547 */
Oleg Nesterov9f6e9632014-01-23 15:55:40 -08003548static struct task_struct *first_tid(struct pid *pid, int tid, loff_t f_pos,
3549 struct pid_namespace *ns)
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003550{
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003551 struct task_struct *pos, *task;
Oleg Nesterov9f6e9632014-01-23 15:55:40 -08003552 unsigned long nr = f_pos;
3553
3554 if (nr != f_pos) /* 32bit overflow? */
3555 return NULL;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003556
Eric W. Biedermancc288732006-06-26 00:26:01 -07003557 rcu_read_lock();
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003558 task = pid_task(pid, PIDTYPE_PID);
3559 if (!task)
3560 goto fail;
3561
3562 /* Attempt to start with the tid of a thread */
Oleg Nesterov9f6e9632014-01-23 15:55:40 -08003563 if (tid && nr) {
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003564 pos = find_task_by_pid_ns(tid, ns);
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003565 if (pos && same_thread_group(pos, task))
Oleg Nesterova872ff02006-06-26 00:26:01 -07003566 goto found;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003567 }
3568
3569 /* If nr exceeds the number of threads there is nothing todo */
Oleg Nesterov9f6e9632014-01-23 15:55:40 -08003570 if (nr >= get_nr_threads(task))
Oleg Nesterovc986c142014-01-23 15:55:38 -08003571 goto fail;
Oleg Nesterova872ff02006-06-26 00:26:01 -07003572
3573 /* If we haven't found our starting place yet start
3574 * with the leader and walk nr threads forward.
3575 */
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003576 pos = task = task->group_leader;
Oleg Nesterovc986c142014-01-23 15:55:38 -08003577 do {
Oleg Nesterov9f6e9632014-01-23 15:55:40 -08003578 if (!nr--)
Oleg Nesterovc986c142014-01-23 15:55:38 -08003579 goto found;
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003580 } while_each_thread(task, pos);
Oleg Nesterovc986c142014-01-23 15:55:38 -08003581fail:
3582 pos = NULL;
3583 goto out;
Oleg Nesterova872ff02006-06-26 00:26:01 -07003584found:
3585 get_task_struct(pos);
3586out:
Eric W. Biedermancc288732006-06-26 00:26:01 -07003587 rcu_read_unlock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003588 return pos;
3589}
3590
3591/*
3592 * Find the next thread in the thread list.
3593 * Return NULL if there is an error or no next thread.
3594 *
3595 * The reference to the input task_struct is released.
3596 */
3597static struct task_struct *next_tid(struct task_struct *start)
3598{
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003599 struct task_struct *pos = NULL;
Eric W. Biedermancc288732006-06-26 00:26:01 -07003600 rcu_read_lock();
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003601 if (pid_alive(start)) {
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003602 pos = next_thread(start);
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003603 if (thread_group_leader(pos))
3604 pos = NULL;
3605 else
3606 get_task_struct(pos);
3607 }
Eric W. Biedermancc288732006-06-26 00:26:01 -07003608 rcu_read_unlock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003609 put_task_struct(start);
3610 return pos;
3611}
3612
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613/* for the /proc/TGID/task/ directories */
Al Virof0c3b502013-05-16 12:07:31 -04003614static int proc_task_readdir(struct file *file, struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615{
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003616 struct inode *inode = file_inode(file);
3617 struct task_struct *task;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003618 struct pid_namespace *ns;
Al Virof0c3b502013-05-16 12:07:31 -04003619 int tid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003621 if (proc_inode_is_dead(inode))
Al Virof0c3b502013-05-16 12:07:31 -04003622 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623
Al Virof0c3b502013-05-16 12:07:31 -04003624 if (!dir_emit_dots(file, ctx))
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003625 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003627 /* f_version caches the tgid value that the last readdir call couldn't
3628 * return. lseek aka telldir automagically resets f_version to 0.
3629 */
Christoph Hellwig76f668b2018-05-16 07:19:01 +02003630 ns = proc_pid_ns(inode);
Al Virof0c3b502013-05-16 12:07:31 -04003631 tid = (int)file->f_version;
3632 file->f_version = 0;
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003633 for (task = first_tid(proc_pid(inode), tid, ctx->pos - 2, ns);
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003634 task;
Al Virof0c3b502013-05-16 12:07:31 -04003635 task = next_tid(task), ctx->pos++) {
Alexey Dobriyane3912ac2018-02-06 15:36:51 -08003636 char name[10 + 1];
Alexey Dobriyana4ef3892018-06-07 17:10:10 -07003637 unsigned int len;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003638 tid = task_pid_nr_ns(task, ns);
Alexey Dobriyane3912ac2018-02-06 15:36:51 -08003639 len = snprintf(name, sizeof(name), "%u", tid);
Al Virof0c3b502013-05-16 12:07:31 -04003640 if (!proc_fill_cache(file, ctx, name, len,
3641 proc_task_instantiate, task, NULL)) {
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003642 /* returning this tgid failed, save it as the first
3643 * pid for the next readir call */
Al Virof0c3b502013-05-16 12:07:31 -04003644 file->f_version = (u64)tid;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003645 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646 break;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003647 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648 }
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003649
Al Virof0c3b502013-05-16 12:07:31 -04003650 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003651}
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003652
David Howellsa528d352017-01-31 16:46:22 +00003653static int proc_task_getattr(const struct path *path, struct kstat *stat,
3654 u32 request_mask, unsigned int query_flags)
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003655{
David Howellsa528d352017-01-31 16:46:22 +00003656 struct inode *inode = d_inode(path->dentry);
Eric W. Biederman99f89552006-06-26 00:25:55 -07003657 struct task_struct *p = get_proc_task(inode);
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003658 generic_fillattr(inode, stat);
3659
Eric W. Biederman99f89552006-06-26 00:25:55 -07003660 if (p) {
Eric W. Biederman99f89552006-06-26 00:25:55 -07003661 stat->nlink += get_nr_threads(p);
Eric W. Biederman99f89552006-06-26 00:25:55 -07003662 put_task_struct(p);
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003663 }
3664
3665 return 0;
3666}
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003667
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08003668static const struct inode_operations proc_task_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003669 .lookup = proc_task_lookup,
3670 .getattr = proc_task_getattr,
3671 .setattr = proc_setattr,
Vasiliy Kulikov04996802012-01-10 15:11:31 -08003672 .permission = proc_pid_permission,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003673};
3674
Arjan van de Ven00977a52007-02-12 00:55:34 -08003675static const struct file_operations proc_task_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003676 .read = generic_read_dir,
Al Virof50752e2016-04-20 17:13:54 -04003677 .iterate_shared = proc_task_readdir,
3678 .llseek = generic_file_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003679};
Alexey Dobriyan1270dd82016-12-12 16:45:32 -08003680
3681void __init set_proc_pid_nlink(void)
3682{
3683 nlink_tid = pid_entry_nlink(tid_base_stuff, ARRAY_SIZE(tid_base_stuff));
3684 nlink_tgid = pid_entry_nlink(tgid_base_stuff, ARRAY_SIZE(tgid_base_stuff));
3685}