diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2004-11-30 16:07:59 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2004-11-30 16:07:59 +0000 |
commit | d9b4c8bcb732e021f11a39a3a4ba825717b42065 (patch) | |
tree | 3221acc2ef9a12d8cacd22d1fb027cde2101d209 | |
parent | 723c8b552ef0a7b12a772d4ba070bd5f4e1c3b7d (diff) | |
download | rsyslog-d9b4c8bcb732e021f11a39a3a4ba825717b42065.tar.gz rsyslog-d9b4c8bcb732e021f11a39a3a4ba825717b42065.tar.xz rsyslog-d9b4c8bcb732e021f11a39a3a4ba825717b42065.zip |
added default templates - now config file more compatible to stock syslogd
-rw-r--r-- | Makefile | 6 | ||||
-rw-r--r-- | syslogd.c | 89 | ||||
-rw-r--r-- | test.conf | 18 |
3 files changed, 76 insertions, 37 deletions
@@ -3,8 +3,8 @@ CC= gcc #CFLAGS= -g -DSYSV -Wall LDFLAGS= -g -#CFLAGS= $(RPM_OPT_FLAGS) -O3 -DSYSV -fomit-frame-pointer -Wall -fno-strength-reduce -CFLAGS= $(RPM_OPT_FLAGS) -O3 -DSYSV -fomit-frame-pointer -Wall -fno-strength-reduce -DWITH_DB +CFLAGS= $(RPM_OPT_FLAGS) -O3 -DSYSV -fomit-frame-pointer -Wall -fno-strength-reduce +#CFLAGS= $(RPM_OPT_FLAGS) -O3 -DSYSV -fomit-frame-pointer -Wall -fno-strength-reduce -DWITH_DB LDFLAGS= -s # Look where your install program is. @@ -13,7 +13,7 @@ BINDIR = /usr/sbin MANDIR = /usr/man # Uncommenting the following to use mysql. -LIBS = -lmysqlclient #/var/lib/mysql/mysql +#LIBS = -lmysqlclient #/var/lib/mysql/mysql # There is one report that under an all ELF system there may be a need to # explicilty link with libresolv.a. If linking syslogd fails you may wish @@ -2,7 +2,6 @@ * TODO: * - check if syslogd really needs to be shut down totally if * "syslog" service from etc/services can not be found - * - check if MsgGetProp() can be used for MySQL, too * - check template lins for extra characters and provide * a warning, if they exists * - check that no exit() is used! @@ -64,7 +63,7 @@ * This license applies to the new code not in sysklogd: * * rsyslog - An Enhanced syslogd Replacement. - * Copyright 2002-2003 Rainer Gerhards and Adiscon GmbH. + * Copyright 2003-2004 Rainer Gerhards and Adiscon GmbH. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -958,6 +957,13 @@ int Initialized = 0; /* set when we have initialized ourselves extern int errno; +/* hardcoded standard templates (used for defaults) */ +static char template_TraditionalFormat[] = "\"%timegenerated% %HOSTNAME% %syslogtag%%msg%\n\""; +static char template_WallFmt[] = "\"\r\n\7Message from syslogd@%HOSTNAME% at %timegenerated% ...\r\n %syslogtag%%msg%\n\r\""; +static char template_StdFwdFmt[] = "\"<%PRI%>%TIMESTAMP% %HOSTNAME% %syslogtag%%msg%\""; +static char template_StdUsrMsgFmt[] = "\" %syslogtag%%msg%\n\r\""; +/* end template */ + /* Function prototypes. */ int main(int argc, char **argv); char **crunch_list(char *list); @@ -992,6 +998,7 @@ void closeMySQL(register struct filed *f); int getSubString(char **pSrc, char *pDst, size_t DstSize, char cSep); void getCurrTime(struct syslogTime *t); +void cflineSetTemplateAndIOV(struct filed *f, char *pTemplateName); #ifdef SYSLOG_UNIXAF static int create_inet_socket(); @@ -1543,7 +1550,6 @@ char *getTimeGenerated(struct msg *pM, enum tplFormatTypes eFmt) if(pM == NULL) return ""; - printf("getTimeGenerated, format %d\n", eFmt); switch(eFmt) { case tplFmtDefault: if(pM->pszRcvdAt3164 == NULL) { @@ -1950,6 +1956,7 @@ int main(argc, argv) extern int optind; extern char *optarg; int maxfds; + char *pTmp; #ifndef TESTING chdir ("/"); @@ -2076,8 +2083,24 @@ int main(argc, argv) } /* if ( !Debug ) */ #endif + /* initialize the default templates + * we use template names with a SP in front - these + * can NOT be generated via the configuration file + */ + pTmp = template_TraditionalFormat; + tplAddLine(" TradFmt", &pTmp); + pTmp = template_WallFmt; + tplAddLine(" WallFmt", &pTmp); + pTmp = template_StdFwdFmt; + tplAddLine(" StdFwdFmt", &pTmp); + pTmp = template_StdUsrMsgFmt; + tplAddLine(" StdUsrMsgFmt", &pTmp); + + /* prepare emergency logging system */ + consfile.f_type = F_CONSOLE; (void) strcpy(consfile.f_un.f_fname, ctty); + cflineSetTemplateAndIOV(&consfile, " TradFmt"); (void) gethostname(LocalHostName, sizeof(LocalHostName)); if ( (p = strchr(LocalHostName, '.')) ) { *p++ = '\0'; @@ -2719,8 +2742,6 @@ void logmsgInternal(pri, msg, from, flags) int flags; { struct msg *pMsg; - char buf[16]; - char szMsg[1024]; if((pMsg = MsgConstruct()) == NULL){ /* rgerhards 2004-11-09: calling panic might not be the @@ -2733,19 +2754,13 @@ void logmsgInternal(pri, msg, from, flags) if(MsgSetMSG(pMsg, msg) != 0) return; if(MsgSetRawMsg(pMsg, msg) != 0) return; + if(MsgSetUxTradMsg(pMsg, msg) != 0) return; if(MsgSetHOSTNAME(pMsg, from) != 0) return; pMsg->iFacility = LOG_FAC(pri); pMsg->iSeverity = LOG_PRI(pri); pMsg->iMsgSource = SOURCE_INTERNAL; getCurrTime(&(pMsg->tTIMESTAMP)); /* use the current time! */ - /* generate traditional Unix message... */ - formatTimestamp3164(&pMsg->tTIMESTAMP, buf, sizeof(buf) / sizeof(char)); - - snprintf(szMsg, sizeof(szMsg) / sizeof(char), "%s %s %s", - buf, from, msg); - if(MsgSetUxTradMsg(pMsg, szMsg) != 0) return; - logmsg(pri, pMsg, flags); MsgDestruct(pMsg); } @@ -3890,13 +3905,13 @@ void init() Files = NULL; } + /* TODO: we need to free the templates! */ #ifdef SYSV lognum = 0; #else f = NULL; #endif - /* open the configuration file */ if ((cf = fopen(ConfFile, "r")) == NULL) { /* rgerhards: this code is executed to set defaults when the @@ -4090,6 +4105,8 @@ void init() */ void cflineSetTemplateAndIOV(struct filed *f, char *pTemplateName) { + char errMsg[512]; + assert(f != NULL); assert(pTemplateName != NULL); @@ -4100,7 +4117,10 @@ void cflineSetTemplateAndIOV(struct filed *f, char *pTemplateName) * how many elements iov must have - and this can never change. */ if((f->f_pTpl = tplFind(pTemplateName, strlen(pTemplateName))) == NULL) { - dprintf("Could not find template '%s'\n", pTemplateName); + snprintf(errMsg, sizeof(errMsg) / sizeof(char), + "rsyslogd: Could not find template '%s'\n", pTemplateName); + logmsgInternal(LOG_SYSLOG|LOG_ERR, errMsg, LocalHostName, ADDDATE); + dprintf(errMsg); f->f_type = F_UNUSED; } else { if((f->f_iov = calloc(tplGetEntryCount(f->f_pTpl), @@ -4120,8 +4140,11 @@ void cflineSetTemplateAndIOV(struct filed *f, char *pTemplateName) /* Helper to cfline() and its helpers. Parses a template name * from an "action" line. Must be called with the Line pointer - * pointing to the first character after the comma. - * Everything is stored in the filed struct. + * pointing to the first character after the semicolon. + * Everything is stored in the filed struct. If there is no + * template name (it is empty), than it is ensured that the + * returned string is "\0". So you can count on the first character + * to be \0 in this case. * rgerhards 2004-11-19 */ void cflineParseTemplateName(struct filed *f, char** pp, @@ -4187,6 +4210,10 @@ void cflineParseFileName(struct filed *f, char* p) cflineParseTemplateName(f, &p, szTemplateName, sizeof(szTemplateName) / sizeof(char)); + + if(szTemplateName[0] == '\0') /* no template? */ + strcpy(szTemplateName, " TradFmt"); /* use default! */ + cflineSetTemplateAndIOV(f, szTemplateName); dprintf("filename: '%s', template: '%s'\n", f->f_un.f_fname, szTemplateName); @@ -4388,9 +4415,14 @@ void cfline(line, f) /* Now look for the template! */ cflineParseTemplateName(f, &p, szTemplateName, sizeof(szTemplateName) / sizeof(char)); - cflineSetTemplateAndIOV(f, szTemplateName); + } else + szTemplateName[0] = '\0'; + if(szTemplateName[0] == '\0') { + /* we do not have a template, so let's use the default */ + strcpy(szTemplateName, " StdFwdFmt"); } + /* first set the f->f_type */ if ( (hp = gethostbyname(q)) == NULL ) { f->f_type = F_FORW_UNKN; f->f_prevcount = INET_RETRY_MAX; @@ -4399,6 +4431,10 @@ void cfline(line, f) f->f_type = F_FORW; } + /* then try to find the template and re-set f_type to UNUSED + * if it can not be found. */ + cflineSetTemplateAndIOV(f, szTemplateName); + (void) strcpy(f->f_un.f_forw.f_hname, q); dprintf("forwarding host: '%s' template '%s'\n", q, szTemplateName); /*ASP*/ @@ -4455,10 +4491,13 @@ void cfline(line, f) p += 2; /* eat "*;" */ cflineParseTemplateName(f, &p, szTemplateName, sizeof(szTemplateName) / sizeof(char)); - cflineSetTemplateAndIOV(f, szTemplateName); - dprintf(" template '%s'", szTemplateName); } - dprintf("\n"); + else /* assign default format if none given! */ + szTemplateName[0] = '\0'; + if(szTemplateName[0] == '\0') + strcpy(szTemplateName, " WallFmt"); + cflineSetTemplateAndIOV(f, szTemplateName); + dprintf(" template '%s'\n", szTemplateName); f->f_type = F_WALL; break; @@ -4510,11 +4549,13 @@ void cfline(line, f) else { initMySQL(f); } + /* TODO: add handling for standard template! rgerhards */ break; #endif /* #ifdef WITH_DB */ default: dprintf ("users: %s\n", p); /* ASP */ + f->f_type = F_USERS; for (i = 0; i < MAXUNAMES && *p && *p != ';'; i++) { for (q = p; *q && *q != ',' && *q != ';'; ) q++; @@ -4530,14 +4571,18 @@ void cfline(line, f) /* done, now check if we have a template name * TODO: we need to handle the case where i >= MAXUNAME! */ +printf("USer, type %d\n", f->f_type); + szTemplateName[0] = '\0'; if(*p == ';') { /* we have a template specifier! */ ++p; /* eat ";" */ cflineParseTemplateName(f, &p, szTemplateName, sizeof(szTemplateName) / sizeof(char)); - cflineSetTemplateAndIOV(f, szTemplateName); } - f->f_type = F_USERS; + if(szTemplateName[0] == '\0') + strcpy(szTemplateName, " StdUsrMsgFmt"); + cflineSetTemplateAndIOV(f, szTemplateName); +printf("OUT USer, type %d\n", f->f_type); break; } return; @@ -15,33 +15,27 @@ # % = \% # \ = \\ # --> '\' is used to escape (as in C) -#$template TraditionalFormat,"%UxTradMsg%\n",1024 -#$template MySQLInsert,"insert iut, msg values (1, '%msg%') into systemevents",SQL,MAXSIZE=1024 $template TraditionalFormat,"%timegenerated% %HOSTNAME% %syslogtag%%msg%\n" $template precise,"%syslogpriority%,%syslogfacility%,%timegenerated%,%HOSTNAME%,%syslogtag%,%msg%\n",1024 $template RFC3164fmt,"<%PRI%>%TIMESTAMP% %HOSTNAME% %syslogtag%%msg%" #$template precise,"%syslogpriority%,%syslogfacility%,%timegenerated::fulltime%,%HOSTNAME%,%syslogtag%,%msg%\n",1024 -$template usermsg," %syslogtag%%msg%\n\r" +$template usermsg," XXXX%syslogtag%%msg%\n\r" #$template wallmsg,"\r\n\7Message from syslogd@%HOSTNAME% at %timegenerated% ...\r\n %syslogtag%%msg%\n\r" $template MySQLInsert,"insert iut, message, receivedat values ('%iut%', '%msg:::UPPERCASE%', '%timegenerated:::date-mysql%') into systemevents\r\n", SQL -$template wallmsg,"\r\n\7Message from syslogd@%HOSTNAME% at %timegenerated:::date-rfc3339% ...\r\n %syslogtag%%msg%\n\r" +#$template wallmsg,"\r\n\7Message from syslogd@%HOSTNAME% at %timegenerated:::date-rfc3339% ...\r\n %syslogtag%%msg%\n\r" # Selector lines are now modified # The "action" (e.g. file logging) can be followed # by a comma and then the name of a template to use. # This is an example: #authpriv.* /var/log/secure,precise -#*.* rger;usermsg -*.* *;wallmsg +*.* rger #*.* *;MySQLInsert #*.* /home/rger/proj/rsyslog/logfile;precise #*.* /home/rger/proj/rsyslog/logfile;UserMsg -<<<<<<< test.conf #*.* /home/rger/proj/rsyslog/tradfile;TraditionalFormat +*.* /home/rger/proj/rsyslog/tradfile #*.* @172.19.2.16;RFC3164fmt -*.* >localhost,AdisconDB,root, -======= -#*.* /home/rger/proj/rsyslog/tradfile;TraditionalFormat -#*.* @172.19.2.16;RFC3164fmt ->>>>>>> 1.4 +#*.* @172.19.2.16 +#*.* >localhost,AdisconDB,root, |