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
|
/*----------------------------------------------------------------------------*/
/* Xymon monitor library. */
/* */
/* This is a library module, part of libxymon. */
/* It contains routines for communicating with the Xymon daemon */
/* */
/* Copyright (C) 2002-2011 Henrik Storner <henrik@storner.dk> */
/* */
/* This program is released under the GNU General Public License (GPL), */
/* version 2. See the file "COPYING" for details. */
/* */
/*----------------------------------------------------------------------------*/
static char rcsid[] = "$Id: sendmsg.c 8069 2019-07-23 15:29:06Z jccleaver $";
#include "config.h"
#include <unistd.h>
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#ifdef HAVE_SYS_SELECT_H
#include <sys/select.h>
#endif
#include <errno.h>
#include <netdb.h>
#include <fcntl.h>
#include <stdio.h>
#include <limits.h>
#include <sys/resource.h>
#include <unistd.h>
#include <signal.h>
#include <time.h>
#include <sys/ipc.h>
#include <sys/msg.h>
#include "libxymon.h"
#define SENDRETRIES 2
/* These commands go to all Xymon servers */
static char *multircptcmds[] = { "status", "combo", "extcombo", "meta", "data", "notify", "enable", "disable", "drop", "rename", "client", NULL };
static char errordetails[1024];
/* Stuff for combo message handling */
int xymonmsgcount = 0; /* Number of messages transmitted */
int xymonstatuscount = 0; /* Number of status items reported */
int xymonnocombocount = 0; /* Number of status items reported outside combo msgs */
static int xymonmsgqueued; /* Anything in the buffer ? */
static strbuffer_t *xymonmsg = NULL; /* Complete combo message buffer */
static strbuffer_t *msgbuf = NULL; /* message buffer for one status message */
static int msgcolor; /* color of status message in msgbuf */
static int combo_is_local = 0;
static int maxmsgspercombo = 100; /* 0 = no limit. 100 is a reasonable default. */
static int sleepbetweenmsgs = 0;
static int xymondportnumber = 0;
static char *xymonproxyhost = NULL;
static int xymonproxyport = 0;
static char *proxysetting = NULL;
static char *comboofsstr = NULL;
static int comboofssz = 0;
static int *combooffsets = NULL;
static int xymonmetaqueued; /* Anything in the buffer ? */
static strbuffer_t *metamsg = NULL; /* Complete meta message buffer */
static strbuffer_t *metabuf = NULL; /* message buffer for one meta message */
static int backfeedqueue = -1;
static int max_backfeedsz = 16384;
int dontsendmessages = 0;
void setproxy(char *proxy)
{
if (proxysetting) xfree(proxysetting);
proxysetting = strdup(proxy);
}
static void setup_transport(char *recipient)
{
static int transport_is_setup = 0;
int default_port;
if (transport_is_setup) return;
transport_is_setup = 1;
if (strncmp(recipient, "http://", 7) == 0) {
/*
* Send messages via http. This requires e.g. a CGI on the webserver to
* receive the POST we do here.
*/
default_port = 80;
if (proxysetting == NULL) proxysetting = getenv("http_proxy");
if (proxysetting) {
char *p;
xymonproxyhost = strdup(proxysetting);
if (strncmp(xymonproxyhost, "http://", 7) == 0) xymonproxyhost += strlen("http://");
p = strchr(xymonproxyhost, ':');
if (p) {
*p = '\0';
p++;
xymonproxyport = atoi(p);
}
else {
xymonproxyport = 8080;
}
}
}
else {
/*
* Non-HTTP transport - lookup portnumber in both XYMONDPORT env.
* and the "xymond" entry from /etc/services.
*/
default_port = 1984;
if (xgetenv("XYMONDPORT")) xymondportnumber = atoi(xgetenv("XYMONDPORT"));
/* Next is /etc/services "bbd" entry */
if ((xymondportnumber <= 0) || (xymondportnumber > 65535)) {
struct servent *svcinfo;
svcinfo = getservbyname("bbd", NULL);
if (!svcinfo) svcinfo = getservbyname("bb", NULL);
if (svcinfo) xymondportnumber = ntohs(svcinfo->s_port);
}
}
/* Last resort: The default value */
if ((xymondportnumber <= 0) || (xymondportnumber > 65535)) {
xymondportnumber = default_port;
}
dbgprintf("Transport setup is:\n");
dbgprintf("xymondportnumber = %d\n", xymondportnumber);
dbgprintf("xymonproxyhost = %s\n", (xymonproxyhost ? xymonproxyhost : "NONE"));
dbgprintf("xymonproxyport = %d\n", xymonproxyport);
}
static int sendtoxymond(char *recipient, char *message, FILE *respfd, char **respstr, int fullresponse, int timeout)
{
struct in_addr addr;
struct sockaddr_in saddr;
int sockfd = -1;
fd_set readfds;
fd_set writefds;
int res, isconnected, wdone, rdone;
struct timeval tmo;
char *msgptr = message;
char *p;
char *rcptip = NULL;
int rcptport = 0;
int connretries = SENDRETRIES;
SBUF_DEFINE(httpmessage);
char recvbuf[32768];
int haveseenhttphdrs = 1;
int respstrsz = 0;
int respstrlen = 0;
int result = XYMONSEND_OK;
if (dontsendmessages && !respfd && !respstr) {
fprintf(stdout, "%s\n", message);
fflush(stdout);
return XYMONSEND_OK;
}
setup_transport(recipient);
dbgprintf("Recipient listed as '%s'\n", recipient);
if (strncmp(recipient, "http://", strlen("http://")) != 0) {
/* Standard communications, directly to Xymon daemon */
rcptip = strdup(recipient);
rcptport = xymondportnumber;
p = strchr(rcptip, ':');
if (p) {
*p = '\0'; p++; rcptport = atoi(p);
}
dbgprintf("Standard protocol on port %d\n", rcptport);
}
else {
char *posturl = NULL;
char *posthost = NULL;
if (xymonproxyhost == NULL) {
char *p;
/*
* No proxy. "recipient" is "http://host[:port]/url/for/post"
* Strip off "http://", and point "posturl" to the part after the hostname.
* If a portnumber is present, strip it off and update rcptport.
*/
rcptip = strdup(recipient+strlen("http://"));
rcptport = xymondportnumber;
p = strchr(rcptip, '/');
if (p) {
posturl = strdup(p);
*p = '\0';
}
p = strchr(rcptip, ':');
if (p) {
*p = '\0';
p++;
rcptport = atoi(p);
}
posthost = strdup(rcptip);
dbgprintf("HTTP protocol directly to host %s\n", posthost);
}
else {
char *p;
/*
* With proxy. The full "recipient" must be in the POST request.
*/
rcptip = strdup(xymonproxyhost);
rcptport = xymonproxyport;
posturl = strdup(recipient);
p = strchr(recipient + strlen("http://"), '/');
if (p) {
*p = '\0';
posthost = strdup(recipient + strlen("http://"));
*p = '/';
p = strchr(posthost, ':');
if (p) *p = '\0';
}
dbgprintf("HTTP protocol via proxy to host %s\n", posthost);
}
if ((posturl == NULL) || (posthost == NULL)) {
snprintf(errordetails + strlen(errordetails), (sizeof(errordetails) - strlen(errordetails)), "Unable to parse HTTP recipient");
if (posturl) xfree(posturl);
if (posthost) xfree(posthost);
if (rcptip) xfree(rcptip);
return XYMONSEND_EBADURL;
}
SBUF_MALLOC(httpmessage, strlen(message)+strlen(posthost)+1024);
msgptr = httpmessage;
snprintf(httpmessage, httpmessage_buflen,
"POST %s HTTP/1.0\nMIME-version: 1.0\nContent-Type: application/octet-stream\nContent-Length: %d\nHost: %s\n\n%s",
posturl, (int)strlen(message), posthost, message);
if (posturl) xfree(posturl);
if (posthost) xfree(posthost);
haveseenhttphdrs = 0;
dbgprintf("HTTP message is:\n%s\n", httpmessage);
}
if (inet_aton(rcptip, &addr) == 0) {
/* recipient is not an IP - do DNS lookup */
struct hostent *hent;
char hostip[IP_ADDR_STRLEN];
hent = gethostbyname(rcptip);
if (hent) {
memcpy(&addr, *(hent->h_addr_list), sizeof(struct in_addr));
strncpy(hostip, inet_ntoa(addr), sizeof(hostip));
if (inet_aton(hostip, &addr) == 0) {
result = XYMONSEND_EBADIP;
goto done;
}
}
else {
snprintf(errordetails+strlen(errordetails), (sizeof(errordetails) - strlen(errordetails)), "Cannot determine IP address of message recipient %s", rcptip);
result = XYMONSEND_EIPUNKNOWN;
goto done;
}
}
retry_connect:
dbgprintf("Will connect to address %s port %d\n", rcptip, rcptport);
memset(&saddr, 0, sizeof(saddr));
saddr.sin_family = AF_INET;
saddr.sin_addr.s_addr = addr.s_addr;
saddr.sin_port = htons(rcptport);
/* Get a non-blocking socket */
sockfd = socket(PF_INET, SOCK_STREAM, 0);
if (sockfd == -1) { result = XYMONSEND_ENOSOCKET; goto done; }
res = fcntl(sockfd, F_SETFL, O_NONBLOCK);
if (res != 0) { result = XYMONSEND_ECANNOTDONONBLOCK; goto done; }
res = connect(sockfd, (struct sockaddr *)&saddr, sizeof(saddr));
if ((res == -1) && (errno != EINPROGRESS)) {
snprintf(errordetails+strlen(errordetails), (sizeof(errordetails) - strlen(errordetails)), "connect to Xymon daemon@%s:%d failed (%s)", rcptip, rcptport, strerror(errno));
result = XYMONSEND_ECONNFAILED;
goto done;
}
rdone = ((respfd == NULL) && (respstr == NULL));
isconnected = wdone = 0;
while (!wdone || !rdone) {
FD_ZERO(&writefds);
FD_ZERO(&readfds);
if (!rdone) FD_SET(sockfd, &readfds);
if (!wdone) FD_SET(sockfd, &writefds);
tmo.tv_sec = timeout; tmo.tv_usec = 0;
res = select(sockfd+1, &readfds, &writefds, NULL, (timeout ? &tmo : NULL));
if (res == -1) {
snprintf(errordetails+strlen(errordetails), (sizeof(errordetails) - strlen(errordetails)), "Select failure while sending to Xymon daemon@%s:%d", rcptip, rcptport);
result = XYMONSEND_ESELFAILED;
goto done;
}
else if (res == 0) {
/* Timeout! */
shutdown(sockfd, SHUT_RDWR);
close(sockfd);
if (!isconnected && (connretries > 0)) {
dbgprintf("Timeout while talking to Xymon daemon@%s:%d - retrying\n", rcptip, rcptport);
connretries--;
sleep(1);
goto retry_connect; /* Yuck! */
}
result = XYMONSEND_ETIMEOUT;
goto done;
}
else {
if (!isconnected) {
/* Havent seen our connect() status yet - must be now */
int connres;
socklen_t connressize = sizeof(connres);
res = getsockopt(sockfd, SOL_SOCKET, SO_ERROR, &connres, &connressize);
dbgprintf("Connect status is %d\n", connres);
isconnected = (connres == 0);
if (!isconnected) {
snprintf(errordetails+strlen(errordetails), (sizeof(errordetails) - strlen(errordetails)), "Could not connect to Xymon daemon@%s:%d (%s)",
rcptip, rcptport, strerror(connres));
result = XYMONSEND_ECONNFAILED;
goto done;
}
}
if (!rdone && FD_ISSET(sockfd, &readfds)) {
char *outp;
int n;
n = recv(sockfd, recvbuf, sizeof(recvbuf)-1, 0);
if (n > 0) {
dbgprintf("Read %d bytes\n", n);
recvbuf[n] = '\0';
/*
* When running over a HTTP transport, we must strip
* off the HTTP headers we get back, so the response
* is consistent with what we get from the normal Xymon daemon
* transport.
* (Non-http transport sets "haveseenhttphdrs" to 1)
*/
if (!haveseenhttphdrs) {
outp = strstr(recvbuf, "\r\n\r\n");
if (outp) {
outp += 4;
n -= (outp - recvbuf);
haveseenhttphdrs = 1;
}
else n = 0;
}
else outp = recvbuf;
if (n > 0) {
if (respfd) {
fwrite(outp, n, 1, respfd);
}
else if (respstr) {
char *respend;
if (respstrsz == 0) {
respstrsz = (n+sizeof(recvbuf));
*respstr = (char *)malloc(respstrsz);
}
else if ((n+respstrlen) >= respstrsz) {
respstrsz += (n+sizeof(recvbuf));
*respstr = (char *)realloc(*respstr, respstrsz);
}
respend = (*respstr) + respstrlen;
memcpy(respend, outp, n);
*(respend + n) = '\0';
respstrlen += n;
}
if (!fullresponse) {
rdone = (strchr(outp, '\n') == NULL);
}
}
}
else rdone = 1;
if (rdone) shutdown(sockfd, SHUT_RD);
}
if (!wdone && FD_ISSET(sockfd, &writefds)) {
/* Send some data */
res = write(sockfd, msgptr, strlen(msgptr));
if (res == -1) {
snprintf(errordetails+strlen(errordetails), (sizeof(errordetails) - strlen(errordetails)), "Write error while sending message to Xymon daemon@%s:%d", rcptip, rcptport);
result = XYMONSEND_EWRITEERROR;
goto done;
}
else {
dbgprintf("Sent %d bytes\n", res);
msgptr += res;
wdone = (strlen(msgptr) == 0);
if (wdone) shutdown(sockfd, SHUT_WR);
}
}
}
}
done:
dbgprintf("Closing connection\n");
shutdown(sockfd, SHUT_RDWR);
if (sockfd > 0) close(sockfd);
xfree(rcptip);
if (httpmessage) xfree(httpmessage);
return result;
}
static int sendtomany(char *onercpt, char *morercpts, char *msg, int timeout, sendreturn_t *response)
{
int allservers = 1, first = 1, result = XYMONSEND_OK;
char *xymondlist, *rcpt;
/*
* Even though this is the "sendtomany" routine, we need to decide if the
* request should go to all servers, or just a single server. The default
* is to send to all servers - but commands that trigger a response can
* only go to a single server.
*
* "schedule" is special - when scheduling an action there is no response, but
* when it is the blank "schedule" command there will be a response. So a
* schedule action goes to all Xymon servers, the blank "schedule" goes to a single
* server.
*/
// errprintf("sendtomany: onercpt=%s\n", onercpt);
if (strcmp(onercpt, "0.0.0.0") != 0)
allservers = 0;
else if (strncmp(msg, "schedule", 8) == 0)
/* See if it's just a blank "schedule" command */
allservers = (strcmp(msg, "schedule") != 0);
else {
char *msgcmd;
int i;
/* See if this is a multi-recipient command */
i = strspn(msg, "abcdefghijklmnopqrstuvwxyz");
msgcmd = (char *)malloc(i+1);
strncpy(msgcmd, msg, i); *(msgcmd+i) = '\0';
// errprintf("sendtomany: msgcmd=%s\n", msgcmd);
for (i = 0; (multircptcmds[i] && strcmp(multircptcmds[i], msgcmd)); i++) ;
xfree(msgcmd);
allservers = (multircptcmds[i] != NULL);
}
// errprintf("sendtomany: allservers=%d\n", allservers);
if (allservers && !morercpts) {
snprintf(errordetails+strlen(errordetails), (sizeof(errordetails) - strlen(errordetails)), "No recipients listed! XYMSRV was %s, XYMSERVERS %s",
onercpt, textornull(morercpts));
return XYMONSEND_EBADIP;
}
if (strcmp(onercpt, "0.0.0.0") != 0)
xymondlist = strdup(onercpt);
else
xymondlist = strdup(morercpts);
rcpt = strtok(xymondlist, " \t");
while (rcpt) {
int oneres;
if (first) {
/* We grab the result from the first server */
char *respstr = NULL;
if (response) {
oneres = sendtoxymond(rcpt, msg,
response->respfd,
(response->respstr ? &respstr : NULL),
(response->respfd || response->respstr),
timeout);
}
else {
oneres = sendtoxymond(rcpt, msg, NULL, NULL, 0, timeout);
}
if (oneres == XYMONSEND_OK) {
if (respstr && response && response->respstr) {
addtobuffer(response->respstr, respstr);
xfree(respstr);
}
first = 0;
}
}
else {
/* Secondary servers do not yield a response */
oneres = sendtoxymond(rcpt, msg, NULL, NULL, 0, timeout);
}
/* Save any error results */
if (result == XYMONSEND_OK) result = oneres;
/*
* Handle more servers IF we're doing all servers, OR
* we are still at the first one (because the previous
* ones failed).
*/
if (allservers || first)
rcpt = strtok(NULL, " \t");
else
rcpt = NULL;
}
xfree(xymondlist);
return result;
}
sendreturn_t *newsendreturnbuf(int fullresponse, FILE *respfd)
{
sendreturn_t *result;
result = (sendreturn_t *)calloc(1, sizeof(sendreturn_t));
result->fullresponse = fullresponse;
result->respfd = respfd;
if (!respfd) {
/* No response file, so return it in a strbuf */
result->respstr = newstrbuffer(0);
}
result->haveseenhttphdrs = 1;
return result;
}
void freesendreturnbuf(sendreturn_t *s)
{
if (!s) return;
if (s->respstr) freestrbuffer(s->respstr);
xfree(s);
}
char *getsendreturnstr(sendreturn_t *s, int takeover)
{
char *result = NULL;
if (!s) return NULL;
if (!s->respstr) return NULL;
result = STRBUF(s->respstr);
if (takeover) {
/*
* We cannot leave respstr as NULL, because later calls
* to sendmessage() might re-use this sendreturn_t struct
* and expect to get the data back. So allocate a new
* responsebuffer for future use - if it isn't used, it
* will be freed by freesendreturnbuf().
*/
s->respstr = newstrbuffer(0);
}
return result;
}
int sendmessage_init_local(void)
{
backfeedqueue = setup_feedback_queue(CHAN_CLIENT);
if (backfeedqueue == -1) return -1;
max_backfeedsz = 1024*shbufsz(C_FEEDBACK_QUEUE)-1;
return max_backfeedsz;
}
void sendmessage_finish_local(void)
{
close_feedback_queue(backfeedqueue, CHAN_CLIENT);
}
sendresult_t sendmessage_local(char *msg)
{
int n, done = 0;
#if defined(__OpenBSD__) || defined(__dietlibc__)
unsigned long msglen;
#else
msglen_t msglen;
#endif
if (backfeedqueue == -1) {
return sendmessage(msg, NULL, XYMON_TIMEOUT, NULL);
}
/* Make sure we dont overflow the message buffer */
msglen = strlen(msg);
if (msglen > max_backfeedsz) {
errprintf("Truncating backfeed channel message from %d to %d\n", msglen, max_backfeedsz);
*(msg+max_backfeedsz) = '\0';
msglen = max_backfeedsz;
}
/* This will block if queue is full, but that is OK */
do {
n = msgsnd(backfeedqueue, msg, msglen+1, 0);
if ((n == 0) || ((n == -1) && (errno != EINTR))) done = 1;
} while (!done);
if (n == -1) {
errprintf("Sending via backfeed channel failed: %s\n", strerror(errno));
return XYMONSEND_ECONNFAILED;
}
return XYMONSEND_OK;
}
sendresult_t sendmessage(char *msg, char *recipient, int timeout, sendreturn_t *response)
{
static char *xymsrv = NULL;
int res = 0;
*errordetails = '\0';
if ((xymsrv == NULL) && xgetenv("XYMSRV")) xymsrv = strdup(xgetenv("XYMSRV"));
if (recipient == NULL) recipient = xymsrv;
if ((recipient == NULL) && xgetenv("XYMSERVERS")) {
recipient = "0.0.0.0";
} else if (recipient == NULL) {
errprintf("No recipient for message\n");
return XYMONSEND_EBADIP;
}
res = sendtomany(recipient, xgetenv("XYMSERVERS"), msg, timeout, response);
if (res != XYMONSEND_OK) {
char *statustext = "";
char *eoln;
switch (res) {
case XYMONSEND_OK : statustext = "OK"; break;
case XYMONSEND_EBADIP : statustext = "Bad IP address"; break;
case XYMONSEND_EIPUNKNOWN : statustext = "Cannot resolve hostname"; break;
case XYMONSEND_ENOSOCKET : statustext = "Cannot get a socket"; break;
case XYMONSEND_ECANNOTDONONBLOCK : statustext = "Non-blocking I/O failed"; break;
case XYMONSEND_ECONNFAILED : statustext = "Connection failed"; break;
case XYMONSEND_ESELFAILED : statustext = "select(2) failed"; break;
case XYMONSEND_ETIMEOUT : statustext = "timeout"; break;
case XYMONSEND_EWRITEERROR : statustext = "write error"; break;
case XYMONSEND_EREADERROR : statustext = "read error"; break;
case XYMONSEND_EBADURL : statustext = "Bad URL"; break;
default: statustext = "Unknown error"; break;
};
eoln = strchr(msg, '\n'); if (eoln) *eoln = '\0';
if (strcmp(recipient, "0.0.0.0") == 0) recipient = xgetenv("XYMSERVERS");
errprintf("Whoops ! Failed to send message (%s)\n", statustext);
errprintf("-> %s\n", errordetails);
errprintf("-> Recipient '%s', timeout %d\n", recipient, timeout);
errprintf("-> 1st line: '%s'\n", msg);
if (eoln) *eoln = '\n';
}
/* Give it a break */
if (sleepbetweenmsgs) usleep(sleepbetweenmsgs);
xymonmsgcount++;
return res;
}
/* Routines for handling combo message transmission */
static void combo_params(void)
{
static int issetup = 0;
if (issetup) return;
issetup = 1;
if (xgetenv("MAXMSGSPERCOMBO")) maxmsgspercombo = atoi(xgetenv("MAXMSGSPERCOMBO"));
if (maxmsgspercombo == 0) {
/* Force it to 100 */
dbgprintf("MAXMSGSPERCOMBO is 0, setting it to 100\n");
maxmsgspercombo = 100;
}
if (xgetenv("SLEEPBETWEENMSGS")) sleepbetweenmsgs = atoi(xgetenv("SLEEPBETWEENMSGS"));
comboofssz = 10*maxmsgspercombo;
comboofsstr = (char *)malloc(comboofssz+1);
combooffsets = (int *)malloc((maxmsgspercombo+1)*sizeof(int));
}
void combo_start(void)
{
int n;
combo_params();
memset(comboofsstr, ' ', comboofssz);
memcpy(comboofsstr, "extcombo", 8);
*(comboofsstr + comboofssz) = '\0';
memset(combooffsets, 0, maxmsgspercombo*sizeof(int));
combooffsets[0] = comboofssz;
if (xymonmsg == NULL) xymonmsg = newstrbuffer(0);
clearstrbuffer(xymonmsg);
addtobufferraw(xymonmsg, comboofsstr, comboofssz);
xymonmsgqueued = 0;
combo_is_local = 0;
}
void combo_start_local(void)
{
combo_start();
combo_is_local = 1;
}
void meta_start(void)
{
if (metamsg == NULL) metamsg = newstrbuffer(0);
clearstrbuffer(metamsg);
xymonmetaqueued = 0;
}
static void combo_flush(void)
{
int i;
char *outp;
if (!xymonmsgqueued) {
dbgprintf("Flush, but xymonmsg is empty\n");
return;
}
outp = strchr(STRBUF(xymonmsg), ' ');
for (i = 0; (i <= xymonmsgqueued); i++) {
outp += snprintf(outp, (STRBUFSZ(xymonmsg) - (outp - STRBUF(xymonmsg))), " %d", combooffsets[i]);
}
*outp = '\n';
if (debug) {
char *p1, *p2;
dbgprintf("Flushing combo message\n");
p1 = p2 = STRBUF(xymonmsg);
do {
p2++;
p1 = strstr(p2, "\nstatus ");
if (p1) {
p1++; /* Skip the newline */
p2 = strchr(p1, '\n');
if (p2) *p2='\0';
printf(" %s\n", p1);
if (p2) *p2='\n';
}
} while (p1 && p2);
}
if (combo_is_local) {
sendmessage_local(STRBUF(xymonmsg));
combo_start_local();
}
else {
sendmessage(STRBUF(xymonmsg), NULL, XYMON_TIMEOUT, NULL);
combo_start();
}
}
static void meta_flush(void)
{
if (!xymonmetaqueued) {
dbgprintf("Flush, but xymonmeta is empty\n");
return;
}
sendmessage(STRBUF(metamsg), NULL, XYMON_TIMEOUT, NULL);
meta_start(); /* Get ready for the next */
}
void combo_add(strbuffer_t *buf)
{
if (combo_is_local) {
/* Check if message fits into the backfeed message buffer */
if ( (STRBUFLEN(xymonmsg) + STRBUFLEN(buf)) >= max_backfeedsz) {
combo_flush();
}
}
else {
/* Check if there is room for the message + 2 newlines */
if (maxmsgspercombo && (xymonmsgqueued >= maxmsgspercombo)) {
combo_flush();
}
}
addtostrbuffer(xymonmsg, buf);
combooffsets[++xymonmsgqueued] = STRBUFLEN(xymonmsg);
}
static void meta_add(strbuffer_t *buf)
{
/* Check if there is room for the message + 2 newlines */
if (maxmsgspercombo && (xymonmetaqueued >= maxmsgspercombo)) {
/* Nope ... flush buffer */
meta_flush();
}
else {
/* Yep ... add delimiter before new status (but not before the first!) */
if (xymonmetaqueued) addtobuffer(metamsg, "\n\n");
}
addtostrbuffer(metamsg, buf);
xymonmetaqueued++;
}
void combo_end(void)
{
combo_flush();
combo_is_local = 0;
dbgprintf("%d status messages merged into %d transmissions\n", xymonstatuscount, xymonmsgcount);
}
void meta_end(void)
{
meta_flush();
}
void init_status(int color)
{
if (msgbuf == NULL) msgbuf = newstrbuffer(0);
clearstrbuffer(msgbuf);
msgcolor = color;
xymonstatuscount++;
}
void init_meta(char *metaname)
{
if (metabuf == NULL) metabuf = newstrbuffer(0);
clearstrbuffer(metabuf);
}
void addtostatus(char *p)
{
addtobuffer(msgbuf, p);
}
void addtostrstatus(strbuffer_t *p)
{
addtostrbuffer(msgbuf, p);
}
void addtometa(char *p)
{
addtobuffer(metabuf, p);
}
void finish_status(void)
{
if (debug) {
char *p = strchr(STRBUF(msgbuf), '\n');
if (p) *p = '\0';
dbgprintf("Adding to combo msg: %s\n", STRBUF(msgbuf));
if (p) *p = '\n';
}
combo_add(msgbuf);
}
void finish_meta(void)
{
meta_add(metabuf);
}
|