[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAHC9VhTrWh6D8-B-15eqGv=0WhqMyeeRnY8Km7VEkNQyowZjvA@mail.gmail.com>
Date: Sat, 23 Jun 2018 12:15:22 -0400
From: Paul Moore <paul@...l-moore.com>
To: davem@...emloft.net
Cc: Paul Moore <pmoore@...hat.com>, netdev@...r.kernel.org,
selinux@...ho.nsa.gov, linux-security-module@...r.kernel.org
Subject: Re: [PATCH] ipv6: avoid copy_from_user() via ipv6_renew_options_kern()
On Sat, Jun 23, 2018 at 8:16 AM David Miller <davem@...emloft.net> wrote:
>
> From: Paul Moore <pmoore@...hat.com>
> Date: Fri, 22 Jun 2018 17:18:20 -0400
>
> > From: Paul Moore <paul@...l-moore.com>
> >
> > 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.
Okay, so it's the right fix for all the wrong reasons :)
Thanks for the correction; I'll fixup the commit subject/description
and resend when I'm in front of the system with the patch (later this
weekend, early next week).
--
paul moore
www.paul-moore.com
Powered by blists - more mailing lists