chiark / gitweb /
Print "still open" messages.
[userv-utils.git] / ipif / forwarder.c
1 /*
2  * Encrypting tunnel for userv-ipif tunnels, actual implementation
3  */
4 /*
5  * usage:
6  *  udptunnel-forwarder <optchars>
7  *                      <public-local-fd> <private-in-fd> <private-out-fd>
8  *                      <encdec-keys-fd>
9  *                      <mtu> <keepalive> <timeout> <reannounce>
10  *                      <public-remote-addr> [<public-remote-port>]
11  *                      |<mech1> [<mech1-params> ...]
12  *                      |<mech2> [<mech2-params> ...]
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  *
19  * <optchars> is zero or more of
20  *    w   means generate and write encdec keys, rather than reading them
21  *    K   means do crypto debug (use with care!)
22  *
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  *
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  */
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  */
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
69 #include "forwarder.h"
70
71 #define MAXMECHS 10
72
73 static size_t buffer_size;
74 static struct utsname uname_result;
75
76 static const char *opt_chars;
77 static int public_local_fd, private_in_fd, private_out_fd;
78 static int mtu2, keepalive, timeout, reannounce;
79 static int public_remote_specd;
80 static struct sockaddr_in public_remote;
81 static int encdec_keys_fd, encdec_keys_write, crypto_debug;
82 static int n_mechs;
83 static const struct mechanism *mechs[MAXMECHS];
84
85 static struct mechdata *md_in[MAXMECHS], *md_out[MAXMECHS];
86 static size_t maxprefix, maxsuffix;
87
88 static struct buffer buf_in, buf_out;
89 static unsigned char *accum_buf;
90 static size_t accum_used, accum_avail;
91
92 static time_t nextsendka;
93
94 static void cdebug(int mechno /*or -1*/, const char *msg) {
95   if (!crypto_debug) return;
96   printf("%-8.8s: CRYPTO: %-20s %s\n",
97          uname_result.nodename,
98          mechno >= 0 ? mechs[mechno]->name : "",
99          msg);
100 }
101
102 static 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) {
105   const unsigned char *p;
106   size_t i;
107   unsigned j= dot_offset;
108   
109   if (!crypto_debug) return;
110   printf("%-8.8s: CRYPTO: %-20s %-10s",
111          uname_result.nodename,
112          mechno >= 0 ? mechs[mechno]->name : "",
113          msg);
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
119   fputc('\n',stdout);
120 }
121
122 static 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
128 void 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);
140   if (r != sz)
141     (ferror(randfile) ? sysfail : fail)("cannot read random number generator");
142
143   cdebughex(-1, "get_random", ptr, sz, 0,0,0);
144 }
145
146 void 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");
152     cdebughex(-1, "random_key", ptr, sz, 0,0,0);
153   }
154 }
155
156
157 static 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
166 static const struct mechanism *find_mech(const char *name) {
167   const struct mechanism *mech, *const *mechlist;
168
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
179 static void inbound(void) {
180   static int any_recvd;
181   static time_t nextreann;
182   static unsigned long npackets, nbytes;
183   
184   struct sockaddr_in this_saddr;
185   int r, i, different, this_saddrlen;
186   const char *emsg;
187
188   buf_in.start= buf_in.base+1;
189   buf_in.size= buffer_size-2;
190   
191   setnonblock(public_local_fd,1);
192   this_saddrlen= sizeof(this_saddr);
193   r= recvfrom(public_local_fd, buf_in.start, buf_in.size, 0,
194               &this_saddr, &this_saddrlen);
195   if (!r) { diag("empty ciphertext"); return; }
196
197   if (r<0) {
198     if (errno != EAGAIN && errno != EINTR) { sysdiag("receive"); sleep(1); }
199     return;
200   }
201   if (this_saddr.sin_family != AF_INET) {
202     fprintf(stderr,"%s: received unknown AF %lu\n",
203             programid, (unsigned long)this_saddr.sin_family);
204     return;
205   }
206   assert(this_saddrlen == sizeof(this_saddr));
207
208   assert(r <= buf_in.size);
209   buf_in.size= r;
210   cdebugbuf(-1, "decode", &buf_in, 3,0);
211   for (i=n_mechs-1; i>=0; i--) {
212     emsg= mechs[i]->decode(md_in[i],&buf_in);
213     if (emsg) {
214       if (*emsg)
215         fprintf(stderr, "%s: bad packet: %s: %s\n",
216                 programid, mechs[i]->name, emsg);
217       else
218         cdebug(i,"silently discarded");
219       return;
220     }
221     cdebugbuf(i, "decode", &buf_in, 3,0);
222   }
223
224   npackets++;
225   nbytes += buf_in.size;
226   alarm(timeout);
227
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);
231
232   if (different) {
233
234     if (public_remote_specd==2) {
235       fprintf(stderr, "%s: packet from unexpected sender %s:%lu\n",
236               programid, inet_ntoa(this_saddr.sin_addr),
237               (unsigned long)ntohs(this_saddr.sin_port));
238       return;
239     }
240
241     fprintf(stderr, "%s: tunnel open with peer %s:%lu\n",
242             programid, inet_ntoa(this_saddr.sin_addr),
243             (unsigned long)ntohs(this_saddr.sin_port));
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
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
261   }
262
263   if (reannounce)
264     nextreann= now() + reannounce;
265   
266 no_set_reann:
267
268   any_recvd= 1;
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   }
277
278   setnonblock(private_in_fd,0);
279   write_must(private_in_fd, buf_in.start, buf_in.size, "write down");
280 }
281
282 static 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
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   }
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
308 static 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;
328       if (this_packet) sendpacket(after_eaten, this_packet);
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
341 int main(int argc, const char *const *const argv_in) {
342   const char *arg;
343   const char *const *argv_save;
344   const char *const *argv_done;
345   struct pollfd pollfds[2];
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);
353
354   opt_chars= getarg_string();
355   encdec_keys_write= !!strchr(opt_chars,'w');
356   crypto_debug= !!strchr(opt_chars,'K');
357
358   public_local_fd= getarg_ulong();
359   private_in_fd= getarg_ulong();
360   private_out_fd= getarg_ulong();
361   encdec_keys_fd= getarg_ulong();
362
363   mtu2= getarg_ulong() * 2;
364   keepalive= getarg_ulong();
365   timeout= getarg_ulong();
366   reannounce= getarg_ulong();
367   
368   arg= getarg_string();
369   if (*arg) {
370     public_remote_specd= 1;
371     public_remote.sin_family= AF_INET;
372     arg_assert(inet_aton(arg,&public_remote.sin_addr));
373     public_remote.sin_port= htons(getarg_ulong());
374   }
375
376   if (crypto_debug) {
377     diag("crypto debugging enabled!");
378     setvbuf(stdout,0,_IOLBF,0);
379   }
380
381   maxprefix= 0;
382   i= 0;
383   while ((arg= *++argv)) {
384     arg_assert(*arg++ == '|');
385     arg_assert(i <= MAXMECHS);
386     mechs[i]= find_mech(arg);
387
388     cdebug(i,"writer->reader setup");
389     argv_save= argv;
390
391     if (encdec_keys_write)
392       mechs[i]->encsetup(&md_out[i], &maxprefix, &maxsuffix);
393     else
394       mechs[i]->decsetup(&md_in[i]);
395
396     argv_done= argv;
397     argv= argv_save;
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);
404
405     assert(argv == argv_done);
406     
407     i++;
408   }
409   n_mechs= i;
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();
431       if (tnow >= nextsendka && public_remote_specd) sendpacket("\300",1);
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
442     if (pollfds[0].revents & (POLLIN|POLLERR)) inbound();
443     if (pollfds[1].revents & (POLLIN|POLLERR)) outbound();
444   }
445 }