bugfix with strerror_r - still not working but at least not using uninitialized data
[anytun.git] / src / anytun-config.cpp
blobde1dad10dc906a33ee3ad8e3ca242a805b5c413a
1 /*
2 * anytun
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.
14 * Copyright (C) 2007 anytun.org <satp@wirdorange.org>
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License version 2
18 * as published by the Free Software Foundation.
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * You should have received a copy of the GNU General Public License
26 * along with this program (see the file COPYING included with this
27 * distribution); if not, write to the Free Software Foundation, Inc.,
28 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
31 #include <iostream>
32 #include <poll.h>
34 #include "datatypes.h"
36 #include "log.h"
37 #include "buffer.h"
38 #include "keyDerivation.h"
39 #include "keyDerivationFactory.h"
40 #include "signalController.h"
41 #include "anyConfOptions.h"
42 #include "connectionList.h"
43 #include "routingTable.h"
44 #include "networkAddress.h"
46 #include "syncQueue.h"
47 #include "syncSocketHandler.h"
48 #include "syncListenSocket.h"
50 #include "syncSocket.h"
51 #include "syncClientSocket.h"
52 #include "syncCommand.h"
56 void createConnection(const std::string & remote_host, u_int16_t remote_port, ConnectionList & cl, u_int16_t seqSize, SyncQueue & queue, mux_t mux)
58 SeqWindow * seq = new SeqWindow(seqSize);
59 seq_nr_t seq_nr_ = 0;
60 KeyDerivation * kd = KeyDerivationFactory::create( gOpt.getKdPrf() );
61 kd->init( gOpt.getKey(), gOpt.getSalt() );
62 cLog.msg(Log::PRIO_NOTICE) << "added connection remote host " << remote_host << ":" << remote_port;
63 ConnectionParam connparam ( (*kd), (*seq), seq_nr_, remote_host, remote_port );
64 cl.addConnection( connparam, mux );
66 std::ostringstream sout;
67 boost::archive::text_oarchive oa( sout );
68 const SyncCommand scom( cl, mux );
70 oa << scom;
71 std::cout << std::setw(5) << std::setfill('0') << sout.str().size()<< ' ' << sout.str() << std::endl;
73 RouteList routes = gOpt.getRoutes();
74 RouteList::const_iterator rit;
75 for(rit = routes.begin(); rit != routes.end(); ++rit)
77 NetworkAddress addr( ipv4, rit->net_addr.c_str() );
78 NetworkPrefix prefix( addr, rit->prefix_length );
80 gRoutingTable.addRoute( prefix, mux );
82 std::ostringstream sout2;
83 boost::archive::text_oarchive oa2( sout2 );
84 const SyncCommand scom2( prefix );
86 oa2 << scom2;
87 std::cout << std::setw(5) << std::setfill('0') << sout2.str().size()<< ' ' << sout2.str() << std::endl;
91 int main(int argc, char* argv[])
93 int ret=0;
94 if(!gOpt.parse(argc, argv))
96 gOpt.printUsage();
97 exit(-1);
100 SignalController sig;
101 sig.init();
103 ConnectionList cl;
104 SyncQueue queue;
106 createConnection(gOpt.getRemoteAddr(),gOpt.getRemotePort(),cl,gOpt.getSeqWindowSize(), queue, gOpt.getMux());
108 return ret;