RE: [PATCH modules-next 1/1] kallsyms: enhance %pS/s/b printing when KALLSYSMS is disabled
From: Maninder Singh <hidden>
Date: 2022-05-12 03:45:05
Also in:
lkml
Hi,
On Wed, May 11, 2022 at 01:36:56PM +0530, Maninder Singh wrote:quoted
kallsyms_show_value return false if KALLSYMS is disabled, but its usage is done by module.c also. Thus when KALLSYMS is disabled, system will not print module load address:Eek, I hadn't see the other changes this depends on. I think those changes need to be reworked first. Notably in the other patch, this is no good: /* address belongs to module */ if (add_offset) len = sprintf(buf, "0x%p+0x%lx", base, offset); else len = sprintf(buf, "0x%lx", value); This is printing raw kernel addresses with no hashing, as far as I can tell. That's not okay at all.
yes same was suggested by Petr also, because earlier we were printing base address also as raw address. https://lkml.org/lkml/2022/2/28/847 but then modified approach to print base address as hash when we are going to show offset of module address, but when we print complete address then we thought of keeping it same as it was: original: [12.487424] ps 0xffff800000eb008c with patch: [9.624152] ps 0xffff800001bd008c [crash] But if its has to be hashed, will fix that also.
Once that other patch gets fixed, this one then can be revisited.
I will check detailed comments on that also
And just on naming: "kallsyms_tiny" is a weird name: it's just "ksyms" -- there's no "all". :)
Ok :) Will name it as knosyms.c (if it seems ok). Thanks, Maninder Singh