/* * Copyright (C) 2014-2020 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 "fsec_optimize.h" static void usage(void) { printf("Usage:\n"); printf("\tfsec-optimize file - optimize seccomp filter\n"); } int main(int argc, char **argv) { #if 0 { //system("cat /proc/self/status"); int i; for (i = 0; i < argc; i++) printf("*%s* ", argv[i]); printf("\n"); } #endif if (argc != 2) { usage(); return 1; } if (strcmp(argv[1], "-h") == 0 || strcmp(argv[1], "--help") == 0 || strcmp(argv[1], "-?") == 0) { usage(); return 0; } #ifdef WARN_DUMPABLE // check FIREJAIL_PLUGIN in order to not print a warning during make if (prctl(PR_GET_DUMPABLE, 0, 0, 0, 0) == 1 && getuid() && getenv("FIREJAIL_PLUGIN")) fprintf(stderr, "Error fsec-optimize: I am dumpable\n"); #endif char *fname = argv[1]; // open input file int fd = open(fname, O_RDONLY); if (fd == -1) goto errexit; // calculate the number of entries int size = lseek(fd, 0, SEEK_END); if (size == -1) // todo: check maximum size of seccomp filter (4KB?) goto errexit; unsigned short entries = (unsigned short) size / (unsigned short) sizeof(struct sock_filter); // read filter struct sock_filter *filter = mmap(NULL, size, PROT_READ, MAP_PRIVATE, fd, 0); if (filter == MAP_FAILED) goto errexit; close(fd); // duplicate the filter memory and unmap the file struct sock_filter *outfilter = duplicate(filter, entries); if (munmap(filter, size) == -1) perror("Error un-mmapping the file"); // optimize filter entries = optimize(outfilter, entries); // write the new file and free memory fd = open(argv[1], O_WRONLY | O_TRUNC | O_CREAT, 0755); if (fd == -1) { fprintf(stderr, "Error: cannot open output file\n"); return 1; } size = write(fd, outfilter, entries * sizeof(struct sock_filter)); if (size != (int) (entries * sizeof(struct sock_filter))) { fprintf(stderr, "Error: cannot write output file\n"); return 1; } close(fd); free(outfilter); return 0; errexit: if (fd != -1) close(fd); fprintf(stderr, "Error: cannot read %s\n", fname); exit(1); }