summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2005-03-23 16:27:27 +0000
committerJeremy Katz <katzj@redhat.com>2005-03-23 16:27:27 +0000
commit9747235b1e2b6ab8661385662d136c1c1718f046 (patch)
treed94767c6ca9fcac37efa02e2ea5dec386990ccfe
parent7b3ae991e585385d18a95ce795775337de6c8ccd (diff)
downloadanaconda-9747235b1e2b6ab8661385662d136c1c1718f046.tar.gz
anaconda-9747235b1e2b6ab8661385662d136c1c1718f046.tar.xz
anaconda-9747235b1e2b6ab8661385662d136c1c1718f046.zip
2005-03-23 Jeremy Katz <katzj@redhat.com>
* loader2/selinux.c: Load SELinux booleans (#151896)
-rw-r--r--ChangeLog4
-rw-r--r--loader2/selinux.c20
2 files changed, 21 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 4ef98c618..7186e78b2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2005-03-23 Jeremy Katz <katzj@redhat.com>
+
+ * loader2/selinux.c: Load SELinux booleans (#151896)
+
2005-03-23 Chris Lumens <clumens@redhat.com>
* scripts/upd-instroot (KEEPFILE, PACKAGES): Once more, with
diff --git a/loader2/selinux.c b/loader2/selinux.c
index 41ecb84c8..4cf721a0e 100644
--- a/loader2/selinux.c
+++ b/loader2/selinux.c
@@ -51,12 +51,17 @@ static char * getpolicyver() {
}
int loadpolicy() {
- char * ver, * fn;
+ char * ver, * fn, * bfn;
char *paths[] = { "/tmp/updates",
"/mnt/source/RHupdates",
"/mnt/runtime/etc/selinux/targeted/policy",
"/mnt/runtime/etc/security/selinux",
NULL };
+ char *bpaths[] = { "/tmp/updates",
+ "/mnt/source/RHupdates",
+ "/mnt/runtime/etc/selinux/targeted",
+ "/mnt/runtime/etc/security/selinux",
+ NULL };
int i, pid, status;
ver = getpolicyver();
@@ -73,7 +78,16 @@ int loadpolicy() {
}
}
- if (access(fn, R_OK)) {
+ bfn = malloc(128);
+ bfn = memset(bfn, 0, 128);
+ for (i = 0; paths[i]; i++) {
+ snprintf(bfn, 128, "%s/booleans", (char *) bpaths[i]);
+ if (!access(bfn, R_OK)) {
+ break;
+ }
+ }
+
+ if (access(fn, R_OK) || access(bfn, R_OK)) {
logMessage("Unable to load suitable SELinux policy");
return -1;
}
@@ -82,7 +96,7 @@ int loadpolicy() {
if (!(pid = fork())) {
setenv("LD_LIBRARY_PATH", LIBPATH, 1);
execl("/usr/sbin/load_policy",
- "/usr/sbin/load_policy", "-q", fn, NULL);
+ "/usr/sbin/load_policy", "-q", "-b", fn, bfn, NULL);
logMessage("exec of load_policy failed: %s", strerror(errno));
exit(1);
}