1 /* Copyright (C) 2009, Martin Johansson <martin@fatbob.nu>
2 Copyright (C) 2005-2009, Thorvald Natvig <thorvald@natvig.com>
6 Redistribution and use in source and binary forms, with or without
7 modification, are permitted provided that the following conditions
10 - Redistributions of source code must retain the above copyright notice,
11 this list of conditions and the following disclaimer.
12 - Redistributions in binary form must reproduce the above copyright notice,
13 this list of conditions and the following disclaimer in the documentation
14 and/or other materials provided with the distribution.
15 - Neither the name of the Developers nor the names of its contributors may
16 be used to endorse or promote products derived from this software without
17 specific prior written permission.
19 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
23 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
26 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
27 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
28 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
29 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 #include <libconfig/libconfig.h>
38 #include <libconfig.h>
45 static config_t configuration;
47 #define DEFAULT_CONFIG "/etc/umurmur.conf"
48 #define DEFAULT_WELCOME "Welcome to uMurmur!"
49 #define DEFAULT_MAX_CLIENTS 10
50 #define DEFAULT_MAX_BANDWIDTH 5000
51 #define DEFAULT_BINDPORT 64738
53 const char defaultconfig[] = DEFAULT_CONFIG;
55 int Conf_init(const char *conffile)
59 config_init(&configuration);
64 if (config_read_file(&configuration, conf) != CONFIG_TRUE) {
65 fprintf(stderr, "Error in config file %s: %s at line %d\n", conffile,
66 config_error_text(&configuration), config_error_line(&configuration));
74 config_destroy(&configuration);
77 const char *getStrConf(param_t param)
79 config_setting_t *setting = NULL;
80 const char *strsetting = NULL;
84 setting = config_lookup(&configuration, "certificate");
86 return "/etc/umurmur/certificate.crt";
88 if ((strsetting = config_setting_get_string(setting)) != NULL)
91 return "/etc/umurmur/certificate.crt";
95 setting = config_lookup(&configuration, "private_key");
97 return "/etc/umurmur/private_key.key";
99 if ((strsetting = config_setting_get_string(setting)) != NULL)
102 return "/etc/umurmur/private_key.key";
106 setting = config_lookup(&configuration, "password");
110 if ((strsetting = config_setting_get_string(setting)) != NULL)
117 setting = config_lookup(&configuration, "bindaddr");
121 if ((strsetting = config_setting_get_string(setting)) != NULL)
128 setting = config_lookup(&configuration, "welcometext");
130 return DEFAULT_WELCOME;
132 if ((strsetting = config_setting_get_string(setting)) != NULL)
135 return DEFAULT_WELCOME;
138 case DEAFULT_CHANNEL:
139 setting = config_lookup(&configuration, "default_channel");
143 if ((strsetting = config_setting_get_string(setting)) != NULL)
156 int getIntConf(param_t param)
158 config_setting_t *setting = NULL;
162 setting = config_lookup(&configuration, "bindport");
164 return DEFAULT_BINDPORT;
166 return config_setting_get_int(setting);
170 setting = config_lookup(&configuration, "max_bandwidth");
172 return DEFAULT_MAX_BANDWIDTH;
174 return config_setting_get_int(setting);
178 setting = config_lookup(&configuration, "max_users");
180 return DEFAULT_MAX_CLIENTS;
182 return config_setting_get_int(setting);
190 int Conf_getNextChannel(conf_channel_t *chdesc, int index)
192 config_setting_t *setting = NULL;
195 sprintf(configstr, "channels.[%d].name", index);
196 setting = config_lookup(&configuration, configstr);
199 strncpy(chdesc->name, config_setting_get_string(setting), MAX_TEXT);
201 sprintf(configstr, "channels.[%d].parent", index);
202 setting = config_lookup(&configuration, configstr);
205 strncpy(chdesc->parent, config_setting_get_string(setting), MAX_TEXT);
207 sprintf(configstr, "channels.[%d].description", index);
208 setting = config_lookup(&configuration, configstr);
211 strncpy(chdesc->description, config_setting_get_string(setting), MAX_TEXT);