chiark / gitweb /
New encrypting tunnel seems to work !
[userv-utils] / ipif / forwarder.c
CommitLineData
84f87e82 1/*
2 * Encrypting tunnel for userv-ipif tunnels, actual implementation
3 *
4 * usage:
d31674ca 5 * udptunnel-forwarder <optchars>
6 * <public-local-fd> <private-in-fd> <private-out-fd>
7 * <encdec-keys-fd>
84f87e82 8 * <mtu> <keepalive> <timeout>
9 * <public-remote-addr> [<public-remote-port>]
8bb9d875 10 * |<mech1> [<mech1-params> ...]
11 * |<mech2> [<mech2-params> ...]
84f87e82 12 * ''
13 *
14 * Remote addr may '' to mean wait to receive a packet and reply to
15 * whereever we get a good packet from first, in which case port
16 * should not be specified.
17 *
d31674ca 18 * <optchars> is zero or more of
19 * w means generate and write encdec keys, rather than reading them
244a0e99 20 * K means do crypto debug (use with care!)
84f87e82 21 *
8bb9d875 22 * encdec keys datastream has keys for packets from key datastream
23 * writer to reader first, then keys for packets from reader to
24 * writer.
25 *
84f87e82 26 * Every must be numeric. There is very little argument checking.
27 *
28 * Exit status:
29 * SIGALARM timed out
30 * 0 terminated due to outbound packet stream EOF
31 * 4 other error
32 * 8 system problem
33 * 12 usage error
34 * 16 bad trouble
35 */
36
37#include <sys/socket.h>
38#include <netinet/in.h>
39#include <arpa/inet.h>
40#include <sys/utsname.h>
41#include <sys/poll.h>
42
43#include <string.h>
44#include <errno.h>
45#include <assert.h>
46#include <stdlib.h>
47
48#include <unistd.h>
49#include <fcntl.h>
50
aaa9ab3a 51#include "forwarder.h"
84f87e82 52
53#define MAXMECHS 10
84f87e82 54
84f87e82 55static size_t buffer_size;
244a0e99 56static struct utsname uname_result;
84f87e82 57
d31674ca 58static const char *opt_chars;
84f87e82 59static int public_local_fd, private_in_fd, private_out_fd;
60static int mtu2, keepalive, timeout;
61static int public_remote_specd;
62static struct sockaddr_in public_remote;
d31674ca 63static int encdec_keys_fd, encdec_keys_write, crypto_debug;
84f87e82 64static int n_mechs;
65static const struct mechanism *mechs[MAXMECHS];
66
67static struct mechdata *md_in[MAXMECHS], *md_out[MAXMECHS];
68static size_t maxprefix, maxsuffix;
69
70static struct buffer buf_in, buf_out;
71static unsigned char *accum_buf;
72static size_t accum_used, accum_avail;
73
74static time_t nextsendka;
75
d31674ca 76static void cdebug(int mechno /*or -1*/, const char *msg) {
77 if (!crypto_debug) return;
8bb9d875 78 printf("%-8.8s: CRYPTO: %-20s %s\n",
79 uname_result.nodename,
244a0e99 80 mechno >= 0 ? mechs[mechno]->name : "",
d31674ca 81 msg);
82}
83
244a0e99 84static void cdebughex(int mechno /*or -1*/, const char *msg, const void *ptr,
85 size_t sz, size_t skipbefore,
86 int spc_offset, int dot_offset) {
d31674ca 87 const unsigned char *p;
244a0e99 88 size_t i;
89 unsigned j= dot_offset;
d31674ca 90
91 if (!crypto_debug) return;
244a0e99 92 printf("%-8.8s: CRYPTO: %-20s %-10s",
93 uname_result.nodename,
94 mechno >= 0 ? mechs[mechno]->name : "",
d31674ca 95 msg);
244a0e99 96
97 for (i=0; i<spc_offset; i++, j++) fputs(j&3 ? " " : " ",stdout);
98 for (i=0; i<skipbefore; i++, j++) fputs(j&3 ? ".." : " ..",stdout);
99 for (i=0, p=ptr; i<sz; i++, j++, p++) printf(j&3 ? "%02x" : " %02x",*p);
100
d31674ca 101 fputc('\n',stdout);
102}
103
244a0e99 104static void cdebugbuf(int mechno /*or -1*/, const char *msg,
105 const struct buffer *buf, int spc_offset, int dot_offset) {
106 cdebughex(mechno, msg, buf->start, buf->size, buf->start - buf->base,
107 spc_offset, dot_offset);
108}
109
d31674ca 110void get_random(void *ptr, size_t sz) {
111 static FILE *randfile;
112
113 size_t r;
114
115 if (!randfile) {
116 randfile= fopen("/dev/urandom","rb");
117 if (!randfile && errno==ENOENT) randfile= fopen("/dev/random","rb");
118 if (!randfile) sysfail("open random number generator");
119 }
120
121 r= fread(ptr,1,sz,randfile);
244a0e99 122 if (r != sz)
123 (ferror(randfile) ? sysfail : fail)("cannot read random number generator");
d31674ca 124
244a0e99 125 cdebughex(-1, "get_random", ptr, sz, 0,0,0);
d31674ca 126}
84f87e82 127
aaa9ab3a 128void random_key(void *ptr, size_t sz) {
129 if (encdec_keys_write) {
130 get_random(ptr,sz);
131 write_must(encdec_keys_fd,ptr,sz,"write keys datastream");
132 } else {
133 read_must(encdec_keys_fd,ptr,sz,"read keys datastream");
8bb9d875 134 cdebughex(-1, "random_key", ptr, sz, 0,0,0);
84f87e82 135 }
84f87e82 136}
137
84f87e82 138
139static void setnonblock(int fd, int nonblock) {
140 int r;
141
142 r= fcntl(fd,F_GETFL);
143 if (r==-1) sysfail("fcntl F_GETFL");
144 r= fcntl(fd,F_SETFL, nonblock ? r|O_NONBLOCK : r&~O_NONBLOCK);
145 if (r==-1) sysfail("fcntl F_SETFL");
146}
147
244a0e99 148static const struct mechanism *find_mech(const char *name) {
84f87e82 149 const struct mechanism *mech, *const *mechlist;
150
84f87e82 151 for (mechlist= mechanismlists;
152 *mechlist;
153 mechlist++)
154 for (mech= *mechlist; mech->name; mech++)
155 if (!strcmp(mech->name,name)) return mech;
156
157 fprintf(stderr,"%s: unknown mechanism: %s\n",programid,name);
158 exit(4);
159}
160
161static void inbound(void) {
162 static int any_recvd;
163
164 struct sockaddr_in this_saddr;
165 int r, i, different, this_saddrlen;
166 const char *emsg;
167
62ccb81a 168 buf_in.start= buf_in.base+1;
169 buf_in.size= buffer_size-2;
170
84f87e82 171 setnonblock(public_local_fd,1);
172 this_saddrlen= sizeof(this_saddr);
62ccb81a 173 r= recvfrom(public_local_fd, buf_in.start, buf_in.size, 0,
84f87e82 174 &this_saddr, &this_saddrlen);
175 if (!r) { diag("empty ciphertext"); return; }
176
177 if (r<0) {
aaa9ab3a 178 if (errno != EAGAIN && errno != EINTR) { sysdiag("receive"); sleep(1); }
84f87e82 179 return;
180 }
181 if (this_saddr.sin_family != AF_INET) {
62ccb81a 182 fprintf(stderr,"%s: received unknown AF %lu\n",
84f87e82 183 programid, (unsigned long)this_saddr.sin_family);
184 return;
185 }
186 assert(this_saddrlen == sizeof(this_saddr));
187
62ccb81a 188 assert(r <= buf_in.size);
189 buf_in.size= r;
244a0e99 190 cdebugbuf(-1, "decode", &buf_in, 3,0);
84f87e82 191 for (i=n_mechs-1; i>=0; i--) {
192 emsg= mechs[i]->decode(md_in[i],&buf_in);
193 if (emsg) {
194 fprintf(stderr, "%s: bad packet: %s: %s\n", programid, mechs[i]->name, emsg);
195 return;
196 }
244a0e99 197 cdebugbuf(i, "decode", &buf_in, 3,0);
84f87e82 198 }
199
aaa9ab3a 200 alarm(timeout);
201
62ccb81a 202 different= (!public_remote_specd ||
203 public_remote.sin_addr.s_addr != this_saddr.sin_addr.s_addr ||
204 public_remote.sin_port != this_saddr.sin_port);
84f87e82 205
206 if (different) {
207
208 if (public_remote_specd==2) {
62ccb81a 209 fprintf(stderr, "%s: packet from unexpected sender %s:%lu\n",
84f87e82 210 programid, inet_ntoa(this_saddr.sin_addr),
62ccb81a 211 (unsigned long)ntohs(this_saddr.sin_port));
84f87e82 212 return;
213 }
214
62ccb81a 215 fprintf(stderr, "%s: tunnel open with peer %s:%lu\n",
84f87e82 216 programid, inet_ntoa(this_saddr.sin_addr),
62ccb81a 217 (unsigned long)ntohs(this_saddr.sin_port));
84f87e82 218 nextsendka= now();
219 public_remote_specd= 1;
220 memcpy(&public_remote,&this_saddr,sizeof(public_remote));
221
222 } else if (!any_recvd) {
223
224 diag("tunnel open");
225
226 }
227
228 any_recvd= 1;
62ccb81a 229
230 if (!buf_in.size || *buf_in.start != 0300) {
231 *--buf_in.start= 0300;
232 buf_in.size++;
233 }
234 if (buf_in.start[buf_in.size-1] != 0300) {
235 buf_in.start[buf_in.size++]= 0300;
236 }
84f87e82 237
238 setnonblock(private_in_fd,0);
aaa9ab3a 239 write_must(private_in_fd, buf_in.start, buf_in.size, "write down");
84f87e82 240}
241
242static void sendpacket(const unsigned char *message, size_t size) {
243 int i, r;
244
245 buf_out.start= buf_out.base+maxprefix;
246 buf_out.size= size;
247 memcpy(buf_out.start, message, size);
248
249 nextsendka= now() + keepalive;
250
244a0e99 251 cdebugbuf(-1, "encode", &buf_out, 4,0);
252 for (i=0; i<n_mechs; i++) {
253 mechs[i]->encode(md_out[i],&buf_out);
254 cdebugbuf(i, "encode", &buf_out, 4,0);
255 }
84f87e82 256 assert(public_remote_specd);
257
258 setnonblock(public_local_fd,1);
259 for (;;) {
260 r= sendto(public_local_fd, buf_out.start, buf_out.size, 0,
261 &public_remote, sizeof(public_remote));
262 if (r == buf_out.size) break;
263 if (r >= 0) { diag("unexpected short send"); return; }
264 if (errno != EINTR) { sysdiag("send"); return; }
265 }
266}
267
268static void outbound(void) {
269 int r;
270 unsigned char *after_eaten, *delim;
271 size_t this_packet;
272
273 setnonblock(private_out_fd,1);
274
275 for (;;) {
276 r= read(private_out_fd, accum_buf + accum_used, accum_avail - accum_used);
277 if (!r) { diag("outbound datastream closed, quitting"); exit(0); }
278 if (r<0) {
279 if (errno == EAGAIN) return;
280 if (errno == EINTR) continue;
281 }
282 accum_used += r;
283 assert(accum_used<=accum_avail);
284
285 after_eaten= accum_buf;
286 while ((delim= memchr(after_eaten, 0300, accum_used))) {
287 this_packet= delim - after_eaten;
62ccb81a 288 if (this_packet) sendpacket(after_eaten, this_packet);
84f87e82 289 accum_used -= this_packet+1;
290 after_eaten = delim+1;
291 }
292 memmove(accum_buf, after_eaten, accum_used);
293
294 if (accum_used == accum_avail) {
295 diag("missing interpacket delimiter in output datastream");
296 accum_used= 0;
297 }
298 }
299}
300
301int main(int argc, const char *const *const argv_in) {
302 const char *arg;
244a0e99 303 const char *const *argv_save;
304 const char *const *argv_done;
84f87e82 305 struct pollfd pollfds[2];
84f87e82 306 int i, polltimeout, r;
307 time_t tnow;
308
309 argv= argv_in;
310
311 if (uname(&uname_result)) { perror(PROGRAM ": uname failed"); exit(16); }
312 sprintf(programid, PROGRAM ": %.*s", SYS_NMLN, uname_result.nodename);
d31674ca 313
314 opt_chars= getarg_string();
244a0e99 315 encdec_keys_write= !!strchr(opt_chars,'w');
316 crypto_debug= !!strchr(opt_chars,'K');
d31674ca 317
84f87e82 318 public_local_fd= getarg_ulong();
aaa9ab3a 319 private_in_fd= getarg_ulong();
320 private_out_fd= getarg_ulong();
d31674ca 321 encdec_keys_fd= getarg_ulong();
322
84f87e82 323 mtu2= getarg_ulong() * 2;
324 keepalive= getarg_ulong();
325 timeout= getarg_ulong();
84f87e82 326
327 arg= getarg_string();
328 if (*arg) {
329 public_remote_specd= 1;
62ccb81a 330 public_remote.sin_family= AF_INET;
84f87e82 331 arg_assert(inet_aton(arg,&public_remote.sin_addr));
62ccb81a 332 public_remote.sin_port= htons(getarg_ulong());
84f87e82 333 }
334
d31674ca 335 if (crypto_debug) {
336 diag("crypto debugging enabled!");
337 setvbuf(stdout,0,_IOLBF,0);
338 }
84f87e82 339
340 maxprefix= 0;
244a0e99 341 i= 0;
342 while ((arg= *++argv)) {
8bb9d875 343 arg_assert(*arg++ == '|');
244a0e99 344 arg_assert(i <= MAXMECHS);
345 mechs[i]= find_mech(arg);
244a0e99 346
8bb9d875 347 cdebug(i,"writer->reader setup");
244a0e99 348 argv_save= argv;
8bb9d875 349
350 if (encdec_keys_write)
351 mechs[i]->encsetup(&md_out[i], &maxprefix, &maxsuffix);
352 else
353 mechs[i]->decsetup(&md_in[i]);
244a0e99 354
355 argv_done= argv;
356 argv= argv_save;
8bb9d875 357 cdebug(i,"reader->writer setup");
358
359 if (encdec_keys_write)
360 mechs[i]->decsetup(&md_in[i]);
361 else
362 mechs[i]->encsetup(&md_out[i], &maxprefix, &maxsuffix);
244a0e99 363
364 assert(argv == argv_done);
365
366 i++;
d31674ca 367 }
244a0e99 368 n_mechs= i;
84f87e82 369
370 if (maxprefix<1) maxprefix= 1;
371 if (maxsuffix<1) maxsuffix= 1;
372 buffer_size= mtu2 + maxprefix + maxsuffix;
373 buf_in.base= xmalloc(buffer_size);
374 buf_out.base= xmalloc(buffer_size);
375 accum_avail= mtu2 + 1;
376 accum_buf= xmalloc(accum_avail);
377
378 alarm(timeout);
379
380 pollfds[0].fd= public_local_fd;
381 pollfds[0].events= POLLIN;
382 pollfds[1].fd= private_out_fd;
383 for (;;) {
384 pollfds[1].events= public_remote_specd ? POLLIN : 0;
385 pollfds[0].revents= 0;
386 pollfds[1].revents= 0;
387
388 if (keepalive) {
389 tnow= now();
62ccb81a 390 if (tnow >= nextsendka && public_remote_specd) sendpacket("\300",1);
84f87e82 391 polltimeout= (nextsendka - tnow)*1000;
392 } else {
393 polltimeout= -1;
394 }
395
396 r= poll(pollfds,2,polltimeout);
397 if (!r) continue;
398 if (r==-1 && errno==EINTR) continue;
399 if (r==-1) sysfail("poll");
400
62ccb81a 401 if (pollfds[0].revents & (POLLIN|POLLERR)) inbound();
402 if (pollfds[1].revents & (POLLIN|POLLERR)) outbound();
84f87e82 403 }
404}