-
Notifications
You must be signed in to change notification settings - Fork 4
/
common.c
339 lines (291 loc) · 8.52 KB
/
common.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
338
339
/****************************************************************************/
/* pfixtools: a collection of postfix related tools */
/* ~~~~~~~~~ */
/* ______________________________________________________________________ */
/* */
/* Redistribution and use in source and binary forms, with or without */
/* modification, are permitted provided that the following conditions */
/* are met: */
/* */
/* 1. Redistributions of source code must retain the above copyright */
/* notice, this list of conditions and the following disclaimer. */
/* 2. 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. */
/* 3. The names of its contributors may not be used to endorse or promote */
/* products derived from this software without specific prior written */
/* permission. */
/* */
/* THIS SOFTWARE IS PROVIDED BY THE 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 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. */
/* */
/* Copyright (c) 2006-2014 the Authors */
/* see AUTHORS and source files for details */
/****************************************************************************/
#include <fcntl.h>
#include <grp.h>
#include <pwd.h>
#include <sys/un.h>
#include "common.h"
bool daemon_process = true;
int log_level = LOG_NOTICE;
bool log_syslog = false;
const char *log_state = "";
static FILE *pidfile = NULL;
void common_sighandler(int sig)
{
switch (sig) {
default:
err("Killed (got signal %d)...", sig);
exit(-1);
}
}
int setnonblock(int sock)
{
int res = fcntl(sock, F_GETFL);
if (res < 0) {
UNIXERR("fcntl");
return -1;
}
if (fcntl(sock, F_SETFL, res | O_NONBLOCK) < 0) {
UNIXERR("fcntl");
return -1;
}
return 0;
}
int tcp_bind(const struct sockaddr *addr, socklen_t len)
{
int sock;
switch (addr->sa_family) {
case AF_UNIX:
unlink(((struct sockaddr_un *)addr)->sun_path);
sock = socket(PF_UNIX, SOCK_STREAM, 0);
break;
case AF_INET:
sock = socket(PF_INET, SOCK_STREAM, 0);
break;
case AF_INET6:
sock = socket(PF_INET6, SOCK_STREAM, 0);
break;
default:
errno = EINVAL;
UNIXERR("addr");
return -1;
}
if (sock < 0) {
UNIXERR("socket");
return -1;
}
if (addr->sa_family != AF_UNIX) {
int v = 1;
if (setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, &v, sizeof(v)) < 0) {
UNIXERR("setsockopt(SO_REUSEADDR)");
close(sock);
return -1;
}
}
if (bind(sock, addr, len) < 0) {
UNIXERR("bind");
close(sock);
return -1;
}
return sock;
}
int tcp_listen(const struct sockaddr *addr, socklen_t len)
{
int sock = tcp_bind(addr, len);
if (sock < 0) {
return -1;
}
if (listen(sock, SOMAXCONN) < 0) {
UNIXERR("bind");
close(sock);
return -1;
}
return sock;
}
int tcp_listen_nonblock(const struct sockaddr *addr, socklen_t len)
{
int sock = tcp_bind(addr, len);
if (sock < 0) {
return -1;
}
if (setnonblock(sock)) {
close(sock);
return -1;
}
if (listen(sock, SOMAXCONN) < 0) {
UNIXERR("bind");
close(sock);
return -1;
}
return sock;
}
int accept_nonblock(int fd)
{
int sock = accept(fd, NULL, 0);
if (sock < 0) {
UNIXERR("accept");
return -1;
}
if (setnonblock(sock)) {
close(sock);
return -1;
}
return sock;
}
int xwrite(int fd, const char *s, size_t l)
{
while (l > 0) {
int nb = write(fd, s, l);
if (nb < 0) {
if (errno == EINTR || errno == EAGAIN)
continue;
return -1;
}
l -= nb;
}
return 0;
}
int daemon_detach(void)
{
pid_t pid;
close(STDIN_FILENO);
close(STDOUT_FILENO);
close(STDERR_FILENO);
open("/dev/null", O_RDWR);
open("/dev/null", O_RDWR);
open("/dev/null", O_RDWR);
pid = fork();
if (pid < 0) {
return -1;
}
if (pid) {
daemon_process = false;
exit(0);
}
setsid();
return 0;
}
int drop_privileges(const char *user, const char *group)
{
if (!geteuid()) {
struct passwd *pw;
struct group *gr;
if (group) {
gr = getgrnam(group);
if (!gr)
return -1;
if (setgid(gr->gr_gid))
return -1;
}
pw = getpwnam(user);
if (!pw)
return -1;
if (!group) {
if (setgid(pw->pw_gid))
return -1;
}
// Reinit groups to make sure we don't keep root in secondary groups (when run as root)
// And also to ensure we pick up secondary groups of whatever user we changed to
// Must be done before we setuid or we may fail with EPERM
if (initgroups(user, getgid()))
return -1;
if (setuid(pw->pw_uid))
return -1;
}
return 0;
}
int pidfile_open(const char *name)
{
if (name) {
pidfile = fopen(name, "w");
if (!pidfile)
return -1;
fprintf(pidfile, "%d\n", getpid());
return fflush(pidfile);
}
return 0;
}
int pidfile_refresh(void)
{
if (pidfile) {
rewind(pidfile);
unused(ftruncate(fileno(pidfile), (off_t)0));
fprintf(pidfile, "%d\n", getpid());
return fflush(pidfile);
}
return 0;
}
static void pidfile_close(void)
{
if (pidfile) {
if (daemon_process) {
rewind(pidfile);
unused(ftruncate(fileno(pidfile), (off_t)0));
}
fclose(pidfile);
pidfile = NULL;
}
}
int common_setup(const char* pidfilename, bool unsafe, const char* runas_user,
const char* runas_group, bool daemonize)
{
if (pidfile_open(pidfilename) < 0) {
crit("unable to write pidfile %s", pidfilename);
return EXIT_FAILURE;
}
if (!unsafe && drop_privileges(runas_user, runas_group) < 0) {
crit("unable to drop privileges");
return EXIT_FAILURE;
}
if (daemonize && daemon_detach() < 0) {
crit("unable to fork");
return EXIT_FAILURE;
}
pidfile_refresh();
return EXIT_SUCCESS;
}
#include "array.h"
ARRAY(exitcall_f)
static A(exitcall_f) __exit = ARRAY_INIT;
void common_register_exit(exitcall_f exitcall)
{
array_add(__exit, exitcall);
}
static void common_shutdown(void)
{
log_state = "stopping ";
if (daemon_process && log_syslog) {
notice("");
}
pidfile_close();
for (int i = array_len(__exit) - 1 ; i >= 0 ; --i) {
array_elt(__exit, i)();
}
array_wipe(__exit);
}
void common_init(void)
{
static bool __ran = false;
if (__ran) {
return;
}
log_state = "starting ";
if (atexit(common_shutdown)) {
fputs("Cannot hook my atexit function, quitting !\n", stderr);
abort();
}
__ran = true;
}
/* vim:set et sw=4 sts=4 sws=4: */