blob: fc5b103512e7231b1542e4495189721b7728da31 [file] [log] [blame]
Daniel Borkmannb2197752015-10-29 14:58:09 +01001/*
2 * Minimal file system backend for holding eBPF maps and programs,
3 * used by bpf(2) object pinning.
4 *
5 * Authors:
6 *
7 * Daniel Borkmann <daniel@iogearbox.net>
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * version 2 as published by the Free Software Foundation.
12 */
13
Paul Gortmakera536a6e2016-07-11 12:51:01 -040014#include <linux/init.h>
Daniel Borkmannb2197752015-10-29 14:58:09 +010015#include <linux/magic.h>
16#include <linux/major.h>
17#include <linux/mount.h>
18#include <linux/namei.h>
19#include <linux/fs.h>
20#include <linux/kdev_t.h>
Daniel Borkmanna3af5f82016-11-26 01:28:08 +010021#include <linux/parser.h>
Daniel Borkmannb2197752015-10-29 14:58:09 +010022#include <linux/filter.h>
23#include <linux/bpf.h>
Daniel Borkmanna67edbf2017-01-25 02:28:18 +010024#include <linux/bpf_trace.h>
Daniel Borkmannb2197752015-10-29 14:58:09 +010025
26enum bpf_type {
27 BPF_TYPE_UNSPEC = 0,
28 BPF_TYPE_PROG,
29 BPF_TYPE_MAP,
30};
31
32static void *bpf_any_get(void *raw, enum bpf_type type)
33{
34 switch (type) {
35 case BPF_TYPE_PROG:
Alexei Starovoitov92117d82016-04-27 18:56:20 -070036 raw = bpf_prog_inc(raw);
Daniel Borkmannb2197752015-10-29 14:58:09 +010037 break;
38 case BPF_TYPE_MAP:
Alexei Starovoitov92117d82016-04-27 18:56:20 -070039 raw = bpf_map_inc(raw, true);
Daniel Borkmannb2197752015-10-29 14:58:09 +010040 break;
41 default:
42 WARN_ON_ONCE(1);
43 break;
44 }
45
46 return raw;
47}
48
49static void bpf_any_put(void *raw, enum bpf_type type)
50{
51 switch (type) {
52 case BPF_TYPE_PROG:
53 bpf_prog_put(raw);
54 break;
55 case BPF_TYPE_MAP:
Daniel Borkmannc9da1612015-11-24 21:28:15 +010056 bpf_map_put_with_uref(raw);
Daniel Borkmannb2197752015-10-29 14:58:09 +010057 break;
58 default:
59 WARN_ON_ONCE(1);
60 break;
61 }
62}
63
64static void *bpf_fd_probe_obj(u32 ufd, enum bpf_type *type)
65{
66 void *raw;
67
68 *type = BPF_TYPE_MAP;
Daniel Borkmannc9da1612015-11-24 21:28:15 +010069 raw = bpf_map_get_with_uref(ufd);
Daniel Borkmannb2197752015-10-29 14:58:09 +010070 if (IS_ERR(raw)) {
71 *type = BPF_TYPE_PROG;
72 raw = bpf_prog_get(ufd);
73 }
74
75 return raw;
76}
77
78static const struct inode_operations bpf_dir_iops;
79
80static const struct inode_operations bpf_prog_iops = { };
81static const struct inode_operations bpf_map_iops = { };
82
83static struct inode *bpf_get_inode(struct super_block *sb,
84 const struct inode *dir,
85 umode_t mode)
86{
87 struct inode *inode;
88
89 switch (mode & S_IFMT) {
90 case S_IFDIR:
91 case S_IFREG:
Daniel Borkmann0f986212016-10-29 02:30:46 +020092 case S_IFLNK:
Daniel Borkmannb2197752015-10-29 14:58:09 +010093 break;
94 default:
95 return ERR_PTR(-EINVAL);
96 }
97
98 inode = new_inode(sb);
99 if (!inode)
100 return ERR_PTR(-ENOSPC);
101
102 inode->i_ino = get_next_ino();
Deepa Dinamani078cd822016-09-14 07:48:04 -0700103 inode->i_atime = current_time(inode);
Daniel Borkmannb2197752015-10-29 14:58:09 +0100104 inode->i_mtime = inode->i_atime;
105 inode->i_ctime = inode->i_atime;
106
107 inode_init_owner(inode, dir, mode);
108
109 return inode;
110}
111
112static int bpf_inode_type(const struct inode *inode, enum bpf_type *type)
113{
114 *type = BPF_TYPE_UNSPEC;
115 if (inode->i_op == &bpf_prog_iops)
116 *type = BPF_TYPE_PROG;
117 else if (inode->i_op == &bpf_map_iops)
118 *type = BPF_TYPE_MAP;
119 else
120 return -EACCES;
121
122 return 0;
123}
124
Daniel Borkmann0f986212016-10-29 02:30:46 +0200125static void bpf_dentry_finalize(struct dentry *dentry, struct inode *inode,
126 struct inode *dir)
127{
128 d_instantiate(dentry, inode);
129 dget(dentry);
130
131 dir->i_mtime = current_time(dir);
132 dir->i_ctime = dir->i_mtime;
133}
134
Daniel Borkmannb2197752015-10-29 14:58:09 +0100135static int bpf_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
136{
137 struct inode *inode;
138
Daniel Borkmannb2197752015-10-29 14:58:09 +0100139 inode = bpf_get_inode(dir->i_sb, dir, mode | S_IFDIR);
140 if (IS_ERR(inode))
141 return PTR_ERR(inode);
142
143 inode->i_op = &bpf_dir_iops;
144 inode->i_fop = &simple_dir_operations;
145
146 inc_nlink(inode);
147 inc_nlink(dir);
148
Daniel Borkmann0f986212016-10-29 02:30:46 +0200149 bpf_dentry_finalize(dentry, inode, dir);
Daniel Borkmannb2197752015-10-29 14:58:09 +0100150 return 0;
151}
152
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700153struct map_iter {
154 void *key;
155 bool done;
156};
157
158static struct map_iter *map_iter(struct seq_file *m)
159{
160 return m->private;
161}
162
163static struct bpf_map *seq_file_to_map(struct seq_file *m)
164{
165 return file_inode(m->file)->i_private;
166}
167
168static void map_iter_free(struct map_iter *iter)
169{
170 if (iter) {
171 kfree(iter->key);
172 kfree(iter);
173 }
174}
175
176static struct map_iter *map_iter_alloc(struct bpf_map *map)
177{
178 struct map_iter *iter;
179
180 iter = kzalloc(sizeof(*iter), GFP_KERNEL | __GFP_NOWARN);
181 if (!iter)
182 goto error;
183
184 iter->key = kzalloc(map->key_size, GFP_KERNEL | __GFP_NOWARN);
185 if (!iter->key)
186 goto error;
187
188 return iter;
189
190error:
191 map_iter_free(iter);
192 return NULL;
193}
194
195static void *map_seq_next(struct seq_file *m, void *v, loff_t *pos)
196{
197 struct bpf_map *map = seq_file_to_map(m);
198 void *key = map_iter(m)->key;
Yonghong Songdc1508a2018-08-09 08:55:19 -0700199 void *prev_key;
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700200
201 if (map_iter(m)->done)
202 return NULL;
203
204 if (unlikely(v == SEQ_START_TOKEN))
Yonghong Songdc1508a2018-08-09 08:55:19 -0700205 prev_key = NULL;
206 else
207 prev_key = key;
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700208
Yonghong Songdc1508a2018-08-09 08:55:19 -0700209 if (map->ops->map_get_next_key(map, prev_key, key)) {
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700210 map_iter(m)->done = true;
211 return NULL;
212 }
213
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700214 ++(*pos);
215 return key;
216}
217
218static void *map_seq_start(struct seq_file *m, loff_t *pos)
219{
220 if (map_iter(m)->done)
221 return NULL;
222
223 return *pos ? map_iter(m)->key : SEQ_START_TOKEN;
224}
225
226static void map_seq_stop(struct seq_file *m, void *v)
227{
228}
229
230static int map_seq_show(struct seq_file *m, void *v)
231{
232 struct bpf_map *map = seq_file_to_map(m);
233 void *key = map_iter(m)->key;
234
235 if (unlikely(v == SEQ_START_TOKEN)) {
236 seq_puts(m, "# WARNING!! The output is for debug purpose only\n");
237 seq_puts(m, "# WARNING!! The output format will change\n");
238 } else {
239 map->ops->map_seq_show_elem(map, key, m);
240 }
241
242 return 0;
243}
244
245static const struct seq_operations bpffs_map_seq_ops = {
246 .start = map_seq_start,
247 .next = map_seq_next,
248 .show = map_seq_show,
249 .stop = map_seq_stop,
250};
251
252static int bpffs_map_open(struct inode *inode, struct file *file)
253{
254 struct bpf_map *map = inode->i_private;
255 struct map_iter *iter;
256 struct seq_file *m;
257 int err;
258
259 iter = map_iter_alloc(map);
260 if (!iter)
261 return -ENOMEM;
262
263 err = seq_open(file, &bpffs_map_seq_ops);
264 if (err) {
265 map_iter_free(iter);
266 return err;
267 }
268
269 m = file->private_data;
270 m->private = iter;
271
272 return 0;
273}
274
275static int bpffs_map_release(struct inode *inode, struct file *file)
276{
277 struct seq_file *m = file->private_data;
278
279 map_iter_free(map_iter(m));
280
281 return seq_release(inode, file);
282}
283
284/* bpffs_map_fops should only implement the basic
285 * read operation for a BPF map. The purpose is to
286 * provide a simple user intuitive way to do
287 * "cat bpffs/pathto/a-pinned-map".
288 *
289 * Other operations (e.g. write, lookup...) should be realized by
290 * the userspace tools (e.g. bpftool) through the
291 * BPF_OBJ_GET_INFO_BY_FD and the map's lookup/update
292 * interface.
293 */
294static const struct file_operations bpffs_map_fops = {
295 .open = bpffs_map_open,
296 .read = seq_read,
297 .release = bpffs_map_release,
298};
299
Daniel Borkmannb1655852018-06-08 18:10:34 +0200300static int bpffs_obj_open(struct inode *inode, struct file *file)
301{
302 return -EIO;
303}
304
305static const struct file_operations bpffs_obj_fops = {
306 .open = bpffs_obj_open,
307};
308
Al Viroa4a06832017-12-01 17:22:19 -0500309static int bpf_mkobj_ops(struct dentry *dentry, umode_t mode, void *raw,
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700310 const struct inode_operations *iops,
311 const struct file_operations *fops)
Daniel Borkmannb2197752015-10-29 14:58:09 +0100312{
Al Viroa4a06832017-12-01 17:22:19 -0500313 struct inode *dir = dentry->d_parent->d_inode;
314 struct inode *inode = bpf_get_inode(dir->i_sb, dir, mode);
Daniel Borkmannb2197752015-10-29 14:58:09 +0100315 if (IS_ERR(inode))
316 return PTR_ERR(inode);
317
318 inode->i_op = iops;
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700319 inode->i_fop = fops;
Al Viroa4a06832017-12-01 17:22:19 -0500320 inode->i_private = raw;
Daniel Borkmannb2197752015-10-29 14:58:09 +0100321
Daniel Borkmann0f986212016-10-29 02:30:46 +0200322 bpf_dentry_finalize(dentry, inode, dir);
Daniel Borkmannb2197752015-10-29 14:58:09 +0100323 return 0;
324}
325
Al Viroa4a06832017-12-01 17:22:19 -0500326static int bpf_mkprog(struct dentry *dentry, umode_t mode, void *arg)
Daniel Borkmannb2197752015-10-29 14:58:09 +0100327{
Daniel Borkmannb1655852018-06-08 18:10:34 +0200328 return bpf_mkobj_ops(dentry, mode, arg, &bpf_prog_iops,
329 &bpffs_obj_fops);
Al Viroa4a06832017-12-01 17:22:19 -0500330}
Daniel Borkmannb2197752015-10-29 14:58:09 +0100331
Al Viroa4a06832017-12-01 17:22:19 -0500332static int bpf_mkmap(struct dentry *dentry, umode_t mode, void *arg)
333{
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700334 struct bpf_map *map = arg;
335
336 return bpf_mkobj_ops(dentry, mode, arg, &bpf_map_iops,
Daniel Borkmannb1655852018-06-08 18:10:34 +0200337 map->btf ? &bpffs_map_fops : &bpffs_obj_fops);
Daniel Borkmannb2197752015-10-29 14:58:09 +0100338}
339
Al Viro0c93b7d2016-03-25 12:06:51 -0400340static struct dentry *
341bpf_lookup(struct inode *dir, struct dentry *dentry, unsigned flags)
Daniel Borkmannbb35a6e2015-12-10 22:33:49 +0100342{
Quentin Monnet6d8cb042018-03-08 23:46:33 -0800343 /* Dots in names (e.g. "/sys/fs/bpf/foo.bar") are reserved for future
344 * extensions.
345 */
Al Viro0c93b7d2016-03-25 12:06:51 -0400346 if (strchr(dentry->d_name.name, '.'))
347 return ERR_PTR(-EPERM);
Daniel Borkmann0f986212016-10-29 02:30:46 +0200348
Al Viro0c93b7d2016-03-25 12:06:51 -0400349 return simple_lookup(dir, dentry, flags);
Daniel Borkmannbb35a6e2015-12-10 22:33:49 +0100350}
351
Daniel Borkmann0f986212016-10-29 02:30:46 +0200352static int bpf_symlink(struct inode *dir, struct dentry *dentry,
353 const char *target)
354{
355 char *link = kstrdup(target, GFP_USER | __GFP_NOWARN);
356 struct inode *inode;
357
358 if (!link)
359 return -ENOMEM;
360
361 inode = bpf_get_inode(dir->i_sb, dir, S_IRWXUGO | S_IFLNK);
362 if (IS_ERR(inode)) {
363 kfree(link);
364 return PTR_ERR(inode);
365 }
366
367 inode->i_op = &simple_symlink_inode_operations;
368 inode->i_link = link;
369
370 bpf_dentry_finalize(dentry, inode, dir);
371 return 0;
372}
373
Daniel Borkmannb2197752015-10-29 14:58:09 +0100374static const struct inode_operations bpf_dir_iops = {
Al Viro0c93b7d2016-03-25 12:06:51 -0400375 .lookup = bpf_lookup,
Daniel Borkmannb2197752015-10-29 14:58:09 +0100376 .mkdir = bpf_mkdir,
Daniel Borkmann0f986212016-10-29 02:30:46 +0200377 .symlink = bpf_symlink,
Daniel Borkmannb2197752015-10-29 14:58:09 +0100378 .rmdir = simple_rmdir,
Al Viro0c93b7d2016-03-25 12:06:51 -0400379 .rename = simple_rename,
380 .link = simple_link,
Daniel Borkmannb2197752015-10-29 14:58:09 +0100381 .unlink = simple_unlink,
382};
383
384static int bpf_obj_do_pin(const struct filename *pathname, void *raw,
385 enum bpf_type type)
386{
387 struct dentry *dentry;
388 struct inode *dir;
389 struct path path;
390 umode_t mode;
Daniel Borkmannb2197752015-10-29 14:58:09 +0100391 int ret;
392
393 dentry = kern_path_create(AT_FDCWD, pathname->name, &path, 0);
394 if (IS_ERR(dentry))
395 return PTR_ERR(dentry);
396
397 mode = S_IFREG | ((S_IRUSR | S_IWUSR) & ~current_umask());
Daniel Borkmannb2197752015-10-29 14:58:09 +0100398
Al Viroa4a06832017-12-01 17:22:19 -0500399 ret = security_path_mknod(&path, dentry, mode, 0);
Daniel Borkmannb2197752015-10-29 14:58:09 +0100400 if (ret)
401 goto out;
402
403 dir = d_inode(path.dentry);
404 if (dir->i_op != &bpf_dir_iops) {
405 ret = -EPERM;
406 goto out;
407 }
408
Al Viroa4a06832017-12-01 17:22:19 -0500409 switch (type) {
410 case BPF_TYPE_PROG:
411 ret = vfs_mkobj(dentry, mode, bpf_mkprog, raw);
412 break;
413 case BPF_TYPE_MAP:
414 ret = vfs_mkobj(dentry, mode, bpf_mkmap, raw);
415 break;
416 default:
417 ret = -EPERM;
418 }
Daniel Borkmannb2197752015-10-29 14:58:09 +0100419out:
420 done_path_create(&path, dentry);
421 return ret;
422}
423
424int bpf_obj_pin_user(u32 ufd, const char __user *pathname)
425{
426 struct filename *pname;
427 enum bpf_type type;
428 void *raw;
429 int ret;
430
431 pname = getname(pathname);
432 if (IS_ERR(pname))
433 return PTR_ERR(pname);
434
435 raw = bpf_fd_probe_obj(ufd, &type);
436 if (IS_ERR(raw)) {
437 ret = PTR_ERR(raw);
438 goto out;
439 }
440
441 ret = bpf_obj_do_pin(pname, raw, type);
442 if (ret != 0)
443 bpf_any_put(raw, type);
444out:
445 putname(pname);
446 return ret;
447}
448
449static void *bpf_obj_do_get(const struct filename *pathname,
Chenbo Feng6e71b042017-10-18 13:00:22 -0700450 enum bpf_type *type, int flags)
Daniel Borkmannb2197752015-10-29 14:58:09 +0100451{
452 struct inode *inode;
453 struct path path;
454 void *raw;
455 int ret;
456
457 ret = kern_path(pathname->name, LOOKUP_FOLLOW, &path);
458 if (ret)
459 return ERR_PTR(ret);
460
461 inode = d_backing_inode(path.dentry);
Chenbo Feng6e71b042017-10-18 13:00:22 -0700462 ret = inode_permission(inode, ACC_MODE(flags));
Daniel Borkmannb2197752015-10-29 14:58:09 +0100463 if (ret)
464 goto out;
465
466 ret = bpf_inode_type(inode, type);
467 if (ret)
468 goto out;
469
470 raw = bpf_any_get(inode->i_private, *type);
Alexei Starovoitov92117d82016-04-27 18:56:20 -0700471 if (!IS_ERR(raw))
472 touch_atime(&path);
Daniel Borkmannb2197752015-10-29 14:58:09 +0100473
474 path_put(&path);
475 return raw;
476out:
477 path_put(&path);
478 return ERR_PTR(ret);
479}
480
Chenbo Feng6e71b042017-10-18 13:00:22 -0700481int bpf_obj_get_user(const char __user *pathname, int flags)
Daniel Borkmannb2197752015-10-29 14:58:09 +0100482{
483 enum bpf_type type = BPF_TYPE_UNSPEC;
484 struct filename *pname;
485 int ret = -ENOENT;
Chenbo Feng6e71b042017-10-18 13:00:22 -0700486 int f_flags;
Daniel Borkmannb2197752015-10-29 14:58:09 +0100487 void *raw;
488
Chenbo Feng6e71b042017-10-18 13:00:22 -0700489 f_flags = bpf_get_file_flag(flags);
490 if (f_flags < 0)
491 return f_flags;
492
Daniel Borkmannb2197752015-10-29 14:58:09 +0100493 pname = getname(pathname);
494 if (IS_ERR(pname))
495 return PTR_ERR(pname);
496
Chenbo Feng6e71b042017-10-18 13:00:22 -0700497 raw = bpf_obj_do_get(pname, &type, f_flags);
Daniel Borkmannb2197752015-10-29 14:58:09 +0100498 if (IS_ERR(raw)) {
499 ret = PTR_ERR(raw);
500 goto out;
501 }
502
503 if (type == BPF_TYPE_PROG)
504 ret = bpf_prog_new_fd(raw);
505 else if (type == BPF_TYPE_MAP)
Chenbo Feng6e71b042017-10-18 13:00:22 -0700506 ret = bpf_map_new_fd(raw, f_flags);
Daniel Borkmannb2197752015-10-29 14:58:09 +0100507 else
508 goto out;
509
Alexei Starovoitov4d220ed2018-04-28 19:56:37 -0700510 if (ret < 0)
Daniel Borkmannb2197752015-10-29 14:58:09 +0100511 bpf_any_put(raw, type);
512out:
513 putname(pname);
514 return ret;
515}
Al Viro040ee692017-12-02 20:20:38 -0500516
517static struct bpf_prog *__get_prog_inode(struct inode *inode, enum bpf_prog_type type)
518{
519 struct bpf_prog *prog;
520 int ret = inode_permission(inode, MAY_READ | MAY_WRITE);
521 if (ret)
522 return ERR_PTR(ret);
523
524 if (inode->i_op == &bpf_map_iops)
525 return ERR_PTR(-EINVAL);
526 if (inode->i_op != &bpf_prog_iops)
527 return ERR_PTR(-EACCES);
528
529 prog = inode->i_private;
530
531 ret = security_bpf_prog(prog);
532 if (ret < 0)
533 return ERR_PTR(ret);
534
535 if (!bpf_prog_get_ok(prog, &type, false))
536 return ERR_PTR(-EINVAL);
537
538 return bpf_prog_inc(prog);
539}
540
541struct bpf_prog *bpf_prog_get_type_path(const char *name, enum bpf_prog_type type)
542{
543 struct bpf_prog *prog;
544 struct path path;
545 int ret = kern_path(name, LOOKUP_FOLLOW, &path);
546 if (ret)
547 return ERR_PTR(ret);
548 prog = __get_prog_inode(d_backing_inode(path.dentry), type);
549 if (!IS_ERR(prog))
550 touch_atime(&path);
551 path_put(&path);
552 return prog;
553}
554EXPORT_SYMBOL(bpf_prog_get_type_path);
Daniel Borkmannb2197752015-10-29 14:58:09 +0100555
556static void bpf_evict_inode(struct inode *inode)
557{
558 enum bpf_type type;
559
560 truncate_inode_pages_final(&inode->i_data);
561 clear_inode(inode);
562
Daniel Borkmann0f986212016-10-29 02:30:46 +0200563 if (S_ISLNK(inode->i_mode))
564 kfree(inode->i_link);
Daniel Borkmannb2197752015-10-29 14:58:09 +0100565 if (!bpf_inode_type(inode, &type))
566 bpf_any_put(inode->i_private, type);
567}
568
David Howells4cc7c182017-07-05 16:24:49 +0100569/*
570 * Display the mount options in /proc/mounts.
571 */
572static int bpf_show_options(struct seq_file *m, struct dentry *root)
573{
574 umode_t mode = d_inode(root)->i_mode & S_IALLUGO & ~S_ISVTX;
575
576 if (mode != S_IRWXUGO)
577 seq_printf(m, ",mode=%o", mode);
578 return 0;
579}
580
Daniel Borkmannb2197752015-10-29 14:58:09 +0100581static const struct super_operations bpf_super_ops = {
582 .statfs = simple_statfs,
583 .drop_inode = generic_delete_inode,
David Howells4cc7c182017-07-05 16:24:49 +0100584 .show_options = bpf_show_options,
Daniel Borkmannb2197752015-10-29 14:58:09 +0100585 .evict_inode = bpf_evict_inode,
586};
587
Daniel Borkmanna3af5f82016-11-26 01:28:08 +0100588enum {
589 OPT_MODE,
590 OPT_ERR,
591};
592
593static const match_table_t bpf_mount_tokens = {
594 { OPT_MODE, "mode=%o" },
595 { OPT_ERR, NULL },
596};
597
598struct bpf_mount_opts {
599 umode_t mode;
600};
601
602static int bpf_parse_options(char *data, struct bpf_mount_opts *opts)
603{
604 substring_t args[MAX_OPT_ARGS];
605 int option, token;
606 char *ptr;
607
608 opts->mode = S_IRWXUGO;
609
610 while ((ptr = strsep(&data, ",")) != NULL) {
611 if (!*ptr)
612 continue;
613
614 token = match_token(ptr, bpf_mount_tokens, args);
615 switch (token) {
616 case OPT_MODE:
617 if (match_octal(&args[0], &option))
618 return -EINVAL;
619 opts->mode = option & S_IALLUGO;
620 break;
621 /* We might like to report bad mount options here, but
622 * traditionally we've ignored all mount options, so we'd
623 * better continue to ignore non-existing options for bpf.
624 */
625 }
626 }
627
628 return 0;
629}
630
Daniel Borkmannb2197752015-10-29 14:58:09 +0100631static int bpf_fill_super(struct super_block *sb, void *data, int silent)
632{
Eric Biggerscda37122017-03-25 21:15:37 -0700633 static const struct tree_descr bpf_rfiles[] = { { "" } };
Daniel Borkmanna3af5f82016-11-26 01:28:08 +0100634 struct bpf_mount_opts opts;
Daniel Borkmannb2197752015-10-29 14:58:09 +0100635 struct inode *inode;
636 int ret;
637
Daniel Borkmanna3af5f82016-11-26 01:28:08 +0100638 ret = bpf_parse_options(data, &opts);
639 if (ret)
640 return ret;
641
Daniel Borkmannb2197752015-10-29 14:58:09 +0100642 ret = simple_fill_super(sb, BPF_FS_MAGIC, bpf_rfiles);
643 if (ret)
644 return ret;
645
646 sb->s_op = &bpf_super_ops;
647
648 inode = sb->s_root->d_inode;
649 inode->i_op = &bpf_dir_iops;
650 inode->i_mode &= ~S_IALLUGO;
Daniel Borkmanna3af5f82016-11-26 01:28:08 +0100651 inode->i_mode |= S_ISVTX | opts.mode;
Daniel Borkmannb2197752015-10-29 14:58:09 +0100652
653 return 0;
654}
655
656static struct dentry *bpf_mount(struct file_system_type *type, int flags,
657 const char *dev_name, void *data)
658{
Eric W. Biedermane27f4a92016-05-20 17:22:48 -0500659 return mount_nodev(type, flags, data, bpf_fill_super);
Daniel Borkmannb2197752015-10-29 14:58:09 +0100660}
661
662static struct file_system_type bpf_fs_type = {
663 .owner = THIS_MODULE,
664 .name = "bpf",
665 .mount = bpf_mount,
666 .kill_sb = kill_litter_super,
Daniel Borkmannb2197752015-10-29 14:58:09 +0100667};
668
Daniel Borkmannb2197752015-10-29 14:58:09 +0100669static int __init bpf_init(void)
670{
671 int ret;
672
673 ret = sysfs_create_mount_point(fs_kobj, "bpf");
674 if (ret)
675 return ret;
676
677 ret = register_filesystem(&bpf_fs_type);
678 if (ret)
679 sysfs_remove_mount_point(fs_kobj, "bpf");
680
681 return ret;
682}
683fs_initcall(bpf_init);