From: Ivan Gyurdiev <ivg2@cornell.edu>
To: SELinux@tycho.nsa.gov
Cc: Stephen Smalley <sds@tycho.nsa.gov>
Subject: [ SEMANAGE ] Install seusers, rename some files
Date: Mon, 31 Oct 2005 20:12:52 -0500 [thread overview]
Message-ID: <4366C114.9080708@cornell.edu> (raw)
[-- Attachment #1: Type: text/plain, Size: 201 bytes --]
Changes:
- adds seuser install code
- renames for consistency:
port_contexts -> ports.local
(empty) -> interfaces.local
local.users -> users.local
(and we have booleans.local)
[-- Attachment #2: libsemanage.install_seusers.diff --]
[-- Type: text/x-patch, Size: 4772 bytes --]
diff -Naurp --exclude CVS --exclude ChangeLog --exclude VERSION --exclude Makefile old/libsemanage/src/database_policydb.c new/libsemanage/src/database_policydb.c
--- old/libsemanage/src/database_policydb.c 2005-10-31 11:09:39.000000000 -0500
+++ new/libsemanage/src/database_policydb.c 2005-10-31 19:53:49.000000000 -0500
@@ -106,7 +106,7 @@ static int dbase_policydb_cache(
free(fname);
dbase->cached = 1;
return STATUS_SUCCESS;
-
+
err:
ERR(handle, "unable to cache policy database from %s", fname);
diff -Naurp --exclude CVS --exclude ChangeLog --exclude VERSION --exclude Makefile old/libsemanage/src/interfaces_file.c new/libsemanage/src/interfaces_file.c
--- old/libsemanage/src/interfaces_file.c 2005-10-31 11:09:39.000000000 -0500
+++ new/libsemanage/src/interfaces_file.c 2005-10-31 19:10:48.000000000 -0500
@@ -54,7 +54,7 @@ record_file_table_t SEMANAGE_IFACE_FILE_
int iface_file_dbase_init(dbase_config_t* dconfig) {
if (dbase_file_init(
- "", /* FIXME */
+ "interfaces.local",
&SEMANAGE_IFACE_RTABLE,
&SEMANAGE_IFACE_FILE_RTABLE,
&dconfig->dbase) < 0)
diff -Naurp --exclude CVS --exclude ChangeLog --exclude VERSION --exclude Makefile old/libsemanage/src/ports_file.c new/libsemanage/src/ports_file.c
--- old/libsemanage/src/ports_file.c 2005-10-31 11:09:39.000000000 -0500
+++ new/libsemanage/src/ports_file.c 2005-10-31 19:10:26.000000000 -0500
@@ -135,7 +135,7 @@ record_file_table_t SEMANAGE_PORT_FILE_R
int port_file_dbase_init(dbase_config_t* dconfig) {
if (dbase_file_init(
- "port_contexts",
+ "ports.local",
&SEMANAGE_PORT_RTABLE,
&SEMANAGE_PORT_FILE_RTABLE,
&dconfig->dbase) < 0)
diff -Naurp --exclude CVS --exclude ChangeLog --exclude VERSION --exclude Makefile old/libsemanage/src/semanage_store.c new/libsemanage/src/semanage_store.c
--- old/libsemanage/src/semanage_store.c 2005-10-27 15:27:03.000000000 -0400
+++ new/libsemanage/src/semanage_store.c 2005-10-31 19:45:08.000000000 -0500
@@ -94,7 +94,8 @@ static const char *semanage_sandbox_path
"/file_contexts",
"/homedir_template",
"/file_contexts.template",
- "/commit_num"
+ "/commit_num",
+ "/seusers"
};
/* Initialize the paths to config file, lock files and store root.
@@ -851,10 +852,12 @@ static int semanage_install_active(seman
const char *active_kernel = semanage_path(SEMANAGE_ACTIVE,SEMANAGE_KERNEL);
const char *active_fc = semanage_path(SEMANAGE_ACTIVE, SEMANAGE_FC);
const char *active_hd = semanage_path(SEMANAGE_ACTIVE, SEMANAGE_HOMEDIR_TMPL);
+ const char *active_seusers = semanage_path(SEMANAGE_ACTIVE, SEMANAGE_SEUSERS);
const char *running_fc = selinux_file_context_path();
const char *running_hd = selinux_homedir_context_path();
const char *running_policy = selinux_binary_policy_path();
+ const char *running_seusers = selinux_usersconf_path();
const char *really_active_store = selinux_policy_root();
/* This is very unelegant, the right thing to do is export the path
@@ -863,11 +866,13 @@ static int semanage_install_active(seman
char store_fc[PATH_MAX];
char store_hd[PATH_MAX];
char store_pol[PATH_MAX];
+ char store_seusers[PATH_MAX];
len = strlen(really_active_store);
running_fc += len;
running_hd += len;
running_policy += len;
+ running_seusers += len;
len = strlen(selinux_path()) + strlen(sh->conf->store_path) + 1;
storepath = (char *)malloc(len);
@@ -894,6 +899,12 @@ static int semanage_install_active(seman
goto cleanup;
}
+ snprintf(store_seusers, PATH_MAX, "%s%s", storepath, running_seusers);
+ if (semanage_copy_file(active_seusers, store_seusers) == -1) {
+ ERR(sh, "Could not copy %s to %s.", active_seusers, store_seusers);
+ goto cleanup;
+ }
+
if (!sh->do_reload)
goto skip_reload;
diff -Naurp --exclude CVS --exclude ChangeLog --exclude VERSION --exclude Makefile old/libsemanage/src/semanage_store.h new/libsemanage/src/semanage_store.h
--- old/libsemanage/src/semanage_store.h 2005-10-25 08:25:32.000000000 -0400
+++ new/libsemanage/src/semanage_store.h 2005-10-31 19:11:36.000000000 -0500
@@ -44,6 +44,7 @@ enum semanage_sandbox_defs {
SEMANAGE_HOMEDIR_TMPL,
SEMANAGE_FC_TMPL,
SEMANAGE_COMMIT_NUM_FILE,
+ SEMANAGE_SEUSERS,
SEMANAGE_STORE_NUM_PATHS
};
diff -Naurp --exclude CVS --exclude ChangeLog --exclude VERSION --exclude Makefile old/libsemanage/src/users_file.c new/libsemanage/src/users_file.c
--- old/libsemanage/src/users_file.c 2005-10-31 11:09:39.000000000 -0500
+++ new/libsemanage/src/users_file.c 2005-10-31 19:10:00.000000000 -0500
@@ -229,7 +229,7 @@ record_file_table_t SEMANAGE_USER_FILE_R
int user_file_dbase_init(dbase_config_t* dconfig) {
if (dbase_file_init(
- "local.users",
+ "users.local",
&SEMANAGE_USER_RTABLE,
&SEMANAGE_USER_FILE_RTABLE,
&dconfig->dbase) < 0)
next reply other threads:[~2005-11-01 1:12 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-11-01 1:12 Ivan Gyurdiev [this message]
2005-11-01 20:10 ` [ SEMANAGE ] Install seusers, rename some files Stephen Smalley
2005-11-01 20:34 ` Ivan Gyurdiev
2005-11-01 20:41 ` Stephen Smalley
2005-11-01 21:12 ` Ivan Gyurdiev
2005-11-01 21:05 ` Joshua Brindle
2005-11-01 21:42 ` Ivan Gyurdiev
2005-11-01 21:40 ` Stephen Smalley
2005-11-01 21:08 ` Stephen Smalley
2005-11-01 21:11 ` Stephen Smalley
2005-11-01 21:31 ` Ivan Gyurdiev
2005-11-01 21:27 ` Stephen Smalley
2005-11-01 21:15 ` Ivan Gyurdiev
2005-11-01 20:56 ` Ivan Gyurdiev
2005-11-01 21:02 ` Joshua Brindle
2005-11-01 21:10 ` Stephen Smalley
2005-11-01 21:20 ` Ivan Gyurdiev
2005-11-01 21:11 ` Joshua Brindle
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=4366C114.9080708@cornell.edu \
--to=ivg2@cornell.edu \
--cc=SELinux@tycho.nsa.gov \
--cc=sds@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.