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