/* * Copyright (C) 2014-2018 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 #include #include #include void fs_trace_preload(void) { struct stat s; // create an empty /etc/ld.so.preload if (stat("/etc/ld.so.preload", &s)) { if (arg_debug) printf("Creating an empty /etc/ld.so.preload file\n"); /* coverity[toctou] */ FILE *fp = fopen("/etc/ld.so.preload", "w"); if (!fp) errExit("fopen"); SET_PERMS_STREAM(fp, 0, 0, S_IRUSR | S_IWRITE | S_IRGRP | S_IROTH); fclose(fp); fs_logger("touch /etc/ld.so.preload"); } } void fs_trace(void) { // create the new ld.so.preload file and mount-bind it if (arg_debug) printf("Create the new ld.so.preload file\n"); FILE *fp = fopen(RUN_LDPRELOAD_FILE, "w"); if (!fp) errExit("fopen"); const char *prefix = RUN_FIREJAIL_LIB_DIR; if (arg_trace) { fprintf(fp, "%s/libtrace.so\n", prefix); } else if (arg_tracelog) { fprintf(fp, "%s/libtracelog.so\n", prefix); fmessage("Blacklist violations are logged to syslog\n"); } if (arg_seccomp_postexec) { fprintf(fp, "%s/libpostexecseccomp.so\n", prefix); fmessage("Post-exec seccomp protector enabled\n"); } SET_PERMS_STREAM(fp, 0, 0, S_IRUSR | S_IWRITE | S_IRGRP | S_IROTH); fclose(fp); // mount the new preload file if (arg_debug) printf("Mount the new ld.so.preload file\n"); if (mount(RUN_LDPRELOAD_FILE, "/etc/ld.so.preload", NULL, MS_BIND|MS_REC, NULL) < 0) errExit("mount bind ld.so.preload"); fs_logger("create /etc/ld.so.preload"); }