From: Paul Moore <pmoore@xxxxxxxxxx> Date: Fri, 22 Jun 2018 17:18:20 -0400 > From: Paul Moore <paul@xxxxxxxxxxxxxx> > > The ipv6_renew_options_kern() function eventually called into > copy_from_user(), despite it not using any userspace buffers, which > was problematic as that ended up calling access_ok() which emited > a warning on x86 (and likely other arches as well). > > ipv6_renew_options_kern() > ipv6_renew_options() > ipv6_renew_option() > copy_from_user() > _copy_from_user() > access_ok() > > The access_ok() check inside _copy_from_user() is obviously the right > thing to do which means that calling copy_from_user() via > ipv6_renew_options_kern() is obviously the wrong thing to do. Ok, I re-read the code around here. access_ok() is not warning because we are calling copy_from_user() with a kernel pointer. The set_ds(KERNEL_DS) adjusts the user_addr_max() setting, and thus that check passes. The problem is that we are invoking this from an interrupt, and this triggers the WARN_ON_IN_IRQ() in access_ok(). Although I think that WARN_ON_IN_IRQ() is completely unnecessary when KERNEL_DS is set, the situation that really causes this problem is not at all clear from your commit message. I guess that for now your fix is fine, but I want you to please adjust the commit message. Provide the _full_ annotated kernel backtrace from the warning that triggers, because this will show the reader that we are in an interrupt. And explain that being in the interrupt is strictly what causes this to warn, not that we are using kernel pointers. The latter is %100 valid when set_fs(KERNEL_DS) is performed. Thank you. _______________________________________________ Selinux mailing list Selinux@xxxxxxxxxxxxx To unsubscribe, send email to Selinux-leave@xxxxxxxxxxxxx. To get help, send an email containing "help" to Selinux-request@xxxxxxxxxxxxx.