mm/slab: sanity-check page type when looking up cache
[linux/fpc-iii.git] / kernel / bpf / inode.c
blobcc0d0cf114e3396940c13f3fa5384454b13014ca
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * Minimal file system backend for holding eBPF maps and programs,
4 * used by bpf(2) object pinning.
6 * Authors:
8 * Daniel Borkmann <daniel@iogearbox.net>
9 */
11 #include <linux/init.h>
12 #include <linux/magic.h>
13 #include <linux/major.h>
14 #include <linux/mount.h>
15 #include <linux/namei.h>
16 #include <linux/fs.h>
17 #include <linux/kdev_t.h>
18 #include <linux/parser.h>
19 #include <linux/filter.h>
20 #include <linux/bpf.h>
21 #include <linux/bpf_trace.h>
23 enum bpf_type {
24 BPF_TYPE_UNSPEC = 0,
25 BPF_TYPE_PROG,
26 BPF_TYPE_MAP,
29 static void *bpf_any_get(void *raw, enum bpf_type type)
31 switch (type) {
32 case BPF_TYPE_PROG:
33 raw = bpf_prog_inc(raw);
34 break;
35 case BPF_TYPE_MAP:
36 raw = bpf_map_inc(raw, true);
37 break;
38 default:
39 WARN_ON_ONCE(1);
40 break;
43 return raw;
46 static void bpf_any_put(void *raw, enum bpf_type type)
48 switch (type) {
49 case BPF_TYPE_PROG:
50 bpf_prog_put(raw);
51 break;
52 case BPF_TYPE_MAP:
53 bpf_map_put_with_uref(raw);
54 break;
55 default:
56 WARN_ON_ONCE(1);
57 break;
61 static void *bpf_fd_probe_obj(u32 ufd, enum bpf_type *type)
63 void *raw;
65 *type = BPF_TYPE_MAP;
66 raw = bpf_map_get_with_uref(ufd);
67 if (IS_ERR(raw)) {
68 *type = BPF_TYPE_PROG;
69 raw = bpf_prog_get(ufd);
72 return raw;
75 static const struct inode_operations bpf_dir_iops;
77 static const struct inode_operations bpf_prog_iops = { };
78 static const struct inode_operations bpf_map_iops = { };
80 static struct inode *bpf_get_inode(struct super_block *sb,
81 const struct inode *dir,
82 umode_t mode)
84 struct inode *inode;
86 switch (mode & S_IFMT) {
87 case S_IFDIR:
88 case S_IFREG:
89 case S_IFLNK:
90 break;
91 default:
92 return ERR_PTR(-EINVAL);
95 inode = new_inode(sb);
96 if (!inode)
97 return ERR_PTR(-ENOSPC);
99 inode->i_ino = get_next_ino();
100 inode->i_atime = current_time(inode);
101 inode->i_mtime = inode->i_atime;
102 inode->i_ctime = inode->i_atime;
104 inode_init_owner(inode, dir, mode);
106 return inode;
109 static int bpf_inode_type(const struct inode *inode, enum bpf_type *type)
111 *type = BPF_TYPE_UNSPEC;
112 if (inode->i_op == &bpf_prog_iops)
113 *type = BPF_TYPE_PROG;
114 else if (inode->i_op == &bpf_map_iops)
115 *type = BPF_TYPE_MAP;
116 else
117 return -EACCES;
119 return 0;
122 static void bpf_dentry_finalize(struct dentry *dentry, struct inode *inode,
123 struct inode *dir)
125 d_instantiate(dentry, inode);
126 dget(dentry);
128 dir->i_mtime = current_time(dir);
129 dir->i_ctime = dir->i_mtime;
132 static int bpf_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
134 struct inode *inode;
136 inode = bpf_get_inode(dir->i_sb, dir, mode | S_IFDIR);
137 if (IS_ERR(inode))
138 return PTR_ERR(inode);
140 inode->i_op = &bpf_dir_iops;
141 inode->i_fop = &simple_dir_operations;
143 inc_nlink(inode);
144 inc_nlink(dir);
146 bpf_dentry_finalize(dentry, inode, dir);
147 return 0;
150 struct map_iter {
151 void *key;
152 bool done;
155 static struct map_iter *map_iter(struct seq_file *m)
157 return m->private;
160 static struct bpf_map *seq_file_to_map(struct seq_file *m)
162 return file_inode(m->file)->i_private;
165 static void map_iter_free(struct map_iter *iter)
167 if (iter) {
168 kfree(iter->key);
169 kfree(iter);
173 static struct map_iter *map_iter_alloc(struct bpf_map *map)
175 struct map_iter *iter;
177 iter = kzalloc(sizeof(*iter), GFP_KERNEL | __GFP_NOWARN);
178 if (!iter)
179 goto error;
181 iter->key = kzalloc(map->key_size, GFP_KERNEL | __GFP_NOWARN);
182 if (!iter->key)
183 goto error;
185 return iter;
187 error:
188 map_iter_free(iter);
189 return NULL;
192 static void *map_seq_next(struct seq_file *m, void *v, loff_t *pos)
194 struct bpf_map *map = seq_file_to_map(m);
195 void *key = map_iter(m)->key;
196 void *prev_key;
198 if (map_iter(m)->done)
199 return NULL;
201 if (unlikely(v == SEQ_START_TOKEN))
202 prev_key = NULL;
203 else
204 prev_key = key;
206 if (map->ops->map_get_next_key(map, prev_key, key)) {
207 map_iter(m)->done = true;
208 return NULL;
211 ++(*pos);
212 return key;
215 static void *map_seq_start(struct seq_file *m, loff_t *pos)
217 if (map_iter(m)->done)
218 return NULL;
220 return *pos ? map_iter(m)->key : SEQ_START_TOKEN;
223 static void map_seq_stop(struct seq_file *m, void *v)
227 static int map_seq_show(struct seq_file *m, void *v)
229 struct bpf_map *map = seq_file_to_map(m);
230 void *key = map_iter(m)->key;
232 if (unlikely(v == SEQ_START_TOKEN)) {
233 seq_puts(m, "# WARNING!! The output is for debug purpose only\n");
234 seq_puts(m, "# WARNING!! The output format will change\n");
235 } else {
236 map->ops->map_seq_show_elem(map, key, m);
239 return 0;
242 static const struct seq_operations bpffs_map_seq_ops = {
243 .start = map_seq_start,
244 .next = map_seq_next,
245 .show = map_seq_show,
246 .stop = map_seq_stop,
249 static int bpffs_map_open(struct inode *inode, struct file *file)
251 struct bpf_map *map = inode->i_private;
252 struct map_iter *iter;
253 struct seq_file *m;
254 int err;
256 iter = map_iter_alloc(map);
257 if (!iter)
258 return -ENOMEM;
260 err = seq_open(file, &bpffs_map_seq_ops);
261 if (err) {
262 map_iter_free(iter);
263 return err;
266 m = file->private_data;
267 m->private = iter;
269 return 0;
272 static int bpffs_map_release(struct inode *inode, struct file *file)
274 struct seq_file *m = file->private_data;
276 map_iter_free(map_iter(m));
278 return seq_release(inode, file);
281 /* bpffs_map_fops should only implement the basic
282 * read operation for a BPF map. The purpose is to
283 * provide a simple user intuitive way to do
284 * "cat bpffs/pathto/a-pinned-map".
286 * Other operations (e.g. write, lookup...) should be realized by
287 * the userspace tools (e.g. bpftool) through the
288 * BPF_OBJ_GET_INFO_BY_FD and the map's lookup/update
289 * interface.
291 static const struct file_operations bpffs_map_fops = {
292 .open = bpffs_map_open,
293 .read = seq_read,
294 .release = bpffs_map_release,
297 static int bpffs_obj_open(struct inode *inode, struct file *file)
299 return -EIO;
302 static const struct file_operations bpffs_obj_fops = {
303 .open = bpffs_obj_open,
306 static int bpf_mkobj_ops(struct dentry *dentry, umode_t mode, void *raw,
307 const struct inode_operations *iops,
308 const struct file_operations *fops)
310 struct inode *dir = dentry->d_parent->d_inode;
311 struct inode *inode = bpf_get_inode(dir->i_sb, dir, mode);
312 if (IS_ERR(inode))
313 return PTR_ERR(inode);
315 inode->i_op = iops;
316 inode->i_fop = fops;
317 inode->i_private = raw;
319 bpf_dentry_finalize(dentry, inode, dir);
320 return 0;
323 static int bpf_mkprog(struct dentry *dentry, umode_t mode, void *arg)
325 return bpf_mkobj_ops(dentry, mode, arg, &bpf_prog_iops,
326 &bpffs_obj_fops);
329 static int bpf_mkmap(struct dentry *dentry, umode_t mode, void *arg)
331 struct bpf_map *map = arg;
333 return bpf_mkobj_ops(dentry, mode, arg, &bpf_map_iops,
334 bpf_map_support_seq_show(map) ?
335 &bpffs_map_fops : &bpffs_obj_fops);
338 static struct dentry *
339 bpf_lookup(struct inode *dir, struct dentry *dentry, unsigned flags)
341 /* Dots in names (e.g. "/sys/fs/bpf/foo.bar") are reserved for future
342 * extensions.
344 if (strchr(dentry->d_name.name, '.'))
345 return ERR_PTR(-EPERM);
347 return simple_lookup(dir, dentry, flags);
350 static int bpf_symlink(struct inode *dir, struct dentry *dentry,
351 const char *target)
353 char *link = kstrdup(target, GFP_USER | __GFP_NOWARN);
354 struct inode *inode;
356 if (!link)
357 return -ENOMEM;
359 inode = bpf_get_inode(dir->i_sb, dir, S_IRWXUGO | S_IFLNK);
360 if (IS_ERR(inode)) {
361 kfree(link);
362 return PTR_ERR(inode);
365 inode->i_op = &simple_symlink_inode_operations;
366 inode->i_link = link;
368 bpf_dentry_finalize(dentry, inode, dir);
369 return 0;
372 static const struct inode_operations bpf_dir_iops = {
373 .lookup = bpf_lookup,
374 .mkdir = bpf_mkdir,
375 .symlink = bpf_symlink,
376 .rmdir = simple_rmdir,
377 .rename = simple_rename,
378 .link = simple_link,
379 .unlink = simple_unlink,
382 static int bpf_obj_do_pin(const struct filename *pathname, void *raw,
383 enum bpf_type type)
385 struct dentry *dentry;
386 struct inode *dir;
387 struct path path;
388 umode_t mode;
389 int ret;
391 dentry = kern_path_create(AT_FDCWD, pathname->name, &path, 0);
392 if (IS_ERR(dentry))
393 return PTR_ERR(dentry);
395 mode = S_IFREG | ((S_IRUSR | S_IWUSR) & ~current_umask());
397 ret = security_path_mknod(&path, dentry, mode, 0);
398 if (ret)
399 goto out;
401 dir = d_inode(path.dentry);
402 if (dir->i_op != &bpf_dir_iops) {
403 ret = -EPERM;
404 goto out;
407 switch (type) {
408 case BPF_TYPE_PROG:
409 ret = vfs_mkobj(dentry, mode, bpf_mkprog, raw);
410 break;
411 case BPF_TYPE_MAP:
412 ret = vfs_mkobj(dentry, mode, bpf_mkmap, raw);
413 break;
414 default:
415 ret = -EPERM;
417 out:
418 done_path_create(&path, dentry);
419 return ret;
422 int bpf_obj_pin_user(u32 ufd, const char __user *pathname)
424 struct filename *pname;
425 enum bpf_type type;
426 void *raw;
427 int ret;
429 pname = getname(pathname);
430 if (IS_ERR(pname))
431 return PTR_ERR(pname);
433 raw = bpf_fd_probe_obj(ufd, &type);
434 if (IS_ERR(raw)) {
435 ret = PTR_ERR(raw);
436 goto out;
439 ret = bpf_obj_do_pin(pname, raw, type);
440 if (ret != 0)
441 bpf_any_put(raw, type);
442 out:
443 putname(pname);
444 return ret;
447 static void *bpf_obj_do_get(const struct filename *pathname,
448 enum bpf_type *type, int flags)
450 struct inode *inode;
451 struct path path;
452 void *raw;
453 int ret;
455 ret = kern_path(pathname->name, LOOKUP_FOLLOW, &path);
456 if (ret)
457 return ERR_PTR(ret);
459 inode = d_backing_inode(path.dentry);
460 ret = inode_permission(inode, ACC_MODE(flags));
461 if (ret)
462 goto out;
464 ret = bpf_inode_type(inode, type);
465 if (ret)
466 goto out;
468 raw = bpf_any_get(inode->i_private, *type);
469 if (!IS_ERR(raw))
470 touch_atime(&path);
472 path_put(&path);
473 return raw;
474 out:
475 path_put(&path);
476 return ERR_PTR(ret);
479 int bpf_obj_get_user(const char __user *pathname, int flags)
481 enum bpf_type type = BPF_TYPE_UNSPEC;
482 struct filename *pname;
483 int ret = -ENOENT;
484 int f_flags;
485 void *raw;
487 f_flags = bpf_get_file_flag(flags);
488 if (f_flags < 0)
489 return f_flags;
491 pname = getname(pathname);
492 if (IS_ERR(pname))
493 return PTR_ERR(pname);
495 raw = bpf_obj_do_get(pname, &type, f_flags);
496 if (IS_ERR(raw)) {
497 ret = PTR_ERR(raw);
498 goto out;
501 if (type == BPF_TYPE_PROG)
502 ret = bpf_prog_new_fd(raw);
503 else if (type == BPF_TYPE_MAP)
504 ret = bpf_map_new_fd(raw, f_flags);
505 else
506 goto out;
508 if (ret < 0)
509 bpf_any_put(raw, type);
510 out:
511 putname(pname);
512 return ret;
515 static struct bpf_prog *__get_prog_inode(struct inode *inode, enum bpf_prog_type type)
517 struct bpf_prog *prog;
518 int ret = inode_permission(inode, MAY_READ);
519 if (ret)
520 return ERR_PTR(ret);
522 if (inode->i_op == &bpf_map_iops)
523 return ERR_PTR(-EINVAL);
524 if (inode->i_op != &bpf_prog_iops)
525 return ERR_PTR(-EACCES);
527 prog = inode->i_private;
529 ret = security_bpf_prog(prog);
530 if (ret < 0)
531 return ERR_PTR(ret);
533 if (!bpf_prog_get_ok(prog, &type, false))
534 return ERR_PTR(-EINVAL);
536 return bpf_prog_inc(prog);
539 struct bpf_prog *bpf_prog_get_type_path(const char *name, enum bpf_prog_type type)
541 struct bpf_prog *prog;
542 struct path path;
543 int ret = kern_path(name, LOOKUP_FOLLOW, &path);
544 if (ret)
545 return ERR_PTR(ret);
546 prog = __get_prog_inode(d_backing_inode(path.dentry), type);
547 if (!IS_ERR(prog))
548 touch_atime(&path);
549 path_put(&path);
550 return prog;
552 EXPORT_SYMBOL(bpf_prog_get_type_path);
555 * Display the mount options in /proc/mounts.
557 static int bpf_show_options(struct seq_file *m, struct dentry *root)
559 umode_t mode = d_inode(root)->i_mode & S_IALLUGO & ~S_ISVTX;
561 if (mode != S_IRWXUGO)
562 seq_printf(m, ",mode=%o", mode);
563 return 0;
566 static void bpf_free_inode(struct inode *inode)
568 enum bpf_type type;
570 if (S_ISLNK(inode->i_mode))
571 kfree(inode->i_link);
572 if (!bpf_inode_type(inode, &type))
573 bpf_any_put(inode->i_private, type);
574 free_inode_nonrcu(inode);
577 static const struct super_operations bpf_super_ops = {
578 .statfs = simple_statfs,
579 .drop_inode = generic_delete_inode,
580 .show_options = bpf_show_options,
581 .free_inode = bpf_free_inode,
584 enum {
585 OPT_MODE,
586 OPT_ERR,
589 static const match_table_t bpf_mount_tokens = {
590 { OPT_MODE, "mode=%o" },
591 { OPT_ERR, NULL },
594 struct bpf_mount_opts {
595 umode_t mode;
598 static int bpf_parse_options(char *data, struct bpf_mount_opts *opts)
600 substring_t args[MAX_OPT_ARGS];
601 int option, token;
602 char *ptr;
604 opts->mode = S_IRWXUGO;
606 while ((ptr = strsep(&data, ",")) != NULL) {
607 if (!*ptr)
608 continue;
610 token = match_token(ptr, bpf_mount_tokens, args);
611 switch (token) {
612 case OPT_MODE:
613 if (match_octal(&args[0], &option))
614 return -EINVAL;
615 opts->mode = option & S_IALLUGO;
616 break;
617 /* We might like to report bad mount options here, but
618 * traditionally we've ignored all mount options, so we'd
619 * better continue to ignore non-existing options for bpf.
624 return 0;
627 static int bpf_fill_super(struct super_block *sb, void *data, int silent)
629 static const struct tree_descr bpf_rfiles[] = { { "" } };
630 struct bpf_mount_opts opts;
631 struct inode *inode;
632 int ret;
634 ret = bpf_parse_options(data, &opts);
635 if (ret)
636 return ret;
638 ret = simple_fill_super(sb, BPF_FS_MAGIC, bpf_rfiles);
639 if (ret)
640 return ret;
642 sb->s_op = &bpf_super_ops;
644 inode = sb->s_root->d_inode;
645 inode->i_op = &bpf_dir_iops;
646 inode->i_mode &= ~S_IALLUGO;
647 inode->i_mode |= S_ISVTX | opts.mode;
649 return 0;
652 static struct dentry *bpf_mount(struct file_system_type *type, int flags,
653 const char *dev_name, void *data)
655 return mount_nodev(type, flags, data, bpf_fill_super);
658 static struct file_system_type bpf_fs_type = {
659 .owner = THIS_MODULE,
660 .name = "bpf",
661 .mount = bpf_mount,
662 .kill_sb = kill_litter_super,
665 static int __init bpf_init(void)
667 int ret;
669 ret = sysfs_create_mount_point(fs_kobj, "bpf");
670 if (ret)
671 return ret;
673 ret = register_filesystem(&bpf_fs_type);
674 if (ret)
675 sysfs_remove_mount_point(fs_kobj, "bpf");
677 return ret;
679 fs_initcall(bpf_init);