From: Steve Lawrence <slawrence@tresys.com>
To: Richard Haines <richard_c_haines@btinternet.com>
Cc: <selinux@tycho.nsa.gov>
Subject: Re: [PATCH 1/1] CIL compiler - Generate initial SIDs correctly in binary policy.
Date: Thu, 15 Sep 2011 10:36:00 -0400 [thread overview]
Message-ID: <4E720D50.1040504@tresys.com> (raw)
In-Reply-To: <1315233555.55198.YahooMailClassic@web87015.mail.ird.yahoo.com>
On 09/05/2011 10:39 AM, Richard Haines wrote:
> When running the CIL compiler, only the first initial SID was added to each entry of the binary file. This patch adds a counter to increment the SID count when writing out the file. This patch may not be the best way to achieve this, so I recommend that the CIL team review.
>
> Signed-off-by: Richard Haines <richard_c_haines@btinternet.com>
> ---
> src/cil_binary.c | 4 +++-
> 1 files changed, 3 insertions(+), 1 deletions(-)
>
> diff --git a/src/cil_binary.c b/src/cil_binary.c
> index ffe4f56..061a706 100644
> --- a/src/cil_binary.c
> +++ b/src/cil_binary.c
> @@ -42,6 +42,8 @@
> #include "cil_mem.h"
> #include "cil_tree.h"
>
> +static int sid_counter = 1;
> +
> struct cil_args_binary {
> const struct cil_db *db;
> policydb_t *pdb;
> @@ -1930,7 +1932,7 @@ int cil_sid_to_policydb(policydb_t *pdb, struct cil_tree_node *node)
> new_sepol_sidcon->next = pdb->ocontexts[OCON_ISID];
> pdb->ocontexts[OCON_ISID] = new_sepol_sidcon;
>
> - new_sepol_sidcon->sid[0] = pdb->ocontexts[OCON_ISID]->sid[0] + 1;
> + new_sepol_sidcon->sid[0] = pdb->ocontexts[OCON_ISID]->sid[0] + sid_counter++;
> new_sepol_sidcon->u.name = cil_strdup(cil_sid->datum.name);
>
> sepol_context = &new_sepol_sidcon->context[0];
Thanks for the patch/bug report. The problem was actually that we were
prepending the new sidcotext to the ocontexts linked list too early, so
we were using the new sidcontext instead of the previous sidcontext when
determining the new index. This should be fixed in the git repo in
commit 6909d32b23822490ebde13683088bf8f80c59ef1.
Thanks!
- Steve
--
This message was distributed to subscribers of the selinux mailing list.
If you no longer wish to subscribe, send mail to majordomo@tycho.nsa.gov with
the words "unsubscribe selinux" without quotes as the message.
prev parent reply other threads:[~2011-09-15 14:36 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-09-05 14:39 [PATCH 1/1] CIL compiler - Generate initial SIDs correctly in binary policy Richard Haines
2011-09-15 14:36 ` Steve Lawrence [this message]
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=4E720D50.1040504@tresys.com \
--to=slawrence@tresys.com \
--cc=richard_c_haines@btinternet.com \
--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.