|
@@ -162,19 +162,29 @@ free_map:
|
|
|
/* if error is returned, fd is released.
|
|
|
* On success caller should complete fd access with matching fdput()
|
|
|
*/
|
|
|
-struct bpf_map *bpf_map_get(struct fd f)
|
|
|
+struct bpf_map *__bpf_map_get(struct fd f)
|
|
|
{
|
|
|
- struct bpf_map *map;
|
|
|
-
|
|
|
if (!f.file)
|
|
|
return ERR_PTR(-EBADF);
|
|
|
-
|
|
|
if (f.file->f_op != &bpf_map_fops) {
|
|
|
fdput(f);
|
|
|
return ERR_PTR(-EINVAL);
|
|
|
}
|
|
|
|
|
|
- map = f.file->private_data;
|
|
|
+ return f.file->private_data;
|
|
|
+}
|
|
|
+
|
|
|
+static struct bpf_map *bpf_map_get(u32 ufd)
|
|
|
+{
|
|
|
+ struct fd f = fdget(ufd);
|
|
|
+ struct bpf_map *map;
|
|
|
+
|
|
|
+ map = __bpf_map_get(f);
|
|
|
+ if (IS_ERR(map))
|
|
|
+ return map;
|
|
|
+
|
|
|
+ atomic_inc(&map->refcnt);
|
|
|
+ fdput(f);
|
|
|
|
|
|
return map;
|
|
|
}
|
|
@@ -202,7 +212,7 @@ static int map_lookup_elem(union bpf_attr *attr)
|
|
|
return -EINVAL;
|
|
|
|
|
|
f = fdget(ufd);
|
|
|
- map = bpf_map_get(f);
|
|
|
+ map = __bpf_map_get(f);
|
|
|
if (IS_ERR(map))
|
|
|
return PTR_ERR(map);
|
|
|
|
|
@@ -261,7 +271,7 @@ static int map_update_elem(union bpf_attr *attr)
|
|
|
return -EINVAL;
|
|
|
|
|
|
f = fdget(ufd);
|
|
|
- map = bpf_map_get(f);
|
|
|
+ map = __bpf_map_get(f);
|
|
|
if (IS_ERR(map))
|
|
|
return PTR_ERR(map);
|
|
|
|
|
@@ -314,7 +324,7 @@ static int map_delete_elem(union bpf_attr *attr)
|
|
|
return -EINVAL;
|
|
|
|
|
|
f = fdget(ufd);
|
|
|
- map = bpf_map_get(f);
|
|
|
+ map = __bpf_map_get(f);
|
|
|
if (IS_ERR(map))
|
|
|
return PTR_ERR(map);
|
|
|
|
|
@@ -355,7 +365,7 @@ static int map_get_next_key(union bpf_attr *attr)
|
|
|
return -EINVAL;
|
|
|
|
|
|
f = fdget(ufd);
|
|
|
- map = bpf_map_get(f);
|
|
|
+ map = __bpf_map_get(f);
|
|
|
if (IS_ERR(map))
|
|
|
return PTR_ERR(map);
|
|
|
|
|
@@ -549,21 +559,16 @@ static int bpf_prog_new_fd(struct bpf_prog *prog)
|
|
|
O_RDWR | O_CLOEXEC);
|
|
|
}
|
|
|
|
|
|
-static struct bpf_prog *get_prog(struct fd f)
|
|
|
+static struct bpf_prog *__bpf_prog_get(struct fd f)
|
|
|
{
|
|
|
- struct bpf_prog *prog;
|
|
|
-
|
|
|
if (!f.file)
|
|
|
return ERR_PTR(-EBADF);
|
|
|
-
|
|
|
if (f.file->f_op != &bpf_prog_fops) {
|
|
|
fdput(f);
|
|
|
return ERR_PTR(-EINVAL);
|
|
|
}
|
|
|
|
|
|
- prog = f.file->private_data;
|
|
|
-
|
|
|
- return prog;
|
|
|
+ return f.file->private_data;
|
|
|
}
|
|
|
|
|
|
/* called by sockets/tracing/seccomp before attaching program to an event
|
|
@@ -574,13 +579,13 @@ struct bpf_prog *bpf_prog_get(u32 ufd)
|
|
|
struct fd f = fdget(ufd);
|
|
|
struct bpf_prog *prog;
|
|
|
|
|
|
- prog = get_prog(f);
|
|
|
-
|
|
|
+ prog = __bpf_prog_get(f);
|
|
|
if (IS_ERR(prog))
|
|
|
return prog;
|
|
|
|
|
|
atomic_inc(&prog->aux->refcnt);
|
|
|
fdput(f);
|
|
|
+
|
|
|
return prog;
|
|
|
}
|
|
|
EXPORT_SYMBOL_GPL(bpf_prog_get);
|