forked from kismetwireless/kismet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigfile.h
116 lines (86 loc) · 3.5 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
/*
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 ConfigFile {
public:
ConfigFile(GlobalRegistry *in_globalreg);
~ConfigFile();
int ParseConfig(const char *in_fname);
int SaveConfig(const char *in_fname);
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);
// Fetch an integer option
int FetchOptInt(std::string in_key, int dvalue);
unsigned int FetchOptUInt(std::string in_key, unsigned int dvalue);
unsigned long int FetchOptULong(std::string in_key, unsigned long dvalue);
int FetchOptDirty(std::string in_key);
void SetOptDirty(std::string in_key, int in_dirty);
void SetOpt(std::string in_key, std::string in_val, int in_dirty);
void SetOptVec(std::string in_key, std::vector<std::string> in_val, int in_dirty);
std::string ExpandLogPath(std::string path, std::string logname, std::string type,
int start, int overwrite = 0);
// Fetches the load-time checksum of the config values.
uint32_t FetchFileChecksum();
protected:
GlobalRegistry *globalreg;
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;
};
#endif