Fix retransmission issues (order, tracing, etc.)
[anna.git] / example / diameter / launcher / Launcher.cpp
1 // ANNA - Anna is Not Nothingness Anymore                                                         //
2 //                                                                                                //
3 // (c) Copyright 2005-2015 Eduardo Ramos Testillano & Francisco Ruiz Rayo                         //
4 //                                                                                                //
5 // See project site at http://redmine.teslayout.com/projects/anna-suite                           //
6 // See accompanying file LICENSE or copy at http://www.teslayout.com/projects/public/anna.LICENSE //
7
8
9 // Project
10 #include <anna/statistics/Engine.hpp>
11 #include <anna/diameter/codec/Engine.hpp>
12 #include <anna/http/Transport.hpp>
13 #include <anna/diameter/stack/Engine.hpp>
14 #include <anna/diameter/helpers/base/functions.hpp>
15 #include <anna/diameter/helpers/dcca/functions.hpp>
16 #include <anna/time/functions.hpp>
17 #include <anna/diameter.comm/ApplicationMessageOamModule.hpp>
18
19 // Process
20 #include "Launcher.hpp"
21
22
23 #define SIGUSR2_TASKS_INPUT_FILENAME "./sigusr2.tasks.input"
24 #define SIGUSR2_TASKS_OUTPUT_FILENAME "./sigusr2.tasks.output"
25 #define DIAMETER_CODEC_ENGINE_NAME_PREFIX "MyCodecEngine"
26
27 Launcher::Launcher() : anna::comm::Application("launcher", "DiameterLauncher", "1.1"), a_communicator(NULL) {
28   a_myDiameterEngine = new MyDiameterEngine();
29   a_myDiameterEngine->setRealm("ADL.ericsson.com");
30   a_myDiameterEngine->setAutoBind(false);  // allow to create client-sessions without binding them, in order to set timeouts.
31   a_logFile = "launcher.log";
32   a_burstLogFile = "launcher.burst";
33   a_splitLog = false;
34   a_detailedLog = false;
35   a_dumpLog = false;
36   a_timeEngine = NULL;
37   a_counterRecorder = NULL;
38   a_counterRecorderClock = NULL;
39   a_entity = NULL;
40   a_diameterLocalServer = NULL;
41   a_cerPathfile = "cer.xml";
42   a_dwrPathfile = "dwr.xml";
43   // Burst
44   a_burstCycle = 1;
45   a_burstRepeat = false;
46   a_burstActive = false;
47   a_burstLoadIndx = 0;
48   a_burstDeliveryIt = a_burstMessages.begin();
49   a_otaRequest = 0;
50   a_burstPopCounter = 0;
51 }
52
53 anna::diameter::comm::Message *Launcher::createCommMessage() throw(anna::RuntimeException) {
54   return a_commMessages.create();
55 }
56
57 void Launcher::releaseCommMessage(anna::diameter::comm::Message *msg) throw() {
58   a_commMessages.release(msg);
59 }
60
61 void Launcher::baseProtocolSetupAsClient() throw(anna::RuntimeException) {
62
63   anna::diameter::codec::Engine *codecEngine;
64
65   codecEngine = getCodecEngine();
66   // XXXXXXXXXXXXXXXXXXXX codecEngine = a_myDiameterEngine->getBaseProtocolCodecEngine();
67
68
69   // Build CER
70   //   <CER> ::= < Diameter Header: 257, REQ >
71   //             { Origin-Host } 264 diameterIdentity
72   //             { Origin-Realm } 296 idem
73   //          1* { Host-IP-Address } 257, address
74   //             { Vendor-Id } 266 Unsigned32
75   //             { Product-Name } 269 UTF8String
76   //             [Origin-State-Id] 278 Unsigned32
77   //           * [ Supported-Vendor-Id ]  265 Unsigned32
78   //           * [ Auth-Application-Id ] 258 Unsigned32
79   //           * [Acct-Application-Id]  259 Unsigned32
80   anna::diameter::codec::Message diameterCER(codecEngine);
81   int applicationId = 0 /*anna::diameter::helpers::APPID__3GPP_Rx*/; // Unsigned32
82   std::string OH = a_myDiameterEngine->getHost();
83   std::string OR = a_myDiameterEngine->getRealm();
84   std::string hostIP = anna::functions::getHostnameIP(); // Address
85   int vendorId = anna::diameter::helpers::VENDORID__tgpp; // Unsigned32
86   std::string productName = "ANNA Diameter Launcher"; // UTF8String
87   bool loadingError = false;
88
89   try {
90     diameterCER.loadXML(a_cerPathfile);
91   } catch(anna::RuntimeException &ex) {
92     //ex.trace();
93     loadingError = true;
94   }
95
96   if(loadingError) {
97     LOGWARNING(anna::Logger::warning("CER file not found. Get harcoded.", ANNA_FILE_LOCATION));
98     diameterCER.setId(anna::diameter::helpers::base::COMMANDID__Capabilities_Exchange_Request);
99     diameterCER.setApplicationId(applicationId);
100     diameterCER.addAvp(anna::diameter::helpers::base::AVPID__Origin_Host)->getDiameterIdentity()->setValue(OH);
101     diameterCER.addAvp(anna::diameter::helpers::base::AVPID__Origin_Realm)->getDiameterIdentity()->setValue(OR);
102     diameterCER.addAvp(anna::diameter::helpers::base::AVPID__Host_IP_Address)->getAddress()->fromPrintableString(hostIP.c_str()); // supported by Address class, anyway is better to provide "1|<ip address>"
103     diameterCER.addAvp(anna::diameter::helpers::base::AVPID__Vendor_Id)->getUnsigned32()->setValue(vendorId);
104     diameterCER.addAvp(anna::diameter::helpers::base::AVPID__Product_Name)->getUTF8String()->setValue(productName);
105     diameterCER.addAvp(anna::diameter::helpers::base::AVPID__Auth_Application_Id)->getUnsigned32()->setValue(applicationId);
106   }
107
108   // Build DWR
109   //   <DWR>  ::= < Diameter Header: 280, REQ >
110   //              { Origin-Host }
111   //              { Origin-Realm }
112   anna::diameter::codec::Message diameterDWR(codecEngine);
113   loadingError = false;
114
115   try {
116     diameterDWR.loadXML(a_dwrPathfile);
117   } catch(anna::RuntimeException &ex) {
118     //ex.trace();
119     loadingError = true;
120   }
121
122   if(loadingError) {
123     LOGWARNING(anna::Logger::warning("DWR file not found. Get harcoded.", ANNA_FILE_LOCATION));
124     diameterDWR.setId(anna::diameter::helpers::base::COMMANDID__Device_Watchdog_Request);
125     diameterDWR.setApplicationId(applicationId);
126     diameterDWR.addAvp(anna::diameter::helpers::base::AVPID__Origin_Host)->getDiameterIdentity()->setValue(OH);
127     diameterDWR.addAvp(anna::diameter::helpers::base::AVPID__Origin_Realm)->getDiameterIdentity()->setValue(OR);
128   }
129
130   // Assignment for CER/DWR and CEA/DWA:
131   a_myDiameterEngine->setCERandDWR(diameterCER.code(), diameterDWR.code());
132   //a_myDiameterEngine->setCEAandDWA(diameterCEA.code(), diameterDWA.code());
133 }
134
135 void Launcher::writeLogFile(const anna::DataBlock & db, const std::string &logExtension, const std::string &detail, anna::diameter::codec::Engine *codecEngine) const throw() {
136 //   if (!logEnabled()) return;
137   anna::diameter::codec::Message codecMsg(codecEngine);
138   try { codecMsg.decode(db); } catch(anna::RuntimeException &ex) { ex.trace(); }
139   writeLogFile(codecMsg, logExtension, detail);
140
141 }
142
143 // Si ya lo tengo decodificado:
144 void Launcher::writeLogFile(const anna::diameter::codec::Message & decodedMessage, const std::string &logExtension, const std::string &detail) const throw() {
145 //   if (!logEnabled()) return;
146   // Open target file:
147   std::string targetFile = a_logFile;
148
149   if(a_splitLog) {
150     targetFile += ".";
151     targetFile += logExtension;
152   }
153
154   std::ofstream out(targetFile.c_str(), std::ifstream::out | std::ifstream::app);
155   // Set text to dump:
156   std::string title = "[";
157   title += logExtension;
158   title += "]";
159   // Build complete log:
160   std::string log = "\n";
161   std::string xml = decodedMessage.asXMLString();
162
163
164   if(a_detailedLog) {
165     anna::time::Date now;
166     now.setNow();
167     title += " ";
168     title += now.asString();
169     log += anna::functions::highlight(title, anna::functions::TextHighlightMode::OverAndUnderline);
170     log += xml;
171     log += "\n";
172     log += anna::functions::highlight("Used resource");
173     log += detail;
174     log += "\n";
175   } else {
176     log += title;
177     log += "\n";
178     log += xml;
179     log += "\n";
180   }
181
182   if(a_dumpLog) {
183     std::string name = anna::functions::asString(decodedMessage.getHopByHop());
184     name += ".";
185     name += anna::functions::asString(decodedMessage.getEndToEnd());
186     name += ".";
187     name += anna::functions::asString(decodedMessage.getId().first);
188     name += ".";
189     name += ((decodedMessage.getId().second) ? "request.":"answer.");
190     name += logExtension;
191     name += ".xml";
192     std::ofstream outMsg(name.c_str(), std::ifstream::out | std::ifstream::app);
193     outMsg.write(xml.c_str(), xml.size());
194     outMsg.close();
195   }
196
197   // Write and close
198   out.write(log.c_str(), log.size());
199   out.close();
200 }
201
202 void Launcher::writeBurstLogFile(const std::string &buffer) throw() {
203   std::ofstream out(a_burstLogFile.c_str(), std::ifstream::out | std::ifstream::app);
204   out.write(buffer.c_str(), buffer.size());
205   out.close();    // close() will be called when the object is destructed (i.e., when it goes out of scope).
206   // you'd call close() only if you indeed for some reason wanted to close the filestream
207   // earlier than it goes out of scope.
208 }
209
210 void Launcher::checkTimeMeasure(const char * commandLineParameter, bool optional) throw(anna::RuntimeException) {
211   CommandLine& cl(anna::CommandLine::instantiate());
212
213   if(!cl.exists(commandLineParameter) && optional) return;  // start error if mandatory
214
215   std::string parameter = cl.getValue(commandLineParameter);
216
217   if(anna::functions::isLike("^[0-9]+$", parameter)) {  // para incluir numeros decimales: ^[0-9]+(.[0-9]+)?$
218     int msecs = cl.getIntegerValue(commandLineParameter);
219
220     if(msecs > a_timeEngine->getMaxTimeout()) { // 600000 ms
221       std::string msg = "Commandline parameter '";
222       msg += commandLineParameter;
223       msg += "' is greater than allowed max timeout for timming engine: ";
224       msg += anna::functions::asString(a_timeEngine->getMaxTimeout());
225       throw RuntimeException(msg, ANNA_FILE_LOCATION);
226     }
227
228     if(msecs > 300000) {
229       std::string msg = "Commandline parameter '";
230       msg += commandLineParameter;
231       msg += "' is perhaps very big (over 5 minutes). Take into account memory consumption issues.";
232       LOGWARNING(anna::Logger::warning(msg, ANNA_FILE_LOCATION));
233     }
234
235     if(msecs <= a_timeEngine->getResolution()) {
236       std::string msg = "Commandline parameter '";
237       msg += commandLineParameter;
238       msg += "' (and in general, all time measures) must be greater than timming engine resolution: ";
239       msg += anna::functions::asString(a_timeEngine->getResolution());
240       throw RuntimeException(msg, ANNA_FILE_LOCATION);
241     }
242
243     return; // ok
244   }
245
246   // Excepcion (por no ser entero):
247   std::string msg = "Error at commandline parameter '";
248   msg += commandLineParameter;
249   msg += "' = '";
250   msg += parameter;
251   msg += "': must be a non-negative integer number";
252   throw RuntimeException(msg, ANNA_FILE_LOCATION);
253 }
254
255 void Launcher::startDiameterServer(int diameterServerSessions) throw(anna::RuntimeException) {
256   if(diameterServerSessions <= 0) return;
257
258   std::string address;
259   int port;
260   CommandLine& cl(anna::CommandLine::instantiate());
261   anna::functions::getAddressAndPortFromSocketLiteral(cl.getValue("diameterServer"), address, port);
262   //ServerSocket *createServerSocket(const std::string & addr, int port = Session::DefaultPort, int maxConnections = -1, int category = 1, const std::string & description = "")
263   a_diameterLocalServer = (MyLocalServer*)(a_myDiameterEngine->createLocalServer(address, port, diameterServerSessions));
264   a_diameterLocalServer->setDescription("Launcher diameter local server");
265   a_diameterLocalServer->setCodecEngine(getCodecEngine()); // this is for automatic answers (failed-avp) XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX el del nodo correspondiente
266   int allowedInactivityTime = 90000; // ms
267
268   if(cl.exists("allowedInactivityTime")) allowedInactivityTime = cl.getIntegerValue("allowedInactivityTime");
269
270   a_diameterLocalServer->setAllowedInactivityTime((anna::Millisecond)allowedInactivityTime);
271 }
272
273 void Launcher::initialize()
274 throw(anna::RuntimeException) {
275   anna::comm::Application::initialize();
276   CommandLine& cl(anna::CommandLine::instantiate());
277   anna::comm::Communicator::WorkMode::_v workMode(anna::comm::Communicator::WorkMode::Single);
278 //   if (cl.exists ("clone"))
279 //      workMode = anna::comm::Communicator::WorkMode::Clone;
280   a_communicator = new MyCommunicator(workMode);
281   a_timeEngine = new anna::timex::Engine((anna::Millisecond)600000, (anna::Millisecond)150);
282   // Counters record procedure:
283   anna::Millisecond cntRecordPeriod = (anna::Millisecond)300000; // ms
284
285   if(cl.exists("cntRecordPeriod")) cntRecordPeriod = cl.getIntegerValue("cntRecordPeriod");
286
287   if(cntRecordPeriod != 0) {
288     checkTimeMeasure("cntRecordPeriod");
289     a_counterRecorderClock = new MyCounterRecorderClock("Counters record procedure clock", cntRecordPeriod); // clock
290     std::string cntDir = ".";
291
292     if(cl.exists("cntDir")) cntDir = cl.getValue("cntDir");
293
294     a_counterRecorder = new MyCounterRecorder(cntDir + anna::functions::asString("/Counters.Pid%d", (int)getPid()));
295   }
296 }
297
298 void Launcher::run()
299 throw(anna::RuntimeException) {
300   LOGMETHOD(anna::TraceMethod tm("Launcher", "run", ANNA_FILE_LOCATION));
301   CommandLine& cl(anna::CommandLine::instantiate());
302   // Start time:
303   a_start_time.setNow();
304   // Statistics:
305   anna::statistics::Engine::instantiate().enable();
306
307   // Checking command line parameters
308   if(cl.exists("sessionBasedModelsClientSocketSelection")) {
309     std::string type = cl.getValue("sessionBasedModelsClientSocketSelection");
310
311     if((type != "SessionIdHighPart") && (type != "SessionIdOptionalPart") && (type != "RoundRobin")) {
312       throw anna::RuntimeException("Commandline option '-sessionBasedModelsClientSocketSelection' only accepts 'SessionIdHighPart'/'SessionIdOptionalPart'/'RoundRobin' as parameter values", ANNA_FILE_LOCATION);
313     }
314   }
315
316   // Tracing:
317   if(cl.exists("trace"))
318     anna::Logger::setLevel(anna::Logger::asLevel(cl.getValue("trace")));
319
320   LOGINFORMATION(
321     // Help on startup traces:
322     anna::Logger::information(help(), ANNA_FILE_LOCATION);
323     // Test messages dtd:
324     std::string msg = "\n                     ------------- TESTMESSAGES DTD -------------\n";
325     msg += anna::diameter::codec::MessageDTD;
326     anna::Logger::information(msg, ANNA_FILE_LOCATION);
327   );
328
329   // HTTP Server:
330   if(cl.exists("httpServer")) {
331     anna::comm::Network& network = anna::comm::Network::instantiate();
332     std::string address;
333     int port;
334     anna::functions::getAddressAndPortFromSocketLiteral(cl.getValue("httpServer"), address, port);
335     //const anna::comm::Device* device = network.find(Device::asAddress(address)); // here provide IP
336     const anna::comm::Device* device = *((network.resolve(address)->device_begin())); // trick to solve
337     a_httpServerSocket = new anna::comm::ServerSocket(anna::comm::INetAddress(device, port), cl.exists("httpServerShared") /* shared bind */, &anna::http::Transport::getFactory());
338   }
339
340   // Stack:
341   a_codecEngine = new anna::diameter::codec::Engine(DIAMETER_CODEC_ENGINE_NAME_PREFIX);
342   anna::diameter::stack::Engine &stackEngine = anna::diameter::stack::Engine::instantiate();
343   anna::diameter::stack::Dictionary * d = stackEngine.createDictionary(0 /* stack id; its value don't mind, is not used (ADL is monostack) */);
344   // Analyze comma-separated list:
345   anna::Tokenizer lst;
346   std::string dictionaryParameter = cl.getValue("dictionary");
347   lst.apply(dictionaryParameter, ",");
348
349   if(lst.size() >= 1) {  // always true (at least one, because --dictionary is mandatory)
350     anna::Tokenizer::const_iterator tok_min(lst.begin());
351     anna::Tokenizer::const_iterator tok_max(lst.end());
352     anna::Tokenizer::const_iterator tok_iter;
353     std::string pathFile;
354     d->allowUpdates();
355
356     for(tok_iter = tok_min; tok_iter != tok_max; tok_iter++) {
357       pathFile = anna::Tokenizer::data(tok_iter);
358       d->load(pathFile);
359     }
360   }
361
362   getCodecEngine()->setDictionary(d); // XXXX esto cambiara...
363   LOGDEBUG(anna::Logger::debug(getCodecEngine()->asString(), ANNA_FILE_LOCATION));
364
365   if(lst.size() > 1) {
366     std::string all_in_one = "./dictionary-all-in-one.xml";
367     std::ofstream out(all_in_one.c_str(), std::ifstream::out);
368     std::string buffer = d->asXMLString();
369     out.write(buffer.c_str(), buffer.size());
370     out.close();
371     std::cout << "Written accumulated '" << all_in_one << "' (provide it next time to be more comfortable)." << std::endl;
372   }
373
374   ///////////////////////////////
375   // Diameter library COUNTERS //
376   ///////////////////////////////
377   anna::diameter::comm::OamModule & oamDiameterComm = anna::diameter::comm::OamModule::instantiate();
378   oamDiameterComm.initializeCounterScope(1);  // 1000 - 1999
379   oamDiameterComm.enableCounters();
380   oamDiameterComm.enableAlarms();
381   anna::diameter::codec::OamModule & oamDiameterCodec = anna::diameter::codec::OamModule::instantiate();
382   oamDiameterCodec.initializeCounterScope(2);  // 2000 - 2999
383   oamDiameterCodec.enableCounters();
384   oamDiameterCodec.enableAlarms();
385   /////////////////
386   // COMM MODULE //
387   /////////////////
388   /* Main events */
389   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::RequestReceived, "" /* get defaults for enum type*/, 0 /*1000*/);
390   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::AnswerReceived,                 "", 1 /*1001*/);
391   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::RequestReceivedOnClientSession, "", 2 /*1002*/);
392   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::AnswerReceivedOnClientSession,  "", 3 /*1003*/);
393   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::RequestReceivedOnServerSession, "", 4 /* etc. */);
394   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::AnswerReceivedOnServerSession,  "", 5);
395   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::RequestSentOK,                  "", 6);
396   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::RequestSentNOK,                 "", 7);
397   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::AnswerSentOK,                   "", 8);
398   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::AnswerSentNOK,                  "", 9);
399   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::RequestSentOnClientSessionOK,   "", 10);
400   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::RequestSentOnClientSessionNOK,  "", 11);
401   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::AnswerSentOnClientSessionOK,    "", 12);
402   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::AnswerSentOnClientSessionNOK,   "", 13);
403   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::RequestSentOnServerSessionOK,   "", 14);
404   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::RequestSentOnServerSessionNOK,  "", 15);
405   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::AnswerSentOnServerSessionOK,    "", 16);
406   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::AnswerSentOnServerSessionNOK,   "", 17);
407   /* Diameter Base (capabilities exchange & keep alive) */
408   // as client
409   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::CERSentOK,   "", 18);
410   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::CERSentNOK,  "", 19);
411   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::CEAReceived, "", 20);
412   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::DWRSentOK,   "", 21);
413   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::DWRSentNOK,  "", 22);
414   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::DWAReceived, "", 23);
415   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::DPRSentOK,   "", 24);
416   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::DPRSentNOK,  "", 25);
417   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::DPAReceived, "", 26);
418   // as server
419   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::CERReceived, "", 27);
420   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::CEASentOK,   "", 28);
421   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::CEASentNOK,  "", 29);
422   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::DWRReceived, "", 30);
423   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::DWASentOK,   "", 31);
424   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::DWASentNOK,  "", 32);
425   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::DPRReceived, "", 33);
426   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::DPASentOK,   "", 34);
427   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::DPASentNOK,  "", 35);
428   /* server socket operations (enable/disable listening port for any local server) */
429   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::ServerSocketsOpened, "", 36);
430   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::ServerSocketsClosed, "", 37);
431   /* Connectivity */
432   // clients
433   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::UnableToDeliverOverEntity,                  "", 38);
434   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::LostAvailabilityOverClientSession,          "", 39);
435   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::RecoveredAvailabilityOverClientSession,     "", 40);
436   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::LostAvailabilityOverServer,                 "", 41);
437   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::RecoveredAvailabilityOverServer,            "", 42);
438   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::LostAvailabilityOverEntity,                 "", 43);
439   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::RecoveredAvailabilityOverEntity,            "", 44);
440   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::LostAvailabilityOverEngineForEntities,      "", 45);
441   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::RecoveredAvailabilityOverEngineForEntities, "", 46);
442   // servers
443   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::UnableToDeliverToClient,                                    "", 47);
444   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::LostConnectionForServerSession,                             "", 48);
445   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::UnbindConnectionForServerSessionDueToInactivityTimeAnomaly, "", 49);
446   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::CreatedConnectionForServerSession,                          "", 50);
447   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::LostAvailabilityOverLocalServer,                            "", 51);
448   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::RecoveredAvailabilityOverLocalServer,                       "", 52);
449   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::LostAvailabilityOverEngineForLocalServers,                  "", 53);
450   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::RecoveredAvailabilityOverEngineForLocalServers,             "", 54);
451   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::RequestSentExpired,  "", 55);
452   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::RequestSentOnClientSessionExpired,  "", 56);
453   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::RequestSentOnServerSessionExpired,  "", 57);
454   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::AnswerReceivedUnknown,  "", 58);
455   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::AnswerReceivedOnClientSessionUnknown,  "", 59);
456   oamDiameterComm.registerCounter(anna::diameter::comm::OamModule::Counter::AnswerReceivedOnServerSessionUnknown,  "", 60);
457   //////////////////
458   // CODEC MODULE //
459   //////////////////
460   /* Avp decoding */
461   oamDiameterCodec.registerCounter(anna::diameter::codec::OamModule::Counter::AvpDecode__NotEnoughBytesToCoverAvpHeaderLength,                          "", 0 /*2000*/);
462   oamDiameterCodec.registerCounter(anna::diameter::codec::OamModule::Counter::AvpDecode__IncoherenceBetweenActivatedVBitAndZeroedVendorIDValueReceived, "", 1 /*2001*/);
463   oamDiameterCodec.registerCounter(anna::diameter::codec::OamModule::Counter::AvpDecode__IncorrectLength,                                               "", 2 /*2002*/);
464   oamDiameterCodec.registerCounter(anna::diameter::codec::OamModule::Counter::AvpDecode__DataPartInconsistence,                                         "", 3 /*2003*/);
465   oamDiameterCodec.registerCounter(anna::diameter::codec::OamModule::Counter::AvpDecode__UnknownAvpWithMandatoryBit,                                    "", 4 /*2004*/);
466   /* Message decoding */
467   oamDiameterCodec.registerCounter(anna::diameter::codec::OamModule::Counter::MessageDecode__NotEnoughBytesToCoverMessageHeaderLength, "", 5 /*2005*/);
468   oamDiameterCodec.registerCounter(anna::diameter::codec::OamModule::Counter::MessageDecode__NotEnoughBytesToCoverMessageLength,       "", 6 /*2006*/);
469   /* Avp validation */
470   oamDiameterCodec.registerCounter(anna::diameter::codec::OamModule::Counter::AvpValidation__EnumeratedAvpWithValueDoesNotComplyRestriction, "", 10 /*2010*/);
471   oamDiameterCodec.registerCounter(anna::diameter::codec::OamModule::Counter::AvpValidation__AvpFlagsDoesNotFulfillTheDefinedFlagRules,      "", 11 /*2011*/);
472   /* Message validation */
473   oamDiameterCodec.registerCounter(anna::diameter::codec::OamModule::Counter::MessageValidation__UnknownOperationUnableToValidate, "", 12 /*2012*/);
474   oamDiameterCodec.registerCounter(anna::diameter::codec::OamModule::Counter::MessageValidation__OperationHaveIncoherentFlags,     "", 13 /*2013*/);
475   /* Level validation */
476   oamDiameterCodec.registerCounter(anna::diameter::codec::OamModule::Counter::LevelValidation__MissingFixedRule,                                       "", 14 /*2014*/);
477   oamDiameterCodec.registerCounter(anna::diameter::codec::OamModule::Counter::LevelValidation__FailedRuleForCardinality,                               "", 15 /*2015*/);
478   oamDiameterCodec.registerCounter(anna::diameter::codec::OamModule::Counter::LevelValidation__FailedRuleForCardinalityLessThanNeeded,                 "", 16 /*2016*/);
479   oamDiameterCodec.registerCounter(anna::diameter::codec::OamModule::Counter::LevelValidation__FailedRuleForCardinalityMoreThanNeeded,                 "", 17 /*2017*/);
480   oamDiameterCodec.registerCounter(anna::diameter::codec::OamModule::Counter::LevelValidation__FailedGenericAvpRuleForCardinalityFoundDisregardedItem, "", 18 /*2018*/);
481   oamDiameterCodec.registerCounter(anna::diameter::codec::OamModule::Counter::LevelValidation__FoundDisregardedItemsAndGenericAVPWasNotSpecified,      "", 19 /*2019*/);
482   ///////////////////////////////////////////
483   // APPLICATION MESSAGE OAM MODULE SCOPES //
484   ///////////////////////////////////////////
485   // We will register a scope per stack id registered. The counters will be dynamically registered at count method.
486   anna::diameter::comm::ApplicationMessageOamModule & appMsgOamModule = anna::diameter::comm::ApplicationMessageOamModule::instantiate();
487   int scope_id = 3;
488   for (anna::diameter::stack::Engine::const_stack_iterator it = stackEngine.stack_begin(); it != stackEngine.stack_end(); it++) {
489     appMsgOamModule.createStackCounterScope(scope_id, it->first);
490     scope_id++;
491   }
492   appMsgOamModule.enableCounters(); // this special module is disabled by default (the only)
493
494
495   /////////////////////////////////
496   // Counter recorder associated //
497   /////////////////////////////////
498   if(a_counterRecorderClock) {
499     oamDiameterComm.setCounterRecorder(a_counterRecorder);
500     oamDiameterCodec.setCounterRecorder(a_counterRecorder);
501     appMsgOamModule.setCounterRecorder(a_counterRecorder);
502     a_timeEngine->activate(a_counterRecorderClock); // start clock
503   }
504
505
506   // Integration (validation 'Complete' for receiving messages) and debugging (validation also before encoding: 'Always').
507   // If missing 'integrationAndDebugging', default behaviour at engine is: mode 'AfterDecoding', depth 'FirstError':
508   if(cl.exists("integrationAndDebugging")) {
509     getCodecEngine()->setValidationMode(anna::diameter::codec::Engine::ValidationMode::Always); // XXXXXXXXXXXXXXXXXXXXXXXXX
510     getCodecEngine()->setValidationDepth(anna::diameter::codec::Engine::ValidationDepth::Complete);
511   }
512
513   // Fix mode
514   if(cl.exists("fixMode")) { // BeforeEncoding(default), AfterDecoding, Always, Never
515     std::string fixMode = cl.getValue("fixMode");
516     anna::diameter::codec::Engine::FixMode::_v fm;
517     if (fixMode == "BeforeEncoding") fm = anna::diameter::codec::Engine::FixMode::BeforeEncoding;
518     else if (fixMode == "AfterDecoding") fm = anna::diameter::codec::Engine::FixMode::AfterDecoding;
519     else if (fixMode == "Always") fm = anna::diameter::codec::Engine::FixMode::Always;
520     else if (fixMode == "Never") fm = anna::diameter::codec::Engine::FixMode::Never;
521     else LOGINFORMATION(anna::Logger::information("Unreconized command-line fix mode. Assumed default 'BeforeEncoding'", ANNA_FILE_LOCATION));
522     getCodecEngine()->setFixMode(fm); // XXXXXXXXXXXXXXXXXXXXXXX
523   }
524
525   getCodecEngine()->ignoreFlagsOnValidation(cl.exists("ignoreFlags")); // XXXXXXXXXXXXXXXXXXXXXXX
526
527   // Base protocol for internal use (CEA, DWA, DPA and tracing:
528   a_myDiameterEngine->setBaseProtocolCodecEngine(getCodecEngine());
529
530
531   // Diameter Server:
532   if(cl.exists("diameterServer"))
533     startDiameterServer(cl.exists("diameterServerSessions") ? cl.getIntegerValue("diameterServerSessions") : 1);
534
535   // Optional command line parameters ////////////////////////////////////////////////////////
536   checkTimeMeasure("allowedInactivityTime");
537   checkTimeMeasure("tcpConnectDelay");
538   checkTimeMeasure("answersTimeout");
539   checkTimeMeasure("ceaTimeout");
540   checkTimeMeasure("watchdogPeriod");
541   checkTimeMeasure("reconnectionPeriod");
542   int tcpConnectDelay = 200; // ms
543   anna::Millisecond answersTimeout = (anna::Millisecond)10000; // ms
544   anna::Millisecond ceaTimeout;
545   anna::Millisecond watchdogPeriod = (anna::Millisecond)30000; // ms
546   int reconnectionPeriod = 10000; // ms
547
548   if(cl.exists("tcpConnectDelay"))         tcpConnectDelay = cl.getIntegerValue("tcpConnectDelay");
549
550   if(cl.exists("answersTimeout"))          answersTimeout = cl.getIntegerValue("answersTimeout");
551
552   if(cl.exists("ceaTimeout"))              ceaTimeout = cl.getIntegerValue("ceaTimeout");
553   else                                      ceaTimeout = answersTimeout;
554
555   if(cl.exists("watchdogPeriod"))          watchdogPeriod = cl.getIntegerValue("watchdogPeriod");
556
557   if(cl.exists("reconnectionPeriod"))      reconnectionPeriod = cl.getIntegerValue("reconnectionPeriod");
558
559   a_myDiameterEngine->setMaxConnectionDelay((anna::Millisecond)tcpConnectDelay);
560   a_myDiameterEngine->setWatchdogPeriod(watchdogPeriod);
561   std::string originHost = "";
562   std::string originRealm = "";
563
564   if(cl.exists("cer"))                  a_cerPathfile = cl.getValue("cer");
565
566   if(cl.exists("dwr"))                  a_dwrPathfile = cl.getValue("dwr");
567
568   if(cl.exists("originHost"))           originHost = cl.getValue("originHost");
569
570   if(cl.exists("originRealm"))          originRealm = cl.getValue("originRealm");
571
572   a_myDiameterEngine->setHost(originHost);
573   a_myDiameterEngine->setRealm(originRealm);
574
575   // Diameter entity:
576   if(cl.exists("entity")) {
577     int entityServerSessions = cl.exists("entityServerSessions") ? cl.getIntegerValue("entityServerSessions") : 1;
578
579     if(entityServerSessions > 0) {
580       baseProtocolSetupAsClient();
581       anna::socket_v servers = anna::functions::getSocketVectorFromString(cl.getValue("entity"));
582       a_myDiameterEngine->setNumberOfClientSessionsPerServer(entityServerSessions);
583       a_entity = (MyDiameterEntity*)(a_myDiameterEngine->createEntity(servers, "Launcher diameter entity"));
584       a_entity->setClassCodeTimeout(anna::diameter::comm::ClassCode::Bind, ceaTimeout);
585       a_entity->setClassCodeTimeout(anna::diameter::comm::ClassCode::ApplicationMessage, answersTimeout);
586       a_entity->setCodecEngine(getCodecEngine()); // XXXXXXXXXXXXXXXXXXXXXXX
587       a_entity->bind();
588     }
589   }
590
591   // Logs
592   if(cl.exists("log")) a_logFile = cl.getValue("log");
593
594   if(cl.exists("splitLog")) a_splitLog = true;
595
596   if(cl.exists("detailedLog")) a_detailedLog = true;
597
598   if(cl.exists("dumpLog")) a_dumpLog = true;
599
600   if(cl.exists("burstLog")) a_burstLogFile = cl.getValue("burstLog");
601
602   // Log statistics concepts
603   if(cl.exists("logStatisticSamples")) {
604     std::string list = cl.getValue("logStatisticSamples");
605     anna::statistics::Engine &statEngine = anna::statistics::Engine::instantiate();
606
607     if(list == "all") {
608       if(statEngine.enableSampleLog(/* -1: all concepts */))
609         LOGDEBUG(anna::Logger::debug("Sample log activation for all statistic concepts", ANNA_FILE_LOCATION));
610     } else {
611       anna::Tokenizer lst;
612       lst.apply(cl.getValue("logStatisticSamples"), ",");
613
614       if(lst.size() >= 1) {
615         anna::Tokenizer::const_iterator tok_min(lst.begin());
616         anna::Tokenizer::const_iterator tok_max(lst.end());
617         anna::Tokenizer::const_iterator tok_iter;
618         int conceptId;
619
620         for(tok_iter = tok_min; tok_iter != tok_max; tok_iter++) {
621           conceptId = atoi(anna::Tokenizer::data(tok_iter));
622
623           if(statEngine.enableSampleLog(conceptId))
624             LOGDEBUG(anna::Logger::debug(anna::functions::asString("Sample log activation for statistic concept id = %d", conceptId), ANNA_FILE_LOCATION));
625         }
626       }
627     }
628   }
629
630   a_communicator->setRecoveryTime((const anna::Millisecond)reconnectionPeriod);
631
632   if(cl.exists("httpServer")) a_communicator->attach(a_httpServerSocket);  // HTTP
633
634   a_communicator->accept();
635 }
636
637 bool Launcher::getDataBlockFromHexFile(const std::string &pathfile, anna::DataBlock &db) const throw() {
638   // Get hex string
639   static char buffer[8192];
640   std::ifstream infile(pathfile.c_str(), std::ifstream::in);
641
642   if(infile.is_open()) {
643     infile >> buffer;
644     std::string hexString(buffer, strlen(buffer));
645     // Allow colon separator in hex string: we have to remove them before processing with 'fromHexString':
646     hexString.erase(std::remove(hexString.begin(), hexString.end(), ':'), hexString.end());
647     LOGDEBUG(
648       std::string msg = "Hex string (remove colons if exists): ";
649       msg += hexString;
650       anna::Logger::debug(msg, ANNA_FILE_LOCATION);
651     );
652     anna::functions::fromHexString(hexString, db);
653     // Close file
654     infile.close();
655     return true;
656   }
657
658   return false;
659 }
660
661 int Launcher::clearBurst() throw() {
662   int size = a_burstMessages.size();
663
664   if(size) {
665     std::map<int, anna::diameter::comm::Message*>::const_iterator it;
666     std::map<int, anna::diameter::comm::Message*>::const_iterator it_min(a_burstMessages.begin());
667     std::map<int, anna::diameter::comm::Message*>::const_iterator it_max(a_burstMessages.end());
668
669     for(it = it_min; it != it_max; it++) releaseCommMessage((*it).second);
670
671     a_burstMessages.clear();
672   } else {
673     std::string msg = "Burst list already empty. Nothing done";
674     std::cout << msg << std::endl;
675     LOGWARNING(anna::Logger::warning(msg, ANNA_FILE_LOCATION));
676   }
677
678   a_burstActive = false;
679   a_burstLoadIndx = 0;
680   a_burstDeliveryIt = a_burstMessages.begin();
681   return size;
682 }
683
684 int Launcher::loadBurstMessage(const anna::DataBlock & db) throw(anna::RuntimeException) {
685   anna::diameter::comm::Message *msg = createCommMessage();
686   msg->setBody(db);
687   a_burstMessages[a_burstLoadIndx++] = msg;
688   return (a_burstLoadIndx - 1);
689 }
690
691 int Launcher::stopBurst() throw() {
692   if(!a_burstActive) {
693     std::string msg = "Burst launch is already stopped. Nothing done";
694     std::cout << msg << std::endl;
695     LOGWARNING(anna::Logger::warning(msg, ANNA_FILE_LOCATION));
696     return -1;
697   }
698
699   a_burstActive = false;
700   // Remaining on cycle:
701   return (a_burstMessages.size() - (*a_burstDeliveryIt).first);
702 }
703
704 int Launcher::popBurst(int releaseAmount) throw() {
705   if(!a_burstActive) {
706     std::string msg = "Burst launch is stopped. Nothing done";
707     std::cout << msg << std::endl;
708     LOGWARNING(anna::Logger::warning(msg, ANNA_FILE_LOCATION));
709     return -1;
710   }
711
712   if(releaseAmount < 1) {
713     std::string msg = "No valid release amount is specified. Ignoring burst pop";
714     std::cout << msg << std::endl;
715     LOGWARNING(anna::Logger::warning(msg, ANNA_FILE_LOCATION));
716     return -2;
717   }
718
719   int currentOTArequests = a_entity->getOTARequests();
720   a_burstPopCounter = (releaseAmount > currentOTArequests) ? currentOTArequests : releaseAmount;
721   return a_burstPopCounter;
722 }
723
724 int Launcher::pushBurst(int loadAmount) throw() {
725   if(a_burstMessages.size() == 0) {
726     std::string msg = "Burst data not found (empty list). Ignoring burst launch";
727     std::cout << msg << std::endl;
728     LOGWARNING(anna::Logger::warning(msg, ANNA_FILE_LOCATION));
729     return -1;
730   }
731
732   if(loadAmount < 1) {
733     std::string msg = "No valid load amount is specified. Ignoring burst push";
734     std::cout << msg << std::endl;
735     LOGWARNING(anna::Logger::warning(msg, ANNA_FILE_LOCATION));
736     return -2;
737   }
738
739   a_burstActive = true;
740   int count;
741
742   for(count = 0; count < loadAmount; count++)
743     if(!sendBurstMessage()) break;
744
745   return count;
746 }
747
748 int Launcher::sendBurst(int loadAmount) throw() {
749   if(a_burstMessages.size() == 0) {
750     std::string msg = "Burst data not found (empty list). Ignoring burst launch";
751     std::cout << msg << std::endl;
752     LOGWARNING(anna::Logger::warning(msg, ANNA_FILE_LOCATION));
753     return -1;
754   }
755
756   if(loadAmount < 1) {
757     std::string msg = "No valid load amount is specified. Ignoring burst send";
758     std::cout << msg << std::endl;
759     LOGWARNING(anna::Logger::warning(msg, ANNA_FILE_LOCATION));
760     return -2;
761   }
762
763   int count;
764
765   for(count = 0; count < loadAmount; count++)
766     if(!sendBurstMessage(true /* anyway */)) break;
767
768   return count;
769 }
770
771 int Launcher::startBurst(int initialLoad) throw() {
772   if(initialLoad < 1) {
773     std::string msg = "No initial load is specified. Ignoring burst start";
774     std::cout << msg << std::endl;
775     LOGWARNING(anna::Logger::warning(msg, ANNA_FILE_LOCATION));
776     return -2;
777   }
778
779   a_burstActive = true;
780   a_burstCycle = 1;
781   a_burstDeliveryIt = a_burstMessages.begin();
782   return (pushBurst(initialLoad));
783 }
784
785 bool Launcher::sendBurstMessage(bool anyway) throw() {
786   if(!anyway && !burstActive()) return false;
787
788   if(a_burstPopCounter > 0) {
789     if(burstLogEnabled()) writeBurstLogFile("x");
790
791     a_burstPopCounter--;
792     return false;
793   }
794
795   if(a_burstDeliveryIt == a_burstMessages.end()) {
796     a_burstDeliveryIt = a_burstMessages.begin();
797
798     if(!anyway) {
799       if(a_burstRepeat) {
800         a_burstCycle++;
801
802         if(burstLogEnabled()) writeBurstLogFile(anna::functions::asString("\nCompleted burst cycle. Starting again (repeat mode) on cycle %d.\n", a_burstCycle));
803       } else {
804         if(burstLogEnabled()) writeBurstLogFile("\nCompleted burst cycle. Burst finished (repeat mode disabled).\n");
805
806         stopBurst();
807         return false;
808       }
809     }
810   }
811
812   anna::diameter::comm::Message *msg = (*a_burstDeliveryIt).second;
813   int order = (*a_burstDeliveryIt).first + 1;
814   a_burstDeliveryIt++;
815   bool dot = true;
816   // sending
817   bool result = a_entity->send(msg, anna::CommandLine::instantiate().exists("balance"));
818
819   if(burstLogEnabled()) {
820     if(a_burstMessages.size() >= 100)
821       dot = (order  % (a_burstMessages.size() / 100));
822
823     if(dot) {
824       writeBurstLogFile(".");
825     } else {
826       writeBurstLogFile(anna::functions::asString(" %d", order));
827       int otaReqs  = a_entity->getOTARequests();
828
829       if(result && (otaReqs != a_otaRequest)) {
830         // false if was a sending after an answer received (no OTA change in this case)
831         // true after push and pop operations
832         a_otaRequest = otaReqs;
833         writeBurstLogFile(anna::functions::asString("[OTA %d]", a_otaRequest));
834       }
835     }
836   }
837
838   // Detailed log:
839   if(logEnabled()) {
840     anna::diameter::comm::Server *usedServer = a_entity->getLastUsedResource();
841     anna::diameter::comm::ClientSession *usedClientSession = usedServer ? usedServer->getLastUsedResource() : NULL;
842     std::string detail = usedClientSession ? usedClientSession->asString() : "<null client session>"; // esto no deberia ocurrir
843     writeLogFile(msg->getBody(), (result ? "sent2e" : "send2eError"), detail, getCodecEngine()); // el del nodo de trabajo
844   }
845
846   return result;
847 }
848
849 std::string Launcher::lookBurst(int order) const throw() {
850   std::string result = "No message found for order provided (";
851   result += anna::functions::asString(order);
852   result += ")";
853   std::map<int, anna::diameter::comm::Message*>::const_iterator it = a_burstMessages.find(order - 1);
854
855   if(it != a_burstMessages.end()) {
856     // Decode
857     anna::diameter::codec::Message codecMsg(getCodecEngine()); // XXXXXXXXXXXXXXXX el del nodo de trabajo
858     try { codecMsg.decode((*it).second->getBody()); } catch(anna::RuntimeException &ex) { ex.trace(); }
859     result = codecMsg.asXMLString();
860   }
861
862   return result;
863 }
864
865 std::string Launcher::gotoBurst(int order) throw() {
866   std::string result = "Position not found for order provided (";
867   std::map<int, anna::diameter::comm::Message*>::iterator it = a_burstMessages.find(order - 1);
868
869   if(it != a_burstMessages.end()) {
870     a_burstDeliveryIt = it;
871     result = "Position updated for order provided (";
872   }
873
874   result += anna::functions::asString(order);
875   result += ")";
876   return result;
877 }
878
879 void Launcher::resetCounters() throw() {
880   anna::diameter::comm::OamModule::instantiate().resetCounters();
881   anna::diameter::comm::ApplicationMessageOamModule::instantiate().resetCounters();
882   anna::diameter::codec::OamModule::instantiate().resetCounters();
883 }
884
885 void Launcher::signalUSR2() throw(anna::RuntimeException) {
886   LOGNOTICE(
887     std::string msg = "Captured signal SIGUSR2. Reading tasks at '";
888     msg += SIGUSR2_TASKS_INPUT_FILENAME;
889     msg += "' (results will be written at '";
890     msg += SIGUSR2_TASKS_OUTPUT_FILENAME;
891     msg += "')";
892     anna::Logger::notice(msg, ANNA_FILE_LOCATION);
893   );
894   // Operation:
895   std::string line;
896   std::string response_content;
897   std::ifstream in_file(SIGUSR2_TASKS_INPUT_FILENAME);
898   std::ofstream out_file(SIGUSR2_TASKS_OUTPUT_FILENAME);
899
900   if(!in_file.is_open()) throw RuntimeException("Unable to read tasks", ANNA_FILE_LOCATION);
901
902   if(!out_file.is_open()) throw RuntimeException("Unable to write tasks", ANNA_FILE_LOCATION);
903
904   while(getline(in_file, line)) {
905     LOGDEBUG(
906       std::string msg = "Processing line: ";
907       msg += line;
908       anna::Logger::debug(msg, ANNA_FILE_LOCATION);
909     );
910
911     try {
912       eventOperation(line, response_content);
913     } catch(RuntimeException &ex) {
914       ex.trace();
915     }
916
917     out_file << response_content;
918   }
919
920   in_file.close();
921   out_file.close();
922 }
923
924 std::string Launcher::help() const throw() {
925   std::string result = "\n";
926   result += "\n                     ------------- HELP -------------\n";
927   result += "\n";
928   result += "\nOVERVIEW";
929   result += "\n--------";
930   result += "\n";
931   result += "\nThe ADL (ANNA Diameter Launcher) process is a complete diameter agent with client and server";
932   result += "\n capabilities as well as balancer (proxy) features. It could be used as diameter server";
933   result += "\n (i.e. to simulate PCRF nodes, OCS systems, etc.), as diameter client (GGSNs, DPIs, etc.),";
934   result += "\n and balancer systems to provide failover to external round-robin launchers. Also, auxiliary";
935   result += "\n encoder/decoder/loader function could be deployed to reinterpret certain external flow and";
936   result += "\n send it to another process.";
937   result += "\n";
938   result += "\nThe ANNA::diameter_comm built-in module provides a great set of characteristics as multiple connections";
939   result += "\n on both server and client side, definition for multiple-server entities (and not only two as standard";
940   result += "\n establish as minimum), separate statistics analyzer per each resource, automatic CER/CEA and DWR/DWA";
941   result += "\n generation, expiration control and many more features.";
942   result += "\n";
943   result += "\nProcess traces are dump on \"launcher.trace\" and could have any trace level (POSIX levels), usually";
944   result += "\n 'debug' or 'warning'. See ANNA documentation for more details.";
945   result += "\n";
946   result += "\nAs any other ANNA process, context dump could be retrieved sending SIGUSR1 signal:";
947   result += "\n   kill -10 <pid>";
948   result += "\n    or";
949   result += "\n   kill -s SIGUSR1 <pid>";
950   result += "\n    and then";
951   result += "\n   vi /var/tmp/anna.context.<pid>";
952   result += "\n";
953   result += "\nA complete xml report will show all the context information (counters, alarms, statistics,";
954   result += "\n handlers, diameter dictionary, etc.), and a powerful log module could dump all the events";
955   result += "\n processed and flow information. Statistics could be analized at context dump and optionally";
956   result += "\n written to disk as sample files (useful for graphs and spreadsheet reports) with all the";
957   result += "\n measurements.";
958   result += "\n";
959   result += "\nAlso SIGUSR2 is handled for management purposes. We will talk later about this.";
960   result += "\n";
961   result += "\n";
962   result += "\nCOMMAND LINE";
963   result += "\n------------";
964   result += "\n";
965   result += "\nStart the launcher process without arguments in order to see all the startup configuration";
966   result += "\n posibilities, many of which could be modified on the air through the management interface";
967   result += "\n (we will talk later about this great feature). Some of the more common parameters are:";
968   result += "\n";
969   result += "\nAs mandatory, the stack definition given through the xml dictionary:";
970   result += "\n   --dictionary <path to dictionary file>";
971   result += "\n";
972   result += "\nActing as a diameter server (accepting i.e. 10 connections), you would have:";
973   result += "\n   --diameterServer localhost:3868 --diameterServerSessions 10 --entityServerSessions 0";
974   result += "\n";
975   result += "\nActing as a diameter client (launching i.e. 10 connections to each entity server), you would have:";
976   result += "\n   --entity 192.168.12.11:3868,192.168.12.21:3868 --entityServerSessions 10 --diameterServerSessions 0";
977   result += "\n";
978   result += "\nIf you act as a proxy or a translation agent, you need to combine both former setups, and probably";
979   result += "\n will need to program the answers to be replied through the operations interface. To balance the";
980   result += "\n traffic at your client side you shall use '--balance' and '--sessionBasedModelsClientSocketSelection'";
981   result += "\n arguments in order to define the balancing behaviour.";
982   result += "\n";
983   result += "\nThe process builds automatically CER and DWR messages as a client, but you could specify your own";
984   result += "\n customized ones using '--cer <xml message file>' and '--dwr <xml message file>'.";
985   result += "\nThe process builds automatically CEA and DWA messages as a server, but you could program your own";
986   result += "\n customized ones using operations interface.";
987   result += "\n";
988   result += "\n";
989   result += "\nDYNAMIC OPERATIONS";
990   result += "\n------------------";
991   result += "\n";
992   result += "\nADL supports several operations which could be reconized via HTTP interface or SIGUSR2 caugh.";
993   result += "\nAn operation is specified by mean a string containing the operation name and needed arguments";
994   result += "\n separated by pipes. These are the available commands:";
995   result += "\n";
996   result += "\n--------------------------------------------------------------------------------------- General purpose";
997   result += "\n";
998   result += "\nhelp                                 This help. Startup information-level traces also dump this help.";
999   result += "\n";
1000   result += "\n------------------------------------------------------------------------------------ Parsing operations";
1001   result += "\n";
1002   result += "\ncode|<source_file>|<target_file>     Encodes source file (pathfile) into target file (pathfile).";
1003   result += "\ndecode|<source_file>|<target_file>   Decodes source file (pathfile) into target file (pathfile).";
1004   result += "\nloadxml|<source_file>                Reinterpret xml source file (pathfile).";
1005   result += "\n";
1006   result += "\n------------------------------------------------------------------------------------------- Hot changes";
1007   result += "\n";
1008   result += "\ndiameterServerSessions|<integer>     Updates the maximum number of accepted connections to diameter";
1009   result += "\n                                      server socket.";
1010   result += "\ncontext|[target file]                Application context could also be written by mean this operation,";
1011   result += "\n                                      and not only through SIGUSR1. If optional path file is missing,";
1012   result += "\n                                      default '/var/tmp/anna.context.<pid>' will be used.";
1013   result += "\ncollect                              Reset statistics and counters to start a new test stage of";
1014   result += "\n                                      performance measurement. Context data can be written at";
1015   result += "\n                                      '/var/tmp/anna.context.<pid>' by mean 'kill -10 <pid>'";
1016   result += "\n                                      or sending operation 'context|[target file]'.";
1017   result += "\nforceCountersRecord                  Forces dump to file the current counters of the process.";
1018   result += "\n";
1019   result += "\n<visibility action>|[<address>:<port>]|[socket id]";
1020   result += "\n";
1021   result += "\n       Actions: hide, show (update state) and hidden, shown (query state).";
1022   result += "\n       Acts over a client session for messages delivery (except CER/A, DWR/A, DPR/A).";
1023   result += "\n       If missing server (first parameter) all applications sockets will be affected.";
1024   result += "\n       If missing socket (second parameter) for specific server, all its sockets will be affected.";
1025   result += "\n";
1026   result += "\n       All application client sessions are shown on startup, but standard delivery only use primary";
1027   result += "\n        server ones except if fails. Balance configuration use all the allowed sockets. You could also";
1028   result += "\n        use command line 'sessionBasedModelsClientSocketSelection' to force traffic flow over certain";
1029   result += "\n        client sessions, but for this, hide/show feature seems easier.";
1030   result += "\n";
1031   result += "\n--------------------------------------------------------------------------------------- Flow operations";
1032   result += "\n";
1033   result += "\nsendxml2e|<source_file>    Sends xml source file (pathfile) through configured entity.";
1034   result += "\nsendxml2c|<source_file>    Sends xml source file (pathfile) to client.";
1035   result += "\nsendxml|<source_file>      Same as 'sendxml2e'.";
1036   result += "\nanswerxml2e|[source_file]  Answer xml source file (pathfile) for incoming request with same code from entity.";
1037   result += "\n                           The answer is stored in a FIFO queue for a specific message code, then there are";
1038   result += "\n                           as many queues as different message codes have been programmed.";
1039   result += "\nanswerxml2c|[source_file]  Answer xml source file (pathfile) for incoming request with same code from client.";
1040   result += "\n                           The answer is stored in a FIFO queue for a specific message code, then there are";
1041   result += "\n                           as many queues as different message codes have been programmed.";
1042   result += "\nanswerxml|[source_file]    Same as 'answerxml2c'.";
1043   result += "\nanswerxml(2e/2c)           List programmed answers (to entity/client) if no parameter provided.";
1044   result += "\nanswerxml(2e/2c)|dump      Write programmed answers (to entity/client) to file 'programmed_answer.<message code>.<sequence>',";
1045   result += "\n                           where 'sequence' is the order of the answer in each FIFO code-queue of programmed answers.";
1046   result += "\nanswerxml(2e/2c)|clear     Clear programmed answers (to entity/client).";
1047   result += "\nanswerxml(2e/2c)|exhaust   Disable the corresponding queue rotation, which is the default behaviour.";
1048   result += "\nanswerxml(2e/2c)|rotate    Enable the corresponding queue rotation, useful in performance tests.";
1049   result += "\n                           Rotation consists in add again to the queue, each element retrieved for answering.";
1050   result += "\n";
1051   result += "\nSend operations are available using hexadecimal content (hex formatted files) which also allow to test";
1052   result += "\nspecial scenarios (protocol errors):";
1053   result += "\n";
1054   result += "\nsendhex2e|<source_file>    Sends hex source file (pathfile) through configured entity.";
1055   result += "\nsendhex2c|<source_file>    Sends hex source file (pathfile) to client.";
1056   result += "\nsendhex|<source_file>      Same as 'sendhex2e'.";
1057   result += "\n";
1058   result += "\nAnswer programming in hexadecimal is not really neccessary (you could use send primitives) and also";
1059   result += "\n is intended to be used with decoded messages in order to replace things like hop by hop, end to end,";
1060   result += "\n subscriber id, session id, etc. Anyway you could use 'decode' operation and then program the xml created.";
1061   result += "\n";
1062   result += "\nIf a request is received, answer map (built with 'answerxml<[2c] or 2e>' operations) will be";
1063   result += "\n checked to find a corresponding programmed answer to be replied(*). If no ocurrence is found,";
1064   result += "\n or answer message was received, the message is forwarded to the other side (entity or client),";
1065   result += "\n or nothing but trace when no peer at that side is configured. Answer to client have sense when";
1066   result += "\n diameter server socket is configured, answer to entity have sense when entity does.";
1067   result += "\n";
1068   result += "\nIn the most complete situation (process with both client and server side) there are internally";
1069   result += "\n two maps with N FIFO queues, one for each different message code within programmed answers.";
1070   result += "\nOne map is for answers towards the client, and the other is to react entity requests. Then in";
1071   result += "\n each one we could program different answers corresponding to different request codes received.";
1072   result += "\n";
1073   result += "\n(*) sequence values (hop-by-hop and end-to-end), Session-Id and Subscription-Id avps, are mirrored";
1074   result += "\n    to the peer which sent the request. If user wants to test a specific answer without changing it,";
1075   result += "\n    use sendxml/sendhex operations better than programming.";
1076   result += "\n";
1077   result += "\nBalance ('-balance' command line parameter) could be used to forward server socket receptions through";
1078   result += "\n entity servers by mean a round-robin algorithm. Both diameter server socket and entity targets should";
1079   result += "\n have been configured, that is to say: launcher acts as client and server. If no balance is used, an";
1080   result += "\n standard delivery is performed: first primary entity server, secondary when fails, etc.";
1081   result += "\n";
1082   result += "\n--------------------------------------------------------------------------- Processing types (log tags)";
1083   result += "\n";
1084   result += "\nUsed as log file extensions (when '-splitLog' is provided on command line) and context preffixes on log";
1085   result += "\n details when unique log file is dumped:";
1086   result += "\n";
1087   result += "\n   [sent2e/send2eError]   Send to entity (success/error)";
1088   result += "\n   [sent2c/send2cError]   Send to client (success/error)";
1089   result += "\n   [fwd2e/fwd2eError]     Forward to entity a reception from client (success/error)";
1090   result += "\n   [fwd2c/fwd2cError]     Forward to client a reception from entity (success/error)";
1091   result += "\n   [recvfc]               Reception from client";
1092   result += "\n   [recvfe]               Reception from entity";
1093   result += "\n   [req2c-expired]        A request sent to client has been expired";
1094   result += "\n   [req2e-expired]        A request sent to entity has been expired";
1095   result += "\n   [recvfc-ans-unknown]   Reception from client of an unknown answer (probably former [req2c-expired]";
1096   result += "\n                           has been logged)";
1097   result += "\n   [recvfe-ans-unknown]   Reception from entity of an unknown answer (probably former [req2e-expired]";
1098   result += "\n                           has been logged)";
1099   result += "\n   [retry]                Request retransmission";
1100   result += "\n";
1101   result += "\n-------------------------------------------------------------------------------------------- Load tests";
1102   result += "\n";
1103   result += "\nburst|<action>|[parameter]     Used for performance testing, we first program diameter requests";
1104   result += "\n                                messages in order to launch them from client side to the configured";
1105   result += "\n                                diameter entity. We could start the burst with an initial load";
1106   result += "\n                                (non-asynchronous sending), after this, a new request will be sent";
1107   result += "\n                                per answer received or expired context. There are 10 actions: clear,";
1108   result += "\n                                load, start, push, pop, stop, repeat, send, goto and look.";
1109   result += "\n";
1110   result += "\n   burst|clear                 Clears all loaded burst messages.";
1111   result += "\n   burst|load|<source_file>    Loads the next diameter message into launcher burst.";
1112   result += "\n   burst|start|<initial load>  Starts (or restarts if already in progress) the message sending with";
1113   result += "\n                                a certain initial load.";
1114   result += "\n   burst|push|<load amount>    Sends specific non-aynchronous load.";
1115   result += "\n   burst|pop|<release amount>  Skip send burst messages in order to reduce over-the-air requests.";
1116   result += "\n                               Popping all OTA requests implies burst stop because no more answer";
1117   result += "\n                                will arrive to the process. Burst output file (-burstLog command";
1118   result += "\n                                line parameter) shows popped messages with crosses (x). Each cross";
1119   result += "\n                                represents one received answer for which no new request is sent.";
1120   result += "\n   burst|stop                  Stops the burst cycle. You can resume pushing 1 load amount.";
1121   result += "\n   burst|repeat|[[yes]|no]     Restarts the burst launch when finish. If initial load or push load";
1122   result += "\n                                amount is greater than burst list size, they will be limited when";
1123   result += "\n                                the list is processed except when repeat mode is enabled.";
1124   result += "\n   burst|send|<amount>         Sends messages from burst list. The main difference with start/push";
1125   result += "\n                                operations is that burst won't be awaken. Externally we could control";
1126   result += "\n                                sending time (no request will be sent for answers).";
1127   result += "\n   burst|goto|<order>          Updates current burst pointer position.";
1128   result += "\n   burst|look|<order>          Show programmed burst message for order provided.";
1129   result += "\n";
1130   result += "\n";
1131   result += "\nUSING OPERATIONS INTERFACE";
1132   result += "\n--------------------------";
1133   result += "\n";
1134   result += "\n------------------------------------------------------------------------- Operations via HTTP interface";
1135   result += "\n";
1136   result += "\nAll the operations described above can be used through the optional HTTP interface. You only have";
1137   result += "\n to define the http server at the command line with something like: '-httpServer localhost:9000'.";
1138   result += "\nTo send the task, we shall build the http request body with the operation string. Some examples";
1139   result += "\n using curl client could be:";
1140   result += "\n";
1141   result += "\n   curl -m 1 --data \"diameterServerSessions|4\" localhost:9000";
1142   result += "\n   curl -m 1 --data \"code|ccr.xml\" localhost:9000";
1143   result += "\n   curl -m 1 --data \"decode|ccr.hex\" localhost:9000";
1144   result += "\n   curl -m 1 --data \"sendxml2e|ccr.xml\" localhost:9000";
1145   result += "\n   etc.";
1146   result += "\n";
1147   result += "\n------------------------------------------------------------------------- Operations via SIGUSR2 signal";
1148   result += "\n";
1149   result += "\nThe alternative using SIGUSR2 signal requires the creation of the task(s) file which will be read at";
1150   result += "\n signal event:";
1151   result += "\n   echo \"<<operation>\" > "; result += SIGUSR2_TASKS_INPUT_FILENAME;
1152   result += "\n    then";
1153   result += "\n   kill -12 <pid>";
1154   result += "\n    or";
1155   result += "\n   kill -s SIGUSR2 <pid>";
1156   result += "\n    and then see the results:";
1157   result += "\n   cat "; result += SIGUSR2_TASKS_OUTPUT_FILENAME;
1158   result += "\n";
1159   result += "\nYou could place more than one line (task) in the input file. Output reports will be appended in that";
1160   result += "\n case over the output file. Take into account that all the content of the task file will be executed";
1161   result += "\n sinchronously by the process. If you are planning traffic load, better use the asynchronous http";
1162   result += "\n interface.";
1163   result += "\n";
1164   result += "\n";
1165   return result;
1166 }
1167
1168 void Launcher::eventOperation(const std::string &operation, std::string &response_content) throw(anna::RuntimeException) {
1169   LOGMETHOD(anna::TraceMethod tm("Launcher", "eventOperation", ANNA_FILE_LOCATION));
1170   CommandLine& cl(anna::CommandLine::instantiate());
1171   LOGDEBUG(anna::Logger::debug(operation, ANNA_FILE_LOCATION));
1172   response_content = "Operation processed with exception. See traces\n"; // supposed
1173   std::string result = "";
1174   anna::DataBlock db_aux(true);
1175   anna::diameter::codec::Message codecMsg(getCodecEngine()); // XXXXXXXXXXXXXX el del nodo de trabajo
1176
1177   ///////////////////////////////////////////////////////////////////
1178   // Simple operations without arguments:
1179
1180   // Help:
1181   if(operation == "help") {
1182     std::string s_help = help();
1183     std::cout << s_help << std::endl;
1184     LOGINFORMATION(anna::Logger::information(s_help, ANNA_FILE_LOCATION));
1185     response_content = "Help dumped on stdout and information-level traces (launcher.trace file)\n";
1186     return;
1187   }
1188
1189   // Reset performance data:
1190   if(operation == "collect") {
1191     resetCounters();
1192     resetStatistics();
1193     response_content = "All process counters & statistic information have been reset\n";
1194     return;
1195   }
1196
1197   // Counters dump on demand:
1198   if(operation == "forceCountersRecord") {
1199     forceCountersRecord();
1200     response_content = "Current counters have been dump to disk\n";
1201     return;
1202   }
1203
1204   ///////////////////////////////////////////////////////////////////
1205   // Tokenize operation
1206   Tokenizer params;
1207   params.apply(operation, "|");
1208   int numParams = params.size() - 1;
1209
1210   // No operation has more than 2 arguments ...
1211   if(numParams > 2) {
1212     LOGWARNING(anna::Logger::warning(help(), ANNA_FILE_LOCATION));
1213     throw anna::RuntimeException("Wrong body content format on HTTP Request", ANNA_FILE_LOCATION);
1214   }
1215
1216   // Get the operation type:
1217   Tokenizer::const_iterator tok_iter = params.begin();
1218   std::string opType = Tokenizer::data(tok_iter);
1219   // Check the number of parameters:
1220   bool wrongBody = false;
1221
1222   if(((opType == "code") || (opType == "decode")) && (numParams != 2)) wrongBody = true;
1223
1224   if(((opType == "sendxml") || (opType == "sendxml2e") || (opType == "sendhex") || (opType == "sendhex2e")) && (numParams != 1)) wrongBody = true;
1225
1226   if((opType == "burst") && (numParams < 1)) wrongBody = true;
1227
1228   if(((opType == "sendxml2c") || (opType == "sendhex2c") || (opType == "loadxml") || (opType == "diameterServerSessions")) && (numParams != 1)) wrongBody = true;
1229
1230   if(wrongBody) {
1231     // Launch exception
1232     std::string msg = "Wrong body content format on HTTP Request for '";
1233     msg += opType;
1234     msg += "' operation (missing parameter/s)";
1235     throw anna::RuntimeException(msg, ANNA_FILE_LOCATION);
1236   }
1237
1238   // All seems ok:
1239   std::string param1, param2;
1240
1241   if(numParams >= 1) { tok_iter++; param1 = Tokenizer::data(tok_iter); }
1242
1243   if(numParams == 2) { tok_iter++; param2 = Tokenizer::data(tok_iter); }
1244
1245   // Operations:
1246   if(opType == "context") {
1247     std::string contextFile = ((numParams == 1) ? param1 : anna::functions::asString("/var/tmp/anna.context.%05d", getPid()));
1248     writeContext(contextFile);
1249     response_content = anna::functions::asString("Context dumped on file '%s'\n", contextFile.c_str());
1250     return;
1251   }
1252
1253   if(opType == "code") {
1254     codecMsg.loadXML(param1);
1255     std::string hexString = anna::functions::asHexString(codecMsg.code());
1256     // write to outfile
1257     std::ofstream outfile(param2.c_str(), std::ifstream::out);
1258     outfile.write(hexString.c_str(), hexString.size());
1259     outfile.close();
1260   } else if(opType == "decode") {
1261     // Get DataBlock from file with hex content:
1262     if(!getDataBlockFromHexFile(param1, db_aux))
1263       throw anna::RuntimeException("Error reading hex file provided", ANNA_FILE_LOCATION);
1264
1265     // Decode
1266     try { codecMsg.decode(db_aux); } catch(anna::RuntimeException &ex) { ex.trace(); }
1267
1268     std::string xmlString = codecMsg.asXMLString();
1269     // write to outfile
1270     std::ofstream outfile(param2.c_str(), std::ifstream::out);
1271     outfile.write(xmlString.c_str(), xmlString.size());
1272     outfile.close();
1273   } else if((opType == "hide") || (opType == "show") || (opType == "hidden") || (opType == "shown")) {
1274     MyDiameterEntity *entity = getEntity();
1275
1276     if(!entity) throw anna::RuntimeException("No entity configured to send messages", ANNA_FILE_LOCATION);
1277
1278     if(param1 != "") {
1279       if(param2 != "") {
1280         std::string key = param1;
1281         key += "|";
1282         key += param2;
1283
1284         if(opType == "hide") getMyDiameterEngine()->findClientSession(key)->hide();
1285
1286         if(opType == "show") getMyDiameterEngine()->findClientSession(key)->show();
1287
1288         if(opType == "hidden") result = getMyDiameterEngine()->findClientSession(key)->hidden() ? "true" : "false";
1289
1290         if(opType == "shown") result = getMyDiameterEngine()->findClientSession(key)->shown() ? "true" : "false";
1291       } else {
1292         std::string address;
1293         int port;
1294         anna::functions::getAddressAndPortFromSocketLiteral(param1, address, port);
1295
1296         if(opType == "hide") getMyDiameterEngine()->findServer(address, port)->hide();
1297
1298         if(opType == "show") getMyDiameterEngine()->findServer(address, port)->show();
1299
1300         if(opType == "hidden") result = getMyDiameterEngine()->findServer(address, port)->hidden() ? "true" : "false";
1301
1302         if(opType == "shown") result = getMyDiameterEngine()->findServer(address, port)->shown() ? "true" : "false";
1303       }
1304     } else {
1305       if(opType == "hide") entity->hide();
1306
1307       if(opType == "show") entity->show();
1308
1309       if(opType == "hidden") result = entity->hidden() ? "true" : "false";
1310
1311       if(opType == "shown") result = entity->shown() ? "true" : "false";
1312     }
1313   } else if((opType == "sendxml") || (opType == "sendxml2e") || (opType == "sendhex") || (opType == "sendhex2e")) {
1314     MyDiameterEntity *entity = getEntity();
1315
1316     if(!entity) throw anna::RuntimeException("No entity configured to send the message", ANNA_FILE_LOCATION);
1317     anna::diameter::comm::Message *msg = createCommMessage();
1318     //msg->setRetries(4);
1319     //msg->setOnExpiry(anna::diameter::comm::Message::OnExpiry::Retransmit);
1320
1321     if((opType == "sendxml") || (opType == "sendxml2e")) {
1322       codecMsg.loadXML(param1);
1323       msg->clearBody();
1324       try { codecMsg.valid(); } catch(anna::RuntimeException &ex) { ex.trace(); }  // at least we need to see validation errors although it will continue sending (see validation mode configured in launcher)
1325
1326       msg->setBody(codecMsg.code());
1327     } else {
1328       // Get DataBlock from file with hex content:
1329       if(!getDataBlockFromHexFile(param1, db_aux))
1330         throw anna::RuntimeException("Error reading hex file provided", ANNA_FILE_LOCATION);
1331
1332       msg->setBody(db_aux);
1333     }
1334
1335     bool success = entity->send(msg, cl.exists("balance"));
1336     releaseCommMessage(msg);
1337
1338     // Detailed log:
1339     if(logEnabled()) {
1340       anna::diameter::comm::Server *usedServer = entity->getLastUsedResource();
1341       anna::diameter::comm::ClientSession *usedClientSession = usedServer ? usedServer->getLastUsedResource() : NULL;
1342       std::string detail = usedClientSession ? usedClientSession->asString() : "<null client session>"; // esto no deberia ocurrir
1343       writeLogFile(codecMsg, (success ? "sent2e" : "send2eError"), detail);
1344     }
1345   } else if((opType == "burst")) {
1346     anna::diameter::comm::Entity *entity = getEntity();
1347
1348     if(!entity) throw anna::RuntimeException("No entity configured to use burst feature", ANNA_FILE_LOCATION);
1349
1350     // burst|clear                     clears all loaded burst messages.
1351     // burst|load|<source_file>        loads the next diameter message into launcher burst.
1352     // burst|start|<initial load>      starts the message sending with a certain initial load.
1353     // burst|push|<load amount>        sends specific non-aynchronous load.
1354     // burst|stop                      stops the burst cycle.
1355     // burst|repeat|[[yes]|no]         restarts the burst launch when finish.
1356     // burst|send|<amount>             send messages from burst list. The main difference with
1357     //                                 start/push operations is that burst won't be awaken.
1358     //                                 Externally we could control sending time (no request
1359     //                                 will be sent for answers).
1360     // burst|goto|<order>              Updates current burst pointer position.
1361     // burst|look|<order>              Show programmed burst message for order provided.
1362
1363     if(param1 == "clear") {
1364       result = "Removed ";
1365       result += anna::functions::asString(clearBurst());
1366       result += " elements.";
1367     } else if(param1 == "load") {
1368       if(param2 == "") throw anna::RuntimeException("Missing xml path file for burst load operation", ANNA_FILE_LOCATION);
1369
1370       codecMsg.loadXML(param2);
1371
1372       if(codecMsg.isAnswer()) throw anna::RuntimeException("Cannot load diameter answers for burst feature", ANNA_FILE_LOCATION);
1373       try { codecMsg.valid(); } catch(anna::RuntimeException &ex) { ex.trace(); }  // at least we need to see validation errors although it will continue loading (see validation mode configured in launcher)
1374
1375       int position = loadBurstMessage(codecMsg.code());
1376       result = "Loaded '";
1377       result += param2;
1378       result += "' file into burst list position ";
1379       result += anna::functions::asString(position);
1380     } else if(param1 == "start") {
1381       if(param2 == "") throw anna::RuntimeException("Missing initial load for burst start operation", ANNA_FILE_LOCATION);
1382
1383       int initialLoad = atoi(param2.c_str());
1384       int processed = startBurst(initialLoad);
1385
1386       if(processed > 0) {
1387         result = "Initial load completed for ";
1388         result += anna::functions::entriesAsString(processed, "message");
1389         result += ".";
1390       }
1391     } else if(param1 == "push") {
1392       if(param2 == "") throw anna::RuntimeException("Missing load amount for burst push operation", ANNA_FILE_LOCATION);
1393
1394       int pushed = pushBurst(atoi(param2.c_str()));
1395
1396       if(pushed > 0) {
1397         result = "Pushed ";
1398         result += anna::functions::entriesAsString(pushed, "message");
1399         result += ".";
1400       }
1401     } else if(param1 == "pop") {
1402       if(param2 == "") throw anna::RuntimeException("Missing amount for burst pop operation", ANNA_FILE_LOCATION);
1403
1404       int releaseLoad = atoi(param2.c_str());
1405       int popped = popBurst(releaseLoad);
1406
1407       if(popped > 0) {
1408         result = "Burst popped for ";
1409         result += anna::functions::entriesAsString(popped, "message");
1410         result += ".";
1411       }
1412     } else if(param1 == "stop") {
1413       int left = stopBurst();
1414
1415       if(left != -1) {
1416         result += anna::functions::entriesAsString(left, "message");
1417         result += " left to the end of the cycle.";
1418       }
1419     } else if(param1 == "repeat") {
1420       if(param2 == "") param2 = "yes";
1421
1422       bool repeat = (param2 == "yes");
1423       repeatBurst(repeat);
1424       result += (repeat ? "Mode on." : "Mode off.");
1425     } else if(param1 == "send") {
1426       if(param2 == "") throw anna::RuntimeException("Missing amount for burst send operation", ANNA_FILE_LOCATION);
1427
1428       int sent = sendBurst(atoi(param2.c_str()));
1429
1430       if(sent > 0) {
1431         result = "Sent ";
1432         result += anna::functions::entriesAsString(sent, "message");
1433         result += ".";
1434       }
1435     } else if(param1 == "goto") {
1436       if(param2 == "") throw anna::RuntimeException("Missing order position for burst goto operation", ANNA_FILE_LOCATION);
1437
1438       result = gotoBurst(atoi(param2.c_str()));
1439       result += ".";
1440     } else if(param1 == "look") {
1441       if(param2 == "") throw anna::RuntimeException("Missing order position for burst look operation", ANNA_FILE_LOCATION);
1442
1443       result = "\n\n";
1444       result += lookBurst(atoi(param2.c_str()));
1445       result += "\n\n";
1446     } else {
1447       throw anna::RuntimeException("Wrong body content format on HTTP Request for 'burst' operation (unexpected action parameter). See help", ANNA_FILE_LOCATION);
1448     }
1449   } else if((opType == "sendxml2c") || (opType == "sendhex2c")) {
1450     MyLocalServer *localServer = getDiameterLocalServer();
1451
1452     if(!localServer) throw anna::RuntimeException("No local server configured to send the message", ANNA_FILE_LOCATION);
1453     anna::diameter::comm::Message *msg = createCommMessage();
1454
1455     if(opType == "sendxml2c") {
1456       codecMsg.loadXML(param1);
1457       msg->clearBody();
1458       try { codecMsg.valid(); } catch(anna::RuntimeException &ex) { ex.trace(); }  // at least we need to see validation errors although it will continue sending (see validation mode configured in launcher)
1459
1460       msg->setBody(codecMsg.code());
1461     } else {
1462       // Get DataBlock from file with hex content:
1463       if(!getDataBlockFromHexFile(param1, db_aux))
1464         throw anna::RuntimeException("Error reading hex file provided", ANNA_FILE_LOCATION);
1465
1466       msg->setBody(db_aux);
1467     }
1468
1469     bool success = localServer->send(msg);
1470     releaseCommMessage(msg);
1471
1472     // Detailed log:
1473     if(logEnabled()) {
1474       anna::diameter::comm::ServerSession *usedServerSession = localServer->getLastUsedResource();
1475       std::string detail = usedServerSession ? usedServerSession->asString() : "<null server session>"; // esto no deberia ocurrir
1476       writeLogFile(codecMsg, (success ? "sent2c" : "send2cError"), detail);
1477     }
1478   } else if(opType == "loadxml") {
1479     codecMsg.loadXML(param1);
1480     std::string xmlString = codecMsg.asXMLString();
1481     std::cout << xmlString << std::endl;
1482   } else if(opType == "diameterServerSessions") {
1483     int diameterServerSessions = atoi(param1.c_str());
1484
1485     if(!getDiameterLocalServer())
1486       startDiameterServer(diameterServerSessions);
1487     else
1488       getDiameterLocalServer()->setMaxConnections(diameterServerSessions);
1489   } else if((opType == "answerxml") || (opType == "answerxml2c")) {
1490     MyLocalServer *localServer = getDiameterLocalServer();
1491
1492     if(!localServer)
1493       throw anna::RuntimeException("Operation not applicable (no own diameter server has been configured)", ANNA_FILE_LOCATION);
1494
1495     if(param1 == "") { // programmed answers FIFO's to stdout
1496       std::cout << localServer->getReactingAnswers()->asString("ANSWERS TO CLIENT") << std::endl;
1497       response_content = "Programmed answers dumped on stdout\n";
1498       return;
1499     } else if (param1 == "rotate") {
1500       localServer->getReactingAnswers()->rotate(true);
1501     } else if (param1 == "exhaust") {
1502       localServer->getReactingAnswers()->rotate(false);
1503     } else if (param1 == "clear") {
1504       localServer->getReactingAnswers()->clear();
1505     } else if (param1 == "dump") {
1506       localServer->getReactingAnswers()->dump();
1507     } else {
1508       anna::diameter::codec::Message *message = getCodecEngine()->createMessage(param1); // // XXXXXXXXXXXXXX el del nodo de trabajo
1509       LOGDEBUG
1510       (
1511         anna::Logger::debug(message->asXMLString(), ANNA_FILE_LOCATION);
1512       );
1513
1514       if(message->isRequest())
1515         throw anna::RuntimeException("Cannot program diameter requests. Answer type must be provided", ANNA_FILE_LOCATION);
1516
1517       int code = message->getId().first;
1518       LOGDEBUG(anna::Logger::debug("Adding a new programed 'answer to client' to the FIFO queue corresponding to its message code ...", ANNA_FILE_LOCATION));
1519       localServer->getReactingAnswers()->addMessage(code, message);
1520     }
1521   } else if(opType == "answerxml2e") {
1522     MyDiameterEntity *entity = getEntity();
1523
1524     if(!entity)
1525       throw anna::RuntimeException("Operation not applicable (no diameter entity has been configured)", ANNA_FILE_LOCATION);
1526
1527     if(param1 == "") { // programmed answers FIFO's to stdout
1528       std::cout << entity->getReactingAnswers()->asString("ANSWERS TO ENTITY") << std::endl;
1529       response_content = "Programmed answers dumped on stdout\n";
1530       return;
1531     } else if (param1 == "rotate") {
1532       entity->getReactingAnswers()->rotate(true);
1533     } else if (param1 == "exhaust") {
1534       entity->getReactingAnswers()->rotate(false);
1535     } else if (param1 == "clear") {
1536       entity->getReactingAnswers()->clear();
1537     } else if (param1 == "dump") {
1538       entity->getReactingAnswers()->dump();
1539     } else {
1540       anna::diameter::codec::Message *message = getCodecEngine()->createMessage(param1); // XXXXXXXXXXXXXX el del nodo de trabajo
1541       LOGDEBUG
1542       (
1543         anna::Logger::debug(message->asXMLString(), ANNA_FILE_LOCATION);
1544       );
1545
1546       if(message->isRequest())
1547         throw anna::RuntimeException("Cannot program diameter requests. Answer type must be provided", ANNA_FILE_LOCATION);
1548
1549       int code = message->getId().first;
1550       LOGDEBUG(anna::Logger::debug("Adding a new programed 'answer to entity' to the FIFO queue corresponding to its message code ...", ANNA_FILE_LOCATION));
1551       entity->getReactingAnswers()->addMessage(code, message);
1552     }
1553   } else {
1554     LOGWARNING(anna::Logger::warning(help(), ANNA_FILE_LOCATION));
1555     throw anna::RuntimeException("Wrong body content format on HTTP Request. Unsupported/unrecognized operation type", ANNA_FILE_LOCATION);
1556   }
1557
1558   // HTTP response
1559   response_content = "Operation processed; ";
1560
1561   if((opType == "decode") || (opType == "code")) {
1562     response_content += "File '";
1563     response_content += param2;
1564     response_content += "' created.";
1565     response_content += "\n";
1566   } else if((opType == "hide") || (opType == "show")) {
1567     response_content += "Resource '";
1568     response_content += ((param1 != "") ? param1 : "Entity");
1569
1570     if(param2 != "") {
1571       response_content += "|";
1572       response_content += param2;
1573     }
1574
1575     response_content += "' ";
1576
1577     if(opType == "hide") response_content += "has been hidden.";
1578
1579     if(opType == "show") response_content += "has been shown.";
1580
1581     response_content += "\n";
1582   } else if((opType == "hidden") || (opType == "shown")) {
1583     response_content += "Result: ";
1584     response_content += result;
1585     response_content += "\n";
1586   } else if((opType == "sendxml") || (opType == "sendxml2e") || (opType == "sendhex") || (opType == "sendhex2e")) {
1587     response_content += "Message '";
1588     response_content += param1;
1589     response_content += "' sent to entity.";
1590     response_content += "\n";
1591   } else if(opType == "burst") {
1592     response_content += "Burst '";
1593     response_content += param1;
1594     response_content += "' executed. ";
1595     response_content += result;
1596     response_content += "\n";
1597   } else if((opType == "sendxml2c") || (opType == "sendhex2c")) {
1598     response_content += "Message '";
1599     response_content += param1;
1600     response_content += "' sent to client.";
1601     response_content += "\n";
1602   } else if(opType == "loadxml") {
1603     response_content += "Message '";
1604     response_content += param1;
1605     response_content += "' loaded.";
1606     response_content += "\n";
1607   } else if((opType == "answerxml") || (opType == "answerxml2c")) {
1608     response_content += "'";
1609     response_content += param1;
1610     response_content += "' applied on server FIFO queue";
1611     response_content += "\n";
1612   } else if(opType == "answerxml2e") {
1613     response_content += "'";
1614     response_content += param1;
1615     response_content += "' applied on client FIFO queue";
1616     response_content += "\n";
1617   } else if(opType == "diameterServerSessions") {
1618     response_content += "Maximum server socket connections updated to '";
1619     response_content += param1;
1620     response_content += "'.";
1621     response_content += "\n";
1622   }
1623 }
1624
1625 int MyDiameterEntity::readSocketId(const anna::diameter::comm::Message* message, int maxClientSessions) const throw() {
1626   CommandLine& cl(anna::CommandLine::instantiate());
1627   std::string sessionBasedModelsType = (cl.exists("sessionBasedModelsClientSocketSelection") ? cl.getValue("sessionBasedModelsClientSocketSelection") : "SessionIdLowPart");
1628
1629   if(sessionBasedModelsType == "RoundRobin") return -1;  // IEC also would return -1
1630
1631   try {
1632     // Service-Context-Id:
1633     anna::diameter::helpers::dcca::ChargingContext::_v chargingContext;
1634     std::string scid = anna::diameter::helpers::dcca::functions::getServiceContextId(message->getBody(), chargingContext);
1635
1636     switch(chargingContext) {
1637     case anna::diameter::helpers::dcca::ChargingContext::Data:
1638     case anna::diameter::helpers::dcca::ChargingContext::Voice:
1639     case anna::diameter::helpers::dcca::ChargingContext::Content: {
1640       // Session-Id: '<DiameterIdentity>;<high 32 bits>;<low 32 bits>[;<optional value>="">]'
1641       std::string sid = anna::diameter::helpers::base::functions::getSessionId(message->getBody());
1642       std::string diameterIdentity, optional;
1643       anna::U32 high, low;
1644       anna::diameter::helpers::base::functions::decodeSessionId(sid, diameterIdentity, high, low /* context-teid */, optional);
1645
1646       if(sessionBasedModelsType == "SessionIdLowPart") return (low % maxClientSessions);
1647
1648       if(sessionBasedModelsType == "SessionIdHighPart") return (high % maxClientSessions);
1649
1650       if(sessionBasedModelsType == "SessionIdOptionalPart") return (atoi(optional.c_str()) % maxClientSessions);
1651     }
1652
1653     case anna::diameter::helpers::dcca::ChargingContext::SMS:
1654     case anna::diameter::helpers::dcca::ChargingContext::MMS:
1655     case anna::diameter::helpers::dcca::ChargingContext::Unknown:
1656     default:
1657        return -1;
1658     }
1659   } catch(anna::RuntimeException &ex) {
1660     LOGDEBUG(
1661       std::string msg = ex.getText();
1662       msg += " | Round-robin between sessions will be used to send";
1663       anna::Logger::debug(msg, ANNA_FILE_LOCATION);
1664     );
1665   }
1666
1667   return -1;
1668 }
1669
1670 anna::xml::Node* Launcher::asXML(anna::xml::Node* parent) const
1671 throw() {
1672   anna::xml::Node* result = parent->createChild("launcher");
1673   anna::comm::Application::asXML(result);
1674   // Timming:
1675   result->createAttribute("StartTime", a_start_time.asString());
1676   result->createAttribute("SecondsLifeTime", anna::time::functions::lapsedMilliseconds() / 1000);
1677   // Diameter:
1678   getCodecEngine()->asXML(result); // XXXXXXXXXXXXXXX todos los nodos ...
1679   // OAM:
1680   anna::diameter::comm::OamModule::instantiate().asXML(result);
1681   anna::diameter::comm::ApplicationMessageOamModule::instantiate().asXML(result);
1682   anna::diameter::codec::OamModule::instantiate().asXML(result);
1683   // Statistics:
1684   anna::statistics::Engine::instantiate().asXML(result);
1685   return result;
1686 }