All of lore.kernel.org
 help / color / mirror / Atom feed
From: Karl MacMillan <kmacmillan@mentalrootkit.com>
To: Joshua Brindle <jbrindle@tresys.com>
Cc: Stephen Smalley <sds@tycho.nsa.gov>,
	Dawid Gajownik <gajownik@gmail.com>,
	fedora-selinux-list@redhat.com,
	SELinux List <selinux@tycho.nsa.gov>
Subject: RE: How should I run genfscon in my module?
Date: Wed, 01 Nov 2006 11:09:35 -0500	[thread overview]
Message-ID: <1162397375.29617.20.camel@localhost.localdomain> (raw)
In-Reply-To: <6FE441CD9F0C0C479F2D88F959B0158851492D@exchange.columbia.tresys.com>

On Wed, 2006-11-01 at 10:27 -0500, Joshua Brindle wrote:
> > From: Karl MacMillan [mailto:kmacmillan@mentalrootkit.com] 
> > 
> > > > I looked at fixing this by changing genfscon to use 
> > user_identifier 
> > > > instead of identifier (they are the same except user_identifier 
> > > > includes "-"). This made checkpolicy generate a syntax 
> > error for all 
> > > > genfscon statements - haven't tracked down what the 
> > problem is. The 
> > > > grammer still seems to be unambiguous.
> > > 
> > > Use "user_id" instead.  Otherwise, you'll get a syntax 
> > error when the 
> > > token is classified as an IDENTIFIER (first match) and the grammar 
> > > says that it must be a USER_IDENTIFIER.
> > 
> > Right as usual.
> > 
> 
> Maybe make user_id more generic as it is no longer only used for users..

Just making generic would make the user related parts of the grammar
harder to read. What about this:

Index: trunk/checkpolicy/policy_parse.y
===================================================================
--- trunk/checkpolicy/policy_parse.y	(revision 2076)
+++ trunk/checkpolicy/policy_parse.y	(working copy)
@@ -605,6 +605,8 @@
 			;
 user_id			: identifier
 			| user_identifier
+                        ;
+dash_id                 : user_id
 			;
 user_def		: USER user_id ROLES names opt_mls_user ';'
 	                {if (define_user()) return -1;}
@@ -679,11 +681,11 @@
 genfs_contexts          : genfs_context_def
                         | genfs_contexts genfs_context_def
                         ;
-genfs_context_def	: GENFSCON identifier path '-' identifier security_context_def
+genfs_context_def	: GENFSCON dash_id path '-' identifier security_context_def
 			{if (define_genfs_context(1)) return -1;}
-			| GENFSCON identifier path '-' '-' {insert_id("-", 0);} security_context_def
+			| GENFSCON dash_id path '-' '-' {insert_id("-", 0);} security_context_def
 			{if (define_genfs_context(1)) return -1;}
-                        | GENFSCON identifier path security_context_def
+                        | GENFSCON dash_id path security_context_def
 			{if (define_genfs_context(0)) return -1;}
 			;
 ipv4_addr_def		: number '.' number '.' number '.' number


Signed-off by: Karl MacMillan <kmacmillan@mentalrootkit.com>


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

  reply	other threads:[~2006-11-01 16:09 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <6FE441CD9F0C0C479F2D88F959B015885146CC@exchange.columbia.tresys.com>
     [not found] ` <454509C2.7080008@gmail.com>
     [not found]   ` <1162316975.32614.146.camel@moss-spartans.epoch.ncsc.mil>
2006-10-31 21:48     ` How should I run genfscon in my module? Karl MacMillan
2006-11-01 13:32       ` Stephen Smalley
2006-11-01 15:21         ` Karl MacMillan
2006-11-01 15:27           ` Joshua Brindle
2006-11-01 16:09             ` Karl MacMillan [this message]
2006-11-01 16:12               ` Joshua Brindle
2006-11-01 18:18               ` Stephen Smalley
2006-11-02 15:22                 ` Karl MacMillan
2006-11-03 17:53                   ` 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=1162397375.29617.20.camel@localhost.localdomain \
    --to=kmacmillan@mentalrootkit.com \
    --cc=fedora-selinux-list@redhat.com \
    --cc=gajownik@gmail.com \
    --cc=jbrindle@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.