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
[] = {
26 &pidns_for_children_operations
,
37 static const char *proc_ns_get_link(struct dentry
*dentry
,
39 struct delayed_call
*done
)
41 const struct proc_ns_operations
*ns_ops
= PROC_I(inode
)->ns_ops
;
42 struct task_struct
*task
;
44 void *error
= ERR_PTR(-EACCES
);
47 return ERR_PTR(-ECHILD
);
49 task
= get_proc_task(inode
);
53 if (ptrace_may_access(task
, PTRACE_MODE_READ_FSCREDS
)) {
54 error
= ns_get_path(&ns_path
, task
, ns_ops
);
56 nd_jump_link(&ns_path
);
58 put_task_struct(task
);
62 static int proc_ns_readlink(struct dentry
*dentry
, char __user
*buffer
, int buflen
)
64 struct inode
*inode
= d_inode(dentry
);
65 const struct proc_ns_operations
*ns_ops
= PROC_I(inode
)->ns_ops
;
66 struct task_struct
*task
;
70 task
= get_proc_task(inode
);
74 if (ptrace_may_access(task
, PTRACE_MODE_READ_FSCREDS
)) {
75 res
= ns_get_name(name
, sizeof(name
), task
, ns_ops
);
77 res
= readlink_copy(buffer
, buflen
, name
);
79 put_task_struct(task
);
83 static const struct inode_operations proc_ns_link_inode_operations
= {
84 .readlink
= proc_ns_readlink
,
85 .get_link
= proc_ns_get_link
,
86 .setattr
= proc_setattr
,
89 static int proc_ns_instantiate(struct inode
*dir
,
90 struct dentry
*dentry
, struct task_struct
*task
, const void *ptr
)
92 const struct proc_ns_operations
*ns_ops
= ptr
;
94 struct proc_inode
*ei
;
96 inode
= proc_pid_make_inode(dir
->i_sb
, task
, S_IFLNK
| S_IRWXUGO
);
101 inode
->i_op
= &proc_ns_link_inode_operations
;
104 d_set_d_op(dentry
, &pid_dentry_operations
);
105 d_add(dentry
, inode
);
106 /* Close the race of the process dying before we return the dentry */
107 if (pid_revalidate(dentry
, 0))
113 static int proc_ns_dir_readdir(struct file
*file
, struct dir_context
*ctx
)
115 struct task_struct
*task
= get_proc_task(file_inode(file
));
116 const struct proc_ns_operations
**entry
, **last
;
121 if (!dir_emit_dots(file
, ctx
))
123 if (ctx
->pos
>= 2 + ARRAY_SIZE(ns_entries
))
125 entry
= ns_entries
+ (ctx
->pos
- 2);
126 last
= &ns_entries
[ARRAY_SIZE(ns_entries
) - 1];
127 while (entry
<= last
) {
128 const struct proc_ns_operations
*ops
= *entry
;
129 if (!proc_fill_cache(file
, ctx
, ops
->name
, strlen(ops
->name
),
130 proc_ns_instantiate
, task
, ops
))
136 put_task_struct(task
);
140 const struct file_operations proc_ns_dir_operations
= {
141 .read
= generic_read_dir
,
142 .iterate_shared
= proc_ns_dir_readdir
,
143 .llseek
= generic_file_llseek
,
146 static struct dentry
*proc_ns_dir_lookup(struct inode
*dir
,
147 struct dentry
*dentry
, unsigned int flags
)
150 struct task_struct
*task
= get_proc_task(dir
);
151 const struct proc_ns_operations
**entry
, **last
;
152 unsigned int len
= dentry
->d_name
.len
;
159 last
= &ns_entries
[ARRAY_SIZE(ns_entries
)];
160 for (entry
= ns_entries
; entry
< last
; entry
++) {
161 if (strlen((*entry
)->name
) != len
)
163 if (!memcmp(dentry
->d_name
.name
, (*entry
)->name
, len
))
169 error
= proc_ns_instantiate(dir
, dentry
, task
, *entry
);
171 put_task_struct(task
);
173 return ERR_PTR(error
);
176 const struct inode_operations proc_ns_dir_inode_operations
= {
177 .lookup
= proc_ns_dir_lookup
,
178 .getattr
= pid_getattr
,
179 .setattr
= proc_setattr
,