From: Daniel J Walsh <dwalsh@redhat.com>
To: redhat-lspp <redhat-lspp@redhat.com>, SE Linux <selinux@tycho.nsa.gov>
Subject: Got up at 5 AM, and thought I would try to write a new role
Date: Fri, 16 Jun 2006 15:57:28 -0400 [thread overview]
Message-ID: <44930D28.2010103@redhat.com> (raw)
I wanted to try to create an auditadm_r.
I was surprised how easy it was. Had to trim down the
base_user_template, and add a couple of apache interfaces,
but basically ended up with the following. Tried it out on an MLS
machine and it seems to work pretty well. I even
have it defined as a loadable module. Comments below. One problem is we
need an easier way of handling
/etc/selinux/mls/contexts/default_type. Had to add httpdadm_r:httpdadm_t.
semanage users -m -R httpdadm_r SELINUXUSER
policy_module(httpdadm,1.0.0)
########################################
#
# Declarations
#
gen_require(`
role staff_r;
type staff_devpts_t, staff_tty_device_t, staff_t;
')
define(`role_change',`
allow $1_r $2_r;
type_change $2_t $1_devpts_t:chr_file $2_devpts_t;
type_change $2_t $1_tty_device_t:chr_file $2_tty_device_t;
# avoid annoying messages on terminal hangup
dontaudit $1_t { $2_devpts_t $2_tty_device_t }:chr_file ioctl;
')
##### Need to figure out a way make role_change a callable function.
Perhaps just define staff_role_change and user_role_change
minimal_user_template(httpdadm)
#### Needed to strip down base_user_template. Do not want to create
homedirs and eliminate all of the optional policy. Talked to Chris
about breaking
#### base_user_template into a series of templates.
role_change(staff,httpdadm)
#### Would prefer staff_role_change (httpadm)
files_read_usr_files(httpdadm_t)
#### Probably should be defined in one of the base_user_templates, since
this is pretty much required if you have a shell.
apache_manage_all_content(httpdadm_t)
apache_manage_log(httpdadm_t)
apache_manage_config(httpdadm_t)
##### Problems, I can't easily modify the running service. IE I would
figure the auditadmin would want to be able to start/stop/signal the
service.
##### But we do not have an easy way of doing only one service, and not
all the rest. Might have to add the ability to run su/sudo so if you
newrole
##### first it will work.
--
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.
next reply other threads:[~2006-06-16 19:57 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-06-16 19:57 Daniel J Walsh [this message]
2006-06-16 20:01 ` [redhat-lspp] Got up at 5 AM, and thought I would try to write a new role Steve Grubb
2006-06-16 20:11 ` Daniel J Walsh
2006-06-16 20:40 ` Stephen John Smoogen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=44930D28.2010103@redhat.com \
--to=dwalsh@redhat.com \
--cc=redhat-lspp@redhat.com \
--cc=selinux@tycho.nsa.gov \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.