/* * Copyright (C) 2014-2016 Firejail Authors * * This file is part of firejail project * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "firejail.h" #include #include #include #include typedef struct env_t { struct env_t *next; char *name; char *value; ENV_OP op; } Env; static Env *envlist = NULL; static void env_add(Env *env) { env->next = NULL; // add the new entry at the end of the list if (envlist == NULL) { envlist = env; return; } Env *ptr = envlist; while (1) { if (ptr->next == NULL) { ptr->next = env; break; } ptr = ptr->next; } } // load IBUS env variables void env_ibus_load(void) { // check ~/.config/ibus/bus directory char *dirname; if (asprintf(&dirname, "%s/.config/ibus/bus", cfg.homedir) == -1) errExit("asprintf"); struct stat s; if (stat(dirname, &s) == -1) return; // find the file /* coverity[toctou] */ DIR *dir = opendir(dirname); if (!dir) { free(dirname); return; } struct dirent *entry; while ((entry = readdir(dir)) != NULL) { // check the file name ends in "unix-0" char *ptr = strstr(entry->d_name, "unix-0"); if (!ptr) continue; if (strlen(ptr) != 6) continue; // open the file char *fname; if (asprintf(&fname, "%s/%s", dirname, entry->d_name) == -1) errExit("asprintf"); FILE *fp = fopen(fname, "r"); free(fname); if (!fp) continue; // read the file const int maxline = 4096; char buf[maxline]; while (fgets(buf, maxline, fp)) { if (strncmp(buf, "IBUS_", 5) != 0) continue; char *ptr = strchr(buf, '='); if (!ptr) continue; ptr = strchr(buf, '\n'); if (ptr) *ptr = '\0'; if (arg_debug) printf("%s\n", buf); EUID_USER(); env_store(buf, SETENV); EUID_ROOT(); } fclose(fp); } free(dirname); closedir(dir); } // default sandbox env variables void env_defaults(void) { // fix qt 4.8 if (setenv("QT_X11_NO_MITSHM", "1", 1) < 0) errExit("setenv"); if (setenv("container", "firejail", 1) < 0) // LXC sets container=lxc, errExit("setenv"); if (arg_zsh && setenv("SHELL", "/usr/bin/zsh", 1) < 0) errExit("setenv"); if (arg_csh && setenv("SHELL", "/bin/csh", 1) < 0) errExit("setenv"); if (cfg.shell && setenv("SHELL", cfg.shell, 1) < 0) errExit("setenv"); // set prompt color to green //export PS1='\[\e[1;32m\][\u@\h \W]\$\[\e[0m\] ' if (setenv("PROMPT_COMMAND", "export PS1=\"\\[\\e[1;32m\\][\\u@\\h \\W]\\$\\[\\e[0m\\] \"", 1) < 0) errExit("setenv"); // build the window title and set it char *title; if (asprintf(&title, "\033]0;firejail %s\007\n", cfg.window_title) == -1) errExit("asprintf"); printf("%s", title); free(title); } // parse and store the environment setting void env_store(const char *str, ENV_OP op) { EUID_ASSERT(); assert(str); // some basic checking if (*str == '\0') goto errexit; char *ptr = strchr(str, '='); if (op == SETENV) { if (!ptr) goto errexit; ptr++; if (*ptr == '\0') goto errexit; } // build list entry Env *env = malloc(sizeof(Env)); if (!env) errExit("malloc"); memset(env, 0, sizeof(Env)); env->name = strdup(str); if (env->name == NULL) errExit("strdup"); if (op == SETENV) { char *ptr2 = strchr(env->name, '='); assert(ptr2); *ptr2 = '\0'; env->value = ptr2 + 1; } env->op = op; // add entry to the list env_add(env); return; errexit: fprintf(stderr, "Error: invalid --env setting\n"); exit(1); } // set env variables in the new sandbox process void env_apply(void) { Env *env = envlist; while (env) { if (env->op == SETENV) { if (setenv(env->name, env->value, 1) < 0) errExit("setenv"); } else if (env->op == RMENV) { unsetenv(env->name); } env = env->next; } }