public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Brendan Jackman <jackmanb@google.com>
To: Josh Poimboeuf <jpoimboe@kernel.org>
Cc: x86@kernel.org, linux-kernel@vger.kernel.org,
	Peter Zijlstra <peterz@infradead.org>,
	Nathan Chancellor <nathan@kernel.org>
Subject: Re: [PATCH 09/13] objtool: Add --output option
Date: Mon, 17 Mar 2025 09:40:38 +0000	[thread overview]
Message-ID: <Z9fuFphLv5pM7AC_@google.com> (raw)
In-Reply-To: <0da308d42d82b3bbed16a31a72d6bde52afcd6bd.1741975349.git.jpoimboe@kernel.org>

On Fri, Mar 14, 2025 at 12:29:07PM -0700, Josh Poimboeuf wrote:
> Add option to allow writing the changed binary to a separate file rather
> than changing it in place.
> 
> Libelf makes this suprisingly hard, so take the easy way out and just
> copy the file before editing it.
> 
> Also steal the -o short option from --orc.  Nobody will notice ;-)
> 
> Signed-off-by: Josh Poimboeuf <jpoimboe@kernel.org>
> ---
>  tools/objtool/builtin-check.c           | 98 ++++++++++++++++++++-----
>  tools/objtool/elf.c                     |  3 -
>  tools/objtool/include/objtool/builtin.h |  1 +
>  tools/objtool/objtool.c                 | 15 ++--
>  tools/objtool/orc_dump.c                |  7 +-
>  5 files changed, 89 insertions(+), 35 deletions(-)
> 
> diff --git a/tools/objtool/builtin-check.c b/tools/objtool/builtin-check.c
> index 79843512a51b..3de3afa0a19c 100644
> --- a/tools/objtool/builtin-check.c
> +++ b/tools/objtool/builtin-check.c
> @@ -6,6 +6,10 @@
>  #include <subcmd/parse-options.h>
>  #include <string.h>
>  #include <stdlib.h>
> +#include <fcntl.h>
> +#include <unistd.h>
> +#include <sys/stat.h>
> +#include <sys/sendfile.h>
>  #include <objtool/builtin.h>
>  #include <objtool/objtool.h>
>  
> @@ -14,6 +18,8 @@
>  		"error: objtool: " format "\n",		\
>  		##__VA_ARGS__)
>  
> +const char *objname;
> +
>  struct opts opts;
>  
>  static const char * const check_usage[] = {
> @@ -71,7 +77,7 @@ static const struct option check_options[] = {
>  	OPT_BOOLEAN('i', "ibt", &opts.ibt, "validate and annotate IBT"),
>  	OPT_BOOLEAN('m', "mcount", &opts.mcount, "annotate mcount/fentry calls for ftrace"),
>  	OPT_BOOLEAN('n', "noinstr", &opts.noinstr, "validate noinstr rules"),
> -	OPT_BOOLEAN('o', "orc", &opts.orc, "generate ORC metadata"),
> +	OPT_BOOLEAN(0,   "orc", &opts.orc, "generate ORC metadata"),
>  	OPT_BOOLEAN('r', "retpoline", &opts.retpoline, "validate and annotate retpoline usage"),
>  	OPT_BOOLEAN(0,   "rethunk", &opts.rethunk, "validate and annotate rethunk usage"),
>  	OPT_BOOLEAN(0,   "unret", &opts.unret, "validate entry unret placement"),
> @@ -84,15 +90,16 @@ static const struct option check_options[] = {
>  	OPT_CALLBACK_OPTARG(0, "dump", NULL, NULL, "orc", "dump metadata", parse_dump),
>  
>  	OPT_GROUP("Options:"),
> -	OPT_BOOLEAN(0, "backtrace", &opts.backtrace, "unwind on error"),
> -	OPT_BOOLEAN(0, "backup", &opts.backup, "create .orig files before modification"),
> -	OPT_BOOLEAN(0, "dry-run", &opts.dryrun, "don't write modifications"),
> -	OPT_BOOLEAN(0, "link", &opts.link, "object is a linked object"),
> -	OPT_BOOLEAN(0, "module", &opts.module, "object is part of a kernel module"),
> -	OPT_BOOLEAN(0, "mnop", &opts.mnop, "nop out mcount call sites"),
> -	OPT_BOOLEAN(0, "no-unreachable", &opts.no_unreachable, "skip 'unreachable instruction' warnings"),
> -	OPT_BOOLEAN(0, "sec-address", &opts.sec_address, "print section addresses in warnings"),
> -	OPT_BOOLEAN(0, "stats", &opts.stats, "print statistics"),
> +	OPT_BOOLEAN(0,   "backtrace", &opts.backtrace, "unwind on error"),
> +	OPT_BOOLEAN(0,   "backup", &opts.backup, "create .orig files before modification"),
> +	OPT_BOOLEAN(0,   "dry-run", &opts.dryrun, "don't write modifications"),
> +	OPT_BOOLEAN(0,   "link", &opts.link, "object is a linked object"),
> +	OPT_BOOLEAN(0,   "module", &opts.module, "object is part of a kernel module"),
> +	OPT_BOOLEAN(0,   "mnop", &opts.mnop, "nop out mcount call sites"),
> +	OPT_BOOLEAN(0,   "no-unreachable", &opts.no_unreachable, "skip 'unreachable instruction' warnings"),
> +	OPT_STRING('o',  "output", &opts.output, "file", "output file name"),

I think the docstring should say that it edits in place if the option
isn't provided.

> +	OPT_BOOLEAN(0,   "sec-address", &opts.sec_address, "print section addresses in warnings"),
> +	OPT_BOOLEAN(0,   "stats", &opts.stats, "print statistics"),
>  	OPT_BOOLEAN('v', "verbose", &opts.verbose, "verbose warnings"),
>  
>  	OPT_END(),
> @@ -178,24 +185,75 @@ static bool opts_valid(void)
>  	return false;
>  }
>  
> +static int copy_file(const char *src, const char *dst)
> +{
> +	size_t to_copy, copied;
> +	int dst_fd, src_fd;
> +	struct stat stat;
> +	off_t offset = 0;
> +
> +	src_fd = open(src, O_RDONLY);
> +	if (src_fd == -1) {
> +		ERROR("can't open '%s' for reading", src);
> +		return 1;
> +	}
> +
> +	dst_fd = open(dst, O_WRONLY | O_CREAT | O_TRUNC);
> +	if (dst_fd == -1) {
> +		ERROR("can't open '%s' for writing", dst);

Please include strerror(errno) here and above.

> +		return 1;

The annoying pedantry demon on my shoulder is compelling me to point
out that this and the following error returns leak file descriptors.

To be honest, I don't care in the slightest whether or not this "bug"
gets "fixed" but at least I quelled my pedantry demon by pointing it
out.

  reply	other threads:[~2025-03-17  9:40 UTC|newest]

Thread overview: 68+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-03-14 19:28 [PATCH 00/13] Fail the build on objtool warnings Josh Poimboeuf
2025-03-14 19:28 ` [PATCH 01/13] x86/traps: Make exc_double_fault() consistently noreturn Josh Poimboeuf
2025-03-17  8:26   ` Brendan Jackman
2025-03-17 10:46   ` [tip: objtool/core] " tip-bot2 for Josh Poimboeuf
2025-03-17 10:47   ` [PATCH 01/13] " Miroslav Benes
2025-03-14 19:29 ` [PATCH 02/13] objtool: Fix error handling inconsistencies in check() Josh Poimboeuf
2025-03-17  8:29   ` Brendan Jackman
2025-03-17 10:46   ` [tip: objtool/core] " tip-bot2 for Josh Poimboeuf
2025-03-17 10:47   ` [PATCH 02/13] " Miroslav Benes
2025-03-14 19:29 ` [PATCH 03/13] objtool: Improve __noreturn annotation warning Josh Poimboeuf
2025-03-17  8:31   ` Brendan Jackman
2025-03-17 10:36     ` Miroslav Benes
2025-03-17 10:46   ` [tip: objtool/core] " tip-bot2 for Josh Poimboeuf
2025-03-14 19:29 ` [PATCH 04/13] objtool: Update documentation Josh Poimboeuf
2025-03-17  8:47   ` Brendan Jackman
2025-03-17 10:46   ` [tip: objtool/core] " tip-bot2 for Josh Poimboeuf
2025-03-17 10:46   ` [PATCH 04/13] " Miroslav Benes
2025-03-14 19:29 ` [PATCH 05/13] objtool: Increase per-function WARN_FUNC() rate limit Josh Poimboeuf
2025-03-17  9:15   ` Brendan Jackman
2025-03-17 12:29     ` Miroslav Benes
2025-03-18 10:59       ` Brendan Jackman
2025-03-17 10:46   ` [tip: objtool/core] " tip-bot2 for Josh Poimboeuf
2025-03-14 19:29 ` [PATCH 06/13] objtool: Remove --unret dependency on --rethunk Josh Poimboeuf
2025-03-14 19:38   ` Peter Zijlstra
2025-03-14 19:52     ` Josh Poimboeuf
2025-03-14 19:58       ` Peter Zijlstra
2025-03-17 12:33       ` Miroslav Benes
2025-03-17 10:46   ` [tip: objtool/core] " tip-bot2 for Josh Poimboeuf
2025-03-14 19:29 ` [PATCH 07/13] objtool: Consolidate option validation Josh Poimboeuf
2025-03-17  9:19   ` Brendan Jackman
2025-03-17 10:46   ` [tip: objtool/core] " tip-bot2 for Josh Poimboeuf
2025-03-17 12:35   ` [PATCH 07/13] " Miroslav Benes
2025-03-14 19:29 ` [PATCH 08/13] objtool: Upgrade "Linked object detected" warning to error Josh Poimboeuf
2025-03-17  9:21   ` Brendan Jackman
2025-03-17 10:46   ` [tip: objtool/core] " tip-bot2 for Josh Poimboeuf
2025-03-17 12:38   ` [PATCH 08/13] " Miroslav Benes
2025-03-14 19:29 ` [PATCH 09/13] objtool: Add --output option Josh Poimboeuf
2025-03-17  9:40   ` Brendan Jackman [this message]
2025-03-17 10:46   ` [tip: objtool/core] " tip-bot2 for Josh Poimboeuf
2025-03-17 12:48   ` [PATCH 09/13] " Miroslav Benes
2025-03-14 19:29 ` [PATCH 10/13] objtool: Add --Werror option Josh Poimboeuf
2025-03-17 10:46   ` [tip: objtool/core] " tip-bot2 for Josh Poimboeuf
2025-03-17 12:53   ` [PATCH 10/13] " Miroslav Benes
2025-03-14 19:29 ` [PATCH 11/13] objtool: Change "warning:" to "error:" for --Werror Josh Poimboeuf
2025-03-17  9:42   ` Brendan Jackman
2025-03-17 10:46   ` [tip: objtool/core] " tip-bot2 for Josh Poimboeuf
2025-03-17 13:04   ` [PATCH 11/13] " Miroslav Benes
2025-03-14 19:29 ` [PATCH 12/13] objtool: Create backup on error and print args Josh Poimboeuf
2025-03-17  9:53   ` Brendan Jackman
2025-03-17 10:46   ` [tip: objtool/core] " tip-bot2 for Josh Poimboeuf
2025-03-17 14:09   ` [PATCH 12/13] " Miroslav Benes
2025-03-14 19:29 ` [PATCH 13/13] objtool: Add CONFIG_OBJTOOL_WERROR Josh Poimboeuf
2025-03-16  0:41   ` Ingo Molnar
2025-03-16  1:49     ` Josh Poimboeuf
2025-03-16 11:56       ` Ingo Molnar
2025-03-18  4:55         ` Josh Poimboeuf
2025-03-17 10:46   ` [tip: objtool/core] " tip-bot2 for Josh Poimboeuf
2025-03-17 11:07   ` tip-bot2 for Josh Poimboeuf
2025-03-17 21:27     ` Ingo Molnar
2025-03-18  0:05       ` Josh Poimboeuf
2025-03-20 17:10         ` Steven Rostedt
2025-03-18 11:51       ` Ingo Molnar
2025-03-18 14:26         ` Josh Poimboeuf
2025-03-20  8:51         ` Ingo Molnar
2025-03-18  0:27     ` Josh Poimboeuf
2025-03-18  4:59       ` Josh Poimboeuf
2025-03-17 14:14   ` [PATCH 13/13] " Miroslav Benes
2025-03-23  7:50     ` Josh Poimboeuf

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=Z9fuFphLv5pM7AC_@google.com \
    --to=jackmanb@google.com \
    --cc=jpoimboe@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=nathan@kernel.org \
    --cc=peterz@infradead.org \
    --cc=x86@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox