From: Steve Lawrence <slawrence@tresys.com>
To: Stephen Smalley <sds@tycho.nsa.gov>,
SELinux List <selinux@tycho.nsa.gov>
Subject: Re: [PATCH] policycoreutils: mcstrans: use string_to_av_perm() to calculate permission access vector
Date: Fri, 29 Aug 2014 09:18:59 -0400 [thread overview]
Message-ID: <54007DC3.7090505@tresys.com> (raw)
In-Reply-To: <54007CC1.70302@tycho.nsa.gov>
On 08/29/2014 09:14 AM, Stephen Smalley wrote:
> On 08/28/2014 04:47 PM, Steve Lawrence wrote:
>> mcstrans still uses CONTEXT__CONTAINS from av_permissions.h to calculate
>> a permission access vector. However, av_permissions.h was deprecated, so
>> it does not have access to the constant. This updates mcstrans to use
>> string_to_av_perm() to get the value for context contains.
>>
>> Reported-by: Sven Vermeulen <sven.vermeulen@siphos.be>
>> Signed-off-by: Steve Lawrence <slawrence@tresys.com>
>
> Acked-by: Stephen Smalley <sds@tycho.nsa.gov>
>
> I guess we don't build mcstrans by default and thus this wasn't noticed
> earlier?
>
Yep. Any reason not to include it by default?
>> ---
>> policycoreutils/mcstrans/src/mcscolor.c | 7 ++++---
>> 1 file changed, 4 insertions(+), 3 deletions(-)
>>
>> diff --git a/policycoreutils/mcstrans/src/mcscolor.c b/policycoreutils/mcstrans/src/mcscolor.c
>> index fdb7048..66f99d2 100644
>> --- a/policycoreutils/mcstrans/src/mcscolor.c
>> +++ b/policycoreutils/mcstrans/src/mcscolor.c
>> @@ -78,11 +78,12 @@ void finish_context_colors(void) {
>> static int check_dominance(const char *pattern, const char *raw) {
>> security_context_t ctx;
>> context_t con;
>> - unsigned int bit = CONTEXT__CONTAINS;
>> struct av_decision avd;
>> int rc = -1;
>> context_t my_tmp;
>> const char *raw_range;
>> + security_class_t context_class = string_to_security_class("context");
>> + access_vector_t context_contains_perm = string_to_av_perm(context_class, "contains");
>>
>> con = context_new(raw);
>> if (!con)
>> @@ -108,11 +109,11 @@ static int check_dominance(const char *pattern, const char *raw) {
>> if (!raw)
>> goto out;
>>
>> - rc = security_compute_av_raw(ctx, (security_context_t)raw, string_to_security_class("context"), bit, &avd);
>> + rc = security_compute_av_raw(ctx, (security_context_t)raw, context_class, context_contains_perm, &avd);
>> if (rc)
>> goto out;
>>
>> - rc = (bit & avd.allowed) != bit;
>> + rc = (context_contains_perm & avd.allowed) != context_contains_perm;
>> out:
>> free(ctx);
>> context_free(my_tmp);
>>
>
next prev parent reply other threads:[~2014-08-29 13:18 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-08-28 20:47 [PATCH] policycoreutils: mcstrans: use string_to_av_perm() to calculate permission access vector Steve Lawrence
2014-08-29 13:14 ` Stephen Smalley
2014-08-29 13:18 ` Steve Lawrence [this message]
2014-08-29 13:33 ` Stephen Smalley
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=54007DC3.7090505@tresys.com \
--to=slawrence@tresys.com \
--cc=sds@tycho.nsa.gov \
--cc=selinux@tycho.nsa.gov \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.