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
35 #include <cerrno> // for ENOMEM
37 #include "datatypes.h"
41 #include "plainPacket.h"
42 #include "encryptedPacket.h"
44 #include "keyDerivation.h"
47 #include "cipherFactory.h"
48 #include "authAlgoFactory.h"
49 #include "keyDerivationFactory.h"
50 #include "signalController.h"
51 #include "packetSource.h"
52 #include "tunDevice.h"
54 #include "seqWindow.h"
55 #include "connectionList.h"
56 #include "routingTable.h"
57 #include "networkAddress.h"
59 #include "syncQueue.h"
60 #include "syncSocketHandler.h"
61 #include "syncListenSocket.h"
63 #include "syncSocket.h"
64 #include "syncClientSocket.h"
65 #include "syncCommand.h"
67 #include "threadParam.h"
69 #define MAX_PACKET_LENGTH 1600
71 #define SESSION_KEYLEN_AUTH 20 // TODO: hardcoded size
72 #define SESSION_KEYLEN_ENCR 16 // TODO: hardcoded size
73 #define SESSION_KEYLEN_SALT 14 // TODO: hardcoded size
75 void createConnection(const std::string
& remote_host
, u_int16_t remote_port
, ConnectionList
& cl
, u_int16_t seqSize
, SyncQueue
& queue
, mux_t mux
)
77 SeqWindow
* seq
= new SeqWindow(seqSize
);
79 KeyDerivation
* kd
= KeyDerivationFactory::create(gOpt
.getKdPrf());
80 kd
->init(gOpt
.getKey(), gOpt
.getSalt());
81 cLog
.msg(Log::PRIO_NOTICE
) << "added connection remote host " << remote_host
<< ":" << remote_port
;
82 ConnectionParam
connparam ( (*kd
), (*seq
), seq_nr_
, remote_host
, remote_port
);
83 cl
.addConnection(connparam
,mux
);
84 NetworkAddress
addr(ipv4
,gOpt
.getIfconfigParamRemoteNetmask().c_str());
85 NetworkPrefix
prefix(addr
);
86 gRoutingTable
.addRoute(prefix
,mux
);
87 std::ostringstream sout
;
88 boost::archive::text_oarchive
oa(sout
);
89 const SyncCommand
scom(cl
,mux
);
90 const SyncCommand
scom2 (prefix
);
92 std::cout
<< std::setw(5) << std::setfill('0') << sout
.str().size()<< ' ' << sout
.str() << std::endl
;
93 std::ostringstream sout2
;
94 boost::archive::text_oarchive
oa2(sout2
);
96 std::cout
<< std::setw(5) << std::setfill('0') << sout2
.str().size()<< ' ' << sout2
.str() << std::endl
;
99 int main(int argc
, char* argv
[])
102 if(!gOpt
.parse(argc
, argv
))
108 SignalController sig
;
114 if(gOpt
.getRemoteAddr() != "")
116 createConnection(gOpt
.getRemoteAddr(),gOpt
.getRemotePort(),cl
,gOpt
.getSeqWindowSize(), queue
, gOpt
.getMux());