xref: /openbmc/linux/kernel/bpf/inode.c (revision a591525f)
1 /*
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 
14 #include <linux/init.h>
15 #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>
21 #include <linux/parser.h>
22 #include <linux/filter.h>
23 #include <linux/bpf.h>
24 #include <linux/bpf_trace.h>
25 
26 enum bpf_type {
27 	BPF_TYPE_UNSPEC	= 0,
28 	BPF_TYPE_PROG,
29 	BPF_TYPE_MAP,
30 };
31 
32 static void *bpf_any_get(void *raw, enum bpf_type type)
33 {
34 	switch (type) {
35 	case BPF_TYPE_PROG:
36 		raw = bpf_prog_inc(raw);
37 		break;
38 	case BPF_TYPE_MAP:
39 		raw = bpf_map_inc(raw, true);
40 		break;
41 	default:
42 		WARN_ON_ONCE(1);
43 		break;
44 	}
45 
46 	return raw;
47 }
48 
49 static 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:
56 		bpf_map_put_with_uref(raw);
57 		break;
58 	default:
59 		WARN_ON_ONCE(1);
60 		break;
61 	}
62 }
63 
64 static void *bpf_fd_probe_obj(u32 ufd, enum bpf_type *type)
65 {
66 	void *raw;
67 
68 	*type = BPF_TYPE_MAP;
69 	raw = bpf_map_get_with_uref(ufd);
70 	if (IS_ERR(raw)) {
71 		*type = BPF_TYPE_PROG;
72 		raw = bpf_prog_get(ufd);
73 	}
74 
75 	return raw;
76 }
77 
78 static const struct inode_operations bpf_dir_iops;
79 
80 static const struct inode_operations bpf_prog_iops = { };
81 static const struct inode_operations bpf_map_iops  = { };
82 
83 static 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:
92 	case S_IFLNK:
93 		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();
103 	inode->i_atime = current_time(inode);
104 	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 
112 static 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 
125 static 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 
135 static int bpf_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
136 {
137 	struct inode *inode;
138 
139 	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 
149 	bpf_dentry_finalize(dentry, inode, dir);
150 	return 0;
151 }
152 
153 struct map_iter {
154 	void *key;
155 	bool done;
156 };
157 
158 static struct map_iter *map_iter(struct seq_file *m)
159 {
160 	return m->private;
161 }
162 
163 static struct bpf_map *seq_file_to_map(struct seq_file *m)
164 {
165 	return file_inode(m->file)->i_private;
166 }
167 
168 static void map_iter_free(struct map_iter *iter)
169 {
170 	if (iter) {
171 		kfree(iter->key);
172 		kfree(iter);
173 	}
174 }
175 
176 static 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 
190 error:
191 	map_iter_free(iter);
192 	return NULL;
193 }
194 
195 static 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;
199 
200 	if (map_iter(m)->done)
201 		return NULL;
202 
203 	if (unlikely(v == SEQ_START_TOKEN))
204 		goto done;
205 
206 	if (map->ops->map_get_next_key(map, key, key)) {
207 		map_iter(m)->done = true;
208 		return NULL;
209 	}
210 
211 done:
212 	++(*pos);
213 	return key;
214 }
215 
216 static void *map_seq_start(struct seq_file *m, loff_t *pos)
217 {
218 	if (map_iter(m)->done)
219 		return NULL;
220 
221 	return *pos ? map_iter(m)->key : SEQ_START_TOKEN;
222 }
223 
224 static void map_seq_stop(struct seq_file *m, void *v)
225 {
226 }
227 
228 static int map_seq_show(struct seq_file *m, void *v)
229 {
230 	struct bpf_map *map = seq_file_to_map(m);
231 	void *key = map_iter(m)->key;
232 
233 	if (unlikely(v == SEQ_START_TOKEN)) {
234 		seq_puts(m, "# WARNING!! The output is for debug purpose only\n");
235 		seq_puts(m, "# WARNING!! The output format will change\n");
236 	} else {
237 		map->ops->map_seq_show_elem(map, key, m);
238 	}
239 
240 	return 0;
241 }
242 
243 static const struct seq_operations bpffs_map_seq_ops = {
244 	.start	= map_seq_start,
245 	.next	= map_seq_next,
246 	.show	= map_seq_show,
247 	.stop	= map_seq_stop,
248 };
249 
250 static int bpffs_map_open(struct inode *inode, struct file *file)
251 {
252 	struct bpf_map *map = inode->i_private;
253 	struct map_iter *iter;
254 	struct seq_file *m;
255 	int err;
256 
257 	iter = map_iter_alloc(map);
258 	if (!iter)
259 		return -ENOMEM;
260 
261 	err = seq_open(file, &bpffs_map_seq_ops);
262 	if (err) {
263 		map_iter_free(iter);
264 		return err;
265 	}
266 
267 	m = file->private_data;
268 	m->private = iter;
269 
270 	return 0;
271 }
272 
273 static int bpffs_map_release(struct inode *inode, struct file *file)
274 {
275 	struct seq_file *m = file->private_data;
276 
277 	map_iter_free(map_iter(m));
278 
279 	return seq_release(inode, file);
280 }
281 
282 /* bpffs_map_fops should only implement the basic
283  * read operation for a BPF map.  The purpose is to
284  * provide a simple user intuitive way to do
285  * "cat bpffs/pathto/a-pinned-map".
286  *
287  * Other operations (e.g. write, lookup...) should be realized by
288  * the userspace tools (e.g. bpftool) through the
289  * BPF_OBJ_GET_INFO_BY_FD and the map's lookup/update
290  * interface.
291  */
292 static const struct file_operations bpffs_map_fops = {
293 	.open		= bpffs_map_open,
294 	.read		= seq_read,
295 	.release	= bpffs_map_release,
296 };
297 
298 static int bpf_mkobj_ops(struct dentry *dentry, umode_t mode, void *raw,
299 			 const struct inode_operations *iops,
300 			 const struct file_operations *fops)
301 {
302 	struct inode *dir = dentry->d_parent->d_inode;
303 	struct inode *inode = bpf_get_inode(dir->i_sb, dir, mode);
304 	if (IS_ERR(inode))
305 		return PTR_ERR(inode);
306 
307 	inode->i_op = iops;
308 	inode->i_fop = fops;
309 	inode->i_private = raw;
310 
311 	bpf_dentry_finalize(dentry, inode, dir);
312 	return 0;
313 }
314 
315 static int bpf_mkprog(struct dentry *dentry, umode_t mode, void *arg)
316 {
317 	return bpf_mkobj_ops(dentry, mode, arg, &bpf_prog_iops, NULL);
318 }
319 
320 static int bpf_mkmap(struct dentry *dentry, umode_t mode, void *arg)
321 {
322 	struct bpf_map *map = arg;
323 
324 	return bpf_mkobj_ops(dentry, mode, arg, &bpf_map_iops,
325 			     map->btf ? &bpffs_map_fops : NULL);
326 }
327 
328 static struct dentry *
329 bpf_lookup(struct inode *dir, struct dentry *dentry, unsigned flags)
330 {
331 	/* Dots in names (e.g. "/sys/fs/bpf/foo.bar") are reserved for future
332 	 * extensions.
333 	 */
334 	if (strchr(dentry->d_name.name, '.'))
335 		return ERR_PTR(-EPERM);
336 
337 	return simple_lookup(dir, dentry, flags);
338 }
339 
340 static int bpf_symlink(struct inode *dir, struct dentry *dentry,
341 		       const char *target)
342 {
343 	char *link = kstrdup(target, GFP_USER | __GFP_NOWARN);
344 	struct inode *inode;
345 
346 	if (!link)
347 		return -ENOMEM;
348 
349 	inode = bpf_get_inode(dir->i_sb, dir, S_IRWXUGO | S_IFLNK);
350 	if (IS_ERR(inode)) {
351 		kfree(link);
352 		return PTR_ERR(inode);
353 	}
354 
355 	inode->i_op = &simple_symlink_inode_operations;
356 	inode->i_link = link;
357 
358 	bpf_dentry_finalize(dentry, inode, dir);
359 	return 0;
360 }
361 
362 static const struct inode_operations bpf_dir_iops = {
363 	.lookup		= bpf_lookup,
364 	.mkdir		= bpf_mkdir,
365 	.symlink	= bpf_symlink,
366 	.rmdir		= simple_rmdir,
367 	.rename		= simple_rename,
368 	.link		= simple_link,
369 	.unlink		= simple_unlink,
370 };
371 
372 static int bpf_obj_do_pin(const struct filename *pathname, void *raw,
373 			  enum bpf_type type)
374 {
375 	struct dentry *dentry;
376 	struct inode *dir;
377 	struct path path;
378 	umode_t mode;
379 	int ret;
380 
381 	dentry = kern_path_create(AT_FDCWD, pathname->name, &path, 0);
382 	if (IS_ERR(dentry))
383 		return PTR_ERR(dentry);
384 
385 	mode = S_IFREG | ((S_IRUSR | S_IWUSR) & ~current_umask());
386 
387 	ret = security_path_mknod(&path, dentry, mode, 0);
388 	if (ret)
389 		goto out;
390 
391 	dir = d_inode(path.dentry);
392 	if (dir->i_op != &bpf_dir_iops) {
393 		ret = -EPERM;
394 		goto out;
395 	}
396 
397 	switch (type) {
398 	case BPF_TYPE_PROG:
399 		ret = vfs_mkobj(dentry, mode, bpf_mkprog, raw);
400 		break;
401 	case BPF_TYPE_MAP:
402 		ret = vfs_mkobj(dentry, mode, bpf_mkmap, raw);
403 		break;
404 	default:
405 		ret = -EPERM;
406 	}
407 out:
408 	done_path_create(&path, dentry);
409 	return ret;
410 }
411 
412 int bpf_obj_pin_user(u32 ufd, const char __user *pathname)
413 {
414 	struct filename *pname;
415 	enum bpf_type type;
416 	void *raw;
417 	int ret;
418 
419 	pname = getname(pathname);
420 	if (IS_ERR(pname))
421 		return PTR_ERR(pname);
422 
423 	raw = bpf_fd_probe_obj(ufd, &type);
424 	if (IS_ERR(raw)) {
425 		ret = PTR_ERR(raw);
426 		goto out;
427 	}
428 
429 	ret = bpf_obj_do_pin(pname, raw, type);
430 	if (ret != 0)
431 		bpf_any_put(raw, type);
432 out:
433 	putname(pname);
434 	return ret;
435 }
436 
437 static void *bpf_obj_do_get(const struct filename *pathname,
438 			    enum bpf_type *type, int flags)
439 {
440 	struct inode *inode;
441 	struct path path;
442 	void *raw;
443 	int ret;
444 
445 	ret = kern_path(pathname->name, LOOKUP_FOLLOW, &path);
446 	if (ret)
447 		return ERR_PTR(ret);
448 
449 	inode = d_backing_inode(path.dentry);
450 	ret = inode_permission(inode, ACC_MODE(flags));
451 	if (ret)
452 		goto out;
453 
454 	ret = bpf_inode_type(inode, type);
455 	if (ret)
456 		goto out;
457 
458 	raw = bpf_any_get(inode->i_private, *type);
459 	if (!IS_ERR(raw))
460 		touch_atime(&path);
461 
462 	path_put(&path);
463 	return raw;
464 out:
465 	path_put(&path);
466 	return ERR_PTR(ret);
467 }
468 
469 int bpf_obj_get_user(const char __user *pathname, int flags)
470 {
471 	enum bpf_type type = BPF_TYPE_UNSPEC;
472 	struct filename *pname;
473 	int ret = -ENOENT;
474 	int f_flags;
475 	void *raw;
476 
477 	f_flags = bpf_get_file_flag(flags);
478 	if (f_flags < 0)
479 		return f_flags;
480 
481 	pname = getname(pathname);
482 	if (IS_ERR(pname))
483 		return PTR_ERR(pname);
484 
485 	raw = bpf_obj_do_get(pname, &type, f_flags);
486 	if (IS_ERR(raw)) {
487 		ret = PTR_ERR(raw);
488 		goto out;
489 	}
490 
491 	if (type == BPF_TYPE_PROG)
492 		ret = bpf_prog_new_fd(raw);
493 	else if (type == BPF_TYPE_MAP)
494 		ret = bpf_map_new_fd(raw, f_flags);
495 	else
496 		goto out;
497 
498 	if (ret < 0)
499 		bpf_any_put(raw, type);
500 out:
501 	putname(pname);
502 	return ret;
503 }
504 
505 static struct bpf_prog *__get_prog_inode(struct inode *inode, enum bpf_prog_type type)
506 {
507 	struct bpf_prog *prog;
508 	int ret = inode_permission(inode, MAY_READ | MAY_WRITE);
509 	if (ret)
510 		return ERR_PTR(ret);
511 
512 	if (inode->i_op == &bpf_map_iops)
513 		return ERR_PTR(-EINVAL);
514 	if (inode->i_op != &bpf_prog_iops)
515 		return ERR_PTR(-EACCES);
516 
517 	prog = inode->i_private;
518 
519 	ret = security_bpf_prog(prog);
520 	if (ret < 0)
521 		return ERR_PTR(ret);
522 
523 	if (!bpf_prog_get_ok(prog, &type, false))
524 		return ERR_PTR(-EINVAL);
525 
526 	return bpf_prog_inc(prog);
527 }
528 
529 struct bpf_prog *bpf_prog_get_type_path(const char *name, enum bpf_prog_type type)
530 {
531 	struct bpf_prog *prog;
532 	struct path path;
533 	int ret = kern_path(name, LOOKUP_FOLLOW, &path);
534 	if (ret)
535 		return ERR_PTR(ret);
536 	prog = __get_prog_inode(d_backing_inode(path.dentry), type);
537 	if (!IS_ERR(prog))
538 		touch_atime(&path);
539 	path_put(&path);
540 	return prog;
541 }
542 EXPORT_SYMBOL(bpf_prog_get_type_path);
543 
544 static void bpf_evict_inode(struct inode *inode)
545 {
546 	enum bpf_type type;
547 
548 	truncate_inode_pages_final(&inode->i_data);
549 	clear_inode(inode);
550 
551 	if (S_ISLNK(inode->i_mode))
552 		kfree(inode->i_link);
553 	if (!bpf_inode_type(inode, &type))
554 		bpf_any_put(inode->i_private, type);
555 }
556 
557 /*
558  * Display the mount options in /proc/mounts.
559  */
560 static int bpf_show_options(struct seq_file *m, struct dentry *root)
561 {
562 	umode_t mode = d_inode(root)->i_mode & S_IALLUGO & ~S_ISVTX;
563 
564 	if (mode != S_IRWXUGO)
565 		seq_printf(m, ",mode=%o", mode);
566 	return 0;
567 }
568 
569 static const struct super_operations bpf_super_ops = {
570 	.statfs		= simple_statfs,
571 	.drop_inode	= generic_delete_inode,
572 	.show_options	= bpf_show_options,
573 	.evict_inode	= bpf_evict_inode,
574 };
575 
576 enum {
577 	OPT_MODE,
578 	OPT_ERR,
579 };
580 
581 static const match_table_t bpf_mount_tokens = {
582 	{ OPT_MODE, "mode=%o" },
583 	{ OPT_ERR, NULL },
584 };
585 
586 struct bpf_mount_opts {
587 	umode_t mode;
588 };
589 
590 static int bpf_parse_options(char *data, struct bpf_mount_opts *opts)
591 {
592 	substring_t args[MAX_OPT_ARGS];
593 	int option, token;
594 	char *ptr;
595 
596 	opts->mode = S_IRWXUGO;
597 
598 	while ((ptr = strsep(&data, ",")) != NULL) {
599 		if (!*ptr)
600 			continue;
601 
602 		token = match_token(ptr, bpf_mount_tokens, args);
603 		switch (token) {
604 		case OPT_MODE:
605 			if (match_octal(&args[0], &option))
606 				return -EINVAL;
607 			opts->mode = option & S_IALLUGO;
608 			break;
609 		/* We might like to report bad mount options here, but
610 		 * traditionally we've ignored all mount options, so we'd
611 		 * better continue to ignore non-existing options for bpf.
612 		 */
613 		}
614 	}
615 
616 	return 0;
617 }
618 
619 static int bpf_fill_super(struct super_block *sb, void *data, int silent)
620 {
621 	static const struct tree_descr bpf_rfiles[] = { { "" } };
622 	struct bpf_mount_opts opts;
623 	struct inode *inode;
624 	int ret;
625 
626 	ret = bpf_parse_options(data, &opts);
627 	if (ret)
628 		return ret;
629 
630 	ret = simple_fill_super(sb, BPF_FS_MAGIC, bpf_rfiles);
631 	if (ret)
632 		return ret;
633 
634 	sb->s_op = &bpf_super_ops;
635 
636 	inode = sb->s_root->d_inode;
637 	inode->i_op = &bpf_dir_iops;
638 	inode->i_mode &= ~S_IALLUGO;
639 	inode->i_mode |= S_ISVTX | opts.mode;
640 
641 	return 0;
642 }
643 
644 static struct dentry *bpf_mount(struct file_system_type *type, int flags,
645 				const char *dev_name, void *data)
646 {
647 	return mount_nodev(type, flags, data, bpf_fill_super);
648 }
649 
650 static struct file_system_type bpf_fs_type = {
651 	.owner		= THIS_MODULE,
652 	.name		= "bpf",
653 	.mount		= bpf_mount,
654 	.kill_sb	= kill_litter_super,
655 };
656 
657 static int __init bpf_init(void)
658 {
659 	int ret;
660 
661 	ret = sysfs_create_mount_point(fs_kobj, "bpf");
662 	if (ret)
663 		return ret;
664 
665 	ret = register_filesystem(&bpf_fs_type);
666 	if (ret)
667 		sysfs_remove_mount_point(fs_kobj, "bpf");
668 
669 	return ret;
670 }
671 fs_initcall(bpf_init);
672