forked from kismetwireless/kismet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configfile.h
240 lines (181 loc) · 7.66 KB
/
configfile.h
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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
/*
This file is part of Kismet
Kismet 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 2 of the License, or
(at your option) any later version.
Kismet 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 Kismet; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef __CONFIGFILE_H__
#define __CONFIGFILE_H__
#include "config.h"
#include <unistd.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <stdlib.h>
#include <pwd.h>
#include <string>
#include <map>
#include <vector>
#include "globalregistry.h"
#include "macaddr.h"
#include "kis_mutex.h"
class HeaderValueConfig;
class ConfigFile {
public:
ConfigFile();
ConfigFile(GlobalRegistry *in_globalreg);
~ConfigFile();
int ParseConfig(const char *in_fname);
int ParseConfig(const std::string& in_fname) {
return ParseConfig(in_fname.c_str());
}
int SaveConfig(const char *in_fname);
int SaveConfig(const std::string& in_fname) {
return SaveConfig(in_fname.c_str());
}
std::string FetchOpt(std::string in_key);
std::string FetchOptDfl(std::string in_key, std::string in_dfl);
std::string FetchOpt_nl(std::string in_key);
std::vector<std::string> FetchOptVec(std::string in_key);
// Fetch a true/false t/f value with a default (ie value returned if not
// equal to true, or missing.)
int FetchOptBoolean(std::string in_key, int dvalue);
// Older API
int FetchOptInt(const std::string& in_key, int dvalue);
unsigned int FetchOptUInt(const std::string& in_key, unsigned int dvalue);
unsigned long int FetchOptULong(const std::string& in_key, unsigned long dvalue);
// New C++ api; fetch an opt as a dynamic type dervied via '>>' assignment; will thow
// std::runtime_error if the type can not be converted. If the key is not found, the
// default value is used.
template<typename T>
T fetchOptAs(const std::string& in_key, const T& dvalue) {
local_locker l(&config_locker);
auto ki = config_map.find(StrLower(in_key));
if (ki == config_map.end())
return dvalue;
std::stringstream ss(ki->second[0].value);
T conv_value;
ss >> conv_value;
if (ss.fail())
throw std::runtime_error(fmt::format("could not coerce content of key {}", in_key));
return conv_value;
}
int FetchOptDirty(const std::string& in_key);
void SetOptDirty(const std::string& in_key, int in_dirty);
// Set a value, converting the arbitrary input into a string
template<typename T>
void SetOpt(const std::string& in_key, const T in_value, int in_dirty) {
local_locker l(&config_locker);
std::vector<config_entity> v;
config_entity e(fmt::format("{}", in_value), "::dynamic::");
v.push_back(e);
config_map[StrLower(in_key)] = v;
SetOptDirty(in_key, in_dirty);
}
void SetOpt(const std::string& in_key, const std::string& in_val, int in_dirty);
void SetOptVec(const std::string& in_key, const std::vector<std::string>& in_val, int in_dirty);
// Expand complete log templates for logfile filenames
std::string ExpandLogPath(const std::string& path, const std::string& logname,
const std::string& type, int start, int overwrite = 0);
// Expand placeholders but not full log type/number/etc, for included config references, etc
std::string ExpandLogPath(const std::string& path) {
return ExpandLogPath(path, "", "", 0, 1);
}
// Fetches the load-time checksum of the config values.
uint32_t FetchFileChecksum();
protected:
class config_entity {
public:
config_entity(std::string v, std::string sf) {
value = v;
sourcefile = sf;
}
std::string value;
std::string sourcefile;
};
void CalculateChecksum();
// Optional included file, don't error if it's not found
int ParseOptInclude(const std::string path,
std::map<std::string, std::vector<config_entity> > &target_map,
std::map<std::string, int> &target_map_dirty);
// Option included override file, don't error if it's not found; parsed
// at the END of the file parse cycle, for each
int ParseOptOverride(const std::string path);
int ParseConfig(const char *in_fname,
std::map<std::string, std::vector<config_entity> > &target_map,
std::map<std::string, int> &target_map_dirty);
std::string filename;
std::map<std::string, std::vector<config_entity> > config_map;
std::map<std::string, int> config_map_dirty;
uint32_t checksum;
std::string ckstring;
// List of config files which are *overriding*
std::vector<std::string> config_override_file_list;
kis_recursive_timed_mutex config_locker;
};
// Representation of 'complex' kismet config file values of the type:
// confvalue=header:key1=value1,key2=value2,key3=value3
//
// Values may also be quoted:
// confvalue=header:key1="value1,1a,1b",key2=value2,...
class HeaderValueConfig {
public:
HeaderValueConfig(const HeaderValueConfig& hc) {
header = hc.header;
content_map = std::map<std::string, std::string> {hc.content_map};
}
HeaderValueConfig(const std::string& in_confline);
HeaderValueConfig();
void parseLine(const std::string& in_confline);
std::string getHeader();
void setHeader(const std::string& in_str);
// Does a key exist?
bool hasKey(const std::string& in_key);
// Get a value by key, value MUST exist or std::runtime_exception is thrown
std::string getValue(const std::string& in_key);
// Get a value by key, if value is not present, return default value
std::string getValue(const std::string& in_key, const std::string& in_default);
// Get a value by key, coercing string content to another type; will throw
// std::runtime_error if the content cannot be coerced.
// If the key is not present, return the defautl value
template<typename T>
T getValueAs(const std::string& in_key, const T& dvalue) {
local_locker l(&mutex);
auto ki = content_map.find(StrLower(in_key));
if (ki == content_map.end())
return dvalue;
std::stringstream ss(ki->second);
T conv_value;
ss >> conv_value;
if (ss.fail())
throw std::runtime_error(fmt::format("could not coerce content of key {}", in_key));
return conv_value;
}
// Set a value, converting the arbitrary input into a string
template<typename T>
void setValue(const std::string& in_key, T in_value) {
local_locker l(&mutex);
content_map[in_key] = fmt::format("{}", in_value);
}
// Erase a key; will not throw exception if key does not exist
void eraseKey(const std::string& in_key);
// Encode to string. All values will be quoted for safety.
std::string toString();
friend std::ostream& operator<<(std::ostream& os, const HeaderValueConfig& c);
friend std::istream& operator>>(std::istream& is, HeaderValueConfig& c);
protected:
kis_recursive_timed_mutex mutex;
std::string header;
std::map<std::string, std::string> content_map;
};
std::ostream& operator<<(std::ostream& os, const HeaderValueConfig& h);
std::istream& operator>>(std::istream& is, HeaderValueConfig& h);
#endif