blob: 7a8b19ead3b65f4fd3ae612e99254029ae83c862 [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
28 if (!tgid)
29 return ERR_PTR(-ENOENT);
30 /* 11 for max length of signed int in decimal + NULL term */
Al Viro1a384ea2015-11-17 10:58:42 -050031 name = kmalloc(12, dentry ? GFP_KERNEL : GFP_ATOMIC);
32 if (unlikely(!name))
33 return dentry ? ERR_PTR(-ENOMEM) : ERR_PTR(-ECHILD);
Al Viro680baac2015-05-02 13:32:22 -040034 sprintf(name, "%d", tgid);
35 return *cookie = name;
Eric W. Biedermane656d8a2010-07-10 14:52:49 -070036}
37
Eric W. Biedermane656d8a2010-07-10 14:52:49 -070038static const struct inode_operations proc_self_inode_operations = {
39 .readlink = proc_self_readlink,
Al Viro6b255392015-11-17 10:20:54 -050040 .get_link = proc_self_get_link,
Al Viro87dc8002013-09-16 10:30:04 -040041 .put_link = kfree_put_link,
Eric W. Biedermane656d8a2010-07-10 14:52:49 -070042};
43
Al Viro021ada72013-03-29 19:27:05 -040044static unsigned self_inum;
45
46int proc_setup_self(struct super_block *s)
47{
David Howells2b0143b2015-03-17 22:25:59 +000048 struct inode *root_inode = d_inode(s->s_root);
Al Viro021ada72013-03-29 19:27:05 -040049 struct pid_namespace *ns = s->s_fs_info;
50 struct dentry *self;
51
52 mutex_lock(&root_inode->i_mutex);
53 self = d_alloc_name(s->s_root, "self");
54 if (self) {
55 struct inode *inode = new_inode_pseudo(s);
56 if (inode) {
57 inode->i_ino = self_inum;
58 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
59 inode->i_mode = S_IFLNK | S_IRWXUGO;
60 inode->i_uid = GLOBAL_ROOT_UID;
61 inode->i_gid = GLOBAL_ROOT_GID;
62 inode->i_op = &proc_self_inode_operations;
63 d_add(self, inode);
64 } else {
65 dput(self);
66 self = ERR_PTR(-ENOMEM);
67 }
68 } else {
69 self = ERR_PTR(-ENOMEM);
70 }
71 mutex_unlock(&root_inode->i_mutex);
72 if (IS_ERR(self)) {
73 pr_err("proc_fill_super: can't allocate /proc/self\n");
74 return PTR_ERR(self);
75 }
76 ns->proc_self = self;
77 return 0;
78}
79
Eric W. Biedermane656d8a2010-07-10 14:52:49 -070080void __init proc_self_init(void)
81{
Al Viro021ada72013-03-29 19:27:05 -040082 proc_alloc_inum(&self_inum);
Eric W. Biedermane656d8a2010-07-10 14:52:49 -070083}