source: source/ariba/overlay/BaseOverlay.cpp@ 12760

Last change on this file since 12760 was 12760, checked in by hock@…, 10 years ago

some small fixes along the way..

File size: 79.9 KB
Line 
1// [License]
2// The Ariba-Underlay Copyright
3//
4// Copyright (c) 2008-2009, Institute of Telematics, UniversitÀt Karlsruhe (TH)
5//
6// Institute of Telematics
7// UniversitÀt Karlsruhe (TH)
8// Zirkel 2, 76128 Karlsruhe
9// Germany
10//
11// Redistribution and use in source and binary forms, with or without
12// modification, are permitted provided that the following conditions are
13// met:
14//
15// 1. Redistributions of source code must retain the above copyright
16// notice, this list of conditions and the following disclaimer.
17// 2. Redistributions in binary form must reproduce the above copyright
18// notice, this list of conditions and the following disclaimer in the
19// documentation and/or other materials provided with the distribution.
20//
21// THIS SOFTWARE IS PROVIDED BY THE INSTITUTE OF TELEMATICS ``AS IS'' AND
22// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
24// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE ARIBA PROJECT OR
25// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
26// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
27// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
28// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
29// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
30// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
31// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32//
33// The views and conclusions contained in the software and documentation
34// are those of the authors and should not be interpreted as representing
35// official policies, either expressed or implied, of the Institute of
36// Telematics.
37// [License]
38
39#include "BaseOverlay.h"
40
41#include <sstream>
42#include <iostream>
43#include <string>
44#include <boost/foreach.hpp>
45
46#include "ariba/NodeListener.h"
47#include "ariba/CommunicationListener.h"
48#include "ariba/SideportListener.h"
49
50#include "ariba/overlay/LinkDescriptor.h"
51
52#include "ariba/overlay/messages/OverlayMsg.h"
53#include "ariba/overlay/messages/JoinRequest.h"
54#include "ariba/overlay/messages/JoinReply.h"
55
56#include "ariba/utility/visual/OvlVis.h"
57#include "ariba/utility/visual/DddVis.h"
58#include "ariba/utility/visual/ServerVis.h"
59#include <ariba/utility/misc/sha1.h>
60
61namespace ariba {
62namespace overlay {
63
64using namespace std;
65using ariba::transport::system_priority;
66
67#define visualInstance ariba::utility::DddVis::instance()
68#define visualIdOverlay ariba::utility::ServerVis::NETWORK_ID_BASE_OVERLAY
69#define visualIdBase ariba::utility::ServerVis::NETWORK_ID_BASE_COMMUNICATION
70
71
72// time constants (in seconds)
73#define KEEP_ALIVE_TIME 60 // send keep-alive message after link is not used for #s
74
75#define LINK_ESTABLISH_TIME_OUT 10 // timeout: link requested but not up
76#define KEEP_ALIVE_TIME_OUT KEEP_ALIVE_TIME + LINK_ESTABLISH_TIME_OUT // timeout: no data received on this link (incl. keep-alive messages)
77#define AUTO_LINK_TIME_OUT KEEP_ALIVE_TIME_OUT // timeout: auto link not used for #s
78
79
80// ----------------------------------------------------------------------------
81
82/* *****************************************************************************
83 * PREREQUESITES
84 * ****************************************************************************/
85
86CommunicationListener* BaseOverlay::getListener( const ServiceID& service ) {
87 if( !communicationListeners.contains( service ) ) {
88 logging_info( "No listener found for service " << service.toString() );
89 return NULL;
90 }
91 CommunicationListener* listener = communicationListeners.get( service );
92 assert( listener != NULL );
93 return listener;
94}
95
96// link descriptor handling ----------------------------------------------------
97
98LinkDescriptor* BaseOverlay::getDescriptor( const LinkID& link, bool communication ) {
99 foreach( LinkDescriptor* lp, links )
100 if ((communication ? lp->communicationId : lp->overlayId) == link)
101 return lp;
102 return NULL;
103}
104
105const LinkDescriptor* BaseOverlay::getDescriptor( const LinkID& link, bool communication ) const {
106 foreach( const LinkDescriptor* lp, links )
107 if ((communication ? lp->communicationId : lp->overlayId) == link)
108 return lp;
109 return NULL;
110}
111
112/// erases a link descriptor
113void BaseOverlay::eraseDescriptor( const LinkID& link, bool communication ) {
114 for ( vector<LinkDescriptor*>::iterator i = links.begin(); i!= links.end(); i++) {
115 LinkDescriptor* ld = *i;
116 if ((communication ? ld->communicationId : ld->overlayId) == link) {
117 delete ld;
118 links.erase(i);
119 break;
120 }
121 }
122}
123
124/// adds a link descriptor
125LinkDescriptor* BaseOverlay::addDescriptor( const LinkID& link ) {
126 LinkDescriptor* desc = getDescriptor( link );
127 if ( desc == NULL ) {
128 desc = new LinkDescriptor();
129 if (!link.isUnspecified()) desc->overlayId = link;
130 links.push_back(desc);
131 }
132 return desc;
133}
134
135/// returns a auto-link descriptor
136LinkDescriptor* BaseOverlay::getAutoDescriptor( const NodeID& node, const ServiceID& service )
137{
138 // search for a descriptor that is already up
139 foreach( LinkDescriptor* lp, links )
140 {
141 if (lp->autolink && lp->remoteNode == node && lp->service == service && isLinkVital(lp) )
142 return lp;
143 }
144
145 // if not found, search for one that is about to come up...
146 foreach( LinkDescriptor* lp, links )
147 {
148 time_t now = time(NULL);
149
150 if (lp->autolink && lp->remoteNode == node && lp->service == service
151 && difftime( now, lp->keepAliveReceived ) <= LINK_ESTABLISH_TIME_OUT )
152 return lp;
153 }
154
155 return NULL;
156}
157
158/// stabilizes link information
159void BaseOverlay::stabilizeLinks() {
160 time_t now = time(NULL);
161
162 // send keep-alive messages over established links
163 foreach( LinkDescriptor* ld, links )
164 {
165 if (!ld->up) continue;
166
167 if ( difftime( now, ld->keepAliveSent ) >= KEEP_ALIVE_TIME )
168 {
169 logging_debug("[BaseOverlay] Sending KeepAlive over "
170 << ld->to_string()
171 << " after "
172 << difftime( now, ld->keepAliveSent )
173 << "s");
174
175 OverlayMsg msg( OverlayMsg::typeKeepAlive,
176 OverlayInterface::OVERLAY_SERVICE_ID, nodeId, ld->remoteNode );
177 msg.setRouteRecord(true);
178 ld->keepAliveSent = now;
179 send_link( &msg, ld->overlayId, system_priority::OVERLAY );
180 }
181 }
182
183 // iterate over all links and check for time boundaries
184 vector<LinkDescriptor*> oldlinks;
185 foreach( LinkDescriptor* ld, links ) {
186
187 // link connection request stale?
188 if ( !ld->up && difftime( now, ld->keepAliveReceived ) >= LINK_ESTABLISH_TIME_OUT ) // NOTE: keepAliveReceived == now, on connection request
189 {
190 logging_info( "Link connection request is stale, closing: " << ld );
191 ld->failed = true;
192 oldlinks.push_back( ld );
193 continue;
194 }
195
196 if (!ld->up) continue;
197
198
199
200
201 // check if link is relayed and retry connecting directly
202 // TODO Mario: What happens here? --> There are 3 attempts to replace a relayed link with a direct one. see: handleLinkReply
203 if ( ld->relayed && !ld->communicationUp && ld->retryCounter > 0) {
204 ld->retryCounter--;
205 ld->communicationId = bc->establishLink( ld->endpoint );
206 }
207
208 // remote used as relay flag
209 if ( ld->relaying && difftime( now, ld->timeRelaying ) > KEEP_ALIVE_TIME_OUT) // TODO is this a reasonable timeout ??
210 ld->relaying = false;
211
212 // drop links that are dropped and not used as relay
213 if (ld->dropAfterRelaying && !ld->relaying && !ld->autolink) {
214 oldlinks.push_back( ld );
215 continue;
216 }
217
218 // auto-link time exceeded?
219 if ( ld->autolink && difftime( now, ld->lastuse ) > AUTO_LINK_TIME_OUT ) {
220 oldlinks.push_back( ld );
221 continue;
222 }
223
224 // keep alives missed? yes->
225 if ( difftime( now, ld->keepAliveReceived ) >= KEEP_ALIVE_TIME_OUT )
226 {
227 logging_info( "Link is stale, closing: " << ld );
228 ld->failed = true;
229 oldlinks.push_back( ld );
230 continue;
231 }
232 }
233
234 // drop links
235 foreach( LinkDescriptor* ld, oldlinks ) {
236 logging_info( "Link timed out. Dropping " << ld );
237 ld->relaying = false;
238 dropLink( ld->overlayId );
239 }
240
241
242
243
244 // show link state (debug output)
245 if (counter>=10 || counter<0)
246 {
247 showLinks();
248 counter = 0;
249 }
250 else
251 {
252 counter++;
253 }
254}
255
256
257std::string BaseOverlay::getLinkHTMLInfo() {
258 std::ostringstream s;
259 vector<NodeID> nodes;
260 if (links.size()==0) {
261 s << "<h2 style=\"color=#606060\">No links established!</h2>";
262 } else {
263 s << "<h2 style=\"color=#606060\">Links</h2>";
264 s << "<table width=\"100%\" cellpadding=\"0\" border=\"0\" cellspacing=\"0\">";
265 s << "<tr style=\"background-color=#ffe0e0\">";
266 s << "<td><b>Link ID</b></td><td><b>Remote ID</b></td><td><b>Relay path</b></td>";
267 s << "</tr>";
268
269 int i=0;
270 foreach( LinkDescriptor* ld, links ) {
271 if (!isLinkVital(ld) || ld->service != OverlayInterface::OVERLAY_SERVICE_ID) continue;
272 bool found = false;
273 foreach(NodeID& id, nodes)
274 if (id == ld->remoteNode) found = true;
275 if (found) continue;
276 i++;
277 nodes.push_back(ld->remoteNode);
278 if ((i%1) == 1) s << "<tr style=\"background-color=#f0f0f0;\">";
279 else s << "<tr>";
280 s << "<td>" << ld->overlayId.toString().substr(0,4) << "..</td>";
281 s << "<td>" << ld->remoteNode.toString().substr(0,4) << "..</td>";
282 s << "<td>";
283 if (ld->routeRecord.size()>1 && ld->relayed) {
284 for (size_t i=1; i<ld->routeRecord.size(); i++)
285 s << ld->routeRecord[ld->routeRecord.size()-i-1].toString().substr(0,4) << ".. ";
286 } else {
287 s << "Direct";
288 }
289 s << "</td>";
290 s << "</tr>";
291 }
292 s << "</table>";
293 }
294 return s.str();
295}
296
297/// shows the current link state
298void BaseOverlay::showLinks() {
299 int i=0;
300 logging_info("--- link state -------------------------------");
301 foreach( LinkDescriptor* ld, links ) {
302 string epd = "";
303 if (isLinkDirectVital(ld))
304 {
305// epd = getEndpointDescriptor(ld->remoteNode).toString();
306
307 epd = "Connection: ";
308 epd += bc->get_local_endpoint_of_link(ld->communicationId)->to_string();
309 epd += " <---> ";
310 epd += bc->get_remote_endpoint_of_link(ld->communicationId)->to_string();
311 }
312
313 logging_info("LINK_STATE: " << i << ": " << ld << " " << epd);
314 i++;
315 }
316 logging_info("----------------------------------------------");
317}
318
319/// compares two arbitrary links to the same node
320int BaseOverlay::compare( const LinkID& lhs, const LinkID& rhs ) {
321 LinkDescriptor* lhsld = getDescriptor(lhs);
322 LinkDescriptor* rhsld = getDescriptor(rhs);
323 if (lhsld==NULL || rhsld==NULL
324 || !lhsld->up || !rhsld->up
325 || lhsld->remoteNode != rhsld->remoteNode) return -1;
326
327 if ((lhsld->remoteLink^lhsld->overlayId)<(rhsld->remoteLink^lhsld->overlayId) )
328 return -1;
329
330 return 1;
331}
332
333
334// internal message delivery ---------------------------------------------------
335
336
337seqnum_t BaseOverlay::send_overlaymessage_down( OverlayMsg* message, const LinkID& bc_link, uint8_t priority )
338{
339 // set priority
340 message->setPriority(priority);
341
342 // wrap old OverlayMsg into reboost message
343 reboost::message_t wrapped_message = message->wrap_up_for_sending();
344
345 // send down to BaseCommunication
346 try
347 {
348 // * send *
349 return bc->sendMessage(bc_link, wrapped_message, priority, false);
350 }
351 catch ( communication::communication_message_not_sent& e )
352 {
353 ostringstream out;
354 out << "Communication message not sent: " << e.what();
355 throw message_not_sent(out.str());
356 }
357
358 throw logic_error("This should never happen!");
359}
360
361
362/// routes a message to its destination node
363void BaseOverlay::route( OverlayMsg* message, const NodeID& last_hop )
364{
365 // exceeded time-to-live? yes-> drop message
366 if (message->getNumHops() > message->getTimeToLive())
367 {
368 logging_warn("Message exceeded TTL. Dropping message and relay routes "
369 << "for recovery. Hop count: " << (int) message->getNumHops());
370 removeRelayNode(message->getDestinationNode());
371 return;
372 }
373
374 // no-> forward message
375 else
376 {
377 // destinastion myself? yes-> handle message
378 if (message->getDestinationNode() == nodeId)
379 {
380 logging_warn("Usually I should not route messages to myself. And I won't!");
381 }
382
383 // no->send message to next hop
384 else
385 {
386 try
387 {
388 /* (deep) packet inspection to determine priority */
389 // BRANCH: typeData --> send with low priority
390 if ( message->getType() == OverlayMsg::typeData )
391 {
392 // TODO think about implementing explicit routing queue (with active queue management??)
393 send( message,
394 message->getDestinationNode(),
395 message->getPriority(),
396 last_hop );
397 }
398 // BRANCH: internal message --> send with higher priority
399 else
400 {
401 send( message,
402 message->getDestinationNode(),
403 system_priority::HIGH,
404 last_hop );
405 }
406 }
407 catch ( message_not_sent& e )
408 {
409 logging_warn("Unable to route message of type "
410 << message->getType()
411 << " to "
412 << message->getDestinationNode()
413 << ". Reason: "
414 << e.what());
415
416 // inform sender
417 if ( message->getType() != OverlayMsg::typeMessageLost )
418 {
419 report_lost_message(message);
420 }
421 }
422 }
423 }
424}
425
426void BaseOverlay::report_lost_message( const OverlayMsg* message )
427{
428 OverlayMsg reply(OverlayMsg::typeMessageLost);
429 reply.setSeqNum(message->getSeqNum());
430
431 /**
432 * MessageLost-Message
433 *
434 * - Type of lost message
435 * - Hop count of lost message
436 * - Source-LinkID of lost message
437 */
438 reboost::shared_buffer_t b(sizeof(uint8_t)*2);
439 b.mutable_data()[0] = message->getType();
440 b.mutable_data()[1] = message->getNumHops();
441 reply.append_buffer(b);
442 reply.append_buffer(message->getSourceLink().serialize());
443
444 try
445 {
446 send_node(&reply, message->getSourceNode(),
447 system_priority::OVERLAY,
448 OverlayInterface::OVERLAY_SERVICE_ID);
449 }
450 catch ( message_not_sent& e )
451 {
452 logging_warn("Tried to inform another node that we could'n route their message. But we were not able to send this error-message, too.");
453 }
454}
455
456/// sends a message to another node, delivers it to the base overlay class
457seqnum_t BaseOverlay::send( OverlayMsg* message,
458 const NodeID& destination,
459 uint8_t priority,
460 const NodeID& last_hop ) throw(message_not_sent)
461{
462 LinkDescriptor* next_link = NULL;
463
464 // drop messages to unspecified destinations
465 if (destination.isUnspecified())
466 throw message_not_sent("No destination specified. Drop!");
467
468 // send messages to myself -> drop!
469 // TODO maybe this is not what we want. why not just deliver this message?
470 // There is a similar check in the route function, there it should be okay.
471 if (destination == nodeId)
472 {
473 logging_warn("Sent message to myself. Drop!");
474
475 throw message_not_sent("Sent message to myself. Drop!");
476 }
477
478 // use relay path?
479 if (message->isRelayed())
480 {
481 next_link = getRelayLinkTo( destination );
482
483 if (next_link != NULL)
484 {
485 next_link->setRelaying();
486
487 // * send message over relayed link *
488 return send_overlaymessage_down(message, next_link->communicationId, priority);
489 }
490 else
491 {
492 logging_warn("No relay hop found to " << destination
493 << " -- trying to route over overlay paths ...")
494 }
495 }
496
497
498 // last resort -> route over overlay path
499 LinkID next_id = overlayInterface->getNextLinkId( destination );
500 if ( next_id.isUnspecified() )
501 {
502 // apperently we're the closest node --> try second best node
503 // NOTE: This is helpful if our routing table is not up-to-date, but
504 // may lead to circles. So we have to be careful.
505 std::vector<const LinkID*> next_ids =
506 overlayInterface->getSortedLinkIdsTowardsNode( destination );
507
508 for ( size_t i = 0; i < next_ids.size(); i++ )
509 {
510 const LinkID& link = *next_ids[i];
511
512 if ( ! link.isUnspecified() )
513 {
514 next_id = link;
515
516 break;
517 }
518 }
519
520 // still no next hop found. drop.
521 if ( next_id.isUnspecified() )
522 {
523 logging_warn("Could not send message. No next hop found to " <<
524 destination );
525 logging_error("ERROR: " << debugInformation() );
526
527 throw message_not_sent("No next hop found.");
528 }
529 }
530
531
532 /* get link descriptor, do some checks and send message */
533 next_link = getDescriptor(next_id);
534
535 // check pointer
536 if ( next_link == NULL )
537 {
538 // NOTE: this shuldn't happen
539 throw message_not_sent("Could not send message. Link not known.");
540 }
541
542 // avoid circles
543 if ( next_link->remoteNode == last_hop )
544 {
545 // XXX logging_debug
546 logging_info("Possible next hop would create a circle: "
547 << next_link->remoteNode);
548
549 throw message_not_sent("Could not send message. Possible next hop would create a circle.");
550 }
551
552 // check if link is up
553 if ( ! next_link->up)
554 {
555 logging_warn("Could not send message. Link not up");
556 logging_error("ERROR: " << debugInformation() );
557
558 throw message_not_sent("Could not send message. Link not up");
559 }
560
561 // * send message over overlay link *
562 return send(message, next_link, priority);
563}
564
565
566/// send a message using a link descriptor, delivers it to the base overlay class
567seqnum_t BaseOverlay::send( OverlayMsg* message,
568 LinkDescriptor* ldr,
569 uint8_t priority ) throw(message_not_sent)
570{
571 // check if null
572 if (ldr == NULL)
573 {
574 ostringstream out;
575 out << "Can not send message to " << message->getDestinationAddress();
576 throw message_not_sent(out.str());
577 }
578
579 // check if up
580 if ( !ldr->up )
581 {
582 logging_error("DEBUG_INFO: " << debugInformation() );
583
584 ostringstream out;
585 out << "Can not send message. Link not up:" << ldr->to_string();
586 throw message_not_sent(out.str());
587 }
588
589 LinkDescriptor* next_hop_ld = NULL;
590
591 // BRANCH: relayed link
592 if (ldr->relayed)
593 {
594 logging_debug("Resolving direct link for relayed link to "
595 << ldr->remoteNode);
596
597 next_hop_ld = getRelayLinkTo( ldr->remoteNode );
598
599 if (next_hop_ld==NULL)
600 {
601 logging_error("DEBUG_INFO: " << debugInformation() );
602
603 ostringstream out;
604 out << "No relay path found to link: " << ldr;
605 throw message_not_sent(out.str());
606 }
607
608 next_hop_ld->setRelaying();
609 message->setRelayed(true);
610 }
611 // BRANCH: direct link
612 else
613 {
614 next_hop_ld = ldr;
615 }
616
617
618 // check next hop-link
619 if ( ! next_hop_ld->communicationUp)
620 {
621 throw message_not_sent( "send(): Could not send message."
622 " Not a relayed link and direct link is not up." );
623 }
624
625 // send over next link
626 logging_debug("send(): Sending message over direct link.");
627 return send_overlaymessage_down(message, next_hop_ld->communicationId, priority);
628
629}
630
631seqnum_t BaseOverlay::send_node( OverlayMsg* message, const NodeID& remote,
632 uint8_t priority, const ServiceID& service) throw(message_not_sent)
633{
634 message->setSourceNode(nodeId);
635 message->setDestinationNode(remote);
636 message->setService(service);
637 return send( message, remote, priority );
638}
639
640void BaseOverlay::send_link( OverlayMsg* message,
641 const LinkID& link,
642 uint8_t priority ) throw(message_not_sent)
643{
644 LinkDescriptor* ld = getDescriptor(link);
645 if (ld==NULL)
646 {
647 throw message_not_sent("Cannot find descriptor to link id=" + link.toString());
648 }
649
650 message->setSourceNode(nodeId);
651 message->setDestinationNode(ld->remoteNode);
652
653 message->setSourceLink(ld->overlayId);
654 message->setDestinationLink(ld->remoteLink);
655
656 message->setService(ld->service);
657 message->setRelayed(ld->relayed);
658
659
660 try
661 {
662 // * send message *
663 send( message, ld, priority );
664 }
665 catch ( message_not_sent& e )
666 {
667 // drop failed link
668 ld->failed = true;
669 dropLink(ld->overlayId);
670 }
671}
672
673// relay route management ------------------------------------------------------
674
675/// stabilize relay information
676void BaseOverlay::stabilizeRelays() {
677 vector<relay_route>::iterator i = relay_routes.begin();
678 while (i!=relay_routes.end() ) {
679 relay_route& route = *i;
680 LinkDescriptor* ld = getDescriptor(route.link);
681
682 // relay link still used and alive?
683 if (ld==NULL
684 || !isLinkDirectVital(ld)
685 || difftime(route.used, time(NULL)) > KEEP_ALIVE_TIME_OUT) // TODO this was set to 8 before.. Is the new timeout better?
686 {
687 logging_info("Forgetting relay information to node "
688 << route.node.toString() );
689 i = relay_routes.erase(i);
690 } else
691 i++;
692 }
693}
694
695void BaseOverlay::removeRelayLink( const LinkID& link ) {
696 vector<relay_route>::iterator i = relay_routes.begin();
697 while (i!=relay_routes.end() ) {
698 relay_route& route = *i;
699 if (route.link == link ) i = relay_routes.erase(i); else i++;
700 }
701}
702
703void BaseOverlay::removeRelayNode( const NodeID& remote ) {
704 vector<relay_route>::iterator i = relay_routes.begin();
705 while (i!=relay_routes.end() ) {
706 relay_route& route = *i;
707 if (route.node == remote ) i = relay_routes.erase(i); else i++;
708 }
709}
710
711/// refreshes relay information
712void BaseOverlay::refreshRelayInformation( const OverlayMsg* message, LinkDescriptor* ld ) {
713
714 // handle relayed messages from real links only
715 if (ld == NULL
716 || ld->relayed
717 || message->getSourceNode()==nodeId ) return;
718
719 // update usage information
720 if (message->isRelayed()) {
721 // try to find source node
722 foreach( relay_route& route, relay_routes ) {
723 // relay route found? yes->
724 if ( route.node == message->getDestinationNode() ) {
725 ld->setRelaying();
726 route.used = time(NULL);
727 }
728 }
729
730 }
731
732 // register relay path
733 if (message->isRegisterRelay()) {
734 // set relaying
735 ld->setRelaying();
736
737 // try to find source node
738 foreach( relay_route& route, relay_routes ) {
739
740 // relay route found? yes->
741 if ( route.node == message->getSourceNode() ) {
742
743 // refresh timer
744 route.used = time(NULL);
745 LinkDescriptor* rld = getDescriptor(route.link);
746
747 // route has a shorter hop count or old link is dead? yes-> replace
748 if (route.hops > message->getNumHops()
749 || rld == NULL
750 || !isLinkDirectVital(ld)) {
751 logging_info("Updating relay information to node "
752 << route.node.toString()
753 << " reducing to " << (int) message->getNumHops() << " hops.");
754 route.hops = message->getNumHops();
755 route.link = ld->overlayId;
756 }
757 return;
758 }
759 }
760
761 // not found-> add new entry
762 relay_route route;
763 route.hops = message->getNumHops();
764 route.link = ld->overlayId;
765 route.node = message->getSourceNode();
766 route.used = time(NULL);
767 logging_info("Remembering relay information to node "
768 << route.node.toString());
769 relay_routes.push_back(route);
770 }
771}
772
773/// returns a known "vital" relay link which is up and running
774LinkDescriptor* BaseOverlay::getRelayLinkTo( const NodeID& remote ) {
775 // try to find source node
776 foreach( relay_route& route, relay_routes ) {
777 if (route.node == remote ) {
778 LinkDescriptor* ld = getDescriptor( route.link );
779 if (ld==NULL || !isLinkDirectVital(ld)) return NULL; else {
780 route.used = time(NULL);
781 return ld;
782 }
783 }
784 }
785 return NULL;
786}
787
788/* *****************************************************************************
789 * PUBLIC MEMBERS
790 * ****************************************************************************/
791
792use_logging_cpp(BaseOverlay);
793
794// ----------------------------------------------------------------------------
795
796BaseOverlay::BaseOverlay() :
797 started(false),
798 connected(false),
799 state(BaseOverlayStateInvalid),
800 bc(NULL),
801 nodeId(NodeID::UNSPECIFIED), spovnetId(SpoVNetID::UNSPECIFIED),
802 sideport(&SideportListener::DEFAULT), overlayInterface(NULL),
803 counter(0) {
804}
805
806BaseOverlay::~BaseOverlay() {
807}
808
809// ----------------------------------------------------------------------------
810
811void BaseOverlay::start( BaseCommunication* _basecomm, const NodeID& _nodeid ) {
812 logging_info("Starting...");
813
814 // set parameters
815 bc = _basecomm;
816 nodeId = _nodeid;
817
818 // register at base communication
819 bc->registerMessageReceiver( this );
820 bc->registerEventListener( this );
821
822 // timer for auto link management
823 Timer::setInterval( 1000 ); // XXX
824// Timer::setInterval( 10000 );
825 Timer::start();
826
827 started = true;
828 state = BaseOverlayStateInvalid;
829}
830
831void BaseOverlay::stop() {
832 logging_info("Stopping...");
833
834 // stop timer
835 Timer::stop();
836
837 // delete oberlay interface
838 if(overlayInterface != NULL) {
839 delete overlayInterface;
840 overlayInterface = NULL;
841 }
842
843 // unregister at base communication
844 bc->unregisterMessageReceiver( this );
845 bc->unregisterEventListener( this );
846
847 started = false;
848 state = BaseOverlayStateInvalid;
849}
850
851bool BaseOverlay::isStarted(){
852 return started;
853}
854
855// ----------------------------------------------------------------------------
856
857void BaseOverlay::joinSpoVNet(const SpoVNetID& id,
858 const EndpointDescriptor& bootstrapEp) {
859
860 if(id != spovnetId){
861 logging_error("attempt to join against invalid spovnet, call initiate first");
862 return;
863 }
864
865 //ovl.visShowNodeBubble ( ovlId, nodeId, "joining..." );
866 logging_info( "Starting to join spovnet " << id.toString() <<
867 " with nodeid " << nodeId.toString());
868
869 if(bootstrapEp.isUnspecified() && state == BaseOverlayStateInvalid){
870
871 //** FIRST STEP - MANDATORY */
872
873 // bootstrap against ourselfs
874 logging_info("joining spovnet locally");
875
876 overlayInterface->joinOverlay();
877 state = BaseOverlayStateCompleted;
878 foreach( NodeListener* i, nodeListeners )
879 i->onJoinCompleted( spovnetId );
880
881 //ovl.visChangeNodeIcon ( ovlId, nodeId, OvlVis::ICON_ID_CAMERA );
882 //ovl.visChangeNodeColor( ovlId, nodeId, OvlVis::NODE_COLORS_GREEN );
883
884 } else {
885
886 //** SECOND STEP - OPTIONAL */
887
888 // bootstrap against another node
889 logging_info("joining spovnet remotely against " << bootstrapEp.toString());
890
891 const LinkID& lnk = bc->establishLink( bootstrapEp );
892 bootstrapLinks.push_back(lnk);
893 logging_info("join process initiated for " << id.toString() << "...");
894 }
895}
896
897
898void BaseOverlay::startBootstrapModules(vector<pair<BootstrapManager::BootstrapType,string> > modules){
899 logging_debug("starting overlay bootstrap module");
900 overlayBootstrap.start(this, spovnetId, nodeId, modules);
901 overlayBootstrap.publish(bc->getEndpointDescriptor());
902}
903
904void BaseOverlay::stopBootstrapModules(){
905 logging_debug("stopping overlay bootstrap module");
906 overlayBootstrap.stop();
907 overlayBootstrap.revoke();
908}
909
910void BaseOverlay::leaveSpoVNet() {
911
912 logging_info( "Leaving spovnet " << spovnetId );
913 bool ret = ( state != this->BaseOverlayStateInvalid );
914
915 logging_debug( "Dropping all auto-links" );
916
917 // gather all service links
918 vector<LinkID> servicelinks;
919 foreach( LinkDescriptor* ld, links )
920 {
921 if( ld->service != OverlayInterface::OVERLAY_SERVICE_ID )
922 servicelinks.push_back( ld->overlayId );
923 }
924
925 // drop all service links
926 foreach( LinkID lnk, servicelinks )
927 {
928 logging_debug("Dropping service link " << lnk.toString());
929 dropLink( lnk );
930 }
931
932 // let the node leave the spovnet overlay interface
933 logging_debug( "Leaving overlay" );
934 if( overlayInterface != NULL )
935 {
936 overlayInterface->leaveOverlay();
937 }
938
939 // drop still open bootstrap links
940 foreach( LinkID lnk, bootstrapLinks )
941 {
942 logging_debug("Dropping bootstrap link " << lnk.toString());
943 bc->dropLink( lnk );
944 }
945
946 // change to inalid state
947 state = BaseOverlayStateInvalid;
948 //ovl.visShutdown( ovlId, nodeId, string("") );
949
950 visualInstance.visShutdown(visualIdOverlay, nodeId, "");
951 visualInstance.visShutdown(visualIdBase, nodeId, "");
952
953 // inform all registered services of the event
954 foreach( NodeListener* i, nodeListeners )
955 {
956 if( ret ) i->onLeaveCompleted( spovnetId );
957 else i->onLeaveFailed( spovnetId );
958 }
959}
960
961void BaseOverlay::createSpoVNet(const SpoVNetID& id,
962 const OverlayParameterSet& param,
963 const SecurityParameterSet& sec,
964 const QoSParameterSet& qos) {
965
966 // set the state that we are an initiator, this way incoming messages are
967 // handled correctly
968 logging_info( "creating spovnet " + id.toString() <<
969 " with nodeid " << nodeId.toString() );
970
971 spovnetId = id;
972
973 overlayInterface = OverlayFactory::create( *this, param, nodeId, this );
974 if( overlayInterface == NULL ) {
975 logging_fatal( "overlay structure not supported" );
976 state = BaseOverlayStateInvalid;
977
978 foreach( NodeListener* i, nodeListeners )
979 i->onJoinFailed( spovnetId );
980
981 return;
982 }
983
984 visualInstance.visCreate(visualIdBase, nodeId, "", "");
985 visualInstance.visCreate(visualIdOverlay, nodeId, "", "");
986}
987
988// ----------------------------------------------------------------------------
989
990const LinkID BaseOverlay::establishLink( const EndpointDescriptor& remoteEp,
991 const NodeID& remoteId, const ServiceID& service ) {
992
993 // establish link via overlay
994 if (!remoteId.isUnspecified())
995 return establishLink( remoteId, service );
996 else
997 return establishDirectLink(remoteEp, service );
998}
999
1000/// call base communication's establish link and add link mapping
1001const LinkID BaseOverlay::establishDirectLink( const EndpointDescriptor& ep,
1002 const ServiceID& service ) {
1003
1004 /// find a service listener
1005 if( !communicationListeners.contains( service ) ) {
1006 logging_error( "No listener registered for service id=" << service.toString() );
1007 return LinkID::UNSPECIFIED;
1008 }
1009 CommunicationListener* listener = communicationListeners.get( service );
1010 assert( listener != NULL );
1011
1012 // create descriptor
1013 LinkDescriptor* ld = addDescriptor();
1014 ld->relayed = false;
1015 ld->listener = listener;
1016 ld->service = service;
1017 ld->communicationId = bc->establishLink( ep );
1018
1019 /// establish link and add mapping
1020 logging_info("Establishing direct link " << ld->communicationId.toString()
1021 << " using " << ep.toString());
1022
1023 return ld->communicationId;
1024}
1025
1026/// establishes a link between two arbitrary nodes
1027const LinkID BaseOverlay::establishLink( const NodeID& remote,
1028 const ServiceID& service ) {
1029
1030 // TODO What if we already have a Link to this node and this service id?
1031
1032 // do not establish a link to myself!
1033 if (remote == nodeId) return
1034 LinkID::UNSPECIFIED;
1035
1036
1037 // create a link descriptor
1038 LinkDescriptor* ld = addDescriptor();
1039 ld->relayed = true;
1040 ld->remoteNode = remote;
1041 ld->service = service;
1042 ld->listener = getListener(ld->service);
1043
1044 // initialize sequence numbers
1045 ld->last_sent_seqnum = SequenceNumber::createRandomSeqNum_Short();
1046 logging_debug("Creating new link with initial SeqNum: " << ld->last_sent_seqnum);
1047
1048 // create link request message
1049 OverlayMsg msg(OverlayMsg::typeLinkRequest, service, nodeId, remote );
1050 msg.setSourceLink(ld->overlayId);
1051
1052 // send over relayed link
1053 msg.setRelayed(true);
1054 msg.setRegisterRelay(true);
1055// msg.setRouteRecord(true);
1056
1057 msg.setSeqNum(ld->last_sent_seqnum);
1058
1059 // debug message
1060 logging_info(
1061 "Sending link request with"
1062 << " link=" << ld->overlayId.toString()
1063 << " node=" << ld->remoteNode.toString()
1064 << " serv=" << ld->service.toString()
1065 );
1066
1067
1068 // sending message to node
1069 try
1070 {
1071 // * send *
1072 seqnum_t seq = send_node( &msg, ld->remoteNode, system_priority::OVERLAY, ld->service );
1073 }
1074 catch ( message_not_sent& e )
1075 {
1076 logging_warn("Link request not sent: " << e.what());
1077
1078 // Message not sent. Cancel link request.
1079 SystemQueue::instance().scheduleCall(
1080 boost::bind(
1081 &BaseOverlay::__onLinkEstablishmentFailed,
1082 this,
1083 ld->overlayId)
1084 );
1085 }
1086
1087 return ld->overlayId;
1088}
1089
1090/// NOTE: "id" is an Overlay-LinkID
1091void BaseOverlay::__onLinkEstablishmentFailed(const LinkID& id)
1092{
1093 // TODO This code redundant. But also it's not easy to aggregate in one function.
1094
1095 // get descriptor for link
1096 LinkDescriptor* ld = getDescriptor(id, false);
1097 if ( ld == NULL ) return; // not found? ->ignore!
1098
1099 logging_debug( "__onLinkEstablishmentFaild: " << ld );
1100
1101 // removing relay link information
1102 removeRelayLink(ld->overlayId);
1103
1104 // inform listeners about link down
1105 ld->communicationUp = false;
1106 if (!ld->service.isUnspecified())
1107 {
1108 CommunicationListener* lst = getListener(ld->service);
1109 if(lst != NULL) lst->onLinkFail( ld->overlayId, ld->remoteNode );
1110 sideport->onLinkFail( id, this->nodeId, ld->remoteNode, this->spovnetId );
1111 }
1112
1113 // delete all queued messages (auto links)
1114 if( ld->messageQueue.size() > 0 ) {
1115 logging_warn( "Dropping link " << id.toString() << " that has "
1116 << ld->messageQueue.size() << " waiting messages" );
1117 ld->flushQueue();
1118 }
1119
1120 // erase mapping
1121 eraseDescriptor(ld->overlayId);
1122}
1123
1124
1125/// drops an established link
1126void BaseOverlay::dropLink(const LinkID& link)
1127{
1128 logging_info( "Dropping link: " << link.toString() );
1129
1130 // find the link item to drop
1131 LinkDescriptor* ld = getDescriptor(link);
1132 if( ld == NULL )
1133 {
1134 logging_warn( "Can't drop link, link is unknown!");
1135 return;
1136 }
1137
1138 // delete all queued messages
1139 if( ld->messageQueue.size() > 0 )
1140 {
1141 logging_warn( "Dropping link " << ld->overlayId.toString() << " that has "
1142 << ld->messageQueue.size() << " waiting messages" );
1143 ld->flushQueue();
1144 }
1145
1146
1147 // inform application and remote note (but only once)
1148 // NOTE: If we initiated the drop, this function is called twice, but on
1149 // the second call, there is noting to do.
1150 if ( ld->up && ! ld->failed )
1151 {
1152 // inform sideport and listener
1153 if(ld->listener != NULL)
1154 {
1155 ld->listener->onLinkDown( ld->overlayId, ld->remoteNode );
1156 }
1157 sideport->onLinkDown(ld->overlayId, this->nodeId, ld->remoteNode, this->spovnetId );
1158
1159 // send link-close to remote node
1160 logging_info("Sending LinkClose message to remote node.");
1161 OverlayMsg close_msg(OverlayMsg::typeLinkClose);
1162 send_link(&close_msg, link, system_priority::OVERLAY);
1163
1164 // deactivate link
1165 ld->up = false;
1166// ld->closing = true;
1167 }
1168
1169 else if ( ld->failed )
1170 {
1171 // inform listener
1172 if( ld->listener != NULL )
1173 {
1174 ld->listener->onLinkFail( ld->overlayId, ld->remoteNode );
1175 }
1176
1177 ld->up = false;
1178 __removeDroppedLink(ld->overlayId);
1179 }
1180}
1181
1182/// called from typeLinkClose-handler
1183void BaseOverlay::__removeDroppedLink(const LinkID& link)
1184{
1185 // find the link item to drop
1186 LinkDescriptor* ld = getDescriptor(link);
1187 if( ld == NULL )
1188 {
1189 return;
1190 }
1191
1192 // do not drop relay links
1193 if (!ld->relaying)
1194 {
1195 // drop the link in base communication
1196 if (ld->communicationUp)
1197 {
1198 bc->dropLink( ld->communicationId );
1199 }
1200
1201 // erase descriptor
1202 eraseDescriptor( ld->overlayId );
1203 }
1204 else
1205 {
1206 ld->dropAfterRelaying = true;
1207 }
1208}
1209
1210// ----------------------------------------------------------------------------
1211
1212/// internal send message, always use this functions to send messages over links
1213const SequenceNumber& BaseOverlay::sendMessage( reboost::message_t message,
1214 const LinkID& link,
1215 uint8_t priority ) throw(message_not_sent)
1216{
1217 logging_debug( "Sending data message on link " << link.toString() );
1218
1219 // get the mapping for this link
1220 LinkDescriptor* ld = getDescriptor(link);
1221 if( ld == NULL )
1222 {
1223 throw message_not_sent("Could not send message. Link not found id=" + link.toString());
1224 }
1225
1226 // check if the link is up yet, if its an auto link queue message
1227 if( !ld->up )
1228 {
1229 ld->setAutoUsed();
1230 if( ld->autolink )
1231 {
1232 logging_info("Auto-link " << link.toString() << " not up, queue message");
1233
1234 // queue message
1235 LinkDescriptor::message_queue_entry msg;
1236 msg.message = message;
1237 msg.priority = priority;
1238
1239 ld->messageQueue.push_back( msg );
1240
1241 return SequenceNumber::DISABLED; // TODO what to return if message is queued?
1242 }
1243 else
1244 {
1245 throw message_not_sent("Link " + link.toString() + " not up, drop message");
1246 }
1247 }
1248
1249 // TODO XXX ----> coordinate with QUIC-efforts !!
1250 // TODO aktuell: sequence numbers
1251 // TODO seqnum on fast path ?
1252 ld->last_sent_seqnum.increment();
1253
1254 /* choose fast-path for direct links; normal overlay-path otherwise */
1255 // BRANCH: direct link
1256 if ( ld->communicationUp && !ld->relayed )
1257 {
1258 // * send down to BaseCommunication *
1259 try
1260 {
1261 bc->sendMessage(ld->communicationId, message, priority, true);
1262 }
1263 catch ( communication::communication_message_not_sent& e )
1264 {
1265 ostringstream out;
1266 out << "Communication message on fast-path not sent: " << e.what();
1267 throw message_not_sent(out.str());
1268 }
1269 }
1270
1271 // BRANCH: use (slow) overlay-path
1272 else
1273 {
1274 // compile overlay message (has service and node id)
1275 OverlayMsg overmsg( OverlayMsg::typeData );
1276 overmsg.set_payload_message(message);
1277
1278 // set SeqNum
1279 if ( ld->transmit_seqnums )
1280 {
1281 overmsg.setSeqNum(ld->last_sent_seqnum);
1282 }
1283 logging_debug("Sending Message with SeqNum: " << overmsg.getSeqNum());
1284
1285 // send message over relay/direct/overlay
1286 send_link( &overmsg, ld->overlayId, priority );
1287 }
1288
1289 // return seqnum
1290 return ld->last_sent_seqnum;
1291}
1292
1293
1294const SequenceNumber& BaseOverlay::sendMessage(reboost::message_t message,
1295 const NodeID& node, uint8_t priority, const ServiceID& service) {
1296
1297 // find link for node and service
1298 LinkDescriptor* ld = getAutoDescriptor( node, service );
1299
1300 // if we found no link, create an auto link
1301 if( ld == NULL ) {
1302
1303 // debug output
1304 logging_info( "No link to send message to node "
1305 << node.toString() << " found for service "
1306 << service.toString() << ". Creating auto link ..."
1307 );
1308
1309 // call base overlay to create a link
1310 LinkID link = establishLink( node, service );
1311 ld = getDescriptor( link );
1312 if( ld == NULL ) {
1313 logging_error( "Failed to establish auto-link.");
1314 throw message_not_sent("Failed to establish auto-link.");
1315 }
1316 ld->autolink = true;
1317
1318 logging_debug( "Auto-link establishment in progress to node "
1319 << node.toString() << " with link id=" << link.toString() );
1320 }
1321 assert(ld != NULL);
1322
1323 // mark the link as used, as we now send a message through it
1324 ld->setAutoUsed();
1325
1326 // send / queue message
1327 return sendMessage( message, ld->overlayId, priority );
1328}
1329
1330
1331NodeID BaseOverlay::sendMessageCloserToNodeID(reboost::message_t message,
1332 const NodeID& address, uint8_t priority, const ServiceID& service) {
1333
1334 if ( overlayInterface->isClosestNodeTo(address) )
1335 {
1336 return NodeID::UNSPECIFIED;
1337 }
1338
1339 const NodeID& closest_node = overlayInterface->getNextNodeId(address);
1340
1341 if ( closest_node != NodeID::UNSPECIFIED )
1342 {
1343 sendMessage(message, closest_node, priority, service);
1344 }
1345
1346 return closest_node; // return seqnum ?? tuple? closest_node via (non const) reference?
1347}
1348// ----------------------------------------------------------------------------
1349
1350const EndpointDescriptor& BaseOverlay::getEndpointDescriptor(
1351 const LinkID& link) const {
1352
1353 // return own end-point descriptor
1354 if( link.isUnspecified() )
1355 return bc->getEndpointDescriptor();
1356
1357 // find link descriptor. not found -> return unspecified
1358 const LinkDescriptor* ld = getDescriptor(link);
1359 if (ld==NULL) return EndpointDescriptor::UNSPECIFIED();
1360
1361 // return endpoint-descriptor from base communication
1362 return bc->getEndpointDescriptor( ld->communicationId );
1363}
1364
1365const EndpointDescriptor& BaseOverlay::getEndpointDescriptor(
1366 const NodeID& node) const {
1367
1368 // return own end-point descriptor
1369 if( node == nodeId || node.isUnspecified() ) {
1370 //logging_info("getEndpointDescriptor: returning self.");
1371 return bc->getEndpointDescriptor();
1372 }
1373
1374 // no joined and request remote descriptor? -> fail!
1375 if( overlayInterface == NULL ) {
1376 logging_error( "Overlay interface not set, cannot resolve end-point." );
1377 return EndpointDescriptor::UNSPECIFIED();
1378 }
1379
1380// // resolve end-point descriptor from the base-overlay routing table
1381// const EndpointDescriptor& ep = overlayInterface->resolveNode( node );
1382// if(ep.toString() != "") return ep;
1383
1384 // see if we can find the node in our own table
1385 foreach(const LinkDescriptor* ld, links){
1386 if(ld->remoteNode != node) continue;
1387 if(!ld->communicationUp) continue;
1388 const EndpointDescriptor& ep =
1389 bc->getEndpointDescriptor(ld->communicationId);
1390 if(ep != EndpointDescriptor::UNSPECIFIED()) {
1391 //logging_info("getEndpointDescriptor: using " << ld->to_string());
1392 return ep;
1393 }
1394 }
1395
1396 logging_warn( "No EndpointDescriptor found for node " << node );
1397 logging_warn( const_cast<BaseOverlay*>(this)->debugInformation() );
1398
1399 return EndpointDescriptor::UNSPECIFIED();
1400}
1401
1402// ----------------------------------------------------------------------------
1403
1404bool BaseOverlay::registerSidePort(SideportListener* _sideport) {
1405 sideport = _sideport;
1406 _sideport->configure( this );
1407 return true;
1408}
1409
1410bool BaseOverlay::unregisterSidePort(SideportListener* _sideport) {
1411 sideport = &SideportListener::DEFAULT;
1412 return true;
1413}
1414
1415// ----------------------------------------------------------------------------
1416
1417bool BaseOverlay::bind(CommunicationListener* listener, const ServiceID& sid) {
1418 logging_debug( "binding communication listener " << listener
1419 << " on serviceid " << sid.toString() );
1420
1421 if( communicationListeners.contains( sid ) ) {
1422 logging_error( "some listener already registered for service id "
1423 << sid.toString() );
1424 return false;
1425 }
1426
1427 communicationListeners.registerItem( listener, sid );
1428 return true;
1429}
1430
1431
1432bool BaseOverlay::unbind(CommunicationListener* listener, const ServiceID& sid) {
1433 logging_debug( "unbinding listener " << listener << " from serviceid " << sid.toString() );
1434
1435 if( !communicationListeners.contains( sid ) ) {
1436 logging_warn( "cannot unbind listener. no listener registered on service id " << sid.toString() );
1437 return false;
1438 }
1439
1440 if( communicationListeners.get(sid) != listener ) {
1441 logging_warn( "listener bound to service id " << sid.toString()
1442 << " is different than listener trying to unbind" );
1443 return false;
1444 }
1445
1446 communicationListeners.unregisterItem( sid );
1447 return true;
1448}
1449
1450// ----------------------------------------------------------------------------
1451
1452bool BaseOverlay::bind(NodeListener* listener) {
1453 logging_debug( "Binding node listener " << listener );
1454
1455 // already bound? yes-> warning
1456 NodeListenerVector::iterator i =
1457 find( nodeListeners.begin(), nodeListeners.end(), listener );
1458 if( i != nodeListeners.end() ) {
1459 logging_warn("Node listener " << listener << " is already bound!" );
1460 return false;
1461 }
1462
1463 // no-> add
1464 nodeListeners.push_back( listener );
1465 return true;
1466}
1467
1468bool BaseOverlay::unbind(NodeListener* listener) {
1469 logging_debug( "Unbinding node listener " << listener );
1470
1471 // already unbound? yes-> warning
1472 NodeListenerVector::iterator i = find( nodeListeners.begin(), nodeListeners.end(), listener );
1473 if( i == nodeListeners.end() ) {
1474 logging_warn( "Node listener " << listener << " is not bound!" );
1475 return false;
1476 }
1477
1478 // no-> remove
1479 nodeListeners.erase( i );
1480 return true;
1481}
1482
1483// ----------------------------------------------------------------------------
1484
1485void BaseOverlay::onLinkUp(const LinkID& id,
1486 const addressing2::EndpointPtr local, const addressing2::EndpointPtr remote)
1487{
1488 logging_debug( "Link up with base communication link id=" << id );
1489
1490 // get descriptor for link
1491 LinkDescriptor* ld = getDescriptor(id, true);
1492
1493 // BRANCH: handle bootstrap link we initiated
1494 if( std::find(bootstrapLinks.begin(), bootstrapLinks.end(), id) != bootstrapLinks.end() ){
1495 logging_info(
1496 "Join has been initiated by me and the link is now up. " <<
1497 "LinkID: " << id.toString() <<
1498 "Sending out join request for SpoVNet " << spovnetId.toString()
1499 );
1500
1501 // send join request message
1502 OverlayMsg overlayMsg( OverlayMsg::typeJoinRequest,
1503 OverlayInterface::OVERLAY_SERVICE_ID, nodeId );
1504 JoinRequest joinRequest( spovnetId, nodeId );
1505 overlayMsg.append_buffer(joinRequest.serialize_into_shared_buffer());
1506
1507 send_overlaymessage_down(&overlayMsg, id, system_priority::OVERLAY);
1508
1509 return;
1510 }
1511
1512 // BRANCH: link establishment from remote, add one!
1513 if (ld == NULL) {
1514 ld = addDescriptor( id );
1515 logging_info( "onLinkUp (remote request) descriptor: " << ld );
1516
1517 // update descriptor
1518 ld->fromRemote = true;
1519 ld->communicationId = id;
1520 ld->communicationUp = true;
1521 ld->setAutoUsed();
1522 ld->setAlive();
1523
1524 // in this case, do not inform listener, since service it unknown
1525 // -> wait for update message!
1526 }
1527
1528 // BRANCH: We requested this link in the first place
1529 else
1530 {
1531 logging_info( "onLinkUp descriptor (initiated locally):" << ld );
1532
1533 // update descriptor
1534 ld->setAutoUsed();
1535 ld->setAlive();
1536 ld->communicationUp = true;
1537 ld->fromRemote = false;
1538
1539 // BRANCH: this was a relayed link before --> convert to direct link
1540 // TODO do we really have to send a message here?
1541 if (ld->relayed)
1542 {
1543 ld->up = true;
1544 ld->relayed = false;
1545 logging_info( "Converting to direct link: " << ld );
1546
1547 // send message
1548 OverlayMsg overMsg( OverlayMsg::typeLinkDirect );
1549 overMsg.setSourceLink( ld->overlayId );
1550 overMsg.setDestinationLink( ld->remoteLink );
1551 send_link( &overMsg, ld->overlayId, system_priority::OVERLAY );
1552
1553 // inform listener
1554 if( ld->listener != NULL)
1555 ld->listener->onLinkChanged( ld->overlayId, ld->remoteNode );
1556 }
1557
1558
1559 /* NOTE: Chord is opening direct-links in it's setup routine which are
1560 * neither set to "relayed" nor to "up". To activate these links a
1561 * typeLinkUpdate must be sent.
1562 *
1563 * This branch is would also be taken when we had a working link before
1564 * (ld->up == true). I'm not sure if this case does actually happen
1565 * and whether it's tested.
1566 */
1567 else
1568 {
1569 // note: necessary to validate the link on the remote side!
1570 logging_info( "Sending out update" <<
1571 " for service " << ld->service.toString() <<
1572 " with local node id " << nodeId.toString() <<
1573 " on link " << ld->overlayId.toString() );
1574
1575 // compile and send update message
1576 OverlayMsg overlayMsg( OverlayMsg::typeLinkUpdate );
1577 overlayMsg.setAutoLink( ld->autolink );
1578 overlayMsg.setSourceNode(nodeId);
1579 overlayMsg.setDestinationNode(ld->remoteNode);
1580 overlayMsg.setSourceLink(ld->overlayId);
1581 overlayMsg.setDestinationLink(ld->remoteLink);
1582 overlayMsg.setService(ld->service);
1583 overlayMsg.setRelayed(false);
1584
1585 // TODO ld->communicationId = id ??
1586
1587 send_overlaymessage_down(&overlayMsg, id, system_priority::OVERLAY);
1588 }
1589 }
1590}
1591
1592void BaseOverlay::onLinkDown(const LinkID& id,
1593 const addressing2::EndpointPtr local,
1594 const addressing2::EndpointPtr remote)
1595{
1596 // erase bootstrap links
1597 vector<LinkID>::iterator it = std::find( bootstrapLinks.begin(), bootstrapLinks.end(), id );
1598 if( it != bootstrapLinks.end() ) bootstrapLinks.erase( it );
1599
1600 // get descriptor for link
1601 LinkDescriptor* ld = getDescriptor(id, true);
1602 if ( ld == NULL ) return; // not found? ->ignore!
1603 logging_info( "onLinkDown descriptor: " << ld );
1604
1605 // removing relay link information
1606 removeRelayLink(ld->overlayId);
1607
1608 // inform listeners about link down
1609 ld->communicationUp = false;
1610 if (!ld->service.isUnspecified()) {
1611 CommunicationListener* lst = getListener(ld->service);
1612 if(lst != NULL) lst->onLinkDown( ld->overlayId, ld->remoteNode );
1613 sideport->onLinkDown( id, this->nodeId, ld->remoteNode, this->spovnetId );
1614 }
1615
1616 // delete all queued messages (auto links)
1617 if( ld->messageQueue.size() > 0 ) {
1618 logging_warn( "Dropping link " << id.toString() << " that has "
1619 << ld->messageQueue.size() << " waiting messages" );
1620 ld->flushQueue();
1621 }
1622
1623 // erase mapping
1624 eraseDescriptor(ld->overlayId);
1625
1626
1627 // notify the application if this is the last link to a different node
1628 if ( connected )
1629 {
1630 bool active_links = false;
1631
1632 // look for links that are still active
1633 foreach( LinkDescriptor* ld, links )
1634 {
1635 if ( isLinkDirectVital(ld) )
1636 {
1637 active_links = true;
1638 break;
1639 }
1640 }
1641
1642 if ( ! active_links )
1643 {
1644 connected = false;
1645
1646 foreach( NodeListener* i, nodeListeners )
1647 i->onOverlayDisconnected( spovnetId );
1648 }
1649 }
1650
1651}
1652
1653
1654void BaseOverlay::onLinkFail(const LinkID& id,
1655 const addressing2::EndpointPtr local,
1656 const addressing2::EndpointPtr remote)
1657{
1658 logging_debug( "Link fail with base communication link id=" << id );
1659
1660// // erase bootstrap links
1661// vector<LinkID>::iterator it = std::find( bootstrapLinks.begin(), bootstrapLinks.end(), id );
1662// if( it != bootstrapLinks.end() ) bootstrapLinks.erase( it );
1663//
1664// // get descriptor for link
1665// LinkDescriptor* ld = getDescriptor(id, true);
1666// if ( ld == NULL ) return; // not found? ->ignore!
1667// logging_debug( "Link failed id=" << ld->overlayId.toString() );
1668//
1669// // inform listeners
1670// ld->listener->onLinkFail( ld->overlayId, ld->remoteNode );
1671// sideport->onLinkFail( id, this->nodeId, ld->remoteNode, this->spovnetId );
1672
1673 logging_debug( " ... calling onLinkDown ..." );
1674 onLinkDown(id, local, remote);
1675}
1676
1677
1678void BaseOverlay::onLinkChanged(const LinkID& id,
1679 const addressing2::EndpointPtr oldlocal, const addressing2::EndpointPtr newlocal,
1680 const addressing2::EndpointPtr oldremote, const addressing2::EndpointPtr newremote)
1681{
1682 // get descriptor for link
1683 LinkDescriptor* ld = getDescriptor(id, true);
1684 if ( ld == NULL ) return; // not found? ->ignore!
1685 logging_debug( "onLinkChanged descriptor: " << ld );
1686
1687 // inform listeners
1688 ld->listener->onLinkChanged( ld->overlayId, ld->remoteNode );
1689 sideport->onLinkChanged( id, this->nodeId, ld->remoteNode, this->spovnetId );
1690
1691 // autolinks: refresh timestamp
1692 ld->setAutoUsed();
1693}
1694
1695//void BaseOverlay::onLinkQoSChanged(const LinkID& id,
1696// const addressing2::EndpointPtr local, const addressing2::EndpointPtr remote,
1697// const QoSParameterSet& qos)
1698//{
1699// logging_debug( "Link quality changed with base communication link id=" << id );
1700//
1701// // get descriptor for link
1702// LinkDescriptor* ld = getDescriptor(id, true);
1703// if ( ld == NULL ) return; // not found? ->ignore!
1704// logging_debug( "Link quality changed id=" << ld->overlayId.toString() );
1705//}
1706
1707bool BaseOverlay::onLinkRequest(const LinkID& id,
1708 const addressing2::EndpointPtr local,
1709 const addressing2::EndpointPtr remote)
1710{
1711 logging_debug("Accepting link request from " << remote->to_string() );
1712
1713 // TODO ask application..?
1714
1715 return true;
1716}
1717
1718
1719
1720
1721/// handles a message from base communication
1722bool BaseOverlay::receiveMessage( reboost::shared_buffer_t message,
1723 const LinkID& link,
1724 const NodeID&,
1725 bool bypass_overlay )
1726{
1727 // get descriptor for link
1728 LinkDescriptor* ld = getDescriptor( link, true );
1729
1730
1731 /* choose fastpath for direct links; normal overlay-path otherwise */
1732 if ( bypass_overlay && ld )
1733 {
1734 // message received --> link is alive
1735 ld->keepAliveReceived = time(NULL);
1736 // hop count on this link
1737 ld->hops = 0;
1738
1739
1740 // hand over to CommunicationListener (aka Application)
1741 CommunicationListener* lst = getListener(ld->service);
1742 if ( lst != NULL )
1743 {
1744 lst->onMessage(
1745 message,
1746 ld->remoteNode,
1747 ld->overlayId,
1748 SequenceNumber::DISABLED,
1749 NULL );
1750
1751 return true;
1752 }
1753
1754 return false;
1755 }
1756 else
1757 {
1758 return handleMessage( message, ld, link );
1759 }
1760}
1761
1762// ----------------------------------------------------------------------------
1763
1764/// Handle spovnet instance join requests
1765bool BaseOverlay::handleJoinRequest( reboost::shared_buffer_t message, const NodeID& source, const LinkID& bcLink )
1766{
1767 // decapsulate message
1768 JoinRequest joinReq;
1769 joinReq.deserialize_from_shared_buffer(message);
1770
1771 logging_info( "Received join request for spovnet " <<
1772 joinReq.getSpoVNetID().toString() );
1773
1774 // check spovnet id
1775 if( joinReq.getSpoVNetID() != spovnetId ) {
1776 logging_error(
1777 "Received join request for spovnet we don't handle " <<
1778 joinReq.getSpoVNetID().toString() );
1779
1780 return false;
1781 }
1782
1783 // TODO: here you can implement mechanisms to deny joining of a node
1784 bool allow = true;
1785 logging_info( "Sending join reply for spovnet " <<
1786 spovnetId.toString() << " to node " <<
1787 source.toString() <<
1788 ". Result: " << (allow ? "allowed" : "denied") );
1789 joiningNodes.push_back( source );
1790
1791 // return overlay parameters
1792 assert( overlayInterface != NULL );
1793 logging_debug( "Using bootstrap end-point "
1794 << getEndpointDescriptor().toString() )
1795 OverlayParameterSet parameters = overlayInterface->getParameters();
1796
1797
1798 // create JoinReplay Message
1799 OverlayMsg retmsg( OverlayMsg::typeJoinReply,
1800 OverlayInterface::OVERLAY_SERVICE_ID, nodeId );
1801 JoinReply replyMsg( spovnetId, parameters, allow );
1802 retmsg.append_buffer(replyMsg.serialize_into_shared_buffer());
1803
1804 // XXX This is unlovely clash between the old message system and the new one,
1805 // but a.t.m. we can't migrate everything to the new system at once..
1806 // ---> Consider the EndpointDescriptor as part of the JoinReply..
1807 retmsg.append_buffer(getEndpointDescriptor().serialize());
1808
1809 // * send *
1810 send_overlaymessage_down(&retmsg, bcLink, system_priority::OVERLAY);
1811
1812 return true;
1813}
1814
1815/// Handle replies to spovnet instance join requests
1816bool BaseOverlay::handleJoinReply( reboost::shared_buffer_t message, const LinkID& bcLink )
1817{
1818 // decapsulate message
1819 logging_debug("received join reply message");
1820 JoinReply replyMsg;
1821 EndpointDescriptor endpoints;
1822 reboost::shared_buffer_t buff = replyMsg.deserialize_from_shared_buffer(message);
1823 buff = endpoints.deserialize(buff);
1824
1825 // correct spovnet?
1826 if( replyMsg.getSpoVNetID() != spovnetId ) { // no-> fail
1827 logging_error( "Received SpoVNet join reply for " <<
1828 replyMsg.getSpoVNetID().toString() <<
1829 " != " << spovnetId.toString() );
1830
1831 return false;
1832 }
1833
1834 // access granted? no -> fail
1835 if( !replyMsg.getJoinAllowed() ) {
1836 logging_error( "Our join request has been denied" );
1837
1838 // drop initiator link
1839 if( !bcLink.isUnspecified() ){
1840 bc->dropLink( bcLink );
1841
1842 vector<LinkID>::iterator it = std::find(
1843 bootstrapLinks.begin(), bootstrapLinks.end(), bcLink);
1844 if( it != bootstrapLinks.end() )
1845 bootstrapLinks.erase(it);
1846 }
1847
1848 // inform all registered services of the event
1849 foreach( NodeListener* i, nodeListeners )
1850 i->onJoinFailed( spovnetId );
1851
1852 return true;
1853 }
1854
1855 // access has been granted -> continue!
1856 logging_info("Join request has been accepted for spovnet " <<
1857 spovnetId.toString() );
1858
1859 logging_debug( "Using bootstrap end-point "
1860 << endpoints.toString() );
1861
1862 // create overlay structure from spovnet parameter set
1863 // if we have not boostrapped yet against some other node
1864 if( overlayInterface == NULL ){
1865
1866 logging_debug("first-time bootstrapping");
1867
1868 overlayInterface = OverlayFactory::create(
1869 *this, replyMsg.getParam(), nodeId, this );
1870
1871 // overlay structure supported? no-> fail!
1872 if( overlayInterface == NULL ) {
1873 logging_error( "overlay structure not supported" );
1874
1875 if( !bcLink.isUnspecified() ){
1876 bc->dropLink( bcLink );
1877
1878 vector<LinkID>::iterator it = std::find(
1879 bootstrapLinks.begin(), bootstrapLinks.end(), bcLink);
1880 if( it != bootstrapLinks.end() )
1881 bootstrapLinks.erase(it);
1882 }
1883
1884 // inform all registered services of the event
1885 foreach( NodeListener* i, nodeListeners )
1886 i->onJoinFailed( spovnetId );
1887
1888 return true;
1889 }
1890
1891 // everything ok-> join the overlay!
1892 state = BaseOverlayStateCompleted;
1893 overlayInterface->createOverlay();
1894
1895 overlayInterface->joinOverlay( endpoints );
1896 overlayBootstrap.recordJoin( endpoints );
1897
1898 // update ovlvis
1899 //ovl.visChangeNodeColor( ovlId, nodeId, OvlVis::NODE_COLORS_GREEN);
1900
1901 // inform all registered services of the event
1902 foreach( NodeListener* i, nodeListeners )
1903 i->onJoinCompleted( spovnetId );
1904 }
1905 else
1906 {
1907 // this is not the first bootstrap, just join the additional node
1908 logging_debug("not first-time bootstrapping");
1909 overlayInterface->joinOverlay( endpoints );
1910 overlayBootstrap.recordJoin( endpoints );
1911 } // if( overlayInterface == NULL )
1912
1913 return true;
1914}
1915
1916
1917bool BaseOverlay::handleData( reboost::shared_buffer_t message, OverlayMsg* overlayMsg, LinkDescriptor* ld )
1918{
1919 // get service
1920 const ServiceID& service = ld->service; //overlayMsg->getService();
1921
1922 logging_debug( "Received data for service " << service.toString()
1923 << " on link " << overlayMsg->getDestinationLink().toString() );
1924
1925 // delegate data message
1926 CommunicationListener* lst = getListener(service);
1927 if(lst != NULL){
1928 lst->onMessage(
1929 message,
1930// overlayMsg->getSourceNode(),
1931// overlayMsg->getDestinationLink(),
1932 ld->remoteNode,
1933 ld->overlayId,
1934 overlayMsg->getSeqNum(),
1935 overlayMsg
1936 );
1937 }
1938
1939 return true;
1940}
1941
1942bool BaseOverlay::handleLostMessage( reboost::shared_buffer_t message, OverlayMsg* msg )
1943{
1944 /**
1945 * Deserialize MessageLost-Message
1946 *
1947 * - Type of lost message
1948 * - Hop count of lost message
1949 * - Source-LinkID of lost message
1950 */
1951 const uint8_t* buff = message(0, sizeof(uint8_t)*2).data();
1952 uint8_t type = buff[0];
1953 uint8_t hops = buff[1];
1954 LinkID linkid;
1955 linkid.deserialize(message(sizeof(uint8_t)*2));
1956
1957 logging_warn("Node " << msg->getSourceNode()
1958 << " informed us, that our message of type " << (int) type
1959 << " is lost after traveling " << (int) hops << " hops."
1960 << " (LinkID: " << linkid.toString());
1961
1962
1963 // TODO switch-case ?
1964
1965 // BRANCH: LinkRequest --> link request failed
1966 if ( type == OverlayMsg::typeLinkRequest )
1967 {
1968 __onLinkEstablishmentFailed(linkid);
1969 }
1970
1971 // BRANCH: Data --> link disrupted. Drop link.
1972 // (We could use something more advanced here. e.g. At least send a
1973 // keep-alive message and wait for a keep-alive reply.)
1974 if ( type == OverlayMsg::typeData )
1975 {
1976 LinkDescriptor* link_desc = getDescriptor(linkid);
1977
1978 if ( link_desc )
1979 {
1980 link_desc->failed = true;
1981 }
1982
1983 dropLink(linkid);
1984 }
1985
1986 // BRANCH: ping lost
1987 if ( type == OverlayMsg::typePing )
1988 {
1989 CommunicationListener* lst = getListener(msg->getService());
1990 if( lst != NULL )
1991 {
1992 lst->onPingLost(msg->getSourceNode());
1993 }
1994 }
1995
1996 return true;
1997}
1998
1999bool BaseOverlay::handlePing( OverlayMsg* overlayMsg, LinkDescriptor* ld )
2000{
2001 // TODO AKTUELL: implement interfaces: Node::ping(node); BaseOverlay::ping(node)
2002
2003 bool send_pong = false;
2004
2005 // inform application and ask permission to send a pong message
2006 CommunicationListener* lst = getListener(overlayMsg->getService());
2007 if( lst != NULL )
2008 {
2009 send_pong = lst->onPing(overlayMsg->getSourceNode());
2010 }
2011
2012 // send pong message if allowed
2013 if ( send_pong )
2014 {
2015 OverlayMsg pong_msg(OverlayMsg::typePong);
2016 pong_msg.setSeqNum(overlayMsg->getSeqNum());
2017
2018 // send message
2019 try
2020 {
2021 send_node( &pong_msg,
2022 overlayMsg->getSourceNode(),
2023 system_priority::OVERLAY,
2024 overlayMsg->getService() );
2025 }
2026 catch ( message_not_sent& e )
2027 {
2028 logging_info("Could not send Pong-Message to node: " <<
2029 overlayMsg->getSourceNode());
2030 }
2031 }
2032
2033 return true; // XXX when shall we return false..?
2034}
2035
2036bool BaseOverlay::handlePong( OverlayMsg* overlayMsg, LinkDescriptor* ld )
2037{
2038 // inform application
2039 CommunicationListener* lst = getListener(overlayMsg->getService());
2040 if( lst != NULL )
2041 {
2042 lst->onPong(overlayMsg->getSourceNode());
2043 }
2044
2045 return true; // XXX when shall we return false..?
2046}
2047
2048bool BaseOverlay::handleLinkUpdate( OverlayMsg* overlayMsg, LinkDescriptor* ld ) {
2049
2050 if( ld == NULL ) {
2051 logging_warn( "received overlay update message for link for "
2052 << "which we have no mapping" );
2053 return false;
2054 }
2055 logging_info("Received type update message on link " << ld );
2056
2057 // update our link mapping information for this link
2058 bool changed =
2059 ( ld->remoteNode != overlayMsg->getSourceNode() )
2060 || ( ld->service != overlayMsg->getService() );
2061
2062 // set parameters
2063 ld->up = true;
2064 ld->remoteNode = overlayMsg->getSourceNode();
2065 ld->remoteLink = overlayMsg->getSourceLink();
2066 ld->service = overlayMsg->getService();
2067 ld->autolink = overlayMsg->isAutoLink();
2068
2069 // if our link information changed, we send out an update, too
2070 if( changed ) {
2071 overlayMsg->swapRoles();
2072 overlayMsg->setSourceNode(nodeId);
2073 overlayMsg->setSourceLink(ld->overlayId);
2074 overlayMsg->setService(ld->service);
2075 send( overlayMsg, ld, system_priority::OVERLAY );
2076 }
2077
2078 // service registered? no-> error!
2079 if( !communicationListeners.contains( ld->service ) ) {
2080 logging_warn( "Link up: event listener has not been registered" );
2081 return false;
2082 }
2083
2084 // default or no service registered?
2085 CommunicationListener* listener = communicationListeners.get( ld->service );
2086 if( listener == NULL || listener == &CommunicationListener::DEFAULT ) {
2087 logging_warn("Link up: event listener is default or null!" );
2088 return true;
2089 }
2090
2091 // update descriptor
2092 ld->listener = listener;
2093 ld->setAutoUsed();
2094 ld->setAlive();
2095
2096 // ask the service whether it wants to accept this link
2097 if( !listener->onLinkRequest(ld->remoteNode) ) {
2098
2099 logging_debug("Link id=" << ld->overlayId.toString() <<
2100 " has been denied by service " << ld->service.toString() << ", dropping link");
2101
2102 // prevent onLinkDown calls to the service
2103 ld->listener = &CommunicationListener::DEFAULT;
2104
2105 // drop the link
2106 dropLink( ld->overlayId );
2107 return true;
2108 }
2109
2110 // set link up
2111 ld->up = true;
2112 logging_info( "Link has been accepted by service and is up: " << ld );
2113
2114 // auto links: link has been accepted -> send queued messages
2115 if( ld->messageQueue.size() > 0 ) {
2116 logging_info( "Sending out queued messages on link " << ld );
2117 foreach( LinkDescriptor::message_queue_entry msg, ld->messageQueue )
2118 {
2119 sendMessage( msg.message, ld->overlayId, msg.priority );
2120 }
2121 ld->messageQueue.clear();
2122 }
2123
2124 // call the notification functions
2125 listener->onLinkUp( ld->overlayId, ld->remoteNode );
2126 sideport->onLinkUp( ld->overlayId, nodeId, ld->remoteNode, this->spovnetId );
2127
2128
2129 // notify the application if this is the first link to a different node
2130 if ( not connected )
2131 {
2132 connected = true;
2133
2134 foreach( NodeListener* i, nodeListeners )
2135 i->onOverlayConnected( spovnetId );
2136 }
2137
2138 return true;
2139}
2140
2141/// handle a link request and reply
2142bool BaseOverlay::handleLinkRequest( OverlayMsg* overlayMsg, LinkDescriptor* ld ) {
2143
2144 //TODO: Check if a request has already been sent using getSourceLink() ...
2145
2146 // create link descriptor
2147 LinkDescriptor* ldn = addDescriptor();
2148
2149 // flags
2150 ldn->up = true;
2151 ldn->fromRemote = true;
2152 ldn->relayed = true;
2153
2154 // parameters
2155 ldn->service = overlayMsg->getService();
2156 ldn->listener = getListener(ldn->service);
2157 ldn->remoteNode = overlayMsg->getSourceNode();
2158 ldn->remoteLink = overlayMsg->getSourceLink();
2159 ldn->hops = overlayMsg->getNumHops();
2160
2161 // initialize sequence numbers
2162 ldn->last_sent_seqnum = SequenceNumber::createRandomSeqNum_Short();
2163 logging_debug("Creating new link with initial SeqNum: " << ldn->last_sent_seqnum);
2164
2165
2166 // update time-stamps
2167 ldn->setAlive();
2168 ldn->setAutoUsed();
2169
2170 logging_info( "Link request received from node id="
2171 << overlayMsg->getSourceNode()
2172 << " LINK: "
2173 << ldn);
2174
2175 // create reply message and send back!
2176 overlayMsg->swapRoles(); // swap source/destination
2177 overlayMsg->setType(OverlayMsg::typeLinkReply);
2178 overlayMsg->setSourceLink(ldn->overlayId);
2179 overlayMsg->setRelayed(true);
2180// overlayMsg->setRouteRecord(true);
2181 overlayMsg->setSeqNum(ld->last_sent_seqnum);
2182
2183 // TODO aktuell do the same thing in the typeLinkRequest-Message, too. But be careful with race conditions!!
2184 // append our endpoints (for creation of a direct link)
2185 overlayMsg->set_payload_message(bc->getEndpointDescriptor().serialize());
2186
2187 send( overlayMsg, ld, system_priority::OVERLAY ); // send back to link
2188
2189 // inform listener
2190 if(ldn != NULL && ldn->listener != NULL)
2191 ldn->listener->onLinkUp( ldn->overlayId, ldn->remoteNode );
2192
2193 return true;
2194}
2195
2196bool BaseOverlay::handleLinkReply(
2197 OverlayMsg* overlayMsg,
2198 reboost::shared_buffer_t sub_message,
2199 LinkDescriptor* ld )
2200{
2201 // deserialize EndpointDescriptor
2202 EndpointDescriptor endpoints;
2203 endpoints.deserialize(sub_message);
2204
2205 // find link request
2206 LinkDescriptor* ldn = getDescriptor(overlayMsg->getDestinationLink());
2207
2208 // not found? yes-> drop with error!
2209 if (ldn == NULL) {
2210 logging_error( "No link request pending for "
2211 << overlayMsg->getDestinationLink().toString() );
2212 return false;
2213 }
2214 logging_debug("Handling link reply for " << ldn )
2215
2216 // check if already up
2217 if (ldn->up) {
2218 logging_warn( "Link already up: " << ldn );
2219 return true;
2220 }
2221
2222 // debug message
2223 logging_info( "Link request reply received. Establishing link"
2224 << " for service " << overlayMsg->getService().toString()
2225 << " with local id=" << overlayMsg->getDestinationLink()
2226 << " and remote link id=" << overlayMsg->getSourceLink()
2227 << " to " << endpoints.toString()
2228 << " hop count: " << overlayMsg->getRouteRecord().size()
2229 );
2230
2231 // set local link descriptor data
2232 ldn->up = true;
2233 ldn->relayed = true;
2234 ldn->service = overlayMsg->getService();
2235 ldn->listener = getListener(ldn->service);
2236 ldn->remoteLink = overlayMsg->getSourceLink();
2237 ldn->remoteNode = overlayMsg->getSourceNode();
2238
2239 // update timestamps
2240 ldn->setAlive();
2241 ldn->setAutoUsed();
2242
2243 // auto links: link has been accepted -> send queued messages
2244 if( ldn->messageQueue.size() > 0 ) {
2245 logging_info( "Sending out queued messages on link " <<
2246 ldn->overlayId.toString() );
2247 foreach( LinkDescriptor::message_queue_entry msg, ldn->messageQueue )
2248 {
2249 sendMessage( msg.message, ldn->overlayId, msg.priority );
2250 }
2251 ldn->messageQueue.clear();
2252 }
2253
2254 // inform listeners about new link
2255 ldn->listener->onLinkUp( ldn->overlayId, ldn->remoteNode );
2256
2257 // try to replace relay link with direct link
2258 ldn->retryCounter = 3;
2259 ldn->endpoint = endpoints;
2260 ldn->communicationId = bc->establishLink( ldn->endpoint );
2261
2262 return true;
2263}
2264
2265/// handle a keep-alive message for a link
2266bool BaseOverlay::handleLinkAlive( OverlayMsg* overlayMsg, LinkDescriptor* ld )
2267{
2268 LinkDescriptor* rld = getDescriptor(overlayMsg->getDestinationLink());
2269
2270 if ( rld != NULL )
2271 {
2272 logging_debug("Keep-Alive for " << overlayMsg->getDestinationLink() );
2273 if (overlayMsg->isRouteRecord())
2274 {
2275 rld->routeRecord = overlayMsg->getRouteRecord();
2276 }
2277
2278 // set alive
2279 rld->setAlive();
2280
2281
2282 /* answer keep alive */
2283 if ( overlayMsg->getType() == OverlayMsg::typeKeepAlive )
2284 {
2285 time_t now = time(NULL);
2286 logging_debug("[BaseOverlay] Answering KeepAlive over "
2287 << ld->to_string()
2288 << " after "
2289 << difftime( now, ld->keepAliveSent )
2290 << "s");
2291
2292 OverlayMsg msg( OverlayMsg::typeKeepAliveReply,
2293 OverlayInterface::OVERLAY_SERVICE_ID, nodeId, ld->remoteNode );
2294 msg.setRouteRecord(true);
2295 ld->keepAliveSent = now;
2296 send_link( &msg, ld->overlayId, system_priority::OVERLAY );
2297 }
2298
2299 return true;
2300 }
2301 else
2302 {
2303 logging_error("No Keep-Alive for "
2304 << overlayMsg->getDestinationLink() << ": link unknown." );
2305 return false;
2306 }
2307}
2308
2309/// handle a direct link message
2310bool BaseOverlay::handleLinkDirect( OverlayMsg* overlayMsg, LinkDescriptor* ld ) {
2311 logging_debug( "Received direct link replacement request" );
2312
2313 /// get destination overlay link
2314 LinkDescriptor* rld = getDescriptor( overlayMsg->getDestinationLink() );
2315 if (rld == NULL || ld == NULL) {
2316 logging_error("Direct link replacement: Link "
2317 << overlayMsg->getDestinationLink() << "not found error." );
2318 return false;
2319 }
2320 logging_info( "Received direct link convert notification for " << rld );
2321
2322 // update information
2323 rld->communicationId = ld->communicationId;
2324 rld->communicationUp = true;
2325 rld->relayed = false;
2326
2327 // mark used and alive!
2328 rld->setAlive();
2329 rld->setAutoUsed();
2330
2331 // erase the original descriptor
2332 eraseDescriptor(ld->overlayId);
2333
2334 // inform listener
2335 if( rld->listener != NULL)
2336 rld->listener->onLinkChanged( rld->overlayId, rld->remoteNode );
2337
2338 return true;
2339}
2340
2341/// handles an incoming message
2342bool BaseOverlay::handleMessage( reboost::shared_buffer_t message, LinkDescriptor* ld,
2343 const LinkID bcLink )
2344{
2345 // decapsulate overlay message
2346 OverlayMsg* overlayMsg = new OverlayMsg();
2347 reboost::shared_buffer_t sub_buff = overlayMsg->deserialize_from_shared_buffer(message);
2348
2349// // XXX debug
2350// logging_info( "Received overlay message."
2351// << " Hops: " << (int) overlayMsg->getNumHops()
2352// << " Type: " << (int) overlayMsg->getType()
2353// << " Payload size: " << sub_buff.size()
2354// << " SeqNum: " << overlayMsg->getSeqNum() );
2355
2356
2357 // increase number of hops
2358 overlayMsg->increaseNumHops();
2359
2360 // refresh relay information
2361 refreshRelayInformation( overlayMsg, ld );
2362
2363 // update route record
2364 overlayMsg->addRouteRecord(nodeId);
2365
2366 // handle signaling messages (do not route!)
2367 if (overlayMsg->getType()>=OverlayMsg::typeSignalingStart &&
2368 overlayMsg->getType()<=OverlayMsg::typeSignalingEnd )
2369 {
2370 overlayInterface->onMessage(overlayMsg, sub_buff, NodeID::UNSPECIFIED, LinkID::UNSPECIFIED);
2371 delete overlayMsg;
2372 return true;
2373 }
2374
2375 // message for reached destination? no-> route message
2376 if (!overlayMsg->getDestinationNode().isUnspecified() &&
2377 overlayMsg->getDestinationNode() != nodeId ) {
2378 logging_debug("Routing message "
2379 << " from " << overlayMsg->getSourceNode()
2380 << " to " << overlayMsg->getDestinationNode()
2381 );
2382
2383// // XXX testing AKTUELL
2384// logging_info("MARIO: Routing message "
2385// << " from " << overlayMsg->getSourceNode()
2386// << " to " << overlayMsg->getDestinationNode() );
2387// logging_info( "Type: " << overlayMsg->getType() << " Payload size: " << sub_buff.size());
2388 overlayMsg->append_buffer(sub_buff);
2389
2390 route( overlayMsg, ld->remoteNode );
2391 delete overlayMsg;
2392 return true;
2393 }
2394
2395
2396 /* handle base overlay message */
2397 bool ret = false; // return value
2398 try
2399 {
2400 switch ( overlayMsg->getType() )
2401 {
2402 // data transport messages
2403 case OverlayMsg::typeData:
2404 {
2405 // NOTE: On relayed links, »ld« does not point to our link, but on the relay link.
2406 LinkDescriptor* end_to_end_ld = getDescriptor(overlayMsg->getDestinationLink());
2407
2408 if ( ! end_to_end_ld )
2409 {
2410 logging_warn("Error: Data-Message claims to belong to a link we don't know.");
2411
2412 ret = false;
2413 }
2414 else
2415 {
2416 // message received --> link is alive
2417 end_to_end_ld->keepAliveReceived = time(NULL);
2418 // hop count on this link
2419 end_to_end_ld->hops = overlayMsg->getNumHops();
2420
2421 // * call handler *
2422 ret = handleData(sub_buff, overlayMsg, end_to_end_ld);
2423 }
2424
2425 break;
2426 }
2427 case OverlayMsg::typeMessageLost:
2428 ret = handleLostMessage(sub_buff, overlayMsg);
2429
2430 break;
2431
2432 // overlay setup messages
2433 case OverlayMsg::typeJoinRequest:
2434 ret = handleJoinRequest(sub_buff, overlayMsg->getSourceNode(), bcLink ); break;
2435 case OverlayMsg::typeJoinReply:
2436 ret = handleJoinReply(sub_buff, bcLink ); break;
2437
2438 // link specific messages
2439 case OverlayMsg::typeLinkRequest:
2440 ret = handleLinkRequest(overlayMsg, ld ); break;
2441 case OverlayMsg::typeLinkReply:
2442 ret = handleLinkReply(overlayMsg, sub_buff, ld ); break;
2443 case OverlayMsg::typeLinkUpdate:
2444 ret = handleLinkUpdate(overlayMsg, ld ); break;
2445 case OverlayMsg::typeKeepAlive:
2446 case OverlayMsg::typeKeepAliveReply:
2447 ret = handleLinkAlive(overlayMsg, ld ); break;
2448 case OverlayMsg::typeLinkDirect:
2449 ret = handleLinkDirect(overlayMsg, ld ); break;
2450
2451 case OverlayMsg::typeLinkClose:
2452 {
2453 dropLink(overlayMsg->getDestinationLink());
2454 __removeDroppedLink(overlayMsg->getDestinationLink());
2455
2456 break;
2457 }
2458
2459 /// ping over overlay path (or similar)
2460 case OverlayMsg::typePing:
2461 {
2462 ret = handlePing(overlayMsg, ld);
2463 break;
2464 }
2465 case OverlayMsg::typePong:
2466 {
2467 ret = handlePong(overlayMsg, ld);
2468 break;
2469 }
2470
2471 // handle unknown message type
2472 default:
2473 {
2474 logging_error( "received message in invalid state! don't know " <<
2475 "what to do with this message of type " << overlayMsg->getType() );
2476 ret = false;
2477 break;
2478 }
2479 }
2480 }
2481 catch ( reboost::illegal_sub_buffer& e )
2482 {
2483 logging_error( "Failed to create sub-buffer while reading message: »"
2484 << e.what()
2485 << "« Message too short? ");
2486
2487 assert(false); // XXX
2488 }
2489
2490 // free overlay message and return value
2491 delete overlayMsg;
2492 return ret;
2493}
2494
2495// ----------------------------------------------------------------------------
2496
2497void BaseOverlay::broadcastMessage(reboost::message_t message, const ServiceID& service, uint8_t priority) {
2498
2499 logging_debug( "broadcasting message to all known nodes " <<
2500 "in the overlay from service " + service.toString() );
2501
2502 OverlayInterface::NodeList nodes = overlayInterface->getKnownNodes(true);
2503 for(size_t i=0; i<nodes.size(); i++){
2504 NodeID& id = nodes.at(i);
2505 if(id == this->nodeId) continue; // don't send to ourselfs
2506
2507 sendMessage( message, id, priority, service );
2508 }
2509}
2510
2511/// return the overlay neighbors
2512vector<NodeID> BaseOverlay::getOverlayNeighbors(bool deep) const {
2513 // the known nodes _can_ also include our node, so we remove ourself
2514 vector<NodeID> nodes = overlayInterface->getKnownNodes(deep);
2515 vector<NodeID>::iterator i = find( nodes.begin(), nodes.end(), this->nodeId );
2516 if( i != nodes.end() ) nodes.erase( i );
2517 return nodes;
2518}
2519
2520const NodeID& BaseOverlay::getNodeID(const LinkID& lid) const {
2521 if( lid == LinkID::UNSPECIFIED ) return nodeId;
2522 const LinkDescriptor* ld = getDescriptor(lid);
2523 if( ld == NULL ) return NodeID::UNSPECIFIED;
2524 else return ld->remoteNode;
2525}
2526
2527vector<LinkID> BaseOverlay::getLinkIDs( const NodeID& nid ) const {
2528 vector<LinkID> linkvector;
2529 foreach( LinkDescriptor* ld, links ) {
2530 if( ld->remoteNode == nid || nid == NodeID::UNSPECIFIED ) {
2531 linkvector.push_back( ld->overlayId );
2532 }
2533 }
2534 return linkvector;
2535}
2536
2537
2538void BaseOverlay::onNodeJoin(const NodeID& node) {
2539 JoiningNodes::iterator i = std::find( joiningNodes.begin(), joiningNodes.end(), node );
2540 if( i == joiningNodes.end() ) return;
2541
2542 logging_info( "node has successfully joined baseoverlay and overlay structure "
2543 << node.toString() );
2544
2545 joiningNodes.erase( i );
2546}
2547
2548void BaseOverlay::eventFunction() {
2549 stabilizeRelays();
2550 stabilizeLinks();
2551 updateVisual();
2552}
2553
2554
2555
2556/* link status */
2557bool BaseOverlay::isLinkDirect(const ariba::LinkID& lnk) const
2558{
2559 const LinkDescriptor* ld = getDescriptor(lnk);
2560
2561 if (!ld)
2562 return false;
2563
2564 return ld->communicationUp && !ld->relayed;
2565}
2566
2567int BaseOverlay::getHopCount(const ariba::LinkID& lnk) const
2568{
2569 const LinkDescriptor* ld = getDescriptor(lnk);
2570
2571 if (!ld)
2572 return -1;
2573
2574 return ld->hops;
2575}
2576
2577
2578bool BaseOverlay::isLinkVital(const LinkDescriptor* link) const
2579{
2580 time_t now = time(NULL);
2581
2582 return link->up && difftime( now, link->keepAliveReceived ) <= KEEP_ALIVE_TIME_OUT; // TODO is this too long for a "vital" link..?
2583}
2584
2585bool BaseOverlay::isLinkDirectVital(const LinkDescriptor* link) const
2586{
2587 return isLinkVital(link) && link->communicationUp && !link->relayed;
2588}
2589
2590/* [link status] */
2591
2592
2593void BaseOverlay::updateVisual(){
2594
2595 //
2596 // update base overlay structure
2597 //
2598
2599 static NodeID pre = NodeID::UNSPECIFIED;
2600 static NodeID suc = NodeID::UNSPECIFIED;
2601
2602 vector<NodeID> nodes = this->getOverlayNeighbors(false);
2603
2604 if(nodes.size() == 0){
2605
2606 if(pre != NodeID::UNSPECIFIED){
2607 visualInstance.visDisconnect(visualIdOverlay, this->nodeId, pre, "");
2608 pre = NodeID::UNSPECIFIED;
2609 }
2610 if(suc != NodeID::UNSPECIFIED){
2611 visualInstance.visDisconnect(visualIdOverlay, this->nodeId, suc, "");
2612 suc = NodeID::UNSPECIFIED;
2613 }
2614
2615 } // if(nodes.size() == 0)
2616
2617 if(nodes.size() == 1){
2618 // only one node, make this pre and succ
2619 // and then go into the node.size()==2 case
2620 //nodes.push_back(nodes.at(0));
2621
2622 if(pre != nodes.at(0)){
2623 pre = nodes.at(0);
2624 if(pre != NodeID::UNSPECIFIED)
2625 visualInstance.visConnect(visualIdOverlay, this->nodeId, pre, "");
2626 }
2627 }
2628
2629 if(nodes.size() == 2){
2630
2631 // old finger
2632 if(nodes.at(0) != pre){
2633 if(pre != NodeID::UNSPECIFIED)
2634 visualInstance.visDisconnect(visualIdOverlay, this->nodeId, pre, "");
2635 pre = NodeID::UNSPECIFIED;
2636 }
2637 if(nodes.at(1) != suc){
2638 if(suc != NodeID::UNSPECIFIED)
2639 visualInstance.visDisconnect(visualIdOverlay, this->nodeId, suc, "");
2640 suc = NodeID::UNSPECIFIED;
2641 }
2642
2643 // connect with fingers
2644 if(pre == NodeID::UNSPECIFIED){
2645 pre = nodes.at(0);
2646 if(pre != NodeID::UNSPECIFIED)
2647 visualInstance.visConnect(visualIdOverlay, this->nodeId, pre, "");
2648 }
2649 if(suc == NodeID::UNSPECIFIED){
2650 suc = nodes.at(1);
2651 if(suc != NodeID::UNSPECIFIED)
2652 visualInstance.visConnect(visualIdOverlay, this->nodeId, suc, "");
2653 }
2654
2655 } //if(nodes.size() == 2)
2656
2657// {
2658// logging_error("================================");
2659// logging_error("my nodeid " << nodeId.get(MAX_KEYLENGTH-16, 16));
2660// logging_error("================================");
2661// if(nodes.size()>= 1){
2662// logging_error("real pre " << nodes.at(0).toString());
2663// logging_error("real pre " << nodes.at(0).get(MAX_KEYLENGTH-16, 16));
2664// }
2665// if(nodes.size()>= 2){
2666// logging_error("real suc " << nodes.at(1).toString());
2667// logging_error("real suc " << nodes.at(1).get(MAX_KEYLENGTH-16, 16));
2668// }
2669// logging_error("================================");
2670// if(pre == NodeID::UNSPECIFIED){
2671// logging_error("pre: unspecified");
2672// }else{
2673// unsigned int prei = pre.get(MAX_KEYLENGTH-16, 16);
2674// logging_error("pre: " << prei);
2675// }
2676// if(suc == NodeID::UNSPECIFIED){
2677// logging_error("suc: unspecified");
2678// }else{
2679// unsigned int suci = suc.get(MAX_KEYLENGTH-16, 16);
2680// logging_error("suc: " << suci);
2681// }
2682// logging_error("================================");
2683// }
2684
2685 //
2686 // update base communication links
2687 //
2688
2689 static set<NodeID> linkset;
2690 set<NodeID> remotenodes;
2691 foreach( LinkDescriptor* ld, links ) {
2692 if (!isLinkVital(ld) || ld->service != OverlayInterface::OVERLAY_SERVICE_ID)
2693 continue;
2694
2695 if (ld->routeRecord.size()>1 && ld->relayed) {
2696 for (size_t i=1; i<ld->routeRecord.size(); i++)
2697 remotenodes.insert( ld->routeRecord[ld->routeRecord.size()-i-1] );
2698 } else {
2699 remotenodes.insert(ld->remoteNode);
2700 }
2701 }
2702
2703 // which links are old and need deletion?
2704 bool changed = false;
2705
2706 do{
2707 changed = false;
2708 foreach(NodeID n, linkset){
2709 if(remotenodes.find(n) == remotenodes.end()){
2710 visualInstance.visDisconnect(visualIdBase, this->nodeId, n, "");
2711 linkset.erase(n);
2712 changed = true;
2713 break;
2714 }
2715 }
2716 }while(changed);
2717
2718 // which links are new and need creation?
2719 do{
2720 changed = false;
2721 foreach(NodeID n, remotenodes){
2722 if(linkset.find(n) == linkset.end()){
2723 visualInstance.visConnect(visualIdBase, this->nodeId, n, "");
2724 linkset.insert(n);
2725 changed = true;
2726 break;
2727 }
2728 }
2729 }while(changed);
2730
2731}
2732
2733// ----------------------------------------------------------------------------
2734
2735std::string BaseOverlay::debugInformation() {
2736 std::stringstream s;
2737 int i=0;
2738
2739 // dump overlay information
2740 s << "Long debug info ... [see below]" << endl << endl;
2741 s << "--- overlay information ----------------------" << endl;
2742 s << overlayInterface->debugInformation() << endl;
2743
2744 // dump link state
2745 s << "--- link state -------------------------------" << endl;
2746 foreach( LinkDescriptor* ld, links ) {
2747 s << "link " << i << ": " << ld << endl;
2748 i++;
2749 }
2750 s << endl << endl;
2751
2752 return s.str();
2753}
2754
2755}} // namespace ariba, overlay
Note: See TracBrowser for help on using the repository browser.