Forum | Documentation | Website | Blog

Skip to content
Snippets Groups Projects
  • Neel Natu's avatar
    lib/cmdline: avoid page fault in next_arg · 9847f212
    Neel Natu authored
    An argument list like "arg=val arg2 \"" can trigger a page fault if the
    page pointed by 'args[0xffffffff]' is not mapped and potential memory
    corruption otherwise (unlikely but possible if the bogus address is mapped
    and contents happen to match the ascii value of the quote character).
    
    The fix is to ensure that we load 'args[i-1]' only when (i > 0).
    
    Prior to this commit the following command would trigger an
    unhandled page fault in the kernel:
    
    root@(none):/linus/fs/fat# insmod ./fat.ko  "foo=bar \""
    [   33.870507] BUG: unable to handle page fault for address: ffff888204252608
    [   33.872180] #PF: supervisor read access in kernel mode
    [   33.873414] #PF: error_code(0x0000) - not-present page
    [   33.874650] PGD 4401067 P4D 4401067 PUD 0
    [   33.875321] Oops: 0000 [#1] SMP DEBUG_PAGEALLOC PTI
    [   33.876113] CPU: 16 PID: 399 Comm: insmod Not tainted 5.19.0-dbg-DEV #4
    [   33.877193] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.16.0-debian-1.16.0-4 04/...
    9847f212