-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreadconf.cpp
191 lines (171 loc) · 5.37 KB
/
readconf.cpp
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
/*
Copyright (c) 2011, Charles Smith
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this
list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this
list of conditions and the following disclaimer in the documentation
and/or
other materials provided with the distribution.
* Neither the name of Vallona Networks nor the names of its contributors
may be used to endorse or promote products derived from this software
without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED.
IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY
DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
ADVISED
OF THE POSSIBILITY OF SUCH DAMAGE.
*/
// Command Line Interpretor for saratoga
// #include <iostream>
#include "beacon.h"
#include "cli.h"
#include "fileio.h"
#include "globals.h"
#include "ip.h"
#include "request.h"
#include "sarflags.h"
#include "screen.h"
#include "timestamp.h"
#include <cstring>
#include <string>
#include <sys/types.h>
#include <vector>
using namespace std;
// A command has a name, a usage a help and a function to call
namespace saratoga {
// Read in the configuration file and set the defaults up
// THis can be ANY valid command given to saratoga
void
readconf(string config_file)
{
saratoga::cmds cmd;
string args = "";
std::vector<string> arglist;
char ch;
sarfile::fileio* rfp;
int comment = false;
scr.debug(0, "readconf(): Reading configuration file %s",
config_file.c_str());
rfp = new sarfile::fileio(config_file, sarfile::FILE_READ);
if (!rfp->ok()) {
scr.error("readconf: Cannot open saratoga config file ",
config_file.c_str());
return;
}
while (rfp->read(&ch, 1) == 1) {
switch (ch) {
case '#': // First char # Begins a comment
if (args.length() == 0)
comment = true;
else
args += '#';
break;
case CHAR_CR:
case CHAR_LF:
if (comment) {
args = "";
comment = false;
break;
}
splitargs(args, arglist);
if (arglist.size() < 1)
break;
if (comment) {
comment = false;
break;
}
if (arglist[0] == "updated") {
args = "";
break;
}
if (cmd.cmdstr(arglist[0]) == "" || !(cmd.runcmd(arglist)))
scr.error("readconf: Invalid config line \"%s\"", args.c_str());
args = "";
break;
default:
if (isprint(ch))
args += (char)ch;
else
scr.error("readconf: Invalid character <%d>", (int)ch);
break;
}
}
delete rfp;
scr.debug(0, "readconf(): Configuration file %s applied",
config_file.c_str());
}
void
writeconf(string config_file)
{
saratoga::cmds cmd;
string args = "";
std::vector<string> arglist;
char ch;
sarfile::fileio* rfp;
sarfile::fileio* wfp;
char tmp[128];
string tmpfile = config_file + ".tmp";
scr.debug(3, "writeconf: Writing configuration file %s", config_file.c_str());
rfp = new sarfile::fileio(config_file.c_str(), sarfile::FILE_READ);
wfp = new sarfile::fileio(tmpfile.c_str(), sarfile::FILE_WRITE);
if (!rfp->ok() || !wfp->ok()) {
scr.error("writeconf: Cannot copy saratoga config file %s",
config_file.c_str());
return;
}
while (rfp->read(&ch, 1) == 1) {
switch (ch) {
case CHAR_CR:
case CHAR_LF:
splitargs(args, arglist);
if (arglist[0] == "session") {
// Increment the Session # so it is unique next time around
sprintf(tmp, "session %" PRIu32 "\n", c_session.set());
wfp->fwrite(tmp, strlen(tmp));
} else if (arglist[0] == "updated") {
// Get latest timestamp and put it in config
// This way we know when file was last updated
timestamp ts = timestamp();
sprintf(tmp, "updated %s\n", ts.printshort().c_str());
wfp->fwrite(tmp, strlen(tmp));
} else {
wfp->fwrite(args.c_str(), args.length());
wfp->fwrite("\n", 1);
}
wfp->fflush(); // Actually write it
args = "";
break;
default:
args += ch;
break;
}
}
wfp->fflush();
wfp->clear();
delete rfp;
delete wfp;
// Move the tmp file to the original
if (rename(tmpfile.c_str(), config_file.c_str()) != 0) {
scr.perror(errno, "Can't move %s to %s", tmpfile.c_str(),
config_file.c_str());
return;
}
scr.debug(3, "writeconf(): Configuration file %s written",
config_file.c_str());
}
}; // namespace saratoga