blob: 9dd0ae6aefdb09738e772d9afb65f0b21a9928dd [file] [log] [blame]
Eric W. Biedermane656d8a2010-07-10 14:52:49 -07001#include <linux/sched.h>
David Howells0d01ff22013-04-11 23:51:01 +01002#include <linux/slab.h>
Al Viro021ada72013-03-29 19:27:05 -04003#include <linux/pid_namespace.h>
4#include "internal.h"
Eric W. Biedermane656d8a2010-07-10 14:52:49 -07005
6/*
7 * /proc/self:
8 */
9static int proc_self_readlink(struct dentry *dentry, char __user *buffer,
10 int buflen)
11{
12 struct pid_namespace *ns = dentry->d_sb->s_fs_info;
13 pid_t tgid = task_tgid_nr_ns(current, ns);
14 char tmp[PROC_NUMBUF];
15 if (!tgid)
16 return -ENOENT;
17 sprintf(tmp, "%d", tgid);
Al Viro5d826c82014-03-14 13:42:45 -040018 return readlink_copy(buffer, buflen, tmp);
Eric W. Biedermane656d8a2010-07-10 14:52:49 -070019}
20
Al Viro6b255392015-11-17 10:20:54 -050021static const char *proc_self_get_link(struct dentry *dentry,
22 struct inode *inode, void **cookie)
Eric W. Biedermane656d8a2010-07-10 14:52:49 -070023{
Al Viro6b255392015-11-17 10:20:54 -050024 struct pid_namespace *ns = inode->i_sb->s_fs_info;
Eric W. Biedermane656d8a2010-07-10 14:52:49 -070025 pid_t tgid = task_tgid_nr_ns(current, ns);
Al Viro680baac2015-05-02 13:32:22 -040026 char *name;
27
Al Viro6b255392015-11-17 10:20:54 -050028 if (!dentry)
29 return ERR_PTR(-ECHILD);
Al Viro680baac2015-05-02 13:32:22 -040030 if (!tgid)
31 return ERR_PTR(-ENOENT);
32 /* 11 for max length of signed int in decimal + NULL term */
33 name = kmalloc(12, GFP_KERNEL);
34 if (!name)
35 return ERR_PTR(-ENOMEM);
36 sprintf(name, "%d", tgid);
37 return *cookie = name;
Eric W. Biedermane656d8a2010-07-10 14:52:49 -070038}
39
Eric W. Biedermane656d8a2010-07-10 14:52:49 -070040static const struct inode_operations proc_self_inode_operations = {
41 .readlink = proc_self_readlink,
Al Viro6b255392015-11-17 10:20:54 -050042 .get_link = proc_self_get_link,
Al Viro87dc8002013-09-16 10:30:04 -040043 .put_link = kfree_put_link,
Eric W. Biedermane656d8a2010-07-10 14:52:49 -070044};
45
Al Viro021ada72013-03-29 19:27:05 -040046static unsigned self_inum;
47
48int proc_setup_self(struct super_block *s)
49{
David Howells2b0143b2015-03-17 22:25:59 +000050 struct inode *root_inode = d_inode(s->s_root);
Al Viro021ada72013-03-29 19:27:05 -040051 struct pid_namespace *ns = s->s_fs_info;
52 struct dentry *self;
53
54 mutex_lock(&root_inode->i_mutex);
55 self = d_alloc_name(s->s_root, "self");
56 if (self) {
57 struct inode *inode = new_inode_pseudo(s);
58 if (inode) {
59 inode->i_ino = self_inum;
60 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
61 inode->i_mode = S_IFLNK | S_IRWXUGO;
62 inode->i_uid = GLOBAL_ROOT_UID;
63 inode->i_gid = GLOBAL_ROOT_GID;
64 inode->i_op = &proc_self_inode_operations;
65 d_add(self, inode);
66 } else {
67 dput(self);
68 self = ERR_PTR(-ENOMEM);
69 }
70 } else {
71 self = ERR_PTR(-ENOMEM);
72 }
73 mutex_unlock(&root_inode->i_mutex);
74 if (IS_ERR(self)) {
75 pr_err("proc_fill_super: can't allocate /proc/self\n");
76 return PTR_ERR(self);
77 }
78 ns->proc_self = self;
79 return 0;
80}
81
Eric W. Biedermane656d8a2010-07-10 14:52:49 -070082void __init proc_self_init(void)
83{
Al Viro021ada72013-03-29 19:27:05 -040084 proc_alloc_inum(&self_inum);
Eric W. Biedermane656d8a2010-07-10 14:52:49 -070085}