conf-files.c revision 7d5e9c0f60cddf01ec803012cbdc02d2f55b78c1
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
/***
This file is part of systemd.
Copyright 2010 Lennart Poettering
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 <assert.h>
#include <string.h>
#include <unistd.h>
#include <errno.h>
#include <stdlib.h>
#include <stdio.h>
#include <dirent.h>
#include "macro.h"
#include "util.h"
#include "missing.h"
#include "log.h"
#include "strv.h"
#include "path-util.h"
#include "hashmap.h"
#include "conf-files.h"
int r = 0;
if (!dir) {
return 0;
return -errno;
}
for (;;) {
union dirent_storage buf;
int k;
char *p;
if (k != 0) {
r = -k;
goto finish;
}
if (!de)
break;
continue;
r = -ENOMEM;
goto finish;
}
if (hashmap_put(h, path_get_file_name(p), p) <= 0) {
log_debug("Skip overridden file: %s.", p);
free(p);
}
}
return r;
}
static int base_cmp(const void *a, const void *b) {
s1 = *(char * const *)a;
s2 = *(char * const *)b;
}
const char **p;
int r;
if (!fh) {
r = -ENOMEM;
goto finish;
}
STRV_FOREACH(p, dirs) {
if (r < 0)
log_warning("Failed to search for files in %s: %s",
*p, strerror(-r));
}
log_error("Failed to compose list of files.");
r = -ENOMEM;
goto finish;
}
r = 0;
return r;
}
int r;
if (!dirs) {
r = -ENOMEM;
goto finish;
}
if (!path_strv_canonicalize(dirs)) {
r = -ENOMEM;
goto finish;
}
return r;
}