Skip to content

Commit

Permalink
bpftool: Support bpffs mountpoint as pin path for prog loadall
Browse files Browse the repository at this point in the history
Currently, when using prog loadall and the pin path is a bpffs mountpoint,
bpffs will be repeatedly mounted to the parent directory of the bpffs
mountpoint path. For example, a `bpftool prog loadall test.o /sys/fs/bpf`
will trigger this.

Signed-off-by: Pengcheng Yang <yangpc@wangsu.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Reviewed-by: Quentin Monnet <quentin@isovalent.com>
Link: https://lore.kernel.org/bpf/1683342439-3677-1-git-send-email-yangpc@wangsu.com
  • Loading branch information
ws-yangpc authored and qmonnet committed May 26, 2023
1 parent b2489e0 commit fb96eed
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
9 changes: 6 additions & 3 deletions src/common.c
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ void p_info(const char *fmt, ...)
va_end(ap);
}

static bool is_bpffs(char *path)
static bool is_bpffs(const char *path)
{
struct statfs st_fs;

Expand Down Expand Up @@ -244,13 +244,16 @@ int open_obj_pinned_any(const char *path, enum bpf_obj_type exp_type)
return fd;
}

int mount_bpffs_for_pin(const char *name)
int mount_bpffs_for_pin(const char *name, bool is_dir)
{
char err_str[ERR_MAX_LEN];
char *file;
char *dir;
int err = 0;

if (is_dir && is_bpffs(name))
return err;

file = malloc(strlen(name) + 1);
if (!file) {
p_err("mem alloc failed");
Expand Down Expand Up @@ -286,7 +289,7 @@ int do_pin_fd(int fd, const char *name)
{
int err;

err = mount_bpffs_for_pin(name);
err = mount_bpffs_for_pin(name, false);
if (err)
return err;

Expand Down
2 changes: 1 addition & 1 deletion src/iter.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ static int do_pin(int argc, char **argv)
goto close_obj;
}

err = mount_bpffs_for_pin(path);
err = mount_bpffs_for_pin(path, false);
if (err)
goto close_link;

Expand Down
2 changes: 1 addition & 1 deletion src/main.h
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ const char *get_fd_type_name(enum bpf_obj_type type);
char *get_fdinfo(int fd, const char *key);
int open_obj_pinned(const char *path, bool quiet);
int open_obj_pinned_any(const char *path, enum bpf_obj_type exp_type);
int mount_bpffs_for_pin(const char *name);
int mount_bpffs_for_pin(const char *name, bool is_dir);
int do_pin_any(int argc, char **argv, int (*get_fd_by_id)(int *, char ***));
int do_pin_fd(int fd, const char *name);

Expand Down
2 changes: 1 addition & 1 deletion src/prog.c
Original file line number Diff line number Diff line change
Expand Up @@ -1739,7 +1739,7 @@ static int load_with_options(int argc, char **argv, bool first_prog_only)
goto err_close_obj;
}

err = mount_bpffs_for_pin(pinfile);
err = mount_bpffs_for_pin(pinfile, !first_prog_only);
if (err)
goto err_close_obj;

Expand Down
2 changes: 1 addition & 1 deletion src/struct_ops.c
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ static int do_register(int argc, char **argv)
if (argc == 1)
linkdir = GET_ARG();

if (linkdir && mount_bpffs_for_pin(linkdir)) {
if (linkdir && mount_bpffs_for_pin(linkdir, true)) {
p_err("can't mount bpffs for pinning");
return -1;
}
Expand Down

0 comments on commit fb96eed

Please sign in to comment.