remove includes in non-gen'd interf files, they're linked properly now
[systembsd.git] / src / config.c
CommitLineData
3b82e3c1 1/*
2 * Copyright (c) 2014 Ian Sutton <ian@kremlin.cc>
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
36575bff 17#include <unistd.h>
18#include <fcntl.h>
19#include <gio/gio.h>
d90aa67d 20#include "config.h"
36575bff 21
22static GKeyFile *config;
d099276b 23static int config_descr;
5b435dd1 24static gchar *data_dir;
25
36575bff 26/* NULL if key doesn't exist */
27gchar *get_option(gchar *key, gchar *group) {
28
1cd5e6fe 29 if(!group)
30 group = "default";
36575bff 31
1cd5e6fe 32 return g_key_file_get_string(config, group, key, NULL);
36575bff 33}
34
35/* false if key isn't already defined or value is invalid */
36gboolean set_option(gchar *key, gchar *value, gchar *group) {
37
1cd5e6fe 38 if(!group)
39 group = "default";
36575bff 40
1cd5e6fe 41 if(!g_key_file_get_string(config, group, key, NULL))
42 return FALSE;
36575bff 43
a6f11205 44 /* TODO safteycheck value */
1cd5e6fe 45 g_key_file_set_string(config, group, key, value);
46 return TRUE;
36575bff 47}
48
49/* initial load/check */
36575bff 50gboolean config_init() {
51
7f67c069 52 /* config is already set */
53 if(config)
54 return TRUE;
55
1cd5e6fe 56 config = g_key_file_new();
57
58 const gchar *config_path;
59 GStatBuf *config_lstat;
7f67c069 60 int config_lstat_ret;
39df6847 61
1cd5e6fe 62 config_path = "/etc/systemd_compat.conf";
7f67c069 63 config_lstat_ret = g_lstat(config_path, config_lstat);
39df6847 64
661659c9 65 if(g_access(config_path, W_OK)) {
36575bff 66
9fa42f1a 67 g_printf("%s\n", "no write permissions for /etc/! exiting..");
1cd5e6fe 68 return FALSE;
8f18585d 69
661659c9 70 } else if(g_key_file_load_from_file(config, config_path, G_KEY_FILE_KEEP_COMMENTS, NULL))
71 return TRUE;
72
73 g_printf("could not read config at %s! exiting..", config_path);
74 return FALSE;
75}
8f18585d 76
77void clean_config() {
78
a6f11205 79 /* TODO g_ptr_array all of this */
7f67c069 80 g_free(config);
81 g_free(data_dir);
82 g_close(config_descr, NULL);
446ae274 83}