blob: a7b12435519e048e90abf6bd3250ce8e22da40d0 [file] [log] [blame]
David S. Miller3c12afe2007-09-12 14:18:18 +02001/*
2 * linux/fs/proc/net.c
3 *
4 * Copyright (C) 2007
5 *
6 * Author: Eric Biederman <ebiederm@xmission.com>
7 *
8 * proc net directory handling functions
9 */
10
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080011#include <linux/uaccess.h>
David S. Miller3c12afe2007-09-12 14:18:18 +020012
13#include <linux/errno.h>
14#include <linux/time.h>
15#include <linux/proc_fs.h>
16#include <linux/stat.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
David S. Miller3c12afe2007-09-12 14:18:18 +020018#include <linux/init.h>
19#include <linux/sched.h>
Ingo Molnarf719ff9b2017-02-06 10:57:33 +010020#include <linux/sched/task.h>
David S. Miller3c12afe2007-09-12 14:18:18 +020021#include <linux/module.h>
22#include <linux/bitops.h>
David S. Miller3c12afe2007-09-12 14:18:18 +020023#include <linux/mount.h>
24#include <linux/nsproxy.h>
Dmitry Torokhovc1104862016-08-10 14:36:01 -070025#include <linux/uidgid.h>
David S. Miller3c12afe2007-09-12 14:18:18 +020026#include <net/net_namespace.h>
Denis V. Luneve372c412007-11-19 22:31:54 -080027#include <linux/seq_file.h>
David S. Miller3c12afe2007-09-12 14:18:18 +020028
29#include "internal.h"
30
David Howells4abfd022013-04-12 02:09:03 +010031static inline struct net *PDE_NET(struct proc_dir_entry *pde)
32{
33 return pde->parent->data;
34}
David S. Miller3c12afe2007-09-12 14:18:18 +020035
Adrian Bunk8086cd42008-07-22 14:19:19 -070036static struct net *get_proc_net(const struct inode *inode)
37{
38 return maybe_get_net(PDE_NET(PDE(inode)));
39}
40
Alexey Dobriyan1fde6f22019-02-01 14:20:01 -080041static int proc_net_d_revalidate(struct dentry *dentry, unsigned int flags)
42{
43 return 0;
44}
45
46static const struct dentry_operations proc_net_dentry_ops = {
47 .d_revalidate = proc_net_d_revalidate,
48 .d_delete = always_delete_dentry,
49};
50
51static void pde_force_lookup(struct proc_dir_entry *pde)
52{
53 /* /proc/net/ entries can be changed under us by setns(CLONE_NEWNET) */
54 pde->proc_dops = &proc_net_dentry_ops;
55}
56
Christoph Hellwigc3506372018-04-10 19:42:55 +020057static int seq_open_net(struct inode *inode, struct file *file)
Denis V. Luneve372c412007-11-19 22:31:54 -080058{
Christoph Hellwigc3506372018-04-10 19:42:55 +020059 unsigned int state_size = PDE(inode)->state_size;
Denis V. Luneve372c412007-11-19 22:31:54 -080060 struct seq_net_private *p;
Christoph Hellwigc3506372018-04-10 19:42:55 +020061 struct net *net;
Denis V. Luneve372c412007-11-19 22:31:54 -080062
Christoph Hellwigc3506372018-04-10 19:42:55 +020063 WARN_ON_ONCE(state_size < sizeof(*p));
Denis V. Luneve372c412007-11-19 22:31:54 -080064
David Howells564def72018-05-18 11:46:15 +010065 if (file->f_mode & FMODE_WRITE && !PDE(inode)->write)
66 return -EACCES;
67
Christoph Hellwigc3506372018-04-10 19:42:55 +020068 net = get_proc_net(inode);
69 if (!net)
Denis V. Luneve372c412007-11-19 22:31:54 -080070 return -ENXIO;
71
Christoph Hellwigc3506372018-04-10 19:42:55 +020072 p = __seq_open_private(file, PDE(inode)->seq_ops, state_size);
73 if (!p) {
Denis V. Luneve372c412007-11-19 22:31:54 -080074 put_net(net);
75 return -ENOMEM;
76 }
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +090077#ifdef CONFIG_NET_NS
Denis V. Luneve372c412007-11-19 22:31:54 -080078 p->net = net;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +090079#endif
Denis V. Luneve372c412007-11-19 22:31:54 -080080 return 0;
81}
Christoph Hellwigc3506372018-04-10 19:42:55 +020082
83static int seq_release_net(struct inode *ino, struct file *f)
84{
85 struct seq_file *seq = f->private_data;
86
87 put_net(seq_file_net(seq));
88 seq_release_private(ino, f);
89 return 0;
90}
91
92static const struct file_operations proc_net_seq_fops = {
93 .open = seq_open_net,
94 .read = seq_read,
David Howells564def72018-05-18 11:46:15 +010095 .write = proc_simple_write,
Christoph Hellwigc3506372018-04-10 19:42:55 +020096 .llseek = seq_lseek,
97 .release = seq_release_net,
98};
99
100struct proc_dir_entry *proc_create_net_data(const char *name, umode_t mode,
101 struct proc_dir_entry *parent, const struct seq_operations *ops,
102 unsigned int state_size, void *data)
103{
104 struct proc_dir_entry *p;
105
106 p = proc_create_reg(name, mode, &parent, data);
107 if (!p)
108 return NULL;
Alexey Dobriyan1fde6f22019-02-01 14:20:01 -0800109 pde_force_lookup(p);
Christoph Hellwigc3506372018-04-10 19:42:55 +0200110 p->proc_fops = &proc_net_seq_fops;
111 p->seq_ops = ops;
112 p->state_size = state_size;
113 return proc_register(parent, p);
114}
115EXPORT_SYMBOL_GPL(proc_create_net_data);
Denis V. Luneve372c412007-11-19 22:31:54 -0800116
David Howells564def72018-05-18 11:46:15 +0100117/**
118 * proc_create_net_data_write - Create a writable net_ns-specific proc file
119 * @name: The name of the file.
120 * @mode: The file's access mode.
121 * @parent: The parent directory in which to create.
122 * @ops: The seq_file ops with which to read the file.
123 * @write: The write method which which to 'modify' the file.
124 * @data: Data for retrieval by PDE_DATA().
125 *
126 * Create a network namespaced proc file in the @parent directory with the
127 * specified @name and @mode that allows reading of a file that displays a
128 * series of elements and also provides for the file accepting writes that have
129 * some arbitrary effect.
130 *
131 * The functions in the @ops table are used to iterate over items to be
132 * presented and extract the readable content using the seq_file interface.
133 *
134 * The @write function is called with the data copied into a kernel space
135 * scratch buffer and has a NUL appended for convenience. The buffer may be
136 * modified by the @write function. @write should return 0 on success.
137 *
138 * The @data value is accessible from the @show and @write functions by calling
139 * PDE_DATA() on the file inode. The network namespace must be accessed by
140 * calling seq_file_net() on the seq_file struct.
141 */
142struct proc_dir_entry *proc_create_net_data_write(const char *name, umode_t mode,
143 struct proc_dir_entry *parent,
144 const struct seq_operations *ops,
145 proc_write_t write,
146 unsigned int state_size, void *data)
147{
148 struct proc_dir_entry *p;
149
150 p = proc_create_reg(name, mode, &parent, data);
151 if (!p)
152 return NULL;
Alexey Dobriyan1fde6f22019-02-01 14:20:01 -0800153 pde_force_lookup(p);
David Howells564def72018-05-18 11:46:15 +0100154 p->proc_fops = &proc_net_seq_fops;
155 p->seq_ops = ops;
156 p->state_size = state_size;
157 p->write = write;
158 return proc_register(parent, p);
159}
160EXPORT_SYMBOL_GPL(proc_create_net_data_write);
161
Christoph Hellwig3617d942018-04-13 20:38:35 +0200162static int single_open_net(struct inode *inode, struct file *file)
Pavel Emelyanovde05c552008-07-18 04:07:21 -0700163{
Christoph Hellwig3617d942018-04-13 20:38:35 +0200164 struct proc_dir_entry *de = PDE(inode);
Pavel Emelyanovde05c552008-07-18 04:07:21 -0700165 struct net *net;
Christoph Hellwig3617d942018-04-13 20:38:35 +0200166 int err;
Pavel Emelyanovde05c552008-07-18 04:07:21 -0700167
Pavel Emelyanovde05c552008-07-18 04:07:21 -0700168 net = get_proc_net(inode);
Christoph Hellwig3617d942018-04-13 20:38:35 +0200169 if (!net)
170 return -ENXIO;
Pavel Emelyanovde05c552008-07-18 04:07:21 -0700171
Christoph Hellwig3617d942018-04-13 20:38:35 +0200172 err = single_open(file, de->single_show, net);
173 if (err)
174 put_net(net);
Pavel Emelyanovde05c552008-07-18 04:07:21 -0700175 return err;
176}
Pavel Emelyanovde05c552008-07-18 04:07:21 -0700177
Christoph Hellwig3617d942018-04-13 20:38:35 +0200178static int single_release_net(struct inode *ino, struct file *f)
Pavel Emelyanovb6fcbdb2008-07-18 04:07:44 -0700179{
180 struct seq_file *seq = f->private_data;
181 put_net(seq->private);
182 return single_release(ino, f);
183}
Christoph Hellwig3617d942018-04-13 20:38:35 +0200184
185static const struct file_operations proc_net_single_fops = {
186 .open = single_open_net,
187 .read = seq_read,
David Howells564def72018-05-18 11:46:15 +0100188 .write = proc_simple_write,
Christoph Hellwig3617d942018-04-13 20:38:35 +0200189 .llseek = seq_lseek,
190 .release = single_release_net,
191};
192
193struct proc_dir_entry *proc_create_net_single(const char *name, umode_t mode,
194 struct proc_dir_entry *parent,
195 int (*show)(struct seq_file *, void *), void *data)
196{
197 struct proc_dir_entry *p;
198
199 p = proc_create_reg(name, mode, &parent, data);
200 if (!p)
201 return NULL;
Alexey Dobriyan1fde6f22019-02-01 14:20:01 -0800202 pde_force_lookup(p);
Christoph Hellwig3617d942018-04-13 20:38:35 +0200203 p->proc_fops = &proc_net_single_fops;
204 p->single_show = show;
205 return proc_register(parent, p);
206}
207EXPORT_SYMBOL_GPL(proc_create_net_single);
Pavel Emelyanovb6fcbdb2008-07-18 04:07:44 -0700208
David Howells564def72018-05-18 11:46:15 +0100209/**
210 * proc_create_net_single_write - Create a writable net_ns-specific proc file
211 * @name: The name of the file.
212 * @mode: The file's access mode.
213 * @parent: The parent directory in which to create.
214 * @show: The seqfile show method with which to read the file.
215 * @write: The write method which which to 'modify' the file.
216 * @data: Data for retrieval by PDE_DATA().
217 *
218 * Create a network-namespaced proc file in the @parent directory with the
219 * specified @name and @mode that allows reading of a file that displays a
220 * single element rather than a series and also provides for the file accepting
221 * writes that have some arbitrary effect.
222 *
223 * The @show function is called to extract the readable content via the
224 * seq_file interface.
225 *
226 * The @write function is called with the data copied into a kernel space
227 * scratch buffer and has a NUL appended for convenience. The buffer may be
228 * modified by the @write function. @write should return 0 on success.
229 *
230 * The @data value is accessible from the @show and @write functions by calling
231 * PDE_DATA() on the file inode. The network namespace must be accessed by
232 * calling seq_file_single_net() on the seq_file struct.
233 */
234struct proc_dir_entry *proc_create_net_single_write(const char *name, umode_t mode,
235 struct proc_dir_entry *parent,
236 int (*show)(struct seq_file *, void *),
237 proc_write_t write,
238 void *data)
239{
240 struct proc_dir_entry *p;
241
242 p = proc_create_reg(name, mode, &parent, data);
243 if (!p)
244 return NULL;
Alexey Dobriyan1fde6f22019-02-01 14:20:01 -0800245 pde_force_lookup(p);
David Howells564def72018-05-18 11:46:15 +0100246 p->proc_fops = &proc_net_single_fops;
247 p->single_show = show;
248 p->write = write;
249 return proc_register(parent, p);
250}
251EXPORT_SYMBOL_GPL(proc_create_net_single_write);
252
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800253static struct net *get_proc_task_net(struct inode *dir)
254{
255 struct task_struct *task;
256 struct nsproxy *ns;
257 struct net *net = NULL;
258
259 rcu_read_lock();
260 task = pid_task(proc_pid(dir), PIDTYPE_PID);
261 if (task != NULL) {
Eric W. Biederman728dba32014-02-03 19:13:49 -0800262 task_lock(task);
263 ns = task->nsproxy;
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800264 if (ns != NULL)
265 net = get_net(ns->net_ns);
Eric W. Biederman728dba32014-02-03 19:13:49 -0800266 task_unlock(task);
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800267 }
268 rcu_read_unlock();
269
270 return net;
271}
272
273static struct dentry *proc_tgid_net_lookup(struct inode *dir,
Al Viro00cd8dd2012-06-10 17:13:09 -0400274 struct dentry *dentry, unsigned int flags)
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800275{
276 struct dentry *de;
277 struct net *net;
278
279 de = ERR_PTR(-ENOENT);
280 net = get_proc_task_net(dir);
281 if (net != NULL) {
Alexey Dobriyan93ad5bc2018-02-06 15:37:31 -0800282 de = proc_lookup_de(dir, dentry, net->proc_net);
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800283 put_net(net);
284 }
285 return de;
286}
287
David Howellsa528d352017-01-31 16:46:22 +0000288static int proc_tgid_net_getattr(const struct path *path, struct kstat *stat,
289 u32 request_mask, unsigned int query_flags)
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800290{
David Howellsa528d352017-01-31 16:46:22 +0000291 struct inode *inode = d_inode(path->dentry);
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800292 struct net *net;
293
294 net = get_proc_task_net(inode);
295
296 generic_fillattr(inode, stat);
297
298 if (net != NULL) {
299 stat->nlink = net->proc_net->nlink;
300 put_net(net);
301 }
302
303 return 0;
304}
305
306const struct inode_operations proc_net_inode_operations = {
307 .lookup = proc_tgid_net_lookup,
308 .getattr = proc_tgid_net_getattr,
309};
310
Al Virof0c3b502013-05-16 12:07:31 -0400311static int proc_tgid_net_readdir(struct file *file, struct dir_context *ctx)
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800312{
313 int ret;
314 struct net *net;
315
316 ret = -EINVAL;
Al Virof0c3b502013-05-16 12:07:31 -0400317 net = get_proc_task_net(file_inode(file));
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800318 if (net != NULL) {
Alexey Dobriyan93ad5bc2018-02-06 15:37:31 -0800319 ret = proc_readdir_de(file, ctx, net->proc_net);
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800320 put_net(net);
321 }
322 return ret;
323}
324
325const struct file_operations proc_net_operations = {
Alexey Dobriyanb4df2b92008-10-27 22:48:36 +0300326 .llseek = generic_file_llseek,
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800327 .read = generic_read_dir,
Al Virof50752e2016-04-20 17:13:54 -0400328 .iterate_shared = proc_tgid_net_readdir,
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800329};
330
Pavel Emelyanov46650792007-10-08 20:38:39 -0700331static __net_init int proc_net_ns_init(struct net *net)
David S. Miller3c12afe2007-09-12 14:18:18 +0200332{
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800333 struct proc_dir_entry *netd, *net_statd;
Dmitry Torokhovc1104862016-08-10 14:36:01 -0700334 kuid_t uid;
335 kgid_t gid;
David S. Miller3c12afe2007-09-12 14:18:18 +0200336 int err;
337
338 err = -ENOMEM;
Alexey Dobriyanb4884f22018-04-10 16:31:52 -0700339 netd = kmem_cache_zalloc(proc_dir_entry_cache, GFP_KERNEL);
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800340 if (!netd)
David S. Miller3c12afe2007-09-12 14:18:18 +0200341 goto out;
342
Alexey Dobriyan4f113432018-04-10 16:32:20 -0700343 netd->subdir = RB_ROOT;
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800344 netd->data = net;
345 netd->nlink = 2;
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800346 netd->namelen = 3;
347 netd->parent = &proc_root;
Alexey Dobriyanb4884f22018-04-10 16:31:52 -0700348 netd->name = netd->inline_name;
David Howells09570f92011-07-27 21:47:03 +0300349 memcpy(netd->name, "net", 4);
David S. Miller3c12afe2007-09-12 14:18:18 +0200350
Dmitry Torokhovc1104862016-08-10 14:36:01 -0700351 uid = make_kuid(net->user_ns, 0);
352 if (!uid_valid(uid))
353 uid = netd->uid;
354
355 gid = make_kgid(net->user_ns, 0);
356 if (!gid_valid(gid))
357 gid = netd->gid;
358
359 proc_set_user(netd, uid, gid);
360
David S. Miller3c12afe2007-09-12 14:18:18 +0200361 err = -EEXIST;
Denis V. Luneve5d69b92008-01-10 03:51:41 -0800362 net_statd = proc_net_mkdir(net, "stat", netd);
David S. Miller3c12afe2007-09-12 14:18:18 +0200363 if (!net_statd)
364 goto free_net;
365
David S. Miller3c12afe2007-09-12 14:18:18 +0200366 net->proc_net = netd;
367 net->proc_net_stat = net_statd;
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800368 return 0;
David S. Miller3c12afe2007-09-12 14:18:18 +0200369
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800370free_net:
Alexey Dobriyanb4884f22018-04-10 16:31:52 -0700371 pde_free(netd);
David S. Miller3c12afe2007-09-12 14:18:18 +0200372out:
373 return err;
David S. Miller3c12afe2007-09-12 14:18:18 +0200374}
375
Pavel Emelyanov46650792007-10-08 20:38:39 -0700376static __net_exit void proc_net_ns_exit(struct net *net)
David S. Miller3c12afe2007-09-12 14:18:18 +0200377{
378 remove_proc_entry("stat", net->proc_net);
Alexey Dobriyanb4884f22018-04-10 16:31:52 -0700379 pde_free(net->proc_net);
David S. Miller3c12afe2007-09-12 14:18:18 +0200380}
381
Denis V. Lunev022cbae2007-11-13 03:23:50 -0800382static struct pernet_operations __net_initdata proc_net_ns_ops = {
David S. Miller3c12afe2007-09-12 14:18:18 +0200383 .init = proc_net_ns_init,
384 .exit = proc_net_ns_exit,
385};
386
Pavel Emelyanov46650792007-10-08 20:38:39 -0700387int __init proc_net_init(void)
David S. Miller3c12afe2007-09-12 14:18:18 +0200388{
Linus Torvalds155134f2014-08-10 21:24:59 -0700389 proc_symlink("net", NULL, "self/net");
David S. Miller3c12afe2007-09-12 14:18:18 +0200390
391 return register_pernet_subsys(&proc_net_ns_ops);
392}