* Running snmpd in a different domain
@ 2009-04-07 22:05 Bandan Das
2009-04-08 12:08 ` Daniel J Walsh
2009-04-08 12:43 ` Stephen Smalley
0 siblings, 2 replies; 4+ messages in thread
From: Bandan Das @ 2009-04-07 22:05 UTC (permalink / raw)
To: selinux
Hello,
On a RHEL5.3 system, I am trying to run snmpd in a different domain (not
system_u:system_r:snmpd_t )if someone tries to run a specific init
script I provide : i.e if someone executes /etc/init.d/ft-snmp, snmpd
runs in system_u:system_r:ftsnmpd_t or else it runs in
system_u:system_r:snmpd_t.
Does this make sense or I am missing something ?
To try this out, I thought of changing the file context
of /etc/init.d/ft-snmp to system_u:object_r:ftsnmp_initrc_exec_t and
then using domain_auto_trans() on it. My preliminary fc and te files are
here :
[root@icefyres devel]# cat lsb-ft-snmp.te
policy_module(lsb-ft-snmp,2.1.0)
type ftsnmp_t;
domain_type(ftsnmp_t)
type ftsnmp_exec_t;
domain_entry_file(ftsnmp_t, ftsnmp_exec_t)
type ftsnmp_log_t;
logging_log_file(ftsnmp_log_t)
type ftsnmp_tmp_t;
files_tmp_file(ftsnmp_tmp_t)
type ftsnmp_initrc_exec_t;
[root@icefyres devel]# cat lsb-ft-snmp.fc
/opt/ft/sbin/ftlsubagent --
gen_context(system_u:object_r:ftsnmp_exec_t,s0)
/opt/ft/sbin/ftltrapsubagent --
gen_context(system_u:object_r:ftsnmp_exec_t,s0)
/etc/init.d/ft-snmp --
gen_context(system_u:object_r:ftsnmp_initrc_exec_t:s0)
After loading lsb-ft-snmp.pp and relabeling the file system, I see that
although, ftlsubagent and ftltrapsubagent have the intended contexts
(system_u:object_r:ftsnmp_exec_t), /etc/init.d/ft-snmp's context is
still system_u:object_r:initrc_exec_t and not
system_u:object_r:ftsnmp_initrc_exec_t
Is this the correct way to change the context of the ft-snmp init
script ?
Thanks,
Bandan
--
BSD
--
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: Running snmpd in a different domain
2009-04-07 22:05 Running snmpd in a different domain Bandan Das
@ 2009-04-08 12:08 ` Daniel J Walsh
2009-04-08 12:43 ` Stephen Smalley
1 sibling, 0 replies; 4+ messages in thread
From: Daniel J Walsh @ 2009-04-08 12:08 UTC (permalink / raw)
To: Bandan Das; +Cc: selinux
On 04/07/2009 06:05 PM, Bandan Das wrote:
> Hello,
>
> On a RHEL5.3 system, I am trying to run snmpd in a different domain (not
> system_u:system_r:snmpd_t )if someone tries to run a specific init
> script I provide : i.e if someone executes /etc/init.d/ft-snmp, snmpd
> runs in system_u:system_r:ftsnmpd_t or else it runs in
> system_u:system_r:snmpd_t.
>
> Does this make sense or I am missing something ?
>
> To try this out, I thought of changing the file context
> of /etc/init.d/ft-snmp to system_u:object_r:ftsnmp_initrc_exec_t and
> then using domain_auto_trans() on it. My preliminary fc and te files are
> here :
>
> [root@icefyres devel]# cat lsb-ft-snmp.te
>
> policy_module(lsb-ft-snmp,2.1.0)
>
> type ftsnmp_t;
> domain_type(ftsnmp_t)
>
> type ftsnmp_exec_t;
> domain_entry_file(ftsnmp_t, ftsnmp_exec_t)
>
> type ftsnmp_log_t;
> logging_log_file(ftsnmp_log_t)
>
> type ftsnmp_tmp_t;
> files_tmp_file(ftsnmp_tmp_t)
>
> type ftsnmp_initrc_exec_t;
>
> [root@icefyres devel]# cat lsb-ft-snmp.fc
>
> /opt/ft/sbin/ftlsubagent --
> gen_context(system_u:object_r:ftsnmp_exec_t,s0)
> /opt/ft/sbin/ftltrapsubagent --
> gen_context(system_u:object_r:ftsnmp_exec_t,s0)
> /etc/init.d/ft-snmp --
> gen_context(system_u:object_r:ftsnmp_initrc_exec_t:s0)
>
>
> After loading lsb-ft-snmp.pp and relabeling the file system, I see that
> although, ftlsubagent and ftltrapsubagent have the intended contexts
> (system_u:object_r:ftsnmp_exec_t), /etc/init.d/ft-snmp's context is
> still system_u:object_r:initrc_exec_t and not
> system_u:object_r:ftsnmp_initrc_exec_t
>
> Is this the correct way to change the context of the ft-snmp init
> script ?
>
>
> Thanks,
> Bandan
>
>
Make sure /etc/init.d/ft-snm is a file and you might want to try
escaping the .
/etc/init\.d/ft-snmp --
gen_context(system_u:object_r:ftsnmp_initrc_exec_t:s0)
--
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: Running snmpd in a different domain
2009-04-07 22:05 Running snmpd in a different domain Bandan Das
2009-04-08 12:08 ` Daniel J Walsh
@ 2009-04-08 12:43 ` Stephen Smalley
2009-04-08 15:55 ` Bandan Das
1 sibling, 1 reply; 4+ messages in thread
From: Stephen Smalley @ 2009-04-08 12:43 UTC (permalink / raw)
To: Bandan Das; +Cc: selinux
On Tue, 2009-04-07 at 18:05 -0400, Bandan Das wrote:
> Hello,
>
> On a RHEL5.3 system, I am trying to run snmpd in a different domain (not
> system_u:system_r:snmpd_t )if someone tries to run a specific init
> script I provide : i.e if someone executes /etc/init.d/ft-snmp, snmpd
> runs in system_u:system_r:ftsnmpd_t or else it runs in
> system_u:system_r:snmpd_t.
>
> Does this make sense or I am missing something ?
>
> To try this out, I thought of changing the file context
> of /etc/init.d/ft-snmp to system_u:object_r:ftsnmp_initrc_exec_t and
> then using domain_auto_trans() on it. My preliminary fc and te files are
> here :
>
> [root@icefyres devel]# cat lsb-ft-snmp.te
>
> policy_module(lsb-ft-snmp,2.1.0)
>
> type ftsnmp_t;
> domain_type(ftsnmp_t)
>
> type ftsnmp_exec_t;
> domain_entry_file(ftsnmp_t, ftsnmp_exec_t)
>
> type ftsnmp_log_t;
> logging_log_file(ftsnmp_log_t)
>
> type ftsnmp_tmp_t;
> files_tmp_file(ftsnmp_tmp_t)
>
> type ftsnmp_initrc_exec_t;
>
> [root@icefyres devel]# cat lsb-ft-snmp.fc
>
> /opt/ft/sbin/ftlsubagent --
> gen_context(system_u:object_r:ftsnmp_exec_t,s0)
> /opt/ft/sbin/ftltrapsubagent --
> gen_context(system_u:object_r:ftsnmp_exec_t,s0)
> /etc/init.d/ft-snmp --
> gen_context(system_u:object_r:ftsnmp_initrc_exec_t:s0)
Change the pathname regex to:
/etc/rc\.d/init\.d/ftp-snmp
(/etc/init.d is a symlink to /etc/rc.d/init.d, and "." is a regex
metacharacter)
> After loading lsb-ft-snmp.pp and relabeling the file system, I see that
> although, ftlsubagent and ftltrapsubagent have the intended contexts
> (system_u:object_r:ftsnmp_exec_t), /etc/init.d/ft-snmp's context is
> still system_u:object_r:initrc_exec_t and not
> system_u:object_r:ftsnmp_initrc_exec_t
>
> Is this the correct way to change the context of the ft-snmp init
> script ?
>
>
> Thanks,
> Bandan
>
>
--
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: Running snmpd in a different domain
2009-04-08 12:43 ` Stephen Smalley
@ 2009-04-08 15:55 ` Bandan Das
0 siblings, 0 replies; 4+ messages in thread
From: Bandan Das @ 2009-04-08 15:55 UTC (permalink / raw)
To: Stephen Smalley; +Cc: selinux
>
> Change the pathname regex to:
> /etc/rc\.d/init\.d/ftp-snmp
>
> (/etc/init.d is a symlink to /etc/rc.d/init.d, and "." is a regex
> metacharacter)
>
Yup, that did it! Thanks!
--
BSD
--
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:[~2009-04-08 15:55 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-07 22:05 Running snmpd in a different domain Bandan Das
2009-04-08 12:08 ` Daniel J Walsh
2009-04-08 12:43 ` Stephen Smalley
2009-04-08 15:55 ` Bandan Das
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.