conf-files.c revision a095315b3c31f7a419baceac82c26c3c5ac0cd12
/*-*- 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 <string.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"
const char *dirpath;
int r;
if (!dir) {
return 0;
return -errno;
}
for (;;) {
char *p;
errno = 0;
return -errno;
if (!de)
break;
continue;
if (!p)
return -ENOMEM;
r = hashmap_put(h, basename(p), p);
if (r == -EEXIST) {
log_debug("Skipping overridden file: %s.", p);
free(p);
} else if (r < 0) {
free(p);
return r;
} else if (r == 0) {
log_debug("Duplicate file %s", p);
free(p);
}
}
return 0;
}
static int base_cmp(const void *a, const void *b) {
s1 = *(char * const *)a;
s2 = *(char * const *)b;
}
static int conf_files_list_strv_internal(char ***strv, const char *suffix, const char *root, char **dirs) {
char **files, **p;
int r;
/* This alters the dirs string array */
return -ENOMEM;
if (!fh)
return -ENOMEM;
STRV_FOREACH(p, dirs) {
if (r == -ENOMEM) {
return r;
} else if (r < 0)
log_debug_errno(r, "Failed to search for files in %s: %m",
*p);
}
return -ENOMEM;
}
return 0;
}
int conf_files_list_strv(char ***strv, const char *suffix, const char *root, const char* const* dirs) {
if (!copy)
return -ENOMEM;
}
if (!dirs)
return -ENOMEM;
}
dirs = strv_split_nulstr(d);
if (!dirs)
return -ENOMEM;
}