You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ChangeLog 16KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386
  1. 2009-05-27 Alban Deniz <adeniz@skidmark.localdomain>
  2. * Makefile.am: Include Makefile.am and ChangeLog in the
  3. distribution.
  4. 2009-05-23 Alban Deniz <adeniz@skidmark.localdomain>
  5. * Makefile.am (noinst_HEADERS): Added faults.hpp and
  6. mangler.hpp.
  7. (libCodeDweller_a_SOURCES): Added mangler.cpp.
  8. SNF Command Line & SNFMulti Engine / Client Change Log
  9. ------------------------------------------------------------------------------
  10. 20080710 - Version 3.0.1
  11. Minor change to SNFServer main.cpp:59 - removed cast to (int) which caused
  12. a precision loss error when compiling on 64 bit systems. This changes the
  13. thread pointer info in debug mode slightly (better).
  14. 20080626 - Version 3.0, It's official.
  15. Changed build information.
  16. Removed extraneous comments from configuration file.
  17. 20080524 - Version V2-9rc2.25.7
  18. Optimized networking library for additional speed & stability by moving
  19. receive buffer allocation from heap to stack (automatic).
  20. Optimized timing parameters in SNFClient for improved speed. Polling dealys
  21. are now reduced to 10ms from 30ms.
  22. Removed speed-bug in SNFClient, 100ms guard time between retries was always
  23. executed after an attempt (even a successful attempt). The guard time is now
  24. condition and only fires on unsuccessful attempts.
  25. Updated XCI server logic to ensure non-blocking sockets for clients in all
  26. socket implementations.
  27. 20080424 - Version V2-9rc2.24.6
  28. Refactored snfScanData.clear() to reduce heap work and fragments.
  29. Added mutex to scanMessageFile() entry point just in case some app attempts to
  30. put multiple threads through a single engine handler. scanMessage() is already
  31. protected and fully wraped by the new scanMessageFile() mutex.
  32. Added non-specific runtime exception handling to XHDR injection code.
  33. Added 2 retries w/ 300ms delay to remove original message in XHDR inject code.
  34. If remove fails after 3 attempts the injector throws.
  35. Added 2 retries w/ 300ms delay to rename temp file to msg in XHDR inject code.
  36. If rename fails after 3 attempts the injector throws.
  37. 20080416 - Version V2-9rc2.23.6
  38. Fixed bug where SNCY open() would fail on some Win* platforms with
  39. WSAEINVAL instead of the standard EINPROGRESS or EALREADY which were expected.
  40. Also added WSAEWOULDBLOCK to cover other "ambiguities" in windows sockets
  41. implementations. InProgress() on Win* now test for any of:
  42. WSAEINPROGRESS, WSAEALREADY, WSAEWOULDBLOCK, WSAEINVAL
  43. 20080413 - Version V2-9rc2.22.6
  44. Fixed bug in TCPHost.open() where EALREADY was not counted as a version of
  45. EINPROGRESS. This would cause open() to throw an unnecessary exception when
  46. an open() required extra time.
  47. 20080413 - Version V2-9rc2.21.6
  48. Extended timeout for SYNC session open() to the full session length. This way
  49. if a session takes a long time to open it still has a shot at success.
  50. 20080411 - Version V2-9rc2.20.6
  51. Adjusted snfNETmgr to use non-blocking open in SYNC sessions. Open timeout
  52. is 1/3 of the session timeout. Session timeout is 2 * Session pacing. Open
  53. polling uses golden spiral delay from 10ms to 340ms.
  54. 20080410 - Version V2-9rc2.19.6
  55. Adjusted XCI manager to use new snfCFGPacket paradigm in checkCFG().
  56. Adjusted snf_RulebaseHandler::addRulePanic() to use MyMutex and eliminated
  57. the AutoPanicMutex and waiting scheme.
  58. Refactored scanMessage() to use a ScopeMutex() rather than lock()/unlock().
  59. Refactored scanMessage() to use MyCFGPacket.isRulePanic() test.
  60. Redesigned snfCFGPacket handling to automate grab() / drop() functions.
  61. Fixed lock-up bug: Redesigned AutoPanic posting and checking mechanisms to
  62. eliminate potential dead-lock condition. Under some conditions a precisely
  63. timed auto-panic posting could cause the RulebaseHandler mutex and the
  64. AutoPanicMutex to become intertwined leading to a cascading deadlock. When
  65. this occurred all XCI processing threads and eventually the XCI listener
  66. thread would become blocked waiting to get the current configuration.
  67. 20080409 - Version V2-9rc2.18.6
  68. Enhanced XCI exception handling and logging to provide additional detail.
  69. Added code to explicitely check for zero length files in scanMessagFile().
  70. Previously a zero length file would cause the CBFR module of the filter
  71. chain to throw an invalid buffer exception. Now if the message file is empty
  72. scanMessageFile() will throw a FileError stating FileEmpty!.
  73. 20080407 - Version V2-9rc2.17.6
  74. Enhanced exception reporting in snfXCImrg
  75. 20080405 - SNFServer V2-9rc2.16.6
  76. Reduced safetly limits on status reports to 100K for status reports and 100K
  77. for samples. Previous values were 10M. Most full sessions from the busiest
  78. systems are < 50K total.
  79. Recoded sendDataTimeout() to break uploads into 512 byte chunks and insert
  80. delays only when a chunk is fragmented. This methodology improves reliability
  81. on Win* systems without any significant penalty on systems that don't need
  82. socket sends() to be in smaller chunks.
  83. Fixed TCPClient::transmit() and TCPHost::transmit() bug where returned byte
  84. count might be -1. Now returned byte counts can only be 0 or more.
  85. 20080403 - SNFServer V2-9rc2.15.5
  86. Minor modifications to networking module to better support non-blocking open()
  87. Updated SNFClient with new timing and non-blocking open(). Worst case return
  88. time from SNFClient estimated at 200 seconds (theoretically impossible). No-
  89. connection return time from SNFClient estimated at 20 seconds.
  90. 20080326 - SNFServer V2-9rc2.15.4
  91. Refactored snfNETmgr::sync() to consolidate non-blocking io routines.
  92. Added detailed thread status data to XCI listener thread.
  93. Fixed minor bug in main (not changing revision), Debug flag for internal use
  94. was left on in the last build cycle. It is commented out now.
  95. 20080325 - SNFServer V2-9rc2.14.4
  96. Updated snfNETmgr with comprehensive thread status data.
  97. Refactored snfNETmgr::sync() to check a Timeout, removed TCPWatchdog.
  98. 20080325 - SNFServer V2-9rc2.13.4
  99. Upgraded TCPWatcher code to use new threading features (type, status).
  100. 20080324 - SNFServer v2-9rc2.12.4
  101. Added a "Rulebase Getter" feature as part of the snf_Reloader. When enabled
  102. the Rulebase Getter will launch a user defineable system() call whenever a
  103. new rulebase file is available. The call will be repeated until the condition
  104. is cleared by a successful update of the rulebase file. The Rulebase Getter
  105. will wait a configurable "guard time" between attempts. The default system()
  106. call is "getRulebase" with a guard time of 3 minutes. In most cases this will
  107. launch the provided getRulebase script which should be present in the start
  108. location of SNFServer on most systems. Best practice is to configure the full
  109. path to the update script. The system() call is made in a separate thread so
  110. that if the system() call hangs for some reason only the Rulebase Getter is
  111. stuck.
  112. Built thread monitoring function for SNFServer.exe (Full status report / sec).
  113. The thread monitoring report is turned on when the program is renamed to
  114. SNFDebugServer.exe or if "debug" appears in the file path to the program.
  115. Refactored XCI channels to leverage new thread monitoring.
  116. Refactored Threading to eliminate inline code.
  117. Improved exception handling/reporting in scanMessageFile().
  118. Updated scanMessagFile() header injection code to accommodate messages with
  119. no body. Previous version would throw an exception when it could not find an
  120. injection point. The new version makes the injection point byte 0 and puts
  121. the injected headers at the top of the message using it's best guess about the
  122. type of line endings (CRLF or LF) to use.
  123. Updated Threading library to include high level thread state tracking and
  124. naming. Also creates a global Threads object that can produce a real-time
  125. status report on all threads.
  126. Updated Networking library to use SO_REUSEADDR by default on listeners.
  127. 20080318 - SNF2-9rc1.11.exe Consolidated several mods/fixes
  128. Corrected scan error logging bug. Was posting <s/> now posts <e/>.
  129. Updated scan error logging to be more uniform with non-scan errors.
  130. Developed various script prototypes for postfix integration & automated
  131. updates on win* systems using the new UpdateReady.txt file mechanism.
  132. Fixed a bug in scanMessageFile() where an \n\n style insertion point
  133. would never be detected.
  134. Modified scanMessageFile() header injection to strip <CR> from line ends
  135. when the message file provided does not use them. The line-end style of
  136. the message file is detected while locating the insertion point. If the
  137. insertion point (first blank line) does not use <CR><LF> then the SNF
  138. generated X-Headers are stripped of <CR> in a tight loop before injection.
  139. Enhanced error and exception reporting in SNFMulti.cpp scanMessageFile().
  140. Enhanced exception handling in networking module. All exceptions now
  141. throw descriptive runtime_error exceptions.
  142. 20080306 - SNF2-9rc1.8.exe (FIRST RELEASE CANDIDATE for VERSION 3!)
  143. Added Drilldown Header Directive Functions - When the candidate source IP
  144. comes from a header matching a drilldown directive the IP is marked "Ignore"
  145. in GBUdb and the candidate is no longer eligible to be the source for that
  146. message. This allows SNF to follow the trusted chain of devices (by IP) down
  147. to the actual source of the message. It is handy for ignoring net blocks
  148. because it can match partial IPs but it is designed to allow SNF to learn
  149. it's way through the servers at large ISPs so that the original source for
  150. each message can be evaluated directly.
  151. Added Source Header Directive Functions - This feature allows SNF to acquire
  152. the source IP for a message from a specific header rather than searching
  153. through the Received headers in the message. This is useful when the original
  154. source for a message is not represented in Received headers. For example:
  155. Hotmail places the originating source IP in a special header and does not
  156. provide a Received header for that IP. This feature is protected from abuse
  157. by a "Context" feature which only activates the source header directive when
  158. specific content is found in a specific received header. Using the above
  159. example, this feature can be configured so that a Hotmail source header would
  160. only be read if the top Recieved header contained "hotmail.com [" indicating
  161. that the ptr lookup for the header matched the hotmail domain. Note: When a
  162. source is pulled from a header directive that source is put into a synthetic
  163. Received header and injected into the scanning stream (not the message) as
  164. the first Received header.
  165. Added forced source IP to XCI - It is now possible to "inject" or "force"
  166. the source IP for any message by providing that IP in the XCI request or
  167. directly in a scan...() function call. This allows the calling application
  168. to provide the source IP for a message ahead of any Received headers that
  169. might be in the message. This is useful when the calling application knows
  170. the original source IP for the message but that IP is not represented in
  171. the Received headers and it is not desireable to use the Source Header
  172. Directive mechanism.
  173. Added forced source IP mode to SNFClient - It is now possible to call the
  174. SNFClient utility with an IP4Address using the syntax:
  175. SNFClient -source=12.34.56.78
  176. The -source mode of SNFClient exercises the forced source IP feature in
  177. the XCI (see above)
  178. Added Status Report features to SNFClient and XCI - It is now possible to
  179. request the latest status.second, status.minute, or status.hour data via
  180. the XCI and SNFClient. The syntax for requesting a status report using the
  181. SNFClient is:
  182. SNFClient -status.second
  183. SNFClient -status.minute
  184. SNFClient -status.hour
  185. In addition to providing status reports the SNFClient in this mode will
  186. return a nonzero value (usually 99) if it is unable to get a status report
  187. from SNFServer. This feature can be used to verify that SNFServer is up
  188. and responding. If SNFServer is OK then the result code returned is 0.
  189. Added result codes to SNFClient -test and XCI IP test functions - The XCI
  190. engine has been upgraded to provide the range value for the IP under test
  191. as well as the symbolic result code associated with that range. This allows
  192. the -test function to provide results that are consistent with the GBUdb
  193. configuration without additional processing: For example, if the IP falls
  194. in the Caution range then the Caution result code will be returned just
  195. as if a message had been scanned with the same IP and no pattern match
  196. occurred. The same is true for Truncate and Black range hits.
  197. Added Timestamp and Command Line Parameter data to SNFClient.exe.err - When
  198. an error occurs with SNFClient that may not appear in the SNFServer logs an
  199. entry is appended to the SNFClient.exe.err file. That in itself is not new.
  200. The new feature is that the entries added to the SNFClient.exe.err file now
  201. include timestamp and command line data to aid in debugging.
  202. Added BIG-ENDIAN Conversion - When the SNFServer program is compiled on a
  203. system that uses a BIG-ENDIAN processor (such as a power-mac) the rulebase
  204. load process now includes a routine to convert the token matrix from it's
  205. native LITTLE-ENDIAN format to a BIG-ENDIAN format. This solves a bug where
  206. Power-Mac (and presumably other BIG-ENDIAN systems) could compile and run
  207. the SNF* software but were unable to capture spam because the token matrix
  208. in the rulebase file was misinterpreted.
  209. Note: The BIG-ENDIAN Conversion feature is still considered experimental
  210. because it has not yet been thoroughly tested.
  211. Updated the Configuration Log to include all of the current configuration
  212. features and to improve it's readability.
  213. 20080207 - SNF2-9b1.7.exe
  214. SYNC Timeout now 2x SYNC Schedule
  215. SNFServer now produces an UpdateReady.txt file when the UTC timestamp on
  216. the SYNC server is newer than the UTC timestamp of the active rulebase. It
  217. is presumed that a suitable update script or program will run periodically
  218. and download a fresh rulebase file if the UpdateReady.txt file is present.
  219. The update script should remove the UpdateReady.txt file when it completes
  220. a successful download of the new rulebase file.
  221. Added available rulebase UTC in status reports <udate utc.../>
  222. Added Automatic path fixup for ending / or \
  223. Added option to use local time in log rotation <rotation localtime='no'/>
  224. The default is still utc.
  225. 20071102 - SNF2-9b1.6.exe
  226. Increased MAX_EVALS from 1024 to 2048.
  227. Adjusted defult range envelopes in snf_engine.xml to be more conservative.
  228. 20071017 - SNF2-9b1.5.exe
  229. Added a missing #include directive to the networking.hpp file. The
  230. missing #include was not a factor on Linux and Windows systems but
  231. caused compiler errors on BSD systems.
  232. Corrected a bug in the GBUdb White Range code where any message with a
  233. white range source IP was being forced to the white result code. The
  234. engine now (correctly) only forces the result and records the event when
  235. a black pattern rule was matched and the White Range IP causes that
  236. scan result to be overturned. If the scan result was not a black pattern
  237. match then the original scan result is allowed to pass through.
  238. Corrected a bug in the Header Analysis filter chain module that would
  239. cause the first header in the message to be ignored in some cases.
  240. Corrected an XML log format problem so that <s/> elements are correctly
  241. open ended <s ....> or closed (empty) <s..../> according to whether they
  242. have subordinate elements.
  243. Adjusted the GBUdb header info format. The order of the Confidence
  244. figure and Probabilty figure is now the same as in the XML log files
  245. (C then P). The confidence and probability figures are now preceeded
  246. with c= and p= respectively so that it's easy to tell which is which.
  247. 20071009 - SNF2-9b1.4.exe
  248. Tightened up the XCI handler code and removed the watchdog. The watchdog
  249. would restart the listener if there were no connections in 5 minutes. It
  250. was originally added to provide additional stability, however in practice
  251. there have been no "stalled listeners". Also, a stalled listener would
  252. likely be a sign of a different problem that the watchdog would tend to
  253. hide.
  254. Modified and refactored the XCI configuration management code. All XCI config
  255. changes and up-down operations are now handled in a single function except
  256. upon exit from the main XCI thread where XCI_shutdown() is always called.
  257. Added some more detailed exception handling code to the XCI component so that
  258. more data will be logged in the event of an error.
  259. 20071008 - SNF2-9b1.2.exe
  260. Added support for passing Communigate Message Files directly. Communigate adds
  261. data to the top of the message file. That data stops at the first blank line and
  262. the rfc822 message begins. The SNFServer engine can now be told to ignore this
  263. extra data using the following option:
  264. <msg-file type='cgp'/> <!-- type='cgp' for communigate message files -->
  265. If the msg-file type is anything other than 'cgp' then it will treat the message
  266. file as a standard rfc822 message in the usual way. The default setting is
  267. <msg-file type='rfc822'/>