New upstream version 0.3.6
[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 #include "cryptinit.hpp"
57
58 #include <sstream>
59 #include <iostream>
60 #include <string>
61
62 #include <boost/archive/text_oarchive.hpp>
63 #include <boost/archive/text_iarchive.hpp>
64
65
66 void output()
67 {
68   ConnectionList& cl(gConnectionList);
69   if(!cl.empty()) {
70     ConnectionMap::iterator it = cl.getBeginUnlocked();
71     mux_t mux = it->first;
72     ConnectionParam& conn(it->second);
73     std::cout << "Client " << mux << ": " ;
74     if(conn.remote_end_==PacketSourceEndpoint()) {
75       std::cout<< "not registered";
76     } else {
77       std::cout<< conn.remote_end_;
78     }
79     std::cout << std::endl;
80     //std::cout << "Connection: Keyderivation-Type: " << conn.kd_.printType() << std::endl;
81     cl.clear();
82   } else {
83     network_address_type_t types[] = {ipv4,ipv6,ethernet};
84     for(int types_idx=0; types_idx<3; types_idx++) {
85       network_address_type_t type = types[types_idx];
86       if(!gRoutingTable.empty(type)) {
87         RoutingMap::iterator it = gRoutingTable.getBeginUnlocked(type);
88         NetworkPrefix pref(it->first);
89         std::cout << "Route: " << pref.toString() << "/" << (int)pref.getNetworkPrefixLength() << " -> ";
90         mux_t mux = it->second;
91         std::cout << mux << std::endl;
92         gRoutingTable.clear(type);
93       }
94     }
95   }
96 }
97
98 void readExactly(size_t toread, std::iostream& result)
99 {
100   size_t hasread = 0;
101   while(toread > hasread && std::cin.good()) {
102     char a[1];
103     std::cin.read(a,1);
104     result.write(a,1);
105     hasread++;
106   }
107 }
108
109 void readAndProcessOne()
110 {
111   size_t message_lenght ;
112   std::stringstream message_lenght_stream;
113   readExactly(5,message_lenght_stream);
114   message_lenght_stream >> message_lenght;
115   std::stringstream void_stream;
116   readExactly(1,void_stream); //skip space
117   if(!message_lenght) {
118     return;
119   }
120   std::stringstream sync_command_stream;
121   readExactly(message_lenght, sync_command_stream);
122   //std::cout << message_lenght << std::endl;
123   //std::cout << sync_command_stream.str()<< std::endl;
124   boost::archive::text_iarchive ia(sync_command_stream);
125   SyncCommand scom(gConnectionList);
126   ia >> scom;
127 }
128
129 int main(int argc, char* argv[])
130 {
131   initCrypto();
132
133   int ret = 0;
134   while(std::cin.good()) {
135     try {
136       readAndProcessOne();
137     } catch(std::exception& e) {
138       std::cout << "uncaught exception, exiting: " << e.what() << std::endl;
139     }
140     output();
141   }
142   return ret;
143 }
144