summaryrefslogtreecommitdiffstats
path: root/runtime/msg.c
Commit message (Collapse)AuthorAgeFilesLines
...
* | Merge branch 'v4-beta' into betaRainer Gerhards2009-09-141-1/+3
|\|
| * fixed some minor portability issuesRainer Gerhards2009-09-141-1/+3
| |
* | Merge branch 'v4-beta' into betaRainer Gerhards2009-09-101-3/+8
|\| | | | | | | | | Conflicts: action.c
| * bugfix: repeated messages were incorrectly processedRainer Gerhards2009-09-101-3/+8
| | | | | | | | | | | | | | | | | | this could lead to loss of the repeated message content. As a side- effect, it could probably also be possible that some segfault occurs (quite unlikely). The root cause was that some counters introduced during the malloc optimizations were not properly duplicated in MsgDup(). Note that repeated message processing is not enabled by default.
* | Merge branch 'master' into udpspoof & cleanup & slight optimizationRainer Gerhards2009-07-091-163/+184
|\| | | | | | | | | | | | | | | | | Conflicts: runtime/msg.c I messed up and did some changes during the merge commit ;) But these are not large, just a little bit of cleanup and some very slight optimizations inside the msg object.
| * small performance improvement and cleanupRainer Gerhards2009-07-091-153/+166
| | | | | | | | | | | | optimized substring processing, should bring a small enhancement when forwarding with the default forwarding templates. Also did some uchar cleanup in msg.c (thus so many changes, in reality they are few...).
| * bugfix: message could be truncated after TAG, often when forwardingRainer Gerhards2009-07-091-1/+1
| | | | | | | | | | | | This was a result of an internal processing error if maximum field sizes had been specified in the property replacer. Also did some testbench improvements, including omstdout.
* | bugfix: message could be truncated after TAG, often when forwardingRainer Gerhards2009-07-091-1/+1
|/ | | | | This was a result of an internal processing error if maximum field sizes had been specified in the property replacer.
* bugfix: property msg was lost when working with disk queuesRainer Gerhards2009-07-071-5/+12
|
* bugfix: properties inputname, fromhost, fromhost-ip were lostRainer Gerhards2009-07-071-5/+3
| | | | ... when working with disk queues.
* bugfix: abort condition when RecvFrom was not set and message reduction was onRainer Gerhards2009-07-061-6/+12
| | | | Happend e.g. with imuxsock.
* now put the new property-based methods to good useRainer Gerhards2009-07-011-25/+33
| | | | | | ... hopefully reducing the number of allocs/frees as well as overall memory usage in a busy system (plus that these shared properties hopefully remain in cache longer than its single-instance counterparts...)
* RcvFromIP now also a propertyRainer Gerhards2009-07-011-31/+66
| | | | | | This sets stage to enable use of the property-interface to speed up things (mildly), the next step to be done. I have also fixed one regression of yesterday's changes.
* introduced a new way of handling the RcvFrom propertyRainer Gerhards2009-06-301-38/+53
| | | | | | | | | | | ... plus a fix for a long-time bug in obj-types.h. That lead to the object pointer only then to become NULL when the object was actually destructed, I discovered this issue during introduction of the pRcvFrom property in msg_t, but it potentially had other effects, too. I am not sure if some experienced instability resulted from this bug OR if its fix will cause harm to so-far "correctly" running code. The later may very well be. Thus I will change it only for the current branch and also the beta, but not in all old builds. Let's see how things evolve.
* finished transition to using inputName propertyRainer Gerhards2009-06-301-97/+176
| | | | | ... plus some celanup and adding minor missing functionality (the rule debug info again tell the property name, not just number).
* introduced the idea of detached propertiesRainer Gerhards2009-06-291-25/+66
| | | | | | | | | | | | | some things inside the message can be used over a large number of messages and need to to be allocated and re-written every time. I now begin to implement this as a "prop_t" object, first use for the inputName. Some input modules are already converted, some others to go. Will do a little performance check on the new method before I go further. Also, this commit has some cleanup and a few bug fixes that prevented compiliation in debug mode (I overlooked this as I did not compile for debug, what I normally do, and the automatted test also does not do that)
* optimization: propert names are now internally identified by integersRainer Gerhards2009-06-261-121/+235
|
* got rid of the recursive requirement for msg_t mutex (finally!)Rainer Gerhards2009-06-261-156/+111
|
* some more stringbuffer optimizationRainer Gerhards2009-06-251-6/+2
|
* backported "clean" increment of memory trim counter (not protected by mutex)Rainer Gerhards2009-06-251-3/+5
|
* cleanup (removed now-unused parameters)Rainer Gerhards2009-06-251-9/+9
|
* Merge branch 'beta'Rainer Gerhards2009-06-241-0/+2
|\
| * Merge branch 'v4-stable' into betaRainer Gerhards2009-06-241-0/+2
| |\
| | * Merge branch 'v3-stable' into v4-stableRainer Gerhards2009-06-241-0/+2
| | |\
| | | * bugfix: invalid mutex release in msg.cRainer Gerhards2009-06-241-0/+2
| | | | | | | | | | | | | | | | | | | | Detected under threading debugger, seems not to have any impact on actual deployments.
| | * | Merge branch 'beta'Rainer Gerhards2009-04-091-0/+2
| | |\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog tcpsrv.c tcpsrv.h Note: we have a slight inconsistency, as interface version v4 was already used for tcpsrv in this branch. We accept this inconsistency.
| | | * Merge branch 'v3-stable' into betaRainer Gerhards2009-04-091-0/+2
| | | |\ | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog
| | | | * Merge branch 'v2-stable' into v3-stableRainer Gerhards2009-04-091-0/+2
| | | | |
* | | | | optimized TAG handlingRainer Gerhards2009-06-231-52/+35
| | | | |
* | | | | optimized hostname processingRainer Gerhards2009-06-231-5/+5
| | | | |
* | | | | restored repeated message reduction processingRainer Gerhards2009-06-231-16/+54
| | | | |
* | | | | some more optimizationsRainer Gerhards2009-06-231-4/+47
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - done malloc() instead of calloc() for msg_t, as we have large space which needs not be initialized - shrunk syslogTime structure in the hope to get better cache and write performance (non-aligned data should not hurt much here)
* | | | | optimized processing of TAG message fieldRainer Gerhards2009-06-221-21/+6
| | | | |
* | | | | some more optimizations of the msg_t object (minor)Rainer Gerhards2009-06-221-20/+17
| | | | |
* | | | | reduced memory footprint / "memory leak"Rainer Gerhards2009-06-221-0/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Testing has shown that at least the glibc malloc() subsystem returns memory to the OS far too late in our case. So we need to help it a bit, by calling malloc_trim(), which will tell the alloc subsystem to consolidate and return to the OS.
* | | | | fixed abort condition with oversize tagsRainer Gerhards2009-06-181-22/+11
| | | | | | | | | | | | | | | | | | | | this was a regression I introduced this afternoon
* | | | | optimized handling of MSG part in msg objectRainer Gerhards2009-06-181-9/+21
| | | | | | | | | | | | | | | | | | | | | | | | | WARNING: currently, message repeation processing is disabled, must be reenabled (but prefer to do some other tests first)
* | | | | slight optimization of template generationRainer Gerhards2009-06-181-2/+8
| | | | |
* | | | | some optimization in the property replacerRainer Gerhards2009-06-181-40/+48
| | | | |
* | | | | optimized TAG handling in msg objectRainer Gerhards2009-06-181-45/+72
| | | | |
* | | | | cleaned up/optimized raw message handling in msg objectRainer Gerhards2009-06-181-11/+32
| | | | |
* | | | | going forward in moving string-handling functions to new interface...Rainer Gerhards2009-06-171-10/+10
| | | | |
* | | | | some more optimization in msg object string handlingRainer Gerhards2009-06-171-44/+26
| | | | |
* | | | | further optimized message objectRainer Gerhards2009-06-171-115/+230
| | | | | | | | | | | | | | | | | | | | pri, facility and severity string generation simplified
* | | | | Merge branch 'master' into omfileRainer Gerhards2009-06-161-99/+71
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog runtime/msg.h tcps_sess.c tcpsrv.c tools/syslogd.c
| * | | | removed long-obsoleted property UxTradMsgRainer Gerhards2009-06-161-50/+50
| | | | | | | | | | | | | | | | | | | | | | | | | ... as well as some cleanup (some commented-out code is left to support UxTradMsg again is someone really complains ;)).
| * | | | done various optimizations to the stringbuf and its usersRainer Gerhards2009-06-161-24/+6
| | | | |
| * | | | some performance optimizationsRainer Gerhards2009-06-161-34/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - saved gettimeofday() calls in imtcp (and increased reception buffer) - somewhat optimized stringbuf.c - some other optimizations
* | | | | completed multi-ruleset core supportRainer Gerhards2009-06-121-2/+11
|/ / / / | | | | | | | | | | | | ... as well as added multi-ruleset support for imtcp
* | | | added capability to run multiple tcp listeners (on different ports)Rainer Gerhards2009-05-221-64/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Well, actually this and a lot of related things. I improved the testbench so that the new capabilities are automatically tested and also did some general cleanup. The current multiple tcp listener solution will probably receive some further cleanup, too, but looks quite OK so far. I also reviewed the way tcpsrv et all work, in preparation of using this code for imdiag. I need to document the findings, especially as the code is rather complicated "thanks" to the combination of plain tcp and gssapi transport modes.