Blame SOURCES/aide-0.15-syslog-format.patch

31807d
diff -up ./doc/aide.conf.5.in.syslog_format ./doc/aide.conf.5.in
31807d
--- ./doc/aide.conf.5.in.syslog_format	2016-07-25 22:58:12.000000000 +0200
31807d
+++ ./doc/aide.conf.5.in	2018-09-27 19:09:09.697371212 +0200
31807d
@@ -57,6 +57,25 @@ inclusive. This parameter can only be gi
31807d
 occurrence is used. If \-\-verbose or \-V is used then the value from that
31807d
 is used. The default is 5. If verbosity is 20 then additional report
31807d
 output is written when doing \-\-check, \-\-update or \-\-compare.
31807d
+.IP "syslog_format"
31807d
+Valid values are yes,true,no and false. This option enables new syslog format
31807d
+which is suitable for logging. Every change is logged as one simple line. This option
31807d
+changes verbose level to 0 and prints everything that was changed. It is suggested 
31807d
+to use this option with "report_url=syslog:...". Default value is "false/no".
31807d
+Maximum size of message is 1KB which is limitation of syslog call. If message is 
31807d
+greater than limit, message will be truncated.
31807d
+Option summarize_changes has no impact for this format.
31807d
+.nf
31807d
+.eo
31807d
+
31807d
+Output always starts with:
31807d
+"AIDE found differences between database and filesystem!!"
31807d
+And it is followed by summary:
31807d
+summary;total_number_of_files=1000;added_files=0;removed_files=0;changed_files=1
31807d
+And finally there are logs about changes:
31807d
+dir=/usr/sbin;Mtime_old=0000-00-00 00:00:00;Mtime_new=0000-00-00 00:00:00;...
31807d
+.ec
31807d
+.fi
31807d
 .IP "report_url"
31807d
 The url that the output is written to. There can be multiple instances
31807d
 of this parameter. Output is written to all of them. The default is
31807d
diff -up ./include/db_config.h.syslog_format ./include/db_config.h
31807d
--- ./include/db_config.h.syslog_format	2016-07-25 22:56:55.000000000 +0200
31807d
+++ ./include/db_config.h	2018-09-27 19:09:09.697371212 +0200
31807d
@@ -311,6 +311,7 @@ typedef struct db_config {
31807d
   FILE* db_out;
31807d
   
31807d
   int config_check;
31807d
+  int syslog_format;
31807d
 
31807d
   struct md_container *mdc_in;
31807d
   struct md_container *mdc_out;
31807d
diff -up ./src/aide.c.syslog_format ./src/aide.c
31807d
--- ./src/aide.c.syslog_format	2018-09-27 19:09:09.695371197 +0200
31807d
+++ ./src/aide.c	2018-09-27 19:09:09.698371220 +0200
31807d
@@ -283,6 +283,7 @@ static void setdefaults_before_config()
31807d
   }
31807d
   
31807d
   /* Setting some defaults */
31807d
+  conf->syslog_format=0;
31807d
   conf->report_db=0;  
31807d
   conf->tree=NULL;
31807d
   conf->config_check=0;
31807d
@@ -495,6 +496,10 @@ static void setdefaults_after_config()
31807d
   if(conf->verbose_level==-1){
31807d
     conf->verbose_level=5;
31807d
   }
31807d
+  if(conf->syslog_format==1){
31807d
+    conf->verbose_level=0;
31807d
+  }
31807d
+
31807d
 }
31807d
 
31807d
 
31807d
diff -up ./src/compare_db.c.syslog_format ./src/compare_db.c
31807d
--- ./src/compare_db.c.syslog_format	2016-07-25 22:56:55.000000000 +0200
31807d
+++ ./src/compare_db.c	2018-09-27 19:09:09.698371220 +0200
31807d
@@ -110,7 +110,7 @@ const DB_ATTR_TYPE details_attributes[]
31807d
 #endif
31807d
 };
31807d
 
31807d
-const char* details_string[] = { _("File type") , _("Lname"), _("Size"), _("Size (>)"), _("Bcount"), _("Perm"), _("Uid"), _("Gid"), _("Atime"), _("Mtime"), _("Ctime"), _("Inode"), _("Linkcount"), _("MD5"), _("SHA1"), _("RMD160"), _("TIGER"), _("SHA256"), _("SHA512")
31807d
+const char* details_string[] = { _("File type") , _("Lname"), _("Size"), _("Size"), _("Bcount"), _("Perm"), _("Uid"), _("Gid"), _("Atime"), _("Mtime"), _("Ctime"), _("Inode"), _("Linkcount"), _("MD5"), _("SHA1"), _("RMD160"), _("TIGER"), _("SHA256"), _("SHA512")
31807d
 #ifdef WITH_MHASH
31807d
     , _("CRC32"), _("HAVAL"), _("GOST"), _("CRC32B"), _("WHIRLPOOL")
31807d
 #endif
31807d
@@ -269,12 +269,19 @@ static int xattrs2array(xattrs_type* xat
31807d
             if ((len ==  xattrs->ents[num - 1].vsz) || ((len == (xattrs->ents[num - 1].vsz - 1)) && !val[len])) {
31807d
                 length = 8 + width + strlen(xattrs->ents[num - 1].key) + strlen(val);
31807d
                 (*values)[num]=malloc(length *sizeof(char));
31807d
-                snprintf((*values)[num], length , "[%.*zd] %s = %s", width, num, xattrs->ents[num - 1].key, val);
31807d
+
31807d
+                char * fmt = "[%.*zd] %s = %s";
31807d
+                if (conf->syslog_format) fmt = "[%.*zd]%s=%s"; // its smaller so it has to be enough space allocated.
31807d
+                snprintf((*values)[num], length , fmt, width, num, xattrs->ents[num - 1].key, val);
31807d
+
31807d
             } else {
31807d
                 val = encode_base64(xattrs->ents[num - 1].val, xattrs->ents[num - 1].vsz);
31807d
                 length = 10 + width + strlen(xattrs->ents[num - 1].key) + strlen(val);
31807d
                 (*values)[num]=malloc( length  *sizeof(char));
31807d
-                snprintf((*values)[num], length , "[%.*zd] %s <=> %s", width, num, xattrs->ents[num - 1].key, val);
31807d
+
31807d
+                char * fmt = "[%.*zd] %s <=> %s";
31807d
+                if (conf->syslog_format) fmt = "[%.*zd]%s<=>%s"; // its smaller so it has to be enough space allocated.
31807d
+                snprintf((*values)[num], length , fmt, width, num, xattrs->ents[num - 1].key, val);
31807d
                 free(val);
31807d
             }
31807d
         }
31807d
@@ -302,6 +309,26 @@ static int acl2array(acl_type* acl, char
31807d
         }
31807d
     if (acl->acl_a || acl->acl_d) {
31807d
         int j, k, i;
31807d
+        if (conf->syslog_format) {
31807d
+            *values = malloc(2 * sizeof(char*));
31807d
+
31807d
+            char *A, *D = "<NONE>";
31807d
+
31807d
+            if (acl->acl_a) { A = acl->acl_a; } 
31807d
+            if (acl->acl_d) { D = acl->acl_d; } 
31807d
+
31807d
+            (*values)[0] = (char*) malloc(strlen(A) + 3); // "A:" and \0
31807d
+            snprintf((*values)[0], strlen(A) + 3, "A:%s", A);
31807d
+
31807d
+            (*values)[1] = (char*) malloc(strlen(D) + 3); // "D:" and \0
31807d
+            snprintf((*values)[1], strlen(D) + 3, "D:%s", D);
31807d
+
31807d
+            i = 0; while ( (*values)[0][i] ) { if ( (*values)[0][i]=='\n') { (*values)[0][i] = ' '; } i++; }
31807d
+            i = 0; while ( (*values)[1][i] ) { if ( (*values)[1][i]=='\n') { (*values)[1][i] = ' '; } i++; }
31807d
+
31807d
+            return 2;
31807d
+        }
31807d
+
31807d
         if (acl->acl_a) { i = 0; while (acl->acl_a[i]) { if (acl->acl_a[i++]=='\n') { n++; } } }
31807d
         if (acl->acl_d) { i = 0; while (acl->acl_d[i]) { if (acl->acl_d[i++]=='\n') { n++; } } }
31807d
         *values = malloc(n * sizeof(char*));
31807d
@@ -338,25 +365,25 @@ static char* e2fsattrs2string(unsigned l
31807d
 
31807d
 static char* get_file_type_string(mode_t mode) {
31807d
     switch (mode & S_IFMT) {
31807d
-        case S_IFREG: return _("File");
31807d
-        case S_IFDIR: return _("Directory");
31807d
+        case S_IFREG: return conf->syslog_format ? "file" : _("File");
31807d
+        case S_IFDIR: return conf->syslog_format ? "dir" : _("Directory");
31807d
 #ifdef S_IFIFO
31807d
-        case S_IFIFO: return _("FIFO");
31807d
+        case S_IFIFO: return conf->syslog_format ? "fifo" : _("FIFO");
31807d
 #endif
31807d
-        case S_IFLNK: return _("Link");
31807d
-        case S_IFBLK: return _("Block device");
31807d
-        case S_IFCHR: return _("Character device");
31807d
+        case S_IFLNK: return conf->syslog_format ? "link" : _("Link");
31807d
+        case S_IFBLK: return conf->syslog_format ? "blockd" : _("Block device");
31807d
+        case S_IFCHR: return conf->syslog_format ? "chard" : _("Character device");
31807d
 #ifdef S_IFSOCK
31807d
-        case S_IFSOCK: return _("Socket");
31807d
+        case S_IFSOCK: return conf->syslog_format ? "socket" : _("Socket");
31807d
 #endif
31807d
 #ifdef S_IFDOOR
31807d
-        case S_IFDOOR: return _("Door");
31807d
+        case S_IFDOOR: return conf->syslog_format ? "door" : _("Door");
31807d
 #endif
31807d
 #ifdef S_IFPORT
31807d
-        case S_IFPORT: return _("Port");
31807d
+        case S_IFPORT: return conf->syslog_format ? "port" : _("Port");
31807d
 #endif
31807d
         case 0: return NULL;
31807d
-        default: return _("Unknown file type");
31807d
+        default: return conf->syslog_format ? "unknown" : _("Unknown file type");
31807d
     }
31807d
 }
31807d
 
31807d
@@ -554,6 +581,51 @@ static void print_dbline_attributes(db_l
31807d
     }
31807d
 }
31807d
 
31807d
+
31807d
+static void print_dbline_attributes_syslog(db_line* oline, db_line* nline, DB_ATTR_TYPE
31807d
+        changed_attrs, DB_ATTR_TYPE force_attrs) {
31807d
+    char **ovalue, **nvalue;
31807d
+    int onumber, nnumber, i, j;
31807d
+    int length = sizeof(details_attributes)/sizeof(DB_ATTR_TYPE);
31807d
+    DB_ATTR_TYPE attrs;
31807d
+    char *file_type = get_file_type_string((nline==NULL?oline:nline)->perm);
31807d
+    if (file_type) {
31807d
+        error(0,"%s=", file_type);
31807d
+    }
31807d
+    error(0,"%s", (nline==NULL?oline:nline)->filename);
31807d
+    attrs=force_attrs|(~(ignored_changed_attrs)&changed_attrs);
31807d
+    for (j=0; j < length; ++j) {
31807d
+        if (details_attributes[j]&attrs) {
31807d
+            onumber=get_attribute_values(details_attributes[j], oline, &ovalue);
31807d
+            nnumber=get_attribute_values(details_attributes[j], nline, &nvalue);
31807d
+
31807d
+            if (details_attributes[j] == DB_ACL || details_attributes[j] == DB_XATTRS) {
31807d
+
31807d
+                error(0, ";%s_old=|", details_string[j]);
31807d
+
31807d
+                for (i = 0 ; i < onumber ; i++) {
31807d
+                    error(0, "%s|", ovalue[i]);
31807d
+                }
31807d
+
31807d
+                error(0, ";%s_new=|", details_string[j]);
31807d
+
31807d
+                for (i = 0 ; i < nnumber ; i++) {
31807d
+                    error(0, "%s|", nvalue[i]);
31807d
+                }
31807d
+
31807d
+            } else {
31807d
+
31807d
+                error(0, ";%s_old=%s;%s_new=%s", details_string[j], *ovalue, details_string[j], *nvalue);
31807d
+
31807d
+            }
31807d
+
31807d
+            for(i=0; i < onumber; ++i) { free(ovalue[i]); ovalue[i]=NULL; } free(ovalue); ovalue=NULL;
31807d
+            for(i=0; i < nnumber; ++i) { free(nvalue[i]); nvalue[i]=NULL; } free(nvalue); nvalue=NULL;
31807d
+        }
31807d
+    }
31807d
+    error(0, "\n");
31807d
+}
31807d
+
31807d
 static void print_attributes_added_node(db_line* line) {
31807d
     print_dbline_attributes(NULL, line, 0, line->attr);
31807d
 }
31807d
@@ -562,6 +634,26 @@ static void print_attributes_removed_nod
31807d
     print_dbline_attributes(line, NULL, 0, line->attr);
31807d
 }
31807d
 
31807d
+static void print_attributes_added_node_syslog(db_line* line) {
31807d
+
31807d
+    char *file_type = get_file_type_string(line->perm);
31807d
+    if (file_type) {
31807d
+        error(0,"%s=", file_type);
31807d
+    }
31807d
+    error(0,"%s; added\n", line->filename);
31807d
+
31807d
+}
31807d
+
31807d
+static void print_attributes_removed_node_syslog(db_line* line) {
31807d
+
31807d
+    char *file_type = get_file_type_string(line->perm);
31807d
+    if (file_type) {
31807d
+        error(0,"%s=", file_type);
31807d
+    }
31807d
+    error(0,"%s; removed\n", line->filename);
31807d
+
31807d
+}
31807d
+
31807d
 static void terse_report(seltree* node) {
31807d
     list* r=NULL;
31807d
     if ((node->checked&(DB_OLD|DB_NEW)) != 0) {
31807d
@@ -626,6 +718,26 @@ static void print_report_details(seltree
31807d
     }
31807d
 }
31807d
 
31807d
+static void print_syslog_format(seltree* node) {
31807d
+    list* r=NULL;
31807d
+
31807d
+    if (node->checked&NODE_CHANGED) {
31807d
+        print_dbline_attributes_syslog(node->old_data, node->new_data, node->changed_attrs, forced_attrs);
31807d
+    }
31807d
+   
31807d
+    if (node->checked&NODE_ADDED) {
31807d
+        print_attributes_added_node_syslog(node->new_data);
31807d
+    }
31807d
+
31807d
+    if (node->checked&NODE_REMOVED) {
31807d
+        print_attributes_removed_node_syslog(node->old_data); 
31807d
+    }
31807d
+        
31807d
+    for(r=node->childs;r;r=r->next){
31807d
+        print_syslog_format((seltree*)r->data);
31807d
+    }
31807d
+}
31807d
+
31807d
 static void print_report_header() {
31807d
     char *time;
31807d
     int first = 1;
31807d
@@ -747,39 +859,53 @@ int gen_report(seltree* node) {
31807d
     send_audit_report();
31807d
 #endif
31807d
     if ((nadd|nrem|nchg) > 0 || conf->report_quiet == 0) {
31807d
-    print_report_header();
31807d
-    if(conf->action&(DO_COMPARE|DO_DIFF) || (conf->action&DO_INIT && conf->report_detailed_init) ) {
31807d
-    if (conf->grouped) {
31807d
-        if (nadd) {
31807d
-            error(2,(char*)report_top_format,_("Added entries"));
31807d
-            print_report_list(node, NODE_ADDED);
31807d
-        }
31807d
-        if (nrem) {
31807d
-            error(2,(char*)report_top_format,_("Removed entries"));
31807d
-            print_report_list(node, NODE_REMOVED);
31807d
-        }
31807d
-        if (nchg) {
31807d
-            error(2,(char*)report_top_format,_("Changed entries"));
31807d
-            print_report_list(node, NODE_CHANGED);
31807d
-        }
31807d
-    } else if (nadd || nrem || nchg) {
31807d
-        if (nadd && nrem && nchg) { error(2,(char*)report_top_format,_("Added, removed and changed entries")); }
31807d
-        else if (nadd && nrem) { error(2,(char*)report_top_format,_("Added and removed entries")); }
31807d
-        else if (nadd && nchg) { error(2,(char*)report_top_format,_("Added and changed entries")); }
31807d
-        else if (nrem && nchg) { error(2,(char*)report_top_format,_("Removed and changed entries")); }
31807d
-        else if (nadd) { error(2,(char*)report_top_format,_("Added entries")); }
31807d
-        else if (nrem) { error(2,(char*)report_top_format,_("Removed entries")); }
31807d
-        else if (nchg) { error(2,(char*)report_top_format,_("Changed entries")); }
31807d
-        print_report_list(node, NODE_ADDED|NODE_REMOVED|NODE_CHANGED);
31807d
-    }
31807d
-    if (nadd || nrem || nchg) {
31807d
-        error(nchg?5:7,(char*)report_top_format,_("Detailed information about changes"));
31807d
-        print_report_details(node);
31807d
-    }
31807d
-    }
31807d
-    print_report_databases();
31807d
-    conf->end_time=time(&(conf->end_time));
31807d
-    print_report_footer();
31807d
+
31807d
+        if (!conf->syslog_format) {
31807d
+            print_report_header();
31807d
+        }
31807d
+
31807d
+        if(conf->action&(DO_COMPARE|DO_DIFF) || (conf->action&DO_INIT && conf->report_detailed_init) ) {
31807d
+            if (!conf->syslog_format && conf->grouped) {
31807d
+                if (nadd) {
31807d
+                    error(2,(char*)report_top_format,_("Added entries"));
31807d
+                    print_report_list(node, NODE_ADDED);
31807d
+                }
31807d
+                if (nrem) {
31807d
+                    error(2,(char*)report_top_format,_("Removed entries"));
31807d
+                    print_report_list(node, NODE_REMOVED);
31807d
+                }
31807d
+                if (nchg) {
31807d
+                    error(2,(char*)report_top_format,_("Changed entries"));
31807d
+                    print_report_list(node, NODE_CHANGED);
31807d
+                }
31807d
+            } else if (!conf->syslog_format && ( nadd || nrem || nchg ) ) {
31807d
+                if (nadd && nrem && nchg) { error(2,(char*)report_top_format,_("Added, removed and changed entries")); }
31807d
+                else if (nadd && nrem) { error(2,(char*)report_top_format,_("Added and removed entries")); }
31807d
+                else if (nadd && nchg) { error(2,(char*)report_top_format,_("Added and changed entries")); }
31807d
+                else if (nrem && nchg) { error(2,(char*)report_top_format,_("Removed and changed entries")); }
31807d
+                else if (nadd) { error(2,(char*)report_top_format,_("Added entries")); }
31807d
+                else if (nrem) { error(2,(char*)report_top_format,_("Removed entries")); }
31807d
+                else if (nchg) { error(2,(char*)report_top_format,_("Changed entries")); }
31807d
+                print_report_list(node, NODE_ADDED|NODE_REMOVED|NODE_CHANGED);
31807d
+            }
31807d
+            if (nadd || nrem || nchg) {
31807d
+                if (!conf->syslog_format) {
31807d
+                    error(nchg?5:7,(char*)report_top_format,_("Detailed information about changes"));
31807d
+                    print_report_details(node);
31807d
+                } else {
31807d
+                    /* Syslog Format */
31807d
+                    error(0, "AIDE found differences between database and filesystem!!\n");
31807d
+                    error(0, "summary;total_number_of_files=%ld;added_files=%ld;"
31807d
+                              "removed_files=%ld;changed_files=%ld\n",ntotal,nadd,nrem,nchg);
31807d
+                    print_syslog_format(node);
31807d
+                }
31807d
+            }
31807d
+        }
31807d
+        if (!conf->syslog_format) {
31807d
+            print_report_databases();
31807d
+            conf->end_time=time(&(conf->end_time));
31807d
+            print_report_footer();
31807d
+        }
31807d
     }
31807d
 
31807d
     return conf->action&(DO_COMPARE|DO_DIFF) ? (nadd!=0)*1+(nrem!=0)*2+(nchg!=0)*4 : 0;
31807d
diff -up ./src/conf_lex.l.syslog_format ./src/conf_lex.l
31807d
--- ./src/conf_lex.l.syslog_format	2016-07-25 22:56:55.000000000 +0200
31807d
+++ ./src/conf_lex.l	2018-09-27 19:09:09.698371220 +0200
31807d
@@ -401,6 +401,12 @@ int var_in_conflval=0;
31807d
   return (TROOT_PREFIX);
31807d
 }
31807d
 
31807d
+^[\t\ ]*"syslog_format"{E} {
31807d
+  error(230,"%li:syslog_format =\n",conf_lineno);
31807d
+  BEGIN CONFVALHUNT;
31807d
+  return (SYSLOG_FORMAT);
31807d
+}
31807d
+
31807d
 ^[\t\ ]*"recstop"{E} {
31807d
   error(230,"%li:recstop =\n",conf_lineno);
31807d
   BEGIN CONFVALHUNT;
31807d
diff -up ./src/conf_yacc.y.syslog_format ./src/conf_yacc.y
31807d
--- ./src/conf_yacc.y.syslog_format	2016-07-25 22:56:55.000000000 +0200
31807d
+++ ./src/conf_yacc.y	2018-09-27 19:09:09.699371228 +0200
31807d
@@ -89,6 +89,7 @@ extern long conf_lineno;
31807d
 %token TREPORT_URL
31807d
 %token TGZIPDBOUT
31807d
 %token TROOT_PREFIX
31807d
+%token SYSLOG_FORMAT
31807d
 %token TUMASK
31807d
 %token TTRUE
31807d
 %token TFALSE
31807d
@@ -160,7 +161,7 @@ line : rule | equrule | negrule | define
31807d
        | ifdefstmt | ifndefstmt | ifhoststmt | ifnhoststmt
31807d
        | groupdef | db_in | db_out | db_new | db_attrs | verbose | report_detailed_init | config_version
31807d
        | database_add_metadata | report | gzipdbout | root_prefix | report_base16 | report_quiet
31807d
-       | report_ignore_e2fsattrs | recursion_stopper | warn_dead_symlinks | grouped
31807d
+       | report_ignore_e2fsattrs | syslogformat | recursion_stopper | warn_dead_symlinks | grouped
31807d
        | summarize_changes | acl_no_symlink_follow | beginconfigstmt | endconfigstmt
31807d
        | TEOF {
31807d
             newlinelastinconfig=1;
31807d
@@ -408,6 +409,15 @@ conf->gzip_dbout=0;
31807d
 #endif
31807d
 } ;
31807d
 
31807d
+syslogformat : SYSLOG_FORMAT TTRUE {
31807d
+conf->syslog_format=1;
31807d
+} |
31807d
+               SYSLOG_FORMAT TFALSE {
31807d
+conf->syslog_format=0;
31807d
+} ;
31807d
+
31807d
+
31807d
+
31807d
 recursion_stopper : TRECSTOP TSTRING {
31807d
   /* FIXME implement me */  
31807d
   
31807d
diff -up ./src/error.c.syslog_format ./src/error.c
31807d
--- ./src/error.c.syslog_format	2016-07-25 22:56:55.000000000 +0200
31807d
+++ ./src/error.c	2018-09-27 19:13:40.312416750 +0200
31807d
@@ -38,6 +38,9 @@
31807d
 /*for locale support*/
31807d
 #include "util.h"
31807d
 
31807d
+#define MAX_BUFFER_SIZE 1024
31807d
+static char syslog_buffer[MAX_BUFFER_SIZE+1];
31807d
+
31807d
 int cmp_url(url_t* url1,url_t* url2){
31807d
   
31807d
   return ((url1->type==url2->type)&&(strcmp(url1->value,url2->value)==0));
31807d
@@ -48,7 +51,9 @@ int error_init(url_t* url,int initial)
31807d
 {
31807d
   list* r=NULL;
31807d
   FILE* fh=NULL;
31807d
-	int   sfac;
31807d
+  int   sfac;
31807d
+
31807d
+  memset(syslog_buffer, 0, MAX_BUFFER_SIZE+1);
31807d
   
31807d
   if (url->type==url_database) {
31807d
     conf->report_db++;
31807d
@@ -163,13 +168,24 @@ void error(int errorlevel,char* error_ms
31807d
     }
31807d
 #ifdef HAVE_SYSLOG
31807d
     if(conf->initial_report_url->type==url_syslog){
31807d
-#ifdef HAVE_VSYSLOG
31807d
-      vsyslog(SYSLOG_PRIORITY,error_msg,ap);
31807d
-#else
31807d
-			char buf[1024];
31807d
-			vsnprintf(buf,1024,error_msg,ap);
31807d
-			syslog(SYSLOG_PRIORITY,"%s",buf);
31807d
-#endif
31807d
+
31807d
+      char buff[MAX_BUFFER_SIZE+1];
31807d
+      vsnprintf(buff,MAX_BUFFER_SIZE,error_msg,ap);
31807d
+      size_t buff_len = strlen(buff);
31807d
+
31807d
+      char result_buff[MAX_BUFFER_SIZE+1];
31807d
+#pragma GCC diagnostic push
31807d
+#pragma GCC diagnostic ignored "-Wformat-truncation"
31807d
+      snprintf(result_buff, MAX_BUFFER_SIZE, "%s%s", syslog_buffer, buff);
31807d
+#pragma GCC diagnostic pop
31807d
+
31807d
+      if(buff[buff_len-1] == '\n'){
31807d
+        syslog(SYSLOG_PRIORITY,"%s",result_buff);
31807d
+        memset(syslog_buffer, 0, MAX_BUFFER_SIZE+1);
31807d
+      } else {
31807d
+        memcpy(syslog_buffer, result_buff, MAX_BUFFER_SIZE);
31807d
+      }
31807d
+
31807d
       va_end(ap);
31807d
       return;
31807d
     }
31807d
@@ -181,17 +197,25 @@ void error(int errorlevel,char* error_ms
31807d
 
31807d
 #ifdef HAVE_SYSLOG
31807d
   if (conf->report_syslog!=0) {
31807d
-#ifdef HAVE_VSYSLOG
31807d
-    va_start(ap,error_msg);
31807d
-    vsyslog(SYSLOG_PRIORITY,error_msg,ap);
31807d
-    va_end(ap);
31807d
-#else
31807d
-		char buf[1024];
31807d
-    va_start(ap,error_msg);
31807d
-		vsnprintf(buf,1024,error_msg,ap);
31807d
+    va_start(ap, error_msg);
31807d
+
31807d
+    char buff[MAX_BUFFER_SIZE+1];
31807d
+    vsnprintf(buff,MAX_BUFFER_SIZE,error_msg,ap);
31807d
+    size_t buff_len = strlen(buff);
31807d
+
31807d
+    char result_buff[MAX_BUFFER_SIZE+1];
31807d
+#pragma GCC diagnostic push
31807d
+#pragma GCC diagnostic ignored "-Wformat-truncation"
31807d
+    snprintf(result_buff, MAX_BUFFER_SIZE, "%s%s", syslog_buffer, buff);
31807d
+#pragma GCC diagnostic pop
31807d
+
31807d
+    if(buff[buff_len-1] == '\n'){
31807d
+      syslog(SYSLOG_PRIORITY,"%s",result_buff);
31807d
+      memset(syslog_buffer, 0, MAX_BUFFER_SIZE+1);
31807d
+    } else {
31807d
+      memcpy(syslog_buffer, result_buff, MAX_BUFFER_SIZE);
31807d
+    }
31807d
     va_end(ap);
31807d
-		syslog(SYSLOG_PRIORITY,"%s",buf);
31807d
-#endif
31807d
   }
31807d
 #endif
31807d