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
|
/*
* Copyright (c) 2002-2010 BalaBit IT Ltd, Budapest, Hungary
* Copyright (c) 1998-2010 Balázs Scheidler
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 as published
* by the Free Software Foundation, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* As an additional exemption you are allowed to compile & link against the
* OpenSSL libraries as published by the OpenSSL project. See the file
* COPYING for details.
*
*/
#include "syslog-format.h"
#include "logmsg.h"
#include "messages.h"
#include "timeutils.h"
#include "misc.h"
#include "cfg.h"
#include "str-format.h"
#include <regex.h>
#include <ctype.h>
#include <string.h>
/*
* Used in log_msg_parse_date(). Need to differentiate because Tru64's strptime
* works differently than the rest of the supported systems.
*/
#if defined(__digital__) && defined(__osf__)
#define STRPTIME_ISOFORMAT "%Y-%m-%dT%H:%M:%S"
#else
#define STRPTIME_ISOFORMAT "%Y-%m-%d T%H:%M:%S"
#endif
static const char aix_fwd_string[] = "Message forwarded from ";
static const char repeat_msg_string[] = "last message repeated";
static gboolean
log_msg_parse_pri(LogMessage *self, const guchar **data, gint *length, guint flags, guint16 default_pri)
{
int pri;
gboolean success = TRUE;
const guchar *src = *data;
gint left = *length;
if (left && src[0] == '<')
{
src++;
left--;
pri = 0;
while (left && *src != '>')
{
if (isdigit(*src))
{
pri = pri * 10 + ((*src) - '0');
}
else
{
return FALSE;
}
src++;
left--;
}
self->pri = pri;
if (left)
{
src++;
left--;
}
}
/* No priority info in the buffer? Just assign a default. */
else
{
self->pri = default_pri != 0xFFFF ? default_pri : (EVT_FAC_USER | EVT_PRI_NOTICE);
}
*data = src;
*length = left;
return success;
}
static gint
log_msg_parse_skip_chars(LogMessage *self, const guchar **data, gint *length, const gchar *chars, gint max_len)
{
const guchar *src = *data;
gint left = *length;
gint num_skipped = 0;
while (max_len && left && strchr(chars, *src))
{
src++;
left--;
num_skipped++;
if (max_len >= 0)
max_len--;
}
*data = src;
*length = left;
return num_skipped;
}
static gboolean
log_msg_parse_skip_space(LogMessage *self, const guchar **data, gint *length)
{
const guchar *src = *data;
gint left = *length;
if (left > 0 && *src == ' ')
{
src++;
left--;
}
else
{
return FALSE;
}
*data = src;
*length = left;
return TRUE;
}
static gint
log_msg_parse_skip_chars_until(LogMessage *self, const guchar **data, gint *length, const gchar *delims)
{
const guchar *src = *data;
gint left = *length;
gint num_skipped = 0;
while (left && strchr(delims, *src) == 0)
{
src++;
left--;
num_skipped++;
}
*data = src;
*length = left;
return num_skipped;
}
static void
log_msg_parse_column(LogMessage *self, NVHandle handle, const guchar **data, gint *length, gint max_length)
{
const guchar *src, *space;
gint left;
src = *data;
left = *length;
space = memchr(src, ' ', left);
if (space)
{
left -= space - src;
src = space;
}
else
{
src = src + left;
left = 0;
}
if (left)
{
if ((*length - left) > 1 || (*data)[0] != '-')
{
gint len = (*length - left) > max_length ? max_length : (*length - left);
log_msg_set_value(self, handle, (gchar *) *data, len);
}
}
*data = src;
*length = left;
}
static gboolean
log_msg_parse_date(LogMessage *self, const guchar **data, gint *length, guint parse_flags, glong assume_timezone)
{
const guchar *src = *data;
gint left = *length;
GTimeVal now;
struct tm tm;
gint unnormalized_hour;
cached_g_current_time(&now);
/* If the next chars look like a date, then read them as a date. */
if (left >= 19 && src[4] == '-' && src[7] == '-' && src[10] == 'T' && src[13] == ':' && src[16] == ':')
{
/* RFC3339 timestamp, expected format: YYYY-MM-DDTHH:MM:SS[.frac]<+/->ZZ:ZZ */
gint hours, mins;
self->timestamps[LM_TS_STAMP].tv_usec = 0;
/* NOTE: we initialize various unportable fields in tm using a
* localtime call, as the value of tm_gmtoff does matter but it does
* not exist on all platforms and 0 initializing it causes trouble on
* time-zone barriers */
cached_localtime(&now.tv_sec, &tm);
if (!scan_iso_timestamp((const gchar **) &src, &left, &tm))
{
goto error;
}
self->timestamps[LM_TS_STAMP].tv_usec = 0;
if (left > 0 && *src == '.')
{
gulong frac = 0;
gint div = 1;
/* process second fractions */
src++;
left--;
while (left > 0 && div < 10e5 && isdigit(*src))
{
frac = 10 * frac + (*src) - '0';
div = div * 10;
src++;
left--;
}
while (isdigit(*src))
{
src++;
left--;
}
self->timestamps[LM_TS_STAMP].tv_usec = frac * (1000000 / div);
}
if (left > 0 && *src == 'Z')
{
/* Z is special, it means UTC */
self->timestamps[LM_TS_STAMP].zone_offset = 0;
src++;
left--;
}
else if (left >= 5 && (*src == '+' || *src == '-') &&
isdigit(*(src+1)) && isdigit(*(src+2)) && *(src+3) == ':' && isdigit(*(src+4)) && isdigit(*(src+5)) && !isdigit(*(src+6)))
{
/* timezone offset */
gint sign = *src == '-' ? -1 : 1;
hours = (*(src+1) - '0') * 10 + *(src+2) - '0';
mins = (*(src+4) - '0') * 10 + *(src+5) - '0';
self->timestamps[LM_TS_STAMP].zone_offset = sign * (hours * 3600 + mins * 60);
src += 6;
left -= 6;
}
/* we convert it to UTC */
tm.tm_isdst = -1;
unnormalized_hour = tm.tm_hour;
self->timestamps[LM_TS_STAMP].tv_sec = cached_mktime(&tm);
}
else if ((parse_flags & LP_SYSLOG_PROTOCOL) == 0)
{
if (left >= 21 && src[3] == ' ' && src[6] == ' ' && src[11] == ' ' && src[14] == ':' && src[17] == ':' && (src[20] == ':' || src[20] == ' ') &&
(isdigit(src[7]) && isdigit(src[8]) && isdigit(src[9]) && isdigit(src[10])))
{
/* PIX timestamp, expected format: MMM DD YYYY HH:MM:SS: */
/* ASA timestamp, expected format: MMM DD YYYY HH:MM:SS */
cached_localtime(&now.tv_sec, &tm);
if (!scan_pix_timestamp((const gchar **) &src, &left, &tm))
goto error;
if (*src == ':')
{
src++;
left--;
}
tm.tm_isdst = -1;
/* NOTE: no timezone information in the message, assume it is local time */
unnormalized_hour = tm.tm_hour;
self->timestamps[LM_TS_STAMP].tv_sec = cached_mktime(&tm);
self->timestamps[LM_TS_STAMP].tv_usec = 0;
}
else if (left >= 21 && src[3] == ' ' && src[6] == ' ' && src[9] == ':' && src[12] == ':' && src[15] == ' ' &&
isdigit(src[16]) && isdigit(src[17]) && isdigit(src[18]) && isdigit(src[19]) && isspace(src[20]))
{
/* LinkSys timestamp, expected format: MMM DD HH:MM:SS YYYY */
cached_localtime(&now.tv_sec, &tm);
if (!scan_linksys_timestamp((const gchar **) &src, &left, &tm))
goto error;
tm.tm_isdst = -1;
/* NOTE: no timezone information in the message, assume it is local time */
unnormalized_hour = tm.tm_hour;
self->timestamps[LM_TS_STAMP].tv_sec = cached_mktime(&tm);
self->timestamps[LM_TS_STAMP].tv_usec = 0;
}
else if (left >= 15 && src[3] == ' ' && src[6] == ' ' && src[9] == ':' && src[12] == ':')
{
/* RFC 3164 timestamp, expected format: MMM DD HH:MM:SS ... */
struct tm nowtm;
glong usec = 0;
cached_localtime(&now.tv_sec, &nowtm);
tm = nowtm;
if (!scan_bsd_timestamp((const gchar **) &src, &left, &tm))
goto error;
if (left > 0 && src[0] == '.')
{
gulong frac = 0;
gint div = 1;
gint i = 1;
/* gee, funny Cisco extension, BSD timestamp with fraction of second support */
while (i < left && div < 10e5 && isdigit(src[i]))
{
frac = 10 * frac + (src[i]) - '0';
div = div * 10;
i++;
}
while (i < left && isdigit(src[i]))
i++;
usec = frac * (1000000 / div);
left -= i;
src += i;
}
/* detect if the message is coming from last year. If its
* month is at least one larger than the current month. This
* handles both clocks that are in the future, or in the
* past:
* in January we receive a message from December (past) => last year
* in January we receive a message from February (future) => same year
* in December we receive a message from January (future) => next year
*/
if (tm.tm_mon > nowtm.tm_mon + 1)
tm.tm_year--;
if (tm.tm_mon < nowtm.tm_mon - 1)
tm.tm_year++;
/* NOTE: no timezone information in the message, assume it is local time */
unnormalized_hour = tm.tm_hour;
self->timestamps[LM_TS_STAMP].tv_sec = cached_mktime(&tm);
self->timestamps[LM_TS_STAMP].tv_usec = usec;
}
else
{
goto error;
}
}
else
{
return FALSE;
}
/* NOTE: mktime() returns the time assuming that the timestamp we
* received was in local time. This is not true, as there's a
* zone_offset in the timestamp as well. We need to adjust this offset
* by adding the local timezone offset at the specific time to get UTC,
* which means that tv_sec becomes as if tm was in the 00:00 timezone.
* Also we have to take into account that at the zone barriers an hour
* might be skipped or played twice this is what the
* (tm.tm_hour - * unnormalized_hour) part fixes up. */
if (self->timestamps[LM_TS_STAMP].zone_offset == -1)
{
self->timestamps[LM_TS_STAMP].zone_offset = assume_timezone;
}
if (self->timestamps[LM_TS_STAMP].zone_offset == -1)
{
self->timestamps[LM_TS_STAMP].zone_offset = get_local_timezone_ofs(self->timestamps[LM_TS_STAMP].tv_sec);
}
self->timestamps[LM_TS_STAMP].tv_sec = self->timestamps[LM_TS_STAMP].tv_sec +
get_local_timezone_ofs(self->timestamps[LM_TS_STAMP].tv_sec) -
(tm.tm_hour - unnormalized_hour) * 3600 - self->timestamps[LM_TS_STAMP].zone_offset;
*data = src;
*length = left;
return TRUE;
error:
/* no recognizable timestamp, use current time */
self->timestamps[LM_TS_STAMP] = self->timestamps[LM_TS_RECVD];
return FALSE;
}
static gboolean
log_msg_parse_version(LogMessage *self, const guchar **data, gint *length)
{
const guchar *src = *data;
gint left = *length;
gint version = 0;
while (left && *src != ' ')
{
if (isdigit(*src))
{
version = version * 10 + ((*src) - '0');
}
else
{
return FALSE;
}
src++;
left--;
}
if (version != 1)
return FALSE;
*data = src;
*length = left;
return TRUE;
}
static void
log_msg_parse_legacy_program_name(LogMessage *self, const guchar **data, gint *length, guint flags)
{
/* the data pointer will not change */
const guchar *src, *prog_start;
gint left;
src = *data;
left = *length;
prog_start = src;
while (left && *src != ' ' && *src != '[' && *src != ':')
{
src++;
left--;
}
log_msg_set_value(self, LM_V_PROGRAM, (gchar *) prog_start, src - prog_start);
if (left > 0 && *src == '[')
{
const guchar *pid_start = src + 1;
while (left && *src != ' ' && *src != ']' && *src != ':')
{
src++;
left--;
}
if (left)
{
log_msg_set_value(self, LM_V_PID, (gchar *) pid_start, src - pid_start);
}
if (left > 0 && *src == ']')
{
src++;
left--;
}
}
if (left > 0 && *src == ':')
{
src++;
left--;
}
if (left > 0 && *src == ' ')
{
src++;
left--;
}
if ((flags & LP_STORE_LEGACY_MSGHDR))
{
log_msg_set_value(self, LM_V_LEGACY_MSGHDR, (gchar *) *data, *length - left);
self->flags |= LF_LEGACY_MSGHDR;
}
*data = src;
*length = left;
}
static void
log_msg_parse_hostname(LogMessage *self, const guchar **data, gint *length,
const guchar **hostname_start, int *hostname_len,
guint flags, regex_t *bad_hostname)
{
/* FIXME: support nil value support with new protocol*/
const guchar *src, *oldsrc;
gint left, oldleft;
gchar hostname_buf[256];
gint dst = 0;
static guint8 invalid_chars[32];
src = *data;
left = *length;
if ((invalid_chars[0] & 0x1) == 0)
{
gint i;
/* we use a bit string to represent valid/invalid characters when check_hostname is enabled */
/* not yet initialized */
for (i = 0; i < 256; i++)
{
if (!((i >= 'A' && i <= 'Z') ||
(i >= 'a' && i <= 'z') ||
(i >= '0' && i <= '9') ||
i == '-' || i == '_' ||
i == '.' || i == ':' ||
i == '@' || i == '/'))
{
invalid_chars[i >> 8] |= 1 << (i % 8);
}
}
invalid_chars[0] |= 0x1;
}
/* If we haven't already found the original hostname,
look for it now. */
oldsrc = src;
oldleft = left;
while (left && *src != ' ' && *src != ':' && *src != '[' && dst < sizeof(hostname_buf) - 1)
{
if (G_UNLIKELY((flags & LP_CHECK_HOSTNAME) && (invalid_chars[((guint) *src) >> 8] & (1 << (((guint) *src) % 8)))))
{
break;
}
hostname_buf[dst++] = *src;
src++;
left--;
}
hostname_buf[dst] = 0;
if (left && *src == ' ' &&
(!bad_hostname || regexec(bad_hostname, hostname_buf, 0, NULL, 0)))
{
/* This was a hostname. It came from a
syslog-ng, since syslogd doesn't send
hostnames. It's even better then the one
we got from the AIX fwd message, if we
did. */
*hostname_start = oldsrc;
*hostname_len = oldleft - left;
}
else
{
*hostname_start = NULL;
*hostname_len = 0;
src = oldsrc;
left = oldleft;
}
if (*hostname_len > 255)
*hostname_len = 255;
*data = src;
*length = left;
}
static inline void
sd_step_and_store(LogMessage *self, const guchar **data, gint *left)
{
(*data)++;
(*left)--;
}
/**
* log_msg_parse:
* @self: LogMessage instance to store parsed information into
* @data: message
* @length: length of the message pointed to by @data
* @flags: value affecting how the message is parsed (bits from LP_*)
*
* Parse an http://www.syslog.cc/ietf/drafts/draft-ietf-syslog-protocol-23.txt formatted log
* message for structured data elements and store the parsed information
* in @self.values and dup the SD string. Parsing is affected by the bits set @flags argument.
**/
static gboolean
log_msg_parse_sd(LogMessage *self, const guchar **data, gint *length, guint flags)
{
/*
* STRUCTURED-DATA = NILVALUE / 1*SD-ELEMENT
* SD-ELEMENT = "[" SD-ID *(SP SD-PARAM) "]"
* SD-PARAM = PARAM-NAME "=" %d34 PARAM-VALUE %d34
* SD-ID = SD-NAME
* PARAM-NAME = SD-NAME
* PARAM-VALUE = UTF-8-STRING ; characters '"', '\' and
* ; ']' MUST be escaped.
* SD-NAME = 1*32PRINTUSASCII ; except '=', SP, ']', %d34 (")
*
* Example Structured Data string:
*
* [exampleSDID@0 iut="3" eventSource="Application" eventID="1011"][examplePriority@0 class="high"]
*
*/
gboolean ret = FALSE;
const guchar *src = *data;
/* ASCII string */
gchar sd_id_name[33];
gsize sd_id_len;
gchar sd_param_name[33];
/* UTF-8 string */
gchar sd_param_value[256];
gsize sd_param_value_len;
gchar sd_value_name[66];
NVHandle handle;
guint open_sd = 0;
gint left = *length, pos;
if (left && src[0] == '-')
{
/* Nothing to do here */
src++;
left--;
}
else if (left && src[0] == '[')
{
sd_step_and_store(self, &src, &left);
open_sd++;
do
{
if (!isascii(*src) || *src == '=' || *src == ' ' || *src == ']' || *src == '"')
goto error;
/* read sd_id */
pos = 0;
while (left && *src != ' ' && *src != ']')
{
/* the sd_id_name is max 32, the other chars are only stored in the self->sd_str*/
if (pos < sizeof(sd_id_name) - 1)
{
if (isascii(*src) && *src != '=' && *src != ' ' && *src != ']' && *src != '"')
{
sd_id_name[pos] = *src;
pos++;
}
else
{
goto error;
}
}
else
{
goto error;
}
sd_step_and_store(self, &src, &left);
}
if (pos == 0)
goto error;
sd_id_name[pos] = 0;
sd_id_len = pos;
strcpy(sd_value_name, logmsg_sd_prefix);
/* this strcat is safe, as sd_id_name is at most 32 chars */
strncpy(sd_value_name + logmsg_sd_prefix_len, sd_id_name, sizeof(sd_value_name) - logmsg_sd_prefix_len);
if (*src == ']')
{
/* Standalone sdata */
handle = log_msg_get_value_handle(sd_value_name);
log_msg_set_value(self, handle, "", 0);
}
else
{
sd_value_name[logmsg_sd_prefix_len + pos] = '.';
}
/* read sd-element */
while (left && *src != ']')
{
if (left && *src == ' ') /* skip the ' ' before the parameter name */
sd_step_and_store(self, &src, &left);
else
goto error;
if (!isascii(*src) || *src == '=' || *src == ' ' || *src == ']' || *src == '"')
goto error;
/* read sd-param */
pos = 0;
while (left && *src != '=')
{
if (pos < sizeof(sd_param_name) - 1)
{
if (isascii(*src) && *src != '=' && *src != ' ' && *src != ']' && *src != '"')
{
sd_param_name[pos] = *src;
pos++;
}
else
goto error;
}
else
{
goto error;
}
sd_step_and_store(self, &src, &left);
}
sd_param_name[pos] = 0;
strncpy(&sd_value_name[logmsg_sd_prefix_len + 1 + sd_id_len], sd_param_name, sizeof(sd_value_name) - logmsg_sd_prefix_len - 1 - sd_id_len);
if (left && *src == '=')
sd_step_and_store(self, &src, &left);
else
goto error;
/* read sd-param-value */
if (left && *src == '"')
{
gboolean quote = FALSE;
/* opening quote */
sd_step_and_store(self, &src, &left);
pos = 0;
while (left && (*src != '"' || quote))
{
if (!quote && *src == '\\')
{
quote = TRUE;
}
else
{
if (quote && *src != '"' && *src != ']' && *src != '\\' && pos < sizeof(sd_param_value) - 1)
{
sd_param_value[pos] = '\\';
pos++;
}
else if (!quote && *src == ']')
{
goto error;
}
if (pos < sizeof(sd_param_value) - 1)
{
sd_param_value[pos] = *src;
pos++;
}
quote = FALSE;
}
sd_step_and_store(self, &src, &left);
}
sd_param_value[pos] = 0;
sd_param_value_len = pos;
if (left && *src == '"')/* closing quote */
sd_step_and_store(self, &src, &left);
else
goto error;
}
else
{
goto error;
}
handle = log_msg_get_value_handle(sd_value_name);
log_msg_set_value(self, handle, sd_param_value, sd_param_value_len);
}
if (left && *src == ']')
{
sd_step_and_store(self, &src, &left);
open_sd--;
}
else
{
goto error;
}
/* if any other sd then continue*/
if (left && *src == '[')
{
/* new structured data begins, thus continue iteration */
sd_step_and_store(self, &src, &left);
open_sd++;
}
}
while (left && open_sd != 0);
}
ret = TRUE;
error:
/* FIXME: what happens if an error occurs? there's no way to return a
* failure from here, but nevertheless we should do something sane, e.g.
* don't parse the SD string, but skip to the end so that the $MSG
* contents are correctly parsed. */
*data = src;
*length = left;
return ret;
}
/**
* log_msg_parse_legacy:
* @self: LogMessage instance to store parsed information into
* @data: message
* @length: length of the message pointed to by @data
* @flags: value affecting how the message is parsed (bits from LP_*)
*
* Parse an RFC3164 formatted log message and store the parsed information
* in @self. Parsing is affected by the bits set @flags argument.
**/
static gboolean
log_msg_parse_legacy(MsgFormatOptions *parse_options,
const guchar *data, gint length,
LogMessage *self)
{
const guchar *src;
gint left;
GTimeVal now;
src = (const guchar *) data;
left = length;
if (!log_msg_parse_pri(self, &src, &left, parse_options->flags, parse_options->default_pri))
{
return FALSE;
}
log_msg_parse_skip_chars(self, &src, &left, " ", -1);
cached_g_current_time(&now);
if (log_msg_parse_date(self, &src, &left, parse_options->flags & ~LP_SYSLOG_PROTOCOL, time_zone_info_get_offset(parse_options->recv_time_zone_info, now.tv_sec)))
{
/* Expected format: hostname program[pid]: */
/* Possibly: Message forwarded from hostname: ... */
const guchar *hostname_start = NULL;
int hostname_len = 0;
log_msg_parse_skip_chars(self, &src, &left, " ", -1);
/* Detect funny AIX syslogd forwarded message. */
if (G_UNLIKELY(left >= (sizeof(aix_fwd_string) - 1) &&
!memcmp(src, aix_fwd_string, sizeof(aix_fwd_string) - 1)))
{
src += sizeof(aix_fwd_string) - 1;
left -= sizeof(aix_fwd_string) - 1;
hostname_start = src;
hostname_len = log_msg_parse_skip_chars_until(self, &src, &left, ":");
log_msg_parse_skip_chars(self, &src, &left, " :", -1);
}
/* Now, try to tell if it's a "last message repeated" line */
if (G_UNLIKELY(left >= sizeof(repeat_msg_string) &&
!memcmp(src, repeat_msg_string, sizeof(repeat_msg_string) - 1)))
{
; /* It is. Do nothing since there's no hostname or program name coming. */
}
else
{
if (!hostname_start && (parse_options->flags & LP_EXPECT_HOSTNAME))
{
/* Don't parse a hostname if it is local */
/* It's a regular ol' message. */
log_msg_parse_hostname(self, &src, &left, &hostname_start, &hostname_len, parse_options->flags, parse_options->bad_hostname);
/* Skip whitespace. */
log_msg_parse_skip_chars(self, &src, &left, " ", -1);
}
/* Try to extract a program name */
log_msg_parse_legacy_program_name(self, &src, &left, parse_options->flags);
}
/* If we did manage to find a hostname, store it. */
if (hostname_start)
{
log_msg_set_value(self, LM_V_HOST, (gchar *) hostname_start, hostname_len);
}
}
else
{
/* no timestamp, format is expected to be "program[pid] message" */
/* Different format */
/* A kernel message? Use 'kernel' as the program name. */
if ((self->flags & LF_INTERNAL) == 0 && ((self->pri & LOG_FACMASK) == LOG_KERN))
{
log_msg_set_value(self, LM_V_PROGRAM, "kernel", 6);
}
/* No, not a kernel message. */
else
{
/* Capture the program name */
log_msg_parse_legacy_program_name(self, &src, &left, parse_options->flags);
}
self->timestamps[LM_TS_STAMP] = self->timestamps[LM_TS_RECVD];
}
log_msg_set_value(self, LM_V_MESSAGE, (gchar *) src, left);
if ((parse_options->flags & LP_VALIDATE_UTF8) && g_utf8_validate((gchar *) src, left, NULL))
self->flags |= LF_UTF8;
return TRUE;
}
/**
* log_msg_parse_syslog_proto:
*
* Parse a message according to the latest syslog-protocol drafts.
**/
static gboolean
log_msg_parse_syslog_proto(MsgFormatOptions *parse_options, const guchar *data, gint length, LogMessage *self)
{
/**
* SYSLOG-MSG = HEADER SP STRUCTURED-DATA [SP MSG]
* HEADER = PRI VERSION SP TIMESTAMP SP HOSTNAME
* SP APP-NAME SP PROCID SP MSGID
* SP = ' ' (space)
*
* <165>1 2003-10-11T22:14:15.003Z mymachine.example.com evntslog - ID47 [exampleSDID@0 iut="3" eventSource="Application" eventID="1011"] BOMAn application
* event log entry...
**/
const guchar *src;
gint left;
const guchar *hostname_start = NULL;
gint hostname_len = 0;
src = (guchar *) data;
left = length;
if (!log_msg_parse_pri(self, &src, &left, parse_options->flags, parse_options->default_pri) ||
!log_msg_parse_version(self, &src, &left))
{
return log_msg_parse_legacy(parse_options, data, length, self);
}
if (!log_msg_parse_skip_space(self, &src, &left))
return FALSE;
/* ISO time format */
if (!log_msg_parse_date(self, &src, &left, parse_options->flags, time_zone_info_get_offset(parse_options->recv_time_zone_info, time(NULL))))
return FALSE;
if (!log_msg_parse_skip_space(self, &src, &left))
return FALSE;
/* hostname 255 ascii */
log_msg_parse_hostname(self, &src, &left, &hostname_start, &hostname_len, parse_options->flags, NULL);
if (!log_msg_parse_skip_space(self, &src, &left))
return FALSE;
/* If we did manage to find a hostname, store it. */
if (hostname_start && hostname_len == 1 && *hostname_start == '-')
;
else if (hostname_start)
{
log_msg_set_value(self, LM_V_HOST, (gchar *) hostname_start, hostname_len);
}
/* application name 48 ascii*/
log_msg_parse_column(self, LM_V_PROGRAM, &src, &left, 48);
if (!log_msg_parse_skip_space(self, &src, &left))
return FALSE;
/* process id 128 ascii */
log_msg_parse_column(self, LM_V_PID, &src, &left, 128);
if (!log_msg_parse_skip_space(self, &src, &left))
return FALSE;
/* message id 32 ascii */
log_msg_parse_column(self, LM_V_MSGID, &src, &left, 32);
if (!log_msg_parse_skip_space(self, &src, &left))
return FALSE;
/* structured data part */
if (!log_msg_parse_sd(self, &src, &left, parse_options->flags))
return FALSE;
/* checking if there are remaining data in log message */
if (left == 0)
{
/* no message, this is valid */
return TRUE;
}
/* optional part of the log message [SP MSG] */
if (!log_msg_parse_skip_space(self, &src, &left))
{
return FALSE;
}
if (left >= 3 && memcmp(src, "\xEF\xBB\xBF", 3) == 0)
{
/* we have a BOM, this is UTF8 */
self->flags |= LF_UTF8;
src += 3;
left -= 3;
}
else if ((parse_options->flags & LP_VALIDATE_UTF8) && g_utf8_validate((gchar *) src, left, NULL))
{
self->flags |= LF_UTF8;
}
log_msg_set_value(self, LM_V_MESSAGE, (gchar *) src, left);
return TRUE;
}
void
syslog_format_handler(MsgFormatOptions *parse_options,
const guchar *data, gsize length,
LogMessage *self)
{
gboolean success;
gchar *p;
while (length > 0 && (data[length - 1] == '\n' || data[length - 1] == '\0'))
length--;
if (parse_options->flags & LP_NOPARSE)
{
log_msg_set_value(self, LM_V_MESSAGE, (gchar *) data, length);
self->pri = parse_options->default_pri;
return;
}
if (parse_options->flags & LP_ASSUME_UTF8)
self->flags |= LF_UTF8;
if (parse_options->flags & LP_LOCAL)
self->flags |= LF_LOCAL;
self->initial_parse = TRUE;
if (parse_options->flags & LP_SYSLOG_PROTOCOL)
success = log_msg_parse_syslog_proto(parse_options, data, length, self);
else
success = log_msg_parse_legacy(parse_options, data, length, self);
self->initial_parse = FALSE;
if (G_UNLIKELY(!success))
{
gchar buf[2048];
self->timestamps[LM_TS_STAMP] = self->timestamps[LM_TS_RECVD];
if ((self->flags & LF_STATE_OWN_PAYLOAD) && self->payload)
nv_table_unref(self->payload);
self->flags |= LF_STATE_OWN_PAYLOAD;
self->payload = nv_table_new(LM_V_MAX, 16, MAX(length * 2, 256));
log_msg_set_value(self, LM_V_HOST, "", 0);
g_snprintf(buf, sizeof(buf), "Error processing log message: %.*s", (gint) length, data);
log_msg_set_value(self, LM_V_MESSAGE, buf, -1);
log_msg_set_value(self, LM_V_PROGRAM, "syslog-ng", 9);
g_snprintf(buf, sizeof(buf), "%d", (int) getpid());
log_msg_set_value(self, LM_V_PID, buf, -1);
if (self->sdata)
{
g_free(self->sdata);
self->alloc_sdata = self->num_sdata = 0;
self->sdata = NULL;
}
self->pri = LOG_SYSLOG | LOG_ERR;
return;
}
if (G_UNLIKELY(parse_options->flags & LP_NO_MULTI_LINE))
{
gssize msglen;
gchar *msg;
p = msg = (gchar *) log_msg_get_value(self, LM_V_MESSAGE, &msglen);
while ((p = find_cr_or_lf(p, msg + msglen - p)))
{
*p = ' ';
p++;
}
}
}
|