]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
objtool: Do not validate IBT for .return_sites and .call_sites
authorAlexandre Chartre <alexandre.chartre@oracle.com>
Fri, 21 Nov 2025 09:53:26 +0000 (10:53 +0100)
committerPeter Zijlstra <peterz@infradead.org>
Fri, 21 Nov 2025 14:30:12 +0000 (15:30 +0100)
The .return_sites and .call_sites sections reference text addresses,
but not with the intent to indirect branch to them, so they don't
need to be validated for IBT.

This is useful when running objtool on object files which already
have .return_sites or .call_sites sections, for example to re-run
objtool after it has reported an error or a warning.

Signed-off-by: Alexandre Chartre <alexandre.chartre@oracle.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Acked-by: Josh Poimboeuf <jpoimboe@kernel.org>
Link: https://patch.msgid.link/20251121095340.464045-17-alexandre.chartre@oracle.com
tools/objtool/check.c

index 442b655e3f25f1ab0d649730072806cdffcd9c5a..4ebadf94f8af238cc67dce1378a7dbbdd27bb09a 100644 (file)
@@ -4753,6 +4753,8 @@ static int validate_ibt(struct objtool_file *file)
                    !strcmp(sec->name, ".llvm.call-graph-profile")      ||
                    !strcmp(sec->name, ".llvm_bb_addr_map")             ||
                    !strcmp(sec->name, "__tracepoints")                 ||
+                   !strcmp(sec->name, ".return_sites")                 ||
+                   !strcmp(sec->name, ".call_sites")                   ||
                    !strcmp(sec->name, "__patchable_function_entries"))
                        continue;