All of lore.kernel.org
 help / color / mirror / Atom feed
* I think this might be a bug.
@ 2010-03-04 18:40 Daniel J Walsh
  2010-03-04 20:24 ` Stephen Smalley
  0 siblings, 1 reply; 4+ messages in thread
From: Daniel J Walsh @ 2010-03-04 18:40 UTC (permalink / raw)
  To: SELinux

If I have a program that calls setfscreatecon on a directory that has a 
transition, the transition rule wins.  I think the setfscreatecon should 
win.

Sandbox creates a .sandboxRANDOM directory in the current working 
directory with setfscreatecon, If I do this in ~dwalsh  It does not 
work.  If I do it in ~dwalsh/.sandbox or /tmp or any directory other 
then my homedir toplevel it works.

Here is a python script that shows the behaviour

#!/usr/bin/python
from tempfile import mkdtemp
import selinux, os
selinux.setfscreatecon("staff_u:object_r:sandbox_x_file_t:s0:c1")
homedir = mkdtemp(dir="~/.sandbox", prefix=".sandbox")
print selinux.getfscreatecon()
print homedir



--
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: I think this might be a bug.
  2010-03-04 18:40 I think this might be a bug Daniel J Walsh
@ 2010-03-04 20:24 ` Stephen Smalley
  2010-03-04 20:38   ` Stephen Smalley
  0 siblings, 1 reply; 4+ messages in thread
From: Stephen Smalley @ 2010-03-04 20:24 UTC (permalink / raw)
  To: Daniel J Walsh; +Cc: SELinux

On Thu, 2010-03-04 at 13:40 -0500, Daniel J Walsh wrote:
> If I have a program that calls setfscreatecon on a directory that has a 
> transition, the transition rule wins.  I think the setfscreatecon should 
> win.
> 
> Sandbox creates a .sandboxRANDOM directory in the current working 
> directory with setfscreatecon, If I do this in ~dwalsh  It does not 
> work.  If I do it in ~dwalsh/.sandbox or /tmp or any directory other 
> then my homedir toplevel it works.
> 
> Here is a python script that shows the behaviour
> 
> #!/usr/bin/python
> from tempfile import mkdtemp
> import selinux, os
> selinux.setfscreatecon("staff_u:object_r:sandbox_x_file_t:s0:c1")
> homedir = mkdtemp(dir="~/.sandbox", prefix=".sandbox")
> print selinux.getfscreatecon()
> print homedir

kernel version?  setfscreatecon() should work unless the filesystem does
not support security labeling, and should override any default
transitions in the policy. 

-- 
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: I think this might be a bug.
  2010-03-04 20:24 ` Stephen Smalley
@ 2010-03-04 20:38   ` Stephen Smalley
  2010-03-05  4:34     ` Eric Paris
  0 siblings, 1 reply; 4+ messages in thread
From: Stephen Smalley @ 2010-03-04 20:38 UTC (permalink / raw)
  To: Daniel J Walsh; +Cc: SELinux, Eric Paris, James Morris

On Thu, 2010-03-04 at 15:24 -0500, Stephen Smalley wrote:
> On Thu, 2010-03-04 at 13:40 -0500, Daniel J Walsh wrote:
> > If I have a program that calls setfscreatecon on a directory that has a 
> > transition, the transition rule wins.  I think the setfscreatecon should 
> > win.
> > 
> > Sandbox creates a .sandboxRANDOM directory in the current working 
> > directory with setfscreatecon, If I do this in ~dwalsh  It does not 
> > work.  If I do it in ~dwalsh/.sandbox or /tmp or any directory other 
> > then my homedir toplevel it works.
> > 
> > Here is a python script that shows the behaviour
> > 
> > #!/usr/bin/python
> > from tempfile import mkdtemp
> > import selinux, os
> > selinux.setfscreatecon("staff_u:object_r:sandbox_x_file_t:s0:c1")
> > homedir = mkdtemp(dir="~/.sandbox", prefix=".sandbox")
> > print selinux.getfscreatecon()
> > print homedir
> 
> kernel version?  setfscreatecon() should work unless the filesystem does
> not support security labeling, and should override any default
> transitions in the policy. 

Confirmed on ext4; seems to work correctly on ext3.

Your python script didn't work for me, but this much simpler test does:
cd $HOME
mkdir -Z unconfined_u:object_r:etc_t:s0 bar
ls -Zd bar

-- 
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: I think this might be a bug.
  2010-03-04 20:38   ` Stephen Smalley
@ 2010-03-05  4:34     ` Eric Paris
  0 siblings, 0 replies; 4+ messages in thread
From: Eric Paris @ 2010-03-05  4:34 UTC (permalink / raw)
  To: Stephen Smalley; +Cc: Daniel J Walsh, SELinux, Eric Paris, James Morris

On Thu, 2010-03-04 at 15:38 -0500, Stephen Smalley wrote: 
> On Thu, 2010-03-04 at 15:24 -0500, Stephen Smalley wrote:
> > On Thu, 2010-03-04 at 13:40 -0500, Daniel J Walsh wrote:
> > > If I have a program that calls setfscreatecon on a directory that has a 
> > > transition, the transition rule wins.  I think the setfscreatecon should 
> > > win.
> > > 
> > > Sandbox creates a .sandboxRANDOM directory in the current working 
> > > directory with setfscreatecon, If I do this in ~dwalsh  It does not 
> > > work.  If I do it in ~dwalsh/.sandbox or /tmp or any directory other 
> > > then my homedir toplevel it works.
> > > 
> > > Here is a python script that shows the behaviour
> > > 
> > > #!/usr/bin/python
> > > from tempfile import mkdtemp
> > > import selinux, os
> > > selinux.setfscreatecon("staff_u:object_r:sandbox_x_file_t:s0:c1")
> > > homedir = mkdtemp(dir="~/.sandbox", prefix=".sandbox")
> > > print selinux.getfscreatecon()
> > > print homedir
> > 
> > kernel version?  setfscreatecon() should work unless the filesystem does
> > not support security labeling, and should override any default
> > transitions in the policy. 
> 
> Confirmed on ext4; seems to work correctly on ext3.
> 
> Your python script didn't work for me, but this much simpler test does:
> cd $HOME
> mkdir -Z unconfined_u:object_r:etc_t:s0 bar
> ls -Zd bar

I'm out on Friday, but I know someone else inside Red Hat was able to
reproduce issues.  I'm going to run it down on monday, but don't be
surprised if you see something from dave airlie about this issue....

thanks

-Eric


--
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:[~2010-03-05  4:34 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-03-04 18:40 I think this might be a bug Daniel J Walsh
2010-03-04 20:24 ` Stephen Smalley
2010-03-04 20:38   ` Stephen Smalley
2010-03-05  4:34     ` Eric Paris

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.