All of lore.kernel.org
 help / color / mirror / Atom feed
* system_u:system_r:system_chkpwd_t:UNCLASSIFIED, how did I get here?
@ 2007-12-08 17:04 Ted X Toth
  2007-12-10 14:55 ` Stephen Smalley
  0 siblings, 1 reply; 4+ messages in thread
From: Ted X Toth @ 2007-12-08 17:04 UTC (permalink / raw)
  To: SE Linux

I'm running F8 with MLS reference policy (in permissive right now) and 
I'm trying to understand how I get into this context. I can understand 
how at some point while authenticating a transition to 
system_u:system_r:system_chkpwd_t would occur by virtue of running 
unix_chkpwd but then why wouldn't a transition to user_u:user_r:<*>_t 
happen? Also I'd like to understand how policy for pam, since it's a 
bunch of shared libraries, works. Are there any good sources of 
information on writing policy for shared libraries?

--
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: system_u:system_r:system_chkpwd_t:UNCLASSIFIED, how did I get here?
  2007-12-08 17:04 system_u:system_r:system_chkpwd_t:UNCLASSIFIED, how did I get here? Ted X Toth
@ 2007-12-10 14:55 ` Stephen Smalley
  2007-12-10 15:29   ` Xavier Toth
  0 siblings, 1 reply; 4+ messages in thread
From: Stephen Smalley @ 2007-12-10 14:55 UTC (permalink / raw)
  To: Ted X Toth; +Cc: SE Linux, Christopher J. PeBenito, Daniel J Walsh, Eamon Walsh

On Sat, 2007-12-08 at 11:04 -0600, Ted X Toth wrote:
> I'm running F8 with MLS reference policy (in permissive right now) and 
> I'm trying to understand how I get into this context. I can understand 
> how at some point while authenticating a transition to 
> system_u:system_r:system_chkpwd_t would occur by virtue of running 
> unix_chkpwd but then why wouldn't a transition to user_u:user_r:<*>_t 
> happen? Also I'd like to understand how policy for pam, since it's a 
> bunch of shared libraries, works. Are there any good sources of 
> information on writing policy for shared libraries?

getdefaultcon in libselinux/utils can help you with investigating what
context will be returned for a given user and from-context (i.e. context
of the login process).

First question is why is the user being mapped to system_u?  Bad seusers
configuration?  semanage login -l

As for chkpwd, get_ordered_context_list() first asks the kernel for the
full set of reachable contexts for the user via security_compute_user(),
which merely checks process transition permission.  Thus, the chkpwd
context is included in that set since it is reachable (since the login
process does in fact transition to it when executing unix_chkpwd).  But
it normally gets pruned from the final list based
on /etc/selinux/$SELINUXTYPE/contexts/default_contexts.  However, if no
matches are found there, it will return the original list from the
kernel, and thus you could end up there (in permissive mode).  There has
been some talk of overhauling get_ordered_context_list.

With regard to pam, there are no domain transitions on function calls,
only on execve, so there are no domain transitions when invoking pam
modules, only when those modules invoke helper programs like
unix_chkpwd.  The pam modules themselves run within the domain of the
caller.

-- 
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: system_u:system_r:system_chkpwd_t:UNCLASSIFIED, how did I get here?
  2007-12-10 14:55 ` Stephen Smalley
@ 2007-12-10 15:29   ` Xavier Toth
  2007-12-10 16:40     ` Daniel J Walsh
  0 siblings, 1 reply; 4+ messages in thread
From: Xavier Toth @ 2007-12-10 15:29 UTC (permalink / raw)
  To: SE Linux
  Cc: Christopher J. PeBenito, Daniel J Walsh, Eamon Walsh,
	Stephen Smalley

 sudo /usr/sbin/semanage login -l

Login Name                SELinux User              MLS/MCS Range

__default__               system_u                  UNCLASSIFIED
root                      root                      UNCLASSIFIED-SystemHigh
system_u                  system_u                  UNCLASSIFIED-SystemHigh

So I did:
sudo /usr/sbin/semanage login -m -s "user_u" __default__

and now life is good
id -Z
user_u:user_r:user_t:UNCLASSIFIED

Dan, I'd think that the policy spec file should probably do this for
mls as it does similar a thing to set the default login user for
targeted.


On Dec 10, 2007 8:55 AM, Stephen Smalley <sds@tycho.nsa.gov> wrote:
>
> On Sat, 2007-12-08 at 11:04 -0600, Ted X Toth wrote:
> > I'm running F8 with MLS reference policy (in permissive right now) and
> > I'm trying to understand how I get into this context. I can understand
> > how at some point while authenticating a transition to
> > system_u:system_r:system_chkpwd_t would occur by virtue of running
> > unix_chkpwd but then why wouldn't a transition to user_u:user_r:<*>_t
> > happen? Also I'd like to understand how policy for pam, since it's a
> > bunch of shared libraries, works. Are there any good sources of
> > information on writing policy for shared libraries?
>
> getdefaultcon in libselinux/utils can help you with investigating what
> context will be returned for a given user and from-context (i.e. context
> of the login process).
>
> First question is why is the user being mapped to system_u?  Bad seusers
> configuration?  semanage login -l
>
> As for chkpwd, get_ordered_context_list() first asks the kernel for the
> full set of reachable contexts for the user via security_compute_user(),
> which merely checks process transition permission.  Thus, the chkpwd
> context is included in that set since it is reachable (since the login
> process does in fact transition to it when executing unix_chkpwd).  But
> it normally gets pruned from the final list based
> on /etc/selinux/$SELINUXTYPE/contexts/default_contexts.  However, if no
> matches are found there, it will return the original list from the
> kernel, and thus you could end up there (in permissive mode).  There has
> been some talk of overhauling get_ordered_context_list.
>
> With regard to pam, there are no domain transitions on function calls,
> only on execve, so there are no domain transitions when invoking pam
> modules, only when those modules invoke helper programs like
> unix_chkpwd.  The pam modules themselves run within the domain of the
> caller.
>
> --
> 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: system_u:system_r:system_chkpwd_t:UNCLASSIFIED, how did I get here?
  2007-12-10 15:29   ` Xavier Toth
@ 2007-12-10 16:40     ` Daniel J Walsh
  0 siblings, 0 replies; 4+ messages in thread
From: Daniel J Walsh @ 2007-12-10 16:40 UTC (permalink / raw)
  To: Xavier Toth
  Cc: SE Linux, Christopher J. PeBenito, Eamon Walsh, Stephen Smalley

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Xavier Toth wrote:
>  sudo /usr/sbin/semanage login -l
> 
> Login Name                SELinux User              MLS/MCS Range
> 
> __default__               system_u                  UNCLASSIFIED
> root                      root                      UNCLASSIFIED-SystemHigh
> system_u                  system_u                  UNCLASSIFIED-SystemHigh
> 
> So I did:
> sudo /usr/sbin/semanage login -m -s "user_u" __default__
> 
> and now life is good
> id -Z
> user_u:user_r:user_t:UNCLASSIFIED
> 
> Dan, I'd think that the policy spec file should probably do this for
> mls as it does similar a thing to set the default login user for
> targeted.
> 
> 
> On Dec 10, 2007 8:55 AM, Stephen Smalley <sds@tycho.nsa.gov> wrote:
>> On Sat, 2007-12-08 at 11:04 -0600, Ted X Toth wrote:
>>> I'm running F8 with MLS reference policy (in permissive right now) and
>>> I'm trying to understand how I get into this context. I can understand
>>> how at some point while authenticating a transition to
>>> system_u:system_r:system_chkpwd_t would occur by virtue of running
>>> unix_chkpwd but then why wouldn't a transition to user_u:user_r:<*>_t
>>> happen? Also I'd like to understand how policy for pam, since it's a
>>> bunch of shared libraries, works. Are there any good sources of
>>> information on writing policy for shared libraries?
>> getdefaultcon in libselinux/utils can help you with investigating what
>> context will be returned for a given user and from-context (i.e. context
>> of the login process).
>>
>> First question is why is the user being mapped to system_u?  Bad seusers
>> configuration?  semanage login -l
>>
>> As for chkpwd, get_ordered_context_list() first asks the kernel for the
>> full set of reachable contexts for the user via security_compute_user(),
>> which merely checks process transition permission.  Thus, the chkpwd
>> context is included in that set since it is reachable (since the login
>> process does in fact transition to it when executing unix_chkpwd).  But
>> it normally gets pruned from the final list based
>> on /etc/selinux/$SELINUXTYPE/contexts/default_contexts.  However, if no
>> matches are found there, it will return the original list from the
>> kernel, and thus you could end up there (in permissive mode).  There has
>> been some talk of overhauling get_ordered_context_list.
>>
>> With regard to pam, there are no domain transitions on function calls,
>> only on execve, so there are no domain transitions when invoking pam
>> modules, only when those modules invoke helper programs like
>> unix_chkpwd.  The pam modules themselves run within the domain of the
>> caller.
>>
>> --
>> Stephen Smalley
>> National Security Agency
>>
>>

I am not sure houw you got this since the defaults for mls are

 more /etc/selinux/mls/seusers
system_u:system_u:s0-s15:c0.c1023
root:root:s0-s15:c0.c1023
__default__:user_u:s0
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.7 (GNU/Linux)
Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org

iD8DBQFHXWwBrlYvE4MpobMRAo16AKCyvztnjdUNxByMR5LpBoZaGBO1dwCg3BWX
d4OmjvF3ZOsyGQKSxSU/+Ac=
=vy3I
-----END PGP SIGNATURE-----

--
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:[~2007-12-10 16:40 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-12-08 17:04 system_u:system_r:system_chkpwd_t:UNCLASSIFIED, how did I get here? Ted X Toth
2007-12-10 14:55 ` Stephen Smalley
2007-12-10 15:29   ` Xavier Toth
2007-12-10 16:40     ` Daniel J Walsh

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.