1 #include <linux/proc_fs.h>
2 #include <linux/nsproxy.h>
3 #include <linux/ptrace.h>
4 #include <linux/namei.h>
5 #include <linux/file.h>
6 #include <linux/utsname.h>
7 #include <net/net_namespace.h>
8 #include <linux/ipc_namespace.h>
9 #include <linux/pid_namespace.h>
10 #include <linux/user_namespace.h>
14 static const struct proc_ns_operations
*ns_entries
[] = {
33 static const char *proc_ns_get_link(struct dentry
*dentry
,
35 struct delayed_call
*done
)
37 const struct proc_ns_operations
*ns_ops
= PROC_I(inode
)->ns_ops
;
38 struct task_struct
*task
;
40 void *error
= ERR_PTR(-EACCES
);
43 return ERR_PTR(-ECHILD
);
45 task
= get_proc_task(inode
);
49 if (ptrace_may_access(task
, PTRACE_MODE_READ_FSCREDS
)) {
50 error
= ns_get_path(&ns_path
, task
, ns_ops
);
52 nd_jump_link(&ns_path
);
54 put_task_struct(task
);
58 static int proc_ns_readlink(struct dentry
*dentry
, char __user
*buffer
, int buflen
)
60 struct inode
*inode
= d_inode(dentry
);
61 const struct proc_ns_operations
*ns_ops
= PROC_I(inode
)->ns_ops
;
62 struct task_struct
*task
;
66 task
= get_proc_task(inode
);
70 if (ptrace_may_access(task
, PTRACE_MODE_READ_FSCREDS
)) {
71 res
= ns_get_name(name
, sizeof(name
), task
, ns_ops
);
73 res
= readlink_copy(buffer
, buflen
, name
);
75 put_task_struct(task
);
79 static const struct inode_operations proc_ns_link_inode_operations
= {
80 .readlink
= proc_ns_readlink
,
81 .get_link
= proc_ns_get_link
,
82 .setattr
= proc_setattr
,
85 static int proc_ns_instantiate(struct inode
*dir
,
86 struct dentry
*dentry
, struct task_struct
*task
, const void *ptr
)
88 const struct proc_ns_operations
*ns_ops
= ptr
;
90 struct proc_inode
*ei
;
92 inode
= proc_pid_make_inode(dir
->i_sb
, task
);
97 inode
->i_mode
= S_IFLNK
|S_IRWXUGO
;
98 inode
->i_op
= &proc_ns_link_inode_operations
;
101 d_set_d_op(dentry
, &pid_dentry_operations
);
102 d_add(dentry
, inode
);
103 /* Close the race of the process dying before we return the dentry */
104 if (pid_revalidate(dentry
, 0))
110 static int proc_ns_dir_readdir(struct file
*file
, struct dir_context
*ctx
)
112 struct task_struct
*task
= get_proc_task(file_inode(file
));
113 const struct proc_ns_operations
**entry
, **last
;
118 if (!dir_emit_dots(file
, ctx
))
120 if (ctx
->pos
>= 2 + ARRAY_SIZE(ns_entries
))
122 entry
= ns_entries
+ (ctx
->pos
- 2);
123 last
= &ns_entries
[ARRAY_SIZE(ns_entries
) - 1];
124 while (entry
<= last
) {
125 const struct proc_ns_operations
*ops
= *entry
;
126 if (!proc_fill_cache(file
, ctx
, ops
->name
, strlen(ops
->name
),
127 proc_ns_instantiate
, task
, ops
))
133 put_task_struct(task
);
137 const struct file_operations proc_ns_dir_operations
= {
138 .read
= generic_read_dir
,
139 .iterate
= proc_ns_dir_readdir
,
142 static struct dentry
*proc_ns_dir_lookup(struct inode
*dir
,
143 struct dentry
*dentry
, unsigned int flags
)
146 struct task_struct
*task
= get_proc_task(dir
);
147 const struct proc_ns_operations
**entry
, **last
;
148 unsigned int len
= dentry
->d_name
.len
;
155 last
= &ns_entries
[ARRAY_SIZE(ns_entries
)];
156 for (entry
= ns_entries
; entry
< last
; entry
++) {
157 if (strlen((*entry
)->name
) != len
)
159 if (!memcmp(dentry
->d_name
.name
, (*entry
)->name
, len
))
165 error
= proc_ns_instantiate(dir
, dentry
, task
, *entry
);
167 put_task_struct(task
);
169 return ERR_PTR(error
);
172 const struct inode_operations proc_ns_dir_inode_operations
= {
173 .lookup
= proc_ns_dir_lookup
,
174 .getattr
= pid_getattr
,
175 .setattr
= proc_setattr
,