summaryrefslogtreecommitdiffstats
path: root/syslogd.c
Commit message (Collapse)AuthorAgeFilesLines
...
* added $include config directiveRainer Gerhards2007-08-011-6/+38
|
* - some more code cleanupRainer Gerhards2007-08-011-14/+14
| | | | - enhanced cfsysline interface to disallow chaining of command handlers
* - loading default values as done yesterday *is* clean (I've just reviewedRainer Gerhards2007-08-011-28/+9
| | | | | | the code again) - moved omfile-specifc global variables (for cfsysline settings) from syslogd.c to omfile.c
* - loading default values as done yesterday *is* clean (I've just reviewedRainer Gerhards2007-08-011-21/+8
| | | | | | the code again) - moved omfile-specifc global variables (for cfsysline settings) from syslogd.c to omfile.c
* - $ResetConfigVariables now also works vir the table-driven sytem. However,Rainer Gerhards2007-07-311-23/+19
| | | | | I need to fix an issue with loading default settings when syslogd is started or HUPed
* - all cfsysline directives now use new table-driven cfsysline system exceptRainer Gerhards2007-07-311-50/+33
| | | | for $ResetConfigVariables
* omfile.c now uses the new table-driven cfsysline systemRainer Gerhards2007-07-311-10/+20
|
* - got the basic code in place to create an in-memory list of cfsyslineRainer Gerhards2007-07-311-31/+2
| | | | handlers (omfile.c used as testing case) -- not yet in active code
* - added doCustomHdlr() to cfsysline.c - this completes implementingRainer Gerhards2007-07-311-9/+20
| | | | functions for canned handlers.
* moved debug printf code out of init() into its own functionRainer Gerhards2007-07-311-68/+77
|
* moved code to open config file into separate function processConfFile()Rainer Gerhards2007-07-311-90/+112
|
* - added macro to abort a function and go to finalizerRainer Gerhards2007-07-311-23/+34
| | | | - added output of config file line number when a parsing error occured
* added macro to consistently define iRetRainer Gerhards2007-07-311-5/+5
|
* - added doGetInt() to cfsysline.c and adapted dynaFileChaceSize handler toRainer Gerhards2007-07-311-36/+16
| | | | use it
* - moved the SetCCEscapeCharacter config file directive to cfsysline.c andRainer Gerhards2007-07-311-23/+1
| | | | also generalized it for further use while doing so
* - moved umask & file/dir creation mode parsing to cfsysline.cRainer Gerhards2007-07-311-75/+14
| | | | - added macro for easy and consistent check of iRet return value
* moved doGetGID() to cfsysline.cRainer Gerhards2007-07-311-35/+2
|
* fixed insufficient memory allocation in addAction() and its helpers. TheRainer Gerhards2007-07-301-22/+43
| | | | | | initial fix and idea was developed by mildew, I fine-tuned it a bit. Thanks a lot for the fix, I'd probably had pulled out my hair to find the bug...
* moved doBinaryOption() and doGetGUID() to cfsysline.cRainer Gerhards2007-07-301-116/+10
|
* - fixed a memory leak in syslogd/init() that happend when the config fileRainer Gerhards2007-07-301-2/+2
| | | | could not be read - thanks to varmojfekoj for the patch
* fixed a problem with shutting down the worker thread and freeing theRainer Gerhards2007-07-291-5/+14
| | | | | selector_t list - this caused messages to be lost, because the message queue was not properly drained before the selectors got destroyed.
* removed selector_t f references from output modulesRainer Gerhards2007-07-271-7/+7
|
* - added omsr object (objomsr.c, objomsr.h) - template request for outputRainer Gerhards2007-07-271-76/+169
| | | | | | modules - changed doAction() interface - templates and output string generation for doActon() is now fully
* forgot to undo some changes - now doneRainer Gerhards2007-07-271-5/+0
|
* undone last change - was not a good idea. Designed a smarter interface.Rainer Gerhards2007-07-271-27/+0
|
* added IDs to selector_tRainer Gerhards2007-07-261-1/+32
|
* - changed doAction() interface to contain the full message stringRainer Gerhards2007-07-261-183/+10
| | | | - f_iov and its handling has been removed
* - implemented needUDPSocket() interfaceRainer Gerhards2007-07-261-13/+8
| | | | | | | | - replaced (mis) use of f_prevcount in omfwd.c -> now data element in instance data is used for retry counting - removed f->f_type from syslogd.c, omfwd.c - removed f->f_file from omfwd.c, omfile.c - f->f_flags is gone away
* - removed f_type from omshell.c, omdiscard.c, omusrmsg.c, ommysql.cRainer Gerhards2007-07-261-8/+0
| | | | | | | - removed f_type from syslogd.c/cflineParseFileName() - fixed bug in omfile.c which could lead to invalid addressing if "-" was given to not sync file - removed f_type from omfile.c
* - changed doAction() interface to include module data pointerRainer Gerhards2007-07-261-1/+1
| | | | | | - removed references to f_un from omusrmsg.c - changed module template for parseSelectorAct() [code reduction, consitency]
* - implemented onSelectReadyWrite() interfaceRainer Gerhards2007-07-261-17/+7
| | | | - milestone reached: no more access to f->f_un in syslogd.c
* fixed a situation where rsyslogd could create zombie processes thanks toRainer Gerhards2007-07-261-1/+1
| | | | mildew for the patch
* introduced getWriteFDForSelect() module APIRainer Gerhards2007-07-251-6/+5
|
* brought emergency logging to a somewhat cleaner stateRainer Gerhards2007-07-251-47/+15
|
* moved some references to module data from syslogd.c to modulesRainer Gerhards2007-07-251-34/+11
|
* moved code to output moduleRainer Gerhards2007-07-251-14/+0
|
* use new dbgPrintInstInfo() interfaceRainer Gerhards2007-07-251-41/+1
|
* changed calling interface for freeInstance() - need to work with dualRainer Gerhards2007-07-251-1/+1
| | | | buffers in order to change output modules one by one
* changed output modules to use a template-based code generation system forRainer Gerhards2007-07-251-4/+6
| | | | standard entry points (implemented via preprocessor)
* added fix for startup permission checks - thanks to Michel SamiaRainer Gerhards2007-07-251-0/+2
|
* fixed a bug that caused rsyslogd to segfault on exit (and probably also onRainer Gerhards2007-07-251-1/+5
| | | | | | | HUP), when there was an unsent message in a selector that required forwarding and the dns lookup failed for that selector (yes, it was pretty unlikely to happen;)) thanks to varmojfekoj <varmojfekoj@gmail.com> for the patch
* hardned syslogd for a very unusual low memory conditionRainer Gerhards2007-07-241-2/+7
|
* removed previous emergency logging system on startup, because it is notRainer Gerhards2007-07-241-21/+1
| | | | | compatible with the new modules; need to re-implement the full functionality, currently stderr is used
* applied patch from Michel Samia which solved problems when compilingRainer Gerhards2007-07-241-3/+7
| | | | without Internet support
* TypeName is now pulled from the module itselfRainer Gerhards2007-07-241-11/+3
|
* removed no-longer-used TESTING conditional compilationRainer Gerhards2007-07-241-51/+3
|
* added freeInstance() call to output module interface; re-structuredRainer Gerhards2007-07-241-108/+68
| | | | ressource release code in syslogd.c
* removed F_UNUSED and cleaned up action-disabling handlingRainer Gerhards2007-07-241-17/+21
|
* major task: made sure no selector_t is created for selector lines that canRainer Gerhards2007-07-241-37/+66
| | | | | not be successfully loaded. That forced me to change a lot of code, with potential for trouble.
* applied patch from varmojfekoj to solve small mem leakRainer Gerhards2007-07-241-0/+20
|