/***
This file is part of systemd.
Copyright 2012 Lennart Poettering
Copyright 2013 Zbigniew Jędrzejewski-Szmek
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
systemd 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include <errno.h>
#include <getopt.h>
#include <string.h>
#include <unistd.h>
#include "alloc-util.h"
#include "dirent-util.h"
#include "fd-util.h"
#include "fs-util.h"
#include "hashmap.h"
#include "locale-util.h"
#include "log.h"
#include "pager.h"
#include "parse-util.h"
#include "path-util.h"
#include "process-util.h"
#include "signal-util.h"
#include "stat-util.h"
#include "string-util.h"
#include "strv.h"
#include "terminal-util.h"
#include "util.h"
static const char prefixes[] =
"/etc\0"
"/run\0"
#ifdef HAVE_SPLIT_USR
"/lib\0"
#endif
;
static const char suffixes[] =
"sysctl.d\0"
"tmpfiles.d\0"
"modules-load.d\0"
"binfmt.d\0"
"systemd/system-preset\0"
"systemd/user-preset\0"
"modprobe.d\0";
static const char have_dropins[] =
static bool arg_no_pager = false;
static enum {
} arg_flags = 0;
static void pager_open_if_enabled(void) {
if (arg_no_pager)
return;
pager_open(false);
}
static int equivalent(const char *a, const char *b) {
x = canonicalize_file_name(a);
if (!x)
return -errno;
y = canonicalize_file_name(b);
if (!y)
return -errno;
return path_equal(x, y);
}
if (!(arg_flags & SHOW_MASKED))
return 0;
printf("%s%s%s %s %s %s\n",
return 1;
}
if (!(arg_flags & SHOW_EQUIVALENT))
return 0;
printf("%s%s%s %s %s %s\n",
return 1;
}
if (!(arg_flags & SHOW_REDIRECTED))
return 0;
printf("%s%s%s %s %s %s\n",
return 1;
}
if (!(arg_flags & SHOW_OVERRIDDEN))
return 0;
printf("%s%s%s %s %s %s\n",
return 1;
}
if (!(arg_flags & SHOW_EXTENDED))
return 0;
printf("%s%s%s %s %s %s\n",
return 1;
}
static int notify_override_unchanged(const char *f) {
if (!(arg_flags & SHOW_UNCHANGED))
return 0;
printf("[UNCHANGED] %s\n", f);
return 1;
}
int k;
if (null_or_empty_path(top) > 0)
if (k >= 0) {
else
}
if (!arg_diff)
return k;
putchar('\n');
if (pid < 0)
else if (pid == 0) {
(void) reset_all_signal_handlers();
(void) reset_signal_mask();
}
putchar('\n');
return k;
}
static int enumerate_dir_d(Hashmap *top, Hashmap *bottom, Hashmap *drops, const char *toppath, const char *drop) {
char **file;
char *c;
int r;
if (!path)
return -ENOMEM;
if (!unit)
return -ENOMEM;
if (!c)
return -EINVAL;
*c = 0;
if (r < 0)
Hashmap *h;
int k;
char *p;
char *d;
continue;
if (!p)
return -ENOMEM;
k = hashmap_put(top, d, p);
if (k >= 0) {
p = strdup(p);
if (!p)
return -ENOMEM;
} else if (k != -EEXIST) {
free(p);
return k;
}
k = hashmap_put(bottom, d, p);
if (k < 0) {
free(p);
return k;
}
if (!h) {
h = hashmap_new(&string_hash_ops);
if (!h)
return -ENOMEM;
if (!unit)
return -ENOMEM;
}
p = strdup(p);
if (!p)
return -ENOMEM;
log_debug("Adding to drops: %s %s %s %s %s",
k = hashmap_put(h, basename(p), p);
if (k < 0) {
free(p);
if (k != -EEXIST)
return k;
}
}
return 0;
}
static int enumerate_dir(Hashmap *top, Hashmap *bottom, Hashmap *drops, const char *path, bool dropins) {
if (!d) {
return 0;
}
for (;;) {
int k;
char *p;
errno = 0;
if (!de)
return -errno;
dirent_ensure_type(d, de);
if (!dirent_is_file(de))
continue;
if (!p)
return -ENOMEM;
if (k >= 0) {
p = strdup(p);
if (!p)
return -ENOMEM;
} else if (k != -EEXIST) {
free(p);
return k;
}
if (k < 0) {
free(p);
return k;
}
}
}
const char *p;
char *f;
Hashmap *h;
char *key;
int r = 0, k;
Iterator i, j;
int n_found = 0;
bool dropins;
r = -ENOMEM;
goto finish;
}
_cleanup_free_ char *t = NULL;
if (!t) {
r = -ENOMEM;
goto finish;
}
if (r == 0)
r = k;
}
char *o;
assert(o);
if (path_equal(o, f)) {
} else {
k = found_override(f, o);
if (k < 0)
r = k;
else
n_found += k;
}
}
if (h)
HASHMAP_FOREACH(o, h, j)
n_found += notify_override_extended(f, o);
}
}
return r < 0 ? r : n_found;
}
const char *n;
int n_found = 0, r;
r = process_suffix(n, onlyprefix);
if (r < 0)
return r;
n_found += r;
}
return n_found;
}
const char *p;
if (!path_is_absolute(arg))
/* Strip prefix from the suffix */
const char *suffix;
if (suffix) {
if (*suffix)
else
return process_suffixes(arg);
}
}
return -EINVAL;
}
static void help(void) {
printf("%s [OPTIONS...] [SUFFIX...]\n\n"
"Find overridden configuration files.\n\n"
" -h --help Show this help\n"
" --version Show package version\n"
" --no-pager Do not pipe output into a pager\n"
" --diff[=1|0] Show a diff when overridden files differ\n"
" -t --type=LIST... Only display a selected set of override types\n"
}
size_t l;
flags |= SHOW_MASKED;
flags |= SHOW_EQUIVALENT;
flags |= SHOW_REDIRECTED;
flags |= SHOW_OVERRIDDEN;
flags |= SHOW_UNCHANGED;
flags |= SHOW_EXTENDED;
flags |= SHOW_DEFAULTS;
else
return -EINVAL;
}
return flags;
}
enum {
};
{}
};
int c;
switch (c) {
case 'h':
help();
return 0;
case ARG_VERSION:
return version();
case ARG_NO_PAGER:
arg_no_pager = true;
break;
case 't': {
int f;
if (f < 0) {
log_error("Failed to parse flags field.");
return -EINVAL;
}
arg_flags = f;
break;
}
case ARG_DIFF:
if (!optarg)
arg_diff = 1;
else {
int b;
b = parse_boolean(optarg);
if (b < 0) {
log_error("Failed to parse diff boolean.");
return -EINVAL;
}
arg_diff = b;
}
break;
case '?':
return -EINVAL;
default:
assert_not_reached("Unhandled option");
}
return 1;
}
int r, k, n_found = 0;
log_open();
if (r <= 0)
goto finish;
if (arg_flags == 0)
if (arg_diff < 0)
else if (arg_diff)
int i;
path_kill_slashes(argv[i]);
k = process_suffix_chop(argv[i]);
if (k < 0)
r = k;
else
n_found += k;
}
} else {
k = process_suffixes(NULL);
if (k < 0)
r = k;
else
n_found += k;
}
if (r >= 0)
pager_close();
return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
}