Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | finally, alarm() has gone away :) -- this is now done by the main thread | Rainer Gerhards | 2007-12-21 | 1 | -58/+21 | |
| | ||||||
* | removed code no longer needed | Rainer Gerhards | 2007-12-21 | 1 | -55/+8 | |
| | ||||||
* | - created an initial version of imudp.c. The majority of UDP reception code | Rainer Gerhards | 2007-12-21 | 1 | -70/+2 | |
| | | | | | | | | | | is now in that module and it is dynamically loadable. HOWEVER, that doesn't mean it is a proper module. There are still many, many dependencies on global variables, cross-module calls and such. However, havin the code base separated allows me to carry out some other cleanup before I return to create a really clean implementation of these modules. So it is kind of a stage work. Just don't mistake it with "the real thing"... | |||||
* | cleaned up code (resulting in some shuffeling from syslogd.c to the "right" | Rainer Gerhards | 2007-12-21 | 1 | -67/+6 | |
| | | | | module) | |||||
* | created first version of imtcp (still very much depending on syslogd.c for | Rainer Gerhards | 2007-12-21 | 1 | -139/+1 | |
| | | | | configuration and a lot of other things) | |||||
* | removed single-threading support for sending TCP messages; caused | Rainer Gerhards | 2007-12-20 | 1 | -180/+3 | |
| | | | | | simplyfication of output module interface as well as core syslog processing. | |||||
* | implemented $AddUnixListenSocket config directive | Rainer Gerhards | 2007-12-20 | 1 | -16/+1 | |
| | ||||||
* | implemented $SystemLogSocketName config directive | Rainer Gerhards | 2007-12-20 | 1 | -14/+0 | |
| | ||||||
* | implemented $OmitLocalLogging config directive | Rainer Gerhards | 2007-12-20 | 1 | -3/+0 | |
| | ||||||
* | moved unix socket code to its own module (imuxsock) | Rainer Gerhards | 2007-12-20 | 1 | -107/+4 | |
| | ||||||
* | bugfix: fixing memory leak when message queue is full and during parsing. | Rainer Gerhards | 2007-12-20 | 1 | -2/+8 | |
| | | | | Thanks to varmojfekoj for the patch. | |||||
* | slight change to init() to prevent race condition | Rainer Gerhards | 2007-12-19 | 1 | -1/+2 | |
| | ||||||
* | enhanced -c option support (some basics) | Rainer Gerhards | 2007-12-19 | 1 | -4/+28 | |
| | ||||||
* | applied enhanced gss-api functionality provided by varmojfekoj | Rainer Gerhards | 2007-12-19 | 1 | -20/+68 | |
| | ||||||
* | cleaned up char/uchar issue | Rainer Gerhards | 2007-12-19 | 1 | -3/+3 | |
| | ||||||
* | applied some more cleanup provided by Michael Biebl | Rainer Gerhards | 2007-12-19 | 1 | -4/+1 | |
| | ||||||
* | applied Michael Biebl's patch to enhance $includeconfig to support wildcard | Rainer Gerhards | 2007-12-18 | 1 | -8/+32 | |
| | | | | filenames | |||||
* | code cleanups thanks to Michael Biebl | Rainer Gerhards | 2007-12-18 | 1 | -1/+0 | |
| | ||||||
* | restructured #include's somewhat thanks to Michael Biebl | Rainer Gerhards | 2007-12-18 | 1 | -0/+4 | |
| | ||||||
* | - implemented afterRun input module interface function | Rainer Gerhards | 2007-12-17 | 1 | -2/+1 | |
| | | | | - implemented $klogSymbolsTwice config directive | |||||
* | begun imklog, replacing klogd.c (finally we get rid of it...) | Rainer Gerhards | 2007-12-17 | 1 | -2/+0 | |
| | ||||||
* | implemented $MarkMessagePeriod config directive | Rainer Gerhards | 2007-12-17 | 1 | -5/+8 | |
| | ||||||
* | removed initial IMMARK coding - no longer needed | Rainer Gerhards | 2007-12-17 | 1 | -23/+2 | |
| | ||||||
* | moved thread termination code out to threads.c | Rainer Gerhards | 2007-12-17 | 1 | -6/+0 | |
| | ||||||
* | created thread-class internal wrapper for calling user supplied thread main | Rainer Gerhards | 2007-12-17 | 1 | -1/+2 | |
| | | | | function | |||||
* | fixed a potential race condition with enqueueMsg() - thanks to mildew for | Rainer Gerhards | 2007-12-17 | 1 | -12/+1 | |
| | | | | making me aware of this issue | |||||
* | graceful termination now supported | Rainer Gerhards | 2007-12-14 | 1 | -9/+4 | |
| | ||||||
* | first rough version of input module thread termination | Rainer Gerhards | 2007-12-14 | 1 | -4/+12 | |
| | ||||||
* | added thread activation | Rainer Gerhards | 2007-12-14 | 1 | -0/+2 | |
| | ||||||
* | on the way to a real input module interface and threading class... | Rainer Gerhards | 2007-12-14 | 1 | -4/+35 | |
| | ||||||
* | - begun to create input module interface and macros | Rainer Gerhards | 2007-12-14 | 1 | -5/+18 | |
| | | | | - changed module interface to include function to query type | |||||
* | moved core threading helpers out of syslogd.c | Rainer Gerhards | 2007-12-14 | 1 | -149/+5 | |
| | ||||||
* | changed license to GPLv3 (for what is to become rsyslog v3) | Rainer Gerhards | 2007-12-14 | 1 | -7/+16 | |
| | ||||||
* | begin work on on immark, the first input module. In the long term this will | Rainer Gerhards | 2007-12-14 | 1 | -3/+29 | |
| | | | | lead to a complete rewrite of the input system | |||||
* | some cleanup (very minor) | Rainer Gerhards | 2007-12-12 | 1 | -1/+5 | |
| | ||||||
* | handled selector flushing on termination (and hup) correctly. Could lose | Rainer Gerhards | 2007-12-12 | 1 | -8/+16 | |
| | | | | some information before. | |||||
* | fixed a potential race condition, see link for details: | Rainer Gerhards | 2007-12-11 | 1 | -24/+43 | |
| | | | | http://rgerhards.blogspot.com/2007/12/rsyslog-race-condition.html | |||||
* | When a hostname ACL was provided and DNS resolution for that name failed, | Rainer Gerhards | 2007-12-11 | 1 | -12/+30 | |
| | | | | | | ACL processing was stopped at that point. Thanks to mildew for the patch. Fedora Bugzilla: http://bugzilla.redhat.com/show_bug.cgi?id=395911 | |||||
* | added Bartosz Kuzma patches for better compatibility with NetBSD - many | Rainer Gerhards | 2007-12-03 | 1 | -11/+23 | |
| | | | | thanks for them! | |||||
* | adding sur5r's postgres module - many thanks for providing it! There are a | Rainer Gerhards | 2007-12-03 | 1 | -0/+16 | |
| | | | | | number of patches necessary to core modules, because we need a new formatting function (date-pgsql). | |||||
* | cosmetic changes - no code change | Rainer Gerhards | 2007-11-27 | 1 | -3/+2 | |
| | ||||||
* | moved syslog PRI code tables to msg.c as this is the only place where they | Rainer Gerhards | 2007-11-27 | 1 | -44/+0 | |
| | | | | are still needed | |||||
* | - added an identifier to command handler table - need to identify which | Rainer Gerhards | 2007-11-21 | 1 | -2/+6 | |
| | | | | | | | | | | command handler entries need to be removed when module is unloaded - added support so that linkedlist key can be used for owner handle - enhanced llExecFunc to support deletion of list elements (on behalf of user function being called, slight interface change) - enhanced linkedlist class so that list elements can now be deleted based on the key value they have - created entry point so that CfSysLine handlers are removed on modExit() | |||||
* | added an identifier to command handler table - need to identify which | Rainer Gerhards | 2007-11-21 | 1 | -20/+20 | |
| | | | | command handler entries need to be removed when module is unloaded | |||||
* | added new modExit() entry point to loadable module interface | Rainer Gerhards | 2007-11-21 | 1 | -4/+5 | |
| | ||||||
* | applied gssapi patch from varmojfekoj - gss-api is now supported | Rainer Gerhards | 2007-11-19 | 1 | -9/+62 | |
| | ||||||
* | undid creation of a separate thread for the main loop -- this did not turn | Rainer Gerhards | 2007-10-17 | 1 | -19/+20 | |
| | | | | out to be needed or useful, so reduce complexity once again. | |||||
* | changed the threading to include one extra thread that runs the mainloop. | Rainer Gerhards | 2007-10-08 | 1 | -56/+96 | |
| | | | | | | | | | | This was done to work around a problem with malloc/free. Note that we are still running on two threads - the startup thread just waits for the new one to finish. For a description of the problem I try to work-around, please see: http://rgerhards.blogspot.com/2007/10/could-i-really-reproduce-bug.html Note that this is an experimental change, which will only stay if it proves to fix the segfault issue we are dealing with. | |||||
* | applied patch provided by varmojfekoj to support building ommysql in its | Rainer Gerhards | 2007-09-26 | 1 | -6/+0 | |
| | | | | own way (now also resides in a plugin subdirectory) | |||||
* | applied contributed patch to improve repeated message processing (see | Rainer Gerhards | 2007-09-25 | 1 | -1/+5 | |
| | | | | https://bugzilla.redhat.com/show_bug.cgi?id=303341) |