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