From: Eric Paris <eparis@parisplace.org>
To: Dan Rosenberg <drosenberg@vsecurity.com>
Cc: linux-kernel@vger.kernel.org, netdev@vger.kernel.org,
linux-security-module@vger.kernel.org, jmorris@namei.org,
eric.dumazet@gmail.com, tgraf@infradead.org,
eugeneteo@kernel.org, kees.cook@canonical.com, mingo@elte.hu,
davem@davemloft.net, a.p.zijlstra@chello.nl,
akpm@linux-foundation.org
Subject: Re: [PATCH v3] kptr_restrict for hiding kernel pointers
Date: Sat, 18 Dec 2010 16:10:49 -0500 [thread overview]
Message-ID: <AANLkTin60NFzgx+oa3Y9c9QK_rYjAg-qwDHrr287f8Aj@mail.gmail.com> (raw)
In-Reply-To: <AANLkTimqpKem=rcfk5gsk0bMdWk45EuEThe0wAYiogxc@mail.gmail.com>
On Sat, Dec 18, 2010 at 4:07 PM, Eric Paris <eparis@parisplace.org> wrote:
> On Sat, Dec 18, 2010 at 12:20 PM, Dan Rosenberg
> <drosenberg@vsecurity.com> wrote:
>
>> @@ -1035,6 +1038,26 @@ char *pointer(const char *fmt, char *buf, char *end, void *ptr,
>> return buf + vsnprintf(buf, end - buf,
>> ((struct va_format *)ptr)->fmt,
>> *(((struct va_format *)ptr)->va));
>> + case 'K':
>> + /*
>> + * %pK cannot be used in IRQ context because it tests
>> + * CAP_SYSLOG.
>> + */
>> + if (in_irq() || in_serving_softirq() || in_nmi())
>> + WARN_ONCE(1, "%%pK used in interrupt context.\n");
>> +
>> + if (!kptr_restrict)
>> + break; /* %pK does not obscure pointers */
>> +
>> + if ((kptr_restrict != 2) && capable(CAP_SYSLOG))
>> + break; /* privileged apps expose pointers,
>> + unless kptr_restrict is 2 */
>
> I would suggest has_capability_noaudit() since a failure here is not a
> security policy violation it is just a code path choice.
>
> I was confused also by the comment about CAP_SYSLOG and IRQ context.
> You can check CAP_SYSLOG in IRQ context, it's just that the result is
> not going to have any relation to the work being done. This function
> in general doesn't make sense in that context and I don't think saying
> that has anything to do with CAP_SYSLOG makes that clear.... Unless
> I'm misunderstanding...
Just went back and reread akpm's comments on -v2. I guess we see it
the same way, I just thought this comment on first glance indicated
that capable() wasn't IRQ safe (it is) not that it just was
meaningless... I don't think rewriting the comment is necessary.
Sorry for that half of the message....
next prev parent reply other threads:[~2010-12-18 21:10 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-12-18 17:20 [PATCH v3] kptr_restrict for hiding kernel pointers Dan Rosenberg
2010-12-18 18:27 ` Kees Cook
2010-12-18 21:07 ` Eric Paris
2010-12-18 21:10 ` Eric Paris [this message]
2010-12-20 22:26 ` Valdis.Kletnieks
2010-12-20 23:01 ` Dan Rosenberg
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=AANLkTin60NFzgx+oa3Y9c9QK_rYjAg-qwDHrr287f8Aj@mail.gmail.com \
--to=eparis@parisplace.org \
--cc=a.p.zijlstra@chello.nl \
--cc=akpm@linux-foundation.org \
--cc=davem@davemloft.net \
--cc=drosenberg@vsecurity.com \
--cc=eric.dumazet@gmail.com \
--cc=eugeneteo@kernel.org \
--cc=jmorris@namei.org \
--cc=kees.cook@canonical.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-security-module@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=netdev@vger.kernel.org \
--cc=tgraf@infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).