1 // ANNA - Anna is Not Nothingness Anymore //
3 // (c) Copyright 2005-2015 Eduardo Ramos Testillano & Francisco Ruiz Rayo //
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 //
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/codec/Message.hpp>
15 #include <anna/diameter/helpers/base/functions.hpp>
16 #include <anna/time/functions.hpp>
18 #include <anna/diameter.comm/ClientSession.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/Response.hpp>
23 #include <anna/diameter.comm/Message.hpp>
24 #include <anna/diameter.comm/OamModule.hpp>
25 #include <anna/diameter.comm/ApplicationMessageOamModule.hpp>
26 #include <anna/diameter.comm/TimerManager.hpp>
27 #include <anna/diameter.comm/Timer.hpp>
28 #include <anna/diameter.comm/ClientSessionReceiver.hpp>
29 #include <anna/diameter.comm/ReceiverFactoryImpl.hpp>
31 #include <anna/comm/ClientSocket.hpp>
32 #include <anna/app/functions.hpp>
33 #include <anna/core/functions.hpp>
34 #include <anna/core/DataBlock.hpp>
35 #include <anna/core/tracing/Logger.hpp>
36 #include <anna/core/tracing/TraceMethod.hpp>
37 #include <anna/xml/Node.hpp>
38 #include <anna/timex/Engine.hpp>
41 #include <stdlib.h> // rand()
46 using namespace anna::diameter;
47 using namespace anna::diameter::comm;
50 const anna::Millisecond ClientSession::DefaultWatchdogPeriod(30000); // Watchdog messages timeout
53 ClientSession::ClientSession() : Session("diameter::comm::ClientSession", "Diameter Keep-Alive Timer"),
54 a_receiverFactory(this),
55 a_cer(ClassCode::Bind),
56 a_dwr(ClassCode::ApplicationMessage) // realmente no es necesario, los Message son por defecto de aplicacion
60 void ClientSession::initialize() throw() {
61 Session::initialize();
62 a_autoRecovery = true;
65 a_watchdogState = WatchdogState::TimerStopped;
69 //ClientSession::~ClientSession() {;}
72 const std::string& ClientSession::getAddress() const throw() {
73 return a_parent->getAddress();
76 int ClientSession::getPort() const throw() {
77 return a_parent->getPort();
81 void ClientSession::setState(State::_v state) throw() {
82 Session::setState(state);
83 // Inform father server (availability changes):
84 bool changes = a_parent->refreshAvailability();
87 void ClientSession::bind() throw(anna::RuntimeException) {
88 LOGMETHOD(anna::TraceMethod traceMethod(a_className, "bind", ANNA_FILE_LOCATION));
90 if(a_state != State::Closed)
94 string msg("diameter::comm::ClientSession::bind | ");
96 anna::Logger::debug(msg, ANNA_FILE_LOCATION);
101 throw anna::RuntimeException("Server is not yet created", ANNA_FILE_LOCATION);
103 bool serverAvailable = a_server->isAvailable();
106 if(serverAvailable) anna::Logger::debug("Server AVAILABLE", ANNA_FILE_LOCATION);
107 else anna::Logger::debug("Server NOT AVAILABLE. Connecting ...", ANNA_FILE_LOCATION);
110 if(!serverAvailable) {
115 // Some operations could be done before sending CER, for example non-standard Origin-Host manipulation for
117 a_engine->bindingClientSession(this);
119 // OAM Lo comento, porque no se contabilizan los reintentos y por lo tanto no son muy �tiles.
120 // OamModule &oamModule = OamModule::instantiate();
121 // oamModule.count(a_server->isAvailable() ? OamModule::Counter::TCPConnectOK:OamModule::Counter::TCPConnectNOK);
124 LOGDEBUG(anna::Logger::debug("CER sent to the server", ANNA_FILE_LOCATION));
128 void ClientSession::setCERandDWR(const anna::DataBlock & cer, const anna::DataBlock & dwr) throw(anna::RuntimeException) {
129 if(codec::functions::getCommandId(cer) != helpers::base::COMMANDID__Capabilities_Exchange_Request) {
130 throw anna::RuntimeException("The message provided as 'CER' is not a Capabilities-Exchange-Request", ANNA_FILE_LOCATION);
133 if(codec::functions::getCommandId(dwr) != helpers::base::COMMANDID__Device_Watchdog_Request) {
134 throw anna::RuntimeException("The message provided as 'DWR' is not a Device-Watchdog-Request", ANNA_FILE_LOCATION);
137 // La verificacion ya se hace implicitamente antes
138 // if ((a_cer.isEmpty()) || (a_dwr.isEmpty())) {
139 // LOGDEBUG (anna::Logger::debug ("Must define valid CER and DWR messages before use bind !", ANNA_FILE_LOCATION));
147 const Response* ClientSession::send(const Message* message) throw(anna::RuntimeException) {
148 LOGMETHOD(anna::TraceMethod traceMethod(a_className, "send", ANNA_FILE_LOCATION));
151 throw anna::RuntimeException("Cannot send a NULL message", ANNA_FILE_LOCATION);
155 diameter::CommandId cid = message->getCommandId(isRequest);
156 diameter::ApplicationId aid = message->getApplicationId();
159 std::string msg = "Sending diameter message: ";
160 msg += anna::diameter::functions::commandIdAsPairString(cid);
161 anna::Logger::debug(msg, ANNA_FILE_LOCATION);
165 if((cid.first != helpers::base::COMMANDID__Capabilities_Exchange_Request.first) /* not CER/CEA */
166 && (cid.first != helpers::base::COMMANDID__Device_Watchdog_Request.first) /* not DWR/DWA */
167 && (cid.first != helpers::base::COMMANDID__Disconnect_Peer_Request.first)) { /* not DPR/DPA */
169 std::string msg(asString());
170 msg += " | Client-session hidden for application messages delivery";
171 anna::Logger::debug(msg, ANNA_FILE_LOCATION);
178 if((a_state == State::Closed) && (cid != helpers::base::COMMANDID__Capabilities_Exchange_Request)) {
179 string msg(asString());
180 msg += " | ClientSession::bind is not initiated";
181 throw anna::RuntimeException(msg, ANNA_FILE_LOCATION);
184 if(a_state == State::WaitingBind) {
185 string msg(asString());
186 msg += " | Still waiting for bind ack (CEA)";
187 throw anna::RuntimeException(msg, ANNA_FILE_LOCATION);
190 if(a_state == State::Failover) {
191 string msg(asString());
192 msg += " | Disabled sent on failover state";
193 throw anna::RuntimeException(msg, ANNA_FILE_LOCATION);
196 if(a_state == State::Closing) {
197 string msg(asString());
198 msg += " | Disabled sent on closing state";
199 throw anna::RuntimeException(msg, ANNA_FILE_LOCATION);
203 if(cid == helpers::base::COMMANDID__Capabilities_Exchange_Request) {
204 if(a_state != State::Closed) {
205 string msg(asString());
206 msg += " | Discarding CER on not closed state";
207 throw anna::RuntimeException(msg, ANNA_FILE_LOCATION);
209 } else if(cid == helpers::base::COMMANDID__Device_Watchdog_Request) {
210 if(a_state == State::WaitingDPA) {
211 string msg(asString());
212 msg += " | DWR is not sent on 'WaitingDPA' state";
213 //throw anna::RuntimeException(msg, ANNA_FILE_LOCATION);
214 LOGDEBUG(anna::Logger::debug(msg, ANNA_FILE_LOCATION));
218 if(a_state == State::Disconnecting) {
219 string msg(asString());
220 msg += " | DWR is not sent on 'Disconnecting' state";
221 //throw anna::RuntimeException(msg, ANNA_FILE_LOCATION);
222 LOGDEBUG(anna::Logger::debug(msg, ANNA_FILE_LOCATION));
226 if(a_state == State::Closing) {
227 string msg(asString());
228 msg += " | DWR is not sent on 'Closing' state";
229 //throw anna::RuntimeException(msg, ANNA_FILE_LOCATION);
230 LOGDEBUG(anna::Logger::debug(msg, ANNA_FILE_LOCATION));
233 } else if(cid == helpers::base::COMMANDID__Disconnect_Peer_Request) {
234 if(a_state == State::WaitingDPA) {
235 string msg(asString());
236 msg += " | Still waiting for DPR ack (DPA)";
237 throw anna::RuntimeException(msg, ANNA_FILE_LOCATION);
240 if(a_state == State::Disconnecting) {
241 string msg(asString());
242 msg += " | Client disconnection has already been initiated";
243 throw anna::RuntimeException(msg, ANNA_FILE_LOCATION);
246 if((a_state == State::WaitingDPA) || (a_state == State::Disconnecting)) {
247 if(cid != helpers::base::COMMANDID__Disconnect_Peer_Answer) {
249 string msg("diameter::comm::ClientSession::send | ");
251 msg += " | Sents (request or answer) blocked to diameter server (disconnection in progress). Discarding ...";
252 anna::Logger::debug(msg, ANNA_FILE_LOCATION);
259 // Trace send operation:
261 string msg("diameter::comm::ClientSession::send | ");
264 msg += message->asString();
265 anna::Logger::debug(msg, ANNA_FILE_LOCATION);
267 bool fixed = false; // answers cannot be fixed
268 Message * message_nc = const_cast<Message*>(message);
271 if(/* entity */getParent()->getParent()->isDeprecated()) {
272 string msg(asString());
273 msg += " | Parent entity is deprecated. Request send blocked.";
274 throw anna::RuntimeException(msg, ANNA_FILE_LOCATION);
278 fixed = message_nc->fixRequestSequence(a_nextHopByHop, a_nextEndToEnd);
279 message_nc->updateRequestTimestampMs(); // statistics purposes (processing time for request type)
284 message->send(*this);
286 // Next hop by hop & end to end identifiers:
287 if(isRequest) generateNextSequences();
290 // The Diameter protocol requires that agents maintain transaction
291 // state, which is used for failover purposes. Transaction state
292 // implies that upon forwarding a request, the Hop-by-Hop identifier
293 // is saved; the field is replaced with a locally unique identifier,
294 // which is restored to its original value when the corresponding
295 // answer is received. The request's state is released upon receipt
296 // of the answer. A stateless agent is one that only maintains
297 // transaction state.
299 updateOutgoingActivityTime();
301 countSendings(cid, aid, true /* send ok */);
302 // Trace non-application messages:
304 if((cid == helpers::base::COMMANDID__Capabilities_Exchange_Request) ||
305 (cid == helpers::base::COMMANDID__Device_Watchdog_Request) ||
306 (cid == helpers::base::COMMANDID__Disconnect_Peer_Request)) {
307 anna::Logger::debug("Sent DataBlock to XML representation:", ANNA_FILE_LOCATION);
309 anna::diameter::codec::Message msg(a_engine->getBaseProtocolCodecEngine()); msg.decode(message->getBody()); /* decode to be traced */
311 catch(anna::RuntimeException &ex) {
312 std::string msg = ex.getText();
313 msg += " | Use diameter::comm::Engine::setBaseProtocolCodecEngine() to allow internal base protocol messages full tracing";
314 anna::Logger::debug(msg, ANNA_FILE_LOCATION);
319 // Restore sequences:
320 if(fixed) message_nc->restoreSequencesAfterFix(); // restore to application sequences after fix
321 } catch(anna::RuntimeException&) {
322 if(fixed) message_nc->restoreSequencesAfterFix(); // restore to application sequences after fix
325 countSendings(cid, aid, false /* send no ok */);
330 if(cid == helpers::base::COMMANDID__Capabilities_Exchange_Request) {
331 setState(State::WaitingBind);
332 } else if(cid == helpers::base::COMMANDID__Disconnect_Peer_Request) {
333 LOGWARNING(anna::Logger::warning("DPR has been sent to the peer (diameter server)", ANNA_FILE_LOCATION));
334 setState(State::WaitingDPA);
341 // Answers are not temporized:
342 if(!isRequest) return NULL;
345 if(cid == helpers::base::COMMANDID__Device_Watchdog_Request) {
346 setWatchdogState(WatchdogState::WaitingDWA);
350 // Request will have context responses:
351 Response* result(NULL);
352 result = Response::instance(message->getClassCode(), a_nextHopByHop - 1 /* current request sent to server */);
353 result->setRequest(message);
354 response_add(result);
358 bool ClientSession::unbind(bool forceDisconnect)
359 throw(anna::RuntimeException) {
360 LOGMETHOD(anna::TraceMethod traceMethod(a_className, "unbind", ANNA_FILE_LOCATION));
362 if(a_state == State::Closed)
366 anna::comm::ClientSocket * cs = const_cast<anna::comm::ClientSocket*>(a_server->getClientSocket());
368 // string msg("Server to be unbound | ");
369 // msg += a_server->asString();
370 // anna::Logger::debug(msg, ANNA_FILE_LOCATION);
373 if(forceDisconnect) {
374 LOGDEBUG(anna::Logger::debug("Immediate disconnection (forceDisconnect)", ANNA_FILE_LOCATION));
376 if(cs) cs->requestClose(); // this will invoke finalize()
381 if(a_state == State::Disconnecting) {
383 string msg("diameter::comm::ClientSession::unbind | ");
385 msg += " | Disconnection already in progress !";
386 anna::Logger::debug(msg, ANNA_FILE_LOCATION);
391 if(a_state == State::Failover) {
393 string msg("diameter::comm::ClientSession::unbind | ");
395 msg += " | Unbind on failover state. Disconnect now.";
396 anna::Logger::debug(msg, ANNA_FILE_LOCATION);
399 if(cs) cs->requestClose(); // this will invoke finalize()
404 if(a_state == State::WaitingBind) {
406 string msg("diameter::comm::ClientSession::unbind | ");
408 msg += " | Unbind on WaitingBind state. Disconnect now.";
409 anna::Logger::debug(msg, ANNA_FILE_LOCATION);
412 if(cs) cs->requestClose(); // this will invoke finalize()
417 if(a_onDisconnect == OnDisconnect::IgnorePendings) {
418 LOGDEBUG(anna::Logger::debug("Immediate disconnection (IgnorePendings)", ANNA_FILE_LOCATION));
420 if(cs) cs->requestClose(); // this will invoke finalize()
425 if(getOTARequests() == 0) { // No pendings
426 LOGDEBUG(anna::Logger::debug("No pending answers. Perform client-session close.", ANNA_FILE_LOCATION));
428 if(cs) cs->requestClose(); // this will invoke finalize()
433 if(a_state == State::Closing) {
435 string msg("diameter::comm::ClientSession::unbind | ");
437 msg += " | Closing already in progress (waiting pendings) !";
438 anna::Logger::debug(msg, ANNA_FILE_LOCATION);
445 void ClientSession::eventPeerShutdown() throw() {
446 // Inform father server:
447 a_parent->eventPeerShutdown(this);
450 void ClientSession::eventRequestRetransmission(Message *request) throw() {
453 OamModule &oamModule = OamModule::instantiate();
454 oamModule.count(OamModule::Counter::RequestRetransmitted);
455 oamModule.count(OamModule::Counter::RequestRetransmittedOnClientSession);
457 // Inform father server:
458 a_parent->eventRequestRetransmission(this, request);
461 void ClientSession::eventResponse(const Response& response) throw(anna::RuntimeException) {
462 // Inform father server:
463 a_parent->eventResponse(response);
466 void ClientSession::eventRequest(const anna::DataBlock &request) throw(anna::RuntimeException) {
467 // Inform father server:
468 a_parent->eventRequest(this, request);
471 void ClientSession::eventUnknownResponse(const anna::DataBlock& response) throw(anna::RuntimeException) {
472 // Inform father server:
473 a_parent->eventUnknownResponse(this, response);
476 void ClientSession::eventDPA(const anna::DataBlock& response) throw(anna::RuntimeException) {
477 // Inform father server:
478 a_parent->eventDPA(this, response);
483 //------------------------------------------------------------------------------------------
484 // Se invoca desde el diameter::comm::Receiver
485 //------------------------------------------------------------------------------------------
486 void ClientSession::receive(const anna::comm::Message& message)
487 throw(anna::RuntimeException) {
488 LOGMETHOD(anna::TraceMethod traceMethod(a_className, "receive", ANNA_FILE_LOCATION));
490 updateIncomingActivityTime();
493 const anna::DataBlock & db = message.getBody();
494 diameter::CommandId cid = codec::functions::getCommandId(db);
495 bool isRequest = cid.second;
497 std::string msg = "Received diameter message: ";
498 msg += anna::diameter::functions::commandIdAsPairString(cid);
499 anna::Logger::debug(msg, ANNA_FILE_LOCATION);
501 if( (cid == helpers::base::COMMANDID__Capabilities_Exchange_Answer) ||
502 (cid.first == helpers::base::COMMANDID__Device_Watchdog_Request.first)) {
504 anna::diameter::codec::Message dmsg(a_engine->getBaseProtocolCodecEngine()); dmsg.decode(db); /* decode to be traced */
506 catch(anna::RuntimeException &ex) {
507 std::string msg = ex.getText();
508 msg += " | Use diameter::comm::Engine::setBaseProtocolCodecEngine() to allow internal base protocol messages full tracing";
509 anna::Logger::debug(msg, ANNA_FILE_LOCATION);
515 OamModule &oamModule = OamModule::instantiate();
516 oamModule.count(isRequest ? OamModule::Counter::RequestReceived : OamModule::Counter::AnswerReceived);
517 oamModule.count(isRequest ? OamModule::Counter::RequestReceivedOnClientSession : OamModule::Counter::AnswerReceivedOnClientSession);
519 a_parent->updateReceivedMessageSizeStatisticConcept(message.getSize(), cid); // only on reception (application could manage sent sizes)
522 /////////////////////////////
523 // Here received a request //
524 /////////////////////////////
527 if(cid == helpers::base::COMMANDID__Capabilities_Exchange_Request) {
528 LOGWARNING(anna::Logger::warning("Received CER: unexpected message at client-side", ANNA_FILE_LOCATION));
532 else if(cid == helpers::base::COMMANDID__Device_Watchdog_Request) {
533 // LOGWARNING(anna::Logger::warning("Received DWR: unexpected message at client-side", ANNA_FILE_LOCATION));
535 // Non-usual but could happen:
536 oamModule.count(OamModule::Counter::DWRReceived);
537 sendDWAToServer(db /* DWR datablock received from server */);
541 else if(cid == helpers::base::COMMANDID__Disconnect_Peer_Request) {
542 oamModule.count(OamModule::Counter::DPRReceived);
544 if(a_state == State::Bound) {
546 setState(State::Disconnecting);
547 LOGWARNING(anna::Logger::warning("DPR has been received from peer (diameter server)", ANNA_FILE_LOCATION));
549 if(getOTARequests() == 0) sendDPA();
551 return; // DPR won't be informed because virtual readDPA is available for this
556 // application message counters
557 ApplicationMessageOamModule::instantiate().count(cid.first, anna::diameter::codec::functions::getApplicationId(db), ApplicationMessageOamModule::Counter::Request_Received_AsClient);
560 } catch(anna::RuntimeException& ex) {
567 /////////////////////////////
568 // Here received an answer //
569 /////////////////////////////
570 bool doUnbind = false;
571 bool immediateUnbind = false;
575 resultCode = helpers::base::functions::getResultCode(db);
576 } catch(anna::RuntimeException& ex) {
581 if(cid == helpers::base::COMMANDID__Capabilities_Exchange_Answer) {
582 oamModule.count(OamModule::Counter::CEAReceived);
584 if(a_state != State::WaitingBind) {
585 LOGWARNING(anna::Logger::warning("Received CEA: unexpected message at not-WaitingBind state", ANNA_FILE_LOCATION));
586 return; // we don't send its request
587 // string msg("diameter::comm::ClientSession::receive | ");
588 // msg += asString();
589 // msg += " | Received CEA on not-WaitingBind state: unexpected Bind-response";
590 // throw anna::RuntimeException(msg, ANNA_FILE_LOCATION);
593 if(resultCode != helpers::base::AVPVALUES__Result_Code::DIAMETER_SUCCESS) {
595 std::string msg = anna::functions::asString("Received CEA with non-success Result-Code (%d). Unbinding connection.", resultCode);
596 anna::Logger::warning(msg, ANNA_FILE_LOCATION);
600 setState(State::Bound);
601 //activateTimer(); // Ya se invoca al inicio de este metodo ::receive
602 // Inform father server (availability changes):
603 bool changes = a_parent->refreshAvailability();
608 else if(cid == helpers::base::COMMANDID__Device_Watchdog_Answer) {
609 oamModule.count(OamModule::Counter::DWAReceived);
610 setWatchdogState(WatchdogState::WaitingTimerExpiration);
612 if(resultCode != helpers::base::AVPVALUES__Result_Code::DIAMETER_SUCCESS)
614 std::string msg = anna::functions::asString("Received DWA with non-success Result-Code (%d)... but ASSUME keep-alive is reached", resultCode);
615 anna::Logger::warning(msg, ANNA_FILE_LOCATION);
618 if(a_state == State::Failover) {
619 setState(State::Bound);
621 string msg("diameter::comm::ClientSession::receive | ");
623 msg += " | Received DWA on failover state: recovering Bound state";
624 anna::Logger::debug(msg, ANNA_FILE_LOCATION);
628 // Keep-Alive don't manage context
632 else if(cid == helpers::base::COMMANDID__Disconnect_Peer_Answer) {
633 oamModule.count(OamModule::Counter::DPAReceived);
635 if(a_state == State::WaitingDPA) {
636 if(resultCode != helpers::base::AVPVALUES__Result_Code::DIAMETER_SUCCESS) {
638 std::string msg = anna::functions::asString("Received DPA with non-success Result-Code (%d). Ignoring and recovering Bound state", resultCode);
639 anna::Logger::warning(msg, ANNA_FILE_LOCATION);
641 setState(State::Bound);
643 LOGWARNING(anna::Logger::warning("Received DPA With Result-Code = DIAMETER_SUCCESS. Disconnect now.", ANNA_FILE_LOCATION));
644 immediateUnbind = true;
650 HopByHop hopByHop = codec::functions::getHopByHop(db); // context identification
651 Response* response = response_find(hopByHop);
653 // Out-of-context responses:
656 oamModule.count(OamModule::Counter::AnswerReceivedUnknown);
657 oamModule.count(OamModule::Counter::AnswerReceivedOnClientSessionUnknown);
658 oamModule.activateAlarm(OamModule::Alarm::AnswerReceivedOnClientSessionUnknown);
660 // application message counters
661 ApplicationMessageOamModule::instantiate().count(cid.first, anna::diameter::codec::functions::getApplicationId(db), ApplicationMessageOamModule::Counter::Answer_UnknownReceived_AsClient);
663 eventUnknownResponse(db);
664 string msg(asString());
665 msg += anna::functions::asString(" | Response received from entity, for non registered context (HopByHop: %u)", hopByHop);
666 throw anna::RuntimeException(msg, ANNA_FILE_LOCATION);
669 response->setResultCode(Response::ResultCode::Success);
670 response->cancelTimer();
672 string msg("diameter::comm::ClientSession::receive | ");
674 msg += " | Received answer";
675 msg += response->asString();
676 anna::Logger::debug(msg, ANNA_FILE_LOCATION);
679 anna::Millisecond current = (anna::Millisecond)anna::functions::millisecond();
680 anna::Millisecond request = response->getRequest()->getRequestTimestampMs();
681 anna::Millisecond timeToAnswerMs = current - request;
682 a_parent->updateProcessingTimeStatisticConcept(timeToAnswerMs, cid);
685 // std::string msg = "This diameter request context lasted ";
686 // msg += anna::functions::asString(timeToAnswerMs);
687 // msg += " milliseconds at diameter server (included network time)";
688 // anna::Logger::debug(msg, ANNA_FILE_LOCATION);
690 // Progress origin for tracking purposes on asyncronous boxes with both diameter interfaces (entities and clients)
691 Message * requestMessage = const_cast<Message*>(response->getRequest());
692 requestMessage->setRequestServerSessionKey(response->getRequest()->getRequestServerSessionKey()); // -1 means unkown/unset
694 if(cid != helpers::base::COMMANDID__Disconnect_Peer_Answer) {
696 response->setMessage(&db);
697 // Restore received datablock
699 string msg("diameter::comm::ClientSession::receive | Restore answer to original request sequences (hop-by-hop = ");
700 msg += anna::functions::asString(response->getRequest()->getRequestHopByHop());
701 msg += ", end-to-end = ";
702 msg += anna::functions::asString(response->getRequest()->getRequestEndToEnd());
704 anna::Logger::debug(msg, ANNA_FILE_LOCATION);
706 diameter::codec::functions::setHopByHop((anna::DataBlock&)db, response->getRequest()->getRequestHopByHop());
707 diameter::codec::functions::setEndToEnd((anna::DataBlock&)db, response->getRequest()->getRequestEndToEnd());
709 // application message counters
710 if(cid != helpers::base::COMMANDID__Capabilities_Exchange_Answer)
711 ApplicationMessageOamModule::instantiate().count(cid.first, anna::diameter::codec::functions::getApplicationId(db), ApplicationMessageOamModule::Counter::Answer_Received_AsClient);
713 eventResponse(*response);
714 } catch(anna::RuntimeException& ex) {
719 // unbind is automatically performed, anyway we can inform to the application just in case some additional
720 // procedure could be issued:
724 response_erase(response);
728 unbind(immediateUnbind);
731 void ClientSession::finalize() throw() {
732 LOGMETHOD(anna::TraceMethod traceMethod(a_className, "finalize", ANNA_FILE_LOCATION));
734 // Check deprecated entity:
735 const Entity *entity = getParent() /* server */ ->getParent() /* entity */;
736 // Inform father server (availability changes):
737 bool changes = a_parent->refreshAvailability();
739 const Server *server = getParent();
740 bool multipleConnections = (server->getMaxClientSessions() > 1);
741 std::string socket = anna::functions::socketLiteralAsString(getAddress(), getPort());
742 OamModule &oamModule = OamModule::instantiate();
744 if(multipleConnections) {
745 oamModule.activateAlarm(OamModule::Alarm::c_LostAvailabilityOverClientSessionWithServer__s__ClientSessionId__d__, socket.c_str(), getSocketId());
746 oamModule.count(OamModule::Counter::LostAvailabilityOverClientSession);
748 oamModule.activateAlarm(OamModule::Alarm::c_LostAvailabilityOverClientSessionWithServer__s__, socket.c_str());
749 oamModule.count(OamModule::Counter::LostAvailabilityOverClientSession);
753 void ClientSession::recover() throw() {
754 LOGMETHOD(anna::TraceMethod traceMethod(a_className, "recover", ANNA_FILE_LOCATION));
758 } catch(anna::RuntimeException &ex) {
760 anna::comm::ClientSocket * cs = const_cast<anna::comm::ClientSocket*>(a_server->getClientSocket());
762 if(cs) cs->requestClose();
767 // Inform father server (availability changes):
768 bool changes = a_parent->refreshAvailability();
770 const Server *server = getParent();
771 bool multipleConnections = (server->getMaxClientSessions() > 1);
772 std::string socket = anna::functions::socketLiteralAsString(getAddress(), getPort());
773 OamModule &oamModule = OamModule::instantiate();
775 if(multipleConnections) {
776 oamModule.cancelAlarm(OamModule::Alarm::c_LostAvailabilityOverClientSessionWithServer__s__ClientSessionId__d__, socket.c_str(), getSocketId());
777 oamModule.count(OamModule::Counter::RecoveredAvailabilityOverClientSession);
779 oamModule.cancelAlarm(OamModule::Alarm::c_LostAvailabilityOverClientSessionWithServer__s__, socket.c_str());
780 oamModule.count(OamModule::Counter::RecoveredAvailabilityOverClientSession);
784 void ClientSession::sendDWAToServer(const anna::DataBlock& dwrDB)
785 throw(anna::RuntimeException) {
786 LOGMETHOD(anna::TraceMethod traceMethod(a_className, "sendDWAToServer", ANNA_FILE_LOCATION));
787 anna::DataBlock dwa(true);
788 a_engine->readDWA(dwa, dwrDB); // Asume that DWA is valid ...
791 throw anna::RuntimeException("This diameter agent defines an empty DWA message. Remote server never will validate this connection health", ANNA_FILE_LOCATION);
798 //-------------------------------------------------------------------------
799 // Se invoca desde diameter::comm::Timer
800 //-------------------------------------------------------------------------
801 void ClientSession::expireResponse(diameter::comm::Response* response)
803 LOGMETHOD(anna::TraceMethod traceMethod(a_className, "expireResponse", ANNA_FILE_LOCATION));
804 Session::expireResponse(response);
806 OamModule &oamModule = OamModule::instantiate();
807 oamModule.count(OamModule::Counter::RequestSentExpired);
808 oamModule.count(OamModule::Counter::RequestSentOnClientSessionExpired);
809 oamModule.activateAlarm(OamModule::Alarm::RequestSentOnClientSessionExpired);
811 // Check father server idleness:
812 if(idle()) a_parent->childIdle();
815 // LOGDEBUG(anna::Logger::debug("ClientSession is idle after an expiration...", ANNA_FILE_LOCATION));
816 // a_parent->childIdle();
819 // LOGDEBUG(anna::Logger::debug("ClientSession is busy after an expiration...", ANNA_FILE_LOCATION));
824 std::string ClientSession::asString() const
826 string result = Session::asString();
827 result += " | Parent Server: ";
828 result += anna::functions::socketLiteralAsString(getAddress(), getPort());
829 result += " | Auto-recovery: ";
830 result += (a_autoRecovery ? "yes" : "no");
831 result += " | WatchdogState: ";
832 result += asText(a_watchdogState);
833 // Diferente del timeout de ApplicationMessage:
834 result += " | Watchdog Period: ";
835 result += getTimeout().asString();
836 result += " | Hidden: ";
837 result += (hidden() ? "yes" : "no");
840 result += " | MaxConnectionDelay: ";
841 result += a_server->getMaxConnectionDelay().asString();
844 return result += " }";
847 anna::xml::Node* ClientSession::asXML(anna::xml::Node* parent) const
849 anna::xml::Node* result = Session::asXML(parent);
850 parent->createChild("diameter.comm.ClientSession");
851 result->createAttribute("ParentServer", anna::functions::socketLiteralAsString(getAddress(), getPort()));
852 result->createAttribute("AutoRecovery", (a_autoRecovery ? "yes" : "no"));
853 result->createAttribute("WatchdogState", asText(a_watchdogState));
854 // Diferente del timeout de ApplicationMessage:
855 result->createAttribute("WatchdogPeriod", getTimeout().asString());
857 if(a_server) result->createAttribute("MaxConnectionDelay", a_server->getMaxConnectionDelay().asString());
859 result->createAttribute("Hidden", hidden() ? "yes" : "no");
864 const char* ClientSession::asText(const WatchdogState::_v watchdogState)
866 static const char* text [] = { "TimerStopped", "WaitingTimerExpiration", "WaitingDWA" };
867 return text [watchdogState];
871 //------------------------------------------------------------------------------
872 //------------------------------------------------------ ClientSession::expire()
873 //------------------------------------------------------------------------------
874 void ClientSession::expire(anna::timex::Engine *timeController) throw(anna::RuntimeException) {
875 LOGMETHOD(anna::TraceMethod traceMethod(a_className, "expire (watchdog timer)", ANNA_FILE_LOCATION));
877 // The client MUST NOT close the primary connection until the
878 // primary's watchdog timer has expired at least twice without a
879 // response (note that the watchdog is not sent a second time,
881 if(a_watchdogState == WatchdogState::WaitingDWA) {
882 if(a_state == State::Failover) {
883 LOGWARNING(anna::Logger::warning("Unbinding client-session: Tw expired after first DWA missing (2*Tw elapsed)", ANNA_FILE_LOCATION));
885 return; // finalize will stop the stopped timer ...
888 setState(State::Failover);
889 LOGWARNING(anna::Logger::warning("Going to Failover state: first DWA missing", ANNA_FILE_LOCATION));
890 activateTimer(); // another chance on failover
894 // WaitingTimerExpiration arrives here:
895 const Response* sent;
899 } catch(anna::RuntimeException&) {
900 LOGDEBUG(anna::Logger::debug("Failed to send DWR to the server: unbinding ...", ANNA_FILE_LOCATION));
901 setState(State::Failover);
906 LOGDEBUG(if(sent) anna::Logger::debug("DWR sent to the server", ANNA_FILE_LOCATION););
911 void ClientSession::setWatchdogPeriod(const anna::Millisecond & watchdogPeriod) throw() {
912 setTimeout(watchdogPeriod);
915 void ClientSession::setWatchdogState(WatchdogState::_v wState) throw() {
918 if(wState != a_watchdogState) {
919 std::string msg("Session watchdog state change: ");
920 msg += asText(a_watchdogState);
922 msg += asText(wState);
923 anna::Logger::debug(msg, ANNA_FILE_LOCATION);
926 a_watchdogState = wState;
930 void ClientSession::timerStopped() throw() {
931 LOGDEBUG(anna::Logger::debug("Watchdog timer stopped", ANNA_FILE_LOCATION));
932 setWatchdogState(WatchdogState::TimerStopped);
935 void ClientSession::timerStarted() throw() {
936 LOGDEBUG(anna::Logger::debug("Watchdog timer started", ANNA_FILE_LOCATION));
938 if(a_watchdogState == WatchdogState::WaitingDWA) return;
940 setWatchdogState(WatchdogState::WaitingTimerExpiration);
944 //------------------------------------------------------------------------------
945 //---------------------------------- ClientSession::updateIncomingActivityTime()
946 //------------------------------------------------------------------------------
947 void ClientSession::updateIncomingActivityTime() throw() {
948 Session::updateIncomingActivityTime();
949 a_parent->updateIncomingActivityTime();
953 //------------------------------------------------------------------------------
954 //---------------------------------- ClientSession::updateOutgoingActivityTime()
955 //------------------------------------------------------------------------------
956 void ClientSession::updateOutgoingActivityTime(void) throw() {
957 Session::updateOutgoingActivityTime();
958 a_parent->updateOutgoingActivityTime();
963 //------------------------------------------------------------------------------
964 //----------------------------------------------- ClientSession::countSendings()
965 //------------------------------------------------------------------------------
966 void ClientSession::countSendings(const diameter::CommandId & cid, unsigned int aid, bool ok)throw() {
967 OamModule &oamModule = OamModule::instantiate();
968 ApplicationMessageOamModule &appMsgOamModule = ApplicationMessageOamModule::instantiate();
970 bool isRequest = cid.second;
974 oamModule.count(isRequest ? OamModule::Counter::RequestSentOK : OamModule::Counter::AnswerSentOK);
975 oamModule.count(isRequest ? OamModule::Counter::RequestSentOnClientSessionOK : OamModule::Counter::AnswerSentOnClientSessionOK);
977 if(cid == helpers::base::COMMANDID__Capabilities_Exchange_Request) oamModule.count(OamModule::Counter::CERSentOK);
978 else if(cid == helpers::base::COMMANDID__Device_Watchdog_Request) oamModule.count(OamModule::Counter::DWRSentOK);
979 else if(cid == helpers::base::COMMANDID__Device_Watchdog_Answer) oamModule.count(OamModule::Counter::DWASentOK); // not usual (dwr was received from server)
980 else if(cid == helpers::base::COMMANDID__Disconnect_Peer_Request) oamModule.count(OamModule::Counter::DPRSentOK);
981 else if(cid == helpers::base::COMMANDID__Disconnect_Peer_Answer) oamModule.count(OamModule::Counter::DPASentOK);
982 // Application messages:
984 appMsgOamModule.count(cid.first, aid, isRequest ? ApplicationMessageOamModule::Counter::Request_SentOK_AsClient : ApplicationMessageOamModule::Counter::Answer_SentOK_AsClient);
988 oamModule.count(isRequest ? OamModule::Counter::RequestSentNOK : OamModule::Counter::AnswerSentNOK);
989 oamModule.count(isRequest ? OamModule::Counter::RequestSentOnClientSessionNOK : OamModule::Counter::AnswerSentOnClientSessionNOK);
991 if(cid == helpers::base::COMMANDID__Capabilities_Exchange_Request) oamModule.count(OamModule::Counter::CERSentNOK);
992 else if(cid == helpers::base::COMMANDID__Device_Watchdog_Request) oamModule.count(OamModule::Counter::DWRSentNOK);
993 else if(cid == helpers::base::COMMANDID__Device_Watchdog_Answer) oamModule.count(OamModule::Counter::DWASentNOK); // not usual (dwr was received from server)
994 else if(cid == helpers::base::COMMANDID__Disconnect_Peer_Request) oamModule.count(OamModule::Counter::DPRSentNOK);
995 else if(cid == helpers::base::COMMANDID__Disconnect_Peer_Answer) oamModule.count(OamModule::Counter::DPASentNOK);
996 // Application messages:
998 appMsgOamModule.count(cid.first, aid, isRequest ? ApplicationMessageOamModule::Counter::Request_SentNOK_AsClient : ApplicationMessageOamModule::Counter::Answer_SentNOK_AsClient);