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

Last change on this file since 6873 was 6873, checked in by mies, 14 years ago
File size: 65.1 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/DHTMessage.h"
54#include "ariba/overlay/messages/JoinRequest.h"
55#include "ariba/overlay/messages/JoinReply.h"
56
57#include "ariba/utility/visual/OvlVis.h"
58#include "ariba/utility/visual/DddVis.h"
59#include "ariba/utility/visual/ServerVis.h"
60
61namespace ariba {
62namespace overlay {
63
64#define visual ariba::utility::DddVis::instance()
65#define visualIdOverlay ariba::utility::ServerVis::NETWORK_ID_BASE_OVERLAY
66#define visualIdBase ariba::utility::ServerVis::NETWORK_ID_BASE_COMMUNICATION
67
68class ValueEntry {
69public:
70 ValueEntry( const Data& value ) : ttl(0), last_update(time(NULL)),
71 last_change(time(NULL)), value(value.clone()) {
72 }
73
74 ValueEntry( const ValueEntry& value ) :
75 ttl(value.ttl), last_update(value.last_update),
76 last_change(value.last_change), value(value.value.clone()) {
77
78 }
79
80 ~ValueEntry() {
81 value.release();
82 }
83
84 void refresh() {
85 last_update = time(NULL);
86 }
87
88 void set_value( const Data& value ) {
89 this->value.release();
90 this->value = value.clone();
91 this->last_change = time(NULL);
92 this->last_update = time(NULL);
93 }
94
95 Data get_value() const {
96 return value;
97 }
98
99 uint16_t get_ttl() const {
100 return ttl;
101 }
102
103 void set_ttl( uint16_t ttl ) {
104 this->ttl = ttl;
105 }
106
107 bool is_ttl_elapsed() const {
108 // is persistent? yes-> always return false
109 if (ttl==0) return false;
110
111 // return true, if ttl is elapsed
112 return ( difftime( time(NULL), this->last_update ) >= ttl );
113 }
114
115private:
116 uint16_t ttl;
117 time_t last_update;
118 time_t last_change;
119 Data value;
120};
121
122class DHTEntry {
123public:
124 Data key;
125 vector<ValueEntry> values;
126
127 vector<Data> get_values() {
128 vector<Data> vect;
129 BOOST_FOREACH( ValueEntry& e, values )
130 vect.push_back( e.get_value() );
131 return vect;
132 }
133
134 void erase_expired_entries() {
135 for (vector<ValueEntry>::iterator i = values.begin();
136 i != values.end(); i++ )
137 if (i->is_ttl_elapsed()) i = values.erase(i);
138 }
139};
140
141class DHT {
142public:
143 typedef vector<DHTEntry> Entries;
144 typedef vector<ValueEntry> Values;
145 Entries entries;
146 static const bool verbose = false;
147
148 static bool equals( const Data& lhs, const Data& rhs ) {
149 if (rhs.getLength()!=lhs.getLength()) return false;
150 for (int i=0; i<lhs.getLength()/8; i++)
151 if (lhs.getBuffer()[i] != rhs.getBuffer()[i]) return false;
152 return true;
153 }
154
155 void put( const Data& key, const Data& value, uint16_t ttl = 0 ) {
156
157 // find entry
158 for (size_t i=0; i<entries.size(); i++) {
159 DHTEntry& entry = entries.at(i);
160
161 // check if key is already known
162 if ( equals(entry.key, key) ) {
163
164 // check if value is already in values list
165 for (size_t j=0; j<entry.values.size(); j++) {
166 // found value already? yes-> refresh ttl
167 if ( equals(entry.values[j].get_value(), value) ) {
168 entry.values[j].refresh();
169 if (verbose)
170 std::cout << "DHT: Republished value. Refreshing value timestamp."
171 << std::endl;
172 return;
173 }
174 }
175
176 // new value-> add to entry
177 if (verbose)
178 std::cout << "DHT: Added value to "
179 << " key=" << key << " with value=" << value << std::endl;
180 entry.values.push_back( ValueEntry( value ) );
181 entry.values.back().set_ttl(ttl);
182 return;
183 }
184 }
185
186 // key is unknown-> add key value pair
187 if (verbose)
188 std::cout << "DHT: New key value pair "
189 << " key=" << key << " with value=" << value << std::endl;
190
191 // add new entry
192 entries.push_back( DHTEntry() );
193 DHTEntry& entry = entries.back();
194 entry.key = key.clone();
195 entry.values.push_back( ValueEntry(value) );
196 entry.values.back().set_ttl(ttl);
197 }
198
199 vector<Data> get( const Data& key ) {
200 // find entry
201 for (size_t i=0; i<entries.size(); i++) {
202 DHTEntry& entry = entries.at(i);
203 if ( equals(entry.key,key) )
204 return entry.get_values();
205 }
206 return vector<Data>();
207 }
208
209 bool remove( const Data& key ) {
210 // find entry
211 for (Entries::iterator i = entries.begin(); i != entries.end(); i++) {
212 DHTEntry& entry = *i;
213
214 // found? yes-> delete entry
215 if ( equals(entry.key, key) ) {
216 i = entries.erase(i);
217 return true;
218 }
219 }
220 return false;
221 }
222
223 bool remove( const Data& key, const Data& value ) {
224 // find entry
225 for (Entries::iterator i = entries.begin(); i != entries.end(); i++) {
226 DHTEntry& entry = *i;
227
228 // found? yes-> try to find value
229 if ( equals(entry.key, key) ) {
230 for (Values::iterator j = entry.values.begin();
231 j != entry.values.end(); j++) {
232
233 // value found? yes-> delete
234 if (equals(j->get_value(), value)) {
235 j = entry.values.erase(j);
236 return true;
237 }
238 }
239 }
240 }
241 return false;
242 }
243
244 void cleanup() {
245 // find entry
246 for (Entries::iterator i = entries.begin(); i != entries.end(); i++) {
247 DHTEntry& entry = *i;
248
249 for (Values::iterator j = entry.values.begin();
250 j != entry.values.end(); j++) {
251
252 // value found? yes-> delete
253 if (j->is_ttl_elapsed())
254 j = entry.values.erase(j);
255 }
256
257 if (entry.values.size()==0) i = entries.erase(i);
258 }
259 }
260};
261
262// ----------------------------------------------------------------------------
263
264/* *****************************************************************************
265 * PREREQUESITES
266 * ****************************************************************************/
267
268CommunicationListener* BaseOverlay::getListener( const ServiceID& service ) {
269 if( !communicationListeners.contains( service ) ) {
270 logging_error( "No listener found for service " << service.toString() );
271 return NULL;
272 }
273 CommunicationListener* listener = communicationListeners.get( service );
274 assert( listener != NULL );
275 return listener;
276}
277
278// link descriptor handling ----------------------------------------------------
279
280LinkDescriptor* BaseOverlay::getDescriptor( const LinkID& link, bool communication ) {
281 BOOST_FOREACH( LinkDescriptor* lp, links )
282 if ((communication ? lp->communicationId : lp->overlayId) == link)
283 return lp;
284 return NULL;
285}
286
287const LinkDescriptor* BaseOverlay::getDescriptor( const LinkID& link, bool communication ) const {
288 BOOST_FOREACH( const LinkDescriptor* lp, links )
289 if ((communication ? lp->communicationId : lp->overlayId) == link)
290 return lp;
291 return NULL;
292}
293
294/// erases a link descriptor
295void BaseOverlay::eraseDescriptor( const LinkID& link, bool communication ) {
296 for ( vector<LinkDescriptor*>::iterator i = links.begin(); i!= links.end(); i++) {
297 LinkDescriptor* ld = *i;
298 if ((communication ? ld->communicationId : ld->overlayId) == link) {
299 delete ld;
300 links.erase(i);
301 break;
302 }
303 }
304}
305
306/// adds a link descriptor
307LinkDescriptor* BaseOverlay::addDescriptor( const LinkID& link ) {
308 LinkDescriptor* desc = getDescriptor( link );
309 if ( desc == NULL ) {
310 desc = new LinkDescriptor();
311 if (!link.isUnspecified()) desc->overlayId = link;
312 links.push_back(desc);
313 }
314 return desc;
315}
316
317/// returns a auto-link descriptor
318LinkDescriptor* BaseOverlay::getAutoDescriptor( const NodeID& node, const ServiceID& service ) {
319 // search for a descriptor that is already up
320 BOOST_FOREACH( LinkDescriptor* lp, links )
321 if (lp->autolink && lp->remoteNode == node && lp->service == service && lp->up && lp->keepAliveMissed == 0)
322 return lp;
323 // if not found, search for one that is about to come up...
324 BOOST_FOREACH( LinkDescriptor* lp, links )
325 if (lp->autolink && lp->remoteNode == node && lp->service == service && lp->keepAliveMissed == 0 )
326 return lp;
327 return NULL;
328}
329
330/// stabilizes link information
331void BaseOverlay::stabilizeLinks() {
332 // send keep-alive messages over established links
333 BOOST_FOREACH( LinkDescriptor* ld, links ) {
334 if (!ld->up) continue;
335 OverlayMsg msg( OverlayMsg::typeLinkAlive,
336 OverlayInterface::OVERLAY_SERVICE_ID, nodeId, ld->remoteNode );
337 if (ld->relayed) msg.setRouteRecord(true);
338 send_link( &msg, ld->overlayId );
339 }
340
341 // iterate over all links and check for time boundaries
342 vector<LinkDescriptor*> oldlinks;
343 time_t now = time(NULL);
344 BOOST_FOREACH( LinkDescriptor* ld, links ) {
345
346 // keep alives and not up? yes-> link connection request is stale!
347 if ( !ld->up && difftime( now, ld->keepAliveTime ) >= 2 ) {
348
349 // increase counter
350 ld->keepAliveMissed++;
351
352 // missed more than four keep-alive messages (10 sec)? -> drop link
353 if (ld->keepAliveMissed > 4) {
354 logging_info( "Link connection request is stale, closing: " << ld );
355 oldlinks.push_back( ld );
356 continue;
357 }
358 }
359
360 if (!ld->up) continue;
361
362 // remote used as relay flag
363 if ( ld->relaying && difftime( now, ld->timeRelaying ) > 10)
364 ld->relaying = false;
365
366 // drop links that are dropped and not used as relay
367 if (ld->dropAfterRelaying && !ld->relaying && !ld->autolink) {
368 oldlinks.push_back( ld );
369 continue;
370 }
371
372 // auto-link time exceeded?
373 if ( ld->autolink && difftime( now, ld->lastuse ) > 30 ) {
374 oldlinks.push_back( ld );
375 continue;
376 }
377
378 // keep alives missed? yes->
379 if ( difftime( now, ld->keepAliveTime ) > 2 ) {
380
381 // increase counter
382 ld->keepAliveMissed++;
383
384 // missed more than four keep-alive messages (4 sec)? -> drop link
385 if (ld->keepAliveMissed >= 4) {
386 logging_info( "Link is stale, closing: " << ld );
387 oldlinks.push_back( ld );
388 continue;
389 }
390 }
391 }
392
393 // drop links
394 BOOST_FOREACH( LinkDescriptor* ld, oldlinks ) {
395 logging_info( "Link timed out. Dropping " << ld );
396 ld->relaying = false;
397 dropLink( ld->overlayId );
398 }
399
400 // show link state
401 counter++;
402 if (counter>=4) showLinks();
403 if (counter>=4 || counter<0) counter = 0;
404}
405
406
407std::string BaseOverlay::getLinkHTMLInfo() {
408 std::ostringstream s;
409 vector<NodeID> nodes;
410 if (links.size()==0) {
411 s << "<h2 style=\"color=#606060\">No links established!</h2>";
412 } else {
413 s << "<h2 style=\"color=#606060\">Links</h2>";
414 s << "<table width=\"100%\" cellpadding=\"0\" border=\"0\" cellspacing=\"0\">";
415 s << "<tr style=\"background-color=#ffe0e0\">";
416 s << "<td><b>Link ID</b></td><td><b>Remote ID</b></td><td><b>Relay path</b></td>";
417 s << "</tr>";
418
419 int i=0;
420 BOOST_FOREACH( LinkDescriptor* ld, links ) {
421 if (!ld->isVital() || ld->service != OverlayInterface::OVERLAY_SERVICE_ID) continue;
422 bool found = false;
423 BOOST_FOREACH(NodeID& id, nodes)
424 if (id == ld->remoteNode) found = true;
425 if (found) continue;
426 i++;
427 nodes.push_back(ld->remoteNode);
428 if ((i%1) == 1) s << "<tr style=\"background-color=#f0f0f0;\">";
429 else s << "<tr>";
430 s << "<td>" << ld->overlayId.toString().substr(0,4) << "..</td>";
431 s << "<td>" << ld->remoteNode.toString().substr(0,4) << "..</td>";
432 s << "<td>";
433 if (ld->routeRecord.size()>1 && ld->relayed) {
434 for (size_t i=1; i<ld->routeRecord.size(); i++)
435 s << ld->routeRecord[ld->routeRecord.size()-i-1].toString().substr(0,4) << ".. ";
436 } else {
437 s << "Direct";
438 }
439 s << "</td>";
440 s << "</tr>";
441 }
442 s << "</table>";
443 }
444 return s.str();
445}
446
447/// shows the current link state
448void BaseOverlay::showLinks() {
449 int i=0;
450 logging_info("--- link state -------------------------------");
451 BOOST_FOREACH( LinkDescriptor* ld, links ) {
452 logging_info("link " << i << ": " << ld);
453 i++;
454 }
455 logging_info("----------------------------------------------");
456}
457
458/// compares two arbitrary links to the same node
459int BaseOverlay::compare( const LinkID& lhs, const LinkID& rhs ) {
460 LinkDescriptor* lhsld = getDescriptor(lhs);
461 LinkDescriptor* rhsld = getDescriptor(rhs);
462 if (lhsld==NULL || rhsld==NULL
463 || !lhsld->up || !rhsld->up
464 || lhsld->remoteNode != rhsld->remoteNode) return -1;
465
466 if ((lhsld->remoteLink^lhsld->overlayId)<(rhsld->remoteLink^lhsld->overlayId) )
467 return -1;
468
469 return 1;
470}
471
472
473// internal message delivery ---------------------------------------------------
474
475/// routes a message to its destination node
476void BaseOverlay::route( OverlayMsg* message ) {
477
478 // exceeded time-to-live? yes-> drop message
479 if (message->getNumHops() > message->getTimeToLive()) {
480 logging_warn("Message exceeded TTL. Dropping message and relay routes"
481 "for recovery.");
482 removeRelayNode(message->getDestinationNode());
483 return;
484 }
485
486 // no-> forward message
487 else {
488 // destinastion myself? yes-> handle message
489 if (message->getDestinationNode() == nodeId) {
490 logging_warn("Usually I should not route messages to myself!");
491 Message msg;
492 msg.encapsulate(message);
493 handleMessage( &msg, NULL );
494 } else {
495 // no->send message to next hop
496 send( message, message->getDestinationNode() );
497 }
498 }
499}
500
501/// sends a message to another node, delivers it to the base overlay class
502seqnum_t BaseOverlay::send( OverlayMsg* message, const NodeID& destination ) {
503 LinkDescriptor* next_link = NULL;
504
505 // drop messages to unspecified destinations
506 if (destination.isUnspecified()) return -1;
507
508 // send messages to myself -> handle message and drop warning!
509 if (destination == nodeId) {
510 logging_warn("Sent message to myself. Handling message.")
511 Message msg;
512 msg.encapsulate(message);
513 handleMessage( &msg, NULL );
514 return -1;
515 }
516
517 // use relay path?
518 if (message->isRelayed()) {
519 next_link = getRelayLinkTo( destination );
520 if (next_link != NULL) {
521 next_link->setRelaying();
522 return bc->sendMessage(next_link->communicationId, message);
523 } else {
524 logging_warn("Could not send message. No relay hop found to "
525 << destination << " -- trying to route over overlay paths ...")
526// logging_error("ERROR: " << debugInformation() );
527 // return -1;
528 }
529 }
530
531 // last resort -> route over overlay path
532 LinkID next_id = overlayInterface->getNextLinkId( destination );
533 if (next_id.isUnspecified()) {
534 logging_warn("Could not send message. No next hop found to " <<
535 destination );
536 logging_error("ERROR: " << debugInformation() );
537 return -1;
538 }
539
540 // get link descriptor, up and running? yes-> send message
541 next_link = getDescriptor(next_id);
542 if (next_link != NULL && next_link->up) {
543 // send message over relayed link
544 return send(message, next_link);
545 }
546
547 // no-> error, dropping message
548 else {
549 logging_warn("Could not send message. Link not known or up");
550 logging_error("ERROR: " << debugInformation() );
551 return -1;
552 }
553
554 // not reached-> fail
555 return -1;
556}
557
558/// send a message using a link descriptor, delivers it to the base overlay class
559seqnum_t BaseOverlay::send( OverlayMsg* message, LinkDescriptor* ldr, bool ignore_down ) {
560 // check if null
561 if (ldr == NULL) {
562 logging_error("Can not send message to " << message->getDestinationAddress());
563 return -1;
564 }
565
566 // check if up
567 if (!ldr->up && !ignore_down) {
568 logging_error("Can not send message. Link not up:" << ldr );
569 logging_error("DEBUG_INFO: " << debugInformation() );
570 return -1;
571 }
572 LinkDescriptor* ld = NULL;
573
574 // handle relayed link
575 if (ldr->relayed) {
576 logging_debug("Resolving direct link for relayed link to "
577 << ldr->remoteNode);
578 ld = getRelayLinkTo( ldr->remoteNode );
579 if (ld==NULL) {
580 logging_error("No relay path found to link " << ldr );
581 logging_error("DEBUG_INFO: " << debugInformation() );
582 return -1;
583 }
584 ld->setRelaying();
585 message->setRelayed(true);
586 } else
587 ld = ldr;
588
589 // handle direct link
590 if (ld->communicationUp) {
591 logging_debug("send(): Sending message over direct link.");
592 return bc->sendMessage( ld->communicationId, message );
593 } else {
594 logging_error("send(): Could not send message. "
595 "Not a relayed link and direct link is not up.");
596 return -1;
597 }
598 return -1;
599}
600
601seqnum_t BaseOverlay::send_node( OverlayMsg* message, const NodeID& remote,
602 const ServiceID& service) {
603 message->setSourceNode(nodeId);
604 message->setDestinationNode(remote);
605 message->setService(service);
606 send( message, remote );
607}
608
609seqnum_t BaseOverlay::send_link( OverlayMsg* message, const LinkID& link,bool ignore_down ) {
610 LinkDescriptor* ld = getDescriptor(link);
611 if (ld==NULL) {
612 logging_error("Cannot find descriptor to link id=" << link.toString());
613 return -1;
614 }
615 message->setSourceNode(nodeId);
616 message->setDestinationNode(ld->remoteNode);
617
618 message->setSourceLink(ld->overlayId);
619 message->setDestinationLink(ld->remoteLink);
620
621 message->setService(ld->service);
622 message->setRelayed(ld->relayed);
623 return send( message, ld, ignore_down );
624}
625
626// relay route management ------------------------------------------------------
627
628/// stabilize relay information
629void BaseOverlay::stabilizeRelays() {
630 vector<relay_route>::iterator i = relay_routes.begin();
631 while (i!=relay_routes.end() ) {
632 relay_route& route = *i;
633 LinkDescriptor* ld = getDescriptor(route.link);
634
635 // relay link still used and alive?
636 if (ld==NULL
637 || !ld->isDirectVital()
638 || difftime(route.used, time(NULL)) > 8) {
639 logging_info("Forgetting relay information to node "
640 << route.node.toString() );
641 i = relay_routes.erase(i);
642 } else
643 i++;
644 }
645}
646
647void BaseOverlay::removeRelayLink( const LinkID& link ) {
648 vector<relay_route>::iterator i = relay_routes.begin();
649 while (i!=relay_routes.end() ) {
650 relay_route& route = *i;
651 if (route.link == link ) i = relay_routes.erase(i); else i++;
652 }
653}
654
655void BaseOverlay::removeRelayNode( const NodeID& remote ) {
656 vector<relay_route>::iterator i = relay_routes.begin();
657 while (i!=relay_routes.end() ) {
658 relay_route& route = *i;
659 if (route.node == remote ) i = relay_routes.erase(i); else i++;
660 }
661}
662
663/// refreshes relay information
664void BaseOverlay::refreshRelayInformation( const OverlayMsg* message, LinkDescriptor* ld ) {
665
666 // handle relayed messages from real links only
667 if (ld == NULL
668 || ld->relayed
669 || message->getSourceNode()==nodeId ) return;
670
671 // update usage information
672 if (message->isRelayed()) {
673 // try to find source node
674 BOOST_FOREACH( relay_route& route, relay_routes ) {
675 // relay route found? yes->
676 if ( route.node == message->getDestinationNode() ) {
677 ld->setRelaying();
678 route.used = time(NULL);
679 }
680 }
681
682 }
683
684 // register relay path
685 if (message->isRegisterRelay()) {
686 // set relaying
687 ld->setRelaying();
688
689 // try to find source node
690 BOOST_FOREACH( relay_route& route, relay_routes ) {
691
692 // relay route found? yes->
693 if ( route.node == message->getSourceNode() ) {
694
695 // refresh timer
696 route.used = time(NULL);
697 LinkDescriptor* rld = getDescriptor(route.link);
698
699 // route has a shorter hop count or old link is dead? yes-> replace
700 if (route.hops > message->getNumHops()
701 || rld == NULL
702 || !rld->isDirectVital()) {
703 logging_info("Updating relay information to node "
704 << route.node.toString()
705 << " reducing to " << message->getNumHops() << " hops.");
706 route.hops = message->getNumHops();
707 route.link = ld->overlayId;
708 }
709 return;
710 }
711 }
712
713 // not found-> add new entry
714 relay_route route;
715 route.hops = message->getNumHops();
716 route.link = ld->overlayId;
717 route.node = message->getSourceNode();
718 route.used = time(NULL);
719 logging_info("Remembering relay information to node "
720 << route.node.toString());
721 relay_routes.push_back(route);
722 }
723}
724
725/// returns a known "vital" relay link which is up and running
726LinkDescriptor* BaseOverlay::getRelayLinkTo( const NodeID& remote ) {
727 // try to find source node
728 BOOST_FOREACH( relay_route& route, relay_routes ) {
729 if (route.node == remote ) {
730 LinkDescriptor* ld = getDescriptor( route.link );
731 if (ld==NULL || !ld->isDirectVital()) return NULL; else {
732 route.used = time(NULL);
733 return ld;
734 }
735 }
736 }
737 return NULL;
738}
739
740/* *****************************************************************************
741 * PUBLIC MEMBERS
742 * ****************************************************************************/
743
744use_logging_cpp(BaseOverlay);
745
746// ----------------------------------------------------------------------------
747
748BaseOverlay::BaseOverlay() :
749 bc(NULL), overlayInterface(NULL), nodeId(NodeID::UNSPECIFIED),
750 spovnetId(SpoVNetID::UNSPECIFIED), state(BaseOverlayStateInvalid),
751 sideport(&SideportListener::DEFAULT), started(false), counter(0) {
752 dht = new DHT();
753 localDHT = new DHT();
754}
755
756BaseOverlay::~BaseOverlay() {
757 delete dht;
758}
759
760// ----------------------------------------------------------------------------
761
762void BaseOverlay::start( BaseCommunication& _basecomm, const NodeID& _nodeid ) {
763 logging_info("Starting...");
764
765 // set parameters
766 bc = &_basecomm;
767 nodeId = _nodeid;
768
769 // register at base communication
770 bc->registerMessageReceiver( this );
771 bc->registerEventListener( this );
772
773 // timer for auto link management
774 Timer::setInterval( 1000 );
775 Timer::start();
776
777 started = true;
778 state = BaseOverlayStateInvalid;
779}
780
781void BaseOverlay::stop() {
782 logging_info("Stopping...");
783
784 // stop timer
785 Timer::stop();
786
787 // delete oberlay interface
788 if(overlayInterface != NULL) {
789 delete overlayInterface;
790 overlayInterface = NULL;
791 }
792
793 // unregister at base communication
794 bc->unregisterMessageReceiver( this );
795 bc->unregisterEventListener( this );
796
797 started = false;
798 state = BaseOverlayStateInvalid;
799}
800
801bool BaseOverlay::isStarted(){
802 return started;
803}
804
805// ----------------------------------------------------------------------------
806
807void BaseOverlay::joinSpoVNet(const SpoVNetID& id,
808 const EndpointDescriptor& bootstrapEp) {
809
810 if(id != spovnetId){
811 logging_error("attempt to join against invalid spovnet, call initiate first");
812 return;
813 }
814
815
816 //ovl.visShowNodeBubble ( ovlId, nodeId, "joining..." );
817 logging_info( "Starting to join spovnet " << id.toString() <<
818 " with nodeid " << nodeId.toString());
819
820 if(bootstrapEp.isUnspecified() && state == BaseOverlayStateInvalid){
821
822 // bootstrap against ourselfs
823 logging_info("joining spovnet locally");
824
825 overlayInterface->joinOverlay();
826 state = BaseOverlayStateCompleted;
827 BOOST_FOREACH( NodeListener* i, nodeListeners )
828 i->onJoinCompleted( spovnetId );
829
830 //ovl.visChangeNodeIcon ( ovlId, nodeId, OvlVis::ICON_ID_CAMERA );
831 //ovl.visChangeNodeColor( ovlId, nodeId, OvlVis::NODE_COLORS_GREEN );
832
833 logging_debug("starting overlay bootstrap module");
834 overlayBootstrap.start(this, spovnetId, nodeId);
835 overlayBootstrap.publish(bc->getEndpointDescriptor());
836
837 } else {
838
839 // bootstrap against another node
840 logging_info("joining spovnet remotely against " << bootstrapEp.toString());
841
842 const LinkID& lnk = bc->establishLink( bootstrapEp );
843 bootstrapLinks.push_back(lnk);
844 logging_info("join process initiated for " << id.toString() << "...");
845 }
846}
847
848void BaseOverlay::leaveSpoVNet() {
849
850 logging_info( "Leaving spovnet " << spovnetId );
851 bool ret = ( state != this->BaseOverlayStateInvalid );
852
853 logging_debug("stopping overlay bootstrap module");
854 overlayBootstrap.stop();
855 overlayBootstrap.revoke();
856
857 logging_debug( "Dropping all auto-links" );
858
859 // gather all service links
860 vector<LinkID> servicelinks;
861 BOOST_FOREACH( LinkDescriptor* ld, links ) {
862 if( ld->service != OverlayInterface::OVERLAY_SERVICE_ID )
863 servicelinks.push_back( ld->overlayId );
864 }
865
866 // drop all service links
867 BOOST_FOREACH( LinkID lnk, servicelinks )
868 dropLink( lnk );
869
870 // let the node leave the spovnet overlay interface
871 logging_debug( "Leaving overlay" );
872 if( overlayInterface != NULL )
873 overlayInterface->leaveOverlay();
874
875 // drop still open bootstrap links
876 BOOST_FOREACH( LinkID lnk, bootstrapLinks )
877 bc->dropLink( lnk );
878
879 // change to inalid state
880 state = BaseOverlayStateInvalid;
881 //ovl.visShutdown( ovlId, nodeId, string("") );
882
883 visual.visShutdown(visualIdOverlay, nodeId, "");
884 visual.visShutdown(visualIdBase, nodeId, "");
885
886 // inform all registered services of the event
887 BOOST_FOREACH( NodeListener* i, nodeListeners ) {
888 if( ret ) i->onLeaveCompleted( spovnetId );
889 else i->onLeaveFailed( spovnetId );
890 }
891}
892
893void BaseOverlay::createSpoVNet(const SpoVNetID& id,
894 const OverlayParameterSet& param,
895 const SecurityParameterSet& sec,
896 const QoSParameterSet& qos) {
897
898 // set the state that we are an initiator, this way incoming messages are
899 // handled correctly
900 logging_info( "creating spovnet " + id.toString() <<
901 " with nodeid " << nodeId.toString() );
902
903 spovnetId = id;
904
905 overlayInterface = OverlayFactory::create( *this, param, nodeId, this );
906 if( overlayInterface == NULL ) {
907 logging_fatal( "overlay structure not supported" );
908 state = BaseOverlayStateInvalid;
909
910 BOOST_FOREACH( NodeListener* i, nodeListeners )
911 i->onJoinFailed( spovnetId );
912
913 return;
914 }
915
916 //visual.configure("134.155.92.246", 50005);
917 //visual.configure("141.3.161.8", 50005);
918 visual.visCreate(visualIdBase, nodeId, "", "");
919 visual.visCreate(visualIdOverlay, nodeId, "", "");
920}
921
922// ----------------------------------------------------------------------------
923
924const LinkID BaseOverlay::establishLink( const EndpointDescriptor& remoteEp,
925 const NodeID& remoteId, const ServiceID& service ) {
926
927 // establish link via overlay
928 if (!remoteId.isUnspecified())
929 return establishLink( remoteId, service );
930 else
931
932 // establish link directly if only ep is known
933 if (remoteId.isUnspecified())
934 return establishDirectLink(remoteEp, service );
935
936}
937
938/// call base communication's establish link and add link mapping
939const LinkID BaseOverlay::establishDirectLink( const EndpointDescriptor& ep,
940 const ServiceID& service ) {
941
942 /// find a service listener
943 if( !communicationListeners.contains( service ) ) {
944 logging_error( "No listener registered for service id=" << service.toString() );
945 return LinkID::UNSPECIFIED;
946 }
947 CommunicationListener* listener = communicationListeners.get( service );
948 assert( listener != NULL );
949
950 // create descriptor
951 LinkDescriptor* ld = addDescriptor();
952 ld->relayed = false;
953 ld->listener = listener;
954 ld->service = service;
955 ld->communicationId = bc->establishLink( ep );
956
957 /// establish link and add mapping
958 logging_info("Establishing direct link " << ld->communicationId.toString()
959 << " using " << ep.toString());
960
961 return ld->communicationId;
962}
963
964/// establishes a link between two arbitrary nodes
965const LinkID BaseOverlay::establishLink( const NodeID& remote,
966 const ServiceID& service ) {
967
968 // do not establish a link to myself!
969 if (remote == nodeId) return LinkID::UNSPECIFIED;
970
971 // create a link descriptor
972 LinkDescriptor* ld = addDescriptor();
973 ld->relayed = true;
974 ld->remoteNode = remote;
975 ld->service = service;
976 ld->listener = getListener(ld->service);
977
978 // create link request message
979 OverlayMsg msg(OverlayMsg::typeLinkRequest, service, nodeId, remote );
980 msg.setSourceLink(ld->overlayId);
981
982 // send over relayed link
983 msg.setRelayed(true);
984 //msg.setRelayed(false);
985 //msg.setRegisterRelay(true);
986
987 // debug message
988 logging_info(
989 "Sending link request with"
990 << " link=" << ld->overlayId.toString()
991 << " node=" << ld->remoteNode.toString()
992 << " serv=" << ld->service.toString()
993 );
994
995 // sending message to node
996 send_node( &msg, ld->remoteNode, ld->service );
997
998 return ld->overlayId;
999}
1000
1001/// drops an established link
1002void BaseOverlay::dropLink(const LinkID& link) {
1003 logging_info( "Dropping link (initiated locally):" << link.toString() );
1004
1005 // find the link item to drop
1006 LinkDescriptor* ld = getDescriptor(link);
1007 if( ld == NULL ) {
1008 logging_warn( "Can't drop link, link is unknown!");
1009 return;
1010 }
1011
1012 // delete all queued messages
1013 if( ld->messageQueue.size() > 0 ) {
1014 logging_warn( "Dropping link " << ld->overlayId.toString() << " that has "
1015 << ld->messageQueue.size() << " waiting messages" );
1016 ld->flushQueue();
1017 }
1018
1019 // inform sideport and listener
1020 if(ld->listener != NULL)
1021 ld->listener->onLinkDown( ld->overlayId, ld->remoteNode );
1022 sideport->onLinkDown(ld->overlayId, this->nodeId, ld->remoteNode, this->spovnetId );
1023
1024 // do not drop relay links
1025 if (!ld->relaying) {
1026 // drop the link in base communication
1027 if (ld->communicationUp) bc->dropLink( ld->communicationId );
1028
1029 // erase descriptor
1030 eraseDescriptor( ld->overlayId );
1031 } else {
1032 ld->dropAfterRelaying = true;
1033 }
1034}
1035
1036// ----------------------------------------------------------------------------
1037
1038/// internal send message, always use this functions to send messages over links
1039seqnum_t BaseOverlay::sendMessage( const Message* message, const LinkID& link ) {
1040 logging_debug( "Sending data message on link " << link.toString() );
1041
1042 // get the mapping for this link
1043 LinkDescriptor* ld = getDescriptor(link);
1044 if( ld == NULL ) {
1045 logging_error("Could not send message. "
1046 << "Link not found id=" << link.toString());
1047 return -1;
1048 }
1049
1050 // check if the link is up yet, if its an auto link queue message
1051 if( !ld->up ) {
1052 ld->setAutoUsed();
1053 if( ld->autolink ) {
1054 logging_info("Auto-link " << link.toString() << " not up, queue message");
1055 Data data = data_serialize( message );
1056 const_cast<Message*>(message)->dropPayload();
1057 ld->messageQueue.push_back( new Message(data) );
1058 } else {
1059 logging_error("Link " << link.toString() << " not up, drop message");
1060 }
1061 return -1;
1062 }
1063
1064 // compile overlay message (has service and node id)
1065 OverlayMsg overmsg( OverlayMsg::typeData );
1066 overmsg.encapsulate( const_cast<Message*>(message) );
1067
1068 // send message over relay/direct/overlay
1069 return send_link( &overmsg, ld->overlayId );
1070}
1071
1072seqnum_t BaseOverlay::sendMessage(const Message* message,
1073 const NodeID& node, const ServiceID& service) {
1074
1075 // find link for node and service
1076 LinkDescriptor* ld = getAutoDescriptor( node, service );
1077
1078 // if we found no link, create an auto link
1079 if( ld == NULL ) {
1080
1081 // debug output
1082 logging_info( "No link to send message to node "
1083 << node.toString() << " found for service "
1084 << service.toString() << ". Creating auto link ..."
1085 );
1086
1087 // call base overlay to create a link
1088 LinkID link = establishLink( node, service );
1089 ld = getDescriptor( link );
1090 if( ld == NULL ) {
1091 logging_error( "Failed to establish auto-link.");
1092 return -1;
1093 }
1094 ld->autolink = true;
1095
1096 logging_debug( "Auto-link establishment in progress to node "
1097 << node.toString() << " with link id=" << link.toString() );
1098 }
1099 assert(ld != NULL);
1100
1101 // mark the link as used, as we now send a message through it
1102 ld->setAutoUsed();
1103
1104 // send / queue message
1105 return sendMessage( message, ld->overlayId );
1106}
1107
1108// ----------------------------------------------------------------------------
1109
1110const EndpointDescriptor& BaseOverlay::getEndpointDescriptor(
1111 const LinkID& link) const {
1112
1113 // return own end-point descriptor
1114 if( link == LinkID::UNSPECIFIED )
1115 return bc->getEndpointDescriptor();
1116
1117 // find link descriptor. not found -> return unspecified
1118 const LinkDescriptor* ld = getDescriptor(link);
1119 if (ld==NULL) return EndpointDescriptor::UNSPECIFIED();
1120
1121 // return endpoint-descriptor from base communication
1122 return bc->getEndpointDescriptor( ld->communicationId );
1123}
1124
1125const EndpointDescriptor& BaseOverlay::getEndpointDescriptor(
1126 const NodeID& node) const {
1127
1128 // return own end-point descriptor
1129 if( node == nodeId || node == NodeID::UNSPECIFIED )
1130 return bc->getEndpointDescriptor();
1131
1132 // no joined and request remote descriptor? -> fail!
1133 if( overlayInterface == NULL ) {
1134 logging_error( "overlay interface not set, cannot resolve endpoint" );
1135 return EndpointDescriptor::UNSPECIFIED();
1136 }
1137
1138 // resolve end-point descriptor from the base-overlay routing table
1139 const EndpointDescriptor& ep = overlayInterface->resolveNode( node );
1140 if(ep.toString() != "") return ep;
1141
1142 // see if we can find the node in our own table
1143 BOOST_FOREACH(const LinkDescriptor* ld, links){
1144 if(ld->remoteNode != node) continue;
1145 const EndpointDescriptor& ep = bc->getEndpointDescriptor(ld->communicationId);
1146 if(ep.toString() == "") continue;
1147 if(ep != EndpointDescriptor::UNSPECIFIED()) return ep;
1148 }
1149
1150 return EndpointDescriptor::UNSPECIFIED();
1151}
1152
1153// ----------------------------------------------------------------------------
1154
1155bool BaseOverlay::registerSidePort(SideportListener* _sideport) {
1156 sideport = _sideport;
1157 _sideport->configure( this );
1158}
1159
1160bool BaseOverlay::unregisterSidePort(SideportListener* _sideport) {
1161 sideport = &SideportListener::DEFAULT;
1162}
1163
1164// ----------------------------------------------------------------------------
1165
1166bool BaseOverlay::bind(CommunicationListener* listener, const ServiceID& sid) {
1167 logging_debug( "binding communication listener " << listener
1168 << " on serviceid " << sid.toString() );
1169
1170 if( communicationListeners.contains( sid ) ) {
1171 logging_error( "some listener already registered for service id "
1172 << sid.toString() );
1173 return false;
1174 }
1175
1176 communicationListeners.registerItem( listener, sid );
1177 return true;
1178}
1179
1180
1181bool BaseOverlay::unbind(CommunicationListener* listener, const ServiceID& sid) {
1182 logging_debug( "unbinding listener " << listener << " from serviceid " << sid.toString() );
1183
1184 if( !communicationListeners.contains( sid ) ) {
1185 logging_warn( "cannot unbind listener. no listener registered on service id " << sid.toString() );
1186 return false;
1187 }
1188
1189 if( communicationListeners.get(sid) != listener ) {
1190 logging_warn( "listener bound to service id " << sid.toString()
1191 << " is different than listener trying to unbind" );
1192 return false;
1193 }
1194
1195 communicationListeners.unregisterItem( sid );
1196 return true;
1197}
1198
1199// ----------------------------------------------------------------------------
1200
1201bool BaseOverlay::bind(NodeListener* listener) {
1202 logging_debug( "Binding node listener " << listener );
1203
1204 // already bound? yes-> warning
1205 NodeListenerVector::iterator i =
1206 find( nodeListeners.begin(), nodeListeners.end(), listener );
1207 if( i != nodeListeners.end() ) {
1208 logging_warn("Node listener " << listener << " is already bound!" );
1209 return false;
1210 }
1211
1212 // no-> add
1213 nodeListeners.push_back( listener );
1214 return true;
1215}
1216
1217bool BaseOverlay::unbind(NodeListener* listener) {
1218 logging_debug( "Unbinding node listener " << listener );
1219
1220 // already unbound? yes-> warning
1221 NodeListenerVector::iterator i = find( nodeListeners.begin(), nodeListeners.end(), listener );
1222 if( i == nodeListeners.end() ) {
1223 logging_warn( "Node listener " << listener << " is not bound!" );
1224 return false;
1225 }
1226
1227 // no-> remove
1228 nodeListeners.erase( i );
1229 return true;
1230}
1231
1232// ----------------------------------------------------------------------------
1233
1234void BaseOverlay::onLinkUp(const LinkID& id,
1235 const address_v* local, const address_v* remote) {
1236 logging_debug( "Link up with base communication link id=" << id );
1237
1238 // get descriptor for link
1239 LinkDescriptor* ld = getDescriptor(id, true);
1240
1241 // handle bootstrap link we initiated
1242 if( std::find(bootstrapLinks.begin(), bootstrapLinks.end(), id) != bootstrapLinks.end() ){
1243 logging_info(
1244 "Join has been initiated by me and the link is now up. " <<
1245 "Sending out join request for SpoVNet " << spovnetId.toString()
1246 );
1247
1248 // send join request message
1249 OverlayMsg overlayMsg( OverlayMsg::typeJoinRequest,
1250 OverlayInterface::OVERLAY_SERVICE_ID, nodeId );
1251 JoinRequest joinRequest( spovnetId, nodeId );
1252 overlayMsg.encapsulate( &joinRequest );
1253 bc->sendMessage( id, &overlayMsg );
1254 return;
1255 }
1256
1257 // no link found? -> link establishment from remote, add one!
1258 if (ld == NULL) {
1259 ld = addDescriptor( id );
1260 logging_info( "onLinkUp (remote request) descriptor: " << ld );
1261
1262 // update descriptor
1263 ld->fromRemote = true;
1264 ld->communicationId = id;
1265 ld->communicationUp = true;
1266 ld->setAutoUsed();
1267 ld->setAlive();
1268
1269 // in this case, do not inform listener, since service it unknown
1270 // -> wait for update message!
1271
1272 // link mapping found? -> send update message with node-id and service id
1273 } else {
1274 logging_info( "onLinkUp descriptor (initiated locally):" << ld );
1275
1276 // update descriptor
1277 ld->setAutoUsed();
1278 ld->setAlive();
1279 ld->communicationUp = true;
1280 ld->fromRemote = false;
1281
1282 // if link is a relayed link->convert to direct link
1283 if (ld->relayed) {
1284 logging_info( "Converting to direct link: " << ld );
1285 ld->up = true;
1286 ld->relayed = false;
1287 OverlayMsg overMsg( OverlayMsg::typeLinkDirect );
1288 overMsg.setSourceLink( ld->overlayId );
1289 overMsg.setDestinationLink( ld->remoteLink );
1290 send_link( &overMsg, ld->overlayId );
1291 } else {
1292 // note: necessary to validate the link on the remote side!
1293 logging_info( "Sending out update" <<
1294 " for service " << ld->service.toString() <<
1295 " with local node id " << nodeId.toString() <<
1296 " on link " << ld->overlayId.toString() );
1297
1298 // compile and send update message
1299 OverlayMsg overlayMsg( OverlayMsg::typeLinkUpdate );
1300 overlayMsg.setSourceLink(ld->overlayId);
1301 overlayMsg.setAutoLink( ld->autolink );
1302 send_link( &overlayMsg, ld->overlayId, true );
1303 }
1304 }
1305}
1306
1307void BaseOverlay::onLinkDown(const LinkID& id,
1308 const address_v* local, const address_v* remote) {
1309
1310 // erase bootstrap links
1311 vector<LinkID>::iterator it = std::find( bootstrapLinks.begin(), bootstrapLinks.end(), id );
1312 if( it != bootstrapLinks.end() ) bootstrapLinks.erase( it );
1313
1314 // get descriptor for link
1315 LinkDescriptor* ld = getDescriptor(id, true);
1316 if ( ld == NULL ) return; // not found? ->ignore!
1317 logging_info( "onLinkDown descriptor: " << ld );
1318
1319 // removing relay link information
1320 removeRelayLink(ld->overlayId);
1321
1322 // inform listeners about link down
1323 ld->communicationUp = false;
1324 if (!ld->service.isUnspecified()) {
1325 CommunicationListener* lst = getListener(ld->service);
1326 if(lst != NULL) lst->onLinkDown( ld->overlayId, ld->remoteNode );
1327 sideport->onLinkDown( id, this->nodeId, ld->remoteNode, this->spovnetId );
1328 }
1329
1330 // delete all queued messages (auto links)
1331 if( ld->messageQueue.size() > 0 ) {
1332 logging_warn( "Dropping link " << id.toString() << " that has "
1333 << ld->messageQueue.size() << " waiting messages" );
1334 ld->flushQueue();
1335 }
1336
1337 // erase mapping
1338 eraseDescriptor(ld->overlayId);
1339}
1340
1341void BaseOverlay::onLinkChanged(const LinkID& id,
1342 const address_v* oldlocal, const address_v* newlocal,
1343 const address_v* oldremote, const address_v* newremote) {
1344
1345 // get descriptor for link
1346 LinkDescriptor* ld = getDescriptor(id, true);
1347 if ( ld == NULL ) return; // not found? ->ignore!
1348 logging_debug( "onLinkChanged descriptor: " << ld );
1349
1350 // inform listeners
1351 ld->listener->onLinkChanged( ld->overlayId, ld->remoteNode );
1352 sideport->onLinkChanged( id, this->nodeId, ld->remoteNode, this->spovnetId );
1353
1354 // autolinks: refresh timestamp
1355 ld->setAutoUsed();
1356}
1357
1358void BaseOverlay::onLinkFail(const LinkID& id,
1359 const address_v* local, const address_v* remote) {
1360 logging_debug( "Link fail with base communication link id=" << id );
1361
1362 // erase bootstrap links
1363 vector<LinkID>::iterator it = std::find( bootstrapLinks.begin(), bootstrapLinks.end(), id );
1364 if( it != bootstrapLinks.end() ) bootstrapLinks.erase( it );
1365
1366 // get descriptor for link
1367 LinkDescriptor* ld = getDescriptor(id, true);
1368 if ( ld == NULL ) return; // not found? ->ignore!
1369 logging_debug( "Link failed id=" << ld->overlayId.toString() );
1370
1371 // inform listeners
1372 ld->listener->onLinkFail( ld->overlayId, ld->remoteNode );
1373 sideport->onLinkFail( id, this->nodeId, ld->remoteNode, this->spovnetId );
1374}
1375
1376void BaseOverlay::onLinkQoSChanged(const LinkID& id, const address_v* local,
1377 const address_v* remote, const QoSParameterSet& qos) {
1378 logging_debug( "Link quality changed with base communication link id=" << id );
1379
1380 // get descriptor for link
1381 LinkDescriptor* ld = getDescriptor(id, true);
1382 if ( ld == NULL ) return; // not found? ->ignore!
1383 logging_debug( "Link quality changed id=" << ld->overlayId.toString() );
1384}
1385
1386bool BaseOverlay::onLinkRequest( const LinkID& id, const address_v* local,
1387 const address_v* remote ) {
1388 logging_debug("Accepting link request from " << remote->to_string() );
1389 return true;
1390}
1391
1392/// handles a message from base communication
1393bool BaseOverlay::receiveMessage(const Message* message,
1394 const LinkID& link, const NodeID& ) {
1395 // get descriptor for link
1396 LinkDescriptor* ld = getDescriptor( link, true );
1397 return handleMessage( message, ld, link );
1398}
1399
1400// ----------------------------------------------------------------------------
1401
1402/// Handle spovnet instance join requests
1403bool BaseOverlay::handleJoinRequest( OverlayMsg* overlayMsg, const LinkID& bcLink ) {
1404
1405 // decapsulate message
1406 JoinRequest* joinReq = overlayMsg->decapsulate<JoinRequest>();
1407 logging_info( "Received join request for spovnet " <<
1408 joinReq->getSpoVNetID().toString() );
1409
1410 // check spovnet id
1411 if( joinReq->getSpoVNetID() != spovnetId ) {
1412 logging_error(
1413 "Received join request for spovnet we don't handle " <<
1414 joinReq->getSpoVNetID().toString() );
1415 return false;
1416 }
1417
1418 // TODO: here you can implement mechanisms to deny joining of a node
1419 bool allow = true;
1420 logging_info( "Sending join reply for spovnet " <<
1421 spovnetId.toString() << " to node " <<
1422 overlayMsg->getSourceNode().toString() <<
1423 ". Result: " << (allow ? "allowed" : "denied") );
1424 joiningNodes.push_back( overlayMsg->getSourceNode() );
1425
1426 // return overlay parameters
1427 assert( overlayInterface != NULL );
1428 logging_debug( "Using bootstrap end-point "
1429 << getEndpointDescriptor().toString() )
1430 OverlayParameterSet parameters = overlayInterface->getParameters();
1431 OverlayMsg retmsg( OverlayMsg::typeJoinReply,
1432 OverlayInterface::OVERLAY_SERVICE_ID, nodeId );
1433 JoinReply replyMsg( spovnetId, parameters,
1434 allow, getEndpointDescriptor() );
1435 retmsg.encapsulate(&replyMsg);
1436 bc->sendMessage( bcLink, &retmsg );
1437
1438 return true;
1439}
1440
1441/// Handle replies to spovnet instance join requests
1442bool BaseOverlay::handleJoinReply( OverlayMsg* overlayMsg, const LinkID& bcLink ) {
1443 // decapsulate message
1444 logging_debug("received join reply message");
1445 JoinReply* replyMsg = overlayMsg->decapsulate<JoinReply>();
1446
1447 // correct spovnet?
1448 if( replyMsg->getSpoVNetID() != spovnetId ) { // no-> fail
1449 logging_error( "Received SpoVNet join reply for " <<
1450 replyMsg->getSpoVNetID().toString() <<
1451 " != " << spovnetId.toString() );
1452 delete replyMsg;
1453 return false;
1454 }
1455
1456 // access granted? no -> fail
1457 if( !replyMsg->getJoinAllowed() ) {
1458 logging_error( "Our join request has been denied" );
1459
1460 // drop initiator link
1461 if( !bcLink.isUnspecified() ){
1462 bc->dropLink( bcLink );
1463
1464 vector<LinkID>::iterator it = std::find(
1465 bootstrapLinks.begin(), bootstrapLinks.end(), bcLink);
1466 if( it != bootstrapLinks.end() )
1467 bootstrapLinks.erase(it);
1468 }
1469
1470 // inform all registered services of the event
1471 BOOST_FOREACH( NodeListener* i, nodeListeners )
1472 i->onJoinFailed( spovnetId );
1473
1474 delete replyMsg;
1475 return true;
1476 }
1477
1478 // access has been granted -> continue!
1479 logging_info("Join request has been accepted for spovnet " <<
1480 spovnetId.toString() );
1481
1482 logging_debug( "Using bootstrap end-point "
1483 << replyMsg->getBootstrapEndpoint().toString() );
1484
1485 // create overlay structure from spovnet parameter set
1486 // if we have not boostrapped yet against some other node
1487 if( overlayInterface == NULL ){
1488
1489 logging_debug("first-time bootstrapping");
1490
1491 overlayInterface = OverlayFactory::create(
1492 *this, replyMsg->getParam(), nodeId, this );
1493
1494 // overlay structure supported? no-> fail!
1495 if( overlayInterface == NULL ) {
1496 logging_error( "overlay structure not supported" );
1497
1498 if( !bcLink.isUnspecified() ){
1499 bc->dropLink( bcLink );
1500
1501 vector<LinkID>::iterator it = std::find(
1502 bootstrapLinks.begin(), bootstrapLinks.end(), bcLink);
1503 if( it != bootstrapLinks.end() )
1504 bootstrapLinks.erase(it);
1505 }
1506
1507 // inform all registered services of the event
1508 BOOST_FOREACH( NodeListener* i, nodeListeners )
1509 i->onJoinFailed( spovnetId );
1510
1511 delete replyMsg;
1512 return true;
1513 }
1514
1515 // everything ok-> join the overlay!
1516 state = BaseOverlayStateCompleted;
1517 overlayInterface->createOverlay();
1518
1519 overlayInterface->joinOverlay( replyMsg->getBootstrapEndpoint() );
1520 overlayBootstrap.recordJoin( replyMsg->getBootstrapEndpoint() );
1521
1522 // update ovlvis
1523 //ovl.visChangeNodeColor( ovlId, nodeId, OvlVis::NODE_COLORS_GREEN);
1524
1525 // inform all registered services of the event
1526 BOOST_FOREACH( NodeListener* i, nodeListeners )
1527 i->onJoinCompleted( spovnetId );
1528
1529 delete replyMsg;
1530
1531 } else {
1532
1533 // this is not the first bootstrap, just join the additional node
1534 logging_debug("not first-time bootstrapping");
1535 overlayInterface->joinOverlay( replyMsg->getBootstrapEndpoint() );
1536 overlayBootstrap.recordJoin( replyMsg->getBootstrapEndpoint() );
1537
1538 delete replyMsg;
1539
1540 } // if( overlayInterface == NULL )
1541
1542 return true;
1543}
1544
1545
1546bool BaseOverlay::handleData( OverlayMsg* overlayMsg, LinkDescriptor* ld ) {
1547 // get service
1548 const ServiceID& service = overlayMsg->getService();
1549 logging_debug( "Received data for service " << service.toString()
1550 << " on link " << overlayMsg->getDestinationLink().toString() );
1551
1552 // delegate data message
1553 CommunicationListener* lst = getListener(service);
1554 if(lst != NULL){
1555 lst->onMessage(
1556 overlayMsg,
1557 overlayMsg->getSourceNode(),
1558 overlayMsg->getDestinationLink()
1559 );
1560 }
1561
1562 return true;
1563}
1564
1565
1566bool BaseOverlay::handleLinkUpdate( OverlayMsg* overlayMsg, LinkDescriptor* ld ) {
1567
1568 if( ld == NULL ) {
1569 logging_warn( "received overlay update message for link for "
1570 << "which we have no mapping" );
1571 return false;
1572 }
1573 logging_info("Received type update message on link " << ld );
1574
1575 // update our link mapping information for this link
1576 bool changed =
1577 ( ld->remoteNode != overlayMsg->getSourceNode() )
1578 || ( ld->service != overlayMsg->getService() );
1579
1580 // set parameters
1581 ld->up = true;
1582 ld->remoteNode = overlayMsg->getSourceNode();
1583 ld->remoteLink = overlayMsg->getSourceLink();
1584 ld->service = overlayMsg->getService();
1585 ld->autolink = overlayMsg->isAutoLink();
1586
1587 // if our link information changed, we send out an update, too
1588 if( changed ) {
1589 overlayMsg->swapRoles();
1590 overlayMsg->setSourceNode(nodeId);
1591 overlayMsg->setSourceLink(ld->overlayId);
1592 overlayMsg->setService(ld->service);
1593 send( overlayMsg, ld );
1594 }
1595
1596 // service registered? no-> error!
1597 if( !communicationListeners.contains( ld->service ) ) {
1598 logging_warn( "Link up: event listener has not been registered" );
1599 return false;
1600 }
1601
1602 // default or no service registered?
1603 CommunicationListener* listener = communicationListeners.get( ld->service );
1604 if( listener == NULL || listener == &CommunicationListener::DEFAULT ) {
1605 logging_warn("Link up: event listener is default or null!" );
1606 return true;
1607 }
1608
1609 // update descriptor
1610 ld->listener = listener;
1611 ld->setAutoUsed();
1612 ld->setAlive();
1613
1614 // ask the service whether it wants to accept this link
1615 if( !listener->onLinkRequest(ld->remoteNode) ) {
1616
1617 logging_debug("Link id=" << ld->overlayId.toString() <<
1618 " has been denied by service " << ld->service.toString() << ", dropping link");
1619
1620 // prevent onLinkDown calls to the service
1621 ld->listener = &CommunicationListener::DEFAULT;
1622
1623 // drop the link
1624 dropLink( ld->overlayId );
1625 return true;
1626 }
1627
1628 // set link up
1629 ld->up = true;
1630 logging_info( "Link has been accepted by service and is up: " << ld );
1631
1632 // auto links: link has been accepted -> send queued messages
1633 if( ld->messageQueue.size() > 0 ) {
1634 logging_info( "Sending out queued messages on link " << ld );
1635 BOOST_FOREACH( Message* msg, ld->messageQueue ) {
1636 sendMessage( msg, ld->overlayId );
1637 delete msg;
1638 }
1639 ld->messageQueue.clear();
1640 }
1641
1642 // call the notification functions
1643 listener->onLinkUp( ld->overlayId, ld->remoteNode );
1644 sideport->onLinkUp( ld->overlayId, nodeId, ld->remoteNode, this->spovnetId );
1645
1646 return true;
1647}
1648
1649/// handle a link request and reply
1650bool BaseOverlay::handleLinkRequest( OverlayMsg* overlayMsg, LinkDescriptor* ld ) {
1651 logging_info( "Link request received from node id=" << overlayMsg->getSourceNode() );
1652
1653 //TODO: Check if a request has already been sent using getSourceLink() ...
1654
1655 // create link descriptor
1656 LinkDescriptor* ldn = addDescriptor();
1657
1658 // flags
1659 ldn->up = true;
1660 ldn->fromRemote = true;
1661 ldn->relayed = true;
1662
1663 // parameters
1664 ldn->service = overlayMsg->getService();
1665 ldn->listener = getListener(ldn->service);
1666 ldn->remoteNode = overlayMsg->getSourceNode();
1667 ldn->remoteLink = overlayMsg->getSourceLink();
1668
1669 // update time-stamps
1670 ldn->setAlive();
1671 ldn->setAutoUsed();
1672
1673 // create reply message and send back!
1674 overlayMsg->swapRoles(); // swap source/destination
1675 overlayMsg->setType(OverlayMsg::typeLinkReply);
1676 overlayMsg->setSourceLink(ldn->overlayId);
1677 overlayMsg->setSourceEndpoint( bc->getEndpointDescriptor() );
1678 overlayMsg->setRelayed(true);
1679 send( overlayMsg, ld ); // send back to link
1680
1681 // inform listener
1682 if(ldn != NULL && ldn->listener != NULL)
1683 ldn->listener->onLinkUp( ldn->overlayId, ldn->remoteNode );
1684
1685 return true;
1686}
1687
1688bool BaseOverlay::handleLinkReply( OverlayMsg* overlayMsg, LinkDescriptor* ld ) {
1689
1690 // find link request
1691 LinkDescriptor* ldn = getDescriptor(overlayMsg->getDestinationLink());
1692
1693 // not found? yes-> drop with error!
1694 if (ldn == NULL) {
1695 logging_error( "No link request pending for "
1696 << overlayMsg->getDestinationLink().toString() );
1697 return false;
1698 }
1699 logging_debug("Handling link reply for " << ldn )
1700
1701 // check if already up
1702 if (ldn->up) {
1703 logging_warn( "Link already up: " << ldn );
1704 return true;
1705 }
1706
1707 // debug message
1708 logging_debug( "Link request reply received. Establishing link"
1709 << " for service " << overlayMsg->getService().toString()
1710 << " with local id=" << overlayMsg->getDestinationLink()
1711 << " and remote link id=" << overlayMsg->getSourceLink()
1712 << " to " << overlayMsg->getSourceEndpoint().toString()
1713 );
1714
1715 // set local link descriptor data
1716 ldn->up = true;
1717 ldn->relayed = true;
1718 ldn->service = overlayMsg->getService();
1719 ldn->listener = getListener(ldn->service);
1720 ldn->remoteLink = overlayMsg->getSourceLink();
1721 ldn->remoteNode = overlayMsg->getSourceNode();
1722
1723 // update timestamps
1724 ldn->setAlive();
1725 ldn->setAutoUsed();
1726
1727 // auto links: link has been accepted -> send queued messages
1728 if( ldn->messageQueue.size() > 0 ) {
1729 logging_info( "Sending out queued messages on link " <<
1730 ldn->overlayId.toString() );
1731 BOOST_FOREACH( Message* msg, ldn->messageQueue ) {
1732 sendMessage( msg, ldn->overlayId );
1733 delete msg;
1734 }
1735 ldn->messageQueue.clear();
1736 }
1737
1738 // inform listeners about new link
1739 ldn->listener->onLinkUp( ldn->overlayId, ldn->remoteNode );
1740
1741 // try to replace relay link with direct link
1742 ldn->communicationId =
1743 bc->establishLink( overlayMsg->getSourceEndpoint() );
1744
1745 return true;
1746}
1747
1748/// handle a keep-alive message for a link
1749bool BaseOverlay::handleLinkAlive( OverlayMsg* overlayMsg, LinkDescriptor* ld ) {
1750 LinkDescriptor* rld = getDescriptor(overlayMsg->getDestinationLink());
1751 if ( rld != NULL ) {
1752 logging_debug("Keep-Alive for " <<
1753 overlayMsg->getDestinationLink() );
1754 if (overlayMsg->isRouteRecord())
1755 rld->routeRecord = overlayMsg->getRouteRecord();
1756 rld->setAlive();
1757 return true;
1758 } else {
1759 logging_error("Keep-Alive for "
1760 << overlayMsg->getDestinationLink() << ": link unknown." );
1761 return false;
1762 }
1763}
1764
1765/// handle a direct link message
1766bool BaseOverlay::handleLinkDirect( OverlayMsg* overlayMsg, LinkDescriptor* ld ) {
1767 logging_debug( "Received direct link replacement request" );
1768
1769 /// get destination overlay link
1770 LinkDescriptor* rld = getDescriptor( overlayMsg->getDestinationLink() );
1771 if (rld == NULL || ld == NULL) {
1772 logging_error("Direct link replacement: Link "
1773 << overlayMsg->getDestinationLink() << "not found error." );
1774 return false;
1775 }
1776 logging_info( "Received direct link convert notification for " << rld );
1777
1778 // update information
1779 rld->communicationId = ld->communicationId;
1780 rld->communicationUp = true;
1781 rld->relayed = false;
1782
1783 // mark used and alive!
1784 rld->setAlive();
1785 rld->setAutoUsed();
1786
1787 // erase the original descriptor
1788 eraseDescriptor(ld->overlayId);
1789}
1790
1791/// handles an incoming message
1792bool BaseOverlay::handleMessage( const Message* message, LinkDescriptor* ld,
1793 const LinkID bcLink ) {
1794 logging_debug( "Handling message: " << message->toString());
1795
1796 // decapsulate overlay message
1797 OverlayMsg* overlayMsg =
1798 const_cast<Message*>(message)->decapsulate<OverlayMsg>();
1799 if( overlayMsg == NULL ) return false;
1800
1801 // increase number of hops
1802 overlayMsg->increaseNumHops();
1803
1804 // refresh relay information
1805 refreshRelayInformation( overlayMsg, ld );
1806
1807 // update route record
1808 overlayMsg->addRouteRecord(nodeId);
1809
1810 // handle dht messages (do not route)
1811 if (overlayMsg->isDHTMessage())
1812 return handleDHTMessage(overlayMsg);
1813
1814 // handle signaling messages (do not route!)
1815 if (overlayMsg->getType()>=OverlayMsg::typeSignalingStart &&
1816 overlayMsg->getType()<=OverlayMsg::typeSignalingEnd ) {
1817 overlayInterface->onMessage(overlayMsg, NodeID::UNSPECIFIED, LinkID::UNSPECIFIED);
1818 delete overlayMsg;
1819 return true;
1820 }
1821
1822 // message for reached destination? no-> route message
1823 if (!overlayMsg->getDestinationNode().isUnspecified() &&
1824 overlayMsg->getDestinationNode() != nodeId ) {
1825 logging_debug("Routing message "
1826 << " from " << overlayMsg->getSourceNode()
1827 << " to " << overlayMsg->getDestinationNode()
1828 );
1829 route( overlayMsg );
1830 delete overlayMsg;
1831 return true;
1832 }
1833
1834 // handle DHT response messages
1835 if (overlayMsg->hasTypeMask( OverlayMsg::maskDHTResponse )) {
1836 bool ret = handleDHTMessage(overlayMsg);
1837 delete overlayMsg;
1838 return ret;
1839 }
1840
1841 // handle base overlay message
1842 bool ret = false; // return value
1843 switch ( overlayMsg->getType() ) {
1844
1845 // data transport messages
1846 case OverlayMsg::typeData:
1847 ret = handleData(overlayMsg, ld); break;
1848
1849 // overlay setup messages
1850 case OverlayMsg::typeJoinRequest:
1851 ret = handleJoinRequest(overlayMsg, bcLink ); break;
1852 case OverlayMsg::typeJoinReply:
1853 ret = handleJoinReply(overlayMsg, bcLink ); break;
1854
1855 // link specific messages
1856 case OverlayMsg::typeLinkRequest:
1857 ret = handleLinkRequest(overlayMsg, ld ); break;
1858 case OverlayMsg::typeLinkReply:
1859 ret = handleLinkReply(overlayMsg, ld ); break;
1860 case OverlayMsg::typeLinkUpdate:
1861 ret = handleLinkUpdate(overlayMsg, ld ); break;
1862 case OverlayMsg::typeLinkAlive:
1863 ret = handleLinkAlive(overlayMsg, ld ); break;
1864 case OverlayMsg::typeLinkDirect:
1865 ret = handleLinkDirect(overlayMsg, ld ); break;
1866
1867 // handle unknown message type
1868 default: {
1869 logging_error( "received message in invalid state! don't know " <<
1870 "what to do with this message of type " << overlayMsg->getType() );
1871 ret = false;
1872 break;
1873 }
1874 }
1875
1876 // free overlay message and return value
1877 delete overlayMsg;
1878 return ret;
1879}
1880
1881// ----------------------------------------------------------------------------
1882
1883void BaseOverlay::broadcastMessage(Message* message, const ServiceID& service) {
1884
1885 logging_debug( "broadcasting message to all known nodes " <<
1886 "in the overlay from service " + service.toString() );
1887
1888 OverlayInterface::NodeList nodes = overlayInterface->getKnownNodes(true);
1889 OverlayInterface::NodeList::iterator i = nodes.begin();
1890 for(; i != nodes.end(); i++ ) {
1891 if( *i == nodeId) continue; // don't send to ourselfs
1892 sendMessage( message, *i, service );
1893 }
1894}
1895
1896/// return the overlay neighbors
1897vector<NodeID> BaseOverlay::getOverlayNeighbors(bool deep) const {
1898 // the known nodes _can_ also include our node, so we remove ourself
1899 vector<NodeID> nodes = overlayInterface->getKnownNodes(deep);
1900 vector<NodeID>::iterator i = find( nodes.begin(), nodes.end(), this->nodeId );
1901 if( i != nodes.end() ) nodes.erase( i );
1902 return nodes;
1903}
1904
1905const NodeID& BaseOverlay::getNodeID(const LinkID& lid) const {
1906 if( lid == LinkID::UNSPECIFIED ) return nodeId;
1907 const LinkDescriptor* ld = getDescriptor(lid);
1908 if( ld == NULL ) return NodeID::UNSPECIFIED;
1909 else return ld->remoteNode;
1910}
1911
1912vector<LinkID> BaseOverlay::getLinkIDs( const NodeID& nid ) const {
1913 vector<LinkID> linkvector;
1914 BOOST_FOREACH( LinkDescriptor* ld, links ) {
1915 if( ld->remoteNode == nid || nid == NodeID::UNSPECIFIED ) {
1916 linkvector.push_back( ld->overlayId );
1917 }
1918 }
1919 return linkvector;
1920}
1921
1922
1923void BaseOverlay::onNodeJoin(const NodeID& node) {
1924 JoiningNodes::iterator i = std::find( joiningNodes.begin(), joiningNodes.end(), node );
1925 if( i == joiningNodes.end() ) return;
1926
1927 logging_info( "node has successfully joined baseoverlay and overlay structure "
1928 << node.toString() );
1929
1930 joiningNodes.erase( i );
1931}
1932
1933void BaseOverlay::eventFunction() {
1934 stabilizeRelays();
1935 stabilizeLinks();
1936 stabilizeDHT();
1937 updateVisual();
1938}
1939
1940void BaseOverlay::updateVisual(){
1941
1942 //
1943 // update base overlay structure
1944 //
1945
1946 static NodeID pre = NodeID::UNSPECIFIED;
1947 static NodeID suc = NodeID::UNSPECIFIED;
1948
1949 vector<NodeID> nodes = this->getOverlayNeighbors(false);
1950
1951 if(nodes.size() == 0){
1952
1953 if(pre != NodeID::UNSPECIFIED){
1954 visual.visDisconnect(visualIdOverlay, this->nodeId, pre, "");
1955 pre = NodeID::UNSPECIFIED;
1956 }
1957 if(suc != NodeID::UNSPECIFIED){
1958 visual.visDisconnect(visualIdOverlay, this->nodeId, suc, "");
1959 suc = NodeID::UNSPECIFIED;
1960 }
1961
1962 } // if(nodes.size() == 0)
1963
1964 if(nodes.size() == 1){
1965 // only one node, make this pre and succ
1966 // and then go into the node.size()==2 case
1967 //nodes.push_back(nodes.at(0));
1968
1969 if(pre != nodes.at(0)){
1970 pre = nodes.at(0);
1971 if(pre != NodeID::UNSPECIFIED)
1972 visual.visConnect(visualIdOverlay, this->nodeId, pre, "");
1973 }
1974 }
1975
1976 if(nodes.size() == 2){
1977
1978 // old finger
1979 if(nodes.at(0) != pre){
1980 if(pre != NodeID::UNSPECIFIED)
1981 visual.visDisconnect(visualIdOverlay, this->nodeId, pre, "");
1982 pre = NodeID::UNSPECIFIED;
1983 }
1984 if(nodes.at(1) != suc){
1985 if(suc != NodeID::UNSPECIFIED)
1986 visual.visDisconnect(visualIdOverlay, this->nodeId, suc, "");
1987 suc = NodeID::UNSPECIFIED;
1988 }
1989
1990 // connect with fingers
1991 if(pre == NodeID::UNSPECIFIED){
1992 pre = nodes.at(0);
1993 if(pre != NodeID::UNSPECIFIED)
1994 visual.visConnect(visualIdOverlay, this->nodeId, pre, "");
1995 }
1996 if(suc == NodeID::UNSPECIFIED){
1997 suc = nodes.at(1);
1998 if(suc != NodeID::UNSPECIFIED)
1999 visual.visConnect(visualIdOverlay, this->nodeId, suc, "");
2000 }
2001
2002 } //if(nodes.size() == 2)
2003
2004// {
2005// logging_error("================================");
2006// logging_error("my nodeid " << nodeId.get(MAX_KEYLENGTH-16, 16));
2007// logging_error("================================");
2008// if(nodes.size()>= 1){
2009// logging_error("real pre " << nodes.at(0).toString());
2010// logging_error("real pre " << nodes.at(0).get(MAX_KEYLENGTH-16, 16));
2011// }
2012// if(nodes.size()>= 2){
2013// logging_error("real suc " << nodes.at(1).toString());
2014// logging_error("real suc " << nodes.at(1).get(MAX_KEYLENGTH-16, 16));
2015// }
2016// logging_error("================================");
2017// if(pre == NodeID::UNSPECIFIED){
2018// logging_error("pre: unspecified");
2019// }else{
2020// unsigned int prei = pre.get(MAX_KEYLENGTH-16, 16);
2021// logging_error("pre: " << prei);
2022// }
2023// if(suc == NodeID::UNSPECIFIED){
2024// logging_error("suc: unspecified");
2025// }else{
2026// unsigned int suci = suc.get(MAX_KEYLENGTH-16, 16);
2027// logging_error("suc: " << suci);
2028// }
2029// logging_error("================================");
2030// }
2031
2032 //
2033 // update base communication links
2034 //
2035
2036 static set<NodeID> linkset;
2037 set<NodeID> remotenodes;
2038 BOOST_FOREACH( LinkDescriptor* ld, links ) {
2039 if (!ld->isVital() || ld->service != OverlayInterface::OVERLAY_SERVICE_ID)
2040 continue;
2041
2042 if (ld->routeRecord.size()>1 && ld->relayed) {
2043 for (size_t i=1; i<ld->routeRecord.size(); i++)
2044 remotenodes.insert( ld->routeRecord[ld->routeRecord.size()-i-1] );
2045 } else {
2046 remotenodes.insert(ld->remoteNode);
2047 }
2048 }
2049
2050 // which links are old and need deletion?
2051 bool changed = false;
2052
2053 do{
2054 changed = false;
2055 BOOST_FOREACH(NodeID n, linkset){
2056 if(remotenodes.find(n) == remotenodes.end()){
2057 visual.visDisconnect(visualIdBase, this->nodeId, n, "");
2058 linkset.erase(n);
2059 changed = true;
2060 break;
2061 }
2062 }
2063 }while(changed);
2064
2065 // which links are new and need creation?
2066 do{
2067 changed = false;
2068 BOOST_FOREACH(NodeID n, remotenodes){
2069 if(linkset.find(n) == linkset.end()){
2070 visual.visConnect(visualIdBase, this->nodeId, n, "");
2071 linkset.insert(n);
2072 changed = true;
2073 break;
2074 }
2075 }
2076 }while(changed);
2077
2078}
2079
2080// ----------------------------------------------------------------------------
2081
2082/// stabilize DHT state
2083void BaseOverlay::stabilizeDHT() {
2084 // remove old values from DHT
2085 BOOST_FOREACH( DHTEntry& entry, dht->entries ) {
2086 // erase old entries
2087 entry.erase_expired_entries();
2088 }
2089
2090 // erase old values from local DHT
2091 BOOST_FOREACH( DHTEntry& entry, localDHT->entries ) {
2092 // erase old entries
2093 entry.erase_expired_entries();
2094 }
2095
2096 // re-publish values
2097 BOOST_FOREACH( DHTEntry& entry, localDHT->entries ) {
2098 BOOST_FOREACH( ValueEntry& value, entry.values )
2099 dhtPut(entry.key, value.get_value(), 0, true );
2100 }
2101}
2102
2103// handle DHT messages
2104bool BaseOverlay::handleDHTMessage( OverlayMsg* msg ) {
2105
2106 // decapsulate message
2107 logging_debug("received DHT message");
2108 DHTMessage* dhtMsg = msg->decapsulate<DHTMessage>();
2109
2110 // handle DHT data message
2111 if (msg->getType()==OverlayMsg::typeDHTData) {
2112 const ServiceID& service = msg->getService();
2113 logging_info( "Received DHT data for service " << service.toString() );
2114
2115 // delegate data message
2116 CommunicationListener* lst = getListener(service);
2117 if(lst != NULL) lst->onKeyValue(dhtMsg->getKey(), dhtMsg->getValues() );
2118 return true;
2119 }
2120
2121 // route message to closest node
2122 if (!overlayInterface->isClosestNodeTo(msg->getDestinationNode())) {
2123 logging_debug("Routing DHT message to closest node "
2124 << " from " << msg->getSourceNode()
2125 << " to " << msg->getDestinationNode()
2126 );
2127 route( msg );
2128 delete msg;
2129 return true;
2130 }
2131
2132 // now, we are the closest node...
2133 switch (msg->getType()) {
2134 case OverlayMsg::typeDHTPut: {
2135 if (dhtMsg->doReplace()) dht->remove(dhtMsg->getKey());
2136 BOOST_FOREACH( Data value, dhtMsg->getValues() )
2137 dht->put(dhtMsg->getKey(), value, dhtMsg->getTTL() );
2138 break;
2139 }
2140
2141 case OverlayMsg::typeDHTGet: {
2142 logging_info("DHT-Get: key=" << dhtMsg->getKey() );
2143 vector<Data> vect = dht->get(dhtMsg->getKey());
2144 BOOST_FOREACH(const Data& d, vect)
2145 logging_info("DHT-Get: value=" << d);
2146 OverlayMsg omsg(*msg);
2147 omsg.swapRoles();
2148 omsg.setType(OverlayMsg::typeDHTData);
2149 DHTMessage dhtmsg(dhtMsg->getKey(), vect);
2150 omsg.encapsulate(&dhtmsg);
2151 dhtSend(&omsg, omsg.getDestinationNode());
2152 break;
2153 }
2154
2155 case OverlayMsg::typeDHTRemove: {
2156 if (dhtMsg->hasValues()) {
2157 BOOST_FOREACH( Data value, dhtMsg->getValues() )
2158 dht->remove(dhtMsg->getKey(), value );
2159 } else
2160 dht->remove( dhtMsg->getKey() );
2161 break;
2162 }
2163
2164 default:
2165 logging_error("DHT Message type unknown.");
2166 return false;
2167 }
2168 delete msg;
2169 return true;
2170}
2171
2172/// put a value to the DHT with a ttl given in seconds
2173void BaseOverlay::dhtPut( const Data& key, const Data& value, int ttl, bool replace ) {
2174
2175 logging_info("DHT: putting key=" << key
2176 << " value=" << value
2177 << " ttl=" << ttl
2178 << " replace=" << replace
2179 );
2180
2181
2182 // put into local data store (for refreshes)
2183 if (replace) localDHT->remove(key);
2184 localDHT->put(key, value, ttl);
2185
2186 // calculate hash
2187 NodeID dest = NodeID::sha1(key.getBuffer(), key.getLength() / 8);
2188 DHTMessage dhtmsg( key, value );
2189 dhtmsg.setReplace( replace );
2190 dhtmsg.setTTL(ttl);
2191
2192 OverlayMsg msg( OverlayMsg::typeDHTPut );
2193 msg.encapsulate( &dhtmsg );
2194 dhtSend(&msg, dest);
2195}
2196
2197/// removes a key value pair from the DHT
2198void BaseOverlay::dhtRemove( const Data& key, const Data& value ) {
2199 // remove from local data store
2200 localDHT->remove(key,value);
2201
2202 // calculate hash
2203 NodeID dest = NodeID::sha1(key.getBuffer(), key.getLength() / 8);
2204 DHTMessage dhtmsg(key,value);
2205
2206 // send message
2207 OverlayMsg msg(OverlayMsg::typeDHTRemove);
2208 msg.encapsulate( &dhtmsg );
2209 dhtSend(&msg, dest);
2210}
2211
2212/// removes all data stored at the given key
2213void BaseOverlay::dhtRemove( const Data& key ) {
2214 // calculate hash
2215 NodeID dest = NodeID::sha1(key.getBuffer(), key.getLength() / 8);
2216 DHTMessage dhtmsg(key);
2217
2218 // send message
2219 OverlayMsg msg(OverlayMsg::typeDHTRemove);
2220 msg.encapsulate( &dhtmsg );
2221 dhtSend(&msg, dest);
2222}
2223
2224/// requests data stored using key
2225void BaseOverlay::dhtGet( const Data& key, const ServiceID& service ) {
2226 logging_info("DHT: trying to resolve key=" <<
2227 key << " for service=" << service.toString() );
2228
2229 // calculate hash
2230 NodeID dest = NodeID::sha1(key.getBuffer(), key.getLength() / 8);
2231 DHTMessage dhtmsg(key);
2232
2233 // send message
2234 OverlayMsg msg(OverlayMsg::typeDHTGet);
2235 msg.setService(service);
2236 msg.encapsulate( &dhtmsg );
2237 dhtSend(&msg, dest);
2238}
2239
2240void BaseOverlay::dhtSend( OverlayMsg* msg, const NodeID& dest ) {
2241 logging_info("DHT: sending message with key=" << dest.toString() );
2242 msg->setSourceNode(this->nodeId);
2243 msg->setDestinationNode(dest);
2244
2245 // local storage? yes-> put into DHT directly
2246 if (overlayInterface->isClosestNodeTo(msg->getDestinationNode())) {
2247 Data d = data_serialize(msg);
2248 Message* m2 = new Message(d);
2249 OverlayMsg* m3 = m2->decapsulate<OverlayMsg>();
2250 handleDHTMessage(m3);
2251 delete m2;
2252 return;
2253 }
2254
2255 // send message "normally"
2256 send(msg, dest);
2257}
2258
2259std::string BaseOverlay::debugInformation() {
2260 std::stringstream s;
2261 int i=0;
2262
2263 // dump overlay information
2264 s << "--- overlay information ----------------------" << endl;
2265 s << overlayInterface->debugInformation() << endl;
2266 s << "----------------------------------------------" << endl;
2267
2268 // dump link state
2269 s << "--- link state -------------------------------" << endl;
2270 BOOST_FOREACH( LinkDescriptor* ld, links ) {
2271 s << "link " << i << ": " << ld << endl;
2272 i++;
2273 }
2274 s << endl;
2275
2276 return s.str();
2277}
2278
2279}} // namespace ariba, overlay
Note: See TracBrowser for help on using the repository browser.