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