aboutsummaryrefslogtreecommitdiff
path: root/src/vpn/gnunet-helper-vpn.c
blob: 6dc858f97e3950171c06f5dad3e96c4f69151feb (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
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
/*
     This file is part of GNUnet.
     (C) 2010 Christian Grothoff

     GNUnet is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published
     by the Free Software Foundation; either version 3, or (at your
     option) any later version.

     GNUnet 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 GNUnet; see the file COPYING.  If not, write to the
     Free Software Foundation, Inc., 59 Temple Place - Suite 330,
     Boston, MA 02111-1307, USA.
*/

/**
 * @file vpn/gnunet-daemon-vpn.c
 * @brief the helper for various vpn-daemons. Opens a virtual network-interface,
 * sends data received on the if to stdout, sends data received on stdin to the
 * interface
 * @author Philipp Tölke
 */
#include <platform.h>
#include <linux/if_tun.h>

/**
 * Need 'struct GNUNET_MessageHeader'.
 */
#include "gnunet_common.h"

/**
 * Need VPN message types.
 */
#include "gnunet_protocols.h"

/**
 * Maximum size of a GNUnet message (GNUNET_SERVER_MAX_MESSAGE_SIZE)
 */
#define MAX_SIZE 65536

#ifndef _LINUX_IN6_H
/**
 * This is in linux/include/net/ipv6.h, but not always exported...
 */
struct in6_ifreq 
{
  struct in6_addr ifr6_addr;
  uint32_t ifr6_prefixlen;
  unsigned int ifr6_ifindex;
};
#endif


struct suid_packet 
{
  struct GNUNET_MessageHeader hdr;
  unsigned char data[1];
}


/**
 * Creates a tun-interface called dev;
 * @param dev is asumed to point to a char[IFNAMSIZ]
 *        if *dev == '\0', uses the name supplied by the kernel
 * @return the fd to the tun or -1 on error
 */
static int 
init_tun (char *dev) 
{
  struct ifreq ifr;
  int fd;

  if (NULL == dev) 
    {
      errno = EINVAL;
      return -1;
    }

  if (-1 == (fd = open("/dev/net/tun", O_RDWR))) 
    {
      fprintf (stderr, 
	       "Error opening `%s': %s\n", 
	       "/dev/net/tun",
	       strerror(errno));
      return -1;
    }

  memset(&ifr, 0, sizeof(ifr));
  ifr.ifr_flags = IFF_TUN;

  if ('\0' == *dev)
    strncpy(ifr.ifr_name, dev, IFNAMSIZ);

  if (-1 == ioctl(fd, TUNSETIFF, (void *) &ifr))
    {
      fprintf (stderr, 
	       "Error with ioctl on `%s': %s\n", 
	       "/dev/net/tun",
	       strerror(errno));
      close (fd);
      return -1;
    }
  strcpy(dev, ifr.ifr_name);
  return fd;
}


/**
 * @brief Sets the IPv6-Address given in address on the interface dev
 *
 * @param dev the interface to configure
 * @param address the IPv6-Address
 * @param prefix_len the length of the network-prefix
 */
static void
set_address6 (const char *dev, 
	      const char *address, 
	      unsigned long prefix_len)
{			    
  struct ifreq ifr;
  struct in6_ifreq ifr6;
  struct sockaddr_in6 sa6;
  int fd;

  if (-1 == (fd = socket (PF_INET6, SOCK_DGRAM, 0)))
    {
      fprintf (stderr, 
	       "Error creating socket: %s\n",
	       strerror (errno));
      exit (1);
    }
  memset (&sa6, 0, sizeof (struct sockaddr_in6));
  sa6.sin6_family = AF_INET6;

  if (1 != inet_pton (AF_INET6, address, sa6.sin6_addr.s6_addr))
    {
      fprintf (stderr, 
	       "Failed to parse address `%s': %s\n",
	       address,
	       strerror (errno));
      exit (1);
    }

  memcpy (&ifr6.ifr6_addr, 
	  &sa6.sin6_addr,
	  sizeof (struct in6_addr));
  strncpy (ifr.ifr_name, dev, IFNAMSIZ);
  if (-1 == ioctl (fd, SIOGIFINDEX, &ifr))
    {
      fprintf (stderr, 
	       "ioctl failed at %d: %s\n",
	       __LINE__,
	       strerror (errno));
      exit (1);
    }

  ifr6.ifr6_ifindex = ifr.ifr_ifindex;
  ifr6.ifr6_prefixlen = prefix_len;
  if (-1 == ioctl (fd, SIOCSIFADDR, &ifr6))
    {
      fprintf (stderr, 
	       "ioctl failed at line %d: %s\n",
	       __LINE__,
	       strerror (errno));
      exit (1);
    }

  if (-1 == ioctl (fd, SIOCGIFFLAGS, &ifr))
    {
      fprintf (stderr, 
	       "ioctl failed at line %d: %s\n",
	       __LINE__,
	       strerror (errno));
      exit (1);
    }
  ifr.ifr_flags |= IFF_UP | IFF_RUNNING;
  if (-1 == ioctl (fd, SIOCSIFFLAGS, &ifr))
    {
      fprintf (stderr, 
	       "ioctl failed at line %d: %s\n",
	       __LINE__,
	       strerror (errno));
      exit (1);
    }

  if (0 != close (fd))
    {
      fprintf (stderr, 
	       "close failed: %s\n",
	       strerror (errno));
      exit (1);
    }
}


/**
 * @brief Sets the IPv4-Address given in address on the interface dev
 *
 * @param dev the interface to configure
 * @param address the IPv4-Address
 * @param mask the netmask
 */
static void
set_address4 (char *dev, char *address, char *mask)
{
  int fd = 0;
  struct sockaddr_in *addr;
  struct ifreq ifr;

  memset (&ifr, 0, sizeof (struct ifreq));
  addr = (struct sockaddr_in *) &(ifr.ifr_addr);
  memset (addr, 0, sizeof (struct sockaddr_in));
  addr->sin_family = AF_INET;
  addr->sin_addr.s_addr = inet_addr (address);

  int r = inet_pton (AF_INET, address, &addr->sin_addr.s_addr);
  if (r < 0)
    {
      fprintf (stderr, "error at inet_pton: %m\n");
      exit (1);
    }

  fd = socket (PF_INET, SOCK_DGRAM, 0);
  if (fd < 0)
    {
      perror ("socket()");
      return;
    }

  strncpy (ifr.ifr_name, dev, IFNAMSIZ);

  if (ioctl (fd, SIOCSIFADDR, &ifr) != 0)
    {
      perror ("SIOCSIFADDR");
      close (fd);
      return;
    }

  addr = (struct sockaddr_in *) &(ifr.ifr_netmask);
  r = inet_pton (AF_INET, mask, &addr->sin_addr.s_addr);
  if (r < 0)
    {
      fprintf (stderr, "error at inet_pton: %m\n");
      exit (1);
    }

  if (ioctl (fd, SIOCSIFNETMASK, &ifr) != 0)
    {
      perror ("SIOCSIFNETMASK");
      close (fd);
      return;
    }

  (void) ioctl (fd, SIOCGIFFLAGS, &ifr);
  ifr.ifr_flags |= IFF_UP | IFF_RUNNING;
  (void) ioctl (fd, SIOCSIFFLAGS, &ifr);
  close (fd);
}


static void
run (int fd_tun)
{
  unsigned char buf[MAX_SIZE];
  fd_set fds_w;
  fd_set fds_r;
  int rea = 1;
  int wri = 1;
  int write_fd_possible = 0;
  int write_stdout_possible = 0;
  ssize_t tin;
outer:
  while ((1 == rea) || (1 == wri))
    {
      FD_ZERO (&fds_w);
      FD_ZERO (&fds_r);

      if (rea)
	{
	  FD_SET (fd_tun, &fds_r);
	  if (!write_stdout_possible)
	    FD_SET (1, &fds_w);
	}

      if (wri)
	{
	  FD_SET (0, &fds_r);
	  if (!write_fd_possible)
	    FD_SET (fd_tun, &fds_w);
	}

      int r = select (fd_tun + 1, &fds_r, &fds_w, NULL, NULL);
      if (r > 0)
	{
	  if (FD_ISSET (fd_tun, &fds_w))
	    write_fd_possible = 1;
	  if (FD_ISSET (1, &fds_w))
	    write_stdout_possible = 1;

	  if (FD_ISSET (0, &fds_r) && write_fd_possible)
	    {
	      write_fd_possible = 0;
	      struct suid_packet *pkt = (struct suid_packet *) buf;
	      tin = read (0, buf, sizeof (struct GNUNET_MessageHeader));
	      if (tin <= 0)
		{
		  fprintf (stderr, "read-error: %s\n", strerror (errno));
		  shutdown (fd_tun, SHUT_WR);
		  shutdown (0, SHUT_RD);
		  wri = 0;
		  goto outer;
		}
	      if (pkt->hdr.type != ntohs (GNUNET_MESSAGE_TYPE_VPN_HELPER))
		abort ();
	      while (tin < ntohs (pkt->hdr.size))
		{
		  ssize_t t = read (0, buf + tin, ntohs (pkt->hdr.size) - tin);
		  if (t <= 0)
		    {
		      fprintf (stderr, "read-error: %s\n", strerror (errno));
		      shutdown (fd_tun, SHUT_WR);
		      shutdown (0, SHUT_RD);
		      wri = 0;
		      goto outer;
		    }
		  tin += t;
		}
	      tin = 0;
	      while (tin <
		     ntohs (pkt->hdr.size) -
		     sizeof (struct GNUNET_MessageHeader))
		{
		  ssize_t t = write (fd_tun, pkt->data,
				 ntohs (pkt->hdr.size) -
				 sizeof (struct GNUNET_MessageHeader) - tin);
		  if (t <= 0)
		    {
		      fprintf (stderr, "write-error 3: %s\n",
			       strerror (errno));
		      shutdown (fd_tun, SHUT_WR);
		      shutdown (0, SHUT_RD);
		      wri = 0;
		      goto outer;
		    }
		  tin += t;
		}
	    }
	  else if (write_stdout_possible && FD_ISSET (fd_tun, &fds_r))
	    {
	      write_stdout_possible = 0;
	      tin = read (fd_tun, buf, MAX_SIZE);
	      if (tin <= 0)
		{
		  fprintf (stderr, "read-error: %s\n", strerror (errno));
		  shutdown (fd_tun, SHUT_RD);
		  shutdown (1, SHUT_WR);
		  rea = 0;
		  goto outer;
		}
	      struct GNUNET_MessageHeader hdr = {.size =
		  htons (r + sizeof (struct GNUNET_MessageHeader)),.type =
		  htons (GNUNET_MESSAGE_TYPE_VPN_HELPER)
	      };
	      tin = 0;
	      while (tin < sizeof (struct GNUNET_MessageHeader))
		{
		  ssize_t t =
		    write (1, &hdr, sizeof (struct GNUNET_MessageHeader) - tin);
		  if (t < 0)
		    {
		      fprintf (stderr, "write-error 2: %s\n",
			       strerror (errno));
		      shutdown (fd_tun, SHUT_RD);
		      shutdown (1, SHUT_WR);
		      rea = 0;
		      goto outer;
		    }
		  tin += t;
		}
	      while (tin < ntohs (hdr.size))
		{
		  size_t t = write (1, buf, ntohs (hdr.size) - tin);
		  if (t < 0)
		    {
		      fprintf (stderr, "write-error 1: %s, written %d/%d\n",
			       strerror (errno), r, ntohs (hdr.size));
		      shutdown (fd_tun, SHUT_RD);
		      shutdown (1, SHUT_WR);
		      rea = 0;
		      goto outer;
		    }
		  tin += t;
		}
	    }
	}
    }
}



/**
 * @brief sets the socket to nonblocking
 *
 * @param fd the socket
 */
static void
setnonblocking (int fd)
{
  int opts;

  if (-1 == (opts = fcntl (fd, F_GETFL)))
    {
      fprintf (stderr, 
	       "Error in fcntl at line %d: %s\n",
	       __LINE__,
	       strerror (errno));
      exit (1);
    }
  opts |= O_NONBLOCK;
  if (-1 == fcntl (fd, F_SETFL, opts)) 
    {
      fprintf (stderr, 
	       "Error in fcntl at line %d: %s\n",
	       __LINE__,
	       strerror (errno));
      exit (1);
    }
}


int 
main (int argc, 
      char** argv) 
{
  char dev[IFNAMSIZ];
  int fd_tun;

  memset (dev, 0, IFNAMSIZ);
  if (-1 == (fd_tun = init_tun (dev)))
    {
      fprintf (stderr, 
	       "Fatal: could not initialize tun-interface\n");
      return 1;
    }

  {
    // TODO: get this out of argv
    char address[] = "1234::1";
    unsigned long prefix_len = 16;

    set_address6 (dev, address, prefix_len);
  }

  {
    char address[] = "10.10.10.1";
    char mask[] = "255.255.255.252";

    set_address4 (dev, address, mask);
  }

  uid_t uid = getuid ();
  if (0 != setresuid (uid, uid, uid))
    fprintf (stderr, 
	     "Failed to setresuid: %s\n", 
	     strerror (errno));
  run (fd_tun);
  close (fd_tun);
  return 0;
}