lkml.org 
[lkml]   [2007]   [Jun]   [30]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
SubjectRe: [patch 0/4] MAP_NOZERO v2 - VM_NOZERO/MAP_NOZERO early summer madness
Date
On Jun 30, 2007, at 15:03:07, Davide Libenzi wrote:
> Hmm, why would you need MAP_REUSABLE? If a page is visible at any
> time for a given UID, and you have a login under such UID, you can
> fetch the content of the page at any time (ie, ptrace_attach,
> gdb, ...).

Not under SELinux or other LSMs. I suppose those could live without
a 15% performance improvement in some workloads, but it would be nice
if we could avoid it. Essentially, UID is a really poor way to
define process-security-equivalence classes in some systems. If you
really want to define such classes then you need to add LSM hooks to
manage the equivalence classes.

> I think the focus should be to find a case where under the
> currently implemented policy for MAP_NOZERO, MAP_NOZERO represent a
> loss of security WRT no MAP_NOZERO.

Very simple case:
SELinux is turned on, an s9 (IE: TOP_SECRET) process calls free(),
and an s3 (IE: UNCLASSIFIED) process calls malloc(), getting the data
from the TOP_SECRET process.

>> The real trick is how to define the "key". The default, without
>> LSMs, should be something like the UID. SELinux, on the other
>> hand, would probably want to use some kind of hash of the label as
>> the "key", (and store the label in each pool, as well). That way
>> SELinux could have a simple access-vector check for
>> process:reusepage, as well as an access-vector check and type
>> transition for "freereusablepage". Then a policy could allow most
>> user processes to unconditionally reuse pages (which would end up
>> in the access-vector-cache and therefore be fast), while security-
>> sensitive processes like ssh-agent could neither reuse pages nor
>> have their pages reused, even if they request it.
>
> It is very easy, assuming a simple unsigned long cookie is enough
> for SeLinux, to fit in the current MAP_NOZERO. Well, we have to
> change something in the current struct page _mapcount reuse, but
> that doable. There is one line to change, that is the line where
> the cookie is assigned to the mm_struct.

I think if you create the concept of a "process equivalence class"
and add an LSM hook for it, then the unsigned long could just store
which equivalence class the page is in. The default without LSMs
would be to use mutual-ptraceability as the equivalence class (IE:
the UID with a proviso for SUID binaries). LSMs should be able to
create a process_equivalence_class hook which when called returns an
unsigned long identifying the "equivalence class" (IE: pool) into
which the page is placed when freed (or ((unsigned long)-1) to
forcibly zero the page). When a process requests a maybe-not-zeroed
page, the LSM hook would be called again to determine what
equivalence class should be used, (or ((unsigned long)-1) for dont-
use-any-class).

Cheers,
Kyle Moffett
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2007-07-01 01:49    [W:0.180 / U:0.132 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site