tools/objtool/builtin-check.c | 7 +++++++ 1 file changed, 7 insertions(+)
Close open file descriptors on error paths in copy_file() to prevent
resource leaks when open(), fstat(), fchmod(), or sendfile() fail.
Fixes: 5a406031d071 ("objtool: Add --output option")
Signed-off-by: Qasim Ijaz <qasdev00@gmail.com>
---
tools/objtool/builtin-check.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/tools/objtool/builtin-check.c b/tools/objtool/builtin-check.c
index 5f761f420b8c..3357049d840f 100644
--- a/tools/objtool/builtin-check.c
+++ b/tools/objtool/builtin-check.c
@@ -201,16 +201,21 @@ static int copy_file(const char *src, const char *dst)
dst_fd = open(dst, O_WRONLY | O_CREAT | O_TRUNC, 0400);
if (dst_fd == -1) {
ERROR("can't open '%s' for writing", dst);
+ close(src_fd);
return 1;
}
if (fstat(src_fd, &stat) == -1) {
perror("fstat");
+ close(src_fd);
+ close(dst_fd);
return 1;
}
if (fchmod(dst_fd, stat.st_mode) == -1) {
perror("fchmod");
+ close(src_fd);
+ close(dst_fd);
return 1;
}
@@ -218,6 +223,8 @@ static int copy_file(const char *src, const char *dst)
copied = sendfile(dst_fd, src_fd, &offset, to_copy);
if (copied == -1) {
perror("sendfile");
+ close(src_fd);
+ close(dst_fd);
return 1;
}
}
--
2.39.5
On Thu, Mar 20, 2025 at 11:31:31PM +0000, Qasim Ijaz wrote:
> Close open file descriptors on error paths in copy_file() to prevent
> resource leaks when open(), fstat(), fchmod(), or sendfile() fail.
>
> Fixes: 5a406031d071 ("objtool: Add --output option")
> Signed-off-by: Qasim Ijaz <qasdev00@gmail.com>
Hi,
Thanks for the patch, but objtool is a short running process, so we
generally don't care about memory leaks.
--
Josh
© 2016 - 2025 Red Hat, Inc.