All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Fix the range_transition rule
@ 2005-08-05 20:27 Paul Moore
  2005-08-06 15:45 ` Joshua Brindle
  0 siblings, 1 reply; 4+ messages in thread
From: Paul Moore @ 2005-08-05 20:27 UTC (permalink / raw)
  To: selinux; +Cc: jkim, chanson, Daniel J Walsh

Below is a patch to libsepol/src/expand.c to fix a problem with MLS 
range transitions.  The problem is that the function expand_module() 
reassigns numeric values for the types when copying them and the routine 
used to copy the range transitions, range_trans_clone(), simply copied 
the old type values leading to bad values in the resulting policy file.

This fix uses the old type value to look up the type name in the old 
symbol table and then uses the type name to lookup the new type value.

--- libsepol-1.7.9/src/expand.c.orig    2005-08-05 15:33:26.000000000 -0400
+++ libsepol-1.7.9/src/expand.c 2005-08-05 16:14:18.000000000 -0400
@@ -1349,11 +1349,21 @@ static int range_trans_clone(expand_stat

          while (range != NULL) {
                  range_trans_t *new_range;
+                type_datum_t *type;
+                char *type_name;
+
                  if ((new_range = malloc(sizeof(*new_range))) == NULL) {
                          goto out_of_mem;
                  }
-                new_range->dom = range->dom;
-                new_range->type = range->type;
+
+                /* convert the range_transition domain and type */
+                type_name = state->base->p_type_val_to_name[range->dom 
- 1];
+                type = hashtab_search(state->out->p_types.table, 
type_name);
+                new_range->dom = type->value;
+                type_name = state->base->p_type_val_to_name[range->type 
- 1];
+                type = hashtab_search(state->out->p_types.table, 
type_name);
+                new_range->type = type->value;
+
                  if (mls_level_clone(&new_range->range.level[0], 
&range->range.level[0]) == -1 ||
                      mls_level_clone(&new_range->range.level[1], 
&range->range.level[1])) {
                          goto out_of_mem;


-- 
. paul moore . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. paul.moore@hp.com                                      hewlett packard
. (603) 884-5056                                          linux security

--
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.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] Fix the range_transition rule
  2005-08-05 20:27 [PATCH] Fix the range_transition rule Paul Moore
@ 2005-08-06 15:45 ` Joshua Brindle
  2005-08-08 13:54   ` Stephen Smalley
  0 siblings, 1 reply; 4+ messages in thread
From: Joshua Brindle @ 2005-08-06 15:45 UTC (permalink / raw)
  To: Paul Moore; +Cc: selinux, jkim, chanson, Daniel J Walsh

Paul Moore wrote:

> Below is a patch to libsepol/src/expand.c to fix a problem with MLS 
> range transitions.  The problem is that the function expand_module() 
> reassigns numeric values for the types when copying them and the 
> routine used to copy the range transitions, range_trans_clone(), 
> simply copied the old type values leading to bad values in the 
> resulting policy file.
>
> This fix uses the old type value to look up the type name in the old 
> symbol table and then uses the type name to lookup the new type value.
>
> --- libsepol-1.7.9/src/expand.c.orig    2005-08-05 15:33:26.000000000 
> -0400
> +++ libsepol-1.7.9/src/expand.c 2005-08-05 16:14:18.000000000 -0400
> @@ -1349,11 +1349,21 @@ static int range_trans_clone(expand_stat
>
>          while (range != NULL) {
>                  range_trans_t *new_range;
> +                type_datum_t *type;
> +                char *type_name;
> +
>                  if ((new_range = malloc(sizeof(*new_range))) == NULL) {
>                          goto out_of_mem;
>                  }
> -                new_range->dom = range->dom;
> -                new_range->type = range->type;
> +
> +                /* convert the range_transition domain and type */
> +                type_name = 
> state->base->p_type_val_to_name[range->dom - 1];
> +                type = hashtab_search(state->out->p_types.table, 
> type_name);
> +                new_range->dom = type->value;
> +                type_name = 
> state->base->p_type_val_to_name[range->type - 1];
> +                type = hashtab_search(state->out->p_types.table, 
> type_name);
> +                new_range->type = type->value;
> +
>                  if (mls_level_clone(&new_range->range.level[0], 
> &range->range.level[0]) == -1 ||
>                      mls_level_clone(&new_range->range.level[1], 
> &range->range.level[1])) {
>                          goto out_of_mem;

Thanks, however this should probably be using the typemap that already 
does this sort of thing.
something like new_range->type = state->typemap[type->value - 1] should 
work correctly.



--
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.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] Fix the range_transition rule
  2005-08-06 15:45 ` Joshua Brindle
@ 2005-08-08 13:54   ` Stephen Smalley
  2005-08-08 14:06     ` Joshua Brindle
  0 siblings, 1 reply; 4+ messages in thread
From: Stephen Smalley @ 2005-08-08 13:54 UTC (permalink / raw)
  To: Joshua Brindle; +Cc: Paul Moore, selinux, jkim, chanson, Daniel J Walsh

On Sat, 2005-08-06 at 11:45 -0400, Joshua Brindle wrote:
> Thanks, however this should probably be using the typemap that already 
> does this sort of thing.
> something like new_range->type = state->typemap[type->value - 1] should 
> work correctly.

How about this patch?

Index: libsepol/src/expand.c
===================================================================
RCS file: /nfshome/pal/CVS/selinux-usr/libsepol/src/expand.c,v
retrieving revision 1.2
diff -u -p -r1.2 expand.c
--- libsepol/src/expand.c	2 Aug 2005 18:32:15 -0000	1.2
+++ libsepol/src/expand.c	8 Aug 2005 13:49:45 -0000
@@ -1352,8 +1352,8 @@ static int range_trans_clone(expand_stat
                 if ((new_range = malloc(sizeof(*new_range))) == NULL) {
                         goto out_of_mem;
                 }
-                new_range->dom = range->dom;
-                new_range->type = range->type;
+                new_range->dom = state->typemap[range->dom-1];
+                new_range->type = state->typemap[range->type-1];
                 if (mls_level_clone(&new_range->range.level[0], &range->range.level[0]) == -1 ||
                     mls_level_clone(&new_range->range.level[1], &range->range.level[1])) {
                         goto out_of_mem;

-- 
Stephen Smalley
National Security Agency


--
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.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] Fix the range_transition rule
  2005-08-08 13:54   ` Stephen Smalley
@ 2005-08-08 14:06     ` Joshua Brindle
  0 siblings, 0 replies; 4+ messages in thread
From: Joshua Brindle @ 2005-08-08 14:06 UTC (permalink / raw)
  To: Stephen Smalley; +Cc: Paul Moore, selinux, jkim, chanson, Daniel J Walsh

Stephen Smalley wrote:

>On Sat, 2005-08-06 at 11:45 -0400, Joshua Brindle wrote:
>  
>
>>Thanks, however this should probably be using the typemap that already 
>>does this sort of thing.
>>something like new_range->type = state->typemap[type->value - 1] should 
>>work correctly.
>>    
>>
>
>How about this patch?
>
>Index: libsepol/src/expand.c
>===================================================================
>RCS file: /nfshome/pal/CVS/selinux-usr/libsepol/src/expand.c,v
>retrieving revision 1.2
>diff -u -p -r1.2 expand.c
>--- libsepol/src/expand.c	2 Aug 2005 18:32:15 -0000	1.2
>+++ libsepol/src/expand.c	8 Aug 2005 13:49:45 -0000
>@@ -1352,8 +1352,8 @@ static int range_trans_clone(expand_stat
>                 if ((new_range = malloc(sizeof(*new_range))) == NULL) {
>                         goto out_of_mem;
>                 }
>-                new_range->dom = range->dom;
>-                new_range->type = range->type;
>+                new_range->dom = state->typemap[range->dom-1];
>+                new_range->type = state->typemap[range->type-1];
>                 if (mls_level_clone(&new_range->range.level[0], &range->range.level[0]) == -1 ||
>                     mls_level_clone(&new_range->range.level[1], &range->range.level[1])) {
>                         goto out_of_mem;
>
>  
>
That looks correct.

--
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.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2005-08-08 14:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-08-05 20:27 [PATCH] Fix the range_transition rule Paul Moore
2005-08-06 15:45 ` Joshua Brindle
2005-08-08 13:54   ` Stephen Smalley
2005-08-08 14:06     ` Joshua Brindle

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.