Re: [PATCH 0/5] v2: block subsystem refcounter conversions

From: James Bottomley
Date: Fri Apr 21 2017 - 17:27:58 EST


On Fri, 2017-04-21 at 13:22 -0700, Kees Cook wrote:
> On Fri, Apr 21, 2017 at 12:55 PM, Eric Biggers <ebiggers3@xxxxxxxxx>
> 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.

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.

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.

James