chiark / gitweb /
noip.c, uopen.c: Provide fallback implementation of `SUN_LEN'.
[preload-hacks] / noip.c
1 /* -*-c-*-
2  *
3  * Make programs use Unix-domain sockets instead of IP
4  *
5  * (c) 2008 Straylight/Edgeware
6  */
7
8 /*----- Licensing notice --------------------------------------------------*
9  *
10  * This file is part of the preload-hacks package.
11  *
12  * Preload-hacks are free software; you can redistribute it and/or modify
13  * them under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or (at
15  * your option) any later version.
16  *
17  * Preload-hacks are distributed in the hope that it will be useful, but
18  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
19  * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
20  * for more details.
21  *
22  * You should have received a copy of the GNU General Public License along
23  * with preload-hacks; if not, write to the Free Software Foundation, Inc.,
24  * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25  */
26
27 #define _GNU_SOURCE
28 #undef sun
29 #undef SUN
30 #define DEBUG
31
32 /*----- Header files ------------------------------------------------------*/
33
34 #include <assert.h>
35 #include <ctype.h>
36 #include <errno.h>
37 #include <stdarg.h>
38 #include <stddef.h>
39 #include <stdio.h>
40 #include <stdlib.h>
41
42 #include <unistd.h>
43 #include <dirent.h>
44 #include <dlfcn.h>
45 #include <fcntl.h>
46 #include <pwd.h>
47
48 #include <sys/ioctl.h>
49 #include <sys/socket.h>
50 #include <sys/stat.h>
51 #include <sys/un.h>
52
53 #include <netinet/in.h>
54 #include <arpa/inet.h>
55 #include <netinet/tcp.h>
56 #include <netinet/udp.h>
57 #include <ifaddrs.h>
58 #include <netdb.h>
59
60 #ifndef SUN_LEN
61 #  define SUN_LEN (sun) \
62         (strlen((sun)->sun_path) + offsetof(struct sockaddr_un, sun_path))
63 #endif
64
65 /*----- Data structures ---------------------------------------------------*/
66
67 /* Unix socket status values. */
68 #define UNUSED 0u                       /* No sign of anyone using it */
69 #define STALE 1u                        /* Socket exists, but is abandoned */
70 #define USED 16u                        /* Socket is in active use */
71 #define LISTEN 2u                       /* Socket has an active listener */
72
73 enum { DENY, ALLOW };                   /* ACL verdicts */
74
75 static int address_families[] = { AF_INET, AF_INET6, -1 };
76
77 #define ADDRBUFSZ 64
78
79 /* Address representations. */
80 typedef union ipaddr {
81   struct in_addr v4;
82   struct in6_addr v6;
83 } ipaddr;
84
85 /* Convenient socket address hacking. */
86 typedef union address {
87   struct sockaddr sa;
88   struct sockaddr_in sin;
89   struct sockaddr_in6 sin6;
90 } address;
91
92 /* Access control list nodes */
93 typedef struct aclnode {
94   struct aclnode *next;
95   int act;
96   int af;
97   ipaddr minaddr, maxaddr;
98   unsigned short minport, maxport;
99 } aclnode;
100
101 /* Implicit bind records */
102 typedef struct impbind {
103   struct impbind *next;
104   int af, how;
105   ipaddr minaddr, maxaddr, bindaddr;
106 } impbind;
107 enum { EXPLICIT, SAME };
108
109 /* A type for an address range */
110 typedef struct addrrange {
111   int type;
112   union {
113     struct { int af; ipaddr min, max; } range;
114   } u;
115 } addrrange;
116 enum { EMPTY, ANY, LOCAL, RANGE };
117
118 /* Local address records */
119 typedef struct full_ipaddr {
120   int af;
121   ipaddr addr;
122 } full_ipaddr;
123 #define MAX_LOCAL_IPADDRS 64
124 static full_ipaddr local_ipaddrs[MAX_LOCAL_IPADDRS];
125 static int n_local_ipaddrs;
126
127 /* General configuration */
128 static uid_t uid;
129 static char *sockdir = 0;
130 static int debug = 0;
131 static unsigned minautoport = 16384, maxautoport = 65536;
132
133 /* Access control lists */
134 static aclnode *bind_real, **bind_tail = &bind_real;
135 static aclnode *connect_real,  **connect_tail = &connect_real;
136 static impbind *impbinds, **impbind_tail = &impbinds;
137
138 /*----- Import the real versions of functions -----------------------------*/
139
140 /* The list of functions to immport. */
141 #define IMPORTS(_)                                                      \
142   _(socket, int, (int, int, int))                                       \
143   _(socketpair, int, (int, int, int, int *))                            \
144   _(connect, int, (int, const struct sockaddr *, socklen_t))            \
145   _(bind, int, (int, const struct sockaddr *, socklen_t))               \
146   _(accept, int, (int, struct sockaddr *, socklen_t *))                 \
147   _(getsockname, int, (int, struct sockaddr *, socklen_t *))            \
148   _(getpeername, int, (int, struct sockaddr *, socklen_t *))            \
149   _(getsockopt, int, (int, int, int, void *, socklen_t *))              \
150   _(setsockopt, int, (int, int, int, const void *, socklen_t))          \
151   _(sendto, ssize_t, (int, const void *buf, size_t, int,                \
152                       const struct sockaddr *to, socklen_t tolen))      \
153   _(recvfrom, ssize_t, (int, void *buf, size_t, int,                    \
154                         struct sockaddr *from, socklen_t *fromlen))     \
155   _(sendmsg, ssize_t, (int, const struct msghdr *, int))                \
156   _(recvmsg, ssize_t, (int, struct msghdr *, int))                      \
157   _(ioctl, int, (int, unsigned long, ...))
158
159 /* Function pointers to set up. */
160 #define DECL(imp, ret, args) static ret (*real_##imp) args;
161 IMPORTS(DECL)
162 #undef DECL
163
164 /* Import the system calls. */
165 static void import(void)
166 {
167 #define IMPORT(imp, ret, args)                                          \
168     real_##imp = (ret (*)args)dlsym(RTLD_NEXT, #imp);
169   IMPORTS(IMPORT)
170 #undef IMPORT
171 }
172
173 /*----- Utilities ---------------------------------------------------------*/
174
175 /* Socket address casts */
176 #define SA(sa) ((struct sockaddr *)(sa))
177 #define SIN(sa) ((struct sockaddr_in *)(sa))
178 #define SIN6(sa) ((struct sockaddr_in6 *)(sa))
179 #define SUN(sa) ((struct sockaddr_un *)(sa))
180
181 /* Raw bytes */
182 #define UC(ch) ((unsigned char)(ch))
183
184 /* Memory allocation */
185 #define NEW(x) ((x) = xmalloc(sizeof(*x)))
186 #define NEWV(x, n) ((x) = xmalloc(sizeof(*x) * (n)))
187
188 /* Debugging */
189 #ifdef DEBUG
190 #  define D(body) { if (debug) { body } }
191 #  define Dpid pid_t pid = debug ? getpid() : -1
192 #else
193 #  define D(body) ;
194 #  define Dpid
195 #endif
196
197 /* Preservation of error status */
198 #define PRESERVING_ERRNO(body) do {                                     \
199   int _err = errno; { body } errno = _err;                              \
200 } while (0)
201
202 /* Allocate N bytes of memory; abort on failure. */
203 static void *xmalloc(size_t n)
204 {
205   void *p;
206   if (!n) return (0);
207   if ((p = malloc(n)) == 0) { perror("malloc"); exit(127); }
208   return (p);
209 }
210
211 /* Allocate a copy of the null-terminated string P; abort on failure. */
212 static char *xstrdup(const char *p)
213 {
214   size_t n = strlen(p) + 1;
215   char *q = xmalloc(n);
216   memcpy(q, p, n);
217   return (q);
218 }
219
220 /*----- Address-type hacking ----------------------------------------------*/
221
222 /* If M is a simple mask, i.e., consists of a sequence of zero bits followed
223  * by a sequence of one bits, then return the length of the latter sequence
224  * (which may be zero); otherwise return -1.
225  */
226 static int simple_mask_length(unsigned long m)
227 {
228   int n = 0;
229
230   while (m & 1) { n++; m >>= 1; }
231   return (m ? -1 : n);
232 }
233
234 /* Answer whether AF is an interesting address family. */
235 static int family_known_p(int af)
236 {
237   switch (af) {
238     case AF_INET:
239     case AF_INET6:
240       return (1);
241     default:
242       return (0);
243   }
244 }
245
246 /* Return the socket address length for address family AF. */
247 static socklen_t family_socklen(int af)
248 {
249   switch (af) {
250     case AF_INET: return (sizeof(struct sockaddr_in));
251     case AF_INET6: return (sizeof(struct sockaddr_in6));
252     default: abort();
253   }
254 }
255
256 /* Return the width of addresses of kind AF. */
257 static int address_width(int af)
258 {
259   switch (af) {
260     case AF_INET: return 32;
261     case AF_INET6: return 128;
262     default: abort();
263   }
264 }
265
266 /* If addresses A and B share a common prefix then return its length;
267  * otherwise return -1.
268  */
269 static int common_prefix_length(int af, const ipaddr *a, const ipaddr *b)
270 {
271   switch (af) {
272     case AF_INET: {
273       unsigned long aa = ntohl(a->v4.s_addr), bb = ntohl(b->v4.s_addr);
274       unsigned long m = aa^bb;
275       if ((aa&m) == 0 && (bb&m) == m) return (32 - simple_mask_length(m));
276       else return (-1);
277     } break;
278     case AF_INET6: {
279       const uint8_t *aa = a->v6.s6_addr, *bb = b->v6.s6_addr;
280       unsigned m;
281       unsigned n;
282       int i;
283
284       for (i = 0; i < 16 && aa[i] == bb[i]; i++);
285       n = 8*i;
286       if (i < 16) {
287         m = aa[i]^bb[i];
288         if ((aa[i]&m) != 0 || (bb[i]&m) != m) return (-1);
289         n += 8 - simple_mask_length(m);
290         for (i++; i < 16; i++)
291           if (aa[i] || bb[i] != 0xff) return (-1);
292       }
293       return (n);
294     } break;
295     default:
296       abort();
297   }
298 }
299
300 /* Extract the port number (in host byte-order) from SA. */
301 static int port_from_sockaddr(const struct sockaddr *sa)
302 {
303   switch (sa->sa_family) {
304     case AF_INET: return (ntohs(SIN(sa)->sin_port));
305     case AF_INET6: return (ntohs(SIN6(sa)->sin6_port));
306     default: abort();
307   }
308 }
309
310 /* Store the port number PORT (in host byte-order) in SA. */
311 static void port_to_sockaddr(struct sockaddr *sa, int port)
312 {
313   switch (sa->sa_family) {
314     case AF_INET: SIN(sa)->sin_port = htons(port); break;
315     case AF_INET6: SIN6(sa)->sin6_port = htons(port); break;
316     default: abort();
317   }
318 }
319
320 /* Extract the address part from SA and store it in A. */
321 static void ipaddr_from_sockaddr(ipaddr *a, const struct sockaddr *sa)
322 {
323   switch (sa->sa_family) {
324     case AF_INET: a->v4 = SIN(sa)->sin_addr; break;
325     case AF_INET6: a->v6 = SIN6(sa)->sin6_addr; break;
326     default: abort();
327   }
328 }
329
330 /* Store the address A in SA. */
331 static void ipaddr_to_sockaddr(struct sockaddr *sa, const ipaddr *a)
332 {
333   switch (sa->sa_family) {
334     case AF_INET:
335       SIN(sa)->sin_addr = a->v4;
336       break;
337     case AF_INET6:
338       SIN6(sa)->sin6_addr = a->v6;
339       SIN6(sa)->sin6_scope_id = 0;
340       SIN6(sa)->sin6_flowinfo = 0;
341       break;
342     default:
343       abort();
344   }
345 }
346
347 /* Copy a whole socket address about. */
348 static void copy_sockaddr(struct sockaddr *sa_dst,
349                           const struct sockaddr *sa_src)
350   { memcpy(sa_dst, sa_src, family_socklen(sa_src->sa_family)); }
351
352 /* Convert an AF_INET socket address into the equivalent IPv4-mapped AF_INET6
353  * address.
354  */
355 static void map_ipv4_sockaddr(struct sockaddr_in6 *a6,
356                               const struct sockaddr_in *a4)
357 {
358   size_t i;
359   in_addr_t a = ntohl(a4->sin_addr.s_addr);
360
361   a6->sin6_family = AF_INET6;
362   a6->sin6_port = a4->sin_port;
363   a6->sin6_scope_id = 0;
364   a6->sin6_flowinfo = 0;
365   for (i = 0; i < 10; i++) a6->sin6_addr.s6_addr[i] = 0;
366   for (i = 10; i < 12; i++) a6->sin6_addr.s6_addr[i] = 0xff;
367   for (i = 0; i < 4; i++) a6->sin6_addr.s6_addr[15 - i] = (a >> 8*i)&0xff;
368 }
369
370 /* Convert an AF_INET6 socket address containing an IPv4-mapped IPv6 address
371  * into the equivalent AF_INET4 address.  Return zero on success, or -1 if
372  * the address has the wrong form.
373  */
374 static int unmap_ipv4_sockaddr(struct sockaddr_in *a4,
375                                const struct sockaddr_in6 *a6)
376 {
377   size_t i;
378   in_addr_t a;
379
380   for (i = 0; i < 10; i++) if (a6->sin6_addr.s6_addr[i] != 0) return (-1);
381   for (i = 10; i < 12; i++) if (a6->sin6_addr.s6_addr[i] != 0xff) return (-1);
382   for (i = 0, a = 0; i < 4; i++) a |= a6->sin6_addr.s6_addr[15 - i] << 8*i;
383   a4->sin_family = AF_INET;
384   a4->sin_port = a6->sin6_port;
385   a4->sin_addr.s_addr = htonl(a);
386   return (0);
387 }
388
389 /* Answer whether two addresses are equal. */
390 static int ipaddr_equal_p(int af, const ipaddr *a, const ipaddr *b)
391 {
392   switch (af) {
393     case AF_INET: return (a->v4.s_addr == b->v4.s_addr);
394     case AF_INET6: return (memcmp(a->v6.s6_addr, b->v6.s6_addr, 16) == 0);
395     default: abort();
396   }
397 }
398
399 /* Answer whether the address part of SA is between A and B (inclusive).  We
400  * assume that SA has the correct address family.
401  */
402 static int sockaddr_in_range_p(const struct sockaddr *sa,
403                                const ipaddr *a, const ipaddr *b)
404 {
405   switch (sa->sa_family) {
406     case AF_INET: {
407       unsigned long addr = ntohl(SIN(sa)->sin_addr.s_addr);
408       return (ntohl(a->v4.s_addr) <= addr &&
409               addr <= ntohl(b->v4.s_addr));
410     } break;
411     case AF_INET6: {
412       const uint8_t *ss = SIN6(sa)->sin6_addr.s6_addr;
413       const uint8_t *aa = a->v6.s6_addr, *bb = b->v6.s6_addr;
414       int h = 1, l = 1;
415       int i;
416
417       for (i = 0; h && l && i < 16; i++, ss++, aa++, bb++) {
418         if (*ss < *aa || *bb < *ss) return (0);
419         if (*aa < *ss) l = 0;
420         if (*ss < *bb) h = 0;
421       }
422       return (1);
423     } break;
424     default:
425       abort();
426   }
427 }
428
429 /* Fill in SA with the appropriate wildcard address. */
430 static void wildcard_address(int af, struct sockaddr *sa)
431 {
432   switch (af) {
433     case AF_INET: {
434       struct sockaddr_in *sin = SIN(sa);
435       memset(sin, 0, sizeof(*sin));
436       sin->sin_family = AF_INET;
437       sin->sin_port = 0;
438       sin->sin_addr.s_addr = INADDR_ANY;
439     } break;
440     case AF_INET6: {
441       struct sockaddr_in6 *sin6 = SIN6(sa);
442       memset(sin6, 0, sizeof(*sin6));
443       sin6->sin6_family = AF_INET6;
444       sin6->sin6_port = 0;
445       sin6->sin6_addr = in6addr_any;
446       sin6->sin6_scope_id = 0;
447       sin6->sin6_flowinfo = 0;
448     } break;
449     default:
450       abort();
451   }
452 }
453
454 /* Mask the address A, forcing all but the top PLEN bits to zero or one
455  * according to HIGHP.
456  */
457 static void mask_address(int af, ipaddr *a, int plen, int highp)
458 {
459   switch (af) {
460     case AF_INET: {
461       unsigned long addr = ntohl(a->v4.s_addr);
462       unsigned long mask = plen ? ~0ul << (32 - plen) : 0;
463       addr &= mask;
464       if (highp) addr |= ~mask;
465       a->v4.s_addr = htonl(addr & 0xffffffff);
466     } break;
467     case AF_INET6: {
468       int i = plen/8;
469       unsigned m = (0xff << (8 - plen%8)) & 0xff;
470       unsigned s = highp ? 0xff : 0;
471       if (m) {
472         a->v6.s6_addr[i] = (a->v6.s6_addr[i] & m) | (s & ~m);
473         i++;
474       }
475       for (; i < 16; i++) a->v6.s6_addr[i] = s;
476     } break;
477     default:
478       abort();
479   }
480 }
481
482 /* Write a presentation form of SA to BUF, a buffer of length SZ.  LEN is the
483  * address length; if it's zero, look it up based on the address family.
484  * Return a pointer to the string (which might, in an emergency, be a static
485  * string rather than your buffer).
486  */
487 static char *present_sockaddr(const struct sockaddr *sa, socklen_t len,
488                               char *buf, size_t sz)
489 {
490 #define WANT(n_) do { if (sz < (n_)) goto nospace; } while (0)
491 #define PUTC(c_) do { *buf++ = (c_); sz--; } while (0)
492
493   if (!sa) return "<null-address>";
494   if (!sz) return "<no-space-in-buffer>";
495   if (!len) len = family_socklen(sa->sa_family);
496
497   switch (sa->sa_family) {
498     case AF_UNIX: {
499       struct sockaddr_un *sun = SUN(sa);
500       char *p = sun->sun_path;
501       size_t n = len - offsetof(struct sockaddr_un, sun_path);
502
503       assert(n);
504       if (*p == 0) {
505         WANT(1); PUTC('@');
506         p++; n--;
507         while (n) {
508           switch (*p) {
509             case 0: WANT(2); PUTC('\\'); PUTC('0'); break;
510             case '\a': WANT(2); PUTC('\\'); PUTC('a'); break;
511             case '\n': WANT(2); PUTC('\\'); PUTC('n'); break;
512             case '\r': WANT(2); PUTC('\\'); PUTC('r'); break;
513             case '\t': WANT(2); PUTC('\\'); PUTC('t'); break;
514             case '\v': WANT(2); PUTC('\\'); PUTC('v'); break;
515             case '\\': WANT(2); PUTC('\\'); PUTC('\\'); break;
516             default:
517               if (*p > ' ' && *p <= '~')
518                 { WANT(1); PUTC(*p); }
519               else {
520                 WANT(4); PUTC('\\'); PUTC('x');
521                 PUTC((*p >> 4)&0xf); PUTC((*p >> 0)&0xf);
522               }
523               break;
524           }
525           p++; n--;
526         }
527       } else {
528         if (*p != '/') { WANT(2); PUTC('.'); PUTC('/'); }
529         while (n && *p) { WANT(1); PUTC(*p); p++; n--; }
530       }
531       WANT(1); PUTC(0);
532     } break;
533     case AF_INET: case AF_INET6: {
534       char addrbuf[NI_MAXHOST], portbuf[NI_MAXSERV];
535       int err = getnameinfo(sa, len,
536                             addrbuf, sizeof(addrbuf),
537                             portbuf, sizeof(portbuf),
538                             NI_NUMERICHOST | NI_NUMERICSERV);
539       assert(!err);
540       snprintf(buf, sz, strchr(addrbuf, ':') ? "[%s]:%s" : "%s:%s",
541                addrbuf, portbuf);
542     } break;
543     default:
544       snprintf(buf, sz, "<unknown-address-family %d>", sa->sa_family);
545       break;
546   }
547   return (buf);
548
549 nospace:
550   buf[sz - 1] = 0;
551   return (buf);
552 }
553
554 /* Guess the family of a textual socket address. */
555 static int guess_address_family(const char *p)
556   { return (strchr(p, ':') ? AF_INET6 : AF_INET); }
557
558 /* Parse a socket address P and write the result to SA. */
559 static int parse_sockaddr(struct sockaddr *sa, const char *p)
560 {
561   char buf[ADDRBUFSZ];
562   char *q;
563   struct addrinfo *ai, ai_hint = { 0 };
564
565   if (strlen(p) >= sizeof(buf) - 1) return (-1);
566   strcpy(buf, p); p = buf;
567   if (*p != '[') {
568     if ((q = strchr(p, ':')) == 0) return (-1);
569     *q++ = 0;
570   } else {
571     p++;
572     if ((q = strchr(p, ']')) == 0) return (-1);
573     *q++ = 0;
574     if (*q != ':') return (-1);
575     q++;
576   }
577
578   ai_hint.ai_family = AF_UNSPEC;
579   ai_hint.ai_socktype = SOCK_DGRAM;
580   ai_hint.ai_flags = AI_NUMERICHOST | AI_NUMERICSERV;
581   if (getaddrinfo(p, q, &ai_hint, &ai)) return (-1);
582   memcpy(sa, ai->ai_addr, ai->ai_addrlen);
583   freeaddrinfo(ai);
584   return (0);
585 }
586
587 /*----- Access control lists ----------------------------------------------*/
588
589 #ifdef DEBUG
590
591 static void dump_addrrange(int af, const ipaddr *min, const ipaddr *max)
592 {
593   char buf[ADDRBUFSZ];
594   const char *p;
595   int plen;
596
597   plen = common_prefix_length(af, min, max);
598   p = inet_ntop(af, min, buf, sizeof(buf));
599   fprintf(stderr, strchr(p, ':') ? "[%s]" : "%s", p);
600   if (plen < 0) {
601     p = inet_ntop(af, &max, buf, sizeof(buf));
602     fprintf(stderr, strchr(p, ':') ? "-[%s]" : "-%s", p);
603   } else if (plen < address_width(af))
604     fprintf(stderr, "/%d", plen);
605 }
606
607 /* Write to standard error a description of the ACL node A. */
608 static void dump_aclnode(const aclnode *a)
609 {
610   fprintf(stderr, "noip(%d):   %c ", getpid(), a->act ? '+' : '-');
611   dump_addrrange(a->af, &a->minaddr, &a->maxaddr);
612   if (a->minport != 0 || a->maxport != 0xffff) {
613     fprintf(stderr, ":%u", (unsigned)a->minport);
614     if (a->minport != a->maxport)
615       fprintf(stderr, "-%u", (unsigned)a->maxport);
616   }
617   fputc('\n', stderr);
618 }
619
620 static void dump_acl(const aclnode *a)
621 {
622   int act = ALLOW;
623
624   for (; a; a = a->next) {
625     dump_aclnode(a);
626     act = a->act;
627   }
628   fprintf(stderr, "noip(%d):   [default policy: %s]\n", getpid(),
629           act == ALLOW ? "DENY" : "ALLOW");
630 }
631
632 #endif
633
634 /* Returns nonzero if the ACL A allows the socket address SA. */
635 static int acl_allows_p(const aclnode *a, const struct sockaddr *sa)
636 {
637   unsigned short port = port_from_sockaddr(sa);
638   int act = ALLOW;
639   Dpid;
640
641   D({ char buf[ADDRBUFSZ];
642       fprintf(stderr, "noip(%d): check %s\n", pid,
643               present_sockaddr(sa, 0, buf, sizeof(buf))); })
644   for (; a; a = a->next) {
645     D( dump_aclnode(a); )
646     if (a->af == sa->sa_family &&
647         sockaddr_in_range_p(sa, &a->minaddr, &a->maxaddr) &&
648         a->minport <= port && port <= a->maxport) {
649       D( fprintf(stderr, "noip(%d): aha!  %s\n", pid,
650                  a->act ? "ALLOW" : "DENY"); )
651       return (a->act);
652     }
653     act = a->act;
654   }
655   D( fprintf(stderr, "noip(%d): nothing found: %s\n", pid,
656              act ? "DENY" : "ALLOW"); )
657   return (!act);
658 }
659
660 /*----- Socket address conversion -----------------------------------------*/
661
662 /* Return a uniformly distributed integer between MIN and MAX inclusive. */
663 static unsigned randrange(unsigned min, unsigned max)
664 {
665   unsigned mask, i;
666
667   /* It's so nice not to have to care about the quality of the generator
668    * much!
669    */
670   max -= min;
671   for (mask = 1; mask < max; mask = (mask << 1) | 1)
672     ;
673   do i = rand() & mask; while (i > max);
674   return (i + min);
675 }
676
677 /* Return the status of Unix-domain socket address SUN.  Returns: UNUSED if
678  * the socket doesn't exist; USED if the path refers to an active socket, or
679  * isn't really a socket at all, or we can't tell without a careful search
680  * and QUICKP is set; or STALE if the file refers to a socket which isn't
681  * being used any more.
682  */
683 static int unix_socket_status(struct sockaddr_un *sun, int quickp)
684 {
685   struct stat st;
686   FILE *fp = 0;
687   size_t len, n;
688   int rc;
689   unsigned long f;
690   char buf[256];
691
692   /* If we can't find the socket node, then it's definitely not in use.  If
693    * we get some other error, then this socket is weird.
694    */
695   if (stat(sun->sun_path, &st))
696     return (errno == ENOENT ? UNUSED : USED);
697
698   /* If it's not a socket, then something weird is going on.  If we're just
699    * probing quickly to find a spare port, then existence is sufficient to
700    * discourage us now.
701    */
702   if (!S_ISSOCK(st.st_mode) || quickp)
703     return (USED);
704
705   /* The socket's definitely there, but is anyone actually still holding it
706    * open?  The only way I know to discover this is to trundle through
707    * `/proc/net/unix'.  If there's no entry, then the socket must be stale.
708    */
709   rc = USED;
710   if ((fp = fopen("/proc/net/unix", "r")) == 0)
711     goto done;
712   if (!fgets(buf, sizeof(buf), fp)) goto done; /* skip header */
713   len = strlen(sun->sun_path);
714   rc = 0;
715   while (fgets(buf, sizeof(buf), fp)) {
716     n = strlen(buf);
717     if (n >= len + 2 && buf[n - len - 2] == ' ' && buf[n - 1] == '\n' &&
718         memcmp(buf + n - len - 1, sun->sun_path, len) == 0) {
719       rc |= USED;
720       if (sscanf(buf, "%*s %*x %*x %lx", &f) < 0 || (f&0x00010000))
721         rc |= LISTEN;
722     }
723   }
724   if (ferror(fp))
725     goto done;
726   if (!rc) rc = STALE;
727 done:
728   if (fp) fclose(fp);
729
730   /* All done. */
731   return (rc);
732 }
733
734 /* Encode SA as a Unix-domain address SUN, and return whether it's currently
735  * in use.
736  */
737 static int encode_single_inet_addr(const struct sockaddr *sa,
738                                    struct sockaddr_un *sun,
739                                    int quickp)
740 {
741   char buf[ADDRBUFSZ];
742   int rc;
743
744   snprintf(sun->sun_path, sizeof(sun->sun_path), "%s/%s", sockdir,
745            present_sockaddr(sa, 0, buf, sizeof(buf)));
746   rc = unix_socket_status(sun, quickp);
747   if (rc == STALE) unlink(sun->sun_path);
748   return (rc);
749 }
750
751 /* Convert the IP address SA to a Unix-domain address SUN.  Fail if the
752  * address seems already taken.  If DESPARATEP then try cleaning up stale old
753  * sockets.
754  */
755 static int encode_unused_inet_addr(struct sockaddr *sa,
756                                    struct sockaddr_un *sun,
757                                    int desperatep)
758 {
759   address waddr, maddr;
760   struct sockaddr_un wsun;
761   int port = port_from_sockaddr(sa);
762
763   /* First, look for an exact match.  Only look quickly unless we're
764    * desperate.  If the socket is in use, we fail here.  (This could get
765    * racy.  Let's not worry about that for now.)
766    */
767   if (encode_single_inet_addr(sa, sun, !desperatep)&USED)
768     return (-1);
769
770   /* Next, check the corresponding wildcard address, so as to avoid
771    * inadvertant collisions with listeners.  Do this in the same way.
772    */
773   wildcard_address(sa->sa_family, &waddr.sa);
774   port_to_sockaddr(&waddr.sa, port);
775   if (encode_single_inet_addr(&waddr.sa, &wsun, !desperatep)&USED)
776     return (-1);
777
778   /* We're not done yet.  If this is an IPv4 address, then /also/ check (a)
779    * the v6-mapped version, (b) the v6-mapped v4 wildcard, /and/ (c) the v6
780    * wildcard.  Ugh!
781    */
782   if (sa->sa_family == AF_INET) {
783     map_ipv4_sockaddr(&maddr.sin6, SIN(&sa));
784     if (encode_single_inet_addr(&maddr.sa, &wsun, !desperatep)&USED)
785       return (-1);
786
787     map_ipv4_sockaddr(&maddr.sin6, &waddr.sin);
788     if (encode_single_inet_addr(&maddr.sa, &wsun, !desperatep)&USED)
789       return (-1);
790
791     wildcard_address(AF_INET6, &waddr.sa);
792     port_to_sockaddr(&waddr.sa, port);
793     if (encode_single_inet_addr(&waddr.sa, &wsun, !desperatep)&USED)
794       return (-1);
795   }
796
797   /* All is well. */
798   return (0);
799 }
800
801 /* Encode the Internet address SA as a Unix-domain address SUN.  If the flag
802  * `ENCF_FRESH' is set, and SA's port number is zero, then we pick an
803  * arbitrary local port.  Otherwise we pick the port given.  There's an
804  * unpleasant hack to find servers bound to local wildcard addresses.
805  * Returns zero on success; -1 on failure.
806  */
807 #define ENCF_FRESH 1u
808 #define ENCF_REUSEADDR 2u
809 static int encode_inet_addr(struct sockaddr_un *sun,
810                             const struct sockaddr *sa,
811                             unsigned f)
812 {
813   int i;
814   int desperatep = 0;
815   address addr;
816   struct sockaddr_in6 sin6;
817   int port = port_from_sockaddr(sa);
818   int rc;
819   char buf[ADDRBUFSZ];
820
821   D( fprintf(stderr, "noip(%d): encode %s (%s)", getpid(),
822              present_sockaddr(sa, 0, buf, sizeof(buf)),
823              (f&ENCF_FRESH) ? "FRESH" : "EXISTING"); )
824
825   /* Start making the Unix-domain address. */
826   sun->sun_family = AF_UNIX;
827
828   if (port || !(f&ENCF_FRESH)) {
829
830     /* Try the address as given.  If it's in use, or we don't necessarily
831      * want an existing socket, then we're done.
832      */
833     rc = encode_single_inet_addr(sa, sun, 0);
834     if ((f&ENCF_REUSEADDR) && !(rc&LISTEN)) unlink(sun->sun_path);
835     if ((rc&USED) || (f&ENCF_FRESH)) goto found;
836
837     /* We're looking for a socket which already exists.  This is
838      * unfortunately difficult, because we must deal both with wildcards and
839      * v6-mapped IPv4 addresses.
840      *
841      *   * We've just tried searching for a socket whose name is an exact
842      *     match for our remote address.  If the remote address is IPv4, then
843      *     we should try again with the v6-mapped equivalent.
844      *
845      *   * Failing that, we try again with the wildcard address for the
846      *     appropriate address family.
847      *
848      *   * Failing /that/, if the remote address is IPv4, then we try
849      *     /again/, increasingly desperately, first with the v6-mapped IPv4
850      *     wildcard address, and then with the IPv6 wildcard address.  This
851      *     will cause magic v6-mapping to occur when the connection is
852      *     accepted, which we hope won't cause too much trouble.
853      */
854
855     if (sa->sa_family == AF_INET) {
856       map_ipv4_sockaddr(&addr.sin6, SIN(sa));
857       if (encode_single_inet_addr(&addr.sa, sun, 0)&USED) goto found;
858     }
859
860     wildcard_address(sa->sa_family, &addr.sa);
861     port_to_sockaddr(&addr.sa, port);
862     if (encode_single_inet_addr(&addr.sa, sun, 0)&USED) goto found;
863
864     if (sa->sa_family == AF_INET) {
865       map_ipv4_sockaddr(&sin6, &addr.sin);
866       if (encode_single_inet_addr(SA(&sin6), sun, 0)&USED) goto found;
867       wildcard_address(AF_INET6, &addr.sa);
868       port_to_sockaddr(&addr.sa, port);
869       if (encode_single_inet_addr(&addr.sa, sun, 0)&USED) goto found;
870     }
871
872     /* Well, this isn't going to work (unless a miraculous race is lost), but
873      * we might as well try.
874      */
875     encode_single_inet_addr(sa, sun, 1);
876
877   } else {
878     /* We want a fresh new socket. */
879
880     /* Make a copy of the given address, because we're going to mangle it. */
881     copy_sockaddr(&addr.sa, sa);
882
883     /* Try a few random-ish port numbers to see if any of them is spare. */
884     for (i = 0; i < 10; i++) {
885       port_to_sockaddr(&addr.sa, randrange(minautoport, maxautoport));
886       if (!encode_unused_inet_addr(&addr.sa, sun, 0)) goto found;
887     }
888
889     /* Things must be getting tight.  Work through all of the autoport range
890      * to see if we can find a spare one.  The first time, just do it the
891      * quick way; if that doesn't work, then check harder for stale sockets.
892      */
893     for (desperatep = 0; desperatep < 2; desperatep++) {
894       for (i = minautoport; i <= maxautoport; i++) {
895         port_to_sockaddr(&addr.sa, i);
896         if (!encode_unused_inet_addr(&addr.sa, sun, 0)) goto found;
897       }
898     }
899
900     /* We failed to find any free ports. */
901     errno = EADDRINUSE;
902     D( fprintf(stderr, " -- can't resolve\n"); )
903     return (-1);
904   }
905
906   /* Success. */
907 found:
908   D( fprintf(stderr, " -> `%s'\n", sun->sun_path); )
909   return (0);
910 }
911
912 /* Decode the Unix address SUN to an Internet address SIN.  If AF_HINT is
913  * nonzero, an empty address (indicative of an unbound Unix-domain socket) is
914  * translated to a wildcard Internet address of the appropriate family.
915  * Returns zero on success; -1 on failure (e.g., it wasn't one of our
916  * addresses).
917  */
918 static int decode_inet_addr(struct sockaddr *sa, int af_hint,
919                             const struct sockaddr_un *sun,
920                             socklen_t len)
921 {
922   char buf[ADDRBUFSZ];
923   size_t n = strlen(sockdir), nn;
924   address addr;
925
926   if (!sa) sa = &addr.sa;
927   if (sun->sun_family != AF_UNIX) return (-1);
928   if (len > sizeof(*sun)) return (-1);
929   ((char *)sun)[len] = 0;
930   nn = strlen(sun->sun_path);
931   D( fprintf(stderr, "noip(%d): decode `%s'", getpid(), sun->sun_path); )
932   if (af_hint && !sun->sun_path[0]) {
933     wildcard_address(af_hint, sa);
934     D( fprintf(stderr, " -- unbound socket\n"); )
935     return (0);
936   }
937   if (nn < n + 1 || nn - n >= sizeof(buf) || sun->sun_path[n] != '/' ||
938       memcmp(sun->sun_path, sockdir, n) != 0) {
939     D( fprintf(stderr, " -- not one of ours\n"); )
940     return (-1);
941   }
942   if (parse_sockaddr(sa, sun->sun_path + n + 1)) return (-1);
943   D( fprintf(stderr, " -> %s\n",
944              present_sockaddr(sa, 0, buf, sizeof(buf))); )
945   return (0);
946 }
947
948 /* SK is (or at least might be) a Unix-domain socket we created when an
949  * Internet socket was asked for.  We've decided it should be an Internet
950  * socket after all, with family AF_HINT, so convert it.  If TMP is not null,
951  * then don't replace the existing descriptor: store the new socket in *TMP
952  * and return zero.
953  */
954 static int fixup_real_ip_socket(int sk, int af_hint, int *tmp)
955 {
956   int nsk;
957   int type;
958   int f, fd;
959   struct sockaddr_un sun;
960   address addr;
961   socklen_t len;
962
963 #define OPTS(_)                                                         \
964   _(DEBUG, int)                                                         \
965   _(REUSEADDR, int)                                                     \
966   _(DONTROUTE, int)                                                     \
967   _(BROADCAST, int)                                                     \
968   _(SNDBUF, int)                                                        \
969   _(RCVBUF, int)                                                        \
970   _(OOBINLINE, int)                                                     \
971   _(NO_CHECK, int)                                                      \
972   _(LINGER, struct linger)                                              \
973   _(BSDCOMPAT, int)                                                     \
974   _(RCVLOWAT, int)                                                      \
975   _(RCVTIMEO, struct timeval)                                           \
976   _(SNDTIMEO, struct timeval)
977
978   len = sizeof(sun);
979   if (real_getsockname(sk, SA(&sun), &len))
980     return (-1);
981   if (decode_inet_addr(&addr.sa, af_hint, &sun, len))
982     return (0); /* Not one of ours */
983   len = sizeof(type);
984   if (real_getsockopt(sk, SOL_SOCKET, SO_TYPE, &type, &len) < 0 ||
985       (nsk = real_socket(addr.sa.sa_family, type, 0)) < 0)
986     return (-1);
987 #define FIX(opt, ty) do {                                               \
988   ty ov_;                                                               \
989   len = sizeof(ov_);                                                    \
990   if (real_getsockopt(sk, SOL_SOCKET, SO_##opt, &ov_, &len) < 0 ||      \
991       real_setsockopt(nsk, SOL_SOCKET, SO_##opt, &ov_, len)) {          \
992     close(nsk);                                                         \
993     return (-1);                                                        \
994   }                                                                     \
995 } while (0);
996   OPTS(FIX)
997 #undef FIX
998   if (tmp)
999     *tmp = nsk;
1000   else {
1001     if ((f = fcntl(sk, F_GETFL)) < 0 ||
1002         (fd = fcntl(sk, F_GETFD)) < 0 ||
1003         fcntl(nsk, F_SETFL, f) < 0 ||
1004         dup2(nsk, sk) < 0) {
1005       close(nsk);
1006       return (-1);
1007     }
1008     unlink(sun.sun_path);
1009     close(nsk);
1010     if (fcntl(sk, F_SETFD, fd) < 0) {
1011       perror("noip: fixup_real_ip_socket F_SETFD");
1012       abort();
1013     }
1014   }
1015   return (0);
1016 }
1017
1018 /* We found the real address SA, with length LEN; if it's a Unix-domain
1019  * address corresponding to a fake socket, convert it to cover up the
1020  * deception.  Whatever happens, put the result at FAKE and store its length
1021  * at FAKELEN.
1022  */
1023 #define FNF_V6MAPPED 1u
1024 static void return_fake_name(struct sockaddr *sa, socklen_t len,
1025                              struct sockaddr *fake, socklen_t *fakelen,
1026                              unsigned f)
1027 {
1028   address addr;
1029   struct sockaddr_in6 sin6;
1030   socklen_t alen;
1031
1032   if (sa->sa_family == AF_UNIX &&
1033       !decode_inet_addr(&addr.sa, 0, SUN(sa), len)) {
1034     if (addr.sa.sa_family != AF_INET || !(f&FNF_V6MAPPED)) {
1035       sa = &addr.sa;
1036       len = family_socklen(addr.sa.sa_family);
1037     } else {
1038       map_ipv4_sockaddr(&sin6, &addr.sin);
1039       sa = SA(&sin6);
1040       len = family_socklen(AF_INET6);
1041     }
1042   }
1043   alen = len;
1044   if (len > *fakelen) len = *fakelen;
1045   if (len > 0) memcpy(fake, sa, len);
1046   *fakelen = alen;
1047 }
1048
1049 /* Variant of `return_fake_name' above, specifically handling the weirdness
1050  * of remote v6-mapped IPv4 addresses.  If SK's fake local address is IPv6,
1051  * and the remote address is IPv4, then return a v6-mapped version of the
1052  * remote address.
1053  */
1054 static void return_fake_peer(int sk, struct sockaddr *sa, socklen_t len,
1055                              struct sockaddr *fake, socklen_t *fakelen)
1056 {
1057   char sabuf[1024];
1058   socklen_t mylen = sizeof(sabuf);
1059   unsigned fnf = 0;
1060   address addr;
1061   int rc;
1062
1063   PRESERVING_ERRNO({
1064     rc = real_getsockname(sk, SA(sabuf), &mylen);
1065     if (!rc && sa->sa_family == AF_UNIX &&
1066         !decode_inet_addr(&addr.sa, 0, SUN(sabuf), mylen) &&
1067         addr.sa.sa_family == AF_INET6)
1068       fnf |= FNF_V6MAPPED;
1069   });
1070   return_fake_name(sa, len, fake, fakelen, fnf);
1071 }
1072
1073 /*----- Implicit binding --------------------------------------------------*/
1074
1075 #ifdef DEBUG
1076
1077 static void dump_impbind(const impbind *i)
1078 {
1079   char buf[ADDRBUFSZ];
1080
1081   fprintf(stderr, "noip(%d):   ", getpid());
1082   dump_addrrange(i->af, &i->minaddr, &i->maxaddr);
1083   switch (i->how) {
1084     case SAME: fprintf(stderr, " <self>"); break;
1085     case EXPLICIT:
1086       fprintf(stderr, " %s", inet_ntop(i->af, &i->bindaddr,
1087                                        buf, sizeof(buf)));
1088       break;
1089     default: abort();
1090   }
1091   fputc('\n', stderr);
1092 }
1093
1094 static void dump_impbind_list(void)
1095 {
1096   const impbind *i;
1097
1098   for (i = impbinds; i; i = i->next) dump_impbind(i);
1099 }
1100
1101 #endif
1102
1103 /* The socket SK is about to be used to communicate with the remote address
1104  * SA.  Assign it a local address so that getpeername(2) does something
1105  * useful.
1106  *
1107  * If the flag `IBF_V6MAPPED' is set then, then SA must be an `AF_INET'
1108  * address; after deciding on the appropriate local address, convert it to be
1109  * an IPv4-mapped IPv6 address before final conversion to a Unix-domain
1110  * socket address and actually binding.  Note that this could well mean that
1111  * the socket ends up bound to the v6-mapped v4 wildcard address
1112  * ::ffff:0.0.0.0, which looks very strange but is meaningful.
1113  */
1114 #define IBF_V6MAPPED 1u
1115 static int do_implicit_bind(int sk, const struct sockaddr *sa, unsigned f)
1116 {
1117   address addr;
1118   struct sockaddr_in6 sin6;
1119   struct sockaddr_un sun;
1120   const impbind *i;
1121   Dpid;
1122
1123   D( fprintf(stderr, "noip(%d): checking impbind list...\n", pid); )
1124   for (i = impbinds; i; i = i->next) {
1125     D( dump_impbind(i); )
1126     if (sa->sa_family == i->af &&
1127         sockaddr_in_range_p(sa, &i->minaddr, &i->maxaddr)) {
1128       D( fprintf(stderr, "noip(%d): match!\n", pid); )
1129       addr.sa.sa_family = sa->sa_family;
1130       ipaddr_to_sockaddr(&addr.sa, &i->bindaddr);
1131       goto found;
1132     }
1133   }
1134   D( fprintf(stderr, "noip(%d): no match; using wildcard\n", pid); )
1135   wildcard_address(sa->sa_family, &addr.sa);
1136 found:
1137   if (addr.sa.sa_family != AF_INET || !(f&IBF_V6MAPPED)) sa = &addr.sa;
1138   else { map_ipv4_sockaddr(&sin6, &addr.sin); sa = SA(&sin6); }
1139   encode_inet_addr(&sun, sa, ENCF_FRESH);
1140   D( fprintf(stderr, "noip(%d): implicitly binding to %s\n",
1141              pid, sun.sun_path); )
1142   if (real_bind(sk, SA(&sun), SUN_LEN(&sun))) return (-1);
1143   return (0);
1144 }
1145
1146 /* The socket SK is about to communicate with the remote address *SA.  Ensure
1147  * that the socket has a local address, and adjust *SA to refer to the real
1148  * remote endpoint.
1149  *
1150  * If we need to translate the remote address, then the Unix-domain endpoint
1151  * address will end in *SUN, and *SA will be adjusted to point to it.
1152  */
1153 static int fixup_client_socket(int sk, const struct sockaddr **sa_r,
1154                                socklen_t *len_r, struct sockaddr_un *sun)
1155 {
1156   struct sockaddr_in sin;
1157   socklen_t mylen = sizeof(*sun);
1158   const struct sockaddr *sa = *sa_r;
1159   unsigned ibf = 0;
1160
1161   /* If this isn't a Unix-domain socket then there's nothing to do. */
1162   if (real_getsockname(sk, SA(sun), &mylen) < 0) return (-1);
1163   if (sun->sun_family != AF_UNIX) return (0);
1164   if (mylen < sizeof(*sun)) ((char *)sun)[mylen] = 0;
1165
1166   /* If the remote address is v6-mapped IPv4, then unmap it so as to search
1167    * for IPv4 servers.  Also remember to v6-map the local address when we
1168    * autobind.
1169    */
1170   if (sa->sa_family == AF_INET6 && !(unmap_ipv4_sockaddr(&sin, SIN6(sa)))) {
1171     sa = SA(&sin);
1172     ibf |= IBF_V6MAPPED;
1173   }
1174
1175   /* If we're allowed to talk to a real remote endpoint, then fix things up
1176    * as necessary and proceed.
1177    */
1178   if (acl_allows_p(connect_real, sa)) {
1179     if (fixup_real_ip_socket(sk, (*sa_r)->sa_family, 0)) return (-1);
1180     return (0);
1181   }
1182
1183   /* Speaking of which, if we don't have a local address, then we should
1184    * arrange one now.
1185    */
1186   if (!sun->sun_path[0] && do_implicit_bind(sk, sa, ibf)) return (-1);
1187
1188   /* And then come up with a remote address. */
1189   encode_inet_addr(sun, sa, 0);
1190   *sa_r = SA(sun);
1191   *len_r = SUN_LEN(sun);
1192   return (0);
1193 }
1194
1195 /*----- Configuration -----------------------------------------------------*/
1196
1197 /* Return the process owner's home directory. */
1198 static char *home(void)
1199 {
1200   char *p;
1201   struct passwd *pw;
1202
1203   if (getuid() == uid &&
1204       (p = getenv("HOME")) != 0)
1205     return (p);
1206   else if ((pw = getpwuid(uid)) != 0)
1207     return (pw->pw_dir);
1208   else
1209     return "/notexist";
1210 }
1211
1212 /* Return a good temporary directory to use. */
1213 static char *tmpdir(void)
1214 {
1215   char *p;
1216
1217   if ((p = getenv("TMPDIR")) != 0) return (p);
1218   else if ((p = getenv("TMP")) != 0) return (p);
1219   else return ("/tmp");
1220 }
1221
1222 /* Return the user's name, or at least something distinctive. */
1223 static char *user(void)
1224 {
1225   static char buf[16];
1226   char *p;
1227   struct passwd *pw;
1228
1229   if ((p = getenv("USER")) != 0) return (p);
1230   else if ((p = getenv("LOGNAME")) != 0) return (p);
1231   else if ((pw = getpwuid(uid)) != 0) return (pw->pw_name);
1232   else {
1233     snprintf(buf, sizeof(buf), "uid-%lu", (unsigned long)uid);
1234     return (buf);
1235   }
1236 }
1237
1238 /* Skip P over space characters. */
1239 #define SKIPSPC do { while (*p && isspace(UC(*p))) p++; } while (0)
1240
1241 /* Set Q to point to the next word following P, null-terminate it, and step P
1242  * past it. */
1243 #define NEXTWORD(q) do {                                                \
1244   SKIPSPC;                                                              \
1245   q = p;                                                                \
1246   while (*p && !isspace(UC(*p))) p++;                                   \
1247   if (*p) *p++ = 0;                                                     \
1248 } while (0)
1249
1250 /* Set Q to point to the next dotted-quad address, store the ending delimiter
1251  * in DEL, null-terminate it, and step P past it. */
1252 static void parse_nextaddr(char **pp, char **qq, int *del)
1253 {
1254   char *p = *pp;
1255
1256   SKIPSPC;
1257   if (*p == '[') {
1258     p++; SKIPSPC;
1259     *qq = p;
1260     p += strcspn(p, "]");
1261     if (*p) *p++ = 0;
1262     *del = 0;
1263   } else {
1264     *qq = p;
1265     while (*p && (*p == '.' || isdigit(UC(*p)))) p++;
1266     *del = *p;
1267     if (*p) *p++ = 0;
1268   }
1269   *pp = p;
1270 }
1271
1272 /* Set Q to point to the next decimal number, store the ending delimiter in
1273  * DEL, null-terminate it, and step P past it. */
1274 #define NEXTNUMBER(q, del) do {                                         \
1275   SKIPSPC;                                                              \
1276   q = p;                                                                \
1277   while (*p && isdigit(UC(*p))) p++;                                    \
1278   del = *p;                                                             \
1279   if (*p) *p++ = 0;                                                     \
1280 } while (0)
1281
1282 /* Push the character DEL back so we scan it again, unless it's zero
1283  * (end-of-file). */
1284 #define RESCAN(del) do { if (del) *--p = del; } while (0)
1285
1286 /* Evaluate true if P is pointing to the word KW (and not some longer string
1287  * of which KW is a prefix). */
1288
1289 #define KWMATCHP(kw) (strncmp(p, kw, sizeof(kw) - 1) == 0 &&            \
1290                       !isalnum(UC(p[sizeof(kw) - 1])) &&                \
1291                       (p += sizeof(kw) - 1))
1292
1293 /* Parse a port list, starting at *PP.  Port lists have the form
1294  * [:LOW[-HIGH]]: if omitted, all ports are included; if HIGH is omitted,
1295  * it's as if HIGH = LOW.  Store LOW in *MIN, HIGH in *MAX and set *PP to the
1296  * rest of the string.
1297  */
1298 static void parse_ports(char **pp, unsigned short *min, unsigned short *max)
1299 {
1300   char *p = *pp, *q;
1301   int del;
1302
1303   SKIPSPC;
1304   if (*p != ':')
1305     { *min = 0; *max = 0xffff; }
1306   else {
1307     p++;
1308     NEXTNUMBER(q, del); *min = strtoul(q, 0, 0); RESCAN(del);
1309     SKIPSPC;
1310     if (*p == '-')
1311       { p++; NEXTNUMBER(q, del); *max = strtoul(q, 0, 0); RESCAN(del); }
1312     else
1313       *max = *min;
1314   }
1315   *pp = p;
1316 }
1317
1318 /* Parse an address range designator starting at PP and store a
1319  * representation of it in R.  An address range designator has the form:
1320  *
1321  *      any | local | ADDR | ADDR - ADDR | ADDR/ADDR | ADDR/INT
1322  */
1323 static int parse_addrrange(char **pp, addrrange *r)
1324 {
1325   char *p = *pp, *q;
1326   int n;
1327   int del;
1328   int af;
1329
1330   SKIPSPC;
1331   if (KWMATCHP("any")) r->type = ANY;
1332   else if (KWMATCHP("local")) r->type = LOCAL;
1333   else {
1334     parse_nextaddr(&p, &q, &del);
1335     af = guess_address_family(q);
1336     if (inet_pton(af, q, &r->u.range.min) <= 0) goto bad;
1337     RESCAN(del);
1338     SKIPSPC;
1339     if (*p == '-') {
1340       p++;
1341       parse_nextaddr(&p, &q, &del);
1342       if (inet_pton(af, q, &r->u.range.max) <= 0) goto bad;
1343       RESCAN(del);
1344     } else if (*p == '/') {
1345       p++;
1346       NEXTNUMBER(q, del);
1347       n = strtoul(q, 0, 0);
1348       r->u.range.max = r->u.range.min;
1349       mask_address(af, &r->u.range.min, n, 0);
1350       mask_address(af, &r->u.range.max, n, 1);
1351       RESCAN(del);
1352     } else
1353       r->u.range.max = r->u.range.min;
1354     r->type = RANGE;
1355     r->u.range.af = af;
1356   }
1357   *pp = p;
1358   return (0);
1359
1360 bad:
1361   return (-1);
1362 }
1363
1364 /* Call FUNC on each individual address range in R. */
1365 static void foreach_addrrange(const addrrange *r,
1366                               void (*func)(int af,
1367                                            const ipaddr *min,
1368                                            const ipaddr *max,
1369                                            void *p),
1370                               void *p)
1371 {
1372   ipaddr minaddr, maxaddr;
1373   int i, af;
1374
1375   switch (r->type) {
1376     case EMPTY:
1377       break;
1378     case ANY:
1379       for (i = 0; address_families[i] >= 0; i++) {
1380         af = address_families[i];
1381         memset(&minaddr, 0, sizeof(minaddr));
1382         maxaddr = minaddr; mask_address(af, &maxaddr, 0, 1);
1383         func(af, &minaddr, &maxaddr, p);
1384       }
1385       break;
1386     case LOCAL:
1387       for (i = 0; address_families[i] >= 0; i++) {
1388         af = address_families[i];
1389         memset(&minaddr, 0, sizeof(minaddr));
1390         maxaddr = minaddr; mask_address(af, &maxaddr, 0, 1);
1391         func(af, &minaddr, &minaddr, p);
1392         func(af, &maxaddr, &maxaddr, p);
1393       }
1394       for (i = 0; i < n_local_ipaddrs; i++) {
1395         func(local_ipaddrs[i].af,
1396              &local_ipaddrs[i].addr, &local_ipaddrs[i].addr,
1397              p);
1398       }
1399       break;
1400     case RANGE:
1401       func(r->u.range.af, &r->u.range.min, &r->u.range.max, p);
1402       break;
1403     default:
1404       abort();
1405   }
1406 }
1407
1408 struct add_aclnode_ctx {
1409   int act;
1410   unsigned short minport, maxport;
1411   aclnode ***tail;
1412 };
1413
1414 static void add_aclnode(int af, const ipaddr *min, const ipaddr *max,
1415                         void *p)
1416 {
1417   struct add_aclnode_ctx *ctx = p;
1418   aclnode *a;
1419
1420   NEW(a);
1421   a->act = ctx->act;
1422   a->af = af;
1423   a->minaddr = *min; a->maxaddr = *max;
1424   a->minport = ctx->minport; a->maxport = ctx->maxport;
1425   **ctx->tail = a; *ctx->tail = &a->next;
1426 }
1427
1428 /* Parse an ACL line.  *PP points to the end of the line; *TAIL points to
1429  * the list tail (i.e., the final link in the list).  An ACL entry has the
1430  * form +|- ADDR-RANGE PORTS
1431  * where PORTS is parsed by parse_ports above; an ACL line consists of a
1432  * comma-separated sequence of entries..
1433  */
1434 static void parse_acl_line(char **pp, aclnode ***tail)
1435 {
1436   struct add_aclnode_ctx ctx;
1437   addrrange r;
1438   char *p = *pp;
1439
1440   ctx.tail = tail;
1441   for (;;) {
1442     SKIPSPC;
1443     if (*p == '+') ctx.act = ALLOW;
1444     else if (*p == '-') ctx.act = DENY;
1445     else goto bad;
1446
1447     p++;
1448     if (parse_addrrange(&p, &r)) goto bad;
1449     parse_ports(&p, &ctx.minport, &ctx.maxport);
1450     foreach_addrrange(&r, add_aclnode, &ctx);
1451     SKIPSPC;
1452     if (*p != ',') break;
1453     if (*p) p++;
1454   }
1455   if (*p) goto bad;
1456   *pp = p;
1457   return;
1458
1459 bad:
1460   D( fprintf(stderr, "noip(%d): bad acl spec (ignored)\n", getpid()); )
1461   return;
1462 }
1463
1464 /* Parse an ACL from an environment variable VAR, attaching it to the list
1465  * TAIL.
1466  */
1467 static void parse_acl_env(const char *var, aclnode ***tail)
1468 {
1469   char *p, *q;
1470
1471   if ((p = getenv(var)) != 0) {
1472     p = q = xstrdup(p);
1473     parse_acl_line(&q, tail);
1474     free(p);
1475   }
1476 }
1477
1478 struct add_impbind_ctx {
1479   int af, how;
1480   ipaddr addr;
1481 };
1482
1483 static void add_impbind(int af, const ipaddr *min, const ipaddr *max,
1484                         void *p)
1485 {
1486   struct add_impbind_ctx *ctx = p;
1487   impbind *i;
1488
1489   if (ctx->af && af != ctx->af) return;
1490   NEW(i);
1491   i->af = af;
1492   i->how = ctx->how;
1493   i->minaddr = *min; i->maxaddr = *max;
1494   switch (ctx->how) {
1495     case EXPLICIT: i->bindaddr = ctx->addr;
1496     case SAME: break;
1497     default: abort();
1498   }
1499   *impbind_tail = i; impbind_tail = &i->next;
1500 }
1501
1502 /* Parse an implicit-bind line.  An implicit-bind entry has the form
1503  * ADDR-RANGE {ADDR | same}
1504  */
1505 static void parse_impbind_line(char **pp)
1506 {
1507   struct add_impbind_ctx ctx;
1508   char *p = *pp, *q;
1509   addrrange r;
1510   int del;
1511
1512   for (;;) {
1513     if (parse_addrrange(&p, &r)) goto bad;
1514     SKIPSPC;
1515     if (KWMATCHP("same")) {
1516       ctx.how = SAME;
1517       ctx.af = 0;
1518     } else {
1519       ctx.how = EXPLICIT;
1520       parse_nextaddr(&p, &q, &del);
1521       ctx.af = guess_address_family(q);
1522       if (inet_pton(ctx.af, q, &ctx.addr) < 0) goto bad;
1523       RESCAN(del);
1524     }
1525     foreach_addrrange(&r, add_impbind, &ctx);
1526     SKIPSPC;
1527     if (*p != ',') break;
1528     if (*p) p++;
1529   }
1530   if (*p) goto bad;
1531   *pp = p;
1532   return;
1533
1534 bad:
1535   D( fprintf(stderr, "noip(%d): bad implicit-bind spec (ignored)\n",
1536              getpid()); )
1537   return;
1538 }
1539
1540 /* Parse implicit-bind instructions from an environment variable VAR,
1541  * attaching it to the list.
1542  */
1543 static void parse_impbind_env(const char *var)
1544 {
1545   char *p, *q;
1546
1547   if ((p = getenv(var)) != 0) {
1548     p = q = xstrdup(p);
1549     parse_impbind_line(&q);
1550     free(p);
1551   }
1552 }
1553
1554 /* Parse the autoports configuration directive.  Syntax is MIN - MAX. */
1555 static void parse_autoports(char **pp)
1556 {
1557   char *p = *pp, *q;
1558   unsigned x, y;
1559   int del;
1560
1561   SKIPSPC;
1562   NEXTNUMBER(q, del); x = strtoul(q, 0, 0); RESCAN(del);
1563   SKIPSPC;
1564   if (*p != '-') goto bad;
1565   p++;
1566   NEXTNUMBER(q, del); y = strtoul(q, 0, 0); RESCAN(del);
1567   minautoport = x; maxautoport = y;
1568   SKIPSPC; if (*p) goto bad;
1569   *pp = p;
1570   return;
1571
1572 bad:
1573   D( fprintf(stderr, "noip(%d): bad port range (ignored)\n", getpid()); )
1574   return;
1575 }
1576
1577 /* Read the configuration from the config file and environment. */
1578 static void readconfig(void)
1579 {
1580   FILE *fp;
1581   char buf[1024];
1582   size_t n;
1583   char *p, *q, *cmd;
1584   Dpid;
1585
1586   parse_acl_env("NOIP_REALBIND_BEFORE", &bind_tail);
1587   parse_acl_env("NOIP_REALCONNECT_BEFORE", &connect_tail);
1588   parse_impbind_env("NOIP_IMPBIND_BEFORE");
1589   if ((p = getenv("NOIP_AUTOPORTS")) != 0) {
1590     p = q = xstrdup(p);
1591     parse_autoports(&q);
1592     free(p);
1593   }
1594   if ((p = getenv("NOIP_CONFIG")) == 0)
1595     snprintf(p = buf, sizeof(buf), "%s/.noip", home());
1596   D( fprintf(stderr, "noip(%d): config file: %s\n", pid, p); )
1597
1598   if ((fp = fopen(p, "r")) == 0) {
1599     D( fprintf(stderr, "noip(%d): couldn't read config: %s\n",
1600                pid, strerror(errno)); )
1601     goto done;
1602   }
1603   while (fgets(buf, sizeof(buf), fp)) {
1604     n = strlen(buf);
1605     p = buf;
1606
1607     SKIPSPC;
1608     if (!*p || *p == '#') continue;
1609     while (n && isspace(UC(buf[n - 1]))) n--;
1610     buf[n] = 0;
1611     NEXTWORD(cmd);
1612     SKIPSPC;
1613
1614     if (strcmp(cmd, "socketdir") == 0)
1615       sockdir = xstrdup(p);
1616     else if (strcmp(cmd, "realbind") == 0)
1617       parse_acl_line(&p, &bind_tail);
1618     else if (strcmp(cmd, "realconnect") == 0)
1619       parse_acl_line(&p, &connect_tail);
1620     else if (strcmp(cmd, "impbind") == 0)
1621       parse_impbind_line(&p);
1622     else if (strcmp(cmd, "autoports") == 0)
1623       parse_autoports(&p);
1624     else if (strcmp(cmd, "debug") == 0)
1625       debug = *p ? atoi(p) : 1;
1626     else
1627       D( fprintf(stderr, "noip(%d): bad config command %s\n", pid, cmd); )
1628   }
1629   fclose(fp);
1630
1631 done:
1632   parse_acl_env("NOIP_REALBIND", &bind_tail);
1633   parse_acl_env("NOIP_REALCONNECT", &connect_tail);
1634   parse_impbind_env("NOIP_IMPBIND");
1635   parse_acl_env("NOIP_REALBIND_AFTER", &bind_tail);
1636   parse_acl_env("NOIP_REALCONNECT_AFTER", &connect_tail);
1637   parse_impbind_env("NOIP_IMPBIND_AFTER");
1638   *bind_tail = 0;
1639   *connect_tail = 0;
1640   *impbind_tail = 0;
1641   if (!sockdir) sockdir = getenv("NOIP_SOCKETDIR");
1642   if (!sockdir) {
1643     snprintf(buf, sizeof(buf), "%s/noip-%s", tmpdir(), user());
1644     sockdir = xstrdup(buf);
1645   }
1646   D( fprintf(stderr, "noip(%d): socketdir: %s\n", pid, sockdir);
1647      fprintf(stderr, "noip(%d): autoports: %u-%u\n",
1648              pid, minautoport, maxautoport);
1649      fprintf(stderr, "noip(%d): realbind acl:\n", pid);
1650      dump_acl(bind_real);
1651      fprintf(stderr, "noip(%d): realconnect acl:\n", pid);
1652      dump_acl(connect_real);
1653      fprintf(stderr, "noip(%d): impbind list:\n", pid);
1654      dump_impbind_list(); )
1655 }
1656
1657 /*----- Overridden system calls -------------------------------------------*/
1658
1659 static void dump_syserr(long rc)
1660   { fprintf(stderr, " => %ld (E%d)\n", rc, errno); }
1661
1662 static void dump_sysresult(long rc)
1663 {
1664   if (rc < 0) dump_syserr(rc);
1665   else fprintf(stderr, " => %ld\n", rc);
1666 }
1667
1668 static void dump_addrresult(long rc, const struct sockaddr *sa,
1669                             socklen_t len)
1670 {
1671   char addrbuf[ADDRBUFSZ];
1672
1673   if (rc < 0) dump_syserr(rc);
1674   else {
1675     fprintf(stderr, " => %ld [%s]\n", rc,
1676             present_sockaddr(sa, len, addrbuf, sizeof(addrbuf)));
1677   }
1678 }
1679
1680 int socket(int pf, int ty, int proto)
1681 {
1682   int sk;
1683
1684   D( fprintf(stderr, "noip(%d): SOCKET pf=%d, type=%d, proto=%d",
1685              getpid(), pf, ty, proto); )
1686
1687   switch (pf) {
1688     default:
1689       if (!family_known_p(pf)) {
1690         D( fprintf(stderr, " -> unknown; refuse\n"); )
1691         errno = EAFNOSUPPORT;
1692         sk = -1;
1693       }
1694       D( fprintf(stderr, " -> inet; substitute"); )
1695       pf = PF_UNIX;
1696       proto = 0;
1697       break;
1698     case PF_UNIX:
1699 #ifdef PF_NETLINK
1700     case PF_NETLINK:
1701 #endif
1702       D( fprintf(stderr, " -> safe; permit"); )
1703       break;
1704   }
1705   sk = real_socket(pf, ty, proto);
1706   D( dump_sysresult(sk); )
1707   return (sk);
1708 }
1709
1710 int socketpair(int pf, int ty, int proto, int *sk)
1711 {
1712   int rc;
1713
1714   D( fprintf(stderr, "noip(%d): SOCKETPAIR pf=%d, type=%d, proto=%d",
1715              getpid(), pf, ty, proto); )
1716   if (!family_known_p(pf))
1717     D( fprintf(stderr, " -> unknown; permit"); )
1718   else {
1719     D( fprintf(stderr, " -> inet; substitute"); )
1720     pf = PF_UNIX;
1721     proto = 0;
1722   }
1723   rc = real_socketpair(pf, ty, proto, sk);
1724   D( if (rc < 0) dump_syserr(rc);
1725      else fprintf(stderr, " => %d (%d, %d)\n", rc, sk[0], sk[1]); )
1726   return (rc);
1727 }
1728
1729 int bind(int sk, const struct sockaddr *sa, socklen_t len)
1730 {
1731   struct sockaddr_un sun;
1732   int rc;
1733   unsigned f;
1734   int reusep;
1735   socklen_t n;
1736   Dpid;
1737
1738   D({ char buf[ADDRBUFSZ];
1739       fprintf(stderr, "noip(%d): BIND sk=%d, sa[%d]=%s", pid,
1740               sk, len, present_sockaddr(sa, len, buf, sizeof(buf))); })
1741
1742   if (!family_known_p(sa->sa_family))
1743     D( fprintf(stderr, " -> unknown af; pass through"); )
1744   else {
1745     D( fprintf(stderr, " -> checking...\n"); )
1746     PRESERVING_ERRNO({
1747       if (acl_allows_p(bind_real, sa)) {
1748         if (fixup_real_ip_socket(sk, sa->sa_family, 0))
1749           return (-1);
1750       } else {
1751         f = ENCF_FRESH;
1752         n = sizeof(reusep);
1753         if (!getsockopt(sk, SOL_SOCKET, SO_REUSEADDR, &reusep, &n) && reusep)
1754           f |= ENCF_REUSEADDR;
1755         encode_inet_addr(&sun, sa, f);
1756         sa = SA(&sun);
1757         len = SUN_LEN(&sun);
1758       }
1759     });
1760     D( fprintf(stderr, "noip(%d): BIND ...", pid); )
1761   }
1762   rc = real_bind(sk, sa, len);
1763   D( dump_sysresult(rc); )
1764   return (rc);
1765 }
1766
1767 int connect(int sk, const struct sockaddr *sa, socklen_t len)
1768 {
1769   struct sockaddr_un sun;
1770   int rc;
1771   Dpid;
1772
1773   D({ char buf[ADDRBUFSZ];
1774       fprintf(stderr, "noip(%d): CONNECT sk=%d, sa[%d]=%s", pid,
1775               sk, len, present_sockaddr(sa, len, buf, sizeof(buf))); })
1776
1777   if (!family_known_p(sa->sa_family)) {
1778     D( fprintf(stderr, " -> unknown af; pass through"); )
1779     rc = real_connect(sk, sa, len);
1780   } else {
1781     D( fprintf(stderr, " -> checking...\n"); )
1782     PRESERVING_ERRNO({
1783       fixup_client_socket(sk, &sa, &len, &sun);
1784     });
1785     D( fprintf(stderr, "noip(%d): CONNECT ...", pid); )
1786     rc = real_connect(sk, sa, len);
1787     if (rc < 0) {
1788       switch (errno) {
1789         case ENOENT: errno = ECONNREFUSED; break;
1790       }
1791     }
1792   }
1793   D( dump_sysresult(rc); )
1794   return (rc);
1795 }
1796
1797 ssize_t sendto(int sk, const void *buf, size_t len, int flags,
1798                const struct sockaddr *to, socklen_t tolen)
1799 {
1800   struct sockaddr_un sun;
1801   ssize_t n;
1802   Dpid;
1803
1804   D({ char addrbuf[ADDRBUFSZ];
1805       fprintf(stderr, "noip(%d): SENDTO sk=%d, len=%lu, flags=%d, to[%d]=%s",
1806               pid, sk, (unsigned long)len, flags, tolen,
1807               present_sockaddr(to, tolen, addrbuf, sizeof(addrbuf))); })
1808
1809   if (!to)
1810     D( fprintf(stderr, " -> null address; leaving"); )
1811   else if (!family_known_p(to->sa_family))
1812     D( fprintf(stderr, " -> unknown af; pass through"); )
1813   else {
1814     D( fprintf(stderr, " -> checking...\n"); )
1815     PRESERVING_ERRNO({
1816       fixup_client_socket(sk, &to, &tolen, &sun);
1817     });
1818     D( fprintf(stderr, "noip(%d): SENDTO ...", pid); )
1819   }
1820   n = real_sendto(sk, buf, len, flags, to, tolen);
1821   D( dump_sysresult(n); )
1822   return (n);
1823 }
1824
1825 ssize_t recvfrom(int sk, void *buf, size_t len, int flags,
1826                  struct sockaddr *from, socklen_t *fromlen)
1827 {
1828   char sabuf[1024];
1829   socklen_t mylen = sizeof(sabuf);
1830   ssize_t n;
1831   Dpid;
1832
1833   D( fprintf(stderr, "noip(%d): RECVFROM sk=%d, len=%lu, flags=%d",
1834              pid, sk, (unsigned long)len, flags); )
1835
1836   if (!from) {
1837     D( fprintf(stderr, " -> null addr; pass through"); )
1838     n = real_recvfrom(sk, buf, len, flags, 0, 0);
1839   } else {
1840     n = real_recvfrom(sk, buf, len, flags, SA(sabuf), &mylen);
1841     if (n >= 0) {
1842       D( fprintf(stderr, " -> converting...\n"); )
1843       PRESERVING_ERRNO({
1844         return_fake_peer(sk, SA(sabuf), mylen, from, fromlen);
1845       });
1846       D( fprintf(stderr, "noip(%d): ... RECVFROM", pid); )
1847     }
1848   }
1849   D( dump_addrresult(n, from, fromlen ? *fromlen : 0); )
1850   return (n);
1851 }
1852
1853 ssize_t sendmsg(int sk, const struct msghdr *msg, int flags)
1854 {
1855   struct sockaddr_un sun;
1856   const struct sockaddr *sa = SA(msg->msg_name);
1857   struct msghdr mymsg;
1858   ssize_t n;
1859   Dpid;
1860
1861   D({ char addrbuf[ADDRBUFSZ];
1862       fprintf(stderr, "noip(%d): SENDMSG sk=%d, "
1863                       "msg_flags=%d, msg_name[%d]=%s, ...",
1864               pid, sk, msg->msg_flags, msg->msg_namelen,
1865               present_sockaddr(sa, msg->msg_namelen,
1866                                addrbuf, sizeof(addrbuf))); })
1867
1868   if (!sa)
1869     D( fprintf(stderr, " -> null address; leaving"); )
1870   else if (!family_known_p(sa->sa_family))
1871     D( fprintf(stderr, " -> unknown af; pass through"); )
1872   else {
1873     D( fprintf(stderr, " -> checking...\n"); )
1874     PRESERVING_ERRNO({
1875       mymsg = *msg;
1876       fixup_client_socket(sk, &sa, &mymsg.msg_namelen, &sun);
1877       mymsg.msg_name = SA(sa);
1878       msg = &mymsg;
1879     });
1880     D( fprintf(stderr, "noip(%d): SENDMSG ...", pid); )
1881   }
1882   n = real_sendmsg(sk, msg, flags);
1883   D( dump_sysresult(n); )
1884   return (n);
1885 }
1886
1887 ssize_t recvmsg(int sk, struct msghdr *msg, int flags)
1888 {
1889   char sabuf[1024];
1890   struct sockaddr *sa = SA(msg->msg_name);
1891   socklen_t len = msg->msg_namelen;
1892   ssize_t n;
1893   Dpid;
1894
1895   D( fprintf(stderr, "noip(%d): RECVMSG sk=%d msg_flags=%d, ...",
1896              pid, sk, msg->msg_flags); )
1897
1898   if (!msg->msg_name) {
1899     D( fprintf(stderr, " -> null addr; pass through"); )
1900     return (real_recvmsg(sk, msg, flags));
1901   } else {
1902     msg->msg_name = sabuf;
1903     msg->msg_namelen = sizeof(sabuf);
1904     n = real_recvmsg(sk, msg, flags);
1905     if (n >= 0) {
1906       D( fprintf(stderr, " -> converting...\n"); )
1907       PRESERVING_ERRNO({
1908         return_fake_peer(sk, SA(sabuf), msg->msg_namelen, sa, &len);
1909       });
1910     }
1911     D( fprintf(stderr, "noip(%d): ... RECVMSG", pid); )
1912     msg->msg_name = sa;
1913     msg->msg_namelen = len;
1914   }
1915   D( dump_addrresult(n, sa, len); )
1916   return (n);
1917 }
1918
1919 int accept(int sk, struct sockaddr *sa, socklen_t *len)
1920 {
1921   char sabuf[1024];
1922   socklen_t mylen = sizeof(sabuf);
1923   int nsk;
1924   Dpid;
1925
1926   D( fprintf(stderr, "noip(%d): ACCEPT sk=%d", pid, sk); )
1927
1928   nsk = real_accept(sk, SA(sabuf), &mylen);
1929   if (nsk < 0) /* failed */;
1930   else if (!sa) D( fprintf(stderr, " -> address not wanted"); )
1931   else {
1932     D( fprintf(stderr, " -> converting...\n"); )
1933     return_fake_peer(sk, SA(sabuf), mylen, sa, len);
1934     D( fprintf(stderr, "noip(%d): ... ACCEPT", pid); )
1935   }
1936   D( dump_addrresult(nsk, sa, len ? *len : 0); )
1937   return (nsk);
1938 }
1939
1940 int getsockname(int sk, struct sockaddr *sa, socklen_t *len)
1941 {
1942   char sabuf[1024];
1943   socklen_t mylen = sizeof(sabuf);
1944   int rc;
1945   Dpid;
1946
1947   D( fprintf(stderr, "noip(%d): GETSOCKNAME sk=%d", pid, sk); )
1948   rc = real_getsockname(sk, SA(sabuf), &mylen);
1949   if (rc >= 0) {
1950     D( fprintf(stderr, " -> converting...\n"); )
1951     return_fake_name(SA(sabuf), mylen, sa, len, 0);
1952     D( fprintf(stderr, "noip(%d): ... GETSOCKNAME", pid); )
1953   }
1954   D( dump_addrresult(rc, sa, *len); )
1955   return (rc);
1956 }
1957
1958 int getpeername(int sk, struct sockaddr *sa, socklen_t *len)
1959 {
1960   char sabuf[1024];
1961   socklen_t mylen = sizeof(sabuf);
1962   int rc;
1963   Dpid;
1964
1965   D( fprintf(stderr, "noip(%d): GETPEERNAME sk=%d", pid, sk); )
1966   rc = real_getpeername(sk, SA(sabuf), &mylen);
1967   if (rc >= 0) {
1968     D( fprintf(stderr, " -> converting...\n"); )
1969     return_fake_peer(sk, SA(sabuf), mylen, sa, len);
1970     D( fprintf(stderr, "noip(%d): ... GETPEERNAME", pid); )
1971   }
1972   D( dump_addrresult(rc, sa, *len); )
1973   return (rc);
1974 }
1975
1976 int getsockopt(int sk, int lev, int opt, void *p, socklen_t *len)
1977 {
1978   switch (lev) {
1979     case IPPROTO_IP:
1980     case IPPROTO_IPV6:
1981     case IPPROTO_TCP:
1982     case IPPROTO_UDP:
1983       if (*len > 0)
1984         memset(p, 0, *len);
1985       return (0);
1986   }
1987   return (real_getsockopt(sk, lev, opt, p, len));
1988 }
1989
1990 int setsockopt(int sk, int lev, int opt, const void *p, socklen_t len)
1991 {
1992   switch (lev) {
1993     case IPPROTO_IP:
1994     case IPPROTO_IPV6:
1995     case IPPROTO_TCP:
1996     case IPPROTO_UDP:
1997       return (0);
1998   }
1999   switch (opt) {
2000     case SO_BINDTODEVICE:
2001     case SO_ATTACH_FILTER:
2002     case SO_DETACH_FILTER:
2003       return (0);
2004   }
2005   return (real_setsockopt(sk, lev, opt, p, len));
2006 }
2007
2008 int ioctl(int fd, unsigned long op, ...)
2009 {
2010   va_list ap;
2011   void *arg;
2012   int sk;
2013   int rc;
2014
2015   va_start(ap, op);
2016   arg = va_arg(ap, void *);
2017
2018   switch (op) {
2019     case SIOCGIFADDR:
2020     case SIOCGIFBRDADDR:
2021     case SIOCGIFDSTADDR:
2022     case SIOCGIFNETMASK:
2023       PRESERVING_ERRNO({
2024         if (fixup_real_ip_socket(fd, AF_INET, &sk)) goto real;
2025       });
2026       rc = real_ioctl(sk, op, arg);
2027       PRESERVING_ERRNO({ close(sk); });
2028       break;
2029     default:
2030     real:
2031       rc = real_ioctl(fd, op, arg);
2032       break;
2033   }
2034   va_end(ap);
2035   return (rc);
2036 }
2037
2038 /*----- Initialization ----------------------------------------------------*/
2039
2040 /* Clean up the socket directory, deleting stale sockets. */
2041 static void cleanup_sockdir(void)
2042 {
2043   DIR *dir;
2044   struct dirent *d;
2045   address addr;
2046   struct sockaddr_un sun;
2047   struct stat st;
2048   Dpid;
2049
2050   if ((dir = opendir(sockdir)) == 0) return;
2051   sun.sun_family = AF_UNIX;
2052   while ((d = readdir(dir)) != 0) {
2053     if (d->d_name[0] == '.') continue;
2054     snprintf(sun.sun_path, sizeof(sun.sun_path),
2055              "%s/%s", sockdir, d->d_name);
2056     if (decode_inet_addr(&addr.sa, 0, &sun, SUN_LEN(&sun)) ||
2057         stat(sun.sun_path, &st) ||
2058         !S_ISSOCK(st.st_mode)) {
2059       D( fprintf(stderr, "noip(%d): ignoring unknown socketdir entry `%s'\n",
2060                  pid, sun.sun_path); )
2061       continue;
2062     }
2063     if (unix_socket_status(&sun, 0) == STALE) {
2064       D( fprintf(stderr, "noip(%d): clearing away stale socket %s\n",
2065                  pid, d->d_name); )
2066       unlink(sun.sun_path);
2067     }
2068   }
2069   closedir(dir);
2070 }
2071
2072 /* Find the addresses attached to local network interfaces, and remember them
2073  * in a table.
2074  */
2075 static void get_local_ipaddrs(void)
2076 {
2077   struct ifaddrs *ifa_head, *ifa;
2078   ipaddr a;
2079   int i;
2080   Dpid;
2081
2082   D( fprintf(stderr, "noip(%d): fetching local addresses...\n", pid); )
2083   if (getifaddrs(&ifa_head)) { perror("getifaddrs"); return; }
2084   for (n_local_ipaddrs = 0, ifa = ifa_head;
2085        n_local_ipaddrs < MAX_LOCAL_IPADDRS && ifa;
2086        ifa = ifa->ifa_next) {
2087     if (!ifa->ifa_addr || !family_known_p(ifa->ifa_addr->sa_family))
2088       continue;
2089     ipaddr_from_sockaddr(&a, ifa->ifa_addr);
2090     D({ char buf[ADDRBUFSZ];
2091         fprintf(stderr, "noip(%d):   local addr %s = %s", pid,
2092                 ifa->ifa_name,
2093                 inet_ntop(ifa->ifa_addr->sa_family, &a,
2094                           buf, sizeof(buf))); })
2095     for (i = 0; i < n_local_ipaddrs; i++) {
2096       if (ifa->ifa_addr->sa_family == local_ipaddrs[i].af &&
2097           ipaddr_equal_p(local_ipaddrs[i].af, &a, &local_ipaddrs[i].addr)) {
2098         D( fprintf(stderr, " (duplicate)\n"); )
2099         goto skip;
2100       }
2101     }
2102     D( fprintf(stderr, "\n"); )
2103     local_ipaddrs[n_local_ipaddrs].af = ifa->ifa_addr->sa_family;
2104     local_ipaddrs[n_local_ipaddrs].addr = a;
2105     n_local_ipaddrs++;
2106   skip:;
2107   }
2108   freeifaddrs(ifa_head);
2109 }
2110
2111 /* Print the given message to standard error.  Avoids stdio. */
2112 static void printerr(const char *p)
2113   { if (write(STDERR_FILENO, p, strlen(p))) ; }
2114
2115 /* Create the socket directory, being careful about permissions. */
2116 static void create_sockdir(void)
2117 {
2118   struct stat st;
2119
2120   if (lstat(sockdir, &st)) {
2121     if (errno == ENOENT) {
2122       if (mkdir(sockdir, 0700)) {
2123         perror("noip: creating socketdir");
2124         exit(127);
2125       }
2126       if (!lstat(sockdir, &st))
2127         goto check;
2128     }
2129     perror("noip: checking socketdir");
2130     exit(127);
2131   }
2132 check:
2133   if (!S_ISDIR(st.st_mode)) {
2134     printerr("noip: bad socketdir: not a directory\n");
2135     exit(127);
2136   }
2137   if (st.st_uid != uid) {
2138     printerr("noip: bad socketdir: not owner\n");
2139     exit(127);
2140   }
2141   if (st.st_mode & 077) {
2142     printerr("noip: bad socketdir: not private\n");
2143     exit(127);
2144   }
2145 }
2146
2147 /* Initialization function. */
2148 static void setup(void) __attribute__((constructor));
2149 static void setup(void)
2150 {
2151   PRESERVING_ERRNO({
2152     char *p;
2153
2154     import();
2155     uid = geteuid();
2156     if ((p = getenv("NOIP_DEBUG")) && atoi(p))
2157       debug = 1;
2158     get_local_ipaddrs();
2159     readconfig();
2160     create_sockdir();
2161     cleanup_sockdir();
2162   });
2163 }
2164
2165 /*----- That's all, folks -------------------------------------------------*/