Changed LICENSE. Now referenced to web site and file on project root directory
[anna.git] / source / diameter.comm / Session.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 #include <anna/core/functions.hpp>
10 #include <anna/diameter/defines.hpp>
11 #include <anna/diameter/functions.hpp>
12 #include <anna/diameter/helpers/helpers.hpp>
13 #include <anna/diameter/codec/functions.hpp>
14 #include <anna/diameter/helpers/base/functions.hpp>
15 #include <anna/time/functions.hpp>
16
17 // Local
18 #include <anna/diameter.comm/Session.hpp>
19 #include <anna/diameter.comm/Engine.hpp>
20 #include <anna/diameter.comm/Entity.hpp>
21 #include <anna/diameter.comm/Server.hpp>
22 #include <anna/diameter.comm/Transport.hpp>
23 #include <anna/diameter.comm/Response.hpp>
24 #include <anna/diameter.comm/Message.hpp>
25 #include <anna/diameter.comm/TimerManager.hpp>
26 #include <anna/diameter.comm/Timer.hpp>
27
28 #include <anna/comm/Network.hpp>
29 #include <anna/comm/ClientSocket.hpp>
30 #include <anna/core/functions.hpp>
31 #include <anna/core/DataBlock.hpp>
32 #include <anna/core/tracing/Logger.hpp>
33 #include <anna/core/tracing/TraceMethod.hpp>
34 #include <anna/xml/Node.hpp>
35 #include <anna/timex/Engine.hpp>
36 #include <anna/app/functions.hpp>
37
38 // Standard
39 #include <stdlib.h> // rand()
40 #include <time.h>
41
42
43
44 using namespace std;
45 using namespace anna::diameter;
46 using namespace anna::diameter::comm;
47
48 //static
49 const anna::Millisecond Session::DefaultTimeout(10000); // Application messages timeout
50 const int Session::DefaultPort(3868);
51
52
53 Session::Session(const char *className, const char *timerName) : anna::timex::Timer(timerName, (anna::Millisecond)0) /* not assigned */,
54   a_className(className),
55   a_timeController(NULL),
56   a_engine(NULL),
57   a_notifyOrphansOnExpiration(true),
58   a_actionTimer(NULL),
59   a_dpr(ClassCode::ApplicationMessage) { // realmente no es necesario, los Message son por defecto de aplicacion
60   initialize();
61 }
62
63 void Session::initialize() throw() {
64   a_state = State::Closed;
65   a_socketId = 0;
66   a_lastIncomingActivityTime = (anna::Millisecond)0;
67   a_lastOutgoingActivityTime = (anna::Millisecond)0;
68   a_onDisconnect = OnDisconnect::WaitPendings;
69
70   for(int i = ClassCode::Min; i < ClassCode::Max; i ++)
71     a_timeouts [i] = DefaultTimeout;
72 }
73
74 //Session::~Session() {;}
75
76
77 void Session::initializeSequences() throw() {
78   // Sequences
79   //
80   //   Hop-by-Hop Identifier
81   //      The Hop-by-Hop Identifier is an unsigned 32-bit integer field (in
82   //      network byte order) and aids in matching requests and replies.
83   //      The sender MUST ensure that the Hop-by-Hop identifier in a request
84   //      is unique on a given connection at any given time, and MAY attempt
85   //      to ensure that the number is unique across reboots.  The sender of
86   //      an Answer message MUST ensure that the Hop-by-Hop Identifier field
87   //      contains the same value that was found in the corresponding
88   //      request.  The Hop-by-Hop identifier is normally a monotonically
89   //      increasing number, whose start value was randomly generated.  An
90   //      answer message that is received with an unknown Hop-by-Hop
91   //      Identifier MUST be discarded.
92   //
93   //   End-to-End Identifier
94   //      The End-to-End Identifier is an unsigned 32-bit integer field (in
95   //      network byte order) and is used to detect duplicate messages.
96   //      Upon reboot implementations MAY set the high order 12 bits to
97   //      contain the low order 12 bits of current time, and the low order
98   //      20 bits to a random value.  Senders of request messages MUST
99   //      insert a unique identifier on each message.  The identifier MUST
100   //      remain locally unique for a period of at least 4 minutes, even
101   //      across reboots.  The originator of an Answer message MUST ensure
102   //      that the End-to-End Identifier field contains the same value that
103   //      was found in the corresponding request.  The End-to-End Identifier
104   //      MUST NOT be modified by Diameter agents of any kind.  The
105   //      combination of the Origin-Host (see Section 6.3) and this field is
106   //      used to detect duplicates.  Duplicate requests SHOULD cause the
107   //      same answer to be transmitted (modulo the hop-by-hop Identifier
108   //      field and any routing AVPs that may be present), and MUST NOT
109   //      affect any state that was set when the original request was
110   //      processed.  Duplicate answer messages that are to be locally
111   //      consumed (see Section 6.2) SHOULD be silently discarded.
112   srand(::time(NULL) + anna::functions::exclusiveHash(anna::functions::asString("%s:%d|%d", getAddress().c_str(), getPort(), a_socketId)));
113   a_nextHopByHop = rand();
114   a_nextEndToEnd = ((::time(NULL) & 0xFFF) << 20) + (rand() & 0xFFFFF);
115 }
116
117 void Session::sendDPA()
118 throw(anna::RuntimeException) {
119   LOGMETHOD(anna::TraceMethod traceMethod("anna::diameter::comm::Session", "sendDPA", ANNA_FILE_LOCATION));
120   anna::DataBlock dpa(true);
121   a_engine->readDPA(dpa, a_dpr.getBody()); // Asume that DPA is valid ...
122
123   if(dpa.isEmpty()) {
124     LOGWARNING(anna::Logger::warning("This diameter agent defines an empty DPA message. Remote disconnection DPR will be ignored going to the Bound state", ANNA_FILE_LOCATION));
125     setState(State::Bound);
126     return;
127   }
128
129   Message msgDpa;
130   msgDpa.setBody(dpa);
131   send(&msgDpa);
132   LOGWARNING(anna::Logger::warning("DPA has been sent to the peer", ANNA_FILE_LOCATION));
133   // Temporizador de proteccion por si el servidor no cierra:
134   //    state            event              action           next state
135   //    ---------------------------------------------------------------
136   //    R-Open           R-Rcv-DPR          R-Snd-DPA        Closing
137   //    Closing          Timeout            Error            Closed
138   activateActionTimer(anna::diameter::comm::Timer::Type::SessionUnbind);
139 }
140
141 void Session::setState(State::_v state) throw() {
142   LOGDEBUG(
143
144   if(state != a_state) {
145   std::string msg("Session state change: ");
146     msg += asText(a_state);
147     msg += " -> ";
148     msg += asText(state);
149     anna::Logger::debug(msg, ANNA_FILE_LOCATION);
150   }
151   );
152   a_state = state;
153 }
154
155
156 void Session::activateActionTimer(const anna::diameter::comm::Timer::Type::_v type) throw() {
157   LOGMETHOD(anna::TraceMethod traceMethod("anna::diameter::comm::Session", "activateActionTimer", ANNA_FILE_LOCATION));
158   cancelTimer(); // Session timer
159
160   try {
161     if(a_actionTimer && a_actionTimer->isActive()) cancelActionTimer();  // no ocurrira
162
163     a_actionTimer = TimerManager::instantiate().createTimer(this, type);
164   } catch(anna::RuntimeException& ex) {
165     std::string msg = "CAPTURED EXCEPTION during action timer activation (activateActionTimer): ";
166     msg += ex.getText();
167     anna::Logger::error(msg, ANNA_FILE_LOCATION);
168   }
169 }
170
171
172 void Session::cancelActionTimer() throw() {
173   LOGMETHOD(anna::TraceMethod traceMethod("anna::diameter::comm::Session", "cancelActionTimer", ANNA_FILE_LOCATION));
174
175   if(a_actionTimer) {
176     if(a_actionTimer->isActive()) {
177       try {
178         TimerManager::instantiate().cancelTimer(a_actionTimer);
179       } catch(anna::RuntimeException& ex) {
180         ex.trace();
181       }
182     } else { // por aqui no deberia pasar ...
183       LOGDEBUG(anna::Logger::debug("Timer not activated!", ANNA_FILE_LOCATION));
184     }
185
186     a_actionTimer = NULL;
187   }
188 }
189
190
191 void Session::activateTimer() throw() {
192   LOGMETHOD(anna::TraceMethod traceMethod("anna::diameter::comm::Session", "activateTimer", ANNA_FILE_LOCATION));
193   cancelActionTimer();
194
195   try {
196     if(a_timeController == NULL)  // Application must created a timex engine
197       a_timeController = anna::app::functions::component <anna::timex::Engine> (ANNA_FILE_LOCATION);
198
199     if(isActive()) cancelTimer();
200
201     a_timeController->activate(this);
202   } catch(anna::RuntimeException& ex) {
203     std::string msg = "CAPTURED EXCEPTION during session timer activation (activateTimer): ";
204     msg += ex.getText();
205     anna::Logger::error(msg, ANNA_FILE_LOCATION);
206   }
207
208   timerStarted();
209 }
210
211
212 void Session::cancelTimer() throw() {
213   LOGMETHOD(anna::TraceMethod traceMethod("anna::diameter::comm::Session", "cancelTimer", ANNA_FILE_LOCATION));
214
215   if(isActive()) {
216     try {
217       if(a_timeController == NULL)  // Application must created a timex engine
218         a_timeController = anna::app::functions::component <anna::timex::Engine> (ANNA_FILE_LOCATION);
219
220       a_timeController->cancel(this);
221     } catch(anna::RuntimeException& ex) {
222       std::string msg = "CAPTURED EXCEPTION during session timer cancellation (cancelTimer): ";
223       msg += ex.getText();
224       anna::Logger::error(msg, ANNA_FILE_LOCATION);
225     }
226
227     timerStopped();
228   } else {
229     LOGDEBUG(anna::Logger::debug("Timer not activated!", ANNA_FILE_LOCATION));
230   }
231 }
232
233
234 //-------------------------------------------------------------------------
235 // Se invoca desde diameter::comm::Timer
236 //-------------------------------------------------------------------------
237 void Session::expireResponse(diameter::comm::Response* response)
238 throw() {
239   LOGMETHOD(anna::TraceMethod traceMethod("anna::diameter::comm::Session", "expireResponse", ANNA_FILE_LOCATION));
240   bool doUnbind = false;
241
242   // Quitar el OnExpiry: no tiene sentido habiendo keep-alive (DWR)
243   if(response->getClassCode() != ClassCode::Bind) {
244     if(response->getRequest()->getOnExpiry() == Message::OnExpiry::Abandon) {
245       a_onDisconnect = OnDisconnect::IgnorePendings; // Abandon is not graceful
246       doUnbind = true;
247     }
248   } else
249     doUnbind = true; // (*)
250
251   try {
252     response->setMessage(NULL);
253     eventResponse(*response);
254   } catch(anna::RuntimeException& ex) {
255     ex.trace();
256   }
257
258   // DPR special case:
259   diameter::CommandId cid = response->getRequest()->getCommandId();
260
261   if((cid == helpers::base::COMMANDID__Disconnect_Peer_Request) && (a_state == State::WaitingDPA)) {
262     LOGDEBUG(anna::Logger::debug("Expired DPR sent to remote diameter point: local DPR procedure will be ignored going to the Bound state", ANNA_FILE_LOCATION));
263     setState(State::Bound);
264   }
265
266   response_erase(response);
267
268   if(doUnbind) unbind();
269 }
270
271 void Session::finalize() throw() {
272   LOGMETHOD(anna::TraceMethod traceMethod("anna::diameter::comm::Session", "finalize", ANNA_FILE_LOCATION));
273   setState(State::Closed);
274   cancelTimer(); // Session timer
275   cancelActionTimer(); // Action timer
276   eventPeerShutdown();
277 ///////////////////////////////////////////////////////////////////////
278 // Notificar la finalizaciĆ³n de las respuestas pendientes de recibir //
279 ///////////////////////////////////////////////////////////////////////
280 // RFC 3588 - 5.5.4.  Failover and Failback Procedures
281 //
282 //      In the event that a transport failure is detected with a peer, it is
283 //      necessary for all pending request messages to be forwarded to an
284 //      alternate agent, if possible.  This is commonly referred to as
285 //      failover.
286 //
287 //      In order for a Diameter node to perform failover procedures, it is
288 //      necessary for the node to maintain a pending message queue for a
289 //      given peer.  When an answer message is received, the corresponding
290 //      request is removed from the queue.  The Hop-by-Hop Identifier field
291 //      is used to match the answer with the queued request.
292 //
293 //      When a transport failure is detected, if possible all messages in the
294 //      queue are sent to an alternate agent with the T flag set.  On booting
295 //      a Diameter client or agent, the T flag is also set on any records
296 //      still remaining to be transmitted in non-volatile storage.  An
297 //      example of a case where it is not possible to forward the message to
298 //      an alternate server is when the message has a fixed destination, and
299 //      the unavailable peer is the message's final destination (see
300 //      Destination-Host AVP).  Such an error requires that the agent return
301 //      an answer message with the 'E' bit set and the Result-Code AVP set to
302 //      DIAMETER_UNABLE_TO_DELIVER.
303 //
304 //      It is important to note that multiple identical requests or answers
305 //      MAY be received as a result of a failover.  The End-to-End Identifier
306 //      field in the Diameter header along with the Origin-Host AVP MUST be
307 //      used to identify duplicate messages.
308   Response* response;
309
310   for(response_iterator ii = response_begin(), maxii = response_end(); ii != maxii; ii ++) {
311     response = Session::response(ii);
312     response->setResultCode(Response::ResultCode::DiameterUnavailable);
313
314     if(!a_notifyOrphansOnExpiration) {  // to avoid message bursts (to alternate servers for client-session context), we will manage at expireResponse
315       response->cancelTimer();
316
317       try {
318         response->setMessage(NULL);
319         eventResponse(*response);
320       } catch(anna::RuntimeException& ex) {
321         ex.trace();
322       }
323
324       Response::release(response);
325     }
326   }
327
328   if(a_notifyOrphansOnExpiration) return;
329
330   a_responses.clear();
331 }
332
333 void Session::response_add(Response* response)
334 throw() {
335   a_responses.add(response);
336   response->setSession(this);
337
338   try {
339     response->activateTimer();
340   } catch(anna::Exception& ex) {
341     ex.trace();
342   }
343 }
344
345 void Session::response_erase(Response* response)
346 throw() {
347   a_responses.erase(response);
348   Response::release(response);
349
350   if(a_state == State::Disconnecting)  // only OnDisconnect::WaitPendings arrives here (the other disconnect suddently)
351     if(getOTARequests() == 0) sendDPA();
352
353   if(a_state == State::Closing)  // only OnDisconnect::WaitPendings arrives here (the other disconnect suddently)
354     if(getOTARequests() == 0) unbind();
355 }
356
357 Response* Session::response_find(const HopByHop hopByHop)
358 throw(anna::RuntimeException) {
359   diameter::comm::Response* result = a_responses.find(hopByHop);
360 //   if (result == NULL) {
361 //      string msg(asString());
362 //      msg += anna::functions::asString(" | Response received for non registered context (HopByHop: %u)", hopByHop);
363 //      throw anna::RuntimeException(msg, ANNA_FILE_LOCATION);
364 //   }
365   //Message * message = const_cast<Message*>(result->getRequest());
366   return result;
367 }
368
369 std::string Session::asString() const
370 throw() {
371   string result(a_className);
372   result += " { ";
373   result += anna::timex::Timer::asString();
374   result += " | Socket Id: ";
375   result += anna::functions::asString(a_socketId);
376   result += " | State: ";
377   result += asText(a_state);
378   result += " | OnDisconnect: ";
379   result += asText(a_onDisconnect);
380   result += " | Next Hop by hop: ";
381   result += anna::functions::asString(a_nextHopByHop);
382   result += " | Next End to end: ";
383   result += anna::functions::asString(a_nextEndToEnd);
384   result += anna::functions::asString(" | OTA requests: %d%s", getOTARequests(), idle() ? " (idle)" : "");
385   result += " | Last Incoming Activity Time: ";
386   result += a_lastIncomingActivityTime.asString();
387   result += " | Last Outgoing Activity Time: ";
388   result += a_lastOutgoingActivityTime.asString();
389
390   for(int i = ClassCode::Bind; i < ClassCode::Max; i ++) {
391     result += " | Timeout for ClassCode '";
392     result += ClassCode::asText((ClassCode::_v)i);
393     result += "': ";
394     result += a_timeouts[i].asString();
395   }
396
397   return result;
398 }
399
400 anna::xml::Node* Session::asXML(anna::xml::Node* parent) const
401 throw() {
402   //parent = anna::timex::Timer::asXML(parent);
403   anna::xml::Node* result = parent->createChild("diameter.comm.Session");
404   result->createAttribute("SocketId", anna::functions::asString(a_socketId));
405   result->createAttribute("State", asText(a_state));
406   result->createAttribute("OnDisconnect", asText(a_onDisconnect));
407   result->createAttribute("NextHopByHop", anna::functions::asString(a_nextHopByHop));
408   result->createAttribute("NextEndToEnd", anna::functions::asString(a_nextEndToEnd));
409   result->createAttribute("OTArequests", anna::functions::asString("%d%s", getOTARequests(), idle() ? " (idle)" : ""));
410   result->createAttribute("LastIncomingActivityTime", a_lastIncomingActivityTime.asString());
411   result->createAttribute("LastOutgoingActivityTime", a_lastOutgoingActivityTime.asString());
412
413   for(int i = ClassCode::Bind; i < ClassCode::Max; i ++) {
414     std::string name = "TimeoutFor"; name += ClassCode::asText((ClassCode::_v)i);
415     result->createAttribute(name.c_str(), a_timeouts[i].asString());
416   }
417
418   // Messages
419   anna::xml::Node* messages = result->createChild("diameter.comm.Messages");
420   const Response* response;
421   const Message* message;
422
423   for(const_response_iterator ii = response_begin(), maxii = response_end(); ii != maxii; ii ++) {
424     if((message = Session::response(ii)->getRequest()) != NULL)
425       message->asXML(messages);
426   }
427
428   return result;
429 }
430
431 const char* Session::asText(const State::_v state)
432 throw() {
433   static const char* text [] = { "Closed", "WaitingBind", "Bound", "Failover", "Suspect", "WaitingDPA", "Disconnecting", "Closing" };
434   return text [state];
435 }
436
437 const char* Session::asText(const OnDisconnect::_v onDisconnect)
438 throw() {
439   static const char* text [] = { "IgnorePendings", "WaitPendings" };
440   return text [onDisconnect];
441 }
442
443
444
445 HopByHop Session::SortById::value(const Response* response)
446 throw() {
447   return response->getHopByHop();
448 }
449
450
451 //------------------------------------------------------------------------------
452 //---------------------------------------- Session::updateIncomingActivityTime()
453 //------------------------------------------------------------------------------
454 void Session::updateIncomingActivityTime() throw() {
455   a_lastIncomingActivityTime = anna::functions::millisecond();
456   LOGDEBUG
457   (
458     std::string msg = "Updated INCOMING activity on session (milliseconds unix): ";
459     msg += anna::functions::asString(a_lastIncomingActivityTime.getValue());
460     anna::Logger::debug(msg, ANNA_FILE_LOCATION);
461   );
462 }
463
464
465 //------------------------------------------------------------------------------
466 //---------------------------------------- Session::updateOutgoingActivityTime()
467 //------------------------------------------------------------------------------
468 void Session::updateOutgoingActivityTime(void) throw() {
469   a_lastOutgoingActivityTime = anna::functions::millisecond();
470   LOGDEBUG
471   (
472     std::string msg = "Updated OUTGOING activity on session (milliseconds unix): ";
473     msg += anna::functions::asString(a_lastOutgoingActivityTime.getValue());
474     anna::Logger::debug(msg, ANNA_FILE_LOCATION);
475   );
476 }
477