mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH bpf] tools: bpftool: Add missing close before bpftool net attach exit
@ 2020-11-09  7:04 Wang Hai
  2020-11-09 10:07 ` Quentin Monnet
  2020-11-09 10:51 ` Michal Rostecki
  0 siblings, 2 replies; 5+ messages in thread
From: Wang Hai @ 2020-11-09  7:04 UTC (permalink / raw)
  To: ast, daniel, kafai, songliubraving, yhs, andrii, john.fastabend,
	kpsingh, toke, quentin, danieltimlee
  Cc: bpf, netdev, linux-kernel

progfd is created by prog_parse_fd(), before 'bpftool net attach' exit,
it should be closed.

Fixes: 04949ccc273e ("tools: bpftool: add net attach command to attach XDP on interface")
Signed-off-by: Wang Hai <wanghai38@huawei.com>
---
 tools/bpf/bpftool/net.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tools/bpf/bpftool/net.c b/tools/bpf/bpftool/net.c
index 910e7bac6e9e..3e9b40e64fb0 100644
--- a/tools/bpf/bpftool/net.c
+++ b/tools/bpf/bpftool/net.c
@@ -600,12 +600,14 @@ static int do_attach(int argc, char **argv)
 	if (err < 0) {
 		p_err("interface %s attach failed: %s",
 		      attach_type_strings[attach_type], strerror(-err));
+		close(progfd);
 		return err;
 	}
 
 	if (json_output)
 		jsonw_null(json_wtr);
 
+	close(progfd);
 	return 0;
 }
 
-- 
2.17.1


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-11-10  1:57 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-09  7:04 [PATCH bpf] tools: bpftool: Add missing close before bpftool net attach exit Wang Hai
2020-11-09 10:07 ` Quentin Monnet
2020-11-09 10:51 ` Michal Rostecki
2020-11-09 21:37   ` John Fastabend
2020-11-10  1:57   ` wanghai (M)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®