Imported Upstream version 0.3.4
[anytun.git] / src / routingTable.h
1 /*
2  *  anytun
3  *
4  *  The secure anycast tunneling protocol (satp) defines a protocol used
5  *  for communication between any combination of unicast and anycast
6  *  tunnel endpoints.  It has less protocol overhead than IPSec in Tunnel
7  *  mode and allows tunneling of every ETHER TYPE protocol (e.g.
8  *  ethernet, ip, arp ...). satp directly includes cryptography and
9  *  message authentication based on the methodes used by SRTP.  It is
10  *  intended to deliver a generic, scaleable and secure solution for
11  *  tunneling and relaying of packets of any protocol.
12  *
13  *
14  *  Copyright (C) 2007-2009 Othmar Gsenger, Erwin Nindl,
15  *                          Christian Pointner <satp@wirdorange.org>
16  *
17  *  This file is part of Anytun.
18  *
19  *  Anytun is free software: you can redistribute it and/or modify
20  *  it under the terms of the GNU General Public License as published by
21  *  the Free Software Foundation, either version 3 of the License, or
22  *  any later version.
23  *
24  *  Anytun is distributed in the hope that it will be useful,
25  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
26  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
27  *  GNU General Public License for more details.
28  *
29  *  You should have received a copy of the GNU General Public License
30  *  along with anytun.  If not, see <http://www.gnu.org/licenses/>.
31  */
32
33 #ifndef ANYTUN_routingTable_h_INCLUDED
34 #define ANYTUN_routingTable_h_INCLUDED
35
36 #include <map>
37 #include <deque>
38
39 #include "threadUtils.hpp"
40 #include "datatypes.h"
41 #include "networkAddress.h"
42 #include "networkPrefix.h"
43 #include "routingTreeNode.h"
44 #include "boost/array.hpp"
45 typedef std::map<NetworkPrefix,uint16_t> RoutingMap;
46
47 class RoutingTable
48 {
49 public:
50   static RoutingTable& instance();
51   RoutingTable();
52   ~RoutingTable();
53   void addRoute(const NetworkPrefix& ,uint16_t);
54   void updateRouteTreeUnlocked(const NetworkPrefix& pref);
55   void delRoute(const NetworkPrefix&);
56   uint16_t getRoute(const NetworkAddress&);
57   bool empty(network_address_type_t type);
58   void clear(network_address_type_t type);
59   Mutex& getMutex();
60   uint16_t* getOrNewRoutingTEUnlocked(const NetworkPrefix& addr);
61   uint16_t getCountUnlocked(network_address_type_t type);
62   RoutingMap::iterator getBeginUnlocked(network_address_type_t type);
63   RoutingMap::iterator getEndUnlocked(network_address_type_t type);
64
65 private:
66   static Mutex instMutex;
67   static RoutingTable* inst;
68   class instanceCleaner
69   {
70   public:
71     ~instanceCleaner() {
72       if(RoutingTable::inst != 0) {
73         delete RoutingTable::inst;
74       }
75     }
76   };
77   RoutingTable(const RoutingTable& s);
78   void operator=(const RoutingTable& s);
79   boost::array<RoutingMap,3> routes_;
80   boost::array<RoutingTreeNode,3> root_;
81   Mutex mutex_;
82 };
83
84 extern RoutingTable& gRoutingTable;
85
86 #endif