* Symlinks with wrong context after copy
@ 2003-10-17 13:32 Thorsten Kukuk
2003-10-17 14:09 ` Stephen Smalley
0 siblings, 1 reply; 4+ messages in thread
From: Thorsten Kukuk @ 2003-10-17 13:32 UTC (permalink / raw)
To: selinux
Hi,
I don't know if this is a libattr or a selinux bug:
Symlinks have wrong attributes after copying:
dilbert:~ # ls --context /lib/ld-*
-rwxr-xr-x root root system_u:object_r:ld_so_t /lib/ld-2.3.2.so
lrwxrwxrwx root root system_u:object_r:ld_so_t /lib/ld-linux.so.2 -> ld-2.3.2.so
dilbert:~ # cp -dp /lib/ld-* .
dilbert:~ # ls --context ld-*
-rwxr-xr-x root root system_u:object_r:ld_so_t ld-2.3.2.so
lrwxrwxrwx root root system_u:object_r:sysadm_home_dir_t ld-linux.so.2 -> ld-2.3.2.so
any ideas what goes wrong?
Thorsten
--
Thorsten Kukuk http://www.suse.de/~kukuk/ kukuk@suse.de
SuSE Linux AG Deutschherrnstr. 15-19 D-90429 Nuernberg
--------------------------------------------------------------------
Key fingerprint = A368 676B 5E1B 3E46 CFCE 2D97 F8FD 4E23 56C6 FB4B
--
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: Symlinks with wrong context after copy
2003-10-17 13:32 Symlinks with wrong context after copy Thorsten Kukuk
@ 2003-10-17 14:09 ` Stephen Smalley
2003-10-17 14:17 ` Thorsten Kukuk
0 siblings, 1 reply; 4+ messages in thread
From: Stephen Smalley @ 2003-10-17 14:09 UTC (permalink / raw)
To: Thorsten Kukuk; +Cc: selinux, Russell Coker, Daniel J Walsh
On Fri, 2003-10-17 at 09:32, Thorsten Kukuk wrote:
> Hi,
>
> I don't know if this is a libattr or a selinux bug:
>
> Symlinks have wrong attributes after copying:
>
> dilbert:~ # ls --context /lib/ld-*
> -rwxr-xr-x root root system_u:object_r:ld_so_t /lib/ld-2.3.2.so
> lrwxrwxrwx root root system_u:object_r:ld_so_t /lib/ld-linux.so.2 -> ld-2.3.2.so
>
> dilbert:~ # cp -dp /lib/ld-* .
> dilbert:~ # ls --context ld-*
> -rwxr-xr-x root root system_u:object_r:ld_so_t ld-2.3.2.so
> lrwxrwxrwx root root system_u:object_r:sysadm_home_dir_t ld-linux.so.2 -> ld-2.3.2.so
>
> any ideas what goes wrong?
The implication is that the attributes on the copied symlink weren't
explicitly set, so they were instead left with the default (inheriting
from the parent directory, unless otherwise configured by policy).
Are you using the SELinux coreutils patch or the EA coreutils patch?
Also, IIRC, there was a specific decision in the SELinux coreutils patch
to not include the SELinux attributes as part of -p; you have to
explicitly specify -c or --preserve=all or --preserve=context.
Otherwise, a number of programs that use -p will break because they
aren't authorized to preserve the MAC security label.
--
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] 4+ messages in thread
* Re: Symlinks with wrong context after copy
2003-10-17 14:09 ` Stephen Smalley
@ 2003-10-17 14:17 ` Thorsten Kukuk
2003-10-17 15:05 ` Stephen Smalley
0 siblings, 1 reply; 4+ messages in thread
From: Thorsten Kukuk @ 2003-10-17 14:17 UTC (permalink / raw)
To: selinux
On Fri, Oct 17, Stephen Smalley wrote:
> On Fri, 2003-10-17 at 09:32, Thorsten Kukuk wrote:
> > Hi,
> >
> > I don't know if this is a libattr or a selinux bug:
> >
> > Symlinks have wrong attributes after copying:
> >
> > dilbert:~ # ls --context /lib/ld-*
> > -rwxr-xr-x root root system_u:object_r:ld_so_t /lib/ld-2.3.2.so
> > lrwxrwxrwx root root system_u:object_r:ld_so_t /lib/ld-linux.so.2 -> ld-2.3.2.so
> >
> > dilbert:~ # cp -dp /lib/ld-* .
> > dilbert:~ # ls --context ld-*
> > -rwxr-xr-x root root system_u:object_r:ld_so_t ld-2.3.2.so
> > lrwxrwxrwx root root system_u:object_r:sysadm_home_dir_t ld-linux.so.2 -> ld-2.3.2.so
> >
> > any ideas what goes wrong?
>
> The implication is that the attributes on the copied symlink weren't
> explicitly set, so they were instead left with the default (inheriting
> from the parent directory, unless otherwise configured by policy).
Yes, and the problem is, that somebody follows symlinks instead of
using the attributes of the symlinks itself.
> Are you using the SELinux coreutils patch or the EA coreutils patch?
I tried the SELinux coreutils patch on our own coreutils and the
RH binaries.
> Also, IIRC, there was a specific decision in the SELinux coreutils patch
> to not include the SELinux attributes as part of -p; you have to
> explicitly specify -c or --preserve=all or --preserve=context.
> Otherwise, a number of programs that use -p will break because they
> aren't authorized to preserve the MAC security label.
But this doesn't matter: the binary itself is copied correct with
SElinux attributes, the symlink is not.
Thorsten
--
Thorsten Kukuk http://www.suse.de/~kukuk/ kukuk@suse.de
SuSE Linux AG Deutschherrnstr. 15-19 D-90429 Nuernberg
--------------------------------------------------------------------
Key fingerprint = A368 676B 5E1B 3E46 CFCE 2D97 F8FD 4E23 56C6 FB4B
--
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: Symlinks with wrong context after copy
2003-10-17 14:17 ` Thorsten Kukuk
@ 2003-10-17 15:05 ` Stephen Smalley
0 siblings, 0 replies; 4+ messages in thread
From: Stephen Smalley @ 2003-10-17 15:05 UTC (permalink / raw)
To: Thorsten Kukuk; +Cc: selinux, Daniel J Walsh, Russell Coker
On Fri, 2003-10-17 at 10:17, Thorsten Kukuk wrote:
> I tried the SELinux coreutils patch on our own coreutils and the
> RH binaries.
# rpm -q coreutils
coreutils-5.0-27.sel
# ls -Z /lib/ld*
-rwxr-xr-x root root system_u:object_r:ld_so_t /lib/ld-2.3.2.so
lrwxrwxrwx root root system_u:object_r:lib_t /lib/ld-linux.so.2 -> ld-2.3.2.so
# cp -dp /lib/ld* .
# ls -Z ld*
-rwxr-xr-x root root sds:object_r:sysadm_home_dir_t ld-2.3.2.so
lrwxr-xr-x root root sds:object_r:sysadm_home_dir_t ld-linux.so.2 ->
ld-2.3.2.so
# rm -f ld*
# cp -dpc /lib/ld* .
# ls -Z ld*
-rwxr-xr-x root root system_u:object_r:ld_so_t ld-2.3.2.so
lrwxr-xr-x root root system_u:object_r:lib_t ld-linux.so.2 ->
ld-2.3.2.so
Things to note:
1) I changed the type on the symlink via chcon -h before starting so
that we can clearly see whether the context is being preserved from the
symlink itself or if the symlink is being followed.
2) cp -dp does not preserve the security context on either file, as
expected; instead, the files end up in the default type, inheriting from
the parent directory. Note that the EA-patched coreutils might give a
different behavior; I don't know myself.
3) cp -dpc preserves the context on both files, as expected.
--
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] 4+ messages in thread
end of thread, other threads:[~2003-10-17 15:05 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-10-17 13:32 Symlinks with wrong context after copy Thorsten Kukuk
2003-10-17 14:09 ` Stephen Smalley
2003-10-17 14:17 ` Thorsten Kukuk
2003-10-17 15:05 ` Stephen Smalley
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.