1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
4 This file is part of systemd.
6 Copyright 2010 Lennart Poettering
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
35 #include "conf-files.h"
39 static const char conf_file_dirs[] =
42 "/usr/local/lib/binfmt.d\0"
49 static int delete_rule(const char *rule) {
50 _cleanup_free_ char *x = NULL, *fn = NULL;
59 e = strchrnul(x+1, x[0]);
62 fn = strappend("/proc/sys/fs/binfmt_misc/", x+1);
66 return write_string_file(fn, "-1");
69 static int apply_rule(const char *rule) {
74 r = write_string_file("/proc/sys/fs/binfmt_misc/register", rule);
76 log_error("Failed to add binary format: %s", strerror(-r));
83 static int apply_file(const char *path, bool ignore_enoent) {
84 _cleanup_fclose_ FILE *f = NULL;
89 r = search_and_fopen_nulstr(path, "re", conf_file_dirs, &f);
91 if (ignore_enoent && r == -ENOENT)
94 log_error("Failed to open file '%s', ignoring: %s", path, strerror(-r));
98 log_debug("apply: %s", path);
100 char l[LINE_MAX], *p;
103 if (!fgets(l, sizeof(l), f)) {
107 log_error("Failed to read file '%s', ignoring: %m", path);
114 if (strchr(COMMENTS "\n", *p))
125 static int help(void) {
127 printf("%s [OPTIONS...] [CONFIGURATION FILE...]\n\n"
128 "Registers binary formats.\n\n"
129 " -h --help Show this help\n"
130 " --version Show package version\n",
131 program_invocation_short_name);
136 static int parse_argv(int argc, char *argv[]) {
142 static const struct option options[] = {
143 { "help", no_argument, NULL, 'h' },
144 { "version", no_argument, NULL, ARG_VERSION },
153 while ((c = getopt_long(argc, argv, "h", options, NULL)) >= 0) {
161 puts(PACKAGE_STRING);
162 puts(SYSTEMD_FEATURES);
169 assert_not_reached("Unhandled option");
176 int main(int argc, char *argv[]) {
179 r = parse_argv(argc, argv);
181 return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
183 log_set_target(LOG_TARGET_AUTO);
184 log_parse_environment();
194 for (i = optind; i < argc; i++) {
195 k = apply_file(argv[i], false);
200 _cleanup_strv_free_ char **files = NULL;
203 r = conf_files_list_nulstr(&files, ".conf", NULL, conf_file_dirs);
205 log_error("Failed to enumerate binfmt.d files: %s", strerror(-r));
209 /* Flush out all rules */
210 write_string_file("/proc/sys/fs/binfmt_misc/status", "-1");
212 STRV_FOREACH(f, files) {
213 k = apply_file(*f, true);
220 return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;