1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
|
/* Copyright © 2012 Brandon L Black <blblack@gmail.com>
*
* This file is part of gdnsd.
*
* gdnsd is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* gdnsd 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with gdnsd. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include <config.h>
#include <gdnsd/paths.h>
#include <gdnsd/vscf.h>
#include <gdnsd/misc.h>
#include <gdnsd/log.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <libgen.h>
#include <limits.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/utsname.h>
#include <stdio.h>
#include <fcntl.h>
#include <pthread.h>
/* paths */
// Anytime
const char* gdnsd_get_default_config_dir(void)
{
return GDNSD_DEFPATH_CONFIG;
}
// ---------------------------
// Init-time stuff
// fails fatally if pathname doesn't exist and mkdir fails, or if pathname
// exists but is not a dir, or if force_mode is set and chmod(dir_mode) on an
// existing dir fails.
// force_mode always executes chmod() without checking existing mode, as this
// also ensures we're the owner and thus triggers a desirable failure if the
// rundir is owned by some other user.
F_NONNULL
static void gdnsd_ensure_dir(const char* dpath, const char* desc, mode_t dir_mode, bool force_mode)
{
if (mkdir(dpath, dir_mode)) {
if (errno != EEXIST)
log_fatal("mkdir of %s directory '%s' failed: %s", desc, dpath, logf_errno());
if (force_mode && chmod(dpath, dir_mode))
log_fatal("%s directory '%s': chmod(%o) failed: %s", desc, dpath, dir_mode, logf_errno());
struct stat st;
if (stat(dpath, &st) || !S_ISDIR(st.st_mode))
log_fatal("%s directory '%s' does not exist or is not a directory!", desc, dpath);
}
}
typedef enum {
RUN = 0,
STATE = 1,
CFG = 2,
LIBEXEC = 3,
} path_typ_t;
static const char* gdnsd_dirs[4] = { NULL, NULL, NULL, NULL };
static vscf_data_t* conf_load_vscf(const char* cfg_file)
{
vscf_data_t* out = NULL;
struct stat cfg_stat;
if (!stat(cfg_file, &cfg_stat)) {
log_debug("Loading configuration from '%s'", cfg_file);
out = vscf_scan_filename(cfg_file);
if (!out)
log_fatal("Loading configuration from '%s' failed", cfg_file);
if (!vscf_is_hash(out)) {
gdnsd_assert(vscf_is_array(out));
log_fatal("Config file '%s' cannot be an '[ array ]' at the top level", cfg_file);
}
} else {
log_warn("No config file at '%s', using defaults", cfg_file);
}
return out;
}
#define CFG_DIR(_opt_set, _name) \
do { \
vscf_data_t* _opt_setting = vscf_hash_get_data_byconstkey(_opt_set, #_name, true); \
if (_opt_setting) { \
if (!vscf_is_simple(_opt_setting)) \
log_fatal("Config option %s: Wrong type (should be string)", #_name); \
_name = vscf_simple_get_data(_opt_setting); \
} \
} while (0)
vscf_data_t* gdnsd_init_paths(const char* config_dir, const bool create_dirs)
{
static bool has_run = false;
if (has_run)
log_fatal("BUG: gdnsd_init_paths() should only be called once!");
else
has_run = true;
// set up config dir
gdnsd_dirs[CFG] = config_dir ? xstrdup(config_dir) : GDNSD_DEFPATH_CONFIG;
// parse config file
char* cfg_file = gdnsd_resolve_path_cfg("config", NULL);
vscf_data_t* cfg_root = conf_load_vscf(cfg_file);
free(cfg_file);
#ifndef NDEBUG
// in developer debug builds, exercise clone+destroy
if (cfg_root) {
vscf_data_t* temp_cfg = vscf_clone(cfg_root, false);
vscf_destroy(cfg_root);
cfg_root = temp_cfg;
}
#endif
// find run/state paths, possibly using config input
const char* run_dir = GDNSD_DEFPATH_RUN;
const char* state_dir = GDNSD_DEFPATH_STATE;
if (cfg_root) {
const vscf_data_t* options = vscf_hash_get_data_byconstkey(cfg_root, "options", true);
if (options) {
if (!vscf_is_hash(options))
log_fatal("Config key 'options': wrong type (must be hash)");
CFG_DIR(options, run_dir);
CFG_DIR(options, state_dir);
}
}
// set them up
gdnsd_dirs[RUN] = xstrdup(run_dir);
gdnsd_dirs[STATE] = xstrdup(state_dir);
if (create_dirs) {
gdnsd_ensure_dir(run_dir, "run", 0700, true);
gdnsd_ensure_dir(state_dir, "state", 0755, false);
}
// This is just fixed at compiletime, period
gdnsd_dirs[LIBEXEC] = GDNSD_DEFPATH_LIBEXEC;
return cfg_root;
}
// ---------------------------
// Runtime stuff
const char* gdnsd_get_config_dir(void)
{
gdnsd_assert(gdnsd_dirs[CFG]); // must happen after gdnsd_init_paths()
return gdnsd_dirs[CFG];
}
static char* gdnsd_resolve_path(const path_typ_t p, const char* inpath, const char* pfx)
{
gdnsd_assert(gdnsd_dirs[p]);
char* out;
if (inpath && inpath[0] == '/') {
out = xstrdup(inpath);
} else if (pfx) {
if (inpath)
out = gdnsd_str_combine_n(5, gdnsd_dirs[p], "/", pfx, "/", inpath);
else
out = gdnsd_str_combine_n(3, gdnsd_dirs[p], "/", pfx);
} else {
if (inpath)
out = gdnsd_str_combine_n(3, gdnsd_dirs[p], "/", inpath);
else
out = xstrdup(gdnsd_dirs[p]);
}
return out;
}
char* gdnsd_resolve_path_run(const char* inpath, const char* pfx)
{
return gdnsd_resolve_path(RUN, inpath, pfx);
}
char* gdnsd_resolve_path_state(const char* inpath, const char* pfx)
{
return gdnsd_resolve_path(STATE, inpath, pfx);
}
char* gdnsd_resolve_path_cfg(const char* inpath, const char* pfx)
{
return gdnsd_resolve_path(CFG, inpath, pfx);
}
char* gdnsd_resolve_path_libexec(const char* inpath, const char* pfx)
{
return gdnsd_resolve_path(LIBEXEC, inpath, pfx);
}
|