* How to handle lots of executables buried in /usr
@ 2003-11-24 15:01 Daniel J Walsh
2003-11-24 19:00 ` Stephen Smalley
0 siblings, 1 reply; 3+ messages in thread
From: Daniel J Walsh @ 2003-11-24 15:01 UTC (permalink / raw)
To: SE Linux
I am seeing lots of errors in policy because of shell scripts and exes
that are installed in subdirectories of /usr being marked as usr_t
instead of bin_t . What do you guys think of adding a script to be
executed after make relabel that would find these files and change their
context to bin_t.
find /usr -perm +111 --context system_u:object_r:usr_t -type f -exec
chcon \
system_u:object_r:bin_t {} ; -print
Is this a bad idea? I do notice that their are a lot of files marked
executables by their install that are really not executable, but this
would clean up several failures untill the package installs are cleaned up.
Dan
--
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
* Re: How to handle lots of executables buried in /usr
2003-11-24 15:01 How to handle lots of executables buried in /usr Daniel J Walsh
@ 2003-11-24 19:00 ` Stephen Smalley
2003-11-24 22:44 ` Daniel J Walsh
0 siblings, 1 reply; 3+ messages in thread
From: Stephen Smalley @ 2003-11-24 19:00 UTC (permalink / raw)
To: Daniel J Walsh; +Cc: SE Linux
On Mon, 2003-11-24 at 10:01, Daniel J Walsh wrote:
> I am seeing lots of errors in policy because of shell scripts and exes
> that are installed in subdirectories of /usr being marked as usr_t
> instead of bin_t . What do you guys think of adding a script to be
> executed after make relabel that would find these files and change their
> context to bin_t.
>
> find /usr -perm +111 --context system_u:object_r:usr_t -type f -exec
> chcon \
> system_u:object_r:bin_t {} ; -print
>
>
> Is this a bad idea? I do notice that their are a lot of files marked
> executables by their install that are really not executable, but this
> would clean up several failures untill the package installs are cleaned up.
It might be better to define multiple types for different groups of
binaries, and only grant execute access as appropriate.
As a side note, be careful about symlinks. The above find construct
will get the context of the symlink, but the chcon will set the context
of the referenced file unless you specify -h.
--
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] 3+ messages in thread
* Re: How to handle lots of executables buried in /usr
2003-11-24 19:00 ` Stephen Smalley
@ 2003-11-24 22:44 ` Daniel J Walsh
0 siblings, 0 replies; 3+ messages in thread
From: Daniel J Walsh @ 2003-11-24 22:44 UTC (permalink / raw)
To: Stephen Smalley; +Cc: SE Linux
[-- Attachment #1: Type: text/plain, Size: 1173 bytes --]
Stephen Smalley wrote:
>On Mon, 2003-11-24 at 10:01, Daniel J Walsh wrote:
>
>
>>I am seeing lots of errors in policy because of shell scripts and exes
>>that are installed in subdirectories of /usr being marked as usr_t
>>instead of bin_t . What do you guys think of adding a script to be
>>executed after make relabel that would find these files and change their
>>context to bin_t.
>>
>>find /usr -perm +111 --context system_u:object_r:usr_t -type f -exec
>>chcon \
>>system_u:object_r:bin_t {} ; -print
>>
>>
>>Is this a bad idea? I do notice that their are a lot of files marked
>>executables by their install that are really not executable, but this
>>would clean up several failures untill the package installs are cleaned up.
>>
>>
>
>It might be better to define multiple types for different groups of
>binaries, and only grant execute access as appropriate.
>
>As a side note, be careful about symlinks. The above find construct
>will get the context of the symlink, but the chcon will set the context
>of the referenced file unless you specify -h.
>
>
The -type f on the command line will ensure that it only gets files, not
sym links.
Dan
[-- Attachment #2: Type: text/html, Size: 1594 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2003-11-24 22:45 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-11-24 15:01 How to handle lots of executables buried in /usr Daniel J Walsh
2003-11-24 19:00 ` Stephen Smalley
2003-11-24 22:44 ` 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.