New upstream version 0.3.6
[anytun.git] / src / anytun-config.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 <iostream>
47
48 #include "datatypes.h"
49
50 #include "log.h"
51 #include "buffer.h"
52 #include "keyDerivation.h"
53 #include "keyDerivationFactory.h"
54 #include "options.h"
55 #include "connectionList.h"
56 #include "routingTable.h"
57 #include "networkAddress.h"
58 #include "packetSource.h"
59 #include "resolver.h"
60 #include "cryptinit.hpp"
61
62 #include "syncQueue.h"
63 #include "syncCommand.h"
64
65
66
67 void createConnection(const PacketSourceEndpoint& remote_end, ConnectionList& cl, uint16_t seqSize, SyncQueue& queue, mux_t mux, Semaphore& sem)
68 {
69   SeqWindow* seq = new SeqWindow(seqSize);
70   seq_nr_t seq_nr_ = 0;
71   KeyDerivation* kd = KeyDerivationFactory::create(gOpt.getKdPrf());
72   kd->init(gOpt.getKey(), gOpt.getSalt(), gOpt.getPassphrase());
73   kd->setRole(gOpt.getRole());
74   cLog.msg(Log::PRIO_NOTICE) << "added connection remote host " << remote_end;
75   ConnectionParam connparam((*kd), (*seq), seq_nr_, remote_end);
76   cl.addConnection(connparam, mux);
77
78   std::ostringstream sout;
79   boost::archive::text_oarchive oa(sout);
80   const SyncCommand scom(cl, mux);
81
82   oa << scom;
83   std::cout <<  std::setw(5) << std::setfill('0') << sout.str().size()<< ' ' << sout.str() << std::endl;
84
85   NetworkList routes = gOpt.getRoutes();
86   NetworkList::const_iterator rit;
87   for(rit = routes.begin(); rit != routes.end(); ++rit) {
88     NetworkAddress addr(rit->net_addr.c_str());
89     NetworkPrefix prefix(addr, rit->prefix_length);
90
91     gRoutingTable.addRoute(prefix, mux);
92
93     std::ostringstream sout2;
94     boost::archive::text_oarchive oa2(sout2);
95     const SyncCommand scom2(prefix);
96
97     oa2 << scom2;
98     std::cout <<  std::setw(5) << std::setfill('0') << sout2.str().size()<< ' ' << sout2.str() << std::endl;
99   }
100   sem.up();
101 }
102
103 void createConnectionResolver(PacketSourceResolverIt it, ConnectionList& cl, uint16_t seqSize, SyncQueue& queue, mux_t mux, Semaphore& sem)
104 {
105   createConnection(*it, cl, seqSize, queue, mux, sem);
106 }
107
108 void createConnectionError(const std::exception& e, Semaphore& sem, int& ret)
109 {
110   cLog.msg(Log::PRIO_ERROR) << "uncaught runtime error: " << e.what();
111   ret = -1;
112   sem.up();
113 }
114
115 int main(int argc, char* argv[])
116 {
117   try {
118     if(!gOpt.parse(argc, argv)) {
119       exit(0);
120     }
121
122     StringList targets = gOpt.getLogTargets();
123     for(StringList::const_iterator it = targets.begin(); it != targets.end(); ++it) {
124       cLog.addTarget(*it);
125     }
126   } catch(syntax_error& e) {
127     std::cerr << e << std::endl;
128     gOpt.printUsage();
129     exit(-1);
130   }
131
132   gOpt.parse_post(); // print warnings
133
134   gResolver.init();
135
136   initCrypto();
137
138   ConnectionList cl;
139   SyncQueue queue;
140
141   Semaphore sem;
142   int ret = 0;
143   UDPPacketSource::proto::endpoint endpoint;
144   // allow emtpy endpoint!!!
145   gResolver.resolveUdp(gOpt.getRemoteAddr(), gOpt.getRemotePort(),
146                        boost::bind(createConnectionResolver, _1, boost::ref(cl), gOpt.getSeqWindowSize(), boost::ref(queue), gOpt.getMux(), boost::ref(sem)),
147                        boost::bind(createConnectionError, _1, boost::ref(sem), boost::ref(ret)),
148                        gOpt.getResolvAddrType());
149   sem.down();
150   return ret;
151 }
152