mirror of
https://github.com/torvalds/linux.git
synced 2026-06-05 04:56:13 +02:00
tracing: Avoid possible signed 64-bit truncation
64-bit truncation to 32-bit can result in the sign of the truncated value changing. The cmp_mod_entry is used in bsearch and so the truncation could result in an invalid search order. This would only happen were the addresses more than 2GB apart and so unlikely, but let's fix the potentially broken compare anyway. Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> Link: https://patch.msgid.link/20260108002625.333331-1-irogers@google.com Signed-off-by: Ian Rogers <irogers@google.com> Acked-by: Masami Hiramatsu (Google) <mhiramat@kernel.org> Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
This commit is contained in:
parent
90f9f5d64c
commit
00f13e28a9
|
|
@ -6115,10 +6115,10 @@ static int cmp_mod_entry(const void *key, const void *pivot)
|
|||
unsigned long addr = (unsigned long)key;
|
||||
const struct trace_mod_entry *ent = pivot;
|
||||
|
||||
if (addr >= ent[0].mod_addr && addr < ent[1].mod_addr)
|
||||
return 0;
|
||||
else
|
||||
return addr - ent->mod_addr;
|
||||
if (addr < ent[0].mod_addr)
|
||||
return -1;
|
||||
|
||||
return addr >= ent[1].mod_addr;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user