* [patch] typeattribute statements
@ 2004-12-13 15:53 Darrel Goeddel
2004-12-13 20:05 ` Darrel Goeddel
2004-12-13 22:21 ` Karl MacMillan
0 siblings, 2 replies; 6+ messages in thread
From: Darrel Goeddel @ 2004-12-13 15:53 UTC (permalink / raw)
To: selinux@tycho.nsa.gov
[-- Attachment #1: Type: text/plain, Size: 715 bytes --]
Hello,
I have attached a simple patch which introduces a "typeattribute" statement
to the policy grammar. This will allow attributes to be added to a type after
its initial definition - much like the "typealias" statement allows for aliasing
after the initial type definition. The usage is as follows:
typeattribute TYPE ATTRIBUTES;
where TYPE is the type you are adding attributes to and ATTRIBUTES is a comma
separated list of the attributes you would like to add.
Such statements are useful for policy tweaking without extensive modification to
the existing .te files (which makes tracking changes much easier).
The patch is against the current sourceforge CVS chekpolicy directory.
--
Darrel
[-- Attachment #2: typeattr.patch --]
[-- Type: text/plain, Size: 3888 bytes --]
Index: policy_parse.y
===================================================================
RCS file: /cvsroot/selinux/nsa/selinux-usr/checkpolicy/policy_parse.y,v
retrieving revision 1.25
diff -u -r1.25 policy_parse.y
--- policy_parse.y 5 Nov 2004 19:14:42 -0000 1.25
+++ policy_parse.y 13 Dec 2004 15:37:38 -0000
@@ -68,6 +68,7 @@
static int define_av_base(void);
static int define_attrib(void);
static int define_typealias(void);
+static int define_typeattribute(void);
static int define_type(int alias);
static int define_compute_type(int which);
static int define_te_avtab(int which);
@@ -121,6 +122,7 @@
%token ROLE
%token ROLES
%token TYPEALIAS
+%token TYPEATTRIBUTE
%token TYPE
%token TYPES
%token ALIAS
@@ -287,6 +289,7 @@
te_decl : attribute_def
| type_def
| typealias_def
+ | typeattribute_def
| bool_def
| transition_def
| te_avtab_def
@@ -303,6 +306,9 @@
typealias_def : TYPEALIAS identifier alias_def ';'
{if (define_typealias()) return -1;}
;
+typeattribute_def : TYPEATTRIBUTE identifier id_comma_list ';'
+ {if (define_typeattribute()) return -1;}
+ ;
opt_attr_list : ',' id_comma_list
|
;
@@ -1633,10 +1639,9 @@
static int define_typealias(void)
{
char *id;
- type_datum_t *t, *aliasdatum;;
+ type_datum_t *t, *aliasdatum;
int ret;
-
if (pass == 2) {
while ((id = queue_remove(id_queue)))
free(id);
@@ -1686,6 +1691,84 @@
return 0;
}
+static int define_typeattribute(void)
+{
+ char *id;
+ type_datum_t *t, *attr;
+
+ if (pass == 2) {
+ while ((id = queue_remove(id_queue)))
+ free(id);
+ return 0;
+ }
+
+ id = (char *)queue_remove(id_queue);
+ if (!id) {
+ yyerror("no type name for typeattribute definition?");
+ return -1;
+ }
+
+ t = hashtab_search(policydbp->p_types.table, id);
+ if (!t || t->isattr) {
+ sprintf(errormsg, "unknown type %s", id);
+ yyerror(errormsg);
+ free(id);
+ return -1;
+ }
+
+ while ((id = queue_remove(id_queue))) {
+#ifdef CONFIG_SECURITY_SELINUX_MLS
+ if (!strcmp(id, "mlstrustedreader")) {
+ if (ebitmap_set_bit(&policydbp->trustedreaders,
+ (t->value - 1), TRUE)) {
+ yyerror("out of memory");
+ free(id);
+ return -1;
+ }
+ } else if (!strcmp(id, "mlstrustedwriter")) {
+ if (ebitmap_set_bit(&policydbp->trustedwriters,
+ (t->value - 1), TRUE)) {
+ yyerror("out of memory");
+ free(id);
+ return -1;
+ }
+ } else if (!strcmp(id, "mlstrustedobject")) {
+ if (ebitmap_set_bit(&policydbp->trustedobjects,
+ (t->value - 1), TRUE)) {
+ yyerror("out of memory");
+ free(id);
+ return -1;
+ }
+ }
+#endif
+ attr = hashtab_search(policydbp->p_types.table, id);
+ if (!attr) {
+ sprintf(errormsg, "attribute %s is not declared", id);
+ /* treat it as a fatal error */
+ yyerror(errormsg);
+ free(id);
+ return -1;
+ }
+
+ if (!attr->isattr) {
+ sprintf(errormsg, "%s is a type, not an attribute", id);
+ yyerror(errormsg);
+ free(id);
+ return -1;
+ }
+
+ free(id);
+
+ if (ebitmap_set_bit(&attr->types, (t->value - 1), TRUE)) {
+ yyerror("out of memory");
+ free(id);
+ return -1;
+ }
+ }
+
+ return 0;
+}
+
static int define_type(int alias)
{
char *id;
Index: policy_scan.l
===================================================================
RCS file: /cvsroot/selinux/nsa/selinux-usr/checkpolicy/policy_scan.l,v
retrieving revision 1.6
diff -u -r1.6 policy_scan.l
--- policy_scan.l 9 Aug 2004 18:12:29 -0000 1.6
+++ policy_scan.l 13 Dec 2004 15:37:38 -0000
@@ -64,6 +64,8 @@
types { return(TYPES); }
TYPEALIAS |
typealias { return(TYPEALIAS); }
+TYPEATTRIBUTE |
+typeattribute { return(TYPEATTRIBUTE); }
TYPE |
type { return(TYPE); }
BOOL |
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [patch] typeattribute statements 2004-12-13 15:53 [patch] typeattribute statements Darrel Goeddel @ 2004-12-13 20:05 ` Darrel Goeddel 2004-12-13 20:29 ` Stephen Smalley 2004-12-13 22:21 ` Karl MacMillan 1 sibling, 1 reply; 6+ messages in thread From: Darrel Goeddel @ 2004-12-13 20:05 UTC (permalink / raw) To: selinux@tycho.nsa.gov [-- Attachment #1: Type: text/plain, Size: 258 bytes --] Darrel Goeddel wrote: > ... The patch is against the current sourceforge CVS chekpolicy directory. > There is a bad call to free() in the patch that was sent earlier. A new patch is attached. I apologize for the goof. Questions/comments? -- Darrel [-- Attachment #2: typeattr-2.patch --] [-- Type: text/plain, Size: 3874 bytes --] Index: policy_parse.y =================================================================== RCS file: /cvsroot/selinux/nsa/selinux-usr/checkpolicy/policy_parse.y,v retrieving revision 1.25 diff -u -r1.25 policy_parse.y --- policy_parse.y 5 Nov 2004 19:14:42 -0000 1.25 +++ policy_parse.y 13 Dec 2004 15:37:38 -0000 @@ -68,6 +68,7 @@ static int define_av_base(void); static int define_attrib(void); static int define_typealias(void); +static int define_typeattribute(void); static int define_type(int alias); static int define_compute_type(int which); static int define_te_avtab(int which); @@ -121,6 +122,7 @@ %token ROLE %token ROLES %token TYPEALIAS +%token TYPEATTRIBUTE %token TYPE %token TYPES %token ALIAS @@ -287,6 +289,7 @@ te_decl : attribute_def | type_def | typealias_def + | typeattribute_def | bool_def | transition_def | te_avtab_def @@ -303,6 +306,9 @@ typealias_def : TYPEALIAS identifier alias_def ';' {if (define_typealias()) return -1;} ; +typeattribute_def : TYPEATTRIBUTE identifier id_comma_list ';' + {if (define_typeattribute()) return -1;} + ; opt_attr_list : ',' id_comma_list | ; @@ -1633,10 +1639,9 @@ static int define_typealias(void) { char *id; - type_datum_t *t, *aliasdatum;; + type_datum_t *t, *aliasdatum; int ret; - if (pass == 2) { while ((id = queue_remove(id_queue))) free(id); @@ -1686,6 +1691,83 @@ return 0; } +static int define_typeattribute(void) +{ + char *id; + type_datum_t *t, *attr; + + if (pass == 2) { + while ((id = queue_remove(id_queue))) + free(id); + return 0; + } + + id = (char *)queue_remove(id_queue); + if (!id) { + yyerror("no type name for typeattribute definition?"); + return -1; + } + + t = hashtab_search(policydbp->p_types.table, id); + if (!t || t->isattr) { + sprintf(errormsg, "unknown type %s", id); + yyerror(errormsg); + free(id); + return -1; + } + + while ((id = queue_remove(id_queue))) { +#ifdef CONFIG_SECURITY_SELINUX_MLS + if (!strcmp(id, "mlstrustedreader")) { + if (ebitmap_set_bit(&policydbp->trustedreaders, + (t->value - 1), TRUE)) { + yyerror("out of memory"); + free(id); + return -1; + } + } else if (!strcmp(id, "mlstrustedwriter")) { + if (ebitmap_set_bit(&policydbp->trustedwriters, + (t->value - 1), TRUE)) { + yyerror("out of memory"); + free(id); + return -1; + } + } else if (!strcmp(id, "mlstrustedobject")) { + if (ebitmap_set_bit(&policydbp->trustedobjects, + (t->value - 1), TRUE)) { + yyerror("out of memory"); + free(id); + return -1; + } + } +#endif + attr = hashtab_search(policydbp->p_types.table, id); + if (!attr) { + sprintf(errormsg, "attribute %s is not declared", id); + /* treat it as a fatal error */ + yyerror(errormsg); + free(id); + return -1; + } + + if (!attr->isattr) { + sprintf(errormsg, "%s is a type, not an attribute", id); + yyerror(errormsg); + free(id); + return -1; + } + + free(id); + + if (ebitmap_set_bit(&attr->types, (t->value - 1), TRUE)) { + yyerror("out of memory"); + return -1; + } + } + + return 0; +} + static int define_type(int alias) { char *id; Index: policy_scan.l =================================================================== RCS file: /cvsroot/selinux/nsa/selinux-usr/checkpolicy/policy_scan.l,v retrieving revision 1.6 diff -u -r1.6 policy_scan.l --- policy_scan.l 9 Aug 2004 18:12:29 -0000 1.6 +++ policy_scan.l 13 Dec 2004 15:37:38 -0000 @@ -64,6 +64,8 @@ types { return(TYPES); } TYPEALIAS | typealias { return(TYPEALIAS); } +TYPEATTRIBUTE | +typeattribute { return(TYPEATTRIBUTE); } TYPE | type { return(TYPE); } BOOL | ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [patch] typeattribute statements 2004-12-13 20:05 ` Darrel Goeddel @ 2004-12-13 20:29 ` Stephen Smalley 2004-12-13 21:08 ` Darrel Goeddel 0 siblings, 1 reply; 6+ messages in thread From: Stephen Smalley @ 2004-12-13 20:29 UTC (permalink / raw) To: Darrel Goeddel; +Cc: selinux@tycho.nsa.gov On Mon, 2004-12-13 at 15:05, Darrel Goeddel wrote: > There is a bad call to free() in the patch that was sent earlier. A new patch > is attached. I apologize for the goof. Questions/comments? Thanks, looks good. Only concern is the duplication of the MLS attribute handling code; we should use a common helper (although that code should be obsoleted in the future anyway). -- Stephen Smalley <sds@epoch.ncsc.mil> 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] 6+ messages in thread
* Re: [patch] typeattribute statements 2004-12-13 20:29 ` Stephen Smalley @ 2004-12-13 21:08 ` Darrel Goeddel 2004-12-13 21:26 ` Stephen Smalley 0 siblings, 1 reply; 6+ messages in thread From: Darrel Goeddel @ 2004-12-13 21:08 UTC (permalink / raw) To: Stephen Smalley; +Cc: selinux@tycho.nsa.gov [-- Attachment #1: Type: text/plain, Size: 434 bytes --] Stephen Smalley wrote: > Thanks, looks good. Only concern is the duplication of the MLS > attribute handling code; we should use a common helper (although that > code should be obsoleted in the future anyway). > Yes, that code should be going away - which is probably why I took no real effort to mess with it now. I have consolidated it for the time being with this new version of the patch. How's this one look? -- Darrel [-- Attachment #2: typeattr-3.patch --] [-- Type: text/plain, Size: 4891 bytes --] Index: policy_parse.y =================================================================== RCS file: /cvsroot/selinux/nsa/selinux-usr/checkpolicy/policy_parse.y,v retrieving revision 1.25 diff -u -r1.25 policy_parse.y --- policy_parse.y 5 Nov 2004 19:14:42 -0000 1.25 +++ policy_parse.y 13 Dec 2004 20:58:06 -0000 @@ -68,6 +68,7 @@ static int define_av_base(void); static int define_attrib(void); static int define_typealias(void); +static int define_typeattribute(void); static int define_type(int alias); static int define_compute_type(int which); static int define_te_avtab(int which); @@ -121,6 +122,7 @@ %token ROLE %token ROLES %token TYPEALIAS +%token TYPEATTRIBUTE %token TYPE %token TYPES %token ALIAS @@ -287,6 +289,7 @@ te_decl : attribute_def | type_def | typealias_def + | typeattribute_def | bool_def | transition_def | te_avtab_def @@ -303,6 +306,9 @@ typealias_def : TYPEALIAS identifier alias_def ';' {if (define_typealias()) return -1;} ; +typeattribute_def : TYPEATTRIBUTE identifier id_comma_list ';' + {if (define_typeattribute()) return -1;} + ; opt_attr_list : ',' id_comma_list | ; @@ -1633,10 +1639,9 @@ static int define_typealias(void) { char *id; - type_datum_t *t, *aliasdatum;; + type_datum_t *t, *aliasdatum; int ret; - if (pass == 2) { while ((id = queue_remove(id_queue))) free(id); @@ -1686,6 +1691,86 @@ return 0; } +#ifdef CONFIG_SECURITY_SELINUX_MLS +static int handle_mls_attributes(char *id, unsigned int value) +{ + if (!strcmp(id, "mlstrustedreader")) { + if (ebitmap_set_bit(&policydbp->trustedreaders, value, TRUE)) { + return -1; + } + } else if (!strcmp(id, "mlstrustedwriter")) { + if (ebitmap_set_bit(&policydbp->trustedwriters, value, TRUE)) { + return -1; + } + } else if (!strcmp(id, "mlstrustedobject")) { + if (ebitmap_set_bit(&policydbp->trustedobjects, value, TRUE)) { + return -1; + } + } + return 0; +} +#else /* CONFIG_SECURITY_SELINUX_MLS */ +#define handle_mls_attributes(id, value) 0 +#endif /* CONFIG_SECURITY_SELINUX_MLS */ + +static int define_typeattribute(void) +{ + char *id; + type_datum_t *t, *attr; + + if (pass == 2) { + while ((id = queue_remove(id_queue))) + free(id); + return 0; + } + + id = (char *)queue_remove(id_queue); + if (!id) { + yyerror("no type name for typeattribute definition?"); + return -1; + } + + t = hashtab_search(policydbp->p_types.table, id); + if (!t || t->isattr) { + sprintf(errormsg, "unknown type %s", id); + yyerror(errormsg); + free(id); + return -1; + } + + while ((id = queue_remove(id_queue))) { + if (handle_mls_attributes(id, (t->value - 1))) { + yyerror("out of memory"); + free(id); + return -1; + } + attr = hashtab_search(policydbp->p_types.table, id); + if (!attr) { + sprintf(errormsg, "attribute %s is not declared", id); + /* treat it as a fatal error */ + yyerror(errormsg); + free(id); + return -1; + } + + if (!attr->isattr) { + sprintf(errormsg, "%s is a type, not an attribute", id); + yyerror(errormsg); + free(id); + return -1; + } + + free(id); + + if (ebitmap_set_bit(&attr->types, (t->value - 1), TRUE)) { + yyerror("out of memory"); + return -1; + } + } + + return 0; +} + static int define_type(int alias) { char *id; @@ -1767,27 +1852,11 @@ } while ((id = queue_remove(id_queue))) { -#ifdef CONFIG_SECURITY_SELINUX_MLS - if (!strcmp(id, "mlstrustedreader")) { - if (ebitmap_set_bit(&policydbp->trustedreaders, datum->value - 1, TRUE)) { - yyerror("out of memory"); - free(id); - return -1; - } - } else if (!strcmp(id, "mlstrustedwriter")) { - if (ebitmap_set_bit(&policydbp->trustedwriters, datum->value - 1, TRUE)) { - yyerror("out of memory"); - free(id); - return -1; - } - } else if (!strcmp(id, "mlstrustedobject")) { - if (ebitmap_set_bit(&policydbp->trustedobjects, datum->value - 1, TRUE)) { - yyerror("out of memory"); - free(id); - return -1; - } + if (handle_mls_attributes(id, (datum->value - 1))) { + yyerror("out of memory"); + free(id); + return -1; } -#endif attr = hashtab_search(policydbp->p_types.table, id); if (!attr) { sprintf(errormsg, "attribute %s is not declared", id); Index: policy_scan.l =================================================================== RCS file: /cvsroot/selinux/nsa/selinux-usr/checkpolicy/policy_scan.l,v retrieving revision 1.6 diff -u -r1.6 policy_scan.l --- policy_scan.l 9 Aug 2004 18:12:29 -0000 1.6 +++ policy_scan.l 13 Dec 2004 20:58:06 -0000 @@ -64,6 +64,8 @@ types { return(TYPES); } TYPEALIAS | typealias { return(TYPEALIAS); } +TYPEATTRIBUTE | +typeattribute { return(TYPEATTRIBUTE); } TYPE | type { return(TYPE); } BOOL | ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [patch] typeattribute statements 2004-12-13 21:08 ` Darrel Goeddel @ 2004-12-13 21:26 ` Stephen Smalley 0 siblings, 0 replies; 6+ messages in thread From: Stephen Smalley @ 2004-12-13 21:26 UTC (permalink / raw) To: Darrel Goeddel; +Cc: selinux@tycho.nsa.gov On Mon, 2004-12-13 at 16:08, Darrel Goeddel wrote: > Yes, that code should be going away - which is probably why I took no real > effort to mess with it now. I have consolidated it for the time being with this > new version of the patch. How's this one look? Looks good, thanks. -- Stephen Smalley <sds@epoch.ncsc.mil> 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] 6+ messages in thread
* Re: [patch] typeattribute statements 2004-12-13 15:53 [patch] typeattribute statements Darrel Goeddel 2004-12-13 20:05 ` Darrel Goeddel @ 2004-12-13 22:21 ` Karl MacMillan 1 sibling, 0 replies; 6+ messages in thread From: Karl MacMillan @ 2004-12-13 22:21 UTC (permalink / raw) To: Darrel Goeddel; +Cc: selinux@tycho.nsa.gov On Mon, 2004-12-13 at 09:53 -0600, Darrel Goeddel wrote: > Hello, > I have attached a simple patch which introduces a "typeattribute" statement > to the policy grammar. This will allow attributes to be added to a type after > its initial definition - much like the "typealias" statement allows for aliasing > after the initial type definition. The usage is as follows: > > typeattribute TYPE ATTRIBUTES; > > where TYPE is the type you are adding attributes to and ATTRIBUTES is a comma > separated list of the attributes you would like to add. > > Such statements are useful for policy tweaking without extensive modification to > the existing .te files (which makes tracking changes much easier). > > The patch is against the current sourceforge CVS chekpolicy directory. > I think that this is a needed language extension and was on the list of things that we were planning to do for the policy server project. It might be nice if this worked inside conditional statements, but the patch would be much more intrusive. For anyone who has looked at the module syntax, we will add this to ifopt blocks to only enable the specified attributes with the optional requirements are made. Karl -- Karl MacMillan Tresys Technology http://www.tresys.com (410) 290-1411 ext134 > plain text document attachment (typeattr.patch) > Index: policy_parse.y > =================================================================== > RCS file: /cvsroot/selinux/nsa/selinux-usr/checkpolicy/policy_parse.y,v > retrieving revision 1.25 > diff -u -r1.25 policy_parse.y > --- policy_parse.y 5 Nov 2004 19:14:42 -0000 1.25 > +++ policy_parse.y 13 Dec 2004 15:37:38 -0000 > @@ -68,6 +68,7 @@ > static int define_av_base(void); > static int define_attrib(void); > static int define_typealias(void); > +static int define_typeattribute(void); > static int define_type(int alias); > static int define_compute_type(int which); > static int define_te_avtab(int which); > @@ -121,6 +122,7 @@ > %token ROLE > %token ROLES > %token TYPEALIAS > +%token TYPEATTRIBUTE > %token TYPE > %token TYPES > %token ALIAS > @@ -287,6 +289,7 @@ > te_decl : attribute_def > | type_def > | typealias_def > + | typeattribute_def > | bool_def > | transition_def > | te_avtab_def > @@ -303,6 +306,9 @@ > typealias_def : TYPEALIAS identifier alias_def ';' > {if (define_typealias()) return -1;} > ; > +typeattribute_def : TYPEATTRIBUTE identifier id_comma_list ';' > + {if (define_typeattribute()) return -1;} > + ; > opt_attr_list : ',' id_comma_list > | > ; > @@ -1633,10 +1639,9 @@ > static int define_typealias(void) > { > char *id; > - type_datum_t *t, *aliasdatum;; > + type_datum_t *t, *aliasdatum; > int ret; > > - > if (pass == 2) { > while ((id = queue_remove(id_queue))) > free(id); > @@ -1686,6 +1691,84 @@ > return 0; > } > > +static int define_typeattribute(void) > +{ > + char *id; > + type_datum_t *t, *attr; > + > + if (pass == 2) { > + while ((id = queue_remove(id_queue))) > + free(id); > + return 0; > + } > + > + id = (char *)queue_remove(id_queue); > + if (!id) { > + yyerror("no type name for typeattribute definition?"); > + return -1; > + } > + > + t = hashtab_search(policydbp->p_types.table, id); > + if (!t || t->isattr) { > + sprintf(errormsg, "unknown type %s", id); > + yyerror(errormsg); > + free(id); > + return -1; > + } > + > + while ((id = queue_remove(id_queue))) { > +#ifdef CONFIG_SECURITY_SELINUX_MLS > + if (!strcmp(id, "mlstrustedreader")) { > + if (ebitmap_set_bit(&policydbp->trustedreaders, > + (t->value - 1), TRUE)) { > + yyerror("out of memory"); > + free(id); > + return -1; > + } > + } else if (!strcmp(id, "mlstrustedwriter")) { > + if (ebitmap_set_bit(&policydbp->trustedwriters, > + (t->value - 1), TRUE)) { > + yyerror("out of memory"); > + free(id); > + return -1; > + } > + } else if (!strcmp(id, "mlstrustedobject")) { > + if (ebitmap_set_bit(&policydbp->trustedobjects, > + (t->value - 1), TRUE)) { > + yyerror("out of memory"); > + free(id); > + return -1; > + } > + } > +#endif > + attr = hashtab_search(policydbp->p_types.table, id); > + if (!attr) { > + sprintf(errormsg, "attribute %s is not declared", id); > + /* treat it as a fatal error */ > + yyerror(errormsg); > + free(id); > + return -1; > + } > + > + if (!attr->isattr) { > + sprintf(errormsg, "%s is a type, not an attribute", id); > + yyerror(errormsg); > + free(id); > + return -1; > + } > + > + free(id); > + > + if (ebitmap_set_bit(&attr->types, (t->value - 1), TRUE)) { > + yyerror("out of memory"); > + free(id); > + return -1; > + } > + } > + > + return 0; > +} > + > static int define_type(int alias) > { > char *id; > Index: policy_scan.l > =================================================================== > RCS file: /cvsroot/selinux/nsa/selinux-usr/checkpolicy/policy_scan.l,v > retrieving revision 1.6 > diff -u -r1.6 policy_scan.l > --- policy_scan.l 9 Aug 2004 18:12:29 -0000 1.6 > +++ policy_scan.l 13 Dec 2004 15:37:38 -0000 > @@ -64,6 +64,8 @@ > types { return(TYPES); } > TYPEALIAS | > typealias { return(TYPEALIAS); } > +TYPEATTRIBUTE | > +typeattribute { return(TYPEATTRIBUTE); } > TYPE | > type { return(TYPE); } > BOOL | -- 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] 6+ messages in thread
end of thread, other threads:[~2004-12-13 22:21 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2004-12-13 15:53 [patch] typeattribute statements Darrel Goeddel 2004-12-13 20:05 ` Darrel Goeddel 2004-12-13 20:29 ` Stephen Smalley 2004-12-13 21:08 ` Darrel Goeddel 2004-12-13 21:26 ` Stephen Smalley 2004-12-13 22:21 ` Karl MacMillan
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.