summaryrefslogtreecommitdiff
path: root/src/rc/rc-misc.c
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2008-01-05 20:43:08 +0000
committerRoy Marples <roy@marples.name>2008-01-05 20:43:08 +0000
commitc92be49041a7b56f651a93e71e15e94bc8727489 (patch)
tree0d827c479bfac37c35a6e2bf687f8353064707a2 /src/rc/rc-misc.c
parentac21d75300dabe83578e4373fcfd09d67c3a083b (diff)
downloadopenrc-c92be49041a7b56f651a93e71e15e94bc8727489.tar.gz
openrc-c92be49041a7b56f651a93e71e15e94bc8727489.tar.bz2
openrc-c92be49041a7b56f651a93e71e15e94bc8727489.tar.xz
Move the env whitelists to an rc var and build in the system whitelist.
Diffstat (limited to 'src/rc/rc-misc.c')
-rw-r--r--src/rc/rc-misc.c63
1 files changed, 50 insertions, 13 deletions
diff --git a/src/rc/rc-misc.c b/src/rc/rc-misc.c
index 0d8b8c1..aacd6fe 100644
--- a/src/rc/rc-misc.c
+++ b/src/rc/rc-misc.c
@@ -44,8 +44,8 @@
#include <string.h>
#include "rc.h"
-#include "rc-misc.h"
-#include "strlist.h"
+#include "../rc-misc.h"
+#include "../strlist.h"
#define PROFILE_ENV "/etc/profile.env"
#define SYS_WHITELIST RC_LIBDIR "/conf.d/env_whitelist"
@@ -113,17 +113,54 @@ char **env_filter (void)
char *p;
int pplen = strlen (PATH_PREFIX);
- whitelist = rc_config_list (SYS_WHITELIST);
- if (! whitelist)
- fprintf (stderr, "system environment whitelist (" SYS_WHITELIST ") missing\n");
-
- env = rc_config_list (USR_WHITELIST);
- rc_strlist_join (&whitelist, env);
- rc_strlist_free (env);
- env = NULL;
-
- if (! whitelist)
- return (NULL);
+ /* Init a system whitelist, start with shell vars we need */
+ rc_strlist_add (&whitelist, "PATH");
+ rc_strlist_add (&whitelist, "SHELL");
+ rc_strlist_add (&whitelist, "USER");
+ rc_strlist_add (&whitelist, "HOME");
+ rc_strlist_add (&whitelist, "TERM");
+
+ /* Add Language vars */
+ rc_strlist_add (&whitelist, "LANG");
+ rc_strlist_add (&whitelist, "LC_CTYPE");
+ rc_strlist_add (&whitelist, "LC_NUMERIC");
+ rc_strlist_add (&whitelist, "LC_TIME");
+ rc_strlist_add (&whitelist, "LC_COLLATE");
+ rc_strlist_add (&whitelist, "LC_MONETARY");
+ rc_strlist_add (&whitelist, "LC_MESSAGES");
+ rc_strlist_add (&whitelist, "LC_PAPER");
+ rc_strlist_add (&whitelist, "LC_NAME");
+ rc_strlist_add (&whitelist, "LC_ADDRESS");
+ rc_strlist_add (&whitelist, "LC_TELEPHONE");
+ rc_strlist_add (&whitelist, "LC_MEASUREMENT");
+ rc_strlist_add (&whitelist, "LC_IDENTIFICATION");
+ rc_strlist_add (&whitelist, "LC_ALL");
+
+ /* Allow rc to override library path */
+ rc_strlist_add (&whitelist, "LD_LIBRARY_PATH");
+
+ /* We need to know sysvinit stuff - we emulate this for BSD too */
+ rc_strlist_add (&whitelist, "INIT_HALT");
+ rc_strlist_add (&whitelist, "INIT_VERSION");
+ rc_strlist_add (&whitelist, "RUNLEVEL");
+ rc_strlist_add (&whitelist, "PREVLEVEL");
+ rc_strlist_add (&whitelist, "CONSOLE");
+
+ /* Hotplug and daemon vars */
+ rc_strlist_add (&whitelist, "IN_HOTPLUG");
+ rc_strlist_add (&whitelist, "IN_BACKGROUND");
+ rc_strlist_add (&whitelist, "RC_INTERFACE_KEEP_CONFIG");
+
+ /* Add the user defined list of vars */
+ e = env_name = xstrdup (rc_conf_value ("rc_env_allow"));
+ while ((token = strsep (&e, " "))) {
+ if (token[0] == '*') {
+ free (env_name);
+ return (NULL);
+ }
+ rc_strlist_add (&whitelist, token);
+ }
+ free (env_name);
if (exists (PROFILE_ENV))
profile = rc_config_load (PROFILE_ENV);