/* * 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. */ #ifndef FSECCOMP_H #define FSECCOMP_H #include #include #include #include #include "../include/common.h" // main.c extern int arg_quiet; // syscall.c void syscall_print(void); int syscall_check_list(const char *slist, void (*callback)(int fd, int syscall, int arg, void *ptrarg), int fd, int arg, void *ptrarg); const char *syscall_find_nr(int nr); void syscalls_in_list(const char *list, const char *slist, int fd, char **prelist, char **postlist); // errno.c void errno_print(void); int errno_find_name(const char *name); char *errno_find_nr(int nr); // protocol.c void protocol_print(void); void protocol_build_filter(const char *prlist, const char *fname); // seccomp_secondary.c void seccomp_secondary_64(const char *fname); void seccomp_secondary_32(const char *fname); void seccomp_secondary_block(const char *fname); // seccomp_file.c void write_to_file(int fd, const void *data, int size); void filter_init(int fd); void filter_add_whitelist(int fd, int syscall, int arg, void *ptrarg); void filter_add_blacklist(int fd, int syscall, int arg, void *ptrarg); void filter_add_errno(int fd, int syscall, int arg, void *ptrarg); void filter_end_blacklist(int fd); void filter_end_whitelist(int fd); // seccomp.c // default list void seccomp_default(const char *fname, int allow_debuggers); // drop list void seccomp_drop(const char *fname1, const char *fname2, char *list, int allow_debuggers); // default+drop list void seccomp_default_drop(const char *fname1, const char *fname2, char *list, int allow_debuggers); // whitelisted filter void seccomp_keep(const char *fname1, const char *fname2, char *list); // block writable and executable memory void memory_deny_write_execute(const char *fname); // seccomp_print void filter_print(const char *fname); #endif