From: James Bottomley <James.Bottomley@HansenPartnership.com>
To: Kees Cook <keescook@chromium.org>
Cc: Eric Biggers <ebiggers3@gmail.com>,
"Reshetova, Elena" <elena.reshetova@intel.com>,
Christoph Hellwig <hch@infradead.org>,
"axboe@kernel.dk" <axboe@kernel.dk>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"linux-block@vger.kernel.org" <linux-block@vger.kernel.org>,
"linux-scsi@vger.kernel.org" <linux-scsi@vger.kernel.org>,
"linux-btrfs@vger.kernel.org" <linux-btrfs@vger.kernel.org>,
"peterz@infradead.org" <peterz@infradead.org>,
"gregkh@linuxfoundation.org" <gregkh@linuxfoundation.org>,
"fujita.tomonori@lab.ntt.co.jp" <fujita.tomonori@lab.ntt.co.jp>,
"mingo@redhat.com" <mingo@redhat.com>, "clm@fb.com" <clm@fb.com>,
"jbacik@fb.com" <jbacik@fb.com>,
"dsterba@suse.com" <dsterba@suse.com>
Subject: Re: [PATCH 0/5] v2: block subsystem refcounter conversions
Date: Fri, 21 Apr 2017 15:01:20 -0700 [thread overview]
Message-ID: <1492812080.7079.75.camel@HansenPartnership.com> (raw)
In-Reply-To: <CAGXu5jJ70Xb42As8p5t=WZ027GkBGcxUXrVnuaJMykpkROHVMw@mail.gmail.com>
On Fri, 2017-04-21 at 14:30 -0700, Kees Cook wrote:
> On Fri, Apr 21, 2017 at 2:27 PM, James Bottomley
> <James.Bottomley@hansenpartnership.com> wrote:
> > On Fri, 2017-04-21 at 13:22 -0700, Kees Cook wrote:
> > > On Fri, Apr 21, 2017 at 12:55 PM, Eric Biggers <
> > > ebiggers3@gmail.com>
> > > wrote:
> > > > > > Of course, having extra checks behind a debug option is
> > > > > > fine. But they should not be part of the base feature; the
> > > > > > base feature should just be mitigation of reference count
> > > > > > *overflows*. It would be nice to do more, of course; but
> > > > > > when the extra stuff prevents people from using refcount_t
> > > > > > for performance reasons, it defeats the point of the
> > > > > > feature in the first place.
> > > > >
> > > > > Sure, but as I said above, I think the smaller tricks and
> > > > > fixes won't be convincing enough, so their value is
> > > > > questionable.
> > > >
> > > > This makes no sense, as the main point of the feature is
> > > > supposed to be the security improvement. As-is, the extra
> > > > debugging stuff is actually preventing the security improvement
> > > > from being adopted, which is unfortunate.
> > >
> > > We've been trying to handle the conflicting desires of those
> > > wanting very precise refcounting implementation and gaining the
> > > security protections. Ultimately, the best way forward seemed to
> > > be to first land the precise refcounting implementation, and
> > > start conversion until we ran into concerns over performance.
> > > Now, since we're here, we can move forward with getting a fast
> > > implementation that provides the desired security protections
> > > without too greatly messing with the refcount API.
> >
> > But that's not what it really looks like. What it looks like is
> > someone came up with a new API and is now intent on forcing it
> > through the kernel in about 500 patches using security as the
> > hammer.
>
> The intent is to split refcounting and statistical counters away from
> atomics, since they have distinct APIs. This will let us audit the
> remaining atomic uses much more easily.
But the security problem is counter overflow, right? That problem, as
far as I can see exists in the atomics as well. I'm sure there might
be one or two corner cases depending on overflow actually working, but
I can't think of them.
The refcount vs atomic comes on the precise meaning of decrement to
zero. I'm not saying there's no benefit to detecting the condition,
but the security problem looks to be much more pressing which is why I
think this can be argued on the merits later.
> > If we were really concerned about security first, we'd have fixed
> > the atomic overflow problem in the atomics and then built the
> > precise refcounting on that and tried to persuade people of the
> > merits.
>
> I agree, but this approach was NAKed by multiple atomics maintainers.
Overriding that decision by trying to convince all the consumers to
move to a new API doesn't seem to be going so well either. Perhaps we
could assist you in changing the minds of the atomics maintainers ...
what was the primary problem? The additional couple of cycles or the
fact that some use cases want overflow (or something else)?
James
> > Why can't we still do this? It looks like the overflow protection
> > will add only a couple of cycles to the atomics. We can move the
> > current version to an unchecked variant which can be used either in
> > truly performance critical regions with no security implications or
> > if someone really needs the atomic to overflow. From my point of
> > view it would give us the 90% case (security) and stop this endless
> > argument over the fast paths. Subsystems which have already moved
> > to refcount would stay there and the rest get to evaluate a
> > migration on the merits of the operational utility.
>
> -Kees
>
next prev parent reply other threads:[~2017-04-21 22:01 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-04-20 11:27 [PATCH 0/5] v2: block subsystem refcounter conversions Elena Reshetova
2017-04-20 11:27 ` [PATCH 1/5] block: convert bio.__bi_cnt from atomic_t to refcount_t Elena Reshetova
2017-04-20 11:27 ` [PATCH 2/5] block: convert blk_queue_tag.refcnt " Elena Reshetova
2017-04-20 11:27 ` [PATCH 3/5] block: convert blkcg_gq.refcnt " Elena Reshetova
2017-04-20 11:27 ` [PATCH 4/5] block: convert io_context.active_ref " Elena Reshetova
2017-04-20 11:27 ` [PATCH 5/5] block: convert bsg_device.ref_count " Elena Reshetova
2017-04-20 13:56 ` [PATCH 0/5] v2: block subsystem refcounter conversions Christoph Hellwig
2017-04-20 16:10 ` Reshetova, Elena
2017-04-20 18:33 ` Eric Biggers
2017-04-21 10:55 ` Reshetova, Elena
2017-04-21 14:03 ` Jens Axboe
2017-04-21 15:22 ` Peter Zijlstra
2017-04-21 16:29 ` Jens Axboe
2017-04-21 17:11 ` Kees Cook
2017-04-21 19:55 ` Eric Biggers
2017-04-21 20:22 ` Kees Cook
2017-04-21 21:27 ` James Bottomley
2017-04-21 21:30 ` Kees Cook
2017-04-21 22:01 ` James Bottomley [this message]
2017-04-21 10:56 ` Christoph Hellwig
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=1492812080.7079.75.camel@HansenPartnership.com \
--to=james.bottomley@hansenpartnership.com \
--cc=axboe@kernel.dk \
--cc=clm@fb.com \
--cc=dsterba@suse.com \
--cc=ebiggers3@gmail.com \
--cc=elena.reshetova@intel.com \
--cc=fujita.tomonori@lab.ntt.co.jp \
--cc=gregkh@linuxfoundation.org \
--cc=hch@infradead.org \
--cc=jbacik@fb.com \
--cc=keescook@chromium.org \
--cc=linux-block@vger.kernel.org \
--cc=linux-btrfs@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-scsi@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=peterz@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).