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 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648
|
/* This file is part of GNU Dico.
Copyright (C) 2008-2024 Sergey Poznyakoff
GNU Dico 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 3, or (at your option)
any later version.
GNU Dico 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 GNU Dico. If not, see <http://www.gnu.org/licenses/>. */
#include <dicod.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/wait.h>
struct dicod_server {
int fd; /* Socket descriptor */
struct sockaddr *addr;
socklen_t addrlen;
};
struct dicod_server *srvtab;
size_t srvcount;
int fdmax;
pid_t *childtab;
unsigned long num_children;
unsigned long total_forks;
struct sockaddr server_addr;
socklen_t server_addrlen;
static int
address_family_to_domain (int family)
{
switch (family) {
case AF_UNIX:
return PF_UNIX;
case AF_INET:
return PF_INET;
case AF_INET6:
return PF_INET6;
default:
abort();
}
}
void
open_sockets(void)
{
size_t i;
dico_iterator_t itr;
struct grecs_sockaddr *sp;
struct stat st;
int t;
char *p;
srvcount = dico_list_count(listen_addr);
if (srvcount == 0) {
/* Provide defaults */
struct sockaddr_in *s_in = xmalloc(sizeof(*s_in));
sp = xmalloc(sizeof(*sp));
sp->sa = (struct sockaddr*) s_in;
sp->len = sizeof(*s_in);
if (!listen_addr)
listen_addr = xdico_list_create();
s_in->sin_family = AF_INET;
s_in->sin_addr.s_addr = INADDR_ANY;
s_in->sin_port = htons(DICO_DICT_PORT);
xdico_list_append(listen_addr, sp);
srvcount = 1;
}
srvtab = xcalloc(srvcount, sizeof srvtab[0]);
fdmax = 0;
itr = xdico_list_iterator(listen_addr);
for (i = 0, sp = dico_iterator_first(itr); sp;
sp = dico_iterator_next(itr)) {
int fd = socket(address_family_to_domain(sp->sa->sa_family),
SOCK_STREAM, 0);
if (fd == -1) {
dico_log(L_ERR, errno, "socket");
continue;
}
switch (sp->sa->sa_family) {
case AF_UNIX: {
struct sockaddr_un *s_un = (struct sockaddr_un *)sp->sa;
if (stat(s_un->sun_path, &st)) {
if (errno != ENOENT) {
dico_log(L_ERR, errno,
_("file %s exists but cannot be stat'd"),
s_un->sun_path);
close(fd);
continue;
}
} else if (!S_ISSOCK(st.st_mode)) {
dico_log(L_ERR, 0,
_("file %s is not a socket"),
s_un->sun_path);
close(fd);
continue;
} else if (unlink(s_un->sun_path)) {
dico_log(L_ERR, errno,
_("cannot unlink file %s"),
s_un->sun_path);
close(fd);
continue;
}
break;
}
case AF_INET:
case AF_INET6:
t = 1;
setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &t, sizeof(t));
break;
default:
dico_log(L_ERR, 0, _("unsupported address family: %d"),
sp->sa->sa_family);
continue;
}
if (bind(fd, sp->sa, sp->len) == -1) {
p = sockaddr_to_astr(sp->sa, sp->len);
dico_log(L_ERR, errno, ("cannot bind to %s"), p);
free(p);
close(fd);
continue;
}
if (listen(fd, 8) == -1) {
p = sockaddr_to_astr(sp->sa, sp->len);
dico_log(L_ERR, errno, "cannot listen on %s", p);
free(p);
close(fd);
continue;
}
srvtab[i].addr = sp->sa;
srvtab[i].addrlen = sp->len;
srvtab[i].fd = fd;
i++;
if (fd > fdmax)
fdmax = fd;
}
dico_iterator_destroy(&itr);
srvcount = i;
if (srvcount == 0)
dico_die(EX_UNAVAILABLE, L_ERR, 0, _("No sockets opened"));
}
void
close_sockets(void)
{
size_t i;
for (i = 0; i < srvcount; i++)
close(srvtab[i].fd);
free(srvtab);
srvtab = NULL;
srvcount = 0;
fdmax = 0;
}
unsigned long
find_pid(pid_t pid)
{
unsigned long i;
for (i = 0; i < max_children; i++)
if (childtab[i] == pid)
return i;
return (unsigned long)-1;
}
void
register_child(pid_t pid)
{
unsigned long i = find_pid(0);
if (i != (unsigned long)-1)
childtab[i] = pid;
++num_children;
++total_forks;
}
static void
print_status(pid_t pid, int status, int expect_term)
{
if (WIFEXITED(status)) {
switch (WEXITSTATUS(status)) {
case EX_OK:
dico_log(L_DEBUG, 0, _("%lu exited successfully"),
(unsigned long) pid);
break;
case EXIT_TIMEOUT:
dico_log(L_INFO, 0, _("%lu timed out"),
(unsigned long) pid);
break;
default:
dico_log(L_ERR, 0, _("%lu failed with status %d"),
(unsigned long) pid,
WEXITSTATUS(status));
}
} else if (WIFSIGNALED(status)) {
int prio;
if (expect_term && WTERMSIG(status) == SIGTERM)
prio = L_DEBUG;
else
prio = L_ERR;
dico_log(prio, 0, _("%lu terminated on signal %d"),
(unsigned long) pid, WTERMSIG(status));
} else if (WIFSTOPPED(status))
dico_log(L_ERR, 0, _("%lu stopped on signal %d"),
(unsigned long) pid, WSTOPSIG(status));
#ifdef WCOREDUMP
else if (WCOREDUMP(status))
dico_log(L_ERR, 0, _("%lu dumped core"), (unsigned long) pid);
#endif
else
dico_log(L_ERR, 0, _("%lu terminated with unrecognized status"),
(unsigned long) pid);
}
void
cleanup_children(int term)
{
pid_t pid;
int status;
while ((pid = waitpid ((pid_t)-1, &status, WNOHANG)) > 0) {
unsigned long i = find_pid(pid);
if (i == (unsigned long)-1) {
dico_log(L_INFO, 0, "subprocess %lu finished",
(unsigned long) pid);
} else {
print_status(pid, status, term);
}
childtab[i] = 0;
--num_children;
}
}
void
stop_all(int sig)
{
unsigned long i;
if (!childtab)
return;
for (i = 0; i < max_children; i++)
if (childtab[i])
kill(sig, childtab[i]);
}
void
stop_children(void)
{
int i;
if (!childtab)
return;
stop_all(SIGTERM);
for (i = 0; i < shutdown_timeout; i++) {
cleanup_children(1);
if (num_children == 0)
return;
sleep(1);
}
stop_all(SIGKILL);
}
/* Check whether pidfile NAME exists and if so, whether its PID is still
active. Exit if it is. */
void
check_pidfile(char *name)
{
unsigned long pid;
FILE *fp = fopen(name, "r");
if (!fp) {
if (errno == ENOENT)
return;
dico_die(EX_NOINPUT, L_ERR, errno,
_("Cannot open pidfile `%s'"), name);
}
if (fscanf(fp, "%lu", &pid) != 1) {
dico_log(L_ERR, 0, _("Cannot get pid from pidfile `%s'"), name);
} else {
if (kill(pid, 0) == 0) {
dico_die(EX_UNAVAILABLE,
L_ERR,
0,
_("%s appears to run with pid %lu. "
"If it does not, remove `%s' and retry."),
dico_program_name,
pid,
name);
}
}
fclose(fp);
if (unlink(name))
dico_die(EX_OSERR, L_ERR, errno,
_("Cannot unlink pidfile `%s'"), name);
}
void
create_pidfile(char *name)
{
FILE *fp = fopen(name, "w");
if (!fp)
dico_die(EX_CANTCREAT, L_ERR, errno,
_("Cannot create pidfile `%s'"), name);
fprintf(fp, "%lu", (unsigned long)getpid());
fclose(fp);
}
void
remove_pidfile(char *name)
{
if (unlink(name))
dico_log(L_ERR, errno, _("Cannot unlink pidfile `%s'"), name);
}
int restart;
int stop;
int need_cleanup;
static void
sig_stop(int sig)
{
stop = 1;
}
static void
sig_restart(int sig)
{
restart = 1;
}
static void
sig_child(int sig)
{
need_cleanup = 1;
}
struct sockaddr_storage client_addr;
socklen_t client_addrlen;
#define ACCESS_DENIED_MSG "530 Access denied\n"
#define TEMP_FAIL_MSG "420 Server temporarily unavailable\n"
#define SWRITE(fd, s) write(fd, s, sizeof(s)-1)
int
handle_connection(int n)
{
int status = 0;
int connfd;
int listenfd = srvtab[n].fd;
server_addr = *srvtab[n].addr;
server_addrlen = srvtab[n].addrlen;
client_addrlen = sizeof(client_addr);
connfd = accept(listenfd, (struct sockaddr*) &client_addr,
&client_addrlen);
if (connfd == -1) {
if (errno == EINTR)
return -1;
dico_log(L_ERR, errno, "accept");
return -1;
/*exit (EXIT_FAILURE);*/
}
if (dicod_acl_check(connect_acl, 1) == 0) {
char *p = sockaddr_to_astr((struct sockaddr *)&client_addr,
client_addrlen);
dico_log(L_NOTICE, 0,
_("connection from %s denied"),
p);
free(p);
SWRITE(connfd, ACCESS_DENIED_MSG);
close(connfd);
return 0;
}
if (single_process) {
dico_stream_t str = dicod_iostream(connfd, connfd);
if (str) {
status = dicod_loop(str);
dico_stream_close(str);
dico_stream_destroy(&str);
} else
status = -1;
} else {
pid_t pid = fork();
if (pid == -1) {
dico_log(L_ERR, errno, "fork");
SWRITE(connfd, TEMP_FAIL_MSG);
} else if (pid == 0) {
/* Child. */
dico_stream_t str;
close(listenfd);
signal(SIGTERM, SIG_DFL);
signal(SIGQUIT, SIG_DFL);
signal(SIGINT, SIG_DFL);
signal(SIGCHLD, SIG_DFL);
signal(SIGHUP, SIG_DFL);
str = dicod_iostream(connfd, connfd);
if (!str)
exit(EX_UNAVAILABLE);
status = dicod_loop(str);
dico_stream_close(str);
dico_stream_destroy(&str);
exit(status);
} else {
register_child(pid);
}
}
close(connfd);
return status;
}
static int
pre_restart_lint_internal(void)
{
pid_t pid;
time_t ts;
pid = fork();
if (pid == 0)
run_lint();
else if (pid == -1) {
dico_log(L_ERR, errno, _("fork failed"));
return 1;
}
/* Master process */
ts = time(NULL);
while (1) {
int status;
pid_t n = waitpid(pid, &status, WNOHANG);
if (n == pid) {
/* Child exited, examine status */
if (WIFEXITED(status)) {
if (WEXITSTATUS(status) == 0) {
/* OK to restart */
return 0;
} else {
dico_log(L_NOTICE, 0,
_("refusing to restart due to errors in "
"configuration file"));
return 1;
}
} else {
dico_log(L_NOTICE, 0,
_("refusing to restart due to unexpected "
"return status of configuration checker"));
print_status(pid, status, 0);
return 1;
}
} else if (pid == 0) {
if (time(NULL) - ts > 5) {
dico_log(L_NOTICE, 0,
_("refusing to restart: "
"configuration checker did not exit within "
"5 seconds"));
kill(pid, SIGKILL);
break;
}
} else if (errno == EINTR || errno == EAGAIN)
continue;
else {
dico_log(L_ERR, errno, _("waitpid failed"));
dico_log(L_NOTICE, 0, _("refusing to restart"));
kill(pid, SIGKILL);
break;
}
}
return 1;
}
static int
pre_restart_lint(void)
{
int rc;
void (*sf)(int);
sf = signal(SIGCHLD, SIG_DFL);
rc = pre_restart_lint_internal();
signal(SIGCHLD, sf);
return rc;
}
int
server_loop(void)
{
size_t i;
fd_set fdset;
FD_ZERO(&fdset);
for (i = 0; i < srvcount; i++)
FD_SET(srvtab[i].fd, &fdset);
for (;;) {
int rc;
fd_set rdset;
if (need_cleanup) {
cleanup_children(0);
need_cleanup = 1;
}
if (num_children > max_children) {
dico_log(L_ERR, 0, _("too many children (%lu)"), num_children);
pause();
continue;
}
rdset = fdset;
rc = select (fdmax + 1, &rdset, NULL, NULL, NULL);
if (rc == -1 && errno == EINTR) {
if (stop)
break;
else if (restart) {
if (pre_restart_lint() == 0)
break;
else
restart = 0;
}
continue;
} else if (rc < 0) {
dico_log(L_CRIT, errno, _("select error"));
return EX_OSERR;
}
for (i = 0; i < srvcount; i++)
if (FD_ISSET(srvtab[i].fd, &rdset))
handle_connection(i);
}
return 0;
}
/* Return the highest-numbered open file descriptor. */
static int
getmaxfd(void)
{
int i = open("/dev/null", O_RDONLY);
if (i >= 0) {
close(i);
i--;
}
return i;
}
void
dicod_server(int argc, char **argv)
{
int rc;
dico_log(L_INFO, 0, _("%s started"), program_version);
if (user_id) {
if (getuid())
dico_log(L_NOTICE, 0,
_("not running as root: ignoring user/group settings"));
else if (switch_to_privs(user_id, group_id, group_list))
dico_die(EX_NOUSER, L_CRIT, 0, "exiting");
}
if (!foreground)
check_pidfile(pidfile_name);
signal(SIGTERM, sig_stop);
signal(SIGQUIT, sig_stop);
signal(SIGINT, sig_stop);
signal(SIGCHLD, sig_child);
if (argv[0][0] != '/') {
dico_log(L_WARN, 0, _("dicod started without full file name"));
dico_log(L_WARN, 0, _("restart (SIGHUP) will not work"));
signal(SIGHUP, sig_stop);
} else if (config_file[0] != '/') {
dico_log(L_WARN, 0, _("configuration file is not given with a full file name"));
dico_log(L_WARN, 0, _("restart (SIGHUP) will not work"));
signal(SIGHUP, sig_stop);
} else
signal(SIGHUP, sig_restart);
if (!foreground) {
if (daemon(0, 0) == -1)
dico_die(EX_OSERR, L_CRIT, errno, _("Cannot become a daemon"));
create_pidfile(pidfile_name);
}
open_sockets();
if (!single_process)
childtab = xcalloc(max_children, sizeof(childtab[0]));
rc = server_loop();
stop_children();
free(childtab);
dicod_server_cleanup();
close_sockets();
if (rc)
dico_log(L_NOTICE, errno, _("Exit code = %d, last error status"), rc);
if (!foreground)
remove_pidfile(pidfile_name);
if (restart) {
int i;
dico_log(L_INFO, 0, _("%s restarting"), program_version);
for (i = getmaxfd(); i > 2; i--)
close(i);
execv(argv[0], argv);
dico_die(EX_UNAVAILABLE, L_ERR|L_CONS, errno, _("Cannot restart"));
} else
dico_log(L_INFO, 0, _("%s terminating"), program_version);
exit(rc);
}
|