On Wed, May 26, 2021 at 12:07 AM Andrey Konovalov <andreyknvl@xxxxxxxxx> wrote: > On Wed, May 12, 2021 at 11:09 PM Peter Collingbourne <pcc@xxxxxxxxxx> wrote: > > Poisoning freed pages protects against kernel use-after-free. The > > likelihood of such a bug involving kernel pages is significantly higher > > than that for user pages. At the same time, poisoning freed pages can > > impose a significant performance cost, which cannot always be justified > > for user pages given the lower probability of finding a bug. Therefore, > > make it possible to configure the kernel to disable freed user page > > poisoning when using HW tags via the new kasan.skip_user_poison_on_free > > command line option. > > So the potential scenario that would be undetectable with > kasan.skip_user_poison_on_free enabled is: 1) kernel allocates a user > page and maps it for userspace, 2) the page gets freed in the kernel, > 3) kernel accesses the page leading to a use-after-free. Is this > correct? > > If bugs involving use-after-free accesses on user pages is something > that is extremely rare, perhaps we could just change the default and > avoid adding a command line switch. > > Jann, maybe you have an idea of how common something like this is or > have other inputs? GFP_USER is kind of a squishy concept, and if you grep around for it in the kernel tree, you can see it being used for all kinds of things - including SKBs in some weird ISDN driver, various types of BPF allocations, and so on. It's probably the wrong flag to hook if you want something that means "these pages will mostly be accessed from userspace". My guess is that what pcc@ is actually interested in are probably mainly anonymous pages, and to a lesser degree also page cache pages? Those use the more specific GFP_HIGHUSER_MOVABLE (which indicates that the kernel will usually not be holding any direct pointers to the page outside of rmap/pagecache logic, and that any kernel access to the pages will be using the kmap API). It's probably safe to assume that the majority of kernel bugs won't directly involve GFP_HIGHUSER_MOVABLE memory - that's probably mostly only going to happen if there are bugs in code that grabs pages with get_user_pages* and then kmap()s them, or if there's something broken in the pipe logic, or maybe an OOB issue in filesystem parsing code (?), or something like that.