Commit 006ed53e authored by Andrii Nakryiko's avatar Andrii Nakryiko Committed by Alexei Starovoitov

selftests/bpf: Fix trampoline_count clean up logic

Libbpf's Travis CI tests caught this issue. Ensure bpf_link and bpf_object
clean up is performed correctly.

Fixes: d633d579 ("selftest/bpf: Add test for allowed trampolines count")
Signed-off-by: default avatarAndrii Nakryiko <andriin@fb.com>
Signed-off-by: default avatarAlexei Starovoitov <ast@kernel.org>
Cc: Jiri Olsa <jolsa@kernel.org>
Link: https://lore.kernel.org/bpf/20200220230546.769250-1-andriin@fb.com
parent 2c3a3681
...@@ -55,31 +55,40 @@ void test_trampoline_count(void) ...@@ -55,31 +55,40 @@ void test_trampoline_count(void)
/* attach 'allowed' 40 trampoline programs */ /* attach 'allowed' 40 trampoline programs */
for (i = 0; i < MAX_TRAMP_PROGS; i++) { for (i = 0; i < MAX_TRAMP_PROGS; i++) {
obj = bpf_object__open_file(object, NULL); obj = bpf_object__open_file(object, NULL);
if (CHECK(IS_ERR(obj), "obj_open_file", "err %ld\n", PTR_ERR(obj))) if (CHECK(IS_ERR(obj), "obj_open_file", "err %ld\n", PTR_ERR(obj))) {
obj = NULL;
goto cleanup; goto cleanup;
}
err = bpf_object__load(obj); err = bpf_object__load(obj);
if (CHECK(err, "obj_load", "err %d\n", err)) if (CHECK(err, "obj_load", "err %d\n", err))
goto cleanup; goto cleanup;
inst[i].obj = obj; inst[i].obj = obj;
obj = NULL;
if (rand() % 2) { if (rand() % 2) {
link = load(obj, fentry_name); link = load(inst[i].obj, fentry_name);
if (CHECK(IS_ERR(link), "attach prog", "err %ld\n", PTR_ERR(link))) if (CHECK(IS_ERR(link), "attach prog", "err %ld\n", PTR_ERR(link))) {
link = NULL;
goto cleanup; goto cleanup;
}
inst[i].link_fentry = link; inst[i].link_fentry = link;
} else { } else {
link = load(obj, fexit_name); link = load(inst[i].obj, fexit_name);
if (CHECK(IS_ERR(link), "attach prog", "err %ld\n", PTR_ERR(link))) if (CHECK(IS_ERR(link), "attach prog", "err %ld\n", PTR_ERR(link))) {
link = NULL;
goto cleanup; goto cleanup;
}
inst[i].link_fexit = link; inst[i].link_fexit = link;
} }
} }
/* and try 1 extra.. */ /* and try 1 extra.. */
obj = bpf_object__open_file(object, NULL); obj = bpf_object__open_file(object, NULL);
if (CHECK(IS_ERR(obj), "obj_open_file", "err %ld\n", PTR_ERR(obj))) if (CHECK(IS_ERR(obj), "obj_open_file", "err %ld\n", PTR_ERR(obj))) {
obj = NULL;
goto cleanup; goto cleanup;
}
err = bpf_object__load(obj); err = bpf_object__load(obj);
if (CHECK(err, "obj_load", "err %d\n", err)) if (CHECK(err, "obj_load", "err %d\n", err))
...@@ -104,7 +113,9 @@ void test_trampoline_count(void) ...@@ -104,7 +113,9 @@ void test_trampoline_count(void)
cleanup_extra: cleanup_extra:
bpf_object__close(obj); bpf_object__close(obj);
cleanup: cleanup:
while (--i) { if (i >= MAX_TRAMP_PROGS)
i = MAX_TRAMP_PROGS - 1;
for (; i >= 0; i--) {
bpf_link__destroy(inst[i].link_fentry); bpf_link__destroy(inst[i].link_fentry);
bpf_link__destroy(inst[i].link_fexit); bpf_link__destroy(inst[i].link_fexit);
bpf_object__close(inst[i].obj); bpf_object__close(inst[i].obj);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment