summaryrefslogtreecommitdiff
path: root/anytun.cpp
blob: d9b8b1ea5d1b6918d865a6dab1eaeecf4b8efcf5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
/*
 *  anytun
 *
 *  The secure anycast tunneling protocol (satp) defines a protocol used
 *  for communication between any combination of unicast and anycast
 *  tunnel endpoints.  It has less protocol overhead than IPSec in Tunnel
 *  mode and allows tunneling of every ETHER TYPE protocol (e.g.
 *  ethernet, ip, arp ...). satp directly includes cryptography and
 *  message authentication based on the methodes used by SRTP.  It is
 *  intended to deliver a generic, scaleable and secure solution for
 *  tunneling and relaying of packets of any protocol.
 *
 *
 *  Copyright (C) 2007 anytun.org <satp@wirdorange.org>
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License version 2
 *  as published by the Free Software Foundation.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program (see the file COPYING included with this
 *  distribution); if not, write to the Free Software Foundation, Inc.,
 *  59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

#include <iostream>
#include <poll.h>

#include "datatypes.h"

#include "log.h"
#include "buffer.h"
#include "packet.h"
#include "cypher.h"
#include "keyDerivation.h"
#include "authAlgo.h"
//#include "authTag.h"
#include "signalController.h"
#include "packetSource.h"
#include "tunDevice.h"
#include "options.h"
#include "seqWindow.h"
#include "connectionList.h"

#define PAYLOAD_TYPE_TAP 0x6558
#define PAYLOAD_TYPE_TUN 0x0800

struct Param
{
  Options& opt;
  TunDevice& dev;
  PacketSource& src;
	ConnectionList& cl;
};

void createConnection(const std::string & remote_host , u_int16_t remote_port, ConnectionList & cl, u_int16_t seqSize)
{

	SeqWindow seq(seqSize);

  uint8_t key[] = {
    'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h',
    'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p',
    'q', 'r', 's', 't'
  };

  uint8_t salt[] = {
    'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h',
    'i', 'j', 'k', 'l', 'm', 'n'
  };

	seq_nr_t seq_nr_=0;
  KeyDerivation kd;
  //kd.init(Buffer(key, sizeof(key)), Buffer(salt, sizeof(salt)));
  cLog.msg(Log::PRIO_NOTICE) << "added connection remote host " << remote_host << ":" << remote_port;
	ConnectionParam connparam ( kd,  seq, seq_nr_, remote_host,  remote_port);
	cl.addConnection(connparam,std::string("default"));
}


void encryptPacket(Packet & pack, Cypher & c, ConnectionParam & conn)
{
    // cypher the packet
/*    Buffer tmp_key(16), tmp_salt(14);
		//TODO fix key derivation!
    //conn.kd_.generate(label_satp_encryption, seq, tmp_key, tmp_key.getLength());
    //conn.kd_.generate(label_satp_salt, seq, tmp_salt, tmp_salt.getLength());
    c.setKey(tmp_key);
    c.setSalt(tmp_salt);

    //cLog.msg(Log::PRIO_NOTICE) << "Send Package: seq: " << seq;
		//cLog.msg(Log::PRIO_NOTICE) << "sID: " <<  param->opt.getSenderId();
    //cLog.msg(Log::PRIO_NOTICE) << "Package dump: " << pack.getBuf();

    c.cypher(pack, seq, param->opt.getSenderId());

*/    // add header to packet
	
}

bool decryptPacket(Packet & pack, Cypher & c, ConnectionParam & conn)
{
	u_int16_t sid = pack.getSenderId();
	u_int16_t seq = pack.getSeqNr();
/*
    // decypher the packet
    Buffer tmp_key(16), tmp_salt(14);
    //conn.kd_.generate(label_satp_encryption, seq, tmp_key, tmp_key.getLength());
    //conn.kd_.generate(label_satp_salt, seq, tmp_salt, tmp_salt.getLength());
    c.setKey(tmp_key);
    c.setSalt(tmp_salt);
    c.cypher(pack, seq, sid);
   
    //cLog.msg(Log::PRIO_NOTICE) << "Received Package: seq: " << seq;
		//cLog.msg(Log::PRIO_NOTICE) << "sID: " << sid;
    //cLog.msg(Log::PRIO_NOTICE) << "Package dump: " << pack.getBuf();
*/
	return true;
}

void addPacketAuthTag(Packet & pack, Cypher & c, ConnectionParam & conn)
{

//    // calc auth_tag and add it to the packet
//    AuthTag at = a.calc(pack);
//    if(at != AuthTag(0)) {
//      //auth_tag_t at = a.calc(pack);
//      pack.addAuthTag(at);
//    }
//
    // send it out to remote host
}

bool checkPacketAuthTag(Packet & pack, Cypher & c, ConnectionParam & conn)
{
//    // check auth_tag and remove it
//    AuthTag at = pack.getAuthTag();
    pack.removeAuthTag();
  //return at == a.calc(pack);
	return true;
}

bool checkPacketSeqNr(Packet & pack,ConnectionParam & conn)
{
	u_int16_t sid = pack.getSenderId();
	u_int16_t seq = pack.getSeqNr();
	// compare sender_id and seq with window
	if(conn.seq_window_.hasSeqNr(pack.getSenderId(), pack.getSeqNr()))
	{
		cLog.msg(Log::PRIO_NOTICE) << "Replay attack from " << conn.remote_host_<<":"<< conn.remote_port_<< " seq:"<<pack.getSeqNr() << " sid: "<<pack.getSenderId();
		return false;
	}

	conn.seq_window_.addSeqNr(pack.getSenderId(), pack.getSeqNr());
	return true;
}

void* sender(void* p)
{
  Param* param = reinterpret_cast<Param*>(p);
	//TODO make Cypher selectable with command line option
	NullCypher c;
//  AesIcmCypher c;
//  NullAuthAlgo a;

  while(1)
  {
		//TODO make pack global, reduce dynamic memory!
    Packet pack(1600); // fix me... mtu size
		
    // read packet from device
    int len = param->dev.read(pack);
		//TODO remove, no dynamic memory resizing
    pack.resizeBack(len);

    if( param->cl.empty())
      continue;
		ConnectionParam conn = param->cl.getConnection();
    // add payload type
    if(param->dev.getType() == TunDevice::TYPE_TUN)
      pack.addPayloadType(PAYLOAD_TYPE_TUN);
    else if(param->dev.getType() == TunDevice::TYPE_TAP)
      pack.addPayloadType(PAYLOAD_TYPE_TAP);
    else 
      pack.addPayloadType(0);

		encryptPacket(pack, c, conn);

    pack.addHeader(conn.seq_nr_, param->opt.getSenderId());
    conn.seq_nr_++;

		addPacketAuthTag(pack, c, conn);
    param->src.send(pack, conn.remote_host_, conn.remote_port_);
  }
  pthread_exit(NULL);
}

void* sync_receiver(void* p)
{
	Param* param = reinterpret_cast<Param*>(p);

	while(1)
	{
	}
}

void* receiver(void* p)
{
  Param* param = reinterpret_cast<Param*>(p);  
  NullCypher c;
//  AesIcmCypher c;
//  NullAuthAlgo a;
  
  while(1)
  {
    string remote_host;
    u_int16_t remote_port;
    u_int16_t sid = 0, seq = 0;
    Packet pack(1600);  // fix me... mtu size

    // read packet from socket
    u_int32_t len = param->src.recv(pack, remote_host, remote_port);
    pack.resizeBack(len);
//    pack.withPayloadType(true).withHeader(true).withAuthTag(true);
    pack.withPayloadType(true).withHeader(true).withAuthTag(false);


    // autodetect peer
		// TODO check auth tag first
		// this should be done by keymanagement anyway
    if(param->opt.getRemoteAddr() == "" && param->cl.empty())
		{
      cLog.msg(Log::PRIO_NOTICE) << "autodetected remote host " << remote_host << ":" << remote_port;
			createConnection(remote_host, remote_port, param->cl,param->opt.getSeqWindowSize());
		}

		//TODO Add multi connection support here
		ConnectionParam conn = param->cl.getConnection();

		if (!checkPacketAuthTag(pack, c, conn))
			continue;

		//Allow dynamic IP changes 
		//TODO add command line option to turn this off
		if (remote_host != conn.remote_host_ || remote_port != conn.remote_port_)
		{
      cLog.msg(Log::PRIO_NOTICE) << "autodetected remote host ip changed " << remote_host << ":" << remote_port;
			conn.remote_host_=remote_host;
			conn.remote_port_=remote_port;
		}	

		//Replay Protection
		//if (!checkPacketSeqNr(pack,conn))
		//	continue;
		pack.removeHeader();

		if (!decryptPacket(pack, c, conn))
			continue;
    // check payload_type and remove it
    if((param->dev.getType() == TunDevice::TYPE_TUN && pack.getPayloadType() != PAYLOAD_TYPE_TUN) ||
       (param->dev.getType() == TunDevice::TYPE_TAP && pack.getPayloadType() != PAYLOAD_TYPE_TAP))
      continue;
    pack.removePayloadType();
    
    // write it on the device
    param->dev.write(pack);
  }
  pthread_exit(NULL);
}

int main(int argc, char* argv[])
{
  std::cout << "anytun - secure anycast tunneling protocol" << std::endl;
  Options opt;
  if(!opt.parse(argc, argv))
  {
    opt.printUsage();
    exit(-1);
  }
  cLog.msg(Log::PRIO_NOTICE) << "anytun started...";

  SignalController sig;
  sig.init();
  std::string dev_type(opt.getDevType()); 
  TunDevice dev(opt.getDevName().c_str(), dev_type=="" ? NULL : dev_type.c_str(), opt.getIfconfigParamLocal().c_str(), opt.getIfconfigParamRemoteNetmask().c_str());

  PacketSource* src;
  if(opt.getLocalAddr() == "")
    src = new UDPPacketSource(opt.getLocalPort());
  else
    src = new UDPPacketSource(opt.getLocalAddr(), opt.getLocalPort());

	ConnectionList cl;

	if(opt.getRemoteAddr() != "")
		createConnection(opt.getRemoteAddr(),opt.getRemotePort(),cl,opt.getSeqWindowSize());

  struct Param p = {opt, dev, *src, cl};
    
  cLog.msg(Log::PRIO_NOTICE) << "dev created (opened)";
  cLog.msg(Log::PRIO_NOTICE) << "dev opened - actual name is '" << p.dev.getActualName() << "'";
  cLog.msg(Log::PRIO_NOTICE) << "dev type is '" << p.dev.getTypeString() << "'";
  
  pthread_t senderThread;
  pthread_create(&senderThread, NULL, sender, &p);  
  pthread_t receiverThread;
  pthread_create(&receiverThread, NULL, receiver, &p);  

  int ret = sig.run();

  pthread_cancel(senderThread);
  pthread_cancel(receiverThread);  
  pthread_join(senderThread, NULL);
  pthread_join(receiverThread, NULL);

  delete src;

  return ret;
}