Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

SNFMulti.cpp 136KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181
  1. // SNFMulti.cpp
  2. //
  3. // (C) Copyright 2006 - 2009 ARM Research Labs, LLC
  4. // See www.armresearch.com for the copyright terms.
  5. //
  6. // 20060121_M
  7. //
  8. // See SNFMulti.hpp for history and detailed notes.
  9. #include <sys/types.h>
  10. #include <sys/stat.h>
  11. #include <ctime>
  12. #include <cstring>
  13. #include <cstdlib>
  14. #include <sstream>
  15. #include "SNFMulti.hpp"
  16. #include "../CodeDweller/timing.hpp"
  17. //#include "../nvwa-0.6/nvwa/debug_new.h"
  18. using namespace std;
  19. //// Version Info
  20. const char* SNF_ENGINE_VERSION = "SNFMulti Engine Version 3.0.18 Build: " __DATE__ " " __TIME__;
  21. //// Script Caller Methods
  22. const ThreadType ScriptCaller::Type("Script Caller"); // Script caller thread type mnemonic.
  23. const ThreadState ScriptCaller::CallingSystem("In system()"); // Script caller "CallingSystem" state.
  24. const ThreadState ScriptCaller::PendingGuardTime("Guard Time"); // Script caller "GuardTime" state.
  25. const ThreadState ScriptCaller::StandingBy("Standby"); // Script caller "Standby" state.
  26. const ThreadState ScriptCaller::Disabled("Disabled"); // State when unable to run.
  27. const int ScriptGuardDefault = 180000; // 3 Minute Default Guard Time.
  28. ScriptCaller::ScriptCaller(string S) : // Script caller constructor (with name).
  29. Thread(ScriptCaller::Type, S), // Set up the thread type and name.
  30. GuardTimer(ScriptGuardDefault), // Initialize the guard time.
  31. GoFlag(false), // Not ready to go yet.
  32. DieFlag(false), // Not ready to die yet.
  33. myLastResult(0) { // No last result yet.
  34. run(); // Launch the thread.
  35. }
  36. ScriptCaller::~ScriptCaller() { // Destructor.
  37. DieFlag = true; // Set the die flag.
  38. Sleeper WaitATic(1000); // One second sleeper.
  39. for(int x = 10; x > 0; x--) { // We don't join, we might get stuck.
  40. if(false == isRunning()) break; // If we're still running then wait
  41. WaitATic(); // up to 10 seconds, then just exit.
  42. } // If the thread is stuck it will
  43. } // just get closed.
  44. string ScriptCaller::ScriptToRun() { // Safely grab the SystemCallText.
  45. ScopeMutex Freeze(MyMutex); // Protect the string.
  46. return SystemCallText; // Grab a copy of the text.
  47. }
  48. bool ScriptCaller::hasGuardExpired() { // True if guard time has expired.
  49. ScopeMutex Freeze(MyMutex); // Protect the timer.
  50. return GuardTimer.isExpired(); // If it has expired we're true.
  51. }
  52. void ScriptCaller::SystemCall(string S) { // Set the SystemCall text.
  53. ScopeMutex Freeze(MyMutex); // Protect the string object.
  54. SystemCallText = S; // Set it's data.
  55. }
  56. const int MinimumGuardTime = 60000; // Minimum Guard Time 1 minute.
  57. void ScriptCaller::GuardTime(int T) { // Set the Guard Time.
  58. if(MinimumGuardTime > T) T = MinimumGuardTime; // Enforce our lower limit.
  59. ScopeMutex Freeze(MyMutex); // Protect the Guard Timer.
  60. GuardTimer.setDuration(T); // Set the duration.
  61. GuardTimer.restart(); // Restart the timer.
  62. }
  63. void ScriptCaller::trigger() { // Trigger the system() call.
  64. GoFlag = true; // Set the flag.
  65. }
  66. int ScriptCaller::LastResult() { // Return the result code from
  67. return myLastResult; // the last system() call.
  68. }
  69. void ScriptCaller::myTask() { // Safely call system() when triggered.
  70. Sleeper WaitATic(1000); // One second sleeper.
  71. while(false == DieFlag) { // While it's not time to die:
  72. WaitATic(); // Pause for 1 sec each round.
  73. string ScriptThisRound = ScriptToRun(); // Grab the current script.
  74. if(0 < ScriptToRun().length()) { // If script text is defined and
  75. if(true == GoFlag) { // If GoFlag is triggered and
  76. if(hasGuardExpired()) { // Guard time is expired:
  77. CurrentThreadState(CallingSystem); // Publish our state.
  78. myLastResult = system(ScriptThisRound.c_str()); // Make the system call.
  79. GoFlag = false; // Done with that trigger.
  80. GuardTimer.restart(); // Restart our Guard Time.
  81. } else { // If we're waiting for Guard Time:
  82. CurrentThreadState(PendingGuardTime); // publish that state and hold down
  83. GoFlag = false; // the trigger signal (no stale go).
  84. }
  85. } else { // If nothing is triggered yet then
  86. CurrentThreadState(StandingBy); // we are standing by.
  87. }
  88. } else { // If we have no script to run then
  89. CurrentThreadState(Disabled); // we are disabled.
  90. }
  91. }
  92. }
  93. //// Rulebase Reloader Methods
  94. // How to get timestamps on critical files.
  95. time_t getFileTimestamp(string FileName) {
  96. struct stat FileNameStat; // First we need a stat buffer.
  97. if(0 != stat(FileName.c_str(), &FileNameStat)) { // If we can't get the stat we
  98. return 0; // will return 0;
  99. } // If all goes well we return
  100. return FileNameStat.st_mtime; // the last modified time_t.
  101. }
  102. void snf_Reloader::captureFileStats() { // Get stats for later comparison.
  103. snfCFGData& C = *(MyRulebase.MyCFGmgr.ActiveConfiguration()); // Reference the active config.
  104. RulebaseFileCheckName = C.RuleFilePath; // Build/Get Rulebase File Name.
  105. ConfigFileCheckName = C.ConfigFilePath; // Build/Get Configuration File Name.
  106. IgnoreListCheckFileName = C.paths_workspace_path; // Build/Get Ignore File Name.
  107. IgnoreListCheckFileName.append("GBUdbIgnoreList.txt");
  108. RulebaseFileTimestamp = getFileTimestamp(RulebaseFileCheckName); // Timestamps to check for
  109. ConfigurationTimestamp = getFileTimestamp(ConfigFileCheckName); // changes in configuration data
  110. IgnoreListTimestamp = getFileTimestamp(IgnoreListCheckFileName); // or rulebase files.
  111. }
  112. bool snf_Reloader::StatsAreDifferent() { // Check file stats for changes.
  113. return ( // Return true if any of the
  114. RulebaseFileTimestamp != getFileTimestamp(RulebaseFileCheckName) || // Rulebase File, or the
  115. ConfigurationTimestamp != getFileTimestamp(ConfigFileCheckName) || // Configuration File, or the
  116. IgnoreListTimestamp != getFileTimestamp(IgnoreListCheckFileName) // Ignore List File have changed.
  117. );
  118. }
  119. const int MSPerSec = 1000; // 1000 milliseconds per second.
  120. void snf_Reloader::captureGetterConfig() { // Update RulebaseGetter config.
  121. snfCFGData& C = *(MyRulebase.MyCFGmgr.ActiveConfiguration()); // Reference the active config.
  122. RulebaseGetterIsTurnedOn = ( // Is the script caller on or off?
  123. true == C.update_script_on_off && // We're on if the bit is set and
  124. 0 < C.update_script_call.length() // we have a non-empty script to call.
  125. );
  126. if(RulebaseGetterIsTurnedOn) { // If it is turned on:
  127. RulebaseGetter.SystemCall(C.update_script_call); // Set the script call and
  128. RulebaseGetter.GuardTime(C.update_script_guard_time * MSPerSec); // the cycle guard time.
  129. }
  130. else { // If the scripter is turned off:
  131. RulebaseGetter.SystemCall(""); // Set the script to nothing.
  132. }
  133. }
  134. const string snfReloadContext = "--RELOADING--"; // Context for info and error logs.
  135. void snf_Reloader::myTask() { // How do we do this refresh thing?
  136. Sleeper WaitATic(1000); // Wait a second between checks.
  137. while(!TimeToStop) { // While it's not time to stop:
  138. if(
  139. RulebaseGetterIsTurnedOn && // If our rulebase getter is enabled
  140. MyRulebase.MyLOGmgr.isUpdateAvailable() // and a new rulebase is availalbe:
  141. ) {
  142. RulebaseGetter.trigger(); // Trigger the update script (if any).
  143. }
  144. if(StatsAreDifferent()) { // Check the stats. If different:
  145. try { // safely attempt a reload.
  146. WaitATic(); // Wait a tic to let things stabilize
  147. MyRulebase.refresh(); // then call refresh on the handler.
  148. captureFileStats(); // If it works, capture the new stats.
  149. captureGetterConfig(); // Also update the RulebaseGetter.
  150. MyRulebase.logThisInfo( // Log our success.
  151. snfReloadContext, snf_SUCCESS, "Success");
  152. }
  153. catch(snf_RulebaseHandler::IgnoreListError) { // If we get an IgnoreListError - say so.
  154. MyRulebase.logThisError(
  155. snfReloadContext, snf_ERROR_RULE_FILE, "IgnoreListError");
  156. }
  157. catch(snf_RulebaseHandler::ConfigurationError) { // If we get a ConfigurationError - say so.
  158. MyRulebase.logThisError(
  159. snfReloadContext, snf_ERROR_RULE_FILE, "ConfigurationError");
  160. }
  161. catch(snf_RulebaseHandler::FileError x) { // If we get a FileError - say so.
  162. MyRulebase.logThisError(
  163. snfReloadContext, snf_ERROR_RULE_FILE, "FileError");
  164. }
  165. catch(snf_RulebaseHandler::AuthenticationError x) { // If we get a Auth Error - say so.
  166. MyRulebase.logThisError(
  167. snfReloadContext, snf_ERROR_RULE_AUTH, "AuthError");
  168. }
  169. catch(snf_RulebaseHandler::Busy x) { // If we get a Busy Exception - say so.
  170. MyRulebase.logThisError(
  171. snfReloadContext, snf_ERROR_UNKNOWN, "BusyError");
  172. }
  173. catch(snf_RulebaseHandler::Panic x) { // If we get a Panic - say so.
  174. MyRulebase.logThisError(
  175. snfReloadContext, snf_ERROR_UNKNOWN, "PanicError");
  176. }
  177. catch(...) { // If we get some other error - shout!
  178. MyRulebase.logThisError(
  179. snfReloadContext, snf_ERROR_UNKNOWN, "UnhandledError");
  180. }
  181. }
  182. WaitATic(); // Wait before the next loop.
  183. }
  184. }
  185. const ThreadType snf_Reloader::Type("snf_Reloader"); // The thread's type.
  186. snf_Reloader::snf_Reloader(snf_RulebaseHandler& R) : // When we are created, we
  187. Thread(snf_Reloader::Type, "Reloader"), // brand and name our thread.
  188. MyRulebase(R), // Capture the rulebase handler.
  189. TimeToStop(false), // It's not time to stop yet.
  190. RulebaseGetter("RulebaseGetter"), // Setup our ScriptCaller thread.
  191. RulebaseGetterIsTurnedOn(false) { // Rulebase getter is off at first.
  192. captureFileStats(); // Set up the initial stats.
  193. captureGetterConfig(); // Set up RulebaseGetter config.
  194. run(); // Run our maintenenace thread.
  195. }
  196. snf_Reloader::~snf_Reloader() { // When we are destroyed we
  197. TimeToStop = true; // set our time to stop bit
  198. join(); // and wait for the thread.
  199. }
  200. //// snfCFGPacket Methods
  201. snfCFGPacket::snfCFGPacket(snf_RulebaseHandler* R) : // When we are created:
  202. MyRulebase(R), // Capture our rulebase handler and
  203. MyTokenMatrix(NULL), // ready our token matrix and
  204. MyCFGData(NULL) { // cfg pointers.
  205. if(MyRulebase) { MyRulebase->grab(*this); } // Safely grab our rulebase.
  206. }
  207. snfCFGPacket::~snfCFGPacket() { if(MyRulebase) MyRulebase->drop(*this); } // Safely drop our rulebase when we die.
  208. TokenMatrix* snfCFGPacket::Tokens() { return MyTokenMatrix; } // Consumers read the Token Matrix and
  209. snfCFGData* snfCFGPacket::Config() { return MyCFGData; } // the snfCFGData.
  210. bool snfCFGPacket::bad() { // If anything is missing it's not good.
  211. return (NULL == MyTokenMatrix || NULL == MyCFGData); // True if any of these aren NULL.
  212. }
  213. bool snfCFGPacket::isRulePanic(int R) { // Test for a rule panic.
  214. return(RulePanics.end() != RulePanics.find(R)); // Find it in the list, it's a panic.
  215. }
  216. //// Rulebase Handler Methods
  217. snf_RulebaseHandler::~snf_RulebaseHandler(){ // Destruct the handler.
  218. close(); // Close before we go.
  219. }
  220. bool snf_RulebaseHandler::isReady(){ // Is the object ready?
  221. return (NULL!=Rulebase); // Have Rulebase? We're ready.
  222. }
  223. bool snf_RulebaseHandler::isBusy(){ // Is a refresh/open in progress or
  224. return (RefreshInProgress || 0<RetiringCount); // an older rulebase is not yet retired.
  225. }
  226. int snf_RulebaseHandler::getReferenceCount(){ // How many Engines using this handler.
  227. return ReferenceCount; // Tell them the count bob.
  228. }
  229. int snf_RulebaseHandler::getCurrentCount(){ // How many Engines active in the current rb.
  230. return CurrentCount; // Tell them what it is bob.
  231. }
  232. int snf_RulebaseHandler::getRetiringCount(){ // How many Engines active in the old rb.
  233. return RetiringCount; // Tell them what it is bob.
  234. }
  235. // FileUTC(FileName) - utility function for tagging the active rulebase
  236. string FileUTC(string FileName) { // Gets a files UTC.
  237. struct stat FileNameStat; // First we need a stat buffer.
  238. string t; // We also need a Timestamp holder.
  239. if(0 != stat(FileName.c_str(), &FileNameStat)) { // If we can't get the stat we
  240. t.append("000000000000"); return t; // will return 000000000000 to
  241. } // make sure we should get the file.
  242. struct tm FileNameTime; // Allocate a time structure.
  243. FileNameTime = *(gmtime(&FileNameStat.st_mtime)); // Copy the file time to it as UTC.
  244. char TimestampBfr[20]; // Timestamp buffer.
  245. sprintf(TimestampBfr,"%04d%02d%02d%02d%02d%02d", // Format yyyymmddhhmmss
  246. FileNameTime.tm_year+1900,
  247. FileNameTime.tm_mon+1,
  248. FileNameTime.tm_mday,
  249. FileNameTime.tm_hour,
  250. FileNameTime.tm_min,
  251. FileNameTime.tm_sec
  252. );
  253. t.append(TimestampBfr); // Append the timestamp to t
  254. return t; // and return it to the caller.
  255. }
  256. // Auto Reload Controls
  257. bool snf_RulebaseHandler::AutoRefresh(bool On) { // Turn on/off auto refresh.
  258. if(On) { // If they want Reload On:
  259. if(!AutoRefresh()) { // and it isn't already on:
  260. try { MyReloader = new snf_Reloader(*this); } // try to set up a Reloader.
  261. catch(...) { MyReloader = 0; } // If that fails we don't
  262. } // have one. If it's already
  263. } // on do nothing.
  264. else { // If they want Reload Off:
  265. if(AutoRefresh()) { // and it is turned on:
  266. delete MyReloader; // destroy the reloader and
  267. MyReloader = 0; // zero it's pointer.
  268. }
  269. }
  270. return AutoRefresh(); // Return the truth (on/off)
  271. }
  272. bool snf_RulebaseHandler::AutoRefresh() { // True if AutoRefresh is on.
  273. return (0 != MyReloader); // If we have one, it's on.
  274. }
  275. // _snf_LoadNewRulebase()
  276. // This is actually a common sub-funtion. It expects that the object is in the "RefreshInProgress" state,
  277. // and that everything is in place and safe for a new rulebase to be loaded into the object. Once it's
  278. // done it will reset from the "RefreshInProgress" state and along the way will throw any errors that
  279. // are appropriate. The other functions can count on this one to polish off the various forms of rulebase
  280. // load activity.
  281. const LogicCheck SaneRefreshProcessCheck("snf_RulebaseHandler::_snf_LoadNewRulebase():SaneRefreshProcessCheck(RefreshInProgress)");
  282. void snf_RulebaseHandler::_snf_LoadNewRulebase(){ // Common internal load/check routine.
  283. SaneRefreshProcessCheck(RefreshInProgress); // We only get called when this flag is set.
  284. try { MyCFGmgr.load(); } // Load a fresh copy of the configuration.
  285. catch(...) { // If something goes wrong:
  286. RefreshInProgress = false; // we are no longer "in refresh"
  287. throw ConfigurationError("_snf_LoadNewRulebase() MyCFGmgr.load() failed"); // throw the Configuration exception.
  288. }
  289. string RuleFilePath = MyCFGmgr.RuleFilePath(); // Get our rulebase file path and our
  290. string SecurityKey = MyCFGmgr.SecurityKey(); // security key from the CFG manager.
  291. if(0>=RuleFilePath.length()) { // If we don't have a path, we're hosed.
  292. RefreshInProgress = false; // We are no longer "in refresh"
  293. throw FileError("_snf_LoadNewRulebase() Zero length RuleFilePath"); // Can't load a RB file with no path!
  294. }
  295. if(0>=SecurityKey.length()) { // No security string? toast!
  296. RefreshInProgress = false; // We are no longer "in refresh"
  297. throw AuthenticationError("snf_LoadNewRulebase() Zero length SecurityKey"); // Can't authenticate without a key!
  298. }
  299. // Notify sub modules of the new configuration data.
  300. MyGeneration++; // Increment the generation number.
  301. snfCFGData& CFGData = (*(MyCFGmgr.ActiveConfiguration())); // Capture the active config...
  302. CFGData.Generation = MyGeneration; // Tag the configuration data.
  303. MyLOGmgr.configure(CFGData); // Update the LOGmgr's configuration.
  304. MyNETmgr.configure(CFGData); // Update the NETmgr's configuration.
  305. MyGBUdbmgr.configure(CFGData); // Update the GBUdbmgr's configuration.
  306. // Load the new rulebase locally (on stack) and see if it authenticates.
  307. TokenMatrix* TryThis = NULL; // We need our candidate to remain in scope.
  308. try { // This try block decodes the problem.
  309. try { // This try block does cleanup work.
  310. TryThis = new TokenMatrix(); // Grab a new Token Matrix
  311. TryThis->Load(RuleFilePath); // Load it from the provided file path
  312. TryThis->Validate(SecurityKey); // Validate it with the provided security key
  313. TryThis->Verify(SecurityKey); // Verify that it is not corrupt.
  314. }
  315. catch(...) { // Clean up after any exceptions.
  316. RefreshInProgress = false; // We're not refreshing now.
  317. if(TryThis) { // If we allocated a TokenMatrix then
  318. delete TryThis; // we need to reclaim the memory
  319. TryThis = 0; // and erase the pointer.
  320. } // With everything nice and clean we can
  321. throw; // rethrow he exception for decoding.
  322. }
  323. } // If nothing threw, we're golden!
  324. catch (TokenMatrix::BadFile) { // BadFile translates to FileError
  325. throw FileError("_snf_LoadNewRulebase() TokenMatrix::BadFile");
  326. }
  327. catch (TokenMatrix::BadMatrix) { // BadMatrix translates to AuthenticationError
  328. throw AuthenticationError("_snf_LoadNewRulebase() TokenMatrix::BadMatrix");
  329. }
  330. catch (TokenMatrix::BadAllocation) { // BadAllocation translates to AllocationError
  331. throw AllocationError("_snf_LoadNewRulebase() TokenMatrix::BadAllocation");
  332. }
  333. catch (TokenMatrix::OutOfRange) { // OutOfRange should never happen so PANIC!
  334. throw Panic("_snf_LoadNewRulebase() TokenMatrix::OutOfRange");
  335. }
  336. catch (exception e) {
  337. throw;
  338. }
  339. catch (...) { // Something unpredicted happens? PANIC!
  340. throw Panic("_snf_LoadNewRulebase() TokenMatrix.load() ???");
  341. }
  342. // At this point the rulebase looks good. If we need to go big-endian do it!
  343. #ifdef __BIG_ENDIAN__
  344. TryThis->FlipEndian(); // Flip tokens to big-endian format.
  345. #endif
  346. MyLOGmgr.updateActiveUTC(FileUTC(RuleFilePath)); // Update the Active Rulebase UTC.
  347. MyMutex.lock(); // Lock the mutex while changing state.
  348. OldRulebase = Rulebase; // Move the current rulebase and count to
  349. RetiringCount = CurrentCount; // the retiring slot.
  350. if(0>=RetiringCount && NULL!=OldRulebase) { // If nobody cares about the old rulebase
  351. delete OldRulebase; // then delete it, and wipe everything
  352. OldRulebase = NULL; // clean for the next retiree.
  353. RetiringCount = 0;
  354. }
  355. CurrentCount = 0; // Set the current count to zero (it's fresh!)
  356. Rulebase = TryThis; // Copy our new rulebase into production.
  357. MyMutex.unlock(); // Release the hounds!!!
  358. // If there is a GBUdb Ignore List, refresh with it (This might go elsewhere).
  359. // Failure to read the GBUdbIgnoreList if all else went well does not cause
  360. // the rulebase update (if any) to fail.
  361. /**** This section needs work ****/
  362. try {
  363. string IgnoreListPath = CFGData.paths_workspace_path;
  364. IgnoreListPath.append("GBUdbIgnoreList.txt");
  365. if(0 == MyGBUdb.readIgnoreList(IgnoreListPath.c_str())) // We must have at least 1 IP listed.
  366. throw ConfigurationError(
  367. "_snf_LoadNewRulebase() GBUdbIgnoreList min 1 entry!");
  368. }
  369. catch(...) { // Ignore list read might fail.
  370. RefreshInProgress = false; // If so, don't keep things hung.
  371. throw IgnoreListError("_snf_LoadNewRulebase() readIgnoreList() ???"); // If it does, throw FileError.
  372. }
  373. RefreshInProgress = false; // Done with the refresh process.
  374. return; // Our work is done here.
  375. }
  376. // open()
  377. // This loads a new rulebase (usually the first one only) into the handler. This is the first of two loading
  378. // methods on this object. This one checks for isBusy() because it is highly invasive. If it is called after
  379. // the object has been running it is important that it not run while anything in the object is active. This
  380. // is because it is likely in this case we would be loading an entirely new rulebase that would lead to odd
  381. // results if some scanner instances were activily using a different one.
  382. void snf_RulebaseHandler::open(const char* path, const char* licenseid, const char* authentication){
  383. MyMutex.lock(); // Lock the mutex while changing state.
  384. if(isBusy()) { // Be sure we're not busy.
  385. MyMutex.unlock(); throw Busy("snf_RulebaseHandler::open() busy"); // If we are then throw.
  386. }
  387. RefreshInProgress = true; // Set RefreshInProgress.
  388. MyMutex.unlock(); // Unlock the mutex and
  389. MyCFGmgr.initialize(path, licenseid, authentication); // Initialize our configuration.
  390. _snf_LoadNewRulebase(); // get on with loading the rulebase.
  391. MyGBUdbmgr.load(); // Load the GBUdb as configured.
  392. AutoRefresh(true); // Turn on Refresh by default.
  393. logThisInfo("--INITIALIZING--", 0, "Success"); // Log the happy event.
  394. return;
  395. }
  396. // refresh()
  397. // This loads a fresh copy of the current rulebase. This is the second loading method on the object. It is
  398. // specifically designed to work without stopping scanning activities. This one checks for isBusy() because
  399. // there may be an old rulebase that is not yet completely retired --- that is, some scanners may be using it.
  400. // If there is still an old rulebase on it's way out then we can't shove it aside without breaking something,
  401. // so we have to throw.
  402. //
  403. // Under normal circumstances, this call will cause a new rulebase to be loaded without disturbing any scans
  404. // underway on the current rulebase. The current rulebase will be put into retirement while any active scans
  405. // are completed, and then it will quietly go away when the last has finished. The new rulebase will take it's
  406. // place and will be handed out to all new grab() requests.
  407. void snf_RulebaseHandler::refresh(){ // Reloads the rulebase.
  408. MyMutex.lock(); // Lock the mutex while changing states.
  409. if(isBusy()) { // If we're busy then throw.
  410. MyMutex.unlock(); throw Busy("snf_RulebaseHandler::refresh() busy");
  411. }
  412. RefreshInProgress = true; // Set RefreshInProgress and
  413. MyMutex.unlock(); // unlock the mutex. Then get on with
  414. _snf_LoadNewRulebase(); // loading a fresh copy of the rulebase
  415. return;
  416. }
  417. void snf_RulebaseHandler::close(){ // Closes this handler.
  418. try {
  419. AutoRefresh(false); // Stop AutoRefresh if it's on.
  420. }
  421. catch(exception& e) { throw; } // Rethrow good exceptions.
  422. catch(...) { throw Panic("snf_RulebaseHandler::close() AutoRefresh(false) panic!"); } // Panic blank exceptions.
  423. try {
  424. MyXCImgr.stop(); // Stop the XCI manager.
  425. }
  426. catch(exception& e) { throw; } // Rethrow good exceptions.
  427. catch(...) { throw Panic("snf_RulebaseHandler::close() MyXCImgr.stop() panic!"); } // Panic blank exceptions.
  428. if(isBusy() || 0<CurrentCount || 0<ReferenceCount) { // Check that there is no activity.
  429. throw Busy("snf_RulebaseHandler::close() busy"); // With XCI stopped we should not
  430. } // be busy.
  431. try {
  432. MyLOGmgr.stop(); // Stop the LOG manager.
  433. }
  434. catch(exception& e) { throw; } // Rethrow good exceptions.
  435. catch(...) { throw Panic("snf_RulebaseHandler::close() MyLOGmgr.stop() panic!"); } // Panic blank exceptions.
  436. try {
  437. MyNETmgr.stop(); // Stop the NET manager.
  438. }
  439. catch(exception& e) { throw; } // Rethrow good exceptions.
  440. catch(...) { throw Panic("snf_RulebaseHandler::close() MyNETmgr.stop() panic!"); } // Panic blank exceptions.
  441. try {
  442. MyGBUdbmgr.stop(); // Stop the GBUdb manager.
  443. }
  444. catch(exception& e) { throw; } // Rethrow good exceptions.
  445. catch(...) { throw Panic("snf_RulebaseHandler::close() MyGBUdbmgr.stop() panic!"); } // Panic blank exceptions.
  446. try {
  447. if(NULL!=Rulebase) {delete Rulebase; Rulebase=NULL;} // If we have a Rulebase destroy it.
  448. }
  449. catch(exception& e) { throw; } // Rethrow good exceptions.
  450. catch(...) { throw Panic("snf_RulebaseHandler::close() delete Rulebase panic!"); } // Panic blank exceptions.
  451. try {
  452. if(NULL!=OldRulebase) {delete OldRulebase; OldRulebase=NULL;} // Shouldn't happen, but just in case.
  453. }
  454. catch(exception& e) { throw; } // Rethrow good exceptions.
  455. catch(...) { throw Panic("snf_RulebaseHandler::close() delete OldRulebase panic!"); } // Panic blank exceptions.
  456. }
  457. void snf_RulebaseHandler::use(){ // Make use of this Rulebase Handler.
  458. MyMutex.lock(); // Lock the object
  459. ReferenceCount++; // Boost the count
  460. MyMutex.unlock(); // Unlock the object
  461. }
  462. void snf_RulebaseHandler::unuse(){ // Finish with this Rulebase Handler.
  463. MyMutex.lock(); // Lock the object
  464. ReferenceCount--; // Reduce the count
  465. MyMutex.unlock(); // Unlock the object
  466. }
  467. // A word about Generation... In practice whenever the configuration or rulebase
  468. // changes the entire thing is reloaded. The Generation() function gives other
  469. // modules a way to know if they need to update their interpretation of the
  470. // configuration. They can keep track of the last Generation value they got and
  471. // compare it to the latest Generation. If the two are different then they need
  472. // to update their configuration - just in case it has changed.
  473. int snf_RulebaseHandler::Generation() { return MyGeneration; } // Returns the generation number.
  474. // A word about autopanics.
  475. // The first time throgh this we outsmarted ourselves with an ellaborate
  476. // wait-to-insert scheme. That led to the possibilty of a deadlock. Now we
  477. // copy the (usually empty or very short) set of rule panics to the
  478. // configuration packet when it is grabbed and only use the one mutext to hold
  479. // the configuration steady while doing so. All queries are made to the local
  480. // copy of the panic list and all writes are made, under mutex, to the active
  481. // configuration. Simpler, no significant penalty, and no more deadlocks.
  482. // A word about configuration packets.
  483. // Along the way we simplified things by making the snfCFGPacket do it's own
  484. // grab and drop upon construction and destruction. This way we don't have to
  485. // remember to handle all possible cases during a scan or other opertion -- once
  486. // the operation goes out of scope the configuration packet drop()s with it.
  487. void snf_RulebaseHandler::grab(snfCFGPacket& CP) { // Activate this Rulebase.
  488. ScopeMutex HoldStillPlease(MyMutex); // Lock the rulebase until we're done.
  489. CurrentCount++; // Boost the count for myself.
  490. CP.MyTokenMatrix = Rulebase; // Grab the current rulebase.
  491. CP.MyCFGData = MyCFGmgr.ActiveConfiguration(); // Grab the active configuration.
  492. CP.RulePanics = MyCFGmgr.ActiveConfiguration()->RulePanicHandler.IntegerSet; // Copy the RulePanic set.
  493. }
  494. void snf_RulebaseHandler::drop(snfCFGPacket& CP) { // Deactiveate this Rulebase.
  495. const TokenMatrix* t = CP.MyTokenMatrix; // Grab the token matrix pointer.
  496. CP.MyCFGData = NULL; // Null the configuration pointer.
  497. ScopeMutex HoldStillPlease(MyMutex); // Lock the rulebase until we're done.
  498. if(t==Rulebase) { // If we're dropping the current rulebase
  499. CurrentCount--; // then reduce the current count.
  500. } else // If not that then...
  501. if(t==OldRulebase) { // If we're dropping the old rulebase
  502. RetiringCount--; // reduce the retiring count and check...
  503. if(0>=RetiringCount) { // to see if it is completely retired.
  504. if(NULL!=OldRulebase) delete OldRulebase; // If it is then delete it and
  505. OldRulebase = NULL; RetiringCount = 0; // reset it's pointer and counter.
  506. }
  507. } else { // If we're dropping something else,
  508. throw Panic("snf_RulebaseHandler::drop() panic"); // it is time to panic, so, then PANIC!
  509. }
  510. }
  511. // When adding a rule panic entry the rulebase and configuration state cannot
  512. // be changed, nor grabbed by an snfCFGPacket. This ensures that the IntegerSet
  513. // is only adjusted by one thread at a time and that any threads using the set
  514. // will have a consistent result based on their last grab().
  515. void snf_RulebaseHandler::addRulePanic(int RuleID) { // Add a rule panic id dynamically.
  516. ScopeMutex JustMe(MyMutex); // Freeze the rulebase while we adjust
  517. MyCFGmgr.ActiveConfiguration() // the active configuration to
  518. ->RulePanicHandler.IntegerSet.insert(RuleID); // insert the new rule panic ruleid.
  519. } // When we're done, unlock and move on.
  520. IPTestRecord& snf_RulebaseHandler::performIPTest(IPTestRecord& I) { // Perform an IP test.
  521. snfCFGPacket MyCFGPacket(this); // We need a CFG packet.
  522. try { // Safely process the IP.
  523. if(false == MyCFGPacket.bad()) { // If we've got a good packet:
  524. I.G = MyGBUdb.getRecord(I.IP); // Lookup the IP in GBUdb.
  525. I.R = MyCFGPacket.Config()->RangeEvaluation(I.G); // Evaluate it's statistics.
  526. // Convert the RangeEvaluation into the configured Code
  527. switch(I.R) {
  528. case Unknown: // Unknown - not defined.
  529. case Normal: // Benefit of the doubt.
  530. case New: { // It is new to us.
  531. I.Code = 0; // Zero is the default - no code.
  532. break;
  533. }
  534. case White: { // This is a good guy.
  535. I.Code = MyCFGPacket.Config()->WhiteRangeHandler.Symbol;
  536. break;
  537. }
  538. case Caution: { // This is suspicious.
  539. I.Code = MyCFGPacket.Config()->CautionRangeHandler.Symbol;
  540. break;
  541. }
  542. case Black: { // This is bad.
  543. I.Code = MyCFGPacket.Config()->BlackRangeHandler.Symbol;
  544. break;
  545. }
  546. case Truncate: { // Don't even bother looking.
  547. I.Code = MyCFGPacket.Config()
  548. ->gbudb_regions_black_truncate_symbol;
  549. break;
  550. }
  551. }
  552. } // If something is broken we punt.
  553. } catch (...) {} // Ignore exceptions (none expected)
  554. return I; // Return the processed record.
  555. }
  556. void snf_RulebaseHandler::logThisIPTest(IPTestRecord& I, string Action) { // Log an IP test result & action.
  557. MyLOGmgr.logThisIPTest(I, Action);
  558. }
  559. void snf_RulebaseHandler::logThisError( // Log an error message.
  560. string ContextName, int Code, string Text
  561. ) {
  562. MyLOGmgr.logThisError(ContextName, Code, Text);
  563. }
  564. void snf_RulebaseHandler::logThisInfo( // Log an informational message.
  565. string ContextName, int Code, string Text
  566. ) {
  567. MyLOGmgr.logThisInfo(ContextName, Code, Text);
  568. }
  569. string snf_RulebaseHandler::PlatformVersion(string NewPlatformVersion) { // Set platform version info.
  570. return MyLOGmgr.PlatformVersion(NewPlatformVersion);
  571. }
  572. string snf_RulebaseHandler::PlatformVersion() { // Get platform version info.
  573. return MyLOGmgr.PlatformVersion();
  574. }
  575. string snf_RulebaseHandler::PlatformConfiguration() { // Get platform configuration.
  576. ScopeMutex LockAndGrab(MyMutex); // Freeze things for a moment and
  577. return MyCFGmgr.ActiveConfiguration()->PlatformElementContents; // copy the platform configuration.
  578. }
  579. string snf_RulebaseHandler::EngineVersion() { // Get engine version info.
  580. return MyLOGmgr.EngineVersion();
  581. }
  582. void snf_RulebaseHandler::
  583. XCIServerCommandHandler(snfXCIServerCommandHandler& XCH) { // Registers a new XCI Srvr Cmd handler.
  584. ScopeMutex ThereCanBeOnlyOne(XCIServerCommandMutex); // Serialize access to this resource.
  585. myXCIServerCommandHandler = &XCH; // Assign the new handler as provided.
  586. }
  587. string snf_RulebaseHandler::processXCIServerCommandRequest(snf_xci& X) { // Handle a parsed XCI Srvr Cmd request.
  588. ScopeMutex ThereCanBeOnlyOne(XCIServerCommandMutex); // Serialize access to this resource.
  589. if(0 == myXCIServerCommandHandler) { // If we don't have a handler then
  590. snfXCIServerCommandHandler H; // create a base handler and
  591. return H.processXCIRequest(X); // return it's default response.
  592. } // If we do have a handler then pass
  593. return myXCIServerCommandHandler->processXCIRequest(X); // on the request and return the
  594. } // response.
  595. //// snf_IPTestEngine Methods
  596. snf_IPTestEngine::snf_IPTestEngine() : // The constructor is simple - it
  597. Lookup(NULL), ScanData(NULL) { // sets up our internal references.
  598. } // Before use these must be set.
  599. void snf_IPTestEngine::setGBUdb(GBUdb& G) { // Here's how we set the GBUdb.
  600. Lookup = &G;
  601. }
  602. void snf_IPTestEngine::setScanData(snfScanData& S) { // Here's how we set the ScanData object.
  603. ScanData = &S;
  604. }
  605. void snf_IPTestEngine::setCFGData(snfCFGData& C) { // Here's how we set the CFGData.
  606. CFGData = &C;
  607. }
  608. void snf_IPTestEngine::setLOGmgr(snfLOGmgr& L) { // Here's how we set the LOGmgr.
  609. LOGmgr = &L;
  610. }
  611. // 20090127 _M Added special handling for forced IP sources. First, they are
  612. // always considered the source and second if they are in the GBUdb ignore list
  613. // then GBUdb training bypass is established.
  614. string& snf_IPTestEngine::test(string& input, string& output) { // Perform IP lookups and put IPs into ScanData.
  615. if(NULL == Lookup || NULL == ScanData) { // If we are not set up properly then we
  616. output = "{IPTest Config Error}"; // will return an error string.
  617. return output;
  618. }
  619. try { // If we're out of IP records, no analysis.
  620. IPScanRecord& I = ScanData->newIPScanRecord(); // Grab a new IP scan record and
  621. IP4Address IP = input; // Convert the string to an IP.
  622. // Identify forced Source IP addresses
  623. bool ThisSourceIsForced = ( // This IP is a forced source IP if:
  624. (0 == I.Ordinal) && ( // we are looking at the first IP and
  625. (0UL != ScanData->CallerForcedSourceIP()) || // either the Caller forced the IP or
  626. (0UL != ScanData->HeaderDirectiveSourceIP()) // the IP was forced by a header directive.
  627. )
  628. );
  629. // Bad IPs are possible, especially if the source was forced. In that
  630. // case forced source IP is meaningless so we want to ignore it and
  631. // we want to make the case visible in the logs. An ordinary IP that
  632. // is invalid has no consequence so we simply skip those.
  633. // Note that a source IP that has it's ignore flag set causes an
  634. // implied training bypass inside the scan function. Setting the bad
  635. // IP as the source and setting it's ignore flag will have the desired
  636. // effect.
  637. if(0UL == IP) { // If we got a 0 or a bad conversion then
  638. output = "{0.0.0.0 Is Not A Usable IP}"; // we won't be testing this IP.
  639. if(ThisSourceIsForced) { // If this ip is a forced source then
  640. I.GBUdbData.Flag(Ignore); // we will force a training bypass,
  641. ScanData->SourceIPRecord(I); // we will record it as the source,
  642. ScanData->SourceIPEvaluation = output; // and capture the error output.
  643. }
  644. return output;
  645. }
  646. if(0xFFFFFFFF == IP) { // If we got a 255.255.255.255 then
  647. output = "{255.255.255.255 Is Not A Usable IP}"; // we won't be testing this IP.
  648. if(ThisSourceIsForced) { // If this ip is a forced source then
  649. I.GBUdbData.Flag(Ignore); // we will force a training bypass,
  650. ScanData->SourceIPRecord(I); // we will record it as the source,
  651. ScanData->SourceIPEvaluation = output; // and capture the error output.
  652. }
  653. return output;
  654. }
  655. GBUdbRecord R = Lookup->getRecord(IP); // Get the GBUdb record for it.
  656. I.IP = IP; // store the IP and the
  657. I.GBUdbData = R; // GBUdb record we retrieved.
  658. output = "{"; // Next we start to build our IP data insert.
  659. ostringstream S; // We will use a string stream for formatting.
  660. switch(R.Flag()) { // Identify the flag data for this IP.
  661. case Good: S << "Good "; break;
  662. case Bad: S << "Bad "; break;
  663. case Ugly: S << "Ugly "; break;
  664. case Ignore: S << "Ignore "; break;
  665. }
  666. S << "c=" << R.Confidence() << " " // Include the Confidence and
  667. << "p=" << R.Probability(); // Probability.
  668. // Process ordinary Source IP addresses
  669. if( // The message source IP address is the
  670. (false == ScanData->FoundSourceIP()) && // first IP we find that is either forced
  671. (ThisSourceIsForced || (Ignore != R.Flag())) // OR is NOT part of our infrastructure.
  672. ) { // When we find the correct source IP:
  673. if( // Check to see if we're drilling down.
  674. (false == ThisSourceIsForced) && // We drill when the source is NOT forced
  675. (ScanData->isDrillDownSource(I)) // AND we have a matching drilldown.
  676. ) {
  677. Lookup->setIgnore(IP); // If we're drilling down ignore this IP.
  678. }
  679. else { // If not drilling down this is the source:
  680. ScanData->SourceIPRecord(I); // we log it in as the source
  681. S << " Source"; // and report our findings in our tag.
  682. // Since we are dealing with our source IP
  683. // this is a good place to evaluate our truncate feature.
  684. snfIPRange IPR =
  685. ScanData->SourceIPRange(CFGData->RangeEvaluation(R)); // Establish the IP range for this scan.
  686. // We will also emit a range identifier for pattern matches that might use it.
  687. switch(IPR) {
  688. case Unknown: { S << " Unknown"; break; } // Unknown - not defined.
  689. case White: { S << " White"; break; } // This is a good guy.
  690. case Normal: { S << " Normal"; break; } // Benefit of the doubt.
  691. case New: { S << " New"; break; } // It is new to us.
  692. case Caution: { S << " Caution"; break; } // This is suspicious.
  693. case Black: { S << " Black"; break; } // This is bad.
  694. case Truncate: { S << " Truncate"; break; } // Don't even bother looking.
  695. }
  696. ScanData->SourceIPEvaluation = S.str(); // Capture the source IP eval.
  697. // The RangeEvaluation() call above settles a lot of questions for us.
  698. // The Truncate return code only happens when the IP is either Bad w/
  699. // truncate turned on, or the statistics place the IP in the Truncate
  700. // range. If the Good flag is set the function always returns White so
  701. // here we only have to check for the Truncate flag.
  702. if(Truncate == IPR) { // If all of the conditions are met
  703. ScanData->GBUdbTruncateTriggered = true; // then Truncate has been triggered.
  704. ScanData->GBUdbPeekTriggered = LOGmgr->OkToPeek( // Since truncate was triggered, see if
  705. CFGData->gbudb_regions_black_truncate_peek_one_in); // we would also trigger a peek.
  706. // The reason we check the truncate on_off flag here is that the
  707. // IP range _may_ return a Truncate result if no Flags are set on
  708. // the IP and the IP is far enough into the black to reach the
  709. // Truncate threshold.
  710. if(CFGData->gbudb_regions_black_truncate_on_off) { // If truncate is on either peek or truncate.
  711. if(ScanData->GBUdbPeekTriggered) { // If a peek has been triggered then
  712. ScanData->GBUdbPeekExecuted = true; // mark the event and don't truncate.
  713. } else { // If a peek was not triggered then
  714. ScanData->GBUdbTruncateExecuted = true; // Record our trucnate action.
  715. output = ""; // Set up the truncate signal (empty string)
  716. return output; // and return it! We're done!
  717. }
  718. }
  719. }
  720. }
  721. }
  722. // If we're not truncating then we're going to return our IP evaulation tag
  723. // to the filter chain function module so it can emit it into the stream.
  724. output.append(S.str());
  725. output.append("}");
  726. }
  727. catch(snfScanData::NoFreeIPScanRecords) {
  728. output = "{too_many}";
  729. }
  730. catch(...) {
  731. output = "{fault}";
  732. }
  733. return output;
  734. }
  735. //// Engine Handler Methods
  736. snf_EngineHandler::~snf_EngineHandler(){ // Shutdown clenas up and checks for safety.
  737. if(isReady()) close(); // If we're live, close on our way out.
  738. }
  739. void snf_EngineHandler::open(snf_RulebaseHandler* Handler){ // Light up the engine.
  740. MyMutex.lock(); // Serialize this...
  741. if(isReady()) { // If we're already open then we need to
  742. MyMutex.unlock(); // unlock this object and let them know
  743. throw Busy("snf_EngineHandler::open() busy"); // we are busy.
  744. } // If we're not busy, then let's light it up.
  745. MyRulebase=Handler; // Install our rulebase handler.
  746. MyRulebase->use(); // Up the use count to let it know we're here.
  747. MyIPTestEngine.setGBUdb(MyRulebase->MyGBUdb); // Set up the IPTester's GBUdb.
  748. MyIPTestEngine.setScanData(MyScanData); // Set up the IPTester's ScanData reference.
  749. MyIPTestEngine.setLOGmgr(MyRulebase->MyLOGmgr); // Set up the IPTester's LOGmgr.
  750. MyMutex.unlock(); // Unlock our mutex, then...
  751. return; // our work is done.
  752. }
  753. bool snf_EngineHandler::isReady(){ // Is the Engine good to go?
  754. return (NULL!=MyRulebase); // Have rulebase will travel.
  755. }
  756. void snf_EngineHandler::close(){ // Close down the engine.
  757. MyMutex.lock(); // Serialize this...
  758. if(!isReady()){ // If we're not already open we can't close.
  759. MyMutex.unlock(); // Something is seriously wrong, so unlock
  760. throw Panic("snf_EngineHandler::close() !isReady panic"); // and hit the panic button!
  761. } // But, if everything is ok then we can
  762. MyRulebase->unuse(); // unuse our rulebase and quietly forget
  763. MyRulebase = NULL; // about it.
  764. if(NULL!=CurrentMatrix) { // If we have a leftover evaluation matrix
  765. delete CurrentMatrix; // we can let that go and forget about
  766. CurrentMatrix = NULL; // it as well.
  767. }
  768. MyMutex.unlock(); // Finally, we unlock our mutex and...
  769. return; // Our work is done here.
  770. }
  771. enum PatternResultTypes { // To train GBUdb we need a generalized
  772. NoPattern, // way to evaluate the results from the
  773. WhitePattern, // snf pattern matching scan.
  774. BlackPattern,
  775. IPPattern,
  776. AboveBandPattern
  777. };
  778. int snf_EngineHandler::scanMessageFile( // Scan this message file.
  779. const string MessageFilePath, // -- this is the file path (and id)
  780. const int MessageSetupTime, // -- setup time already used.
  781. const IP4Address MessageSource // -- message source IP (for injection).
  782. ) {
  783. Timer AdditionalSetupTime;
  784. ScopeMutex DoingAFileScan(FileScan); // Protect MyScanData @ this entry.
  785. // Preliminary setup. Clearing the ScanData resets the ReadyToClear flag
  786. // and allows us to set some data for more accurate tracking and so that if
  787. // something goes wrong the ScanData will be helpful in determining the
  788. // state of the engine.
  789. MyScanData.clear(); // Clear the scan data.
  790. MyScanData.StartOfJobUTC = MyRulebase->MyLOGmgr.Timestamp(); // Set the job start timestamp.
  791. MyScanData.ScanName = MessageFilePath;
  792. // Now that the preliminaries are established we can begin our work.
  793. int MessageFileSize = 0; // Here will be the size of it.
  794. ifstream MessageFile; // Here will be our input file.
  795. MessageFile.exceptions( // It will throw exceptions for
  796. ifstream::eofbit | ifstream::failbit | ifstream::badbit // these unwanted events.
  797. );
  798. try { // Try opening the message file.
  799. MessageFile.open(MessageFilePath.c_str(), ios::in | ios::binary); // Open the file, binary mode.
  800. MessageFile.seekg(0, ios::end); // Find the end of the file,
  801. MessageFileSize = MessageFile.tellg(); // read that position as the size,
  802. MessageFile.seekg(0, ios::beg); // then go back to the beginning.
  803. MyScanData.ScanSize = MessageFileSize; // Capture the message file size.
  804. }
  805. catch(...) { // Trouble? Throw FileError.
  806. MyRulebase->MyLOGmgr.logThisError( // Log the error.
  807. MyScanData, "scanMessageFile().open",
  808. snf_ERROR_MSG_FILE, "ERROR_MSG_FILE"
  809. );
  810. throw FileError("snf_EngineHandler::scanMessageFile() Open/Seek");
  811. }
  812. if(0 >= MessageFileSize) { // Handle zero length files.
  813. MessageFile.close(); // No need to keep this open.
  814. MyRulebase->MyLOGmgr.logThisError( // Log the error.
  815. MyScanData, "scanMessageFile().isFileEmpty?",
  816. snf_ERROR_MSG_FILE, "ERROR_MSG_FILE"
  817. );
  818. throw FileError("snf_EngineHandler::scanMessageFile() FileEmpty!");
  819. }
  820. vector<unsigned char> MessageBuffer; // Allocate a buffer and size
  821. try { MessageBuffer.resize(MessageFileSize, 0); } // it to fit the message.
  822. catch(...) { // Trouble? Throw AllocationError.
  823. MyRulebase->MyLOGmgr.logThisError( // Log the error.
  824. MyScanData, "scanMessageFile().alloc",
  825. snf_ERROR_MSG_FILE, "ERROR_MSG_ALLOC"
  826. );
  827. throw AllocationError("snf_EngineHandler::scanMessageFile() Alloc");
  828. }
  829. try { MessageFile.read((char*) &MessageBuffer[0], MessageFileSize); } // Read the file into the buffer.
  830. catch(...) {
  831. MyRulebase->MyLOGmgr.logThisError( // Log the error.
  832. MyScanData, "scanMessageFile().read",
  833. snf_ERROR_MSG_FILE, "ERROR_MSG_READ"
  834. );
  835. throw FileError("snf_EngineHandler::scanMessageFile() Read");
  836. }
  837. MessageFile.close(); // Close the file.
  838. // Additional Setup Time will be captured as the call is made.
  839. int ScanResultCode = scanMessage( // Scan the message we've loaded.
  840. &MessageBuffer[0], // Here is the buffer pointer,
  841. MessageBuffer.size(), // here is the size of the message,
  842. MessageFilePath, // the path is the identifier,
  843. (AdditionalSetupTime.getElapsedTime() + MessageSetupTime), // and this is our setup time total.
  844. MessageSource // Pass on the source if provided.
  845. );
  846. // Inject headers if required.
  847. if(MyScanData.XHeaderInjectOn) { // If we are to inject headers:
  848. const char* XHDRInjStage = "Begin"; // Keep track of what we're doing.
  849. try {
  850. // The insertion point will be at the end of the existing headers.
  851. // We pick that point to be right between the two <cr><lf> so that
  852. // the first blank line will appear at the end of our headers.
  853. // We accommodate either <cr><lf> or <lf> line endings.
  854. // We are careful not to search past the end of unreasonably short
  855. // message files.
  856. unsigned int InsertPoint = 0; // Find the insertion point.
  857. bool UseLFOnly = false; // Use \n line endings in files?
  858. bool CRLFPresent = false; // Detected \r\n pairs?
  859. unsigned int BiggestPatternSize = 4; // How far we look ahead.
  860. bool BigEnoughMessage = BiggestPatternSize < MessageBuffer.size();
  861. if(BigEnoughMessage){
  862. unsigned int Limit = MessageBuffer.size() - BiggestPatternSize;
  863. bool DataWasSkipped = MessageBuffer.size() > MyScanData.ScanSize;
  864. unsigned int i = 0;
  865. if(DataWasSkipped) { // If our scanner skipped data at
  866. i = MessageBuffer.size() - MyScanData.ScanSize; // the top of the message buffer then
  867. } // we will skip it too.
  868. for(; i < Limit; i++) { // Search for the first blank line.
  869. if( // Detect CRLF pairs if present.
  870. false == CRLFPresent &&
  871. '\r' == MessageBuffer.at(i) &&
  872. '\n' == MessageBuffer.at(i + 1)
  873. ) CRLFPresent = true;
  874. if( // In a properly formatted RFC822
  875. '\r' == MessageBuffer.at(i) && // message that looks like
  876. '\n' == MessageBuffer.at(i + 1) && // <cr><lf><cr><lf>
  877. '\r' == MessageBuffer.at(i + 2) &&
  878. '\n' == MessageBuffer.at(i + 3)
  879. ) {
  880. InsertPoint = i + 2;
  881. break;
  882. } else
  883. if( // In some bizarre cases it might
  884. '\n' == MessageBuffer.at(i) && // look like <lf><lf>.
  885. '\n' == MessageBuffer.at(i + 1)
  886. ) {
  887. InsertPoint = i + 1;
  888. UseLFOnly = true; // We have to strip <CR> from our
  889. break; // injected header line ends.
  890. }
  891. }
  892. }
  893. // Here we must interpret the results of our search. Do we know where
  894. // our insert point is or do we punt and use the top of the message?
  895. if(0 == InsertPoint) { // No blank line? We need to punt.
  896. if(false == CRLFPresent) { // What kind of line ends do we use?
  897. UseLFOnly = true; // If no CRLF found use LF only.
  898. } // Either way we will be inserting
  899. } // our headers at the top of the msg.
  900. // At this point we know where to split the message and insert
  901. // our X Headers.
  902. XHDRInjStage = "Open Temp File"; // Update our process monitor.
  903. string TempFileName = MessageFilePath; // Prepare a temp file name
  904. TempFileName.append(".tmp"); // based on the message file.
  905. ofstream TempFile; // Here will be our temp file.
  906. TempFile.exceptions(ofstream::failbit | ofstream::badbit); // It will throw these exceptions.
  907. TempFile.open(TempFileName.c_str(), ios::binary | ios::trunc); // Open and truncate the file.
  908. // If our insert point is the top of the message we'll skip this.
  909. if(0 < InsertPoint) { // If we have an insert point:
  910. XHDRInjStage = "Write Temp File.1"; // Update our process monitor.
  911. TempFile.write( // Write the message file up
  912. reinterpret_cast<char*>(&MessageBuffer[0]), // to our split.
  913. InsertPoint
  914. );
  915. }
  916. // If our file has \n line ends we need to strip the \r from our
  917. // rfc822 \r\n line ends.
  918. XHDRInjStage = "XHDR <CR><LF> to <LF>";
  919. if(true == UseLFOnly) { // If we are using <LF> only:
  920. string ReworkedHeaders = ""; // Make a new string and rework
  921. for( // our headers.
  922. string::iterator iS = MyScanData.XHDRsText.begin(); // Run through the headers one
  923. iS != MyScanData.XHDRsText.end(); iS++ // byte at a time.
  924. ) {
  925. if('\r' != (*iS)) ReworkedHeaders.push_back(*iS); // Strip out any <CR> chars.
  926. }
  927. MyScanData.XHDRsText.swap(ReworkedHeaders); // Swap in our reworked headers.
  928. }
  929. // Now we are ready to inject our headers.
  930. XHDRInjStage = "Write Temp File.2"; // Update our process monitor.
  931. TempFile.write( // Inject our headers.
  932. MyScanData.XHDRsText.c_str(),
  933. MyScanData.XHDRsText.length()
  934. );
  935. XHDRInjStage = "Write Temp File.3"; // Update our process monitor.
  936. TempFile.write( // Write the rest of the message.
  937. reinterpret_cast<char*>(&MessageBuffer[InsertPoint]),
  938. MessageBuffer.size() - InsertPoint
  939. );
  940. XHDRInjStage = "Close Temp File"; // Update our process monitor.
  941. TempFile.close(); // Close the file (flushing it).
  942. Sleeper PauseBeforeRetry(300); // Delay to use between retries.
  943. XHDRInjStage = "Drop Msg"; // Update our process monitor.
  944. if(remove(MessageFilePath.c_str())) { // Remove the old message file
  945. PauseBeforeRetry(); // If it fails, pause and retry.
  946. if(remove(MessageFilePath.c_str())) { // If that fails,
  947. PauseBeforeRetry(); // pause, then try once more.
  948. if(remove(MessageFilePath.c_str())) { // If that fails, throw.
  949. throw XHDRError("XHDR injector can't remove original!");
  950. }
  951. }
  952. }
  953. XHDRInjStage = "Rename Temp -> Msg"; // Update our process monitor.
  954. if(rename(TempFileName.c_str(), MessageFilePath.c_str())) { // Make Temp our new message file.
  955. PauseBeforeRetry(); // If it fails, pause and retry.
  956. if(rename(TempFileName.c_str(), MessageFilePath.c_str())) { // If that fails,
  957. PauseBeforeRetry(); // pause then try once more.
  958. if(rename(TempFileName.c_str(), MessageFilePath.c_str())) { // If that fails, throw.
  959. throw XHDRError("XHDR injector can't rename tmp file!");
  960. }
  961. }
  962. }
  963. }
  964. catch(XHDRError& e) { // For full XHDRError exceptions.
  965. string ERROR_MSG_XHDRi = "ERROR_MSG_XHDRi: "; // Format the XHDRInj error msg.
  966. ERROR_MSG_XHDRi.append(XHDRInjStage);
  967. ERROR_MSG_XHDRi.append(" ");
  968. ERROR_MSG_XHDRi.append(e.what());
  969. MyRulebase->MyLOGmgr.logThisError( // Log the error.
  970. MyScanData, "scanMessageFile().xhdr.inject",
  971. snf_ERROR_MSG_FILE, ERROR_MSG_XHDRi
  972. );
  973. throw; // Rethrow any XHDRError exceptions.
  974. }
  975. catch(exception& e) { // For ordinary runtime exceptions.
  976. string ERROR_MSG_XHDRi = "ERROR_MSG_XHDRi: "; // Format the XHDRInj error msg.
  977. ERROR_MSG_XHDRi.append(XHDRInjStage);
  978. ERROR_MSG_XHDRi.append(" ");
  979. ERROR_MSG_XHDRi.append(e.what());
  980. MyRulebase->MyLOGmgr.logThisError( // Log the error.
  981. MyScanData, "scanMessageFile().xhdr.inject",
  982. snf_ERROR_MSG_FILE, ERROR_MSG_XHDRi
  983. );
  984. throw XHDRError(ERROR_MSG_XHDRi); // Rethrow as XHDRError exceptions.
  985. }
  986. catch(...) { // If we encounter a problem then
  987. string ERROR_MSG_XHDRi = "ERROR_MSG_XHDRi: "; // Format the XHDRInj error msg.
  988. ERROR_MSG_XHDRi.append(XHDRInjStage);
  989. MyRulebase->MyLOGmgr.logThisError( // Log the error.
  990. MyScanData, "scanMessageFile().xhdr.inject",
  991. snf_ERROR_MSG_FILE, ERROR_MSG_XHDRi
  992. );
  993. string XHDRError_msg = "Message Rewrite Failed: "; // Format our throw message with
  994. XHDRError_msg.append(XHDRInjStage); // our detailed stage data and
  995. throw XHDRError(XHDRError_msg); // throw our special exception.
  996. }
  997. }
  998. // Create an .xhdr file if required.
  999. if(MyScanData.XHeaderFileOn) {
  1000. try {
  1001. ofstream XHDRFile; // Output file will be XHDRFile.
  1002. XHDRFile.exceptions(ofstream::failbit | ofstream::badbit); // These events will throw exceptions.
  1003. string XHDRFileName = MessageFilePath; // Build the XHDR file name by adding
  1004. XHDRFileName.append(".xhdr"); // .xhdr to the message file name.
  1005. XHDRFile.open(XHDRFileName.c_str(), ios::binary | ios::trunc); // Open (and truncate) the file.
  1006. XHDRFile << MyScanData.XHDRsText; // Spit out the XHDRs.
  1007. XHDRFile.close(); // All done.
  1008. }
  1009. catch(...) { // If we encounter a problem then
  1010. MyRulebase->MyLOGmgr.logThisError( // Log the error.
  1011. MyScanData, "scanMessageFile().xhdr.file",
  1012. snf_ERROR_MSG_FILE, "ERROR_MSG_XHDRf"
  1013. );
  1014. throw XHDRError(".xhdr file write failed"); // throw our special exception.
  1015. }
  1016. }
  1017. return ScanResultCode; // Return the actual result, of course.
  1018. }
  1019. string snf_EngineHandler::extractMessageID( // Find and return the first Message-ID
  1020. const unsigned char* Msg, // Input the Message buffer to search
  1021. const int Len // and the length of the buffer.
  1022. ) {
  1023. string ExtractedID = ""; // Start with an empty string.
  1024. bool FoundID = false; // Haven't found it yet.
  1025. int C = 0; // Cursor position.
  1026. while(!FoundID && (C < (Len - 12))) { // Loop through the Msg looking for
  1027. if( // the Message-ID: header.
  1028. ('\n' == Msg[C]) && // Starting at the new line find
  1029. ('M' == Msg[C + 1] || 'm' == Msg[C + 1]) && // Message-ID: (per RFC822)
  1030. ('e' == Msg[C + 2] || 'E' == Msg[C + 2]) &&
  1031. ('s' == Msg[C + 3] || 'S' == Msg[C + 3]) && // We use an unrolled comparison
  1032. ('s' == Msg[C + 4] || 'S' == Msg[C + 4]) && // loop here for raw speed and
  1033. ('a' == Msg[C + 5] || 'A' == Msg[C + 5]) && // optimization. Note that we
  1034. ('g' == Msg[C + 6] || 'G' == Msg[C + 6]) && // compare the most likely characters
  1035. ('e' == Msg[C + 7] || 'E' == Msg[C + 7]) && // first in each case, and we don't
  1036. ('-' == Msg[C + 8]) && // need to go through a buffer length
  1037. ('I' == Msg[C + 9] || 'i' == Msg[C + 9]) && // check at each byte for partial
  1038. ('D' == Msg[C + 10] || 'd' == Msg[C + 10]) && // matches.
  1039. (':' == Msg[C + 11]) &&
  1040. (' ' == Msg[C + 12] || '\t' == Msg[C + 12])
  1041. ) {
  1042. C = C + 13; // Starting just after the space
  1043. while(C < Len) { // and staying within bounds
  1044. unsigned char X = Msg[C]; // grab each character in the ID.
  1045. if(isprint(X)) { // If it is printable,
  1046. if(' ' == X) X = '_'; // massage out the spaces as _ and
  1047. if(127 < X) X = '|'; // high characters as | and
  1048. if('\'' == X || '\"' == X) X = '`'; // ' or " to ` in order to make the
  1049. ExtractedID.push_back(X); // ID safe for logging, then push
  1050. } else // the result into our string. When
  1051. if('\r' == X || '\n' == X) break; /* leave copy loop */ // we reach the end we're done.
  1052. ++C; // else get ready for the next byte.
  1053. }
  1054. FoundID = true; // Set the flag: we found Message-ID:
  1055. break; /* leave search loop */ // We got what we came for. Break!
  1056. } else { // When we don't find the Message-ID:
  1057. if( // we check for end of headers.
  1058. ('\n' == Msg[C] && '\n' == Msg[C+1]) || // Either <LF><LF> or
  1059. ('\r' == Msg[C] && '\n' == Msg[C+1] && // <CR><LF><CF><LF>
  1060. '\r' == Msg[C+2] && '\n' == Msg[C+3])
  1061. ) { // If we've found the end of headers
  1062. break; // we're done looking. If we did not
  1063. } // find the end of headers then
  1064. ++C; // we move to the next position.
  1065. }
  1066. }
  1067. // At this point we either have the Extracted ID, or we need a substitute.
  1068. if(0 == ExtractedID.length()) { // If we need a substitute ID then
  1069. MyRulebase->MyLOGmgr.SerialNumber(ExtractedID); // use the next available serial number.
  1070. }
  1071. return ExtractedID; // Return the extracted id or substitute.
  1072. }
  1073. const LogicFault FaultBadMessageBuffer1("snf_EngineHandler::scanMessage():FaultBadMessageBuffer1(NULL == inputMessageBuffer)");
  1074. const LogicFault FaultBadMessageBuffer2("snf_EngineHandler::scanMessage():FaultBadMessageBuffer2(0 >= inputMessageLength)");
  1075. const char Unknown_SNFMatchFlag = '-';
  1076. const char Panic_SNFMatchFlag = 'p';
  1077. const char Match_SNFMatchFlag = 'm';
  1078. const char White_SNFMatchFlag = 'w';
  1079. const char Final_SNFMatchFlag = 'f';
  1080. void captureMatchRecord(snf_match& M, MatchRecord* R) {
  1081. M.flag = Unknown_SNFMatchFlag;
  1082. M.ruleid = R->RuleId();
  1083. M.symbol = R->RuleGroup();
  1084. M.index = R->MatchStartPosition;
  1085. M.endex = R->MatchEndPosition;
  1086. }
  1087. int snf_EngineHandler::scanMessage( // Scan this message (in buffer).
  1088. const unsigned char* inputMessageBuffer, // -- this is the message buffer.
  1089. const int inputMessageLength, // -- this is the length of the buffer.
  1090. const string MessageName, // -- this is the message identifier.
  1091. const int MessageSetupTime, // -- setup time used (for logging).
  1092. const IP4Address MessageSource // -- message source IP (for injection).
  1093. ) {
  1094. ScopeTimer ScanTimeCapture(MyScanData.ScanTime); // Start the scan time clock.
  1095. unsigned char* MessageBuffer = NULL; // Explicitly initialize these two
  1096. int MessageLength = 0; // so the compiler will be happy.
  1097. FaultBadMessageBuffer1(NULL == inputMessageBuffer); // Fault on null message buffer.
  1098. FaultBadMessageBuffer2(0 >= inputMessageLength); // Fault on bad message bfr length.
  1099. // Protect this engine - only one scan at a time per EngineHandler ;-)
  1100. ScopeMutex ScannerIsBusy(MyMutex); // Serialize this...
  1101. // Preliminary job setup.
  1102. // In our pre-processing we may adjust our input buffer so we capture the
  1103. // originals and then use the captured values. For example if we are scanning
  1104. // Communigate message files we will want to skip the communigate headers.
  1105. MessageBuffer = const_cast<unsigned char*>(inputMessageBuffer); // Capture the input buffer.
  1106. MessageLength = inputMessageLength; // Capture the input length.
  1107. MyScanData.clear(); // Clear the scan data.
  1108. MyScanData.ScanSize = MessageLength; // Grab the message length.
  1109. MyScanData.SetupTime = MessageSetupTime; // Capture the setup time.
  1110. if(0 == MyScanData.StartOfJobUTC) { // If the job timestamp is not
  1111. MyScanData.StartOfJobUTC = MyRulebase->MyLOGmgr.Timestamp(); // yet set then set it.
  1112. }
  1113. MyScanData.CallerForcedSourceIP(MessageSource); // Capture the MessageSource if any.
  1114. // Special note about exceptions here...
  1115. // Setting up the filter chain can throw an exception. It can't go in it's own try block or it will
  1116. // be out of scope for the remainder of the function... SO, I've wrapped everything inside of the
  1117. // Lock() in a try block ... and there's a nested one also for scanning the content. The result is
  1118. // that I can put all of the unlock work in the "outer" try block and re-throw anything that's
  1119. // needed.
  1120. snfCFGPacket MyCFGPacket(MyRulebase); // We need this to stay in scope.
  1121. // Set up the filter chain, configure the scanner, and scan the message.
  1122. try {
  1123. if(MyCFGPacket.bad()) { // If it's not there it's a big problem.
  1124. throw Panic("snf_EngineHandler::scanMessage() MyCFGPacket.bad()");
  1125. }
  1126. // Adapt to CGP message files - skip the CGP headers
  1127. MyScanData.MessageFileTypeCGPOn = // Find out if we are expecting
  1128. MyCFGPacket.Config()->MessageFileTypeCGP_on_off; // Communigate message files.
  1129. if(MyScanData.MessageFileTypeCGPOn) { // If we are scanning CGP files:
  1130. while(4 < MessageLength) { // Skip over the CGP headers.
  1131. if( // On Winx systems look for the first
  1132. '\r' == MessageBuffer[0] && // blank line encoded as CRLF CRLF.
  1133. '\n' == MessageBuffer[1] &&
  1134. '\r' == MessageBuffer[2] &&
  1135. '\n' == MessageBuffer[3]
  1136. ) { // If we find it then skip past
  1137. MessageBuffer += 4; // the new line and break out
  1138. MessageLength -= 4; // of the loop.
  1139. break;
  1140. } else // On *nix systems look for the first
  1141. if( // blank line encoded as LF LF.
  1142. '\n' == MessageBuffer[0] &&
  1143. '\n' == MessageBuffer[1]
  1144. ) { // If we find it then skip past
  1145. MessageBuffer += 2; // the blank line and break out
  1146. MessageLength -= 2; // of the loop.
  1147. break;
  1148. }
  1149. else { // If we don't find it then
  1150. ++MessageBuffer; // eat one byte from the buffer
  1151. --MessageLength; // and keep going.
  1152. }
  1153. }
  1154. // At this point our MessagBuffer contains just the message we
  1155. // want to scan.
  1156. MyScanData.ScanSize = MessageLength; // Reset the scan size.
  1157. }
  1158. // Identify this message.
  1159. if( // How do we identify this scan?
  1160. 0 == MessageName.length() || // If no name was provided or
  1161. true == MyCFGPacket.Config()->Scan_Identifier_Force_Message_Id // we are forcing RFC822 IDs then
  1162. ) { // extract the Message-ID from the
  1163. MyScanData.ScanName = extractMessageID(MessageBuffer, MessageLength); // message and use that.
  1164. } else { // If a name was provided and we
  1165. MyScanData.ScanName = MessageName; // are not forcing RFC822 IDs then
  1166. } // use the name provided to us.
  1167. // Set up our filter chain.
  1168. stringstream PrependedHeaders; // Use this to prepend X-Headers.
  1169. FilterChainCBFR IU(MessageBuffer, MessageLength, PrependedHeaders); // Set up the filter chain.
  1170. FilterChainHeaderAnalysis IV(&IU, MyIPTestEngine); // Include header analysis.
  1171. FilterChainBase64 IW(&IV); // Include Base64 decoding.
  1172. FilterChainQuotedPrintable IX(&IW); // Include Quoted Printable decoding.
  1173. FilterChainUrlDecode IY(&IX); // Include URL decoder.
  1174. FilterChainDefunker IZ(&IY); // Include Defunking.
  1175. // Now we set up our scanner and grab the current token matrix.
  1176. if(NULL!=CurrentMatrix) { delete CurrentMatrix; CurrentMatrix=NULL; } // If we have old results, delete them.
  1177. try {
  1178. CurrentMatrix = new EvaluationMatrix(MyCFGPacket.Tokens()); // Allocate a new matrix for this scan.
  1179. } catch(...) { // Check that the allocation worked.
  1180. throw AllocationError("new EvaluationMatrix() ???");
  1181. }
  1182. // Here we get down to it and start scanning the message.
  1183. const char* DebugInfo = "scanMessage() Begin Message Scan"; // If we panic, here we are.
  1184. try {
  1185. // The IPTestEngine has the ability to truncate the message in the filter
  1186. // chain under certain conditions. In order to configure those conditions
  1187. // the IPTestEngine needs to have the configuration data being used for
  1188. // the current scan.
  1189. DebugInfo = "scanMessage() setCFGData()"; // If we panic, here we are.
  1190. MyIPTestEngine.setCFGData(*(MyCFGPacket.Config())); // Setup the CFG data to use.
  1191. // Check processed headers for header directive rules. One of these might
  1192. // include a directive to get the message source IP from a header. If so
  1193. // then MyScanData will have been modified. Also if there are drill-down
  1194. // directives then MyScanData will have been modified to mark any headers
  1195. // that should be ignored -- in this case the IP test used in the filter
  1196. // chain will take appropriate action as it comes across the Received
  1197. // headers that have been marked.
  1198. DebugInfo = "scanMessage() Get Header Directives";
  1199. MyScanData.HeaderDirectiveFlags = 0x00000000; // Clear the header directive flags.
  1200. if(0 < MyCFGPacket.Config()-> // Check to see if we have any
  1201. HeaderDirectivesHandler.HeaderDirectives.size()) { // header directive rules and if we do:
  1202. HeaderFinder HeaderDirectivesParser( // Parse the headers in the message
  1203. &MyScanData, // and update the ScanData using the
  1204. MyCFGPacket.Config()->HeaderDirectivesHandler.HeaderDirectives, // directives in our configuration packet.
  1205. MessageBuffer, // Pass the message as a pointer with
  1206. MessageLength // a specific buffer length.
  1207. );
  1208. MyScanData.HeaderDirectiveFlags = HeaderDirectivesParser(); // Capture the parsed results.
  1209. }
  1210. // Message header rules in earlier versions occasionally failed because there was not
  1211. // a new-line character in front of the very first header. So, now we insert one :-)
  1212. // This allows all header rules to start off with a ^ indicating the start of the line.
  1213. // 20070719_M Added \n to X-snfScanSize: synthetic header.
  1214. // 20070120_M There are some messages where the size is a specific part of
  1215. // the pattern so we will now be emitting this data into the engine. A later
  1216. // version of the engine should handle this kind of thing using a special
  1217. // filter chain module.
  1218. DebugInfo = "scanMessage() ^X-snfScanSize"; // If we panic here we are.
  1219. // Build the scan size info
  1220. PrependedHeaders << "X-snfScanSize: " << MyScanData.ScanSize << "\n"; // and format as an X- header.
  1221. // Add a phantom received header to the top IF the message source has been
  1222. // forced by the caller or by a header directive. After that the normal
  1223. // scanning and header analysis process should pick up the IP as the
  1224. // source of the message. (It will not if the IP is ignored in the GBUdb!)
  1225. DebugInfo = "scanMessage() PhantomReceived"; // If we panic we are here.
  1226. if(0UL != MyScanData.CallerForcedSourceIP()) { // If the caller forced the source IP:
  1227. PrependedHeaders // Make a phantom Received header
  1228. << "Received: Caller.Forced.Source.IP [" // showing that the caller forced
  1229. << (string) MyScanData.CallerForcedSourceIP() << "]\n"; // the source IP.
  1230. } else
  1231. // If not forced by the caller but a
  1232. if(0UL != MyScanData.HeaderDirectiveSourceIP()) { // header directive forced the source IP:
  1233. PrependedHeaders // Make a phantom Received header
  1234. << "Received: Header.Directive.Source.IP [" // showing that a header directive
  1235. << (string) MyScanData.HeaderDirectiveSourceIP() << "]\n"; // established the source IP.
  1236. }
  1237. // Most of the time we will extract the source IP the normal way.
  1238. // If there are other prepended headers to add they should go here.
  1239. /** Add other prepended headers **/
  1240. // 20070719_M Reworked the engine to handle the filter-chain section in
  1241. // a tight loop separately from the scanning section. This should allow
  1242. // for tighter optimization in some cases (less cache thrashing) and also
  1243. // provides for later development of parallel analysis of the pre-filtered
  1244. // data, as well as the ability to output the pre-filtered data for use in
  1245. // rule development and debugging.
  1246. DebugInfo = "scanMessage() IZ.GetByte() ==> FilteredData"; // If we panic we are here.
  1247. unsigned char xb=0;
  1248. MyScanData.FilteredData.clear(); // Clear the FilteredData buffer.
  1249. try { // Watch for exceptions and scan
  1250. for(int a = 0; a < snf_ScanHorizon; a++) // the message through the filter
  1251. MyScanData.FilteredData.push_back(xb=IZ.GetByte()); // chain into the FilteredData buffer.
  1252. } // When we run out of data we will
  1253. catch(FilterChain::Empty) {} // get the Empty exception and stop.
  1254. // Scan each byte in the file up to the horizon or the end of the message.
  1255. // If something goes wrong, an exception will be thrown.
  1256. DebugInfo = "scanMessage() EvaluateThis(FilteredData)"; // If we panic, here we are.
  1257. if(false == MyScanData.GBUdbTruncateExecuted) { // If we haven't already truncated:
  1258. for(int a = 0, b = MyScanData.FilteredData.size(); a < b; a++) // Scan through the filtered data one
  1259. CurrentMatrix->EvaluateThis(MyScanData.FilteredData[a]); // byte at a time.
  1260. }
  1261. DebugInfo = "scanMessage() Scan Data Complete"; // If we panic, here we are.
  1262. }
  1263. catch(EvaluationMatrix::BadAllocation) { // Check for bad allocation during scan.
  1264. throw AllocationError("EvaluationMatrix::BadAllocation");
  1265. }
  1266. catch(EvaluationMatrix::MaxEvalsExceeded) { // Check for too many evaluators.
  1267. throw MaxEvals("EvaluationMatrix::MaxEvalsExceeded");
  1268. }
  1269. catch(EvaluationMatrix::OutOfRange) { // Check for out of range of (bad) matrix.
  1270. throw BadMatrix("EvaluationMatrix::OutOfRange");
  1271. }
  1272. catch(exception& e) { // Some other known exception?
  1273. throw; // rethrow.
  1274. }
  1275. catch(...){ // In order to prevent thread craziness
  1276. throw Panic(DebugInfo); // throw a Panic.
  1277. } // The mutex will unlock in the outer try.
  1278. }
  1279. // Here is the end of the outer try block. We can catch and rethrow whatever happend
  1280. // and we can also keep our mutex properly managed.
  1281. catch(AllocationError& e) { // Allocation Errors pass through.
  1282. MyRulebase->MyLOGmgr.logThisError( // Log the error.
  1283. MyScanData, "scanMessage()",
  1284. snf_ERROR_ALLOCATION, "ERROR_ALLOCATION"
  1285. );
  1286. throw;
  1287. }
  1288. catch(MaxEvals& e) { // MaxEvals == Panic, with a log.
  1289. MyRulebase->MyLOGmgr.logThisError( // Log the error.
  1290. MyScanData, "scanMessage()",
  1291. snf_ERROR_MAX_EVALS, "ERROR_MAX_EVALS"
  1292. );
  1293. throw;
  1294. }
  1295. catch(BadMatrix& e) { // BadMatrix == Panic, with a log.
  1296. MyRulebase->MyLOGmgr.logThisError( // Log the error.
  1297. MyScanData, "scanMessage()",
  1298. snf_ERROR_BAD_MATRIX, "ERROR_BAD_MATRIX"
  1299. );
  1300. throw;
  1301. }
  1302. catch(Panic& e) { // Panic is panic.
  1303. MyRulebase->MyLOGmgr.logThisError( // Log the error.
  1304. MyScanData, "scanMessage()",
  1305. snf_ERROR_BAD_MATRIX, "ERROR_PANIC"
  1306. );
  1307. throw;
  1308. }
  1309. catch(exception& e) { // Other exceptions.
  1310. MyRulebase->MyLOGmgr.logThisError( // Log the error.
  1311. MyScanData, "scanMessage()",
  1312. snf_ERROR_UNKNOWN, "ERROR_EXCEPTION"
  1313. );
  1314. throw;
  1315. }
  1316. catch(...) { // Anything else == Panic.
  1317. MyRulebase->MyLOGmgr.logThisError( // Log the error.
  1318. MyScanData, "scanMessage()",
  1319. snf_ERROR_UNKNOWN, "ERROR_UNKNOWN"
  1320. );
  1321. throw Panic("snf_EngineHandler::scanMessage() ERROR_UNKNOWN!");
  1322. }
  1323. // At this point, we've completed our scan and we're ready to evaluate our results to find the correct symbol to return.
  1324. ResultsCount = 0; // Reset the count,
  1325. ResultsRemaining = 0; // Remaining count,
  1326. FinalResult = NULL; // Final Result marker,
  1327. ResultCursor = CurrentMatrix -> ResultList; // And cursor position for our results.
  1328. // Now that our result processing gadgets are reset, let's process the results list.
  1329. int const CLEAN_RESULT = 0; // CLEAN means no matches or white.
  1330. int const NO_SYMBOL = 999; // NO_SYMBOL is higher than any SYMBOL
  1331. int S = NO_SYMBOL; // so we start there and work down.
  1332. snf_match TmpSNFMatch; // We'll need a buffer for our matches.
  1333. while(NULL!=ResultCursor) { // While we have records to process...
  1334. captureMatchRecord(TmpSNFMatch, ResultCursor); // grab the next record and evaluate it.
  1335. bool isPanickedRule = MyCFGPacket.isRulePanic(TmpSNFMatch.ruleid);
  1336. bool isVotingCandidate = (false == isPanickedRule);
  1337. bool isWhiteRule = (
  1338. MyCFGPacket.Config()->TrainingWhiteRuleHandler.isListed(TmpSNFMatch.ruleid) ||
  1339. 0 == TmpSNFMatch.symbol
  1340. );
  1341. bool isBestResultCode = (TmpSNFMatch.symbol < S);
  1342. // Set an appropriate flag.
  1343. if(isPanickedRule) TmpSNFMatch.flag = Panic_SNFMatchFlag;
  1344. else if(isWhiteRule) TmpSNFMatch.flag = White_SNFMatchFlag;
  1345. else TmpSNFMatch.flag = Match_SNFMatchFlag;
  1346. // Vote for best rule match.
  1347. if(isVotingCandidate && isBestResultCode) {
  1348. FinalResult = ResultCursor;
  1349. S = TmpSNFMatch.symbol;
  1350. }
  1351. // Move on to next result.
  1352. ResultsCount++;
  1353. ResultCursor=ResultCursor->NextMatchRecord;
  1354. }
  1355. if(NO_SYMBOL != S) { // If a pattern match was detected then
  1356. MyScanData.PatternWasFound = true; // trip the flag and record the
  1357. MyScanData.PatternID = FinalResult->RuleId(); // Rule ID and the
  1358. MyScanData.PatternSymbol = FinalResult->RuleGroup(); // Symbol.
  1359. }
  1360. //// GBUdb Integration ///////////////////////////////////////////////////////
  1361. // To integrate GBUdb we need to generalize the result from the pattern scan.
  1362. PatternResultTypes ScanResultType = NoPattern; // What kind of result have we here?
  1363. if(0 < (MyScanData.HeaderDirectiveFlags & HeaderDirectiveWhite)) { // If a white header directive matched
  1364. ScanResultType = WhitePattern; // then we have a "WhitePattern'.
  1365. } else
  1366. if(MyCFGPacket.Config()->TrainingWhiteRuleHandler.isListed(S)) { // If the pattern was mapped to a white
  1367. ScanResultType = WhitePattern; // rule group then we have a 'WhitePattern'.
  1368. } else
  1369. if(CLEAN_RESULT == S) { // If there was a standard white rule
  1370. ScanResultType = WhitePattern; // result then we have a 'WhitePattern'.
  1371. } else
  1372. if(NO_SYMBOL == S) { // If there was no pattern match then
  1373. ScanResultType = NoPattern; // we have 'NoPattern'.
  1374. } else
  1375. if(63 == S) { // If the pattern was a standard IP rule
  1376. ScanResultType = IPPattern; // then we have an 'IPPattern'.
  1377. } else
  1378. if(62 >= S) { // In general, other nonzer rule groups
  1379. ScanResultType = BlackPattern; // indicate we have a 'BlackPatter'.
  1380. } else
  1381. if(63 < S) { // Any pattern number > 63 is special.
  1382. ScanResultType = AboveBandPattern; // Any of these are an 'AboveBandPattern'
  1383. }
  1384. if(MyScanData.FoundSourceIP()) { // We need an identified IP source.
  1385. // Train the GBUdb based on our pattern matching results.
  1386. // Evaluate our training conditions.
  1387. bool TrainingIsTurnedOn = MyCFGPacket.Config()->GBUdbTrainingOn_Off;
  1388. bool MessageWasNotTruncated = (false == MyScanData.GBUdbTruncateExecuted);
  1389. bool ThereIsNoBypassHeaderDirective = (0 == (MyScanData.HeaderDirectiveFlags & HeaderDirectiveBypass));
  1390. bool ThereIsNoBypassResultCodeRule = (false == MyCFGPacket.Config()->TrainingBypassRuleHandler.isListed(S));
  1391. bool ThereIsNoImpliedBypassDirective = (Ignore != (MyScanData.SourceIPRecord().GBUdbData.Flag()));
  1392. // If these conditions are favorable then train the GBUdb.
  1393. if( // Check to see if training is enabled.
  1394. TrainingIsTurnedOn && // If it is turned on AND
  1395. MessageWasNotTruncated && // The message was not truncated AND
  1396. ThereIsNoBypassHeaderDirective && // There is NO Bypass header directive AND
  1397. ThereIsNoBypassResultCodeRule && // There is NO Bypass result code rule AND
  1398. ThereIsNoImpliedBypassDirective // There is NO Implied bypass directive:
  1399. ) {
  1400. // GBUdb training is enabled.
  1401. switch(ScanResultType) { // Evaluate the scan result.
  1402. case NoPattern: // On no pattern (benefit of doubt) or
  1403. case WhitePattern: { // a white pattern:
  1404. MyRulebase->MyGBUdb.addGood( // then add a good count to the
  1405. MyScanData.SourceIPRecord().IP); // source IP.
  1406. break;
  1407. }
  1408. case BlackPattern: { // On a black pattern:
  1409. MyRulebase->MyGBUdb.addBad( // add a bad count to the source IP
  1410. MyScanData.SourceIPRecord().IP); // in the GBUdb.
  1411. break;
  1412. }
  1413. default: break; // In all other cases, don't train.
  1414. }
  1415. }
  1416. // GBUdb Training Is Complete
  1417. // At this point our SourceIPRange tells us exactly how to evaluate
  1418. // the source IP for this message.
  1419. switch(MyScanData.SourceIPRange()) {
  1420. case White: { // If the IP was in the white zone
  1421. MyScanData.GBUdbWhiteTriggered = true; // mark that down.
  1422. if(MyCFGPacket.Config()->WhiteRangeHandler.On_Off) { // If we're also turned on then
  1423. if( // do we need to force the symbol?
  1424. BlackPattern == ScanResultType || // We do if the pattern scan resulted
  1425. IPPattern == ScanResultType // in a black or IPblack match.
  1426. ) { // If we must force a white result:
  1427. S = MyCFGPacket.Config()->WhiteRangeHandler.Symbol; // force the symbol and
  1428. MyScanData.GBUdbWhiteSymbolForced = true; // record that it was done.
  1429. }
  1430. // AutoPanic
  1431. int AutoPanicRangeLowerBound = // Calculate the current lower bound
  1432. MyRulebase->MyLOGmgr.LatestRuleID() - // for rule id's that are eligible to
  1433. MyCFGPacket.Config()->gbudb_regions_white_panic_rule_range; // trigger auto-panics.
  1434. if(BlackPattern == ScanResultType || IPPattern == ScanResultType) { // Was there a pattern/source conflict?
  1435. MyScanData.GBUdbPatternSourceConflict = true; // Record the event.
  1436. if(MyScanData.PatternID > AutoPanicRangeLowerBound) { // If the pattern ID is in range then
  1437. MyScanData.GBUdbAutoPanicTriggered = true; // record that the AutoPanic triggered.
  1438. if(MyCFGPacket.Config()->gbudb_regions_white_panic_on_off) { // If rule panics are turned on then
  1439. MyScanData.GBUdbAutoPanicExecuted = true; // indicate we are executing an autopanic.
  1440. MyRulebase->addRulePanic(MyScanData.PatternID); // Add the rule panic.
  1441. }
  1442. }
  1443. }
  1444. }
  1445. break;
  1446. }
  1447. case Normal: { // If the IP is normal...
  1448. MyScanData.GBUdbNormalTriggered = true; // Count the event.
  1449. break; // That's all.
  1450. }
  1451. case New: {
  1452. break;
  1453. }
  1454. case Caution: { // If the IP is in the caution range.
  1455. MyScanData.GBUdbCautionTriggered = true; // Track that this range fired.
  1456. if(
  1457. MyCFGPacket.Config()->CautionRangeHandler.On_Off && // If we're also turned on and there
  1458. NoPattern == ScanResultType // is no pattern match then
  1459. ) { // we will override the scan result:
  1460. S = MyCFGPacket.Config()->CautionRangeHandler.Symbol; // set the symbol as configured and
  1461. MyScanData.GBUdbCautionSymbolForced = true; // record that it was done.
  1462. }
  1463. break;
  1464. }
  1465. // Truncate is a kind of uber-black, so we do some weirdness here.
  1466. // If Truncate happens, then black was triggered by definition. In
  1467. // peek cases or if Truncate is turned off then Truncate might not
  1468. // execute-- when that happens we need to fall back to Black behavior.
  1469. case Truncate: // If the IP was in the truncate range
  1470. case Black: { // and/or If the IP is in the black range
  1471. MyScanData.GBUdbBlackTriggered = true; // mark that down.
  1472. if(MyScanData.GBUdbTruncateExecuted) { // If the truncate action was executed
  1473. S = MyCFGPacket.Config()->gbudb_regions_black_truncate_symbol; // we set the output symbol accordingly.
  1474. } else // Truncate overrides black.. but if
  1475. if( // Black is in charge do this...
  1476. MyCFGPacket.Config()->BlackRangeHandler.On_Off && // If black action is turned on and there
  1477. NoPattern == ScanResultType // is no pattern match then
  1478. ) { // we will override the scan data:
  1479. S = MyCFGPacket.Config()->BlackRangeHandler.Symbol; // set the symbol as configured and
  1480. MyScanData.GBUdbBlackSymbolForced = true; // record that it was done.
  1481. }
  1482. // Now that all of the overrides have been handled we can handle
  1483. // sampling. When a black IP is detected and a pattern match is not
  1484. // then we may sample the data.
  1485. int BlackSampleRate = // Grab the sample rate to make the
  1486. MyCFGPacket.Config()->gbudb_regions_black_sample_grab_one_in; // logic clearer.
  1487. bool SampleThresholdReached = // Check the spam probability of the
  1488. (MyCFGPacket.Config()->gbudb_regions_black_sample_probability <= // source IP against the configuration
  1489. MyScanData.SourceIPRecord().GBUdbData.Probability()); // to see if this IP is a candidate.
  1490. if( // Should we sample?
  1491. false == MyScanData.GBUdbTruncateExecuted && // If this was not a truncation and
  1492. NoPattern == ScanResultType && // No pattern match was found and
  1493. SampleThresholdReached && // We reached out sample threshold and
  1494. MyRulebase->MyLOGmgr.OkToSample(BlackSampleRate) // It's ok for us to sample this round
  1495. ) { // then our sampling mechanism is triggerd.
  1496. MyScanData.GBUdbSampleTriggered = true; // Mark down that event.
  1497. if(MyCFGPacket.Config()->gbudb_regions_black_sample_on_off) { // If sampling is turned on then
  1498. MyScanData.GBUdbSampleExecuted = true; // we will be sampling this data.
  1499. if(MyCFGPacket.Config()->gbudb_regions_black_sample_passthrough) { // If sampling by passthrough then
  1500. S = MyCFGPacket.Config()-> // Force the symbol value to passthrough
  1501. gbudb_regions_black_sample_passthrough_symbol; // (usually 0 - same as CLEAN).
  1502. } else { // If sampling internally then
  1503. MyRulebase->MyNETmgr.sendSample( // send this message as a sample.
  1504. (*(MyCFGPacket.Config())), // Pass our current config info,
  1505. MyScanData, // our scan data,
  1506. MessageBuffer, // and the message itself.
  1507. MessageLength
  1508. );
  1509. }
  1510. }
  1511. }
  1512. break;
  1513. }
  1514. case Unknown: // Unknown - most likely we couldn't
  1515. default: { // find a usable source.
  1516. break; // Do nothing.
  1517. }
  1518. }
  1519. } // End of IP source depended work (GBUdbOverrides)
  1520. // At this point we know the final result of our scan
  1521. // and the number of results we have. It's time to set up our result
  1522. // processing widgets for further query and return the result of this scan.
  1523. ResultCursor = CurrentMatrix -> ResultList; // Starting at the top of the list
  1524. ResultsRemaining = ResultsCount; // with all of the results ahead of us.
  1525. if(NO_SYMBOL==S) S = CLEAN_RESULT; // When there were no results, CLEAN
  1526. MyScanData.CompositeFinalResult = S; // Record what we will return.
  1527. if( // Prepare our final result.
  1528. CLEAN_RESULT == S && // If we have a clean result code
  1529. ScanResultType != WhitePattern && // and it wasn't forced by a white
  1530. false == MyScanData.GBUdbWhiteSymbolForced) { // rule or white GBUdb then we mark
  1531. TmpSNFMatch.flag = 'c'; // the final record Clean.
  1532. } else { // Otherwise we mark the final record
  1533. TmpSNFMatch.flag = 'f'; // as Final - meaning deliberately zero.
  1534. }
  1535. TmpSNFMatch.index = 0; // Our index is charater zero.
  1536. TmpSNFMatch.endex = CurrentMatrix->CountOfCharacters - 1; // Our endex is the end of the message.
  1537. TmpSNFMatch.symbol = MyScanData.CompositeFinalResult; // Our symbol is in CompositeFinal.
  1538. // The rule id is dependent on what's happened...
  1539. if( // If the symbol has been forced...
  1540. MyScanData.GBUdbTruncateExecuted || // Was it a Truncate-IP scan?
  1541. MyScanData.GBUdbWhiteSymbolForced || // Was it a White-IP scan?
  1542. MyScanData.GBUdbBlackSymbolForced || // Was it a Black-IP scan?
  1543. MyScanData.GBUdbCautionSymbolForced || // Was it a Caution-IP scan?
  1544. NULL == FinalResult // OR there was no valid match
  1545. ) { // then our rule id will be
  1546. TmpSNFMatch.ruleid = 0; // ZERO.
  1547. } else { // Normally the rule id will be
  1548. TmpSNFMatch.ruleid = FinalResult->RuleId(); // that of the winning pattern match.
  1549. }
  1550. MyScanData.MatchRecords.push_back(TmpSNFMatch); // Push our final entry onto the list.
  1551. MyScanData.MatchRecordsCursor = MyScanData.MatchRecords.begin(); // Reset the delivery system to the
  1552. MyScanData.MatchRecordsDelivered = 0; // beginning of the results list.
  1553. MyScanData.ScanDepth = CurrentMatrix->MaximumCountOfEvaluators; // Capture the scan depth.
  1554. MyScanData.ScanTime.stop(); // Stop the scan time clock.
  1555. MyRulebase->MyLOGmgr.logThisScan((*(MyCFGPacket.Config())), MyScanData); // Log the data from this scan.
  1556. // Since V2-9rc19 of this engine, the Engine mutex and snfCFGPacket handle
  1557. // their own cleanup when this call goes out of scope. ScannerIsBusy(MyMutex)
  1558. // will unlock() on destruction and snfCFGPacket will MyRulebase->drop().
  1559. return S; // Return the final scan result.
  1560. }
  1561. int snf_EngineHandler::getResults(snf_match* MatchBuffer){ // Get the next match buffer.
  1562. ScopeMutex SerializeThis(MyMutex); // Serialize this...
  1563. if(NULL == MatchBuffer) { // If we were given the reset signal
  1564. MyScanData.MatchRecordsCursor = MyScanData.MatchRecords.begin(); // Move the cursor to the beginning
  1565. MyScanData.MatchRecordsDelivered = 0; // and reset the delivered count.
  1566. } else { // If we are in delivery mode and
  1567. if(MyScanData.MatchRecords.end() != MyScanData.MatchRecordsCursor) { // there are more to deliver then
  1568. (*MatchBuffer) = (*MyScanData.MatchRecordsCursor); // deliver the current match and
  1569. ++MyScanData.MatchRecordsCursor; // move on to the next. Be sure to
  1570. ++MyScanData.MatchRecordsDelivered; // count this one as delivered.
  1571. }
  1572. }
  1573. return MyScanData.MatchRecords.size() - MyScanData.MatchRecordsDelivered; // Return a count of unseen records.
  1574. }
  1575. int snf_EngineHandler::getDepth(){ // Get the scan depth.
  1576. ScopeMutex SerializeThis(MyMutex); // Protect our reading.
  1577. return MyScanData.ScanDepth; // Return the latest scan depth.
  1578. }
  1579. const string snf_EngineHandler::getClassicLog() { // Get classic log entries for last scan.
  1580. ScopeMutex SerializeThis(MyMutex); // Serialize this...
  1581. return MyScanData.ClassicLogText; // Return the log text.
  1582. }
  1583. const string snf_EngineHandler::getXMLLog() { // Get XML log entries or last scan.
  1584. ScopeMutex SerializeThis(MyMutex); // Serialize this...
  1585. return MyScanData.XMLLogText; // Return the log text.
  1586. }
  1587. const string snf_EngineHandler::getXHDRs() { // Get XHDRs for last scan.
  1588. ScopeMutex SerializeThis(MyMutex); // Serialize this...
  1589. return MyScanData.XHDRsText; // Return the XHeaders text.
  1590. }
  1591. //// Multi Engine Handler Methods
  1592. // snf_RoundRulebaseCursor()
  1593. // Returns the next rulebase slot id wrapping around to zero.
  1594. int snf_MultiEngineHandler::RoundRulebaseCursor(){ // Return the next Rulebase handle
  1595. RulebaseCursor++; // Increase the cursor.
  1596. if(snf_MAX_RULEBASES<=RulebaseCursor) // If we've reached the end of the array
  1597. RulebaseCursor=0; // then we start back at zero.
  1598. return RulebaseCursor; // Return the new handle candidate.
  1599. }
  1600. // snf_RoundEngineCursor()
  1601. // Returns the next engine slot id wrapping around to zero.
  1602. int snf_MultiEngineHandler::RoundEngineCursor(){ // Return the next Engine handle candidate.
  1603. EngineCursor++; // Increase the cursor.
  1604. if(snf_MAX_SCANNERS<=EngineCursor) // If we've reached the end of the array
  1605. EngineCursor=0; // then we start back at zero.
  1606. return EngineCursor; // Return the new handle candidate.
  1607. }
  1608. snf_MultiEngineHandler::~snf_MultiEngineHandler(){ // Clean up, safety check, shut down.
  1609. RulebaseScan.lock(); // Lock both the rulebase and
  1610. EngineScan.lock(); // engine scan rulebases.
  1611. RulebaseCursor = EngineCursor = SHUTDOWN; // Set the cursors to the FINISHED value.
  1612. // The handlers in the arrays will all get closed by their destructors.
  1613. // The SHUTDOWN value in the cursors will force any errant threads to get no love.
  1614. RulebaseScan.unlock();
  1615. EngineScan.unlock();
  1616. }
  1617. // snf_OpenRulebase()
  1618. // Grab the first available rulebse handler and light it up.
  1619. int snf_MultiEngineHandler::OpenRulebase(const char* path, const char* licenseid, const char* authentication){
  1620. RulebaseScan.lock(); // Serialize this.
  1621. if(SHUTDOWN==RulebaseCursor) { // Not ok to open after shutdown.
  1622. RulebaseScan.unlock();
  1623. throw Panic("snf_MultiEngineHandler::OpenRulebase() No open after shutdown");
  1624. }
  1625. int Handle = RoundRulebaseCursor(); // Grab the next hanlder on the list.
  1626. if(RulebaseHandlers[Handle].isReady()) { // Check to see if it's already in use. If so,
  1627. int wherewasi = Handle; // keep track of where we started.
  1628. while(RulebaseHandlers[(Handle=RoundRulebaseCursor())].isReady()){ // Loop to find an free handler.
  1629. if(wherewasi==Handle) { // If we get back where we started
  1630. RulebaseScan.unlock(); // Unlock the Rulebase Scanning process
  1631. throw TooMany("snf_MultiEngineHandler::OpenRulebase() Too Many Open"); // and tell the caller Too Many are open.
  1632. }
  1633. }
  1634. }
  1635. // Now we have a Handle to a free RulebaseHandler. Time to open it up.
  1636. try {
  1637. RulebaseHandlers[Handle].open(path,licenseid,authentication); // Try to open the handler.
  1638. } // If an exception is thrown...
  1639. catch(snf_RulebaseHandler::AuthenticationError& e) // Catch and re-throw the appropriate
  1640. { RulebaseScan.unlock(); throw AuthenticationError(e.what()); } // exception.
  1641. catch(snf_RulebaseHandler::AllocationError& e)
  1642. { RulebaseScan.unlock(); throw AllocationError(e.what()); }
  1643. catch(snf_RulebaseHandler::FileError& e)
  1644. { RulebaseScan.unlock(); throw FileError(e.what()); }
  1645. catch(snf_RulebaseHandler::Busy& e)
  1646. { RulebaseScan.unlock(); throw Panic(e.what()); } // Wasn't busy above!! Shoudn't be here!!!
  1647. catch(exception& e)
  1648. { RulebaseScan.unlock(); throw; }
  1649. catch(...) {
  1650. RulebaseScan.unlock();
  1651. throw Panic("snf_MultiEngineHandler::OpenRulebase() ???");
  1652. }
  1653. RulebaseScan.unlock(); // If everything went well then UnLock
  1654. return Handle; // and return the happy new handle.
  1655. }
  1656. // snf_RefreshRulebase()
  1657. // Reload the rulebase associated with the handler.
  1658. void snf_MultiEngineHandler::RefreshRulebase(int RulebaseHandle){ // Refreshing a rulebase (Not Serialized)
  1659. try {
  1660. RulebaseHandlers[RulebaseHandle].refresh(); // Try to refresh the rulebase.
  1661. } // Catch and rethrow any exceptions.
  1662. catch(snf_RulebaseHandler::AuthenticationError& e) {
  1663. throw AuthenticationError(e.what());
  1664. }
  1665. catch(snf_RulebaseHandler::AllocationError& e) {
  1666. throw AllocationError(e.what());
  1667. }
  1668. catch(snf_RulebaseHandler::FileError& e) {
  1669. throw FileError(e.what());
  1670. }
  1671. catch(snf_RulebaseHandler::Busy& e) {
  1672. throw Busy(e.what());
  1673. }
  1674. catch(exception& e) {
  1675. throw;
  1676. }
  1677. catch(...) {
  1678. throw Panic("snf_MultiEngineHandler::RefreshRulebase() ???");
  1679. }
  1680. }
  1681. // snf_CloseRulebase()
  1682. // Shut down this Rulebase handler.
  1683. void snf_MultiEngineHandler::CloseRulebase(int RulebaseHandle){ // Closing a rulebase handler
  1684. RulebaseScan.lock(); // Serialize this - the handler changes state.
  1685. try { // Try to close the handler.
  1686. RulebaseHandlers[RulebaseHandle].close();
  1687. }
  1688. catch(snf_RulebaseHandler::Busy& e) { // A busy throw we can understand.
  1689. RulebaseScan.unlock(); throw Busy(e.what());
  1690. }
  1691. catch(exception& e) { // Other exceptions? rethrow.
  1692. RulebaseScan.unlock(); throw;
  1693. }
  1694. catch(...) { // Any other throw is big trouble.
  1695. RulebaseScan.unlock();
  1696. throw Panic("snf_MultiEngineHandler::CloseRulebase() ???");
  1697. }
  1698. RulebaseScan.unlock(); // When done, unlock the Rulebase Scan process.
  1699. }
  1700. // snf_OpenEngine()
  1701. // Grab the first available Engine handler and light it up
  1702. int snf_MultiEngineHandler::OpenEngine(int RulebaseHandle){
  1703. EngineScan.lock(); // Serialize this.
  1704. if(SHUTDOWN==EngineCursor) { // Not ok to open after shutdown.
  1705. EngineScan.unlock();
  1706. throw Panic("snf_MultiEngineHandler::OpenEngine() No open after shutdwon");
  1707. }
  1708. int Handle = RoundEngineCursor(); // Grab the next hanlder on the list.
  1709. if(EngineHandlers[Handle].isReady()) { // Check to see if it's already in use. If so,
  1710. int wherewasi = Handle; // keep track of where we started.
  1711. while(EngineHandlers[(Handle=RoundEngineCursor())].isReady()){ // Loop to find an free handler.
  1712. if(wherewasi==Handle) { // If we get back where we started
  1713. EngineScan.unlock(); // Unlock the Rulebase Scanning process
  1714. throw TooMany("snf_MultiEngineHandler::OpenEngine() too many open"); // and tell the caller Too Many are open.
  1715. }
  1716. }
  1717. }
  1718. // Now we have a Handle to a free RulebaseHandler. Time to open it up.
  1719. try {
  1720. EngineHandlers[Handle].open(&RulebaseHandlers[RulebaseHandle]); // Try to open the handler.
  1721. } // If an exception is thrown...
  1722. catch(snf_EngineHandler::AllocationError& e) // Catch and rethrow as appropriate.
  1723. { EngineScan.unlock(); throw AllocationError(e.what()); }
  1724. catch(snf_EngineHandler::Busy& e)
  1725. { EngineScan.unlock(); throw Panic(e.what()); } // Not busy above should not be busy now!!!
  1726. catch(exception& e) {
  1727. EngineScan.unlock();
  1728. throw;
  1729. }
  1730. catch(...) {
  1731. EngineScan.unlock();
  1732. throw Panic("snf_MultiEngineHandler::OpenEngine() ???");
  1733. }
  1734. EngineScan.unlock(); // If everything went well then UnLock
  1735. return Handle; // and return the happy new handle.
  1736. }
  1737. // snf_CloseEngine()
  1738. // Shut down this Engine handler.
  1739. void snf_MultiEngineHandler::CloseEngine(int EngineHandle){ // Closing an engine handler.
  1740. EngineScan.lock(); // Serialize this, the object changes states.
  1741. try {
  1742. EngineHandlers[EngineHandle].close(); // Try closing the handler.
  1743. }
  1744. catch(snf_EngineHandler::AllocationError& e) // Catch and throw any exceptions as needed.
  1745. { EngineScan.unlock(); throw AllocationError(e.what()); }
  1746. catch(snf_EngineHandler::Busy& e)
  1747. { EngineScan.unlock(); throw Busy(e.what()); }
  1748. catch(exception& e) {
  1749. EngineScan.unlock();
  1750. throw;
  1751. }
  1752. catch(...) {
  1753. EngineScan.unlock();
  1754. throw Panic("snf_MultiEngineHandler::CloseEngine() ???");
  1755. }
  1756. EngineScan.unlock(); // Unlock when we're closed.
  1757. }
  1758. // snf_Scan()
  1759. // Scan the MessageBuffer with this Engine.
  1760. int snf_MultiEngineHandler::Scan(int EngineHandle, const unsigned char* MessageBuffer, int MessageLength){
  1761. // NOT serialized. Many scans at once, presumably one scan engine per thread.
  1762. int ScanResult; // ScanResult stays in scope.
  1763. try {
  1764. ScanResult=EngineHandlers[EngineHandle]
  1765. .scanMessage(MessageBuffer,MessageLength); // Try the scan on the given engine.
  1766. }
  1767. catch(snf_EngineHandler::AllocationError& e) { // Re-throw any exceptions as needed.
  1768. throw AllocationError(e.what());
  1769. }
  1770. catch(snf_EngineHandler::Busy& e) { throw Busy(e.what()); }
  1771. catch(exception& e) { throw; }
  1772. catch(...) { throw Panic("snf_MultiEngineHandler::Scan() ???"); }
  1773. return ScanResult; // Return the results.
  1774. }
  1775. // The Engine prvides detailed match results through this function.
  1776. int snf_MultiEngineHandler::getResults(int EngineHandle, snf_match* matchbfr){
  1777. // NOT serialized. Many scans at once, presumably one scan engine per thread.
  1778. int ResultCount; // ResultCount stays in scope.
  1779. try {
  1780. ResultCount=EngineHandlers[EngineHandle].getResults(matchbfr); // Try the scan on the given engine.
  1781. }
  1782. catch(snf_EngineHandler::AllocationError& e) { // Re-throw any exceptions as needed.
  1783. throw AllocationError(e.what());
  1784. }
  1785. catch(snf_EngineHandler::Busy& e) { throw Busy(e.what()); }
  1786. catch(exception& e) { throw; }
  1787. catch(...) { throw Panic("snf_MultiEngineHandler::getResults() ???"); }
  1788. return ResultCount; // Return the results.
  1789. }
  1790. // The Engine provies the scan depth through this function.
  1791. int snf_MultiEngineHandler::getDepth(int EngineHandle){
  1792. // NOT serialized. Many scans at once, presumably one scan engine per thread.
  1793. int DepthResult; // ScanResult stays in scope.
  1794. try {
  1795. DepthResult=EngineHandlers[EngineHandle].getDepth(); // Try the scan on the given engine.
  1796. }
  1797. catch(snf_EngineHandler::AllocationError& e) { // Re-throw any exceptions as needed.
  1798. throw AllocationError(e.what());
  1799. }
  1800. catch(snf_EngineHandler::Busy& e) { throw Busy(e.what()); }
  1801. catch(exception& e) { throw; }
  1802. catch(...) { throw Panic("snf_MultiEngineHandler::getDepth() ???"); }
  1803. return DepthResult; // Return the results.
  1804. }