-
Notifications
You must be signed in to change notification settings - Fork 1
/
proc_loader2.C
337 lines (275 loc) · 6.85 KB
/
proc_loader2.C
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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
/*
** Copyright 2024 Double Precision, Inc.
a** See COPYING for distribution information.
*/
#include "config.h"
#include "proc_loader.H"
#include "messages.H"
#include "yaml_writer.H"
#include "parsed_yaml.H"
#include "privrequest.H"
#include <algorithm>
#include <filesystem>
#include <vector>
#include <array>
#include <string>
#include <unistd.h>
#include <iostream>
#include <fstream>
#include <sstream>
#include <algorithm>
#include <optional>
#include <system_error>
#include <memory>
#include <unordered_set>
#include <errno.h>
#include <sys/stat.h>
#include <sys/file.h>
#include <fcntl.h>
std::unordered_map<std::string, std::string> environconfigvars;
void proc_set_override(
const std::string &config_override,
const std::string &path,
const proc_override &o,
const std::function<void (const std::string &)> &error)
{
if (!proc_validpath(path))
{
error(path + _(": non-compliant filename"));
return;
}
std::string contents;
{
std::ostringstream yaml_stream;
yaml_map_t yaml_contents;
switch (o.get_state()) {
case proc_override::state_t::none:
break;
case proc_override::state_t::enabled:
yaml_contents.emplace_back(
std::make_shared<yaml_write_scalar>(
"state"
),
std::make_shared<yaml_write_scalar>(
"enabled"
)
);
break;
case proc_override::state_t::masked:
yaml_contents.emplace_back(
std::make_shared<yaml_write_scalar>(
"state"
),
std::make_shared<yaml_write_scalar>(
"masked"
)
);
break;
}
auto &resources=o.get_resources();
if (!resources.empty())
{
yaml_map_t yaml_resources;
for (auto &[key, value]:resources)
{
yaml_resources.emplace_back(
std::make_shared<yaml_write_scalar>(
key
),
std::make_shared<yaml_write_scalar>(
value
)
);
}
yaml_contents.emplace_back(
std::make_shared<yaml_write_scalar>(
"resources"
),
std::make_shared<yaml_write_map>(
std::move(yaml_resources)
)
);
}
if (!yaml_contents.empty())
{
yaml_contents.emplace_back(
std::make_shared<yaml_write_scalar>(
"version"
),
std::make_shared<yaml_write_scalar>(
"1"
)
);
yaml_writer{yaml_stream}.write(
yaml_write_map{yaml_contents}
);
}
contents=yaml_stream.str();
}
int fd=open(static_cast<std::string>(config_override).c_str(),
O_RDONLY|O_DIRECTORY);
if (fd < 0)
throw std::system_error{ {errno, std::system_category()},
config_override};
auto efd=std::make_shared<external_filedescObj>(fd);
if (flock(fd, LOCK_EX) < 0)
throw std::system_error{ {errno, std::system_category()},
config_override};
// Create any parent directories, first.
std::filesystem::path fullpath{config_override};
if (contents.empty())
{
unlink( (fullpath / path).c_str());
std::filesystem::path subdir{path};
while (subdir.has_relative_path())
{
subdir=subdir.parent_path();
if (subdir.empty())
break;
if (rmdir( (fullpath / subdir).c_str()) < 0)
break;
}
return;
}
for (auto b=path.begin(), e=path.end(), p=b; (p=std::find(p, e, '/'))
!= e;
++p)
{
mkdir( (fullpath / std::string{b, p}).c_str(), 0755);
}
auto temppath = fullpath / (path + "~");
std::ofstream o{ temppath };
if (!o)
{
error(static_cast<std::string>(temppath) + ": " +
strerror(errno));
return;
}
o << contents;
o.close();
if (o.fail() ||
rename(temppath.c_str(), (fullpath / path).c_str()))
{
error(static_cast<std::string>(temppath) + ": " +
strerror(errno));
return;
}
}
bool proc_set_runlevel_default(
const std::string &configfile,
const std::string &new_runlevel,
const std::function<void (const std::string &)> &error)
{
// First, read the current default
auto current_runlevels=proc_get_runlevel_config(configfile, error);
auto original_runlevels=current_runlevels;
// Go through, and:
//
// If we find a "default" or "override" entry, remove it.
//
// When we find the new default runlevel, add a "default" alias for it.
bool found=false;
for (auto &[runlevel_name, runlevel] : current_runlevels)
{
bool found_new_default=
!found && (runlevel_name == new_runlevel ||
runlevel.aliases.find(new_runlevel)
!= runlevel.aliases.end());
runlevel.aliases.erase("default");
runlevel.aliases.erase("override");
if (found_new_default)
{
found=true;
runlevel.aliases.insert("default");
}
}
if (!found)
{
error(configfile + ": " + new_runlevel + _(": not found"));
return false;
}
// A default of "default" gets specified in order to remove any
// override, this is handled by the finely-tuned logic above.
//
// Avoid rewriting the runlevel config file if nothing's changed.
if (current_runlevels == original_runlevels)
return true;
return proc_set_runlevel_config(configfile, current_runlevels);
}
bool proc_set_runlevel_default_override(
const std::string &configfile,
const std::string &override_runlevel,
const std::function<void (const std::string &)> &error)
{
// First, read the current default
auto current_runlevels=proc_get_runlevel_config(configfile, error);
// Go through, and:
//
// If we find an "override" entry, remove it.
//
// When we find the new default override, add "override" to it,
bool found=false;
for (auto &[runlevel_name, runlevel] : current_runlevels)
{
bool found_new_default=
!found && (runlevel_name == override_runlevel ||
runlevel.aliases.find(override_runlevel)
!= runlevel.aliases.end());
runlevel.aliases.erase("override");
if (found_new_default)
{
found=true;
runlevel.aliases.insert("override");
}
}
if (!found)
{
error(configfile + ": " + override_runlevel + _(": not found"));
return false;
}
return proc_set_runlevel_config(configfile, current_runlevels);
}
bool proc_apply_runlevel_override(runlevels &rl)
{
bool overridden=false;
// If there's an "override" alias, it overrides the "default" one.
for (auto &[name, runlevel] : rl)
{
auto iter=runlevel.aliases.find("override");
if (iter == runlevel.aliases.end())
continue;
// We remove the existing "default" alias and put it where
// "override" is. This way, the rest of the startup code
// just looks for a "default".
runlevel.aliases.erase(iter);
for (auto &[name, runlevel] : rl)
runlevel.aliases.erase("default");
runlevel.aliases.insert("default");
overridden=true;
break;
}
return overridden;
}
void proc_remove_runlevel_override(const std::string &configfile)
{
bool invalid=false;
auto rl=proc_get_runlevel_config(
configfile,
[&]
(const std::string &error)
{
// We already reported the error,
// probably, in load_runlevelconfig()
invalid=true;
});
for (auto &[name, runlevel] : rl)
{
auto iter=runlevel.aliases.find("override");
if (iter != runlevel.aliases.end() && !invalid)
{
runlevel.aliases.erase(iter);
proc_set_runlevel_config(configfile, rl);
break;
}
}
}