2 * This file is part of libsmack
4 * Copyright (C) 2011 Intel Corporation
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public License
8 * version 2.1 as published by the Free Software Foundation.
10 * This library is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21 * Brian McGillion <brian.mcgillion@intel.com>
22 * Jarkko Sakkinen <jarkko.sakkinen@intel.com>
30 static void usage(const char *bin)
32 fprintf(stderr, "Usage: %s [-c] <path>\n", bin);
36 int main(int argc, char **argv)
41 if (is_smackfs_mounted() != 1) {
42 fprintf(stderr, "SmackFS is not mounted.\n");
46 while ((c = getopt(argc, argv, "c")) != -1) {
57 if (apply_rules_file(STDIN_FILENO, clear)) {
58 perror("apply_rules_file");
62 if (apply_rules(argv[optind], clear)) {
63 perror("apply_rules");