From: Denis Obrezkov <denisobrezkov@gmail.com>
To: Casey Schaufler <casey@schaufler-ca.com>,
linux-security-module@vger.kernel.org
Subject: Re: Custom LSM: getting a null pointer dereference when trying to access a task security blob
Date: Mon, 24 Jan 2022 22:51:40 +0100 [thread overview]
Message-ID: <9db2a56a-2663-41bf-caf3-5fef2ef7c577@gmail.com> (raw)
In-Reply-To: <82883631-9eb1-2660-afe3-e7308ef1ed45@schaufler-ca.com>
>
> I'm curious about the value provided by KeyLock.
>
disclaimer: it's mostly for educational purposes, a part of my phd studies.
The main idea behind KeyLock is to be intuitive for an end-user. So, a
user should be able to attach "lock" labels to files (objects). A file
security context might look like: "label1(rw), label2(wx)"
Also, a user should be able to attach "key" labels to tasks (subjects).
So, the context of a task might look: "label5(r), label2(xt)"
A subject will have access to an object if it has all the keys for all
the locks:
Task (subj) | File (obj) | Access provided
-----------------------------------------------------------------------
lbl1(rw),lbl2(rx) | lbl1(rwx),lbl2(rwx) | yes: r
lbl1(rw),lbl2(rwx) | lbl1(wx),lbl2(r) | no (see masks)
lbl1(rwx),lbl3(rwx) | lbl1(rwx),lbl2(rwx) | no (no 'lbl2' key)
As you can see, actions like r, w, x are also accounted. So, firstly, in
order to provide access we should:
1. check that all "locks" have corresponding "keys"
2. logically summarize all permissions for each "key-lock" pair:
from the first example above
lbl1(rw) + lbl1(rwx) -> rw
lbl2(rx) + lbl2(rwx) -> rx
rw + rx -> r
So, with that system we can get rig of a rules file. Also, there is a
chance that it would be easier to use for non-IT people.
P.S. I know that it is possible to do similar things in SMACK, but for
educational purposes I decided to implement it in kernel code.
P.P.S. I tried to do it using SELinux and its policy languages but it
was too complicated for me.
--
Regards, Denis Obrezkov
next prev parent reply other threads:[~2022-01-25 3:44 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-01-23 15:47 Custom LSM: getting a null pointer dereference when trying to access a task security blob Denis Obrezkov
2022-01-23 17:01 ` Casey Schaufler
2022-01-23 19:58 ` Denis Obrezkov
2022-01-24 9:56 ` Denis Obrezkov
2022-01-24 17:23 ` Casey Schaufler
2022-01-24 21:51 ` Denis Obrezkov [this message]
2022-01-26 17:36 ` Casey Schaufler
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=9db2a56a-2663-41bf-caf3-5fef2ef7c577@gmail.com \
--to=denisobrezkov@gmail.com \
--cc=casey@schaufler-ca.com \
--cc=linux-security-module@vger.kernel.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).