cregit-Linux how code gets into the kernel

Release 4.15 kernel/bpf/inode.c

Directory: kernel/bpf
/*
 * Minimal file system backend for holding eBPF maps and programs,
 * used by bpf(2) object pinning.
 *
 * Authors:
 *
 *      Daniel Borkmann <daniel@iogearbox.net>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * version 2 as published by the Free Software Foundation.
 */

#include <linux/init.h>
#include <linux/magic.h>
#include <linux/major.h>
#include <linux/mount.h>
#include <linux/namei.h>
#include <linux/fs.h>
#include <linux/kdev_t.h>
#include <linux/parser.h>
#include <linux/filter.h>
#include <linux/bpf.h>
#include <linux/bpf_trace.h>


enum bpf_type {
	
BPF_TYPE_UNSPEC	= 0,
	
BPF_TYPE_PROG,
	
BPF_TYPE_MAP,
};


static void *bpf_any_get(void *raw, enum bpf_type type) { switch (type) { case BPF_TYPE_PROG: raw = bpf_prog_inc(raw); break; case BPF_TYPE_MAP: raw = bpf_map_inc(raw, true); break; default: WARN_ON_ONCE(1); break; } return raw; }

Contributors

PersonTokensPropCommitsCommitProp
Daniel Borkmann5090.91%266.67%
Alexei Starovoitov59.09%133.33%
Total55100.00%3100.00%


static void bpf_any_put(void *raw, enum bpf_type type) { switch (type) { case BPF_TYPE_PROG: bpf_prog_put(raw); break; case BPF_TYPE_MAP: bpf_map_put_with_uref(raw); break; default: WARN_ON_ONCE(1); break; } }

Contributors

PersonTokensPropCommitsCommitProp
Daniel Borkmann45100.00%2100.00%
Total45100.00%2100.00%


static void *bpf_fd_probe_obj(u32 ufd, enum bpf_type *type) { void *raw; *type = BPF_TYPE_MAP; raw = bpf_map_get_with_uref(ufd); if (IS_ERR(raw)) { *type = BPF_TYPE_PROG; raw = bpf_prog_get(ufd); } return raw; }

Contributors

PersonTokensPropCommitsCommitProp
Daniel Borkmann55100.00%2100.00%
Total55100.00%2100.00%

static const struct inode_operations bpf_dir_iops; static const struct inode_operations bpf_prog_iops = { }; static const struct inode_operations bpf_map_iops = { };
static struct inode *bpf_get_inode(struct super_block *sb, const struct inode *dir, umode_t mode) { struct inode *inode; switch (mode & S_IFMT) { case S_IFDIR: case S_IFREG: case S_IFLNK: break; default: return ERR_PTR(-EINVAL); } inode = new_inode(sb); if (!inode) return ERR_PTR(-ENOSPC); inode->i_ino = get_next_ino(); inode->i_atime = current_time(inode); inode->i_mtime = inode->i_atime; inode->i_ctime = inode->i_atime; inode_init_owner(inode, dir, mode); return inode; }

Contributors

PersonTokensPropCommitsCommitProp
Daniel Borkmann11296.55%266.67%
Deepa Dinamani43.45%133.33%
Total116100.00%3100.00%


static int bpf_inode_type(const struct inode *inode, enum bpf_type *type) { *type = BPF_TYPE_UNSPEC; if (inode->i_op == &bpf_prog_iops) *type = BPF_TYPE_PROG; else if (inode->i_op == &bpf_map_iops) *type = BPF_TYPE_MAP; else return -EACCES; return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Daniel Borkmann59100.00%1100.00%
Total59100.00%1100.00%


static void bpf_dentry_finalize(struct dentry *dentry, struct inode *inode, struct inode *dir) { d_instantiate(dentry, inode); dget(dentry); dir->i_mtime = current_time(dir); dir->i_ctime = dir->i_mtime; }

Contributors

PersonTokensPropCommitsCommitProp
Daniel Borkmann50100.00%1100.00%
Total50100.00%1100.00%


static int bpf_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode) { struct inode *inode; inode = bpf_get_inode(dir->i_sb, dir, mode | S_IFDIR); if (IS_ERR(inode)) return PTR_ERR(inode); inode->i_op = &bpf_dir_iops; inode->i_fop = &simple_dir_operations; inc_nlink(inode); inc_nlink(dir); bpf_dentry_finalize(dentry, inode, dir); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Daniel Borkmann88100.00%2100.00%
Total88100.00%2100.00%


static int bpf_mkobj_ops(struct inode *dir, struct dentry *dentry, umode_t mode, const struct inode_operations *iops) { struct inode *inode; inode = bpf_get_inode(dir->i_sb, dir, mode | S_IFREG); if (IS_ERR(inode)) return PTR_ERR(inode); inode->i_op = iops; inode->i_private = dentry->d_fsdata; bpf_dentry_finalize(dentry, inode, dir); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Daniel Borkmann84100.00%2100.00%
Total84100.00%2100.00%


static int bpf_mkobj(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t devt) { enum bpf_type type = MINOR(devt); if (MAJOR(devt) != UNNAMED_MAJOR || !S_ISREG(mode) || dentry->d_fsdata == NULL) return -EPERM; switch (type) { case BPF_TYPE_PROG: return bpf_mkobj_ops(dir, dentry, mode, &bpf_prog_iops); case BPF_TYPE_MAP: return bpf_mkobj_ops(dir, dentry, mode, &bpf_map_iops); default: return -EPERM; } }

Contributors

PersonTokensPropCommitsCommitProp
Daniel Borkmann99100.00%1100.00%
Total99100.00%1100.00%


static struct dentry * bpf_lookup(struct inode *dir, struct dentry *dentry, unsigned flags) { if (strchr(dentry->d_name.name, '.')) return ERR_PTR(-EPERM); return simple_lookup(dir, dentry, flags); }

Contributors

PersonTokensPropCommitsCommitProp
Daniel Borkmann3262.75%150.00%
Al Viro1937.25%150.00%
Total51100.00%2100.00%


static int bpf_symlink(struct inode *dir, struct dentry *dentry, const char *target) { char *link = kstrdup(target, GFP_USER | __GFP_NOWARN); struct inode *inode; if (!link) return -ENOMEM; inode = bpf_get_inode(dir->i_sb, dir, S_IRWXUGO | S_IFLNK); if (IS_ERR(inode)) { kfree(link); return PTR_ERR(inode); } inode->i_op = &simple_symlink_inode_operations; inode->i_link = link; bpf_dentry_finalize(dentry, inode, dir); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Daniel Borkmann108100.00%1100.00%
Total108100.00%1100.00%

static const struct inode_operations bpf_dir_iops = { .lookup = bpf_lookup, .mknod = bpf_mkobj, .mkdir = bpf_mkdir, .symlink = bpf_symlink, .rmdir = simple_rmdir, .rename = simple_rename, .link = simple_link, .unlink = simple_unlink, };
static int bpf_obj_do_pin(const struct filename *pathname, void *raw, enum bpf_type type) { struct dentry *dentry; struct inode *dir; struct path path; umode_t mode; dev_t devt; int ret; dentry = kern_path_create(AT_FDCWD, pathname->name, &path, 0); if (IS_ERR(dentry)) return PTR_ERR(dentry); mode = S_IFREG | ((S_IRUSR | S_IWUSR) & ~current_umask()); devt = MKDEV(UNNAMED_MAJOR, type); ret = security_path_mknod(&path, dentry, mode, devt); if (ret) goto out; dir = d_inode(path.dentry); if (dir->i_op != &bpf_dir_iops) { ret = -EPERM; goto out; } dentry->d_fsdata = raw; ret = vfs_mknod(dir, dentry, mode, devt); dentry->d_fsdata = NULL; out: done_path_create(&path, dentry); return ret; }

Contributors

PersonTokensPropCommitsCommitProp
Daniel Borkmann184100.00%1100.00%
Total184100.00%1100.00%


int bpf_obj_pin_user(u32 ufd, const char __user *pathname) { struct filename *pname; enum bpf_type type; void *raw; int ret; pname = getname(pathname); if (IS_ERR(pname)) return PTR_ERR(pname); raw = bpf_fd_probe_obj(ufd, &type); if (IS_ERR(raw)) { ret = PTR_ERR(raw); goto out; } ret = bpf_obj_do_pin(pname, raw, type); if (ret != 0) bpf_any_put(raw, type); if ((trace_bpf_obj_pin_prog_enabled() || trace_bpf_obj_pin_map_enabled()) && !ret) { if (type == BPF_TYPE_PROG) trace_bpf_obj_pin_prog(raw, ufd, pname); if (type == BPF_TYPE_MAP) trace_bpf_obj_pin_map(raw, ufd, pname); } out: putname(pname); return ret; }

Contributors

PersonTokensPropCommitsCommitProp
Daniel Borkmann158100.00%2100.00%
Total158100.00%2100.00%


static void *bpf_obj_do_get(const struct filename *pathname, enum bpf_type *type, int flags) { struct inode *inode; struct path path; void *raw; int ret; ret = kern_path(pathname->name, LOOKUP_FOLLOW, &path); if (ret) return ERR_PTR(ret); inode = d_backing_inode(path.dentry); ret = inode_permission(inode, ACC_MODE(flags)); if (ret) goto out; ret = bpf_inode_type(inode, type); if (ret) goto out; raw = bpf_any_get(inode->i_private, *type); if (!IS_ERR(raw)) touch_atime(&path); path_put(&path); return raw; out: path_put(&path); return ERR_PTR(ret); }

Contributors

PersonTokensPropCommitsCommitProp
Daniel Borkmann13990.26%133.33%
Alexei Starovoitov85.19%133.33%
Chenbo Feng74.55%133.33%
Total154100.00%3100.00%


int bpf_obj_get_user(const char __user *pathname, int flags) { enum bpf_type type = BPF_TYPE_UNSPEC; struct filename *pname; int ret = -ENOENT; int f_flags; void *raw; f_flags = bpf_get_file_flag(flags); if (f_flags < 0) return f_flags; pname = getname(pathname); if (IS_ERR(pname)) return PTR_ERR(pname); raw = bpf_obj_do_get(pname, &type, f_flags); if (IS_ERR(raw)) { ret = PTR_ERR(raw); goto out; } if (type == BPF_TYPE_PROG) ret = bpf_prog_new_fd(raw); else if (type == BPF_TYPE_MAP) ret = bpf_map_new_fd(raw, f_flags); else goto out; if (ret < 0) { bpf_any_put(raw, type); } else if (trace_bpf_obj_get_prog_enabled() || trace_bpf_obj_get_map_enabled()) { if (type == BPF_TYPE_PROG) trace_bpf_obj_get_prog(raw, ret, pname); if (type == BPF_TYPE_MAP) trace_bpf_obj_get_map(raw, ret, pname); } out: putname(pname); return ret; }

Contributors

PersonTokensPropCommitsCommitProp
Daniel Borkmann17887.25%266.67%
Chenbo Feng2612.75%133.33%
Total204100.00%3100.00%


static struct bpf_prog *__get_prog_inode(struct inode *inode, enum bpf_prog_type type) { struct bpf_prog *prog; int ret = inode_permission(inode, MAY_READ | MAY_WRITE); if (ret) return ERR_PTR(ret); if (inode->i_op == &bpf_map_iops) return ERR_PTR(-EINVAL); if (inode->i_op != &bpf_prog_iops) return ERR_PTR(-EACCES); prog = inode->i_private; ret = security_bpf_prog(prog); if (ret < 0) return ERR_PTR(ret); if (!bpf_prog_get_ok(prog, &type, false)) return ERR_PTR(-EINVAL); return bpf_prog_inc(prog); }

Contributors

PersonTokensPropCommitsCommitProp
Al Viro127100.00%1100.00%
Total127100.00%1100.00%


struct bpf_prog *bpf_prog_get_type_path(const char *name, enum bpf_prog_type type) { struct bpf_prog *prog; struct path path; int ret = kern_path(name, LOOKUP_FOLLOW, &path); if (ret) return ERR_PTR(ret); prog = __get_prog_inode(d_backing_inode(path.dentry), type); if (!IS_ERR(prog)) touch_atime(&path); path_put(&path); return prog; }

Contributors

PersonTokensPropCommitsCommitProp
Al Viro85100.00%1100.00%
Total85100.00%1100.00%

EXPORT_SYMBOL(bpf_prog_get_type_path);
static void bpf_evict_inode(struct inode *inode) { enum bpf_type type; truncate_inode_pages_final(&inode->i_data); clear_inode(inode); if (S_ISLNK(inode->i_mode)) kfree(inode->i_link); if (!bpf_inode_type(inode, &type)) bpf_any_put(inode->i_private, type); }

Contributors

PersonTokensPropCommitsCommitProp
Daniel Borkmann64100.00%2100.00%
Total64100.00%2100.00%

/* * Display the mount options in /proc/mounts. */
static int bpf_show_options(struct seq_file *m, struct dentry *root) { umode_t mode = d_inode(root)->i_mode & S_IALLUGO & ~S_ISVTX; if (mode != S_IRWXUGO) seq_printf(m, ",mode=%o", mode); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
David Howells49100.00%1100.00%
Total49100.00%1100.00%

static const struct super_operations bpf_super_ops = { .statfs = simple_statfs, .drop_inode = generic_delete_inode, .show_options = bpf_show_options, .evict_inode = bpf_evict_inode, }; enum { OPT_MODE, OPT_ERR, }; static const match_table_t bpf_mount_tokens = { { OPT_MODE, "mode=%o" }, { OPT_ERR, NULL }, }; struct bpf_mount_opts { umode_t mode; };
static int bpf_parse_options(char *data, struct bpf_mount_opts *opts) { substring_t args[MAX_OPT_ARGS]; int option, token; char *ptr; opts->mode = S_IRWXUGO; while ((ptr = strsep(&data, ",")) != NULL) { if (!*ptr) continue; token = match_token(ptr, bpf_mount_tokens, args); switch (token) { case OPT_MODE: if (match_octal(&args[0], &option)) return -EINVAL; opts->mode = option & S_IALLUGO; break; /* We might like to report bad mount options here, but * traditionally we've ignored all mount options, so we'd * better continue to ignore non-existing options for bpf. */ } } return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Daniel Borkmann112100.00%1100.00%
Total112100.00%1100.00%


static int bpf_fill_super(struct super_block *sb, void *data, int silent) { static const struct tree_descr bpf_rfiles[] = { { "" } }; struct bpf_mount_opts opts; struct inode *inode; int ret; ret = bpf_parse_options(data, &opts); if (ret) return ret; ret = simple_fill_super(sb, BPF_FS_MAGIC, bpf_rfiles); if (ret) return ret; sb->s_op = &bpf_super_ops; inode = sb->s_root->d_inode; inode->i_op = &bpf_dir_iops; inode->i_mode &= ~S_IALLUGO; inode->i_mode |= S_ISVTX | opts.mode; return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Daniel Borkmann11999.17%266.67%
Eric Biggers10.83%133.33%
Total120100.00%3100.00%


static struct dentry *bpf_mount(struct file_system_type *type, int flags, const char *dev_name, void *data) { return mount_nodev(type, flags, data, bpf_fill_super); }

Contributors

PersonTokensPropCommitsCommitProp
Daniel Borkmann3594.59%150.00%
Eric W. Biedermann25.41%150.00%
Total37100.00%2100.00%

static struct file_system_type bpf_fs_type = { .owner = THIS_MODULE, .name = "bpf", .mount = bpf_mount, .kill_sb = kill_litter_super, };
static int __init bpf_init(void) { int ret; ret = sysfs_create_mount_point(fs_kobj, "bpf"); if (ret) return ret; ret = register_filesystem(&bpf_fs_type); if (ret) sysfs_remove_mount_point(fs_kobj, "bpf"); return ret; }

Contributors

PersonTokensPropCommitsCommitProp
Daniel Borkmann50100.00%1100.00%
Total50100.00%1100.00%

fs_initcall(bpf_init);

Overall Contributors

PersonTokensPropCommitsCommitProp
Daniel Borkmann202685.49%637.50%
Al Viro2369.96%212.50%
David Howells512.15%16.25%
Chenbo Feng331.39%16.25%
Alexei Starovoitov130.55%16.25%
Deepa Dinamani40.17%16.25%
Shmulik Ladkani30.13%16.25%
Eric W. Biedermann20.08%16.25%
Eric Biggers10.04%16.25%
Paul Gortmaker10.04%16.25%
Total2370100.00%16100.00%
Directory: kernel/bpf
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.