All of lore.kernel.org
 help / color / mirror / Atom feed
* semodule quirk
@ 2006-09-16  2:28 Serge E. Hallyn
  2006-09-18 17:06 ` Stephen Smalley
  0 siblings, 1 reply; 3+ messages in thread
From: Serge E. Hallyn @ 2006-09-16  2:28 UTC (permalink / raw)
  To: SELinux

[ Oops, sent this earlier from an unsubscribed account ]

I've got a policy module which just creates a new type and role,
intended for use by a new (linux) user.  An selinux user cannot be
defined in the policy module (near as I can tell, else I get
	ERROR 'Users cannot be declared in MLS modules' at token ';

So I don't define an selinux user, and do:

	semodule -i my_module.pp
	semanage user -a -R whatever_r -P whatever whatever_u
	semanage login -a -s whatever_u whatever

But, if the module wants to label a home directory for the user,
contexts involving the new (selinux) user are of course not yet
valid until after I run semanage.  Likewise I can't create the
user using semanage until I've defined the role and type using
semodule.

So for now I split the module into two, one defining the role
and type and related .te rules but an empty .fc, and one with
basically empty .te, defining all the filecontexts, and I do

	semodule -i my_module.pp
	semanage user -a -R whatever_r -P whatever whatever_u
	semanage login -a -s whatever_u whatever
	semodule -i my_modulefc.pp

which works fine.

Is there a better solution allowing a single module?  Should
there be?  Practically speaking I'm fine with the tradeoff of
having to use two separate modules for being able to user
semanage user and login, it just seems weird  :)

-serge

--
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] 3+ messages in thread

end of thread, other threads:[~2006-09-18 17:55 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-09-16  2:28 semodule quirk Serge E. Hallyn
2006-09-18 17:06 ` Stephen Smalley
2006-09-18 17:35   ` Darrel Goeddel

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.