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 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111
|
/* upsd.c - watches ups state files and answers queries
Copyright (C) 1999 Russell Kroll <rkroll@exploits.org>
This program 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.
This program 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 this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "upsd.h"
#include "upstype.h"
#include "conf.h"
#include "netcmds.h"
#include "upsconf.h"
#include <sys/un.h>
#include <sys/socket.h>
#include <netdb.h>
#ifdef HAVE_SSL
#include <openssl/err.h>
#include <openssl/ssl.h>
#endif
#include "user.h"
#include "access.h"
#include "ctype.h"
#include "stype.h"
#include "ssl.h"
#include "sstate.h"
#include "desc.h"
#include "neterr.h"
/* externally-visible settings and pointers */
upstype_t *firstups = NULL;
/* default 15 seconds before data is marked stale */
int maxage = 15;
/* preloaded to STATEPATH in main, can be overridden via upsd.conf */
char *statepath = NULL;
/* preloaded to DATADIR in main, can be overridden via upsd.conf */
char *datapath = NULL;
/* everything else */
static ctype_t *firstclient = NULL;
/* default is to listen on all local interfaces */
static stype_t *firstaddr = NULL;
#ifdef HAVE_IPV6
static int opt_af = AF_UNSPEC;
#endif
/* signal handlers */
static struct sigaction sa;
static sigset_t nut_upsd_sigmask;
/* pid file */
static char pidfn[SMALLBUF];
/* set by signal handlers */
static int reload_flag = 0, exit_flag = 0;
#ifdef HAVE_IPV6
static const char *inet_ntopW (struct sockaddr_storage *s) {
static char str[40];
switch (s->ss_family) {
case AF_INET:
return inet_ntop (AF_INET, &(((struct sockaddr_in *)s)->sin_addr), str, 16);
case AF_INET6:
return inet_ntop (AF_INET6, &(((struct sockaddr_in6 *)s)->sin6_addr), str, 40);
default:
errno = EAFNOSUPPORT;
return NULL;
}
}
#endif
/* return a pointer to the named ups if possible */
upstype_t *get_ups_ptr(const char *name)
{
upstype_t *tmp;
if (!name) {
return NULL;
}
for (tmp = firstups; tmp != NULL; tmp = tmp->next) {
if (!strcasecmp(tmp->name, name)) {
return tmp;
}
}
return NULL;
}
/* mark the data stale if this is new, otherwise cleanup any remaining junk */
static void ups_data_stale(upstype_t *ups)
{
/* don't complain again if it's already known to be stale */
if (ups->stale == 1) {
return;
}
ups->stale = 1;
upslogx(LOG_NOTICE, "Data for UPS [%s] is stale - check driver", ups->name);
}
/* mark the data ok if this is new, otherwise do nothing */
static void ups_data_ok(upstype_t *ups)
{
if (ups->stale == 0) {
return;
}
upslogx(LOG_NOTICE, "UPS [%s] data is no longer stale", ups->name);
ups->stale = 0;
}
/* make sure this UPS is connected and has fresh data */
static void check_ups(upstype_t *ups)
{
/* sanity checks */
if ((!ups) || (!ups->fn)) {
return;
}
/* see if we need to (re)connect to the socket */
if (ups->sock_fd == -1) {
ups->sock_fd = sstate_connect(ups);
}
/* throw some warnings if it's not feeding us data any more */
if (sstate_dead(ups, maxage)) {
ups_data_stale(ups);
} else {
ups_data_ok(ups);
}
}
/* add another listening address */
void listen_add(const char *addr, const char *port)
{
stype_t *stmp, *last;
/* don't change listening addresses on reload */
if (reload_flag) {
return;
}
stmp = last = firstaddr;
/* find end of linked list */
while (stmp != NULL) {
last = stmp;
stmp = stmp->next;
}
/* grab some memory and add the info */
stmp = xmalloc(sizeof(stype_t));
stmp->addr = xstrdup(addr);
stmp->port = xstrdup(port);
stmp->sock_fd = -1;
stmp->next = NULL;
if (last == NULL) {
firstaddr = stmp;
} else {
last->next = stmp;
}
upsdebugx(3, "listen_add: added %s:%s", stmp->addr, stmp->port);
}
/* create a listening socket for tcp connections */
static void setuptcp(stype_t *serv)
{
#ifndef HAVE_IPV6
struct hostent *host;
struct sockaddr_in server;
int res, one = 1;
host = gethostbyname(serv->addr);
if (host == NULL) {
struct in_addr listenaddr;
if (!inet_aton(serv->addr, &listenaddr)) {
fatal_with_errno(EXIT_FAILURE, "inet_aton");
}
host = gethostbyaddr(&listenaddr, sizeof(listenaddr), AF_INET);
if (host == NULL) {
fatal_with_errno(EXIT_FAILURE, "gethostbyaddr");
}
}
if ((serv->sock_fd = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
fatal_with_errno(EXIT_FAILURE, "socket");
}
res = setsockopt(serv->sock_fd, SOL_SOCKET, SO_REUSEADDR, (void *) &one, sizeof(one));
if (res != 0) {
fatal_with_errno(EXIT_FAILURE, "setsockopt(SO_REUSEADDR)");
}
memset(&server, '\0', sizeof(server));
server.sin_family = AF_INET;
server.sin_port = htons(atoi(serv->port));
memcpy(&server.sin_addr, host->h_addr, host->h_length);
if (bind(serv->sock_fd, (struct sockaddr *) &server, sizeof(server)) == -1) {
fatal_with_errno(EXIT_FAILURE, "Can't bind TCP port %s", serv->port);
}
if ((res = fcntl(serv->sock_fd, F_GETFL, 0)) == -1) {
fatal_with_errno(EXIT_FAILURE, "fcntl(get)");
}
if (fcntl(serv->sock_fd, F_SETFL, res | O_NDELAY) == -1) {
fatal_with_errno(EXIT_FAILURE, "fcntl(set)");
}
if (listen(serv->sock_fd, 16)) {
fatal_with_errno(EXIT_FAILURE, "listen");
}
#else
struct addrinfo hints, *res, *ai;
int v = 0, one = 1;
upsdebugx(3, "setuptcp: try to bind to %s port %s", serv->addr, serv->port);
memset(&hints, 0, sizeof(hints));
hints.ai_flags = AI_PASSIVE;
hints.ai_family = opt_af;
hints.ai_socktype = SOCK_STREAM;
hints.ai_protocol = IPPROTO_TCP;
if ((v = getaddrinfo(serv->addr, serv->port, &hints, &res)) != 0) {
if (v == EAI_SYSTEM) {
fatal_with_errno(EXIT_FAILURE, "getaddrinfo");
}
fatalx(EXIT_FAILURE, "getaddrinfo: %s", gai_strerror(v));
}
for (ai = res; ai != NULL; ai = ai->ai_next) {
int sock_fd;
if ((sock_fd = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol)) < 0) {
upsdebug_with_errno(3, "setuptcp: socket");
continue;
}
if (setsockopt(sock_fd, SOL_SOCKET, SO_REUSEADDR, (void *)&one, sizeof(one)) != 0) {
fatal_with_errno(EXIT_FAILURE, "setuptcp: setsockopt");
}
if (bind(sock_fd, ai->ai_addr, ai->ai_addrlen) < 0) {
upsdebug_with_errno(3, "setuptcp: bind");
close(sock_fd);
continue;
}
if ((v = fcntl(sock_fd, F_GETFL, 0)) == -1) {
fatal_with_errno(EXIT_FAILURE, "setuptcp: fcntl(get)");
}
if (fcntl(sock_fd, F_SETFL, v | O_NDELAY) == -1) {
fatal_with_errno(EXIT_FAILURE, "setuptcp: fcntl(set)");
}
if (listen(sock_fd, 16) < 0) {
upsdebug_with_errno(3, "setuptcp: listen");
close(sock_fd);
continue;
}
serv->sock_fd = sock_fd;
break;
}
freeaddrinfo(res);
#endif
/* don't fail silently */
if (serv->sock_fd < 0) {
fatalx(EXIT_FAILURE, "not listening on %s port %s", serv->addr, serv->port);
} else {
upslogx(LOG_INFO, "listening on %s port %s", serv->addr, serv->port);
}
return;
}
/* decrement the login counter for this ups */
static void declogins(const char *upsname)
{
upstype_t *ups;
ups = get_ups_ptr(upsname);
if (ups == NULL) {
upslogx(LOG_INFO, "Tried to decrement invalid ups name (%s)", upsname);
return;
}
ups->numlogins--;
if (ups->numlogins < 0) {
upslogx(LOG_ERR, "Programming error: UPS [%s] has numlogins=%d", ups->name, ups->numlogins);
}
}
/* disconnect a client connection and free all related memory */
static void delclient(ctype_t *dclient)
{
ctype_t *tmp, *last;
if (dclient == NULL) {
return;
}
last = NULL;
tmp = firstclient;
while (tmp != NULL) {
if (tmp == dclient) { /* found it */
shutdown(dclient->fd, 2);
close(dclient->fd);
free(tmp->addr);
if (tmp->loginups != NULL) {
declogins(tmp->loginups);
free(tmp->loginups);
}
free(tmp->username);
free(tmp->password);
#ifdef HAVE_SSL
if (tmp->ssl) {
SSL_free(tmp->ssl);
}
#endif
pconf_finish(&tmp->ctx);
if (last == NULL) { /* deleting first entry */
firstclient = tmp->next;
} else {
last->next = tmp->next;
}
free(tmp);
return;
}
last = tmp;
tmp = tmp->next;
}
/* not found?! */
upslogx(LOG_WARNING, "Tried to delete client struct that doesn't exist!");
return;
}
/* send the buffer <sendbuf> of length <sendlen> to host <dest> */
int sendback(ctype_t *client, const char *fmt, ...)
{
int res, len;
char ans[NUT_NET_ANSWER_MAX+1];
va_list ap;
if (!client) {
return 0;
}
if (client->delete) {
return 0;
}
va_start(ap, fmt);
vsnprintf(ans, sizeof(ans), fmt, ap);
va_end(ap);
len = strlen(ans);
if (client->ssl) {
res = ssl_write(client, ans, len);
} else {
res = write(client->fd, ans, len);
}
upsdebugx(2, "write: [destfd=%d] [len=%d] [%s]", client->fd, len, rtrim(ans, '\n'));
if (len != res) {
upslog_with_errno(LOG_NOTICE, "write() failed for %s", client->addr);
client->delete = 1;
return 0; /* failed */
}
return 1; /* OK */
}
/* just a simple wrapper for now */
int send_err(ctype_t *client, const char *errtype)
{
if (!client) {
return -1;
}
upsdebugx(4, "Sending error [%s] to client %s", errtype, client->addr);
return sendback(client, "ERR %s\n", errtype);
}
/* disconnect anyone logged into this UPS */
void kick_login_clients(const char *upsname)
{
ctype_t *tmp, *next;
tmp = firstclient;
while (tmp) {
next = tmp->next;
/* if it's not logged in, don't check it */
if (!tmp->loginups) {
tmp = next;
continue;
}
if (!strcmp(tmp->loginups, upsname)) {
upslogx(LOG_INFO, "Kicking client %s (was on UPS [%s])\n", tmp->addr, upsname);
delclient(tmp);
}
tmp = next;
}
}
/* make sure a UPS is sane - connected, with fresh data */
int ups_available(const upstype_t *ups, ctype_t *client)
{
if (ups->sock_fd == -1) {
send_err(client, NUT_ERR_DRIVER_NOT_CONNECTED);
return 0;
}
if (ups->stale) {
send_err(client, NUT_ERR_DATA_STALE);
return 0;
}
/* must be OK */
return 1;
}
/* check flags and access for an incoming command from the network */
static void check_command(int cmdnum, ctype_t *client, int numarg,
const char **arg)
{
if (netcmds[cmdnum].flags & FLAG_USER) {
if (!client->username) {
send_err(client, NUT_ERR_USERNAME_REQUIRED);
return;
}
if (!client->password) {
send_err(client, NUT_ERR_PASSWORD_REQUIRED);
return;
}
}
/* looks good - call the command */
netcmds[cmdnum].func(client, numarg - 1, &arg[1]);
}
/* parse requests from the network */
static void parse_net(ctype_t *client)
{
int i;
/* see if this client is still allowed to talk to us */
if (!access_check(&client->sock)) {
send_err(client, NUT_ERR_ACCESS_DENIED);
client->delete = 1;
return;
}
/* paranoia */
client->rq[client->rqpos] = '\0';
/* by this point we should always have a usable line */
if (pconf_line(&client->ctx, client->rq) != 1) {
/* shouldn't happen */
upslogx(LOG_WARNING, "pconf_line couldn't handle the input");
send_err(client, NUT_ERR_UNKNOWN_COMMAND);
return;
}
if (pconf_parse_error(&client->ctx)) {
upsdebugx(4, "parse error on net read");
send_err(client, NUT_ERR_UNKNOWN_COMMAND);
return;
}
/* shouldn't happen */
if (client->ctx.numargs < 1) {
send_err(client, NUT_ERR_UNKNOWN_COMMAND);
return;
}
for (i = 0; netcmds[i].name != NULL; i++) {
if (!strcasecmp(netcmds[i].name, client->ctx.arglist[0])) {
check_command(i, client, client->ctx.numargs,
(const char **) client->ctx.arglist);
return;
}
}
/* fallthrough = not matched by any entry in netcmds */
send_err(client, NUT_ERR_UNKNOWN_COMMAND);
}
/* scan the list of UPSes for sanity */
static void check_every_ups(void)
{
upstype_t *ups;
ups = firstups;
while (ups != NULL) {
check_ups(ups);
ups = ups->next;
}
}
/* answer incoming tcp connections */
static void answertcp(stype_t *serv)
#ifndef HAVE_IPV6
{
struct sockaddr_in csock;
#else
{
struct sockaddr_storage csock;
#endif
int acc;
ctype_t *tmp, *last;
socklen_t clen;
clen = sizeof(csock);
acc = accept(serv->sock_fd, (struct sockaddr *) &csock, &clen);
if (acc < 0) {
return;
}
if (!access_check(&csock)) {
upslogx(LOG_NOTICE, "Rejecting TCP connection from %s",
#ifndef HAVE_IPV6
inet_ntoa(csock.sin_addr));
#else
inet_ntopW(&csock));
#endif
shutdown(acc, shutdown_how);
close(acc);
return;
}
last = tmp = firstclient;
while (tmp != NULL) {
last = tmp;
tmp = tmp->next;
}
tmp = xmalloc(sizeof(ctype_t));
tmp->fd = acc;
tmp->delete = 0;
#ifndef HAVE_IPV6
tmp->addr = xstrdup(inet_ntoa(csock.sin_addr));
memcpy(&tmp->sock, &csock, sizeof(struct sockaddr_in));
#else
tmp->addr = xstrdup(inet_ntopW(&csock));
memcpy(&tmp->sock, &csock, sizeof(struct sockaddr_storage));
#endif
tmp->rqpos = 0;
memset(tmp->rq, '\0', sizeof(tmp->rq));
pconf_init(&tmp->ctx, NULL);
tmp->loginups = NULL; /* for upsmon */
tmp->username = NULL;
tmp->password = NULL;
tmp->ssl = NULL;
tmp->ssl_connected = 0;
tmp->next = NULL;
if (last == NULL) {
firstclient = tmp;
} else {
last->next = tmp;
}
upslogx(LOG_DEBUG, "Connection from %s", tmp->addr);
}
/* read tcp messages and handle them */
static void readtcp(ctype_t *client)
{
char buf[SMALLBUF];
int i, ret;
memset(buf, '\0', sizeof(buf));
if (client->ssl) {
ret = ssl_read(client, buf, sizeof(buf));
} else {
ret = read(client->fd, buf, sizeof(buf));
}
if (ret < 1) {
upslogx(LOG_INFO, "Host %s disconnected (read failure)", client->addr);
delclient(client);
return;
}
/* if an overflow will happen, then clear the queue */
if ((ret + client->rqpos) >= sizeof(client->rq)) {
memset(client->rq, '\0', sizeof(client->rq));
client->rqpos = 0;
}
/* fragment handling code */
for (i = 0; i < ret; i++) {
/* add to the receive queue one by one */
client->rq[client->rqpos++] = buf[i];
/* parse on linefeed ("blah blah\n") */
if (buf[i] == 10) { /* LF */
parse_net(client);
/* bail out if the connection closed in parse_net */
if (client->delete) {
delclient(client);
return;
}
/* reset queue */
client->rqpos = 0;
memset(client->rq, '\0', sizeof(client->rq));
}
}
return;
}
void server_load(void)
{
stype_t *serv;
/* default behaviour if no LISTEN addres has been specified */
if (firstaddr == NULL) {
listen_add("0.0.0.0", string_const(PORT));
}
for (serv = firstaddr; serv != NULL; serv = serv->next) {
setuptcp(serv);
}
}
void server_free(void)
{
stype_t *stmp, *snext;
/* cleanup server fds */
stmp = firstaddr;
while (stmp) {
snext = stmp->next;
if (stmp->sock_fd != -1)
close(stmp->sock_fd);
free(stmp->addr);
free(stmp->port);
free(stmp);
stmp = snext;
}
firstaddr = NULL;
}
static void upsd_cleanup(void)
{
ctype_t *tmpcli, *tmpnext;
upstype_t *ups, *unext;
/* cleanup client fds */
tmpcli = firstclient;
while (tmpcli) {
tmpnext = tmpcli->next;
delclient(tmpcli);
tmpcli = tmpnext;
}
if (strcmp(pidfn, "") != 0) {
unlink(pidfn);
}
ups = firstups;
while (ups) {
unext = ups->next;
if (ups->sock_fd != -1) {
close(ups->sock_fd);
}
sstate_infofree(ups);
sstate_cmdfree(ups);
pconf_finish(&ups->sock_ctx);
free(ups->fn);
free(ups->name);
free(ups->desc);
free(ups);
ups = unext;
}
/* dump everything */
acl_free();
access_free();
user_flush();
desc_free();
server_free();
free(statepath);
free(datapath);
free(certfile);
}
/* service requests and check on new data */
static void mainloop(void)
{
fd_set rfds;
struct timeval tv;
int res, maxfd = -1;
ctype_t *tmpcli, *tmpnext;
upstype_t *utmp, *unext;
stype_t *stmp, *snext;
if (reload_flag) {
conf_reload();
reload_flag = 0;
}
tv.tv_sec = 2;
tv.tv_usec = 0;
FD_ZERO(&rfds);
/* scan through servers and add to FD_SET */
for (stmp = firstaddr; stmp != NULL; stmp = stmp->next) {
if (stmp->sock_fd != -1) {
FD_SET(stmp->sock_fd, &rfds);
if (stmp->sock_fd > maxfd) {
maxfd = stmp->sock_fd;
}
}
}
/* scan through clients and add to FD_SET */
for (tmpcli = firstclient; tmpcli != NULL; tmpcli = tmpcli->next) {
if (tmpcli->fd != -1) {
FD_SET(tmpcli->fd, &rfds);
if (tmpcli->fd > maxfd) {
maxfd = tmpcli->fd;
}
}
}
/* also add new driver sockets */
for (utmp = firstups; utmp != NULL; utmp = utmp->next) {
if (utmp->sock_fd != -1) {
FD_SET(utmp->sock_fd, &rfds);
if (utmp->sock_fd > maxfd) {
maxfd = utmp->sock_fd;
}
}
}
res = select(maxfd + 1, &rfds, NULL, NULL, &tv);
if (res > 0) {
/* scan servers for activity */
stmp = firstaddr;
while (stmp) {
snext = stmp->next;
if (stmp->sock_fd != -1) {
if (FD_ISSET(stmp->sock_fd, &rfds)) {
answertcp(stmp);
}
}
stmp = snext;
}
/* scan clients for activity */
tmpcli = firstclient;
while (tmpcli != NULL) {
/* preserve for later since delclient may run */
tmpnext = tmpcli->next;
if (tmpcli->fd != -1) {
if (FD_ISSET(tmpcli->fd, &rfds)) {
readtcp(tmpcli);
}
}
tmpcli = tmpnext;
}
/* now scan ups sockets for activity */
utmp = firstups;
while (utmp) {
unext = utmp->next;
if (utmp->sock_fd != -1) {
if (FD_ISSET(utmp->sock_fd, &rfds)) {
sstate_sock_read(utmp);
}
}
utmp = unext;
}
}
check_every_ups();
}
static void help(const char *progname)
{
printf("Network server for UPS data.\n\n");
printf("usage: %s [OPTIONS]\n", progname);
printf("\n");
printf(" -c <command> send <command> via signal to background process\n");
printf(" commands:\n");
printf(" - reload: reread configuration files\n");
printf(" - stop: stop process and exit\n");
printf(" -D raise debugging level\n");
printf(" -f stay in the foreground for testing\n");
printf(" -h display this help\n");
printf(" -r <dir> chroots to <dir>\n");
printf(" -u <user> switch to <user> (if started as root)\n");
printf(" -V display the version of this software\n");
#ifdef HAVE_IPV6
printf(" -4 IPv4 only\n");
printf(" -6 IPv6 only\n");
#endif
exit(EXIT_SUCCESS);
}
static void set_reload_flag(int sig)
{
reload_flag = 1;
}
static void set_exit_flag(int sig)
{
exit_flag = sig;
}
/* basic signal setup to ignore SIGPIPE */
static void setupsignals(void)
{
sigemptyset(&nut_upsd_sigmask);
sa.sa_mask = nut_upsd_sigmask;
sa.sa_flags = 0;
sa.sa_handler = SIG_IGN;
sigaction(SIGPIPE, &sa, NULL);
/* handle shutdown signals */
sa.sa_handler = set_exit_flag;
sigaction(SIGINT, &sa, NULL);
sigaction(SIGQUIT, &sa, NULL);
sigaction(SIGTERM, &sa, NULL);
/* handle reloading */
sa.sa_handler = set_reload_flag;
sigaction(SIGHUP, &sa, NULL);
}
void check_perms(const char *fn)
{
int ret;
struct stat st;
ret = stat(fn, &st);
if (ret != 0) {
fatal_with_errno(EXIT_FAILURE, "stat %s", fn);
}
/* include the x bit here in case we check a directory */
if (st.st_mode & (S_IROTH | S_IXOTH)) {
upslogx(LOG_WARNING, "%s is world readable", fn);
}
}
int main(int argc, char **argv)
{
int i, cmd = 0;
int do_background = 1;
char *progname, *chroot_path = NULL;
const char *user = NULL;
struct passwd *new_uid = NULL;
progname = argv[0];
/* pick up a default from configure --with-user */
user = RUN_AS_USER;
/* yes, xstrdup - the conf handlers call free on this later */
statepath = xstrdup(dflt_statepath());
datapath = xstrdup(DATADIR);
/* set up some things for later */
snprintf(pidfn, sizeof(pidfn), "%s/upsd.pid", altpidpath());
printf("Network UPS Tools upsd %s\n", UPS_VERSION);
while ((i = getopt(argc, argv, "+h46p:r:i:fu:Vc:D")) != -1) {
switch (i) {
case 'h':
help(progname);
break;
case 'p':
case 'i':
fatalx(EXIT_FAILURE, "Specifying a listening addresses with '-i <address>' and '-p <port>'\n"
"is deprecated. Use 'LISTEN <address> [<port>]' in 'upsd.conf' instead.\n"
"See 'man 8 upsd.conf' for more information.");
case 'r':
chroot_path = optarg;
break;
case 'f':
do_background = 0;
break;
case 'u':
user = optarg;
break;
case 'V':
/* do nothing - we already printed the banner */
exit(EXIT_SUCCESS);
case 'c':
if (!strncmp(optarg, "reload", strlen(optarg)))
cmd = SIGCMD_RELOAD;
if (!strncmp(optarg, "stop", strlen(optarg)))
cmd = SIGCMD_STOP;
/* bad command given */
if (cmd == 0)
help(progname);
break;
case 'D':
do_background = 0;
nut_debug_level++;
break;
#ifdef HAVE_IPV6
case '4':
opt_af = AF_INET;
break;
case '6':
opt_af = AF_INET6;
break;
#endif
default:
help(progname);
break;
}
}
if (cmd) {
sendsignalfn(pidfn, cmd);
exit(EXIT_SUCCESS);
}
argc -= optind;
argv += optind;
if (argc != 0) {
help(progname);
}
setupsignals();
open_syslog("upsd");
/* send logging to the syslog pre-background for later use */
syslogbit_set();
/* do this here, since getpwnam() might not work in the chroot */
new_uid = get_user_pwent(user);
if (chroot_path) {
chroot_start(chroot_path);
}
/* handle upsd.conf */
load_upsdconf(0); /* 0 = initial */
/* start server */
server_load();
become_user(new_uid);
if (chdir(statepath)) {
fatal_with_errno(EXIT_FAILURE, "Can't chdir to %s", statepath);
}
/* check statepath perms */
check_perms(statepath);
/* handle ups.conf */
read_upsconf();
upsconf_add(0); /* 0 = initial */
if (num_ups == 0) {
fatalx(EXIT_FAILURE, "Fatal error: at least one UPS must be defined in ups.conf");
}
ssl_init();
/* try to bring in the var/cmd descriptions */
desc_load();
/* handle upsd.users */
user_load();
if (do_background) {
background();
writepid(pidfn);
} else {
memset(&pidfn, '\0', sizeof(pidfn));
}
while (exit_flag == 0) {
mainloop();
}
upslogx(LOG_INFO, "Signal %d: exiting", exit_flag);
upsd_cleanup();
exit(EXIT_SUCCESS);
}
|