Imported Upstream version 0.3.5
[anytun.git] / src / anytun-showtables.cpp
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 methods 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-2014 Markus Grüneis, 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  *  In addition, as a special exception, the copyright holders give
33  *  permission to link the code of portions of this program with the
34  *  OpenSSL library under certain conditions as described in each
35  *  individual source file, and distribute linked combinations
36  *  including the two.
37  *  You must obey the GNU General Public License in all respects
38  *  for all of the code used other than OpenSSL.  If you modify
39  *  file(s) with this exception, you may extend this exception to your
40  *  version of the file(s), but you are not obligated to do so.  If you
41  *  do not wish to do so, delete this exception statement from your
42  *  version.  If you delete this exception statement from all source
43  *  files in the program, then also delete it here.
44  */
45
46 #include "datatypes.h"
47
48 #include "log.h"
49 #include "buffer.h"
50 #include "keyDerivation.h"
51 #include "seqWindow.h"
52 #include "connectionList.h"
53 #include "routingTable.h"
54 #include "networkAddress.h"
55 #include "syncCommand.h"
56
57 #include <sstream>
58 #include <iostream>
59 #include <string>
60
61 #include <boost/archive/text_oarchive.hpp>
62 #include <boost/archive/text_iarchive.hpp>
63
64
65 void output()
66 {
67   ConnectionList& cl(gConnectionList);
68   if(!cl.empty()) {
69     ConnectionMap::iterator it = cl.getBeginUnlocked();
70     mux_t mux = it->first;
71     ConnectionParam& conn(it->second);
72     std::cout << "Client " << mux << ": " ;
73     if(conn.remote_end_==PacketSourceEndpoint()) {
74       std::cout<< "not registered";
75     } else {
76       std::cout<< conn.remote_end_;
77     }
78     std::cout << std::endl;
79     //std::cout << "Connection: Keyderivation-Type: " << conn.kd_.printType() << std::endl;
80     cl.clear();
81   } else {
82     network_address_type_t types[] = {ipv4,ipv6,ethernet};
83     for(int types_idx=0; types_idx<3; types_idx++) {
84       network_address_type_t type = types[types_idx];
85       if(!gRoutingTable.empty(type)) {
86         RoutingMap::iterator it = gRoutingTable.getBeginUnlocked(type);
87         NetworkPrefix pref(it->first);
88         std::cout << "Route: " << pref.toString() << "/" << (int)pref.getNetworkPrefixLength() << " -> ";
89         mux_t mux = it->second;
90         std::cout << mux << std::endl;
91         gRoutingTable.clear(type);
92       }
93     }
94   }
95 }
96
97 void readExactly(size_t toread, std::iostream& result)
98 {
99   size_t hasread = 0;
100   while(toread > hasread && std::cin.good()) {
101     char a[1];
102     std::cin.read(a,1);
103     result.write(a,1);
104     hasread++;
105   }
106 }
107
108 void readAndProcessOne()
109 {
110   size_t message_lenght ;
111   std::stringstream message_lenght_stream;
112   readExactly(5,message_lenght_stream);
113   message_lenght_stream >> message_lenght;
114   std::stringstream void_stream;
115   readExactly(1,void_stream); //skip space
116   if(!message_lenght) {
117     return;
118   }
119   std::stringstream sync_command_stream;
120   readExactly(message_lenght, sync_command_stream);
121   //std::cout << message_lenght << std::endl;
122   //std::cout << sync_command_stream.str()<< std::endl;
123   boost::archive::text_iarchive ia(sync_command_stream);
124   SyncCommand scom(gConnectionList);
125   ia >> scom;
126 }
127
128 int main(int argc, char* argv[])
129 {
130   int ret = 0;
131
132   while(std::cin.good()) {
133     try {
134       readAndProcessOne();
135     } catch(std::exception& e) {
136       std::cout << "uncaught exception, exiting: " << e.what() << std::endl;
137     }
138     output();
139   }
140   return ret;
141 }
142