blob: 44dec22e5e9e61e2f6b90befec5a5355ac6676f9 [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) \
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800143 NOD(NAME, (S_IFREG|(MODE)), \
144 NULL, &proc_single_file_operations, \
Alexey Dobriyan631f9c12008-11-10 01:32:52 +0300145 { .proc_show = show } )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Vegard Nossumaed54172008-06-05 22:46:53 -0700147/*
148 * Count the number of hardlinks for the pid_entry table, excluding the .
149 * and .. links.
150 */
Alexey Dobriyan1270dd82016-12-12 16:45:32 -0800151static unsigned int __init pid_entry_nlink(const struct pid_entry *entries,
Vegard Nossumaed54172008-06-05 22:46:53 -0700152 unsigned int n)
153{
154 unsigned int i;
155 unsigned int count;
156
Alexey Dobriyan1270dd82016-12-12 16:45:32 -0800157 count = 2;
Vegard Nossumaed54172008-06-05 22:46:53 -0700158 for (i = 0; i < n; ++i) {
159 if (S_ISDIR(entries[i].mode))
160 ++count;
161 }
162
163 return count;
164}
165
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200166static int get_task_root(struct task_struct *task, struct path *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000168 int result = -ENOENT;
169
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700170 task_lock(task);
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200171 if (task->fs) {
172 get_fs_root(task->fs, root);
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000173 result = 0;
174 }
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700175 task_unlock(task);
Hugh Dickins7c2c7d92009-03-28 23:21:27 +0000176 return result;
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700177}
178
Cyrill Gorcunov7773fbc2012-01-10 15:11:20 -0800179static int proc_cwd_link(struct dentry *dentry, struct path *path)
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700180{
David Howells2b0143b2015-03-17 22:25:59 +0000181 struct task_struct *task = get_proc_task(d_inode(dentry));
Miklos Szeredi0494f6e2005-09-06 15:18:22 -0700182 int result = -ENOENT;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700183
184 if (task) {
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200185 task_lock(task);
186 if (task->fs) {
187 get_fs_pwd(task->fs, path);
188 result = 0;
189 }
190 task_unlock(task);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700191 put_task_struct(task);
192 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 return result;
194}
195
Cyrill Gorcunov7773fbc2012-01-10 15:11:20 -0800196static int proc_root_link(struct dentry *dentry, struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
David Howells2b0143b2015-03-17 22:25:59 +0000198 struct task_struct *task = get_proc_task(d_inode(dentry));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 int result = -ENOENT;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700200
201 if (task) {
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200202 result = get_task_root(task, path);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700203 put_task_struct(task);
204 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 return result;
206}
207
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700208static ssize_t proc_pid_cmdline_read(struct file *file, char __user *buf,
209 size_t _count, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700211 struct task_struct *tsk;
212 struct mm_struct *mm;
213 char *page;
214 unsigned long count = _count;
215 unsigned long arg_start, arg_end, env_start, env_end;
Alexey Dobriyan3cb4e162018-06-07 17:10:02 -0700216 unsigned long len1, len2;
Alexey Dobriyan6a6cbe72018-06-07 17:09:59 -0700217 char __user *buf0 = buf;
Alexey Dobriyan3cb4e162018-06-07 17:10:02 -0700218 struct {
219 unsigned long p;
220 unsigned long len;
221 } cmdline[2];
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700222 char c;
Alexey Dobriyan6a6cbe72018-06-07 17:09:59 -0700223 int rv;
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700224
225 BUG_ON(*pos < 0);
226
227 tsk = get_proc_task(file_inode(file));
228 if (!tsk)
229 return -ESRCH;
230 mm = get_task_mm(tsk);
231 put_task_struct(tsk);
232 if (!mm)
233 return 0;
234 /* Check if process spawned far enough to have cmdline. */
235 if (!mm->env_end) {
236 rv = 0;
237 goto out_mmput;
238 }
239
Michal Hocko0ee931c2017-09-13 16:28:29 -0700240 page = (char *)__get_free_page(GFP_KERNEL);
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700241 if (!page) {
242 rv = -ENOMEM;
243 goto out_mmput;
244 }
245
Yang Shi88aa7cc2018-06-07 17:05:28 -0700246 spin_lock(&mm->arg_lock);
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700247 arg_start = mm->arg_start;
248 arg_end = mm->arg_end;
249 env_start = mm->env_start;
250 env_end = mm->env_end;
Yang Shi88aa7cc2018-06-07 17:05:28 -0700251 spin_unlock(&mm->arg_lock);
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700252
253 BUG_ON(arg_start > arg_end);
254 BUG_ON(env_start > env_end);
255
256 len1 = arg_end - arg_start;
257 len2 = env_end - env_start;
258
Alexey Dobriyan3581d452015-07-17 16:24:09 -0700259 /* Empty ARGV. */
Alexey Dobriyan6a6cbe72018-06-07 17:09:59 -0700260 if (len1 == 0)
261 goto end;
262
Alexey Dobriyan2ca66ff2014-08-08 14:21:41 -0700263 /*
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700264 * Inherently racy -- command line shares address space
265 * with code and data.
Alexey Dobriyan2ca66ff2014-08-08 14:21:41 -0700266 */
Alexey Dobriyan6a6cbe72018-06-07 17:09:59 -0700267 if (access_remote_vm(mm, arg_end - 1, &c, 1, FOLL_ANON) != 1)
268 goto end;
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700269
Alexey Dobriyan3cb4e162018-06-07 17:10:02 -0700270 cmdline[0].p = arg_start;
271 cmdline[0].len = len1;
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700272 if (c == '\0') {
273 /* Command line (set of strings) occupies whole ARGV. */
Alexey Dobriyan3cb4e162018-06-07 17:10:02 -0700274 cmdline[1].len = 0;
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700275 } else {
276 /*
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700277 * Command line (1 string) occupies ARGV and
278 * extends into ENVP.
279 */
Alexey Dobriyan3cb4e162018-06-07 17:10:02 -0700280 cmdline[1].p = env_start;
281 cmdline[1].len = len2;
282 }
283
284 {
Alexey Dobriyana0a07b82017-02-24 15:00:20 -0800285 loff_t pos1 = *pos;
286 unsigned int i;
287
288 i = 0;
289 while (i < 2 && pos1 >= cmdline[i].len) {
290 pos1 -= cmdline[i].len;
291 i++;
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700292 }
Alexey Dobriyana0a07b82017-02-24 15:00:20 -0800293 while (i < 2) {
Alexey Dobriyan3cb4e162018-06-07 17:10:02 -0700294 unsigned long p;
295 unsigned long len;
296
Alexey Dobriyana0a07b82017-02-24 15:00:20 -0800297 p = cmdline[i].p + pos1;
298 len = cmdline[i].len - pos1;
299 while (count > 0 && len > 0) {
Alexey Dobriyan6a6b9c42018-06-07 17:09:55 -0700300 unsigned int nr_read, nr_write;
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700301
Alexey Dobriyanb42262a2018-06-07 17:09:52 -0700302 nr_read = min3(count, len, PAGE_SIZE);
303 nr_read = access_remote_vm(mm, p, page, nr_read, FOLL_ANON);
304 if (nr_read == 0)
Alexey Dobriyan6a6cbe72018-06-07 17:09:59 -0700305 goto end;
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700306
Alexey Dobriyana0a07b82017-02-24 15:00:20 -0800307 /*
308 * Command line can be shorter than whole ARGV
309 * even if last "marker" byte says it is not.
310 */
Alexey Dobriyan3cb4e162018-06-07 17:10:02 -0700311 if (c == '\0')
312 nr_write = nr_read;
313 else
314 nr_write = strnlen(page, nr_read);
Alexey Dobriyana0a07b82017-02-24 15:00:20 -0800315
Alexey Dobriyan6a6b9c42018-06-07 17:09:55 -0700316 if (copy_to_user(buf, page, nr_write)) {
Alexey Dobriyana0a07b82017-02-24 15:00:20 -0800317 rv = -EFAULT;
318 goto out_free_page;
319 }
320
Alexey Dobriyan6a6b9c42018-06-07 17:09:55 -0700321 p += nr_write;
322 len -= nr_write;
323 buf += nr_write;
324 count -= nr_write;
Alexey Dobriyana0a07b82017-02-24 15:00:20 -0800325
Alexey Dobriyan6a6b9c42018-06-07 17:09:55 -0700326 if (nr_write < nr_read)
Alexey Dobriyan6a6cbe72018-06-07 17:09:59 -0700327 goto end;
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700328 }
329
Alexey Dobriyana0a07b82017-02-24 15:00:20 -0800330 /* Only first chunk can be read partially. */
331 pos1 = 0;
332 i++;
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700333 }
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700334 }
335
Alexey Dobriyan6a6cbe72018-06-07 17:09:59 -0700336end:
337 *pos += buf - buf0;
338 rv = buf - buf0;
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700339out_free_page:
340 free_page((unsigned long)page);
341out_mmput:
342 mmput(mm);
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700343 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344}
345
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -0700346static const struct file_operations proc_pid_cmdline_ops = {
347 .read = proc_pid_cmdline_read,
348 .llseek = generic_file_llseek,
349};
350
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351#ifdef CONFIG_KALLSYMS
352/*
353 * Provides a wchan file via kallsyms in a proper one-value-per-file format.
354 * Returns the resolved symbol. If that fails, simply return the address.
355 */
Alexey Dobriyanedfcd602014-08-08 14:21:44 -0700356static int proc_pid_wchan(struct seq_file *m, struct pid_namespace *ns,
357 struct pid *pid, struct task_struct *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
Alexey Dobriyanffb45122007-05-08 00:28:41 -0700359 unsigned long wchan;
Tejun Heo9281ace2007-07-17 04:03:51 -0700360 char symname[KSYM_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Alexey Dobriyan24b2ec22018-04-10 16:31:30 -0700362 if (!ptrace_may_access(task, PTRACE_MODE_READ_FSCREDS))
363 goto print0;
364
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 wchan = get_wchan(task);
Alexey Dobriyan24b2ec22018-04-10 16:31:30 -0700366 if (wchan && !lookup_symbol_name(wchan, symname)) {
Alexey Dobriyan21dae0a2018-04-10 16:31:34 -0700367 seq_puts(m, symname);
Alexey Dobriyan24b2ec22018-04-10 16:31:30 -0700368 return 0;
369 }
Joe Perches25ce3192015-04-15 16:18:17 -0700370
Alexey Dobriyan24b2ec22018-04-10 16:31:30 -0700371print0:
372 seq_putc(m, '0');
Joe Perches25ce3192015-04-15 16:18:17 -0700373 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374}
375#endif /* CONFIG_KALLSYMS */
376
Al Viroa9712bc2011-03-23 15:52:50 -0400377static int lock_trace(struct task_struct *task)
378{
379 int err = mutex_lock_killable(&task->signal->cred_guard_mutex);
380 if (err)
381 return err;
Jann Horncaaee622016-01-20 15:00:04 -0800382 if (!ptrace_may_access(task, PTRACE_MODE_ATTACH_FSCREDS)) {
Al Viroa9712bc2011-03-23 15:52:50 -0400383 mutex_unlock(&task->signal->cred_guard_mutex);
384 return -EPERM;
385 }
386 return 0;
387}
388
389static void unlock_trace(struct task_struct *task)
390{
391 mutex_unlock(&task->signal->cred_guard_mutex);
392}
393
Ken Chen2ec220e2008-11-10 11:26:08 +0300394#ifdef CONFIG_STACKTRACE
395
396#define MAX_STACK_TRACE_DEPTH 64
397
398static int proc_pid_stack(struct seq_file *m, struct pid_namespace *ns,
399 struct pid *pid, struct task_struct *task)
400{
401 struct stack_trace trace;
402 unsigned long *entries;
Al Viroa9712bc2011-03-23 15:52:50 -0400403 int err;
Ken Chen2ec220e2008-11-10 11:26:08 +0300404
405 entries = kmalloc(MAX_STACK_TRACE_DEPTH * sizeof(*entries), GFP_KERNEL);
406 if (!entries)
407 return -ENOMEM;
408
409 trace.nr_entries = 0;
410 trace.max_entries = MAX_STACK_TRACE_DEPTH;
411 trace.entries = entries;
412 trace.skip = 0;
Ken Chen2ec220e2008-11-10 11:26:08 +0300413
Al Viroa9712bc2011-03-23 15:52:50 -0400414 err = lock_trace(task);
415 if (!err) {
Alexey Dobriyan5d008fb2018-06-07 17:10:17 -0700416 unsigned int i;
417
Al Viroa9712bc2011-03-23 15:52:50 -0400418 save_stack_trace_tsk(task, &trace);
419
420 for (i = 0; i < trace.nr_entries; i++) {
Linus Torvalds8f5abe82017-11-27 16:45:56 -0800421 seq_printf(m, "[<0>] %pB\n", (void *)entries[i]);
Al Viroa9712bc2011-03-23 15:52:50 -0400422 }
423 unlock_trace(task);
Ken Chen2ec220e2008-11-10 11:26:08 +0300424 }
425 kfree(entries);
426
Al Viroa9712bc2011-03-23 15:52:50 -0400427 return err;
Ken Chen2ec220e2008-11-10 11:26:08 +0300428}
429#endif
430
Naveen N. Rao5968cec2015-06-30 14:36:03 +0530431#ifdef CONFIG_SCHED_INFO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432/*
433 * Provides /proc/PID/schedstat
434 */
Alexey Dobriyanf6e826c2014-08-08 14:21:46 -0700435static int proc_pid_schedstat(struct seq_file *m, struct pid_namespace *ns,
436 struct pid *pid, struct task_struct *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
Naveen N. Rao5968cec2015-06-30 14:36:03 +0530438 if (unlikely(!sched_info_on()))
439 seq_printf(m, "0 0 0\n");
440 else
441 seq_printf(m, "%llu %llu %lu\n",
Joe Perches25ce3192015-04-15 16:18:17 -0700442 (unsigned long long)task->se.sum_exec_runtime,
443 (unsigned long long)task->sched_info.run_delay,
444 task->sched_info.pcount);
445
446 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447}
448#endif
449
Arjan van de Ven97455122008-01-25 21:08:34 +0100450#ifdef CONFIG_LATENCYTOP
451static int lstats_show_proc(struct seq_file *m, void *v)
452{
453 int i;
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800454 struct inode *inode = m->private;
455 struct task_struct *task = get_proc_task(inode);
Arjan van de Ven97455122008-01-25 21:08:34 +0100456
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800457 if (!task)
458 return -ESRCH;
459 seq_puts(m, "Latency Top version : v0.1\n");
Arjan van de Ven97455122008-01-25 21:08:34 +0100460 for (i = 0; i < 32; i++) {
Joe Perches34e49d42011-01-12 17:00:30 -0800461 struct latency_record *lr = &task->latency_record[i];
462 if (lr->backtrace[0]) {
Arjan van de Ven97455122008-01-25 21:08:34 +0100463 int q;
Joe Perches34e49d42011-01-12 17:00:30 -0800464 seq_printf(m, "%i %li %li",
465 lr->count, lr->time, lr->max);
Arjan van de Ven97455122008-01-25 21:08:34 +0100466 for (q = 0; q < LT_BACKTRACEDEPTH; q++) {
Joe Perches34e49d42011-01-12 17:00:30 -0800467 unsigned long bt = lr->backtrace[q];
468 if (!bt)
Arjan van de Ven97455122008-01-25 21:08:34 +0100469 break;
Joe Perches34e49d42011-01-12 17:00:30 -0800470 if (bt == ULONG_MAX)
Arjan van de Ven97455122008-01-25 21:08:34 +0100471 break;
Joe Perches34e49d42011-01-12 17:00:30 -0800472 seq_printf(m, " %ps", (void *)bt);
Arjan van de Ven97455122008-01-25 21:08:34 +0100473 }
Alexey Dobriyan9d6de122011-01-12 17:00:32 -0800474 seq_putc(m, '\n');
Arjan van de Ven97455122008-01-25 21:08:34 +0100475 }
476
477 }
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800478 put_task_struct(task);
Arjan van de Ven97455122008-01-25 21:08:34 +0100479 return 0;
480}
481
482static int lstats_open(struct inode *inode, struct file *file)
483{
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800484 return single_open(file, lstats_show_proc, inode);
Hiroshi Shimamotod6643d12008-02-14 10:27:00 -0800485}
486
Arjan van de Ven97455122008-01-25 21:08:34 +0100487static ssize_t lstats_write(struct file *file, const char __user *buf,
488 size_t count, loff_t *offs)
489{
Al Viro496ad9a2013-01-23 17:07:38 -0500490 struct task_struct *task = get_proc_task(file_inode(file));
Arjan van de Ven97455122008-01-25 21:08:34 +0100491
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800492 if (!task)
493 return -ESRCH;
Arjan van de Ven97455122008-01-25 21:08:34 +0100494 clear_all_latency_tracing(task);
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800495 put_task_struct(task);
Arjan van de Ven97455122008-01-25 21:08:34 +0100496
497 return count;
498}
499
500static const struct file_operations proc_lstats_operations = {
501 .open = lstats_open,
502 .read = seq_read,
503 .write = lstats_write,
504 .llseek = seq_lseek,
Hiroshi Shimamoto13d77c32008-02-20 16:53:29 -0800505 .release = single_release,
Arjan van de Ven97455122008-01-25 21:08:34 +0100506};
507
508#endif
509
Alexey Dobriyan6ba51e32014-08-08 14:21:48 -0700510static int proc_oom_score(struct seq_file *m, struct pid_namespace *ns,
511 struct pid *pid, struct task_struct *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512{
David Rientjesa7f638f2012-05-29 15:06:47 -0700513 unsigned long totalpages = totalram_pages + total_swap_pages;
Oleg Nesterovb95c35e2010-04-01 15:13:57 +0200514 unsigned long points = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Oleg Nesterovef419392016-08-02 14:03:19 -0700516 points = oom_badness(task, NULL, NULL, totalpages) *
517 1000 / totalpages;
Joe Perches25ce3192015-04-15 16:18:17 -0700518 seq_printf(m, "%lu\n", points);
519
520 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521}
522
Neil Hormand85f50d2007-10-18 23:40:37 -0700523struct limit_names {
Alexey Dobriyancedbcca2014-08-08 14:21:33 -0700524 const char *name;
525 const char *unit;
Neil Hormand85f50d2007-10-18 23:40:37 -0700526};
527
528static const struct limit_names lnames[RLIM_NLIMITS] = {
Kees Cookcff4edb2009-09-22 16:45:32 -0700529 [RLIMIT_CPU] = {"Max cpu time", "seconds"},
Neil Hormand85f50d2007-10-18 23:40:37 -0700530 [RLIMIT_FSIZE] = {"Max file size", "bytes"},
531 [RLIMIT_DATA] = {"Max data size", "bytes"},
532 [RLIMIT_STACK] = {"Max stack size", "bytes"},
533 [RLIMIT_CORE] = {"Max core file size", "bytes"},
534 [RLIMIT_RSS] = {"Max resident set", "bytes"},
535 [RLIMIT_NPROC] = {"Max processes", "processes"},
536 [RLIMIT_NOFILE] = {"Max open files", "files"},
537 [RLIMIT_MEMLOCK] = {"Max locked memory", "bytes"},
538 [RLIMIT_AS] = {"Max address space", "bytes"},
539 [RLIMIT_LOCKS] = {"Max file locks", "locks"},
540 [RLIMIT_SIGPENDING] = {"Max pending signals", "signals"},
541 [RLIMIT_MSGQUEUE] = {"Max msgqueue size", "bytes"},
542 [RLIMIT_NICE] = {"Max nice priority", NULL},
543 [RLIMIT_RTPRIO] = {"Max realtime priority", NULL},
Eugene Teo88081172008-02-23 15:23:52 -0800544 [RLIMIT_RTTIME] = {"Max realtime timeout", "us"},
Neil Hormand85f50d2007-10-18 23:40:37 -0700545};
546
547/* Display limits for a process */
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700548static int proc_pid_limits(struct seq_file *m, struct pid_namespace *ns,
549 struct pid *pid, struct task_struct *task)
Neil Hormand85f50d2007-10-18 23:40:37 -0700550{
551 unsigned int i;
Neil Hormand85f50d2007-10-18 23:40:37 -0700552 unsigned long flags;
Neil Hormand85f50d2007-10-18 23:40:37 -0700553
554 struct rlimit rlim[RLIM_NLIMITS];
555
Lai Jiangshana6bebbc2008-10-05 00:51:15 +0400556 if (!lock_task_sighand(task, &flags))
Neil Hormand85f50d2007-10-18 23:40:37 -0700557 return 0;
Neil Hormand85f50d2007-10-18 23:40:37 -0700558 memcpy(rlim, task->signal->rlim, sizeof(struct rlimit) * RLIM_NLIMITS);
559 unlock_task_sighand(task, &flags);
Neil Hormand85f50d2007-10-18 23:40:37 -0700560
561 /*
562 * print the file header
563 */
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700564 seq_printf(m, "%-25s %-20s %-20s %-10s\n",
Joe Perches25ce3192015-04-15 16:18:17 -0700565 "Limit", "Soft Limit", "Hard Limit", "Units");
Neil Hormand85f50d2007-10-18 23:40:37 -0700566
567 for (i = 0; i < RLIM_NLIMITS; i++) {
568 if (rlim[i].rlim_cur == RLIM_INFINITY)
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700569 seq_printf(m, "%-25s %-20s ",
Joe Perches25ce3192015-04-15 16:18:17 -0700570 lnames[i].name, "unlimited");
Neil Hormand85f50d2007-10-18 23:40:37 -0700571 else
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700572 seq_printf(m, "%-25s %-20lu ",
Joe Perches25ce3192015-04-15 16:18:17 -0700573 lnames[i].name, rlim[i].rlim_cur);
Neil Hormand85f50d2007-10-18 23:40:37 -0700574
575 if (rlim[i].rlim_max == RLIM_INFINITY)
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700576 seq_printf(m, "%-20s ", "unlimited");
Neil Hormand85f50d2007-10-18 23:40:37 -0700577 else
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700578 seq_printf(m, "%-20lu ", rlim[i].rlim_max);
Neil Hormand85f50d2007-10-18 23:40:37 -0700579
580 if (lnames[i].unit)
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700581 seq_printf(m, "%-10s\n", lnames[i].unit);
Neil Hormand85f50d2007-10-18 23:40:37 -0700582 else
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700583 seq_putc(m, '\n');
Neil Hormand85f50d2007-10-18 23:40:37 -0700584 }
585
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -0700586 return 0;
Neil Hormand85f50d2007-10-18 23:40:37 -0700587}
588
Roland McGrathebcb6732008-07-25 19:46:00 -0700589#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
Alexey Dobriyan09d93bd2014-08-08 14:21:39 -0700590static int proc_pid_syscall(struct seq_file *m, struct pid_namespace *ns,
591 struct pid *pid, struct task_struct *task)
Roland McGrathebcb6732008-07-25 19:46:00 -0700592{
593 long nr;
594 unsigned long args[6], sp, pc;
Joe Perches25ce3192015-04-15 16:18:17 -0700595 int res;
596
597 res = lock_trace(task);
Al Viroa9712bc2011-03-23 15:52:50 -0400598 if (res)
599 return res;
Roland McGrathebcb6732008-07-25 19:46:00 -0700600
601 if (task_current_syscall(task, &nr, args, 6, &sp, &pc))
Alexey Dobriyan09d93bd2014-08-08 14:21:39 -0700602 seq_puts(m, "running\n");
Al Viroa9712bc2011-03-23 15:52:50 -0400603 else if (nr < 0)
Alexey Dobriyan09d93bd2014-08-08 14:21:39 -0700604 seq_printf(m, "%ld 0x%lx 0x%lx\n", nr, sp, pc);
Al Viroa9712bc2011-03-23 15:52:50 -0400605 else
Alexey Dobriyan09d93bd2014-08-08 14:21:39 -0700606 seq_printf(m,
Roland McGrathebcb6732008-07-25 19:46:00 -0700607 "%ld 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx 0x%lx\n",
608 nr,
609 args[0], args[1], args[2], args[3], args[4], args[5],
610 sp, pc);
Al Viroa9712bc2011-03-23 15:52:50 -0400611 unlock_trace(task);
Joe Perches25ce3192015-04-15 16:18:17 -0700612
613 return 0;
Roland McGrathebcb6732008-07-25 19:46:00 -0700614}
615#endif /* CONFIG_HAVE_ARCH_TRACEHOOK */
616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617/************************************************************************/
618/* Here the fs part begins */
619/************************************************************************/
620
621/* permission checks */
Eric W. Biederman778c1142006-06-26 00:25:58 -0700622static int proc_fd_access_allowed(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623{
Eric W. Biederman778c1142006-06-26 00:25:58 -0700624 struct task_struct *task;
625 int allowed = 0;
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700626 /* Allow access to a task's file descriptors if it is us or we
627 * may use ptrace attach to the process and find out that
628 * information.
Eric W. Biederman778c1142006-06-26 00:25:58 -0700629 */
630 task = get_proc_task(inode);
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700631 if (task) {
Jann Horncaaee622016-01-20 15:00:04 -0800632 allowed = ptrace_may_access(task, PTRACE_MODE_READ_FSCREDS);
Eric W. Biederman778c1142006-06-26 00:25:58 -0700633 put_task_struct(task);
Eric W. Biedermandf26c402006-06-26 00:25:59 -0700634 }
Eric W. Biederman778c1142006-06-26 00:25:58 -0700635 return allowed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636}
637
Eric W. Biederman6b4e3062010-03-07 16:41:34 -0800638int proc_setattr(struct dentry *dentry, struct iattr *attr)
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700639{
640 int error;
David Howells2b0143b2015-03-17 22:25:59 +0000641 struct inode *inode = d_inode(dentry);
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700642
643 if (attr->ia_valid & ATTR_MODE)
644 return -EPERM;
645
Jan Kara31051c82016-05-26 16:55:18 +0200646 error = setattr_prepare(dentry, attr);
Christoph Hellwig10257742010-06-04 11:30:02 +0200647 if (error)
648 return error;
649
Christoph Hellwig10257742010-06-04 11:30:02 +0200650 setattr_copy(inode, attr);
651 mark_inode_dirty(inode);
652 return 0;
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700653}
654
Vasiliy Kulikov04996802012-01-10 15:11:31 -0800655/*
656 * May current process learn task's sched/cmdline info (for hide_pid_min=1)
657 * or euid/egid (for hide_pid_min=2)?
658 */
659static bool has_pid_permissions(struct pid_namespace *pid,
660 struct task_struct *task,
661 int hide_pid_min)
662{
663 if (pid->hide_pid < hide_pid_min)
664 return true;
665 if (in_group_p(pid->pid_gid))
666 return true;
Jann Horncaaee622016-01-20 15:00:04 -0800667 return ptrace_may_access(task, PTRACE_MODE_READ_FSCREDS);
Vasiliy Kulikov04996802012-01-10 15:11:31 -0800668}
669
670
671static int proc_pid_permission(struct inode *inode, int mask)
672{
Christoph Hellwig76f668b2018-05-16 07:19:01 +0200673 struct pid_namespace *pid = proc_pid_ns(inode);
Vasiliy Kulikov04996802012-01-10 15:11:31 -0800674 struct task_struct *task;
675 bool has_perms;
676
677 task = get_proc_task(inode);
Xiaotian Fenga2ef9902012-01-12 17:17:08 -0800678 if (!task)
679 return -ESRCH;
Lafcadio Wluiki796f5712017-02-24 15:00:23 -0800680 has_perms = has_pid_permissions(pid, task, HIDEPID_NO_ACCESS);
Vasiliy Kulikov04996802012-01-10 15:11:31 -0800681 put_task_struct(task);
682
683 if (!has_perms) {
Lafcadio Wluiki796f5712017-02-24 15:00:23 -0800684 if (pid->hide_pid == HIDEPID_INVISIBLE) {
Vasiliy Kulikov04996802012-01-10 15:11:31 -0800685 /*
686 * Let's make getdents(), stat(), and open()
687 * consistent with each other. If a process
688 * may not stat() a file, it shouldn't be seen
689 * in procfs at all.
690 */
691 return -ENOENT;
692 }
693
694 return -EPERM;
695 }
696 return generic_permission(inode, mask);
697}
698
699
700
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800701static const struct inode_operations proc_def_inode_operations = {
Linus Torvalds6d76fa52006-07-15 12:26:45 -0700702 .setattr = proc_setattr,
703};
704
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800705static int proc_single_show(struct seq_file *m, void *v)
706{
707 struct inode *inode = m->private;
Christoph Hellwig76f668b2018-05-16 07:19:01 +0200708 struct pid_namespace *ns = proc_pid_ns(inode);
709 struct pid *pid = proc_pid(inode);
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800710 struct task_struct *task;
711 int ret;
712
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800713 task = get_pid_task(pid, PIDTYPE_PID);
714 if (!task)
715 return -ESRCH;
716
717 ret = PROC_I(inode)->op.proc_show(m, ns, pid, task);
718
719 put_task_struct(task);
720 return ret;
721}
722
723static int proc_single_open(struct inode *inode, struct file *filp)
724{
Jovi Zhangc6a34052011-01-12 17:00:34 -0800725 return single_open(filp, proc_single_show, inode);
Eric W. Biedermanbe614082008-02-08 04:18:30 -0800726}
727
728static const struct file_operations proc_single_file_operations = {
729 .open = proc_single_open,
730 .read = seq_read,
731 .llseek = seq_lseek,
732 .release = single_release,
733};
734
Oleg Nesterov5381e162014-10-09 15:25:24 -0700735
736struct mm_struct *proc_mem_open(struct inode *inode, unsigned int mode)
737{
738 struct task_struct *task = get_proc_task(inode);
739 struct mm_struct *mm = ERR_PTR(-ESRCH);
740
741 if (task) {
Jann Horncaaee622016-01-20 15:00:04 -0800742 mm = mm_access(task, mode | PTRACE_MODE_FSCREDS);
Oleg Nesterov5381e162014-10-09 15:25:24 -0700743 put_task_struct(task);
744
745 if (!IS_ERR_OR_NULL(mm)) {
746 /* ensure this mm_struct can't be freed */
Vegard Nossumf1f10072017-02-27 14:30:07 -0800747 mmgrab(mm);
Oleg Nesterov5381e162014-10-09 15:25:24 -0700748 /* but do not pin its memory */
749 mmput(mm);
750 }
751 }
752
753 return mm;
754}
755
Cong Wangb409e572012-05-31 16:26:17 -0700756static int __mem_open(struct inode *inode, struct file *file, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757{
Oleg Nesterov5381e162014-10-09 15:25:24 -0700758 struct mm_struct *mm = proc_mem_open(inode, mode);
Linus Torvaldse2683372012-01-17 15:21:19 -0800759
760 if (IS_ERR(mm))
761 return PTR_ERR(mm);
762
Linus Torvaldse2683372012-01-17 15:21:19 -0800763 file->private_data = mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 return 0;
765}
766
Cong Wangb409e572012-05-31 16:26:17 -0700767static int mem_open(struct inode *inode, struct file *file)
768{
Djalal Harounibc452b42012-07-30 14:42:28 -0700769 int ret = __mem_open(inode, file, PTRACE_MODE_ATTACH);
770
771 /* OK to pass negative loff_t, we can catch out-of-range */
772 file->f_mode |= FMODE_UNSIGNED_OFFSET;
773
774 return ret;
Cong Wangb409e572012-05-31 16:26:17 -0700775}
776
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100777static ssize_t mem_rw(struct file *file, char __user *buf,
778 size_t count, loff_t *ppos, int write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
Linus Torvaldse2683372012-01-17 15:21:19 -0800780 struct mm_struct *mm = file->private_data;
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100781 unsigned long addr = *ppos;
782 ssize_t copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 char *page;
Linus Torvalds272ddc82016-10-24 19:00:44 -0700784 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
Linus Torvaldse2683372012-01-17 15:21:19 -0800786 if (!mm)
787 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Michal Hocko0ee931c2017-09-13 16:28:29 -0700789 page = (char *)__get_free_page(GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 if (!page)
Linus Torvaldse2683372012-01-17 15:21:19 -0800791 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
Frederik Deweerdtf7ca54f2006-09-29 02:01:02 -0700793 copied = 0;
Vegard Nossum388f7932017-02-27 14:30:13 -0800794 if (!mmget_not_zero(mm))
Oleg Nesterov6d08f2c2012-01-31 17:15:11 +0100795 goto free;
796
Linus Torvaldsf511c0b2017-05-30 12:38:59 -0700797 flags = FOLL_FORCE | (write ? FOLL_WRITE : 0);
Lorenzo Stoakes6347e8d2016-10-13 01:20:19 +0100798
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 while (count > 0) {
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100800 int this_len = min_t(int, count, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100802 if (write && copy_from_user(page, buf, this_len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 copied = -EFAULT;
804 break;
805 }
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100806
Lorenzo Stoakes6347e8d2016-10-13 01:20:19 +0100807 this_len = access_remote_vm(mm, addr, page, this_len, flags);
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100808 if (!this_len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 if (!copied)
810 copied = -EIO;
811 break;
812 }
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100813
814 if (!write && copy_to_user(buf, page, this_len)) {
815 copied = -EFAULT;
816 break;
817 }
818
819 buf += this_len;
820 addr += this_len;
821 copied += this_len;
822 count -= this_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 }
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100824 *ppos = addr;
KOSAKI Motohiro30cd8902011-05-26 16:25:52 -0700825
Oleg Nesterov6d08f2c2012-01-31 17:15:11 +0100826 mmput(mm);
827free:
KOSAKI Motohiro30cd8902011-05-26 16:25:52 -0700828 free_page((unsigned long) page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 return copied;
830}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
Oleg Nesterov572d34b2012-01-31 17:14:54 +0100832static ssize_t mem_read(struct file *file, char __user *buf,
833 size_t count, loff_t *ppos)
834{
835 return mem_rw(file, buf, count, ppos, 0);
836}
837
838static ssize_t mem_write(struct file *file, const char __user *buf,
839 size_t count, loff_t *ppos)
840{
841 return mem_rw(file, (char __user*)buf, count, ppos, 1);
842}
843
Matt Mackall85863e42008-02-04 22:29:04 -0800844loff_t mem_lseek(struct file *file, loff_t offset, int orig)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845{
846 switch (orig) {
847 case 0:
848 file->f_pos = offset;
849 break;
850 case 1:
851 file->f_pos += offset;
852 break;
853 default:
854 return -EINVAL;
855 }
856 force_successful_syscall_return();
857 return file->f_pos;
858}
859
Linus Torvaldse2683372012-01-17 15:21:19 -0800860static int mem_release(struct inode *inode, struct file *file)
861{
862 struct mm_struct *mm = file->private_data;
Oleg Nesterov71879d32012-01-31 17:14:38 +0100863 if (mm)
Oleg Nesterov6d08f2c2012-01-31 17:15:11 +0100864 mmdrop(mm);
Linus Torvaldse2683372012-01-17 15:21:19 -0800865 return 0;
866}
867
Arjan van de Ven00977a52007-02-12 00:55:34 -0800868static const struct file_operations proc_mem_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 .llseek = mem_lseek,
870 .read = mem_read,
871 .write = mem_write,
872 .open = mem_open,
Linus Torvaldse2683372012-01-17 15:21:19 -0800873 .release = mem_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874};
875
Cong Wangb409e572012-05-31 16:26:17 -0700876static int environ_open(struct inode *inode, struct file *file)
877{
878 return __mem_open(inode, file, PTRACE_MODE_READ);
879}
880
James Pearson315e28c2007-10-16 23:30:17 -0700881static ssize_t environ_read(struct file *file, char __user *buf,
882 size_t count, loff_t *ppos)
883{
James Pearson315e28c2007-10-16 23:30:17 -0700884 char *page;
885 unsigned long src = *ppos;
Cong Wangb409e572012-05-31 16:26:17 -0700886 int ret = 0;
887 struct mm_struct *mm = file->private_data;
Mateusz Guzika3b609e2016-01-20 15:01:05 -0800888 unsigned long env_start, env_end;
James Pearson315e28c2007-10-16 23:30:17 -0700889
Mathias Krause8148a732016-05-05 16:22:26 -0700890 /* Ensure the process spawned far enough to have an environment. */
891 if (!mm || !mm->env_end)
Cong Wangb409e572012-05-31 16:26:17 -0700892 return 0;
James Pearson315e28c2007-10-16 23:30:17 -0700893
Michal Hocko0ee931c2017-09-13 16:28:29 -0700894 page = (char *)__get_free_page(GFP_KERNEL);
James Pearson315e28c2007-10-16 23:30:17 -0700895 if (!page)
Cong Wangb409e572012-05-31 16:26:17 -0700896 return -ENOMEM;
James Pearson315e28c2007-10-16 23:30:17 -0700897
Al Virod6f64b82011-02-15 22:26:01 -0500898 ret = 0;
Vegard Nossum388f7932017-02-27 14:30:13 -0800899 if (!mmget_not_zero(mm))
Cong Wangb409e572012-05-31 16:26:17 -0700900 goto free;
Mateusz Guzika3b609e2016-01-20 15:01:05 -0800901
Yang Shi88aa7cc2018-06-07 17:05:28 -0700902 spin_lock(&mm->arg_lock);
Mateusz Guzika3b609e2016-01-20 15:01:05 -0800903 env_start = mm->env_start;
904 env_end = mm->env_end;
Yang Shi88aa7cc2018-06-07 17:05:28 -0700905 spin_unlock(&mm->arg_lock);
Mateusz Guzika3b609e2016-01-20 15:01:05 -0800906
James Pearson315e28c2007-10-16 23:30:17 -0700907 while (count > 0) {
Djalal Harounie8905ec2012-07-30 14:42:26 -0700908 size_t this_len, max_len;
909 int retval;
910
Mateusz Guzika3b609e2016-01-20 15:01:05 -0800911 if (src >= (env_end - env_start))
Djalal Harounie8905ec2012-07-30 14:42:26 -0700912 break;
James Pearson315e28c2007-10-16 23:30:17 -0700913
Mateusz Guzika3b609e2016-01-20 15:01:05 -0800914 this_len = env_end - (env_start + src);
James Pearson315e28c2007-10-16 23:30:17 -0700915
Djalal Harounie8905ec2012-07-30 14:42:26 -0700916 max_len = min_t(size_t, PAGE_SIZE, count);
917 this_len = min(max_len, this_len);
James Pearson315e28c2007-10-16 23:30:17 -0700918
Willy Tarreau7f7ccc22018-05-11 08:11:44 +0200919 retval = access_remote_vm(mm, (env_start + src), page, this_len, FOLL_ANON);
James Pearson315e28c2007-10-16 23:30:17 -0700920
921 if (retval <= 0) {
922 ret = retval;
923 break;
924 }
925
926 if (copy_to_user(buf, page, retval)) {
927 ret = -EFAULT;
928 break;
929 }
930
931 ret += retval;
932 src += retval;
933 buf += retval;
934 count -= retval;
935 }
936 *ppos = src;
James Pearson315e28c2007-10-16 23:30:17 -0700937 mmput(mm);
Cong Wangb409e572012-05-31 16:26:17 -0700938
939free:
James Pearson315e28c2007-10-16 23:30:17 -0700940 free_page((unsigned long) page);
James Pearson315e28c2007-10-16 23:30:17 -0700941 return ret;
942}
943
944static const struct file_operations proc_environ_operations = {
Cong Wangb409e572012-05-31 16:26:17 -0700945 .open = environ_open,
James Pearson315e28c2007-10-16 23:30:17 -0700946 .read = environ_read,
Arnd Bergmann87df8422010-03-17 23:06:02 +0100947 .llseek = generic_file_llseek,
Cong Wangb409e572012-05-31 16:26:17 -0700948 .release = mem_release,
James Pearson315e28c2007-10-16 23:30:17 -0700949};
950
Al Viroc5317162016-10-05 18:43:43 -0400951static int auxv_open(struct inode *inode, struct file *file)
952{
953 return __mem_open(inode, file, PTRACE_MODE_READ_FSCREDS);
954}
955
956static ssize_t auxv_read(struct file *file, char __user *buf,
957 size_t count, loff_t *ppos)
958{
959 struct mm_struct *mm = file->private_data;
960 unsigned int nwords = 0;
Leon Yu06b28492016-10-27 17:46:50 -0700961
962 if (!mm)
963 return 0;
Al Viroc5317162016-10-05 18:43:43 -0400964 do {
965 nwords += 2;
966 } while (mm->saved_auxv[nwords - 2] != 0); /* AT_NULL */
967 return simple_read_from_buffer(buf, count, ppos, mm->saved_auxv,
968 nwords * sizeof(mm->saved_auxv[0]));
969}
970
971static const struct file_operations proc_auxv_operations = {
972 .open = auxv_open,
973 .read = auxv_read,
974 .llseek = generic_file_llseek,
975 .release = mem_release,
976};
977
David Rientjesfa0cbbf2012-11-12 17:53:04 -0800978static ssize_t oom_adj_read(struct file *file, char __user *buf, size_t count,
979 loff_t *ppos)
980{
Al Viro496ad9a2013-01-23 17:07:38 -0500981 struct task_struct *task = get_proc_task(file_inode(file));
David Rientjesfa0cbbf2012-11-12 17:53:04 -0800982 char buffer[PROC_NUMBUF];
983 int oom_adj = OOM_ADJUST_MIN;
984 size_t len;
David Rientjesfa0cbbf2012-11-12 17:53:04 -0800985
986 if (!task)
987 return -ESRCH;
Michal Hockof913da52016-07-28 15:44:37 -0700988 if (task->signal->oom_score_adj == OOM_SCORE_ADJ_MAX)
989 oom_adj = OOM_ADJUST_MAX;
990 else
991 oom_adj = (task->signal->oom_score_adj * -OOM_DISABLE) /
992 OOM_SCORE_ADJ_MAX;
David Rientjesfa0cbbf2012-11-12 17:53:04 -0800993 put_task_struct(task);
994 len = snprintf(buffer, sizeof(buffer), "%d\n", oom_adj);
995 return simple_read_from_buffer(buf, count, ppos, buffer, len);
996}
997
Michal Hocko1d5f0ac2016-07-28 15:44:40 -0700998static int __set_oom_adj(struct file *file, int oom_adj, bool legacy)
999{
1000 static DEFINE_MUTEX(oom_adj_mutex);
Michal Hocko44a70ade2016-07-28 15:44:43 -07001001 struct mm_struct *mm = NULL;
Michal Hocko1d5f0ac2016-07-28 15:44:40 -07001002 struct task_struct *task;
1003 int err = 0;
1004
1005 task = get_proc_task(file_inode(file));
1006 if (!task)
1007 return -ESRCH;
1008
1009 mutex_lock(&oom_adj_mutex);
1010 if (legacy) {
1011 if (oom_adj < task->signal->oom_score_adj &&
1012 !capable(CAP_SYS_RESOURCE)) {
1013 err = -EACCES;
1014 goto err_unlock;
1015 }
1016 /*
1017 * /proc/pid/oom_adj is provided for legacy purposes, ask users to use
1018 * /proc/pid/oom_score_adj instead.
1019 */
1020 pr_warn_once("%s (%d): /proc/%d/oom_adj is deprecated, please use /proc/%d/oom_score_adj instead.\n",
1021 current->comm, task_pid_nr(current), task_pid_nr(task),
1022 task_pid_nr(task));
1023 } else {
1024 if ((short)oom_adj < task->signal->oom_score_adj_min &&
1025 !capable(CAP_SYS_RESOURCE)) {
1026 err = -EACCES;
1027 goto err_unlock;
1028 }
1029 }
1030
Michal Hocko44a70ade2016-07-28 15:44:43 -07001031 /*
1032 * Make sure we will check other processes sharing the mm if this is
1033 * not vfrok which wants its own oom_score_adj.
1034 * pin the mm so it doesn't go away and get reused after task_unlock
1035 */
1036 if (!task->vfork_done) {
1037 struct task_struct *p = find_lock_task_mm(task);
1038
1039 if (p) {
1040 if (atomic_read(&p->mm->mm_users) > 1) {
1041 mm = p->mm;
Vegard Nossumf1f10072017-02-27 14:30:07 -08001042 mmgrab(mm);
Michal Hocko44a70ade2016-07-28 15:44:43 -07001043 }
1044 task_unlock(p);
1045 }
1046 }
1047
Michal Hocko1d5f0ac2016-07-28 15:44:40 -07001048 task->signal->oom_score_adj = oom_adj;
1049 if (!legacy && has_capability_noaudit(current, CAP_SYS_RESOURCE))
1050 task->signal->oom_score_adj_min = (short)oom_adj;
1051 trace_oom_score_adj_update(task);
Michal Hocko44a70ade2016-07-28 15:44:43 -07001052
1053 if (mm) {
1054 struct task_struct *p;
1055
1056 rcu_read_lock();
1057 for_each_process(p) {
1058 if (same_thread_group(task, p))
1059 continue;
1060
1061 /* do not touch kernel threads or the global init */
1062 if (p->flags & PF_KTHREAD || is_global_init(p))
1063 continue;
1064
1065 task_lock(p);
1066 if (!p->vfork_done && process_shares_mm(p, mm)) {
1067 pr_info("updating oom_score_adj for %d (%s) from %d to %d because it shares mm with %d (%s). Report if this is unexpected.\n",
1068 task_pid_nr(p), p->comm,
1069 p->signal->oom_score_adj, oom_adj,
1070 task_pid_nr(task), task->comm);
1071 p->signal->oom_score_adj = oom_adj;
1072 if (!legacy && has_capability_noaudit(current, CAP_SYS_RESOURCE))
1073 p->signal->oom_score_adj_min = (short)oom_adj;
1074 }
1075 task_unlock(p);
1076 }
1077 rcu_read_unlock();
1078 mmdrop(mm);
1079 }
Michal Hocko1d5f0ac2016-07-28 15:44:40 -07001080err_unlock:
1081 mutex_unlock(&oom_adj_mutex);
1082 put_task_struct(task);
1083 return err;
1084}
Michal Hockof913da52016-07-28 15:44:37 -07001085
David Rientjesb72bdfa2015-11-05 18:50:32 -08001086/*
1087 * /proc/pid/oom_adj exists solely for backwards compatibility with previous
1088 * kernels. The effective policy is defined by oom_score_adj, which has a
1089 * different scale: oom_adj grew exponentially and oom_score_adj grows linearly.
1090 * Values written to oom_adj are simply mapped linearly to oom_score_adj.
1091 * Processes that become oom disabled via oom_adj will still be oom disabled
1092 * with this implementation.
1093 *
1094 * oom_adj cannot be removed since existing userspace binaries use it.
1095 */
David Rientjesfa0cbbf2012-11-12 17:53:04 -08001096static ssize_t oom_adj_write(struct file *file, const char __user *buf,
1097 size_t count, loff_t *ppos)
1098{
David Rientjesfa0cbbf2012-11-12 17:53:04 -08001099 char buffer[PROC_NUMBUF];
1100 int oom_adj;
David Rientjesfa0cbbf2012-11-12 17:53:04 -08001101 int err;
1102
1103 memset(buffer, 0, sizeof(buffer));
1104 if (count > sizeof(buffer) - 1)
1105 count = sizeof(buffer) - 1;
1106 if (copy_from_user(buffer, buf, count)) {
1107 err = -EFAULT;
1108 goto out;
1109 }
1110
1111 err = kstrtoint(strstrip(buffer), 0, &oom_adj);
1112 if (err)
1113 goto out;
1114 if ((oom_adj < OOM_ADJUST_MIN || oom_adj > OOM_ADJUST_MAX) &&
1115 oom_adj != OOM_DISABLE) {
1116 err = -EINVAL;
1117 goto out;
1118 }
1119
David Rientjesfa0cbbf2012-11-12 17:53:04 -08001120 /*
1121 * Scale /proc/pid/oom_score_adj appropriately ensuring that a maximum
1122 * value is always attainable.
1123 */
1124 if (oom_adj == OOM_ADJUST_MAX)
1125 oom_adj = OOM_SCORE_ADJ_MAX;
1126 else
1127 oom_adj = (oom_adj * OOM_SCORE_ADJ_MAX) / -OOM_DISABLE;
1128
Michal Hocko1d5f0ac2016-07-28 15:44:40 -07001129 err = __set_oom_adj(file, oom_adj, true);
David Rientjesfa0cbbf2012-11-12 17:53:04 -08001130out:
1131 return err < 0 ? err : count;
1132}
1133
1134static const struct file_operations proc_oom_adj_operations = {
1135 .read = oom_adj_read,
1136 .write = oom_adj_write,
1137 .llseek = generic_file_llseek,
1138};
1139
David Rientjesa63d83f2010-08-09 17:19:46 -07001140static ssize_t oom_score_adj_read(struct file *file, char __user *buf,
1141 size_t count, loff_t *ppos)
1142{
Al Viro496ad9a2013-01-23 17:07:38 -05001143 struct task_struct *task = get_proc_task(file_inode(file));
David Rientjesa63d83f2010-08-09 17:19:46 -07001144 char buffer[PROC_NUMBUF];
David Rientjesa9c58b902012-12-11 16:02:54 -08001145 short oom_score_adj = OOM_SCORE_ADJ_MIN;
David Rientjesa63d83f2010-08-09 17:19:46 -07001146 size_t len;
1147
1148 if (!task)
1149 return -ESRCH;
Michal Hockof913da52016-07-28 15:44:37 -07001150 oom_score_adj = task->signal->oom_score_adj;
David Rientjesa63d83f2010-08-09 17:19:46 -07001151 put_task_struct(task);
David Rientjesa9c58b902012-12-11 16:02:54 -08001152 len = snprintf(buffer, sizeof(buffer), "%hd\n", oom_score_adj);
David Rientjesa63d83f2010-08-09 17:19:46 -07001153 return simple_read_from_buffer(buf, count, ppos, buffer, len);
1154}
1155
1156static ssize_t oom_score_adj_write(struct file *file, const char __user *buf,
1157 size_t count, loff_t *ppos)
1158{
David Rientjesa63d83f2010-08-09 17:19:46 -07001159 char buffer[PROC_NUMBUF];
Alexey Dobriyan0a8cb8e2011-05-26 16:25:50 -07001160 int oom_score_adj;
David Rientjesa63d83f2010-08-09 17:19:46 -07001161 int err;
1162
1163 memset(buffer, 0, sizeof(buffer));
1164 if (count > sizeof(buffer) - 1)
1165 count = sizeof(buffer) - 1;
David Rientjes723548b2010-10-26 14:21:25 -07001166 if (copy_from_user(buffer, buf, count)) {
1167 err = -EFAULT;
1168 goto out;
1169 }
David Rientjesa63d83f2010-08-09 17:19:46 -07001170
Alexey Dobriyan0a8cb8e2011-05-26 16:25:50 -07001171 err = kstrtoint(strstrip(buffer), 0, &oom_score_adj);
David Rientjesa63d83f2010-08-09 17:19:46 -07001172 if (err)
David Rientjes723548b2010-10-26 14:21:25 -07001173 goto out;
David Rientjesa63d83f2010-08-09 17:19:46 -07001174 if (oom_score_adj < OOM_SCORE_ADJ_MIN ||
David Rientjes723548b2010-10-26 14:21:25 -07001175 oom_score_adj > OOM_SCORE_ADJ_MAX) {
1176 err = -EINVAL;
1177 goto out;
1178 }
David Rientjesa63d83f2010-08-09 17:19:46 -07001179
Michal Hocko1d5f0ac2016-07-28 15:44:40 -07001180 err = __set_oom_adj(file, oom_score_adj, false);
David Rientjes723548b2010-10-26 14:21:25 -07001181out:
1182 return err < 0 ? err : count;
David Rientjesa63d83f2010-08-09 17:19:46 -07001183}
1184
1185static const struct file_operations proc_oom_score_adj_operations = {
1186 .read = oom_score_adj_read,
1187 .write = oom_score_adj_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001188 .llseek = default_llseek,
David Rientjesa63d83f2010-08-09 17:19:46 -07001189};
1190
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191#ifdef CONFIG_AUDITSYSCALL
Alexey Dobriyanb4eb4f72016-10-29 19:04:39 +03001192#define TMPBUFLEN 11
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193static ssize_t proc_loginuid_read(struct file * file, char __user * buf,
1194 size_t count, loff_t *ppos)
1195{
Al Viro496ad9a2013-01-23 17:07:38 -05001196 struct inode * inode = file_inode(file);
Eric W. Biederman99f89552006-06-26 00:25:55 -07001197 struct task_struct *task = get_proc_task(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 ssize_t length;
1199 char tmpbuf[TMPBUFLEN];
1200
Eric W. Biederman99f89552006-06-26 00:25:55 -07001201 if (!task)
1202 return -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07001204 from_kuid(file->f_cred->user_ns,
1205 audit_get_loginuid(task)));
Eric W. Biederman99f89552006-06-26 00:25:55 -07001206 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1208}
1209
1210static ssize_t proc_loginuid_write(struct file * file, const char __user * buf,
1211 size_t count, loff_t *ppos)
1212{
Al Viro496ad9a2013-01-23 17:07:38 -05001213 struct inode * inode = file_inode(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 uid_t loginuid;
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07001215 kuid_t kloginuid;
Alexey Dobriyan774636e2015-09-09 15:36:59 -07001216 int rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
Paul E. McKenney7dc52152010-02-22 17:04:52 -08001218 rcu_read_lock();
1219 if (current != pid_task(proc_pid(inode), PIDTYPE_PID)) {
1220 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 return -EPERM;
Paul E. McKenney7dc52152010-02-22 17:04:52 -08001222 }
1223 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 if (*ppos != 0) {
1226 /* No partial writes. */
1227 return -EINVAL;
1228 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
Alexey Dobriyan774636e2015-09-09 15:36:59 -07001230 rv = kstrtou32_from_user(buf, count, 10, &loginuid);
1231 if (rv < 0)
1232 return rv;
Eric Paris81407c82013-05-24 09:49:14 -04001233
1234 /* is userspace tring to explicitly UNSET the loginuid? */
1235 if (loginuid == AUDIT_UID_UNSET) {
1236 kloginuid = INVALID_UID;
1237 } else {
1238 kloginuid = make_kuid(file->f_cred->user_ns, loginuid);
Alexey Dobriyan774636e2015-09-09 15:36:59 -07001239 if (!uid_valid(kloginuid))
1240 return -EINVAL;
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07001241 }
1242
Alexey Dobriyan774636e2015-09-09 15:36:59 -07001243 rv = audit_set_loginuid(kloginuid);
1244 if (rv < 0)
1245 return rv;
1246 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247}
1248
Arjan van de Ven00977a52007-02-12 00:55:34 -08001249static const struct file_operations proc_loginuid_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 .read = proc_loginuid_read,
1251 .write = proc_loginuid_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001252 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253};
Eric Paris1e0bd752008-03-13 08:15:31 -04001254
1255static ssize_t proc_sessionid_read(struct file * file, char __user * buf,
1256 size_t count, loff_t *ppos)
1257{
Al Viro496ad9a2013-01-23 17:07:38 -05001258 struct inode * inode = file_inode(file);
Eric Paris1e0bd752008-03-13 08:15:31 -04001259 struct task_struct *task = get_proc_task(inode);
1260 ssize_t length;
1261 char tmpbuf[TMPBUFLEN];
1262
1263 if (!task)
1264 return -ESRCH;
1265 length = scnprintf(tmpbuf, TMPBUFLEN, "%u",
1266 audit_get_sessionid(task));
1267 put_task_struct(task);
1268 return simple_read_from_buffer(buf, count, ppos, tmpbuf, length);
1269}
1270
1271static const struct file_operations proc_sessionid_operations = {
1272 .read = proc_sessionid_read,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001273 .llseek = generic_file_llseek,
Eric Paris1e0bd752008-03-13 08:15:31 -04001274};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275#endif
1276
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001277#ifdef CONFIG_FAULT_INJECTION
1278static ssize_t proc_fault_inject_read(struct file * file, char __user * buf,
1279 size_t count, loff_t *ppos)
1280{
Al Viro496ad9a2013-01-23 17:07:38 -05001281 struct task_struct *task = get_proc_task(file_inode(file));
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001282 char buffer[PROC_NUMBUF];
1283 size_t len;
1284 int make_it_fail;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001285
1286 if (!task)
1287 return -ESRCH;
1288 make_it_fail = task->make_it_fail;
1289 put_task_struct(task);
1290
1291 len = snprintf(buffer, sizeof(buffer), "%i\n", make_it_fail);
Akinobu Mita0c28f282007-05-08 00:31:41 -07001292
1293 return simple_read_from_buffer(buf, count, ppos, buffer, len);
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001294}
1295
1296static ssize_t proc_fault_inject_write(struct file * file,
1297 const char __user * buf, size_t count, loff_t *ppos)
1298{
1299 struct task_struct *task;
Alexey Dobriyan774636e2015-09-09 15:36:59 -07001300 char buffer[PROC_NUMBUF];
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001301 int make_it_fail;
Alexey Dobriyan774636e2015-09-09 15:36:59 -07001302 int rv;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001303
1304 if (!capable(CAP_SYS_RESOURCE))
1305 return -EPERM;
1306 memset(buffer, 0, sizeof(buffer));
1307 if (count > sizeof(buffer) - 1)
1308 count = sizeof(buffer) - 1;
1309 if (copy_from_user(buffer, buf, count))
1310 return -EFAULT;
Alexey Dobriyan774636e2015-09-09 15:36:59 -07001311 rv = kstrtoint(strstrip(buffer), 0, &make_it_fail);
1312 if (rv < 0)
1313 return rv;
Dave Jones16caed32014-04-07 15:39:15 -07001314 if (make_it_fail < 0 || make_it_fail > 1)
1315 return -EINVAL;
1316
Al Viro496ad9a2013-01-23 17:07:38 -05001317 task = get_proc_task(file_inode(file));
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001318 if (!task)
1319 return -ESRCH;
1320 task->make_it_fail = make_it_fail;
1321 put_task_struct(task);
Vincent Licba8aaf2009-09-22 16:45:38 -07001322
1323 return count;
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001324}
1325
Arjan van de Ven00977a52007-02-12 00:55:34 -08001326static const struct file_operations proc_fault_inject_operations = {
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001327 .read = proc_fault_inject_read,
1328 .write = proc_fault_inject_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01001329 .llseek = generic_file_llseek,
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001330};
Dmitry Vyukove41d58182017-07-12 14:34:35 -07001331
1332static ssize_t proc_fail_nth_write(struct file *file, const char __user *buf,
1333 size_t count, loff_t *ppos)
1334{
1335 struct task_struct *task;
Akinobu Mita9049f2f2017-07-14 14:49:52 -07001336 int err;
1337 unsigned int n;
Dmitry Vyukove41d58182017-07-12 14:34:35 -07001338
Akinobu Mita9049f2f2017-07-14 14:49:52 -07001339 err = kstrtouint_from_user(buf, count, 0, &n);
Dmitry Vyukove41d58182017-07-12 14:34:35 -07001340 if (err)
1341 return err;
Akinobu Mita1203c8e2017-07-14 14:49:57 -07001342
1343 task = get_proc_task(file_inode(file));
1344 if (!task)
1345 return -ESRCH;
Alexey Dobriyan9f7118b2018-02-06 15:36:55 -08001346 task->fail_nth = n;
Akinobu Mita1203c8e2017-07-14 14:49:57 -07001347 put_task_struct(task);
1348
Dmitry Vyukove41d58182017-07-12 14:34:35 -07001349 return count;
1350}
1351
1352static ssize_t proc_fail_nth_read(struct file *file, char __user *buf,
1353 size_t count, loff_t *ppos)
1354{
1355 struct task_struct *task;
Akinobu Mitabfc74092017-07-14 14:49:54 -07001356 char numbuf[PROC_NUMBUF];
1357 ssize_t len;
Dmitry Vyukove41d58182017-07-12 14:34:35 -07001358
1359 task = get_proc_task(file_inode(file));
1360 if (!task)
1361 return -ESRCH;
Alexey Dobriyan9f7118b2018-02-06 15:36:55 -08001362 len = snprintf(numbuf, sizeof(numbuf), "%u\n", task->fail_nth);
Akinobu Mitabfc74092017-07-14 14:49:54 -07001363 len = simple_read_from_buffer(buf, count, ppos, numbuf, len);
Akinobu Mita1203c8e2017-07-14 14:49:57 -07001364 put_task_struct(task);
Akinobu Mitabfc74092017-07-14 14:49:54 -07001365
1366 return len;
Dmitry Vyukove41d58182017-07-12 14:34:35 -07001367}
1368
1369static const struct file_operations proc_fail_nth_operations = {
1370 .read = proc_fail_nth_read,
1371 .write = proc_fail_nth_write,
1372};
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08001373#endif
1374
Arjan van de Ven97455122008-01-25 21:08:34 +01001375
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001376#ifdef CONFIG_SCHED_DEBUG
1377/*
1378 * Print out various scheduling related per-task fields:
1379 */
1380static int sched_show(struct seq_file *m, void *v)
1381{
1382 struct inode *inode = m->private;
Christoph Hellwig76f668b2018-05-16 07:19:01 +02001383 struct pid_namespace *ns = proc_pid_ns(inode);
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001384 struct task_struct *p;
1385
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001386 p = get_proc_task(inode);
1387 if (!p)
1388 return -ESRCH;
Aleksa Sarai74dc3382017-08-06 14:41:41 +10001389 proc_sched_show_task(p, ns, m);
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001390
1391 put_task_struct(p);
1392
1393 return 0;
1394}
1395
1396static ssize_t
1397sched_write(struct file *file, const char __user *buf,
1398 size_t count, loff_t *offset)
1399{
Al Viro496ad9a2013-01-23 17:07:38 -05001400 struct inode *inode = file_inode(file);
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001401 struct task_struct *p;
1402
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001403 p = get_proc_task(inode);
1404 if (!p)
1405 return -ESRCH;
1406 proc_sched_set_task(p);
1407
1408 put_task_struct(p);
1409
1410 return count;
1411}
1412
1413static int sched_open(struct inode *inode, struct file *filp)
1414{
Jovi Zhangc6a34052011-01-12 17:00:34 -08001415 return single_open(filp, sched_show, inode);
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001416}
1417
1418static const struct file_operations proc_pid_sched_operations = {
1419 .open = sched_open,
1420 .read = seq_read,
1421 .write = sched_write,
1422 .llseek = seq_lseek,
Alexey Dobriyan5ea473a2007-07-31 00:38:50 -07001423 .release = single_release,
Ingo Molnar43ae34c2007-07-09 18:52:00 +02001424};
1425
1426#endif
1427
Mike Galbraith5091faa2010-11-30 14:18:03 +01001428#ifdef CONFIG_SCHED_AUTOGROUP
1429/*
1430 * Print out autogroup related information:
1431 */
1432static int sched_autogroup_show(struct seq_file *m, void *v)
1433{
1434 struct inode *inode = m->private;
1435 struct task_struct *p;
1436
1437 p = get_proc_task(inode);
1438 if (!p)
1439 return -ESRCH;
1440 proc_sched_autogroup_show_task(p, m);
1441
1442 put_task_struct(p);
1443
1444 return 0;
1445}
1446
1447static ssize_t
1448sched_autogroup_write(struct file *file, const char __user *buf,
1449 size_t count, loff_t *offset)
1450{
Al Viro496ad9a2013-01-23 17:07:38 -05001451 struct inode *inode = file_inode(file);
Mike Galbraith5091faa2010-11-30 14:18:03 +01001452 struct task_struct *p;
1453 char buffer[PROC_NUMBUF];
Alexey Dobriyan0a8cb8e2011-05-26 16:25:50 -07001454 int nice;
Mike Galbraith5091faa2010-11-30 14:18:03 +01001455 int err;
1456
1457 memset(buffer, 0, sizeof(buffer));
1458 if (count > sizeof(buffer) - 1)
1459 count = sizeof(buffer) - 1;
1460 if (copy_from_user(buffer, buf, count))
1461 return -EFAULT;
1462
Alexey Dobriyan0a8cb8e2011-05-26 16:25:50 -07001463 err = kstrtoint(strstrip(buffer), 0, &nice);
1464 if (err < 0)
1465 return err;
Mike Galbraith5091faa2010-11-30 14:18:03 +01001466
1467 p = get_proc_task(inode);
1468 if (!p)
1469 return -ESRCH;
1470
Hiroshi Shimamoto2e5b5b32012-02-23 17:41:27 +09001471 err = proc_sched_autogroup_set_nice(p, nice);
Mike Galbraith5091faa2010-11-30 14:18:03 +01001472 if (err)
1473 count = err;
1474
1475 put_task_struct(p);
1476
1477 return count;
1478}
1479
1480static int sched_autogroup_open(struct inode *inode, struct file *filp)
1481{
1482 int ret;
1483
1484 ret = single_open(filp, sched_autogroup_show, NULL);
1485 if (!ret) {
1486 struct seq_file *m = filp->private_data;
1487
1488 m->private = inode;
1489 }
1490 return ret;
1491}
1492
1493static const struct file_operations proc_pid_sched_autogroup_operations = {
1494 .open = sched_autogroup_open,
1495 .read = seq_read,
1496 .write = sched_autogroup_write,
1497 .llseek = seq_lseek,
1498 .release = single_release,
1499};
1500
1501#endif /* CONFIG_SCHED_AUTOGROUP */
1502
john stultz4614a696b2009-12-14 18:00:05 -08001503static ssize_t comm_write(struct file *file, const char __user *buf,
1504 size_t count, loff_t *offset)
1505{
Al Viro496ad9a2013-01-23 17:07:38 -05001506 struct inode *inode = file_inode(file);
john stultz4614a696b2009-12-14 18:00:05 -08001507 struct task_struct *p;
1508 char buffer[TASK_COMM_LEN];
David Rientjes830e0fc2013-04-30 15:28:18 -07001509 const size_t maxlen = sizeof(buffer) - 1;
john stultz4614a696b2009-12-14 18:00:05 -08001510
1511 memset(buffer, 0, sizeof(buffer));
David Rientjes830e0fc2013-04-30 15:28:18 -07001512 if (copy_from_user(buffer, buf, count > maxlen ? maxlen : count))
john stultz4614a696b2009-12-14 18:00:05 -08001513 return -EFAULT;
1514
1515 p = get_proc_task(inode);
1516 if (!p)
1517 return -ESRCH;
1518
1519 if (same_thread_group(current, p))
1520 set_task_comm(p, buffer);
1521 else
1522 count = -EINVAL;
1523
1524 put_task_struct(p);
1525
1526 return count;
1527}
1528
1529static int comm_show(struct seq_file *m, void *v)
1530{
1531 struct inode *inode = m->private;
1532 struct task_struct *p;
1533
1534 p = get_proc_task(inode);
1535 if (!p)
1536 return -ESRCH;
1537
Tejun Heo88b72b32018-05-18 08:47:13 -07001538 proc_task_name(m, p, false);
1539 seq_putc(m, '\n');
john stultz4614a696b2009-12-14 18:00:05 -08001540
1541 put_task_struct(p);
1542
1543 return 0;
1544}
1545
1546static int comm_open(struct inode *inode, struct file *filp)
1547{
Jovi Zhangc6a34052011-01-12 17:00:34 -08001548 return single_open(filp, comm_show, inode);
john stultz4614a696b2009-12-14 18:00:05 -08001549}
1550
1551static const struct file_operations proc_pid_set_comm_operations = {
1552 .open = comm_open,
1553 .read = seq_read,
1554 .write = comm_write,
1555 .llseek = seq_lseek,
1556 .release = single_release,
1557};
1558
Cyrill Gorcunov7773fbc2012-01-10 15:11:20 -08001559static int proc_exe_link(struct dentry *dentry, struct path *exe_path)
Matt Helsley925d1c42008-04-29 01:01:36 -07001560{
1561 struct task_struct *task;
Matt Helsley925d1c42008-04-29 01:01:36 -07001562 struct file *exe_file;
1563
David Howells2b0143b2015-03-17 22:25:59 +00001564 task = get_proc_task(d_inode(dentry));
Matt Helsley925d1c42008-04-29 01:01:36 -07001565 if (!task)
1566 return -ENOENT;
Mateusz Guzikcd81a9172016-08-23 16:20:38 +02001567 exe_file = get_task_exe_file(task);
Matt Helsley925d1c42008-04-29 01:01:36 -07001568 put_task_struct(task);
Matt Helsley925d1c42008-04-29 01:01:36 -07001569 if (exe_file) {
1570 *exe_path = exe_file->f_path;
1571 path_get(&exe_file->f_path);
1572 fput(exe_file);
1573 return 0;
1574 } else
1575 return -ENOENT;
1576}
1577
Al Viro6b255392015-11-17 10:20:54 -05001578static const char *proc_pid_get_link(struct dentry *dentry,
Al Virofceef392015-12-29 15:58:39 -05001579 struct inode *inode,
1580 struct delayed_call *done)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581{
Christoph Hellwig408ef012012-06-18 10:47:03 -04001582 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 int error = -EACCES;
1584
Al Viro6b255392015-11-17 10:20:54 -05001585 if (!dentry)
1586 return ERR_PTR(-ECHILD);
1587
Eric W. Biederman778c1142006-06-26 00:25:58 -07001588 /* Are we allowed to snoop on the tasks file descriptors? */
1589 if (!proc_fd_access_allowed(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
Christoph Hellwig408ef012012-06-18 10:47:03 -04001592 error = PROC_I(inode)->op.proc_get_link(dentry, &path);
1593 if (error)
1594 goto out;
1595
Al Viro6e77137b2015-05-02 13:37:52 -04001596 nd_jump_link(&path);
Christoph Hellwig408ef012012-06-18 10:47:03 -04001597 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598out:
Al Viro008b1502005-08-20 00:17:39 +01001599 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600}
1601
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001602static int do_proc_readlink(struct path *path, char __user *buffer, int buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603{
Michal Hocko0ee931c2017-09-13 16:28:29 -07001604 char *tmp = (char *)__get_free_page(GFP_KERNEL);
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001605 char *pathname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 int len;
1607
1608 if (!tmp)
1609 return -ENOMEM;
Akinobu Mita0c28f282007-05-08 00:31:41 -07001610
Eric W. Biederman7b2a69b2010-12-05 15:51:21 -08001611 pathname = d_path(path, tmp, PAGE_SIZE);
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001612 len = PTR_ERR(pathname);
1613 if (IS_ERR(pathname))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 goto out;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001615 len = tmp + PAGE_SIZE - 1 - pathname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616
1617 if (len > buflen)
1618 len = buflen;
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001619 if (copy_to_user(buffer, pathname, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 len = -EFAULT;
1621 out:
1622 free_page((unsigned long)tmp);
1623 return len;
1624}
1625
1626static int proc_pid_readlink(struct dentry * dentry, char __user * buffer, int buflen)
1627{
1628 int error = -EACCES;
David Howells2b0143b2015-03-17 22:25:59 +00001629 struct inode *inode = d_inode(dentry);
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001630 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
Eric W. Biederman778c1142006-06-26 00:25:58 -07001632 /* Are we allowed to snoop on the tasks file descriptors? */
1633 if (!proc_fd_access_allowed(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635
Cyrill Gorcunov7773fbc2012-01-10 15:11:20 -08001636 error = PROC_I(inode)->op.proc_get_link(dentry, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 if (error)
1638 goto out;
1639
Jan Blunck3dcd25f2008-02-14 19:38:35 -08001640 error = do_proc_readlink(&path, buffer, buflen);
1641 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 return error;
1644}
1645
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +04001646const struct inode_operations proc_pid_link_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 .readlink = proc_pid_readlink,
Al Viro6b255392015-11-17 10:20:54 -05001648 .get_link = proc_pid_get_link,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07001649 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650};
1651
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001652
1653/* building an inode */
1654
Al Viroc6eb50d2017-09-30 14:45:42 -04001655void task_dump_owner(struct task_struct *task, umode_t mode,
Eric W. Biederman68eb94f2017-01-03 10:23:11 +13001656 kuid_t *ruid, kgid_t *rgid)
1657{
1658 /* Depending on the state of dumpable compute who should own a
1659 * proc file for a task.
1660 */
1661 const struct cred *cred;
1662 kuid_t uid;
1663 kgid_t gid;
1664
Alexey Dobriyan2e0ad552018-04-20 14:56:03 -07001665 if (unlikely(task->flags & PF_KTHREAD)) {
1666 *ruid = GLOBAL_ROOT_UID;
1667 *rgid = GLOBAL_ROOT_GID;
1668 return;
1669 }
1670
Eric W. Biederman68eb94f2017-01-03 10:23:11 +13001671 /* Default to the tasks effective ownership */
1672 rcu_read_lock();
1673 cred = __task_cred(task);
1674 uid = cred->euid;
1675 gid = cred->egid;
1676 rcu_read_unlock();
1677
1678 /*
1679 * Before the /proc/pid/status file was created the only way to read
1680 * the effective uid of a /process was to stat /proc/pid. Reading
1681 * /proc/pid/status is slow enough that procps and other packages
1682 * kept stating /proc/pid. To keep the rules in /proc simple I have
1683 * made this apply to all per process world readable and executable
1684 * directories.
1685 */
1686 if (mode != (S_IFDIR|S_IRUGO|S_IXUGO)) {
1687 struct mm_struct *mm;
1688 task_lock(task);
1689 mm = task->mm;
1690 /* Make non-dumpable tasks owned by some root */
1691 if (mm) {
1692 if (get_dumpable(mm) != SUID_DUMP_USER) {
1693 struct user_namespace *user_ns = mm->user_ns;
1694
1695 uid = make_kuid(user_ns, 0);
1696 if (!uid_valid(uid))
1697 uid = GLOBAL_ROOT_UID;
1698
1699 gid = make_kgid(user_ns, 0);
1700 if (!gid_valid(gid))
1701 gid = GLOBAL_ROOT_GID;
1702 }
1703 } else {
1704 uid = GLOBAL_ROOT_UID;
1705 gid = GLOBAL_ROOT_GID;
1706 }
1707 task_unlock(task);
1708 }
1709 *ruid = uid;
1710 *rgid = gid;
1711}
1712
Andreas Gruenbacherdb978da2016-11-10 22:18:28 +01001713struct inode *proc_pid_make_inode(struct super_block * sb,
1714 struct task_struct *task, umode_t mode)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001715{
1716 struct inode * inode;
1717 struct proc_inode *ei;
1718
1719 /* We need a new inode */
1720
1721 inode = new_inode(sb);
1722 if (!inode)
1723 goto out;
1724
1725 /* Common stuff */
1726 ei = PROC_I(inode);
Andreas Gruenbacherdb978da2016-11-10 22:18:28 +01001727 inode->i_mode = mode;
Christoph Hellwig85fe4022010-10-23 11:19:54 -04001728 inode->i_ino = get_next_ino();
Deepa Dinamani078cd822016-09-14 07:48:04 -07001729 inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001730 inode->i_op = &proc_def_inode_operations;
1731
1732 /*
1733 * grab the reference to task.
1734 */
Oleg Nesterov1a657f782006-10-02 02:18:59 -07001735 ei->pid = get_task_pid(task, PIDTYPE_PID);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001736 if (!ei->pid)
1737 goto out_unlock;
1738
Eric W. Biederman68eb94f2017-01-03 10:23:11 +13001739 task_dump_owner(task, 0, &inode->i_uid, &inode->i_gid);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001740 security_task_to_inode(task, inode);
1741
1742out:
1743 return inode;
1744
1745out_unlock:
1746 iput(inode);
1747 return NULL;
1748}
1749
David Howellsa528d352017-01-31 16:46:22 +00001750int pid_getattr(const struct path *path, struct kstat *stat,
1751 u32 request_mask, unsigned int query_flags)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001752{
David Howellsa528d352017-01-31 16:46:22 +00001753 struct inode *inode = d_inode(path->dentry);
Christoph Hellwig76f668b2018-05-16 07:19:01 +02001754 struct pid_namespace *pid = proc_pid_ns(inode);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001755 struct task_struct *task;
David Howellsc69e8d92008-11-14 10:39:19 +11001756
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001757 generic_fillattr(inode, stat);
1758
Eric W. Biedermandcb0f222012-02-09 08:48:21 -08001759 stat->uid = GLOBAL_ROOT_UID;
1760 stat->gid = GLOBAL_ROOT_GID;
Alexey Dobriyan94116922018-06-07 17:10:07 -07001761 rcu_read_lock();
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001762 task = pid_task(proc_pid(inode), PIDTYPE_PID);
1763 if (task) {
Lafcadio Wluiki796f5712017-02-24 15:00:23 -08001764 if (!has_pid_permissions(pid, task, HIDEPID_INVISIBLE)) {
Vasiliy Kulikov04996802012-01-10 15:11:31 -08001765 rcu_read_unlock();
1766 /*
1767 * This doesn't prevent learning whether PID exists,
1768 * it only makes getattr() consistent with readdir().
1769 */
1770 return -ENOENT;
1771 }
Eric W. Biederman68eb94f2017-01-03 10:23:11 +13001772 task_dump_owner(task, inode->i_mode, &stat->uid, &stat->gid);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001773 }
1774 rcu_read_unlock();
1775 return 0;
1776}
1777
1778/* dentry stuff */
1779
1780/*
Al Viro1bbc5512018-05-02 21:26:16 -04001781 * Set <pid>/... inode ownership (can change due to setuid(), etc.)
1782 */
1783void pid_update_inode(struct task_struct *task, struct inode *inode)
1784{
1785 task_dump_owner(task, inode->i_mode, &inode->i_uid, &inode->i_gid);
1786
1787 inode->i_mode &= ~(S_ISUID | S_ISGID);
1788 security_task_to_inode(task, inode);
1789}
1790
1791/*
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001792 * Rewrite the inode's ownerships here because the owning task may have
1793 * performed a setuid(), etc.
1794 *
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001795 */
Al Viro1bbc5512018-05-02 21:26:16 -04001796static int pid_revalidate(struct dentry *dentry, unsigned int flags)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001797{
Nick Piggin34286d62011-01-07 17:49:57 +11001798 struct inode *inode;
1799 struct task_struct *task;
David Howellsc69e8d92008-11-14 10:39:19 +11001800
Al Viro0b728e12012-06-10 16:03:43 -04001801 if (flags & LOOKUP_RCU)
Nick Piggin34286d62011-01-07 17:49:57 +11001802 return -ECHILD;
1803
David Howells2b0143b2015-03-17 22:25:59 +00001804 inode = d_inode(dentry);
Nick Piggin34286d62011-01-07 17:49:57 +11001805 task = get_proc_task(inode);
1806
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001807 if (task) {
Al Viro1bbc5512018-05-02 21:26:16 -04001808 pid_update_inode(task, inode);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001809 put_task_struct(task);
1810 return 1;
1811 }
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001812 return 0;
1813}
1814
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08001815static inline bool proc_inode_is_dead(struct inode *inode)
1816{
1817 return !proc_pid(inode)->tasks[PIDTYPE_PID].first;
1818}
1819
David Howells1dd704b2013-04-12 01:08:50 +01001820int pid_delete_dentry(const struct dentry *dentry)
1821{
1822 /* Is the task we represent dead?
1823 * If so, then don't put the dentry on the lru list,
1824 * kill it immediately.
1825 */
David Howells2b0143b2015-03-17 22:25:59 +00001826 return proc_inode_is_dead(d_inode(dentry));
David Howells1dd704b2013-04-12 01:08:50 +01001827}
1828
Eric W. Biederman6b4e3062010-03-07 16:41:34 -08001829const struct dentry_operations pid_dentry_operations =
Eric W. Biederman28a6d672006-10-02 02:17:05 -07001830{
1831 .d_revalidate = pid_revalidate,
1832 .d_delete = pid_delete_dentry,
1833};
1834
1835/* Lookups */
1836
Eric W. Biederman1c0d04c2006-10-02 02:18:57 -07001837/*
1838 * Fill a directory entry.
1839 *
1840 * If possible create the dcache entry and derive our inode number and
1841 * file type from dcache entry.
1842 *
1843 * Since all of the proc inode numbers are dynamically generated, the inode
1844 * numbers do not exist until the inode is cache. This means creating the
1845 * the dcache entry in readdir is necessary to keep the inode numbers
1846 * reported by readdir in sync with the inode numbers reported
1847 * by stat.
1848 */
Al Virof0c3b502013-05-16 12:07:31 -04001849bool proc_fill_cache(struct file *file, struct dir_context *ctx,
Alexey Dobriyana4ef3892018-06-07 17:10:10 -07001850 const char *name, unsigned int len,
Eric Dumazetc5141e62007-05-08 00:26:15 -07001851 instantiate_t instantiate, struct task_struct *task, const void *ptr)
Eric W. Biederman61a28782006-10-02 02:18:49 -07001852{
Al Virof0c3b502013-05-16 12:07:31 -04001853 struct dentry *child, *dir = file->f_path.dentry;
Al Viro1df98b82013-06-15 11:33:10 +04001854 struct qstr qname = QSTR_INIT(name, len);
Eric W. Biederman61a28782006-10-02 02:18:49 -07001855 struct inode *inode;
Al Viro0168b9e2018-05-03 09:21:05 -04001856 unsigned type = DT_UNKNOWN;
1857 ino_t ino = 1;
Eric W. Biederman61a28782006-10-02 02:18:49 -07001858
Al Viro1df98b82013-06-15 11:33:10 +04001859 child = d_hash_and_lookup(dir, &qname);
Eric W. Biederman61a28782006-10-02 02:18:49 -07001860 if (!child) {
Al Viro37817642016-04-20 16:31:31 -04001861 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
1862 child = d_alloc_parallel(dir, &qname, &wq);
1863 if (IS_ERR(child))
Al Viro1df98b82013-06-15 11:33:10 +04001864 goto end_instantiate;
Al Viro37817642016-04-20 16:31:31 -04001865 if (d_in_lookup(child)) {
Al Viro0168b9e2018-05-03 09:21:05 -04001866 struct dentry *res;
1867 res = instantiate(child, task, ptr);
Al Viro37817642016-04-20 16:31:31 -04001868 d_lookup_done(child);
Al Viro0168b9e2018-05-03 09:21:05 -04001869 if (IS_ERR(res))
Al Viro37817642016-04-20 16:31:31 -04001870 goto end_instantiate;
Al Viro0168b9e2018-05-03 09:21:05 -04001871 if (unlikely(res)) {
1872 dput(child);
1873 child = res;
Al Viro37817642016-04-20 16:31:31 -04001874 }
Eric W. Biederman61a28782006-10-02 02:18:49 -07001875 }
1876 }
David Howells2b0143b2015-03-17 22:25:59 +00001877 inode = d_inode(child);
Al Viro147ce692013-06-15 10:26:35 +04001878 ino = inode->i_ino;
1879 type = inode->i_mode >> 12;
Al Viro0168b9e2018-05-03 09:21:05 -04001880end_instantiate:
Eric W. Biederman61a28782006-10-02 02:18:49 -07001881 dput(child);
Al Virof0c3b502013-05-16 12:07:31 -04001882 return dir_emit(ctx, name, len, ino, type);
Eric W. Biederman61a28782006-10-02 02:18:49 -07001883}
1884
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001885/*
1886 * dname_to_vma_addr - maps a dentry name into two unsigned longs
1887 * which represent vma start and end addresses.
1888 */
1889static int dname_to_vma_addr(struct dentry *dentry,
1890 unsigned long *start, unsigned long *end)
1891{
Alexey Dobriyanac7f1062018-02-06 15:36:59 -08001892 const char *str = dentry->d_name.name;
1893 unsigned long long sval, eval;
1894 unsigned int len;
1895
Alexey Dobriyan35318db2018-04-10 16:41:14 -07001896 if (str[0] == '0' && str[1] != '-')
1897 return -EINVAL;
Alexey Dobriyanac7f1062018-02-06 15:36:59 -08001898 len = _parse_integer(str, 16, &sval);
1899 if (len & KSTRTOX_OVERFLOW)
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001900 return -EINVAL;
Alexey Dobriyanac7f1062018-02-06 15:36:59 -08001901 if (sval != (unsigned long)sval)
1902 return -EINVAL;
1903 str += len;
1904
1905 if (*str != '-')
1906 return -EINVAL;
1907 str++;
1908
Alexey Dobriyan35318db2018-04-10 16:41:14 -07001909 if (str[0] == '0' && str[1])
1910 return -EINVAL;
Alexey Dobriyanac7f1062018-02-06 15:36:59 -08001911 len = _parse_integer(str, 16, &eval);
1912 if (len & KSTRTOX_OVERFLOW)
1913 return -EINVAL;
1914 if (eval != (unsigned long)eval)
1915 return -EINVAL;
1916 str += len;
1917
1918 if (*str != '\0')
1919 return -EINVAL;
1920
1921 *start = sval;
1922 *end = eval;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001923
1924 return 0;
1925}
1926
Al Viro0b728e12012-06-10 16:03:43 -04001927static int map_files_d_revalidate(struct dentry *dentry, unsigned int flags)
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001928{
1929 unsigned long vm_start, vm_end;
1930 bool exact_vma_exists = false;
1931 struct mm_struct *mm = NULL;
1932 struct task_struct *task;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001933 struct inode *inode;
1934 int status = 0;
1935
Al Viro0b728e12012-06-10 16:03:43 -04001936 if (flags & LOOKUP_RCU)
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001937 return -ECHILD;
1938
David Howells2b0143b2015-03-17 22:25:59 +00001939 inode = d_inode(dentry);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001940 task = get_proc_task(inode);
1941 if (!task)
1942 goto out_notask;
1943
Jann Horncaaee622016-01-20 15:00:04 -08001944 mm = mm_access(task, PTRACE_MODE_READ_FSCREDS);
Cong Wang2344bec2012-05-31 16:26:18 -07001945 if (IS_ERR_OR_NULL(mm))
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001946 goto out;
1947
1948 if (!dname_to_vma_addr(dentry, &vm_start, &vm_end)) {
1949 down_read(&mm->mmap_sem);
1950 exact_vma_exists = !!find_exact_vma(mm, vm_start, vm_end);
1951 up_read(&mm->mmap_sem);
1952 }
1953
1954 mmput(mm);
1955
1956 if (exact_vma_exists) {
Eric W. Biederman68eb94f2017-01-03 10:23:11 +13001957 task_dump_owner(task, 0, &inode->i_uid, &inode->i_gid);
1958
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001959 security_task_to_inode(task, inode);
1960 status = 1;
1961 }
1962
1963out:
1964 put_task_struct(task);
1965
1966out_notask:
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001967 return status;
1968}
1969
1970static const struct dentry_operations tid_map_files_dentry_operations = {
1971 .d_revalidate = map_files_d_revalidate,
1972 .d_delete = pid_delete_dentry,
1973};
1974
Al Viro6b255392015-11-17 10:20:54 -05001975static int map_files_get_link(struct dentry *dentry, struct path *path)
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001976{
1977 unsigned long vm_start, vm_end;
1978 struct vm_area_struct *vma;
1979 struct task_struct *task;
1980 struct mm_struct *mm;
1981 int rc;
1982
1983 rc = -ENOENT;
David Howells2b0143b2015-03-17 22:25:59 +00001984 task = get_proc_task(d_inode(dentry));
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001985 if (!task)
1986 goto out;
1987
1988 mm = get_task_mm(task);
1989 put_task_struct(task);
1990 if (!mm)
1991 goto out;
1992
1993 rc = dname_to_vma_addr(dentry, &vm_start, &vm_end);
1994 if (rc)
1995 goto out_mmput;
1996
Artem Fetishev70335ab2014-03-10 15:49:45 -07001997 rc = -ENOENT;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08001998 down_read(&mm->mmap_sem);
1999 vma = find_exact_vma(mm, vm_start, vm_end);
2000 if (vma && vma->vm_file) {
2001 *path = vma->vm_file->f_path;
2002 path_get(path);
2003 rc = 0;
2004 }
2005 up_read(&mm->mmap_sem);
2006
2007out_mmput:
2008 mmput(mm);
2009out:
2010 return rc;
2011}
2012
2013struct map_files_info {
Alexey Dobriyan20d28cd2018-02-06 15:37:06 -08002014 unsigned long start;
2015 unsigned long end;
Al Viro7b540d02012-08-27 14:55:26 -04002016 fmode_t mode;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002017};
2018
Calvin Owensbdb4d102015-09-09 15:35:54 -07002019/*
2020 * Only allow CAP_SYS_ADMIN to follow the links, due to concerns about how the
2021 * symlinks may be used to bypass permissions on ancestor directories in the
2022 * path to the file in question.
2023 */
2024static const char *
Al Viro6b255392015-11-17 10:20:54 -05002025proc_map_files_get_link(struct dentry *dentry,
Al Virofceef392015-12-29 15:58:39 -05002026 struct inode *inode,
2027 struct delayed_call *done)
Calvin Owensbdb4d102015-09-09 15:35:54 -07002028{
2029 if (!capable(CAP_SYS_ADMIN))
2030 return ERR_PTR(-EPERM);
2031
Al Virofceef392015-12-29 15:58:39 -05002032 return proc_pid_get_link(dentry, inode, done);
Calvin Owensbdb4d102015-09-09 15:35:54 -07002033}
2034
2035/*
Al Viro6b255392015-11-17 10:20:54 -05002036 * Identical to proc_pid_link_inode_operations except for get_link()
Calvin Owensbdb4d102015-09-09 15:35:54 -07002037 */
2038static const struct inode_operations proc_map_files_link_inode_operations = {
2039 .readlink = proc_pid_readlink,
Al Viro6b255392015-11-17 10:20:54 -05002040 .get_link = proc_map_files_get_link,
Calvin Owensbdb4d102015-09-09 15:35:54 -07002041 .setattr = proc_setattr,
2042};
2043
Al Viro0168b9e2018-05-03 09:21:05 -04002044static struct dentry *
2045proc_map_files_instantiate(struct dentry *dentry,
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002046 struct task_struct *task, const void *ptr)
2047{
Al Viro7b540d02012-08-27 14:55:26 -04002048 fmode_t mode = (fmode_t)(unsigned long)ptr;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002049 struct proc_inode *ei;
2050 struct inode *inode;
2051
Al Viro0168b9e2018-05-03 09:21:05 -04002052 inode = proc_pid_make_inode(dentry->d_sb, task, S_IFLNK |
Andreas Gruenbacherdb978da2016-11-10 22:18:28 +01002053 ((mode & FMODE_READ ) ? S_IRUSR : 0) |
2054 ((mode & FMODE_WRITE) ? S_IWUSR : 0));
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002055 if (!inode)
Al Viro0168b9e2018-05-03 09:21:05 -04002056 return ERR_PTR(-ENOENT);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002057
2058 ei = PROC_I(inode);
Al Viro6b255392015-11-17 10:20:54 -05002059 ei->op.proc_get_link = map_files_get_link;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002060
Calvin Owensbdb4d102015-09-09 15:35:54 -07002061 inode->i_op = &proc_map_files_link_inode_operations;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002062 inode->i_size = 64;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002063
2064 d_set_d_op(dentry, &tid_map_files_dentry_operations);
Al Viro0168b9e2018-05-03 09:21:05 -04002065 return d_splice_alias(inode, dentry);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002066}
2067
2068static struct dentry *proc_map_files_lookup(struct inode *dir,
Al Viro00cd8dd2012-06-10 17:13:09 -04002069 struct dentry *dentry, unsigned int flags)
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002070{
2071 unsigned long vm_start, vm_end;
2072 struct vm_area_struct *vma;
2073 struct task_struct *task;
Al Viro0168b9e2018-05-03 09:21:05 -04002074 struct dentry *result;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002075 struct mm_struct *mm;
2076
Al Viro0168b9e2018-05-03 09:21:05 -04002077 result = ERR_PTR(-ENOENT);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002078 task = get_proc_task(dir);
2079 if (!task)
2080 goto out;
2081
Al Viro0168b9e2018-05-03 09:21:05 -04002082 result = ERR_PTR(-EACCES);
Jann Horncaaee622016-01-20 15:00:04 -08002083 if (!ptrace_may_access(task, PTRACE_MODE_READ_FSCREDS))
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002084 goto out_put_task;
2085
Al Viro0168b9e2018-05-03 09:21:05 -04002086 result = ERR_PTR(-ENOENT);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002087 if (dname_to_vma_addr(dentry, &vm_start, &vm_end))
Cyrill Gorcunoveb94cd92012-05-17 17:03:25 -07002088 goto out_put_task;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002089
2090 mm = get_task_mm(task);
2091 if (!mm)
Cyrill Gorcunoveb94cd92012-05-17 17:03:25 -07002092 goto out_put_task;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002093
2094 down_read(&mm->mmap_sem);
2095 vma = find_exact_vma(mm, vm_start, vm_end);
2096 if (!vma)
2097 goto out_no_vma;
2098
Stanislav Kinsbursky05f56482012-11-26 16:29:42 -08002099 if (vma->vm_file)
Al Viro0168b9e2018-05-03 09:21:05 -04002100 result = proc_map_files_instantiate(dentry, task,
Stanislav Kinsbursky05f56482012-11-26 16:29:42 -08002101 (void *)(unsigned long)vma->vm_file->f_mode);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002102
2103out_no_vma:
2104 up_read(&mm->mmap_sem);
2105 mmput(mm);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002106out_put_task:
2107 put_task_struct(task);
2108out:
Al Viro0168b9e2018-05-03 09:21:05 -04002109 return result;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002110}
2111
2112static const struct inode_operations proc_map_files_inode_operations = {
2113 .lookup = proc_map_files_lookup,
2114 .permission = proc_fd_permission,
2115 .setattr = proc_setattr,
2116};
2117
2118static int
Al Virof0c3b502013-05-16 12:07:31 -04002119proc_map_files_readdir(struct file *file, struct dir_context *ctx)
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002120{
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002121 struct vm_area_struct *vma;
2122 struct task_struct *task;
2123 struct mm_struct *mm;
Al Virof0c3b502013-05-16 12:07:31 -04002124 unsigned long nr_files, pos, i;
2125 struct flex_array *fa = NULL;
2126 struct map_files_info info;
2127 struct map_files_info *p;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002128 int ret;
2129
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002130 ret = -ENOENT;
Al Virof0c3b502013-05-16 12:07:31 -04002131 task = get_proc_task(file_inode(file));
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002132 if (!task)
2133 goto out;
2134
2135 ret = -EACCES;
Jann Horncaaee622016-01-20 15:00:04 -08002136 if (!ptrace_may_access(task, PTRACE_MODE_READ_FSCREDS))
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002137 goto out_put_task;
2138
2139 ret = 0;
Al Virof0c3b502013-05-16 12:07:31 -04002140 if (!dir_emit_dots(file, ctx))
2141 goto out_put_task;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002142
Al Virof0c3b502013-05-16 12:07:31 -04002143 mm = get_task_mm(task);
2144 if (!mm)
2145 goto out_put_task;
2146 down_read(&mm->mmap_sem);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002147
Al Virof0c3b502013-05-16 12:07:31 -04002148 nr_files = 0;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002149
Al Virof0c3b502013-05-16 12:07:31 -04002150 /*
2151 * We need two passes here:
2152 *
2153 * 1) Collect vmas of mapped files with mmap_sem taken
2154 * 2) Release mmap_sem and instantiate entries
2155 *
2156 * otherwise we get lockdep complained, since filldir()
2157 * routine might require mmap_sem taken in might_fault().
2158 */
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002159
Al Virof0c3b502013-05-16 12:07:31 -04002160 for (vma = mm->mmap, pos = 2; vma; vma = vma->vm_next) {
2161 if (vma->vm_file && ++pos > ctx->pos)
2162 nr_files++;
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002163 }
Al Virof0c3b502013-05-16 12:07:31 -04002164
2165 if (nr_files) {
2166 fa = flex_array_alloc(sizeof(info), nr_files,
2167 GFP_KERNEL);
2168 if (!fa || flex_array_prealloc(fa, 0, nr_files,
2169 GFP_KERNEL)) {
2170 ret = -ENOMEM;
2171 if (fa)
2172 flex_array_free(fa);
2173 up_read(&mm->mmap_sem);
2174 mmput(mm);
2175 goto out_put_task;
2176 }
2177 for (i = 0, vma = mm->mmap, pos = 2; vma;
2178 vma = vma->vm_next) {
2179 if (!vma->vm_file)
2180 continue;
2181 if (++pos <= ctx->pos)
2182 continue;
2183
Alexey Dobriyan20d28cd2018-02-06 15:37:06 -08002184 info.start = vma->vm_start;
2185 info.end = vma->vm_end;
Al Virof0c3b502013-05-16 12:07:31 -04002186 info.mode = vma->vm_file->f_mode;
Al Virof0c3b502013-05-16 12:07:31 -04002187 if (flex_array_put(fa, i++, &info, GFP_KERNEL))
2188 BUG();
2189 }
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002190 }
Al Virof0c3b502013-05-16 12:07:31 -04002191 up_read(&mm->mmap_sem);
Alexey Dobriyanfe079a52018-04-10 16:32:05 -07002192 mmput(mm);
Al Virof0c3b502013-05-16 12:07:31 -04002193
2194 for (i = 0; i < nr_files; i++) {
Alexey Dobriyan20d28cd2018-02-06 15:37:06 -08002195 char buf[4 * sizeof(long) + 2]; /* max: %lx-%lx\0 */
2196 unsigned int len;
2197
Al Virof0c3b502013-05-16 12:07:31 -04002198 p = flex_array_get(fa, i);
Alexey Dobriyan20d28cd2018-02-06 15:37:06 -08002199 len = snprintf(buf, sizeof(buf), "%lx-%lx", p->start, p->end);
Al Virof0c3b502013-05-16 12:07:31 -04002200 if (!proc_fill_cache(file, ctx,
Alexey Dobriyan20d28cd2018-02-06 15:37:06 -08002201 buf, len,
Al Virof0c3b502013-05-16 12:07:31 -04002202 proc_map_files_instantiate,
2203 task,
2204 (void *)(unsigned long)p->mode))
2205 break;
2206 ctx->pos++;
2207 }
2208 if (fa)
2209 flex_array_free(fa);
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002210
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002211out_put_task:
2212 put_task_struct(task);
2213out:
2214 return ret;
2215}
2216
2217static const struct file_operations proc_map_files_operations = {
2218 .read = generic_read_dir,
Al Virof50752e2016-04-20 17:13:54 -04002219 .iterate_shared = proc_map_files_readdir,
2220 .llseek = generic_file_llseek,
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002221};
2222
Nicolas Pitreb18b6a92017-01-21 00:09:08 -05002223#if defined(CONFIG_CHECKPOINT_RESTORE) && defined(CONFIG_POSIX_TIMERS)
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04002224struct timers_private {
2225 struct pid *pid;
2226 struct task_struct *task;
2227 struct sighand_struct *sighand;
Pavel Emelyanov57b80152013-03-11 13:13:08 +04002228 struct pid_namespace *ns;
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04002229 unsigned long flags;
2230};
2231
2232static void *timers_start(struct seq_file *m, loff_t *pos)
2233{
2234 struct timers_private *tp = m->private;
2235
2236 tp->task = get_pid_task(tp->pid, PIDTYPE_PID);
2237 if (!tp->task)
2238 return ERR_PTR(-ESRCH);
2239
2240 tp->sighand = lock_task_sighand(tp->task, &tp->flags);
2241 if (!tp->sighand)
2242 return ERR_PTR(-ESRCH);
2243
2244 return seq_list_start(&tp->task->signal->posix_timers, *pos);
2245}
2246
2247static void *timers_next(struct seq_file *m, void *v, loff_t *pos)
2248{
2249 struct timers_private *tp = m->private;
2250 return seq_list_next(v, &tp->task->signal->posix_timers, pos);
2251}
2252
2253static void timers_stop(struct seq_file *m, void *v)
2254{
2255 struct timers_private *tp = m->private;
2256
2257 if (tp->sighand) {
2258 unlock_task_sighand(tp->task, &tp->flags);
2259 tp->sighand = NULL;
2260 }
2261
2262 if (tp->task) {
2263 put_task_struct(tp->task);
2264 tp->task = NULL;
2265 }
2266}
2267
2268static int show_timer(struct seq_file *m, void *v)
2269{
2270 struct k_itimer *timer;
Pavel Emelyanov57b80152013-03-11 13:13:08 +04002271 struct timers_private *tp = m->private;
2272 int notify;
Alexey Dobriyancedbcca2014-08-08 14:21:33 -07002273 static const char * const nstr[] = {
Pavel Emelyanov57b80152013-03-11 13:13:08 +04002274 [SIGEV_SIGNAL] = "signal",
2275 [SIGEV_NONE] = "none",
2276 [SIGEV_THREAD] = "thread",
2277 };
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04002278
2279 timer = list_entry((struct list_head *)v, struct k_itimer, list);
Pavel Emelyanov57b80152013-03-11 13:13:08 +04002280 notify = timer->it_sigev_notify;
2281
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04002282 seq_printf(m, "ID: %d\n", timer->it_id);
Linus Torvaldsba3edf1f2017-12-06 18:23:27 -08002283 seq_printf(m, "signal: %d/%px\n",
Joe Perches25ce3192015-04-15 16:18:17 -07002284 timer->sigq->info.si_signo,
2285 timer->sigq->info.si_value.sival_ptr);
Pavel Emelyanov57b80152013-03-11 13:13:08 +04002286 seq_printf(m, "notify: %s/%s.%d\n",
Joe Perches25ce3192015-04-15 16:18:17 -07002287 nstr[notify & ~SIGEV_THREAD_ID],
2288 (notify & SIGEV_THREAD_ID) ? "tid" : "pid",
2289 pid_nr_ns(timer->it_pid, tp->ns));
Pavel Tikhomirov15ef0292013-05-17 02:12:03 +04002290 seq_printf(m, "ClockID: %d\n", timer->it_clock);
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04002291
2292 return 0;
2293}
2294
2295static const struct seq_operations proc_timers_seq_ops = {
2296 .start = timers_start,
2297 .next = timers_next,
2298 .stop = timers_stop,
2299 .show = show_timer,
2300};
2301
2302static int proc_timers_open(struct inode *inode, struct file *file)
2303{
2304 struct timers_private *tp;
2305
2306 tp = __seq_open_private(file, &proc_timers_seq_ops,
2307 sizeof(struct timers_private));
2308 if (!tp)
2309 return -ENOMEM;
2310
2311 tp->pid = proc_pid(inode);
Christoph Hellwig76f668b2018-05-16 07:19:01 +02002312 tp->ns = proc_pid_ns(inode);
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04002313 return 0;
2314}
2315
2316static const struct file_operations proc_timers_operations = {
2317 .open = proc_timers_open,
2318 .read = seq_read,
2319 .llseek = seq_lseek,
2320 .release = seq_release_private,
2321};
Eric Engestromb5946be2016-03-17 14:20:57 -07002322#endif
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002323
John Stultz5de23d42016-03-17 14:20:54 -07002324static ssize_t timerslack_ns_write(struct file *file, const char __user *buf,
2325 size_t count, loff_t *offset)
2326{
2327 struct inode *inode = file_inode(file);
2328 struct task_struct *p;
2329 u64 slack_ns;
2330 int err;
2331
2332 err = kstrtoull_from_user(buf, count, 10, &slack_ns);
2333 if (err < 0)
2334 return err;
2335
2336 p = get_proc_task(inode);
2337 if (!p)
2338 return -ESRCH;
2339
John Stultz4b2bd5f2016-10-07 17:02:33 -07002340 if (p != current) {
2341 if (!capable(CAP_SYS_NICE)) {
2342 count = -EPERM;
2343 goto out;
2344 }
John Stultz5de23d42016-03-17 14:20:54 -07002345
John Stultz4b2bd5f2016-10-07 17:02:33 -07002346 err = security_task_setscheduler(p);
2347 if (err) {
2348 count = err;
2349 goto out;
2350 }
John Stultz904763e2016-10-07 17:02:29 -07002351 }
2352
John Stultz7abbaf92016-10-07 17:02:26 -07002353 task_lock(p);
2354 if (slack_ns == 0)
2355 p->timer_slack_ns = p->default_timer_slack_ns;
2356 else
2357 p->timer_slack_ns = slack_ns;
2358 task_unlock(p);
2359
2360out:
John Stultz5de23d42016-03-17 14:20:54 -07002361 put_task_struct(p);
2362
2363 return count;
2364}
2365
2366static int timerslack_ns_show(struct seq_file *m, void *v)
2367{
2368 struct inode *inode = m->private;
2369 struct task_struct *p;
John Stultz7abbaf92016-10-07 17:02:26 -07002370 int err = 0;
John Stultz5de23d42016-03-17 14:20:54 -07002371
2372 p = get_proc_task(inode);
2373 if (!p)
2374 return -ESRCH;
2375
John Stultz4b2bd5f2016-10-07 17:02:33 -07002376 if (p != current) {
John Stultz5de23d42016-03-17 14:20:54 -07002377
John Stultz4b2bd5f2016-10-07 17:02:33 -07002378 if (!capable(CAP_SYS_NICE)) {
2379 err = -EPERM;
2380 goto out;
2381 }
2382 err = security_task_getscheduler(p);
2383 if (err)
2384 goto out;
2385 }
John Stultz904763e2016-10-07 17:02:29 -07002386
John Stultz7abbaf92016-10-07 17:02:26 -07002387 task_lock(p);
2388 seq_printf(m, "%llu\n", p->timer_slack_ns);
2389 task_unlock(p);
2390
2391out:
John Stultz5de23d42016-03-17 14:20:54 -07002392 put_task_struct(p);
2393
2394 return err;
2395}
2396
2397static int timerslack_ns_open(struct inode *inode, struct file *filp)
2398{
2399 return single_open(filp, timerslack_ns_show, inode);
2400}
2401
2402static const struct file_operations proc_pid_set_timerslack_ns_operations = {
2403 .open = timerslack_ns_open,
2404 .read = seq_read,
2405 .write = timerslack_ns_write,
2406 .llseek = seq_lseek,
2407 .release = single_release,
2408};
2409
Al Viro0168b9e2018-05-03 09:21:05 -04002410static struct dentry *proc_pident_instantiate(struct dentry *dentry,
2411 struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002412{
Eric Dumazetc5141e62007-05-08 00:26:15 -07002413 const struct pid_entry *p = ptr;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002414 struct inode *inode;
2415 struct proc_inode *ei;
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002416
Al Viro0168b9e2018-05-03 09:21:05 -04002417 inode = proc_pid_make_inode(dentry->d_sb, task, p->mode);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002418 if (!inode)
Al Viro0168b9e2018-05-03 09:21:05 -04002419 return ERR_PTR(-ENOENT);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002420
2421 ei = PROC_I(inode);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002422 if (S_ISDIR(inode->i_mode))
Miklos Szeredibfe86842011-10-28 14:13:29 +02002423 set_nlink(inode, 2); /* Use getattr to fix if necessary */
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002424 if (p->iop)
2425 inode->i_op = p->iop;
2426 if (p->fop)
2427 inode->i_fop = p->fop;
2428 ei->op = p->op;
Al Viro1bbc5512018-05-02 21:26:16 -04002429 pid_update_inode(task, inode);
Nick Pigginfb045ad2011-01-07 17:49:55 +11002430 d_set_d_op(dentry, &pid_dentry_operations);
Al Viro0168b9e2018-05-03 09:21:05 -04002431 return d_splice_alias(inode, dentry);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07002432}
2433
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434static struct dentry *proc_pident_lookup(struct inode *dir,
2435 struct dentry *dentry,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002436 const struct pid_entry *ents,
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002437 unsigned int nents)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438{
Eric W. Biederman99f89552006-06-26 00:25:55 -07002439 struct task_struct *task = get_proc_task(dir);
Eric Dumazetc5141e62007-05-08 00:26:15 -07002440 const struct pid_entry *p, *last;
Al Viro0168b9e2018-05-03 09:21:05 -04002441 struct dentry *res = ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442
Eric W. Biederman99f89552006-06-26 00:25:55 -07002443 if (!task)
2444 goto out_no_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445
Eric W. Biederman20cdc892006-10-02 02:17:07 -07002446 /*
2447 * Yes, it does not scale. And it should not. Don't add
2448 * new entries into /proc/<tgid>/ without very good reasons.
2449 */
Alexey Dobriyanbac5f5d2016-12-12 16:45:28 -08002450 last = &ents[nents];
2451 for (p = ents; p < last; p++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 if (p->len != dentry->d_name.len)
2453 continue;
2454 if (!memcmp(dentry->d_name.name, p->name, p->len))
2455 break;
2456 }
Alexey Dobriyanbac5f5d2016-12-12 16:45:28 -08002457 if (p >= last)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 goto out;
2459
Al Viro0168b9e2018-05-03 09:21:05 -04002460 res = proc_pident_instantiate(dentry, task, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461out:
Eric W. Biederman99f89552006-06-26 00:25:55 -07002462 put_task_struct(task);
2463out_no_task:
Al Viro0168b9e2018-05-03 09:21:05 -04002464 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465}
2466
Al Virof0c3b502013-05-16 12:07:31 -04002467static int proc_pident_readdir(struct file *file, struct dir_context *ctx,
Eric Dumazetc5141e62007-05-08 00:26:15 -07002468 const struct pid_entry *ents, unsigned int nents)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002469{
Al Virof0c3b502013-05-16 12:07:31 -04002470 struct task_struct *task = get_proc_task(file_inode(file));
2471 const struct pid_entry *p;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002472
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002473 if (!task)
Al Virof0c3b502013-05-16 12:07:31 -04002474 return -ENOENT;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002475
Al Virof0c3b502013-05-16 12:07:31 -04002476 if (!dir_emit_dots(file, ctx))
2477 goto out;
2478
2479 if (ctx->pos >= nents + 2)
2480 goto out;
2481
Alexey Dobriyanbac5f5d2016-12-12 16:45:28 -08002482 for (p = ents + (ctx->pos - 2); p < ents + nents; p++) {
Al Virof0c3b502013-05-16 12:07:31 -04002483 if (!proc_fill_cache(file, ctx, p->name, p->len,
2484 proc_pident_instantiate, task, p))
2485 break;
2486 ctx->pos++;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002487 }
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002488out:
Eric W. Biederman61a28782006-10-02 02:18:49 -07002489 put_task_struct(task);
Al Virof0c3b502013-05-16 12:07:31 -04002490 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491}
2492
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493#ifdef CONFIG_SECURITY
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002494static ssize_t proc_pid_attr_read(struct file * file, char __user * buf,
2495 size_t count, loff_t *ppos)
2496{
Al Viro496ad9a2013-01-23 17:07:38 -05002497 struct inode * inode = file_inode(file);
Al Viro04ff9702007-03-12 16:17:58 +00002498 char *p = NULL;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002499 ssize_t length;
2500 struct task_struct *task = get_proc_task(inode);
2501
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002502 if (!task)
Al Viro04ff9702007-03-12 16:17:58 +00002503 return -ESRCH;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002504
2505 length = security_getprocattr(task,
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -08002506 (char*)file->f_path.dentry->d_name.name,
Al Viro04ff9702007-03-12 16:17:58 +00002507 &p);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002508 put_task_struct(task);
Al Viro04ff9702007-03-12 16:17:58 +00002509 if (length > 0)
2510 length = simple_read_from_buffer(buf, count, ppos, p, length);
2511 kfree(p);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002512 return length;
2513}
2514
2515static ssize_t proc_pid_attr_write(struct file * file, const 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 Virobb646cd2015-12-24 00:16:30 -05002519 void *page;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002520 ssize_t length;
2521 struct task_struct *task = get_proc_task(inode);
2522
2523 length = -ESRCH;
2524 if (!task)
2525 goto out_no_task;
Stephen Smalleyb21507e2017-01-09 10:07:31 -05002526
2527 /* A task may only write its own attributes. */
2528 length = -EACCES;
2529 if (current != task)
2530 goto out;
2531
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002532 if (count > PAGE_SIZE)
2533 count = PAGE_SIZE;
2534
2535 /* No partial writes. */
2536 length = -EINVAL;
2537 if (*ppos != 0)
2538 goto out;
2539
Al Virobb646cd2015-12-24 00:16:30 -05002540 page = memdup_user(buf, count);
2541 if (IS_ERR(page)) {
2542 length = PTR_ERR(page);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002543 goto out;
Al Virobb646cd2015-12-24 00:16:30 -05002544 }
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002545
David Howells107db7c2009-05-08 13:55:27 +01002546 /* Guard against adverse ptrace interaction */
Stephen Smalleyb21507e2017-01-09 10:07:31 -05002547 length = mutex_lock_interruptible(&current->signal->cred_guard_mutex);
David Howells107db7c2009-05-08 13:55:27 +01002548 if (length < 0)
2549 goto out_free;
2550
Stephen Smalleyb21507e2017-01-09 10:07:31 -05002551 length = security_setprocattr(file->f_path.dentry->d_name.name,
Al Virobb646cd2015-12-24 00:16:30 -05002552 page, count);
Stephen Smalleyb21507e2017-01-09 10:07:31 -05002553 mutex_unlock(&current->signal->cred_guard_mutex);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002554out_free:
Al Virobb646cd2015-12-24 00:16:30 -05002555 kfree(page);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002556out:
2557 put_task_struct(task);
2558out_no_task:
2559 return length;
2560}
2561
Arjan van de Ven00977a52007-02-12 00:55:34 -08002562static const struct file_operations proc_pid_attr_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002563 .read = proc_pid_attr_read,
2564 .write = proc_pid_attr_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01002565 .llseek = generic_file_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002566};
2567
Eric Dumazetc5141e62007-05-08 00:26:15 -07002568static const struct pid_entry attr_dir_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002569 REG("current", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2570 REG("prev", S_IRUGO, proc_pid_attr_operations),
2571 REG("exec", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2572 REG("fscreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2573 REG("keycreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
2574 REG("sockcreate", S_IRUGO|S_IWUGO, proc_pid_attr_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002575};
2576
Al Virof0c3b502013-05-16 12:07:31 -04002577static int proc_attr_dir_readdir(struct file *file, struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578{
Al Virof0c3b502013-05-16 12:07:31 -04002579 return proc_pident_readdir(file, ctx,
2580 attr_dir_stuff, ARRAY_SIZE(attr_dir_stuff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581}
2582
Arjan van de Ven00977a52007-02-12 00:55:34 -08002583static const struct file_operations proc_attr_dir_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 .read = generic_read_dir,
Al Virof50752e2016-04-20 17:13:54 -04002585 .iterate_shared = proc_attr_dir_readdir,
2586 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587};
2588
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002589static struct dentry *proc_attr_dir_lookup(struct inode *dir,
Al Viro00cd8dd2012-06-10 17:13:09 -04002590 struct dentry *dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591{
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07002592 return proc_pident_lookup(dir, dentry,
2593 attr_dir_stuff, ARRAY_SIZE(attr_dir_stuff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594}
2595
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002596static const struct inode_operations proc_attr_dir_inode_operations = {
Eric W. Biederman72d9dcf2006-10-02 02:18:50 -07002597 .lookup = proc_attr_dir_lookup,
Eric W. Biederman99f89552006-06-26 00:25:55 -07002598 .getattr = pid_getattr,
Linus Torvalds6d76fa52006-07-15 12:26:45 -07002599 .setattr = proc_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600};
2601
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602#endif
2603
Christoph Hellwig698ba7b2009-12-15 16:47:37 -08002604#ifdef CONFIG_ELF_CORE
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002605static ssize_t proc_coredump_filter_read(struct file *file, char __user *buf,
2606 size_t count, loff_t *ppos)
2607{
Al Viro496ad9a2013-01-23 17:07:38 -05002608 struct task_struct *task = get_proc_task(file_inode(file));
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002609 struct mm_struct *mm;
2610 char buffer[PROC_NUMBUF];
2611 size_t len;
2612 int ret;
2613
2614 if (!task)
2615 return -ESRCH;
2616
2617 ret = 0;
2618 mm = get_task_mm(task);
2619 if (mm) {
2620 len = snprintf(buffer, sizeof(buffer), "%08lx\n",
2621 ((mm->flags & MMF_DUMP_FILTER_MASK) >>
2622 MMF_DUMP_FILTER_SHIFT));
2623 mmput(mm);
2624 ret = simple_read_from_buffer(buf, count, ppos, buffer, len);
2625 }
2626
2627 put_task_struct(task);
2628
2629 return ret;
2630}
2631
2632static ssize_t proc_coredump_filter_write(struct file *file,
2633 const char __user *buf,
2634 size_t count,
2635 loff_t *ppos)
2636{
2637 struct task_struct *task;
2638 struct mm_struct *mm;
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002639 unsigned int val;
2640 int ret;
2641 int i;
2642 unsigned long mask;
2643
Alexey Dobriyan774636e2015-09-09 15:36:59 -07002644 ret = kstrtouint_from_user(buf, count, 0, &val);
2645 if (ret < 0)
2646 return ret;
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002647
2648 ret = -ESRCH;
Al Viro496ad9a2013-01-23 17:07:38 -05002649 task = get_proc_task(file_inode(file));
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002650 if (!task)
2651 goto out_no_task;
2652
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002653 mm = get_task_mm(task);
2654 if (!mm)
2655 goto out_no_mm;
Colin Ian King41a0c2492015-12-18 14:22:01 -08002656 ret = 0;
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002657
2658 for (i = 0, mask = 1; i < MMF_DUMP_FILTER_BITS; i++, mask <<= 1) {
2659 if (val & mask)
2660 set_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags);
2661 else
2662 clear_bit(i + MMF_DUMP_FILTER_SHIFT, &mm->flags);
2663 }
2664
2665 mmput(mm);
2666 out_no_mm:
2667 put_task_struct(task);
2668 out_no_task:
Alexey Dobriyan774636e2015-09-09 15:36:59 -07002669 if (ret < 0)
2670 return ret;
2671 return count;
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002672}
2673
2674static const struct file_operations proc_coredump_filter_operations = {
2675 .read = proc_coredump_filter_read,
2676 .write = proc_coredump_filter_write,
Arnd Bergmann87df8422010-03-17 23:06:02 +01002677 .llseek = generic_file_llseek,
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002678};
2679#endif
2680
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002681#ifdef CONFIG_TASK_IO_ACCOUNTING
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07002682static int do_io_accounting(struct task_struct *task, struct seq_file *m, int whole)
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002683{
Andrea Righi940389b2008-07-28 00:48:12 +02002684 struct task_io_accounting acct = task->ioac;
Andrea Righi59954772008-07-27 17:29:15 +02002685 unsigned long flags;
Vasiliy Kulikov293eb1e2011-07-26 16:08:38 -07002686 int result;
Andrea Righi297c5d92008-07-25 01:48:49 -07002687
Vasiliy Kulikov293eb1e2011-07-26 16:08:38 -07002688 result = mutex_lock_killable(&task->signal->cred_guard_mutex);
2689 if (result)
2690 return result;
2691
Jann Horncaaee622016-01-20 15:00:04 -08002692 if (!ptrace_may_access(task, PTRACE_MODE_READ_FSCREDS)) {
Vasiliy Kulikov293eb1e2011-07-26 16:08:38 -07002693 result = -EACCES;
2694 goto out_unlock;
2695 }
Vasiliy Kulikov1d1221f2011-06-24 16:08:38 +04002696
Andrea Righi59954772008-07-27 17:29:15 +02002697 if (whole && lock_task_sighand(task, &flags)) {
2698 struct task_struct *t = task;
Andrea Righib2d002d2008-07-26 15:22:27 -07002699
Andrea Righi59954772008-07-27 17:29:15 +02002700 task_io_accounting_add(&acct, &task->signal->ioac);
2701 while_each_thread(task, t)
2702 task_io_accounting_add(&acct, &t->ioac);
Andrea Righi297c5d92008-07-25 01:48:49 -07002703
Andrea Righi59954772008-07-27 17:29:15 +02002704 unlock_task_sighand(task, &flags);
Andrea Righi297c5d92008-07-25 01:48:49 -07002705 }
Joe Perches25ce3192015-04-15 16:18:17 -07002706 seq_printf(m,
2707 "rchar: %llu\n"
2708 "wchar: %llu\n"
2709 "syscr: %llu\n"
2710 "syscw: %llu\n"
2711 "read_bytes: %llu\n"
2712 "write_bytes: %llu\n"
2713 "cancelled_write_bytes: %llu\n",
2714 (unsigned long long)acct.rchar,
2715 (unsigned long long)acct.wchar,
2716 (unsigned long long)acct.syscr,
2717 (unsigned long long)acct.syscw,
2718 (unsigned long long)acct.read_bytes,
2719 (unsigned long long)acct.write_bytes,
2720 (unsigned long long)acct.cancelled_write_bytes);
2721 result = 0;
2722
Vasiliy Kulikov293eb1e2011-07-26 16:08:38 -07002723out_unlock:
2724 mutex_unlock(&task->signal->cred_guard_mutex);
2725 return result;
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002726}
Andrea Righi297c5d92008-07-25 01:48:49 -07002727
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07002728static int proc_tid_io_accounting(struct seq_file *m, struct pid_namespace *ns,
2729 struct pid *pid, struct task_struct *task)
Andrea Righi297c5d92008-07-25 01:48:49 -07002730{
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07002731 return do_io_accounting(task, m, 0);
Andrea Righi297c5d92008-07-25 01:48:49 -07002732}
2733
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07002734static int proc_tgid_io_accounting(struct seq_file *m, struct pid_namespace *ns,
2735 struct pid *pid, struct task_struct *task)
Andrea Righi297c5d92008-07-25 01:48:49 -07002736{
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07002737 return do_io_accounting(task, m, 1);
Andrea Righi297c5d92008-07-25 01:48:49 -07002738}
2739#endif /* CONFIG_TASK_IO_ACCOUNTING */
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002740
Eric W. Biederman22d917d2011-11-17 00:11:58 -08002741#ifdef CONFIG_USER_NS
2742static int proc_id_map_open(struct inode *inode, struct file *file,
Fabian Frederickccf94f12014-08-08 14:21:22 -07002743 const struct seq_operations *seq_ops)
Eric W. Biederman22d917d2011-11-17 00:11:58 -08002744{
2745 struct user_namespace *ns = NULL;
2746 struct task_struct *task;
2747 struct seq_file *seq;
2748 int ret = -EINVAL;
2749
2750 task = get_proc_task(inode);
2751 if (task) {
2752 rcu_read_lock();
2753 ns = get_user_ns(task_cred_xxx(task, user_ns));
2754 rcu_read_unlock();
2755 put_task_struct(task);
2756 }
2757 if (!ns)
2758 goto err;
2759
2760 ret = seq_open(file, seq_ops);
2761 if (ret)
2762 goto err_put_ns;
2763
2764 seq = file->private_data;
2765 seq->private = ns;
2766
2767 return 0;
2768err_put_ns:
2769 put_user_ns(ns);
2770err:
2771 return ret;
2772}
2773
2774static int proc_id_map_release(struct inode *inode, struct file *file)
2775{
2776 struct seq_file *seq = file->private_data;
2777 struct user_namespace *ns = seq->private;
2778 put_user_ns(ns);
2779 return seq_release(inode, file);
2780}
2781
2782static int proc_uid_map_open(struct inode *inode, struct file *file)
2783{
2784 return proc_id_map_open(inode, file, &proc_uid_seq_operations);
2785}
2786
2787static int proc_gid_map_open(struct inode *inode, struct file *file)
2788{
2789 return proc_id_map_open(inode, file, &proc_gid_seq_operations);
2790}
2791
Eric W. Biedermanf76d2072012-08-30 01:24:05 -07002792static int proc_projid_map_open(struct inode *inode, struct file *file)
2793{
2794 return proc_id_map_open(inode, file, &proc_projid_seq_operations);
2795}
2796
Eric W. Biederman22d917d2011-11-17 00:11:58 -08002797static const struct file_operations proc_uid_map_operations = {
2798 .open = proc_uid_map_open,
2799 .write = proc_uid_map_write,
2800 .read = seq_read,
2801 .llseek = seq_lseek,
2802 .release = proc_id_map_release,
2803};
2804
2805static const struct file_operations proc_gid_map_operations = {
2806 .open = proc_gid_map_open,
2807 .write = proc_gid_map_write,
2808 .read = seq_read,
2809 .llseek = seq_lseek,
2810 .release = proc_id_map_release,
2811};
Eric W. Biedermanf76d2072012-08-30 01:24:05 -07002812
2813static const struct file_operations proc_projid_map_operations = {
2814 .open = proc_projid_map_open,
2815 .write = proc_projid_map_write,
2816 .read = seq_read,
2817 .llseek = seq_lseek,
2818 .release = proc_id_map_release,
2819};
Eric W. Biederman9cc46512014-12-02 12:27:26 -06002820
2821static int proc_setgroups_open(struct inode *inode, struct file *file)
2822{
2823 struct user_namespace *ns = NULL;
2824 struct task_struct *task;
2825 int ret;
2826
2827 ret = -ESRCH;
2828 task = get_proc_task(inode);
2829 if (task) {
2830 rcu_read_lock();
2831 ns = get_user_ns(task_cred_xxx(task, user_ns));
2832 rcu_read_unlock();
2833 put_task_struct(task);
2834 }
2835 if (!ns)
2836 goto err;
2837
2838 if (file->f_mode & FMODE_WRITE) {
2839 ret = -EACCES;
2840 if (!ns_capable(ns, CAP_SYS_ADMIN))
2841 goto err_put_ns;
2842 }
2843
2844 ret = single_open(file, &proc_setgroups_show, ns);
2845 if (ret)
2846 goto err_put_ns;
2847
2848 return 0;
2849err_put_ns:
2850 put_user_ns(ns);
2851err:
2852 return ret;
2853}
2854
2855static int proc_setgroups_release(struct inode *inode, struct file *file)
2856{
2857 struct seq_file *seq = file->private_data;
2858 struct user_namespace *ns = seq->private;
2859 int ret = single_release(inode, file);
2860 put_user_ns(ns);
2861 return ret;
2862}
2863
2864static const struct file_operations proc_setgroups_operations = {
2865 .open = proc_setgroups_open,
2866 .write = proc_setgroups_write,
2867 .read = seq_read,
2868 .llseek = seq_lseek,
2869 .release = proc_setgroups_release,
2870};
Eric W. Biederman22d917d2011-11-17 00:11:58 -08002871#endif /* CONFIG_USER_NS */
2872
Kees Cook47830722008-10-06 03:11:58 +04002873static int proc_pid_personality(struct seq_file *m, struct pid_namespace *ns,
2874 struct pid *pid, struct task_struct *task)
2875{
Al Viroa9712bc2011-03-23 15:52:50 -04002876 int err = lock_trace(task);
2877 if (!err) {
2878 seq_printf(m, "%08x\n", task->personality);
2879 unlock_trace(task);
2880 }
2881 return err;
Kees Cook47830722008-10-06 03:11:58 +04002882}
2883
Josh Poimboeuf7c23b332017-02-13 19:42:41 -06002884#ifdef CONFIG_LIVEPATCH
2885static int proc_pid_patch_state(struct seq_file *m, struct pid_namespace *ns,
2886 struct pid *pid, struct task_struct *task)
2887{
2888 seq_printf(m, "%d\n", task->patch_state);
2889 return 0;
2890}
2891#endif /* CONFIG_LIVEPATCH */
2892
Eric W. Biederman801199c2006-10-02 02:18:48 -07002893/*
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002894 * Thread groups
2895 */
Arjan van de Ven00977a52007-02-12 00:55:34 -08002896static const struct file_operations proc_task_operations;
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08002897static const struct inode_operations proc_task_inode_operations;
Eric W. Biederman20cdc892006-10-02 02:17:07 -07002898
Eric Dumazetc5141e62007-05-08 00:26:15 -07002899static const struct pid_entry tgid_base_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002900 DIR("task", S_IRUGO|S_IXUGO, proc_task_inode_operations, proc_task_operations),
2901 DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations),
Pavel Emelyanov640708a2012-01-10 15:11:23 -08002902 DIR("map_files", S_IRUSR|S_IXUSR, proc_map_files_inode_operations, proc_map_files_operations),
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002903 DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations),
Eric W. Biederman6b4e3062010-03-07 16:41:34 -08002904 DIR("ns", S_IRUSR|S_IXUGO, proc_ns_dir_inode_operations, proc_ns_dir_operations),
Andrew Mortonb2211a32008-03-11 18:03:35 -07002905#ifdef CONFIG_NET
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002906 DIR("net", S_IRUGO|S_IXUGO, proc_net_inode_operations, proc_net_operations),
Andrew Mortonb2211a32008-03-11 18:03:35 -07002907#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002908 REG("environ", S_IRUSR, proc_environ_operations),
Al Viroc5317162016-10-05 18:43:43 -04002909 REG("auxv", S_IRUSR, proc_auxv_operations),
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002910 ONE("status", S_IRUGO, proc_pid_status),
Djalal Harouni35a35042014-04-07 15:38:36 -07002911 ONE("personality", S_IRUSR, proc_pid_personality),
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -07002912 ONE("limits", S_IRUGO, proc_pid_limits),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002913#ifdef CONFIG_SCHED_DEBUG
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002914 REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02002915#endif
Mike Galbraith5091faa2010-11-30 14:18:03 +01002916#ifdef CONFIG_SCHED_AUTOGROUP
2917 REG("autogroup", S_IRUGO|S_IWUSR, proc_pid_sched_autogroup_operations),
2918#endif
john stultz4614a696b2009-12-14 18:00:05 -08002919 REG("comm", S_IRUGO|S_IWUSR, proc_pid_set_comm_operations),
Roland McGrathebcb6732008-07-25 19:46:00 -07002920#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
Alexey Dobriyan09d93bd2014-08-08 14:21:39 -07002921 ONE("syscall", S_IRUSR, proc_pid_syscall),
Roland McGrathebcb6732008-07-25 19:46:00 -07002922#endif
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -07002923 REG("cmdline", S_IRUGO, proc_pid_cmdline_ops),
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002924 ONE("stat", S_IRUGO, proc_tgid_stat),
2925 ONE("statm", S_IRUGO, proc_pid_statm),
Siddhesh Poyarekarb7643752012-03-21 16:34:04 -07002926 REG("maps", S_IRUGO, proc_pid_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002927#ifdef CONFIG_NUMA
Siddhesh Poyarekarb7643752012-03-21 16:34:04 -07002928 REG("numa_maps", S_IRUGO, proc_pid_numa_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002929#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002930 REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations),
2931 LNK("cwd", proc_cwd_link),
2932 LNK("root", proc_root_link),
2933 LNK("exe", proc_exe_link),
2934 REG("mounts", S_IRUGO, proc_mounts_operations),
2935 REG("mountinfo", S_IRUGO, proc_mountinfo_operations),
2936 REG("mountstats", S_IRUSR, proc_mountstats_operations),
Matt Mackall1e883282008-02-04 22:29:07 -08002937#ifdef CONFIG_PROC_PAGE_MONITOR
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002938 REG("clear_refs", S_IWUSR, proc_clear_refs_operations),
Siddhesh Poyarekarb7643752012-03-21 16:34:04 -07002939 REG("smaps", S_IRUGO, proc_pid_smaps_operations),
Daniel Colascione493b0e92017-09-06 16:25:08 -07002940 REG("smaps_rollup", S_IRUGO, proc_pid_smaps_rollup_operations),
Djalal Harouni32ed74a2014-04-07 15:38:38 -07002941 REG("pagemap", S_IRUSR, proc_pagemap_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002942#endif
2943#ifdef CONFIG_SECURITY
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002944 DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002945#endif
2946#ifdef CONFIG_KALLSYMS
Alexey Dobriyanedfcd602014-08-08 14:21:44 -07002947 ONE("wchan", S_IRUGO, proc_pid_wchan),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002948#endif
Ken Chen2ec220e2008-11-10 11:26:08 +03002949#ifdef CONFIG_STACKTRACE
Djalal Harouni35a35042014-04-07 15:38:36 -07002950 ONE("stack", S_IRUSR, proc_pid_stack),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002951#endif
Naveen N. Rao5968cec2015-06-30 14:36:03 +05302952#ifdef CONFIG_SCHED_INFO
Alexey Dobriyanf6e826c2014-08-08 14:21:46 -07002953 ONE("schedstat", S_IRUGO, proc_pid_schedstat),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002954#endif
Arjan van de Ven97455122008-01-25 21:08:34 +01002955#ifdef CONFIG_LATENCYTOP
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002956 REG("latency", S_IRUGO, proc_lstats_operations),
Arjan van de Ven97455122008-01-25 21:08:34 +01002957#endif
Paul Menage8793d852007-10-18 23:39:39 -07002958#ifdef CONFIG_PROC_PID_CPUSET
Zefan Li52de4772014-09-18 16:03:36 +08002959 ONE("cpuset", S_IRUGO, proc_cpuset_show),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002960#endif
Paul Menagea4243162007-10-18 23:39:35 -07002961#ifdef CONFIG_CGROUPS
Zefan Li006f4ac2014-09-18 16:03:15 +08002962 ONE("cgroup", S_IRUGO, proc_cgroup_show),
Paul Menagea4243162007-10-18 23:39:35 -07002963#endif
Alexey Dobriyan6ba51e32014-08-08 14:21:48 -07002964 ONE("oom_score", S_IRUGO, proc_oom_score),
David Rientjesfa0cbbf2012-11-12 17:53:04 -08002965 REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adj_operations),
David Rientjesa63d83f2010-08-09 17:19:46 -07002966 REG("oom_score_adj", S_IRUGO|S_IWUSR, proc_oom_score_adj_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002967#ifdef CONFIG_AUDITSYSCALL
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002968 REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations),
2969 REG("sessionid", S_IRUGO, proc_sessionid_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002970#endif
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08002971#ifdef CONFIG_FAULT_INJECTION
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002972 REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations),
Akinobu Mita168c42b2017-07-14 14:50:00 -07002973 REG("fail-nth", 0644, proc_fail_nth_operations),
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08002974#endif
Christoph Hellwig698ba7b2009-12-15 16:47:37 -08002975#ifdef CONFIG_ELF_CORE
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03002976 REG("coredump_filter", S_IRUGO|S_IWUSR, proc_coredump_filter_operations),
Kawai, Hidehiro3cb4a0b2007-07-19 01:48:28 -07002977#endif
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002978#ifdef CONFIG_TASK_IO_ACCOUNTING
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07002979 ONE("io", S_IRUSR, proc_tgid_io_accounting),
Andrew Mortonaba76fd2006-12-10 02:19:48 -08002980#endif
Eric W. Biederman22d917d2011-11-17 00:11:58 -08002981#ifdef CONFIG_USER_NS
2982 REG("uid_map", S_IRUGO|S_IWUSR, proc_uid_map_operations),
2983 REG("gid_map", S_IRUGO|S_IWUSR, proc_gid_map_operations),
Eric W. Biedermanf76d2072012-08-30 01:24:05 -07002984 REG("projid_map", S_IRUGO|S_IWUSR, proc_projid_map_operations),
Eric W. Biederman9cc46512014-12-02 12:27:26 -06002985 REG("setgroups", S_IRUGO|S_IWUSR, proc_setgroups_operations),
Eric W. Biederman22d917d2011-11-17 00:11:58 -08002986#endif
Nicolas Pitreb18b6a92017-01-21 00:09:08 -05002987#if defined(CONFIG_CHECKPOINT_RESTORE) && defined(CONFIG_POSIX_TIMERS)
Pavel Emelyanov48f6a7a2013-03-11 13:12:45 +04002988 REG("timers", S_IRUGO, proc_timers_operations),
2989#endif
John Stultz5de23d42016-03-17 14:20:54 -07002990 REG("timerslack_ns", S_IRUGO|S_IWUGO, proc_pid_set_timerslack_ns_operations),
Josh Poimboeuf7c23b332017-02-13 19:42:41 -06002991#ifdef CONFIG_LIVEPATCH
2992 ONE("patch_state", S_IRUSR, proc_pid_patch_state),
2993#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002994};
2995
Al Virof0c3b502013-05-16 12:07:31 -04002996static int proc_tgid_base_readdir(struct file *file, struct dir_context *ctx)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07002997{
Al Virof0c3b502013-05-16 12:07:31 -04002998 return proc_pident_readdir(file, ctx,
2999 tgid_base_stuff, ARRAY_SIZE(tgid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003000}
3001
Arjan van de Ven00977a52007-02-12 00:55:34 -08003002static const struct file_operations proc_tgid_base_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003003 .read = generic_read_dir,
Al Virof50752e2016-04-20 17:13:54 -04003004 .iterate_shared = proc_tgid_base_readdir,
3005 .llseek = generic_file_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003006};
3007
Al Viro00cd8dd2012-06-10 17:13:09 -04003008static struct dentry *proc_tgid_base_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
3009{
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07003010 return proc_pident_lookup(dir, dentry,
3011 tgid_base_stuff, ARRAY_SIZE(tgid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003012}
3013
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08003014static const struct inode_operations proc_tgid_base_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003015 .lookup = proc_tgid_base_lookup,
3016 .getattr = pid_getattr,
3017 .setattr = proc_setattr,
Vasiliy Kulikov04996802012-01-10 15:11:31 -08003018 .permission = proc_pid_permission,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003019};
3020
Pavel Emelyanov60347f62007-10-18 23:40:03 -07003021static void proc_flush_task_mnt(struct vfsmount *mnt, pid_t pid, pid_t tgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022{
Eric W. Biederman48e64842006-06-26 00:25:48 -07003023 struct dentry *dentry, *leader, *dir;
Alexey Dobriyane3912ac2018-02-06 15:36:51 -08003024 char buf[10 + 1];
Eric W. Biederman48e64842006-06-26 00:25:48 -07003025 struct qstr name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026
Eric W. Biederman48e64842006-06-26 00:25:48 -07003027 name.name = buf;
Alexey Dobriyane3912ac2018-02-06 15:36:51 -08003028 name.len = snprintf(buf, sizeof(buf), "%u", pid);
Al Viro4f522a22013-02-11 23:20:37 -05003029 /* no ->d_hash() rejects on procfs */
Pavel Emelyanov60347f62007-10-18 23:40:03 -07003030 dentry = d_hash_and_lookup(mnt->mnt_root, &name);
Eric W. Biederman48e64842006-06-26 00:25:48 -07003031 if (dentry) {
Eric W. Biedermanbbd51922014-02-13 10:24:23 -08003032 d_invalidate(dentry);
Eric W. Biederman48e64842006-06-26 00:25:48 -07003033 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035
Oleg Nesterovc35a7f12014-12-10 15:54:56 -08003036 if (pid == tgid)
3037 return;
3038
Eric W. Biederman48e64842006-06-26 00:25:48 -07003039 name.name = buf;
Alexey Dobriyane3912ac2018-02-06 15:36:51 -08003040 name.len = snprintf(buf, sizeof(buf), "%u", tgid);
Pavel Emelyanov60347f62007-10-18 23:40:03 -07003041 leader = d_hash_and_lookup(mnt->mnt_root, &name);
Eric W. Biederman48e64842006-06-26 00:25:48 -07003042 if (!leader)
3043 goto out;
3044
3045 name.name = "task";
3046 name.len = strlen(name.name);
3047 dir = d_hash_and_lookup(leader, &name);
3048 if (!dir)
3049 goto out_put_leader;
3050
3051 name.name = buf;
Alexey Dobriyane3912ac2018-02-06 15:36:51 -08003052 name.len = snprintf(buf, sizeof(buf), "%u", pid);
Eric W. Biederman48e64842006-06-26 00:25:48 -07003053 dentry = d_hash_and_lookup(dir, &name);
3054 if (dentry) {
Eric W. Biedermanbbd51922014-02-13 10:24:23 -08003055 d_invalidate(dentry);
Eric W. Biederman48e64842006-06-26 00:25:48 -07003056 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057 }
Eric W. Biederman48e64842006-06-26 00:25:48 -07003058
3059 dput(dir);
3060out_put_leader:
3061 dput(leader);
3062out:
3063 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064}
3065
Randy Dunlap0895e912007-10-21 21:00:10 -07003066/**
3067 * proc_flush_task - Remove dcache entries for @task from the /proc dcache.
3068 * @task: task that should be flushed.
3069 *
3070 * When flushing dentries from proc, one needs to flush them from global
Pavel Emelyanov60347f62007-10-18 23:40:03 -07003071 * proc (proc_mnt) and from all the namespaces' procs this task was seen
Randy Dunlap0895e912007-10-21 21:00:10 -07003072 * in. This call is supposed to do all of this job.
3073 *
3074 * Looks in the dcache for
3075 * /proc/@pid
3076 * /proc/@tgid/task/@pid
3077 * if either directory is present flushes it and all of it'ts children
3078 * from the dcache.
3079 *
3080 * It is safe and reasonable to cache /proc entries for a task until
3081 * that task exits. After that they just clog up the dcache with
3082 * useless entries, possibly causing useful dcache entries to be
3083 * flushed instead. This routine is proved to flush those useless
3084 * dcache entries at process exit time.
3085 *
3086 * NOTE: This routine is just an optimization so it does not guarantee
3087 * that no dcache entries will exist at process exit time it
3088 * just makes it very unlikely that any will persist.
Pavel Emelyanov60347f62007-10-18 23:40:03 -07003089 */
3090
3091void proc_flush_task(struct task_struct *task)
3092{
Eric W. Biederman9fcc2d12007-11-14 17:00:07 -08003093 int i;
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07003094 struct pid *pid, *tgid;
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07003095 struct upid *upid;
3096
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07003097 pid = task_pid(task);
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07003098 tgid = task_tgid(task);
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07003099
Eric W. Biederman9fcc2d12007-11-14 17:00:07 -08003100 for (i = 0; i <= pid->level; i++) {
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07003101 upid = &pid->numbers[i];
3102 proc_flush_task_mnt(upid->ns->proc_mnt, upid->nr,
Oleg Nesterov9b4d1cbe2009-09-22 16:45:34 -07003103 tgid->numbers[i].nr);
Pavel Emelyanov130f77e2007-10-18 23:40:11 -07003104 }
Pavel Emelyanov60347f62007-10-18 23:40:03 -07003105}
3106
Al Viro0168b9e2018-05-03 09:21:05 -04003107static struct dentry *proc_pid_instantiate(struct dentry * dentry,
Al Viroc52a47a2013-06-15 11:15:20 +04003108 struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003109{
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003110 struct inode *inode;
3111
Al Viro0168b9e2018-05-03 09:21:05 -04003112 inode = proc_pid_make_inode(dentry->d_sb, task, S_IFDIR | S_IRUGO | S_IXUGO);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003113 if (!inode)
Al Viro0168b9e2018-05-03 09:21:05 -04003114 return ERR_PTR(-ENOENT);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003115
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003116 inode->i_op = &proc_tgid_base_inode_operations;
3117 inode->i_fop = &proc_tgid_base_operations;
3118 inode->i_flags|=S_IMMUTABLE;
Vegard Nossumaed54172008-06-05 22:46:53 -07003119
Alexey Dobriyan1270dd82016-12-12 16:45:32 -08003120 set_nlink(inode, nlink_tgid);
Al Viro1bbc5512018-05-02 21:26:16 -04003121 pid_update_inode(task, inode);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003122
Nick Pigginfb045ad2011-01-07 17:49:55 +11003123 d_set_d_op(dentry, &pid_dentry_operations);
Al Viro0168b9e2018-05-03 09:21:05 -04003124 return d_splice_alias(inode, dentry);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003125}
3126
Al Viro00cd8dd2012-06-10 17:13:09 -04003127struct dentry *proc_pid_lookup(struct inode *dir, struct dentry * dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128{
3129 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130 unsigned tgid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003131 struct pid_namespace *ns;
Al Viro0168b9e2018-05-03 09:21:05 -04003132 struct dentry *result = ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133
Alexey Dobriyandbcdb502014-08-08 14:21:25 -07003134 tgid = name_to_int(&dentry->d_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 if (tgid == ~0U)
3136 goto out;
3137
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003138 ns = dentry->d_sb->s_fs_info;
Eric W. Biedermande758732006-06-26 00:25:51 -07003139 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003140 task = find_task_by_pid_ns(tgid, ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141 if (task)
3142 get_task_struct(task);
Eric W. Biedermande758732006-06-26 00:25:51 -07003143 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144 if (!task)
3145 goto out;
3146
Al Viro0168b9e2018-05-03 09:21:05 -04003147 result = proc_pid_instantiate(dentry, task, NULL);
Eric W. Biederman48e64842006-06-26 00:25:48 -07003148 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149out:
Al Viro0168b9e2018-05-03 09:21:05 -04003150 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151}
3152
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153/*
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003154 * Find the first task with tgid >= tgid
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003155 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156 */
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003157struct tgid_iter {
3158 unsigned int tgid;
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003159 struct task_struct *task;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003160};
3161static struct tgid_iter next_tgid(struct pid_namespace *ns, struct tgid_iter iter)
3162{
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003163 struct pid *pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003165 if (iter.task)
3166 put_task_struct(iter.task);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003167 rcu_read_lock();
3168retry:
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003169 iter.task = NULL;
3170 pid = find_ge_pid(iter.tgid, ns);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003171 if (pid) {
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003172 iter.tgid = pid_nr_ns(pid, ns);
3173 iter.task = pid_task(pid, PIDTYPE_PID);
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003174 /* What we to know is if the pid we have find is the
3175 * pid of a thread_group_leader. Testing for task
3176 * being a thread_group_leader is the obvious thing
3177 * todo but there is a window when it fails, due to
3178 * the pid transfer logic in de_thread.
3179 *
3180 * So we perform the straight forward test of seeing
3181 * if the pid we have found is the pid of a thread
3182 * group leader, and don't worry if the task we have
3183 * found doesn't happen to be a thread group leader.
3184 * As we don't care in the case of readdir.
3185 */
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003186 if (!iter.task || !has_group_leader_pid(iter.task)) {
3187 iter.tgid += 1;
Eric W. Biederman0804ef42006-10-02 02:17:04 -07003188 goto retry;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003189 }
3190 get_task_struct(iter.task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191 }
Eric W. Biederman454cc102006-06-26 00:25:51 -07003192 rcu_read_unlock();
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003193 return iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194}
3195
Eric W. Biederman00978752014-07-31 03:10:50 -07003196#define TGID_OFFSET (FIRST_PROCESS_ENTRY + 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197
3198/* for the /proc/ directory itself, after non-process stuff has been done */
Al Virof0c3b502013-05-16 12:07:31 -04003199int proc_pid_readdir(struct file *file, struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200{
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003201 struct tgid_iter iter;
Christoph Hellwig76f668b2018-05-16 07:19:01 +02003202 struct pid_namespace *ns = proc_pid_ns(file_inode(file));
Al Virof0c3b502013-05-16 12:07:31 -04003203 loff_t pos = ctx->pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204
Al Viro021ada72013-03-29 19:27:05 -04003205 if (pos >= PID_MAX_LIMIT + TGID_OFFSET)
Al Virof0c3b502013-05-16 12:07:31 -04003206 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207
Eric W. Biederman00978752014-07-31 03:10:50 -07003208 if (pos == TGID_OFFSET - 2) {
David Howells2b0143b2015-03-17 22:25:59 +00003209 struct inode *inode = d_inode(ns->proc_self);
Al Virodb963162013-06-15 10:45:10 +04003210 if (!dir_emit(ctx, "self", 4, inode->i_ino, DT_LNK))
Al Virof0c3b502013-05-16 12:07:31 -04003211 return 0;
Eric W. Biederman00978752014-07-31 03:10:50 -07003212 ctx->pos = pos = pos + 1;
Al Viro021ada72013-03-29 19:27:05 -04003213 }
Eric W. Biederman00978752014-07-31 03:10:50 -07003214 if (pos == TGID_OFFSET - 1) {
David Howells2b0143b2015-03-17 22:25:59 +00003215 struct inode *inode = d_inode(ns->proc_thread_self);
Eric W. Biederman00978752014-07-31 03:10:50 -07003216 if (!dir_emit(ctx, "thread-self", 11, inode->i_ino, DT_LNK))
3217 return 0;
3218 ctx->pos = pos = pos + 1;
3219 }
3220 iter.tgid = pos - TGID_OFFSET;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003221 iter.task = NULL;
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003222 for (iter = next_tgid(ns, iter);
3223 iter.task;
3224 iter.tgid += 1, iter = next_tgid(ns, iter)) {
Alexey Dobriyane3912ac2018-02-06 15:36:51 -08003225 char name[10 + 1];
Alexey Dobriyana4ef3892018-06-07 17:10:10 -07003226 unsigned int len;
Eric Dumazet3ba4bce2017-01-24 15:18:07 -08003227
3228 cond_resched();
Lafcadio Wluiki796f5712017-02-24 15:00:23 -08003229 if (!has_pid_permissions(ns, iter.task, HIDEPID_INVISIBLE))
Al Virof0c3b502013-05-16 12:07:31 -04003230 continue;
Vasiliy Kulikov04996802012-01-10 15:11:31 -08003231
Alexey Dobriyane3912ac2018-02-06 15:36:51 -08003232 len = snprintf(name, sizeof(name), "%u", iter.tgid);
Al Virof0c3b502013-05-16 12:07:31 -04003233 ctx->pos = iter.tgid + TGID_OFFSET;
3234 if (!proc_fill_cache(file, ctx, name, len,
3235 proc_pid_instantiate, iter.task, NULL)) {
Eric W. Biederman19fd4bb2007-11-28 16:21:26 -08003236 put_task_struct(iter.task);
Al Virof0c3b502013-05-16 12:07:31 -04003237 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239 }
Al Virof0c3b502013-05-16 12:07:31 -04003240 ctx->pos = PID_MAX_LIMIT + TGID_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241 return 0;
3242}
3243
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003244/*
Janis Danisevskis1b3044e2016-05-20 17:00:08 -07003245 * proc_tid_comm_permission is a special permission function exclusively
3246 * used for the node /proc/<pid>/task/<tid>/comm.
3247 * It bypasses generic permission checks in the case where a task of the same
3248 * task group attempts to access the node.
3249 * The rationale behind this is that glibc and bionic access this node for
3250 * cross thread naming (pthread_set/getname_np(!self)). However, if
3251 * PR_SET_DUMPABLE gets set to 0 this node among others becomes uid=0 gid=0,
3252 * which locks out the cross thread naming implementation.
3253 * This function makes sure that the node is always accessible for members of
3254 * same thread group.
3255 */
3256static int proc_tid_comm_permission(struct inode *inode, int mask)
3257{
3258 bool is_same_tgroup;
3259 struct task_struct *task;
3260
3261 task = get_proc_task(inode);
3262 if (!task)
3263 return -ESRCH;
3264 is_same_tgroup = same_thread_group(current, task);
3265 put_task_struct(task);
3266
3267 if (likely(is_same_tgroup && !(mask & MAY_EXEC))) {
3268 /* This file (/proc/<pid>/task/<tid>/comm) can always be
3269 * read or written by the members of the corresponding
3270 * thread group.
3271 */
3272 return 0;
3273 }
3274
3275 return generic_permission(inode, mask);
3276}
3277
3278static const struct inode_operations proc_tid_comm_inode_operations = {
3279 .permission = proc_tid_comm_permission,
3280};
3281
3282/*
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003283 * Tasks
3284 */
Eric Dumazetc5141e62007-05-08 00:26:15 -07003285static const struct pid_entry tid_base_stuff[] = {
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003286 DIR("fd", S_IRUSR|S_IXUSR, proc_fd_inode_operations, proc_fd_operations),
Jerome Marchand38355412010-04-27 13:13:06 -07003287 DIR("fdinfo", S_IRUSR|S_IXUSR, proc_fdinfo_inode_operations, proc_fdinfo_operations),
Eric W. Biederman6b4e3062010-03-07 16:41:34 -08003288 DIR("ns", S_IRUSR|S_IXUGO, proc_ns_dir_inode_operations, proc_ns_dir_operations),
Eric W. Biederman6ba8ed72014-07-31 16:27:08 -07003289#ifdef CONFIG_NET
3290 DIR("net", S_IRUGO|S_IXUGO, proc_net_inode_operations, proc_net_operations),
3291#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003292 REG("environ", S_IRUSR, proc_environ_operations),
Al Viroc5317162016-10-05 18:43:43 -04003293 REG("auxv", S_IRUSR, proc_auxv_operations),
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003294 ONE("status", S_IRUGO, proc_pid_status),
Djalal Harouni35a35042014-04-07 15:38:36 -07003295 ONE("personality", S_IRUSR, proc_pid_personality),
Alexey Dobriyan1c963eb2014-08-08 14:21:37 -07003296 ONE("limits", S_IRUGO, proc_pid_limits),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02003297#ifdef CONFIG_SCHED_DEBUG
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003298 REG("sched", S_IRUGO|S_IWUSR, proc_pid_sched_operations),
Ingo Molnar43ae34c2007-07-09 18:52:00 +02003299#endif
Janis Danisevskis1b3044e2016-05-20 17:00:08 -07003300 NOD("comm", S_IFREG|S_IRUGO|S_IWUSR,
3301 &proc_tid_comm_inode_operations,
3302 &proc_pid_set_comm_operations, {}),
Roland McGrathebcb6732008-07-25 19:46:00 -07003303#ifdef CONFIG_HAVE_ARCH_TRACEHOOK
Alexey Dobriyan09d93bd2014-08-08 14:21:39 -07003304 ONE("syscall", S_IRUSR, proc_pid_syscall),
Roland McGrathebcb6732008-07-25 19:46:00 -07003305#endif
Alexey Dobriyanc2c0bb42015-06-25 15:00:54 -07003306 REG("cmdline", S_IRUGO, proc_pid_cmdline_ops),
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003307 ONE("stat", S_IRUGO, proc_tid_stat),
3308 ONE("statm", S_IRUGO, proc_pid_statm),
Siddhesh Poyarekarb7643752012-03-21 16:34:04 -07003309 REG("maps", S_IRUGO, proc_tid_maps_operations),
Iago López Galeiras2e13ba52015-06-25 15:00:57 -07003310#ifdef CONFIG_PROC_CHILDREN
Cyrill Gorcunov818411612012-05-31 16:26:43 -07003311 REG("children", S_IRUGO, proc_tid_children_operations),
3312#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003313#ifdef CONFIG_NUMA
Siddhesh Poyarekarb7643752012-03-21 16:34:04 -07003314 REG("numa_maps", S_IRUGO, proc_tid_numa_maps_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003315#endif
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003316 REG("mem", S_IRUSR|S_IWUSR, proc_mem_operations),
3317 LNK("cwd", proc_cwd_link),
3318 LNK("root", proc_root_link),
3319 LNK("exe", proc_exe_link),
3320 REG("mounts", S_IRUGO, proc_mounts_operations),
3321 REG("mountinfo", S_IRUGO, proc_mountinfo_operations),
Matt Mackall1e883282008-02-04 22:29:07 -08003322#ifdef CONFIG_PROC_PAGE_MONITOR
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003323 REG("clear_refs", S_IWUSR, proc_clear_refs_operations),
Siddhesh Poyarekarb7643752012-03-21 16:34:04 -07003324 REG("smaps", S_IRUGO, proc_tid_smaps_operations),
Daniel Colascione493b0e92017-09-06 16:25:08 -07003325 REG("smaps_rollup", S_IRUGO, proc_pid_smaps_rollup_operations),
Djalal Harouni32ed74a2014-04-07 15:38:38 -07003326 REG("pagemap", S_IRUSR, proc_pagemap_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003327#endif
3328#ifdef CONFIG_SECURITY
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003329 DIR("attr", S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003330#endif
3331#ifdef CONFIG_KALLSYMS
Alexey Dobriyanedfcd602014-08-08 14:21:44 -07003332 ONE("wchan", S_IRUGO, proc_pid_wchan),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003333#endif
Ken Chen2ec220e2008-11-10 11:26:08 +03003334#ifdef CONFIG_STACKTRACE
Djalal Harouni35a35042014-04-07 15:38:36 -07003335 ONE("stack", S_IRUSR, proc_pid_stack),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003336#endif
Naveen N. Rao5968cec2015-06-30 14:36:03 +05303337#ifdef CONFIG_SCHED_INFO
Alexey Dobriyanf6e826c2014-08-08 14:21:46 -07003338 ONE("schedstat", S_IRUGO, proc_pid_schedstat),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003339#endif
Arjan van de Ven97455122008-01-25 21:08:34 +01003340#ifdef CONFIG_LATENCYTOP
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003341 REG("latency", S_IRUGO, proc_lstats_operations),
Arjan van de Ven97455122008-01-25 21:08:34 +01003342#endif
Paul Menage8793d852007-10-18 23:39:39 -07003343#ifdef CONFIG_PROC_PID_CPUSET
Zefan Li52de4772014-09-18 16:03:36 +08003344 ONE("cpuset", S_IRUGO, proc_cpuset_show),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003345#endif
Paul Menagea4243162007-10-18 23:39:35 -07003346#ifdef CONFIG_CGROUPS
Zefan Li006f4ac2014-09-18 16:03:15 +08003347 ONE("cgroup", S_IRUGO, proc_cgroup_show),
Paul Menagea4243162007-10-18 23:39:35 -07003348#endif
Alexey Dobriyan6ba51e32014-08-08 14:21:48 -07003349 ONE("oom_score", S_IRUGO, proc_oom_score),
David Rientjesfa0cbbf2012-11-12 17:53:04 -08003350 REG("oom_adj", S_IRUGO|S_IWUSR, proc_oom_adj_operations),
David Rientjesa63d83f2010-08-09 17:19:46 -07003351 REG("oom_score_adj", S_IRUGO|S_IWUSR, proc_oom_score_adj_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003352#ifdef CONFIG_AUDITSYSCALL
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003353 REG("loginuid", S_IWUSR|S_IRUGO, proc_loginuid_operations),
Al Viro26ec3c62011-02-15 21:24:05 -05003354 REG("sessionid", S_IRUGO, proc_sessionid_operations),
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003355#endif
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08003356#ifdef CONFIG_FAULT_INJECTION
Alexey Dobriyan631f9c12008-11-10 01:32:52 +03003357 REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations),
Akinobu Mita1203c8e2017-07-14 14:49:57 -07003358 REG("fail-nth", 0644, proc_fail_nth_operations),
Akinobu Mitaf4f154f2006-12-08 02:39:47 -08003359#endif
Andrea Righi297c5d92008-07-25 01:48:49 -07003360#ifdef CONFIG_TASK_IO_ACCOUNTING
Alexey Dobriyan19aadc92014-08-08 14:21:50 -07003361 ONE("io", S_IRUSR, proc_tid_io_accounting),
Andrea Righi297c5d92008-07-25 01:48:49 -07003362#endif
Eric W. Biederman22d917d2011-11-17 00:11:58 -08003363#ifdef CONFIG_USER_NS
3364 REG("uid_map", S_IRUGO|S_IWUSR, proc_uid_map_operations),
3365 REG("gid_map", S_IRUGO|S_IWUSR, proc_gid_map_operations),
Eric W. Biedermanf76d2072012-08-30 01:24:05 -07003366 REG("projid_map", S_IRUGO|S_IWUSR, proc_projid_map_operations),
Eric W. Biederman9cc46512014-12-02 12:27:26 -06003367 REG("setgroups", S_IRUGO|S_IWUSR, proc_setgroups_operations),
Eric W. Biederman22d917d2011-11-17 00:11:58 -08003368#endif
Josh Poimboeuf7c23b332017-02-13 19:42:41 -06003369#ifdef CONFIG_LIVEPATCH
3370 ONE("patch_state", S_IRUSR, proc_pid_patch_state),
3371#endif
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003372};
3373
Al Virof0c3b502013-05-16 12:07:31 -04003374static int proc_tid_base_readdir(struct file *file, struct dir_context *ctx)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003375{
Al Virof0c3b502013-05-16 12:07:31 -04003376 return proc_pident_readdir(file, ctx,
3377 tid_base_stuff, ARRAY_SIZE(tid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003378}
3379
Al Viro00cd8dd2012-06-10 17:13:09 -04003380static struct dentry *proc_tid_base_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
3381{
Eric W. Biederman7bcd6b02006-10-02 02:18:56 -07003382 return proc_pident_lookup(dir, dentry,
3383 tid_base_stuff, ARRAY_SIZE(tid_base_stuff));
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003384}
3385
Arjan van de Ven00977a52007-02-12 00:55:34 -08003386static const struct file_operations proc_tid_base_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003387 .read = generic_read_dir,
Al Virof50752e2016-04-20 17:13:54 -04003388 .iterate_shared = proc_tid_base_readdir,
3389 .llseek = generic_file_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003390};
3391
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08003392static const struct inode_operations proc_tid_base_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003393 .lookup = proc_tid_base_lookup,
3394 .getattr = pid_getattr,
3395 .setattr = proc_setattr,
3396};
3397
Al Viro0168b9e2018-05-03 09:21:05 -04003398static struct dentry *proc_task_instantiate(struct dentry *dentry,
3399 struct task_struct *task, const void *ptr)
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003400{
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003401 struct inode *inode;
Al Viro0168b9e2018-05-03 09:21:05 -04003402 inode = proc_pid_make_inode(dentry->d_sb, task, S_IFDIR | S_IRUGO | S_IXUGO);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003403 if (!inode)
Al Viro0168b9e2018-05-03 09:21:05 -04003404 return ERR_PTR(-ENOENT);
Al Viro1bbc5512018-05-02 21:26:16 -04003405
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003406 inode->i_op = &proc_tid_base_inode_operations;
3407 inode->i_fop = &proc_tid_base_operations;
Al Viro1bbc5512018-05-02 21:26:16 -04003408 inode->i_flags |= S_IMMUTABLE;
Vegard Nossumaed54172008-06-05 22:46:53 -07003409
Alexey Dobriyan1270dd82016-12-12 16:45:32 -08003410 set_nlink(inode, nlink_tid);
Al Viro1bbc5512018-05-02 21:26:16 -04003411 pid_update_inode(task, inode);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003412
Nick Pigginfb045ad2011-01-07 17:49:55 +11003413 d_set_d_op(dentry, &pid_dentry_operations);
Al Viro0168b9e2018-05-03 09:21:05 -04003414 return d_splice_alias(inode, dentry);
Eric W. Biederman444ceed2006-10-02 02:18:49 -07003415}
3416
Al Viro00cd8dd2012-06-10 17:13:09 -04003417static struct dentry *proc_task_lookup(struct inode *dir, struct dentry * dentry, unsigned int flags)
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003418{
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003419 struct task_struct *task;
3420 struct task_struct *leader = get_proc_task(dir);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003421 unsigned tid;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003422 struct pid_namespace *ns;
Al Viro0168b9e2018-05-03 09:21:05 -04003423 struct dentry *result = ERR_PTR(-ENOENT);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003424
3425 if (!leader)
3426 goto out_no_task;
3427
Alexey Dobriyandbcdb502014-08-08 14:21:25 -07003428 tid = name_to_int(&dentry->d_name);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003429 if (tid == ~0U)
3430 goto out;
3431
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003432 ns = dentry->d_sb->s_fs_info;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003433 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003434 task = find_task_by_pid_ns(tid, ns);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003435 if (task)
3436 get_task_struct(task);
3437 rcu_read_unlock();
3438 if (!task)
3439 goto out;
Pavel Emelyanovbac0abd2007-10-18 23:40:18 -07003440 if (!same_thread_group(leader, task))
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003441 goto out_drop_task;
3442
Al Viro0168b9e2018-05-03 09:21:05 -04003443 result = proc_task_instantiate(dentry, task, NULL);
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003444out_drop_task:
3445 put_task_struct(task);
3446out:
3447 put_task_struct(leader);
3448out_no_task:
Al Viro0168b9e2018-05-03 09:21:05 -04003449 return result;
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003450}
3451
3452/*
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003453 * Find the first tid of a thread group to return to user space.
3454 *
3455 * Usually this is just the thread group leader, but if the users
3456 * buffer was too small or there was a seek into the middle of the
3457 * directory we have more work todo.
3458 *
3459 * In the case of a short read we start with find_task_by_pid.
3460 *
3461 * In the case of a seek we start with the leader and walk nr
3462 * threads past it.
3463 */
Oleg Nesterov9f6e9632014-01-23 15:55:40 -08003464static struct task_struct *first_tid(struct pid *pid, int tid, loff_t f_pos,
3465 struct pid_namespace *ns)
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003466{
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003467 struct task_struct *pos, *task;
Oleg Nesterov9f6e9632014-01-23 15:55:40 -08003468 unsigned long nr = f_pos;
3469
3470 if (nr != f_pos) /* 32bit overflow? */
3471 return NULL;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003472
Eric W. Biedermancc288732006-06-26 00:26:01 -07003473 rcu_read_lock();
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003474 task = pid_task(pid, PIDTYPE_PID);
3475 if (!task)
3476 goto fail;
3477
3478 /* Attempt to start with the tid of a thread */
Oleg Nesterov9f6e9632014-01-23 15:55:40 -08003479 if (tid && nr) {
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003480 pos = find_task_by_pid_ns(tid, ns);
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003481 if (pos && same_thread_group(pos, task))
Oleg Nesterova872ff02006-06-26 00:26:01 -07003482 goto found;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003483 }
3484
3485 /* If nr exceeds the number of threads there is nothing todo */
Oleg Nesterov9f6e9632014-01-23 15:55:40 -08003486 if (nr >= get_nr_threads(task))
Oleg Nesterovc986c142014-01-23 15:55:38 -08003487 goto fail;
Oleg Nesterova872ff02006-06-26 00:26:01 -07003488
3489 /* If we haven't found our starting place yet start
3490 * with the leader and walk nr threads forward.
3491 */
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003492 pos = task = task->group_leader;
Oleg Nesterovc986c142014-01-23 15:55:38 -08003493 do {
Oleg Nesterov9f6e9632014-01-23 15:55:40 -08003494 if (!nr--)
Oleg Nesterovc986c142014-01-23 15:55:38 -08003495 goto found;
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003496 } while_each_thread(task, pos);
Oleg Nesterovc986c142014-01-23 15:55:38 -08003497fail:
3498 pos = NULL;
3499 goto out;
Oleg Nesterova872ff02006-06-26 00:26:01 -07003500found:
3501 get_task_struct(pos);
3502out:
Eric W. Biedermancc288732006-06-26 00:26:01 -07003503 rcu_read_unlock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003504 return pos;
3505}
3506
3507/*
3508 * Find the next thread in the thread list.
3509 * Return NULL if there is an error or no next thread.
3510 *
3511 * The reference to the input task_struct is released.
3512 */
3513static struct task_struct *next_tid(struct task_struct *start)
3514{
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003515 struct task_struct *pos = NULL;
Eric W. Biedermancc288732006-06-26 00:26:01 -07003516 rcu_read_lock();
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003517 if (pid_alive(start)) {
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003518 pos = next_thread(start);
Oleg Nesterovc1df7fb2006-06-26 00:26:02 -07003519 if (thread_group_leader(pos))
3520 pos = NULL;
3521 else
3522 get_task_struct(pos);
3523 }
Eric W. Biedermancc288732006-06-26 00:26:01 -07003524 rcu_read_unlock();
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003525 put_task_struct(start);
3526 return pos;
3527}
3528
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529/* for the /proc/TGID/task/ directories */
Al Virof0c3b502013-05-16 12:07:31 -04003530static int proc_task_readdir(struct file *file, struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531{
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003532 struct inode *inode = file_inode(file);
3533 struct task_struct *task;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003534 struct pid_namespace *ns;
Al Virof0c3b502013-05-16 12:07:31 -04003535 int tid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003537 if (proc_inode_is_dead(inode))
Al Virof0c3b502013-05-16 12:07:31 -04003538 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539
Al Virof0c3b502013-05-16 12:07:31 -04003540 if (!dir_emit_dots(file, ctx))
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003541 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003543 /* f_version caches the tgid value that the last readdir call couldn't
3544 * return. lseek aka telldir automagically resets f_version to 0.
3545 */
Christoph Hellwig76f668b2018-05-16 07:19:01 +02003546 ns = proc_pid_ns(inode);
Al Virof0c3b502013-05-16 12:07:31 -04003547 tid = (int)file->f_version;
3548 file->f_version = 0;
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003549 for (task = first_tid(proc_pid(inode), tid, ctx->pos - 2, ns);
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003550 task;
Al Virof0c3b502013-05-16 12:07:31 -04003551 task = next_tid(task), ctx->pos++) {
Alexey Dobriyane3912ac2018-02-06 15:36:51 -08003552 char name[10 + 1];
Alexey Dobriyana4ef3892018-06-07 17:10:10 -07003553 unsigned int len;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003554 tid = task_pid_nr_ns(task, ns);
Alexey Dobriyane3912ac2018-02-06 15:36:51 -08003555 len = snprintf(name, sizeof(name), "%u", tid);
Al Virof0c3b502013-05-16 12:07:31 -04003556 if (!proc_fill_cache(file, ctx, name, len,
3557 proc_task_instantiate, task, NULL)) {
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003558 /* returning this tgid failed, save it as the first
3559 * pid for the next readir call */
Al Virof0c3b502013-05-16 12:07:31 -04003560 file->f_version = (u64)tid;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003561 put_task_struct(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562 break;
Eric W. Biederman0bc58a92006-06-26 00:25:50 -07003563 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564 }
Oleg Nesterovd855a4b2014-01-23 15:55:39 -08003565
Al Virof0c3b502013-05-16 12:07:31 -04003566 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003567}
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003568
David Howellsa528d352017-01-31 16:46:22 +00003569static int proc_task_getattr(const struct path *path, struct kstat *stat,
3570 u32 request_mask, unsigned int query_flags)
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003571{
David Howellsa528d352017-01-31 16:46:22 +00003572 struct inode *inode = d_inode(path->dentry);
Eric W. Biederman99f89552006-06-26 00:25:55 -07003573 struct task_struct *p = get_proc_task(inode);
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003574 generic_fillattr(inode, stat);
3575
Eric W. Biederman99f89552006-06-26 00:25:55 -07003576 if (p) {
Eric W. Biederman99f89552006-06-26 00:25:55 -07003577 stat->nlink += get_nr_threads(p);
Eric W. Biederman99f89552006-06-26 00:25:55 -07003578 put_task_struct(p);
Eric W. Biederman6e66b522006-06-26 00:25:47 -07003579 }
3580
3581 return 0;
3582}
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003583
Arjan van de Venc5ef1c42007-02-12 00:55:40 -08003584static const struct inode_operations proc_task_inode_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003585 .lookup = proc_task_lookup,
3586 .getattr = proc_task_getattr,
3587 .setattr = proc_setattr,
Vasiliy Kulikov04996802012-01-10 15:11:31 -08003588 .permission = proc_pid_permission,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003589};
3590
Arjan van de Ven00977a52007-02-12 00:55:34 -08003591static const struct file_operations proc_task_operations = {
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003592 .read = generic_read_dir,
Al Virof50752e2016-04-20 17:13:54 -04003593 .iterate_shared = proc_task_readdir,
3594 .llseek = generic_file_llseek,
Eric W. Biederman28a6d672006-10-02 02:17:05 -07003595};
Alexey Dobriyan1270dd82016-12-12 16:45:32 -08003596
3597void __init set_proc_pid_nlink(void)
3598{
3599 nlink_tid = pid_entry_nlink(tid_base_stuff, ARRAY_SIZE(tid_base_stuff));
3600 nlink_tgid = pid_entry_nlink(tgid_base_stuff, ARRAY_SIZE(tgid_base_stuff));
3601}