3 * Make programs use Unix-domain sockets instead of IP
5 * (c) 2008 Straylight/Edgeware
8 /*----- Licensing notice --------------------------------------------------*
10 * This file is part of the preload-hacks package.
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.
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
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.
32 /*----- Header files ------------------------------------------------------*/
48 #include <sys/ioctl.h>
49 #include <sys/socket.h>
53 #include <netinet/in.h>
54 #include <arpa/inet.h>
55 #include <netinet/tcp.h>
56 #include <netinet/udp.h>
61 # define SUN_LEN (sun) \
62 (strlen((sun)->sun_path) + offsetof(struct sockaddr_un, sun_path))
65 /*----- Data structures ---------------------------------------------------*/
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 */
73 enum { DENY, ALLOW }; /* ACL verdicts */
75 static int address_families[] = { AF_INET, AF_INET6, -1 };
79 /* Address representations. */
80 typedef union ipaddr {
85 /* Convenient socket address hacking. */
86 typedef union address {
88 struct sockaddr_in sin;
89 struct sockaddr_in6 sin6;
92 /* Access control list nodes */
93 typedef struct aclnode {
97 ipaddr minaddr, maxaddr;
98 unsigned short minport, maxport;
101 /* Implicit bind records */
102 typedef struct impbind {
103 struct impbind *next;
105 ipaddr minaddr, maxaddr, bindaddr;
107 enum { EXPLICIT, SAME };
109 /* A type for an address range */
110 typedef struct addrrange {
113 struct { int af; ipaddr min, max; } range;
116 enum { EMPTY, ANY, LOCAL, RANGE };
118 /* Local address records */
119 typedef struct full_ipaddr {
123 #define MAX_LOCAL_IPADDRS 64
124 static full_ipaddr local_ipaddrs[MAX_LOCAL_IPADDRS];
125 static int n_local_ipaddrs;
127 /* General configuration */
129 static char *sockdir = 0;
130 static int debug = 0;
131 static unsigned minautoport = 16384, maxautoport = 65536;
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;
138 /*----- Import the real versions of functions -----------------------------*/
140 /* The list of functions to immport. */
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, ...))
159 /* Function pointers to set up. */
160 #define DECL(imp, ret, args) static ret (*real_##imp) args;
164 /* Import the system calls. */
165 static void import(void)
167 #define IMPORT(imp, ret, args) \
168 real_##imp = (ret (*)args)dlsym(RTLD_NEXT, #imp);
173 /*----- Utilities ---------------------------------------------------------*/
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))
182 #define UC(ch) ((unsigned char)(ch))
184 /* Memory allocation */
185 #define NEW(x) ((x) = xmalloc(sizeof(*x)))
186 #define NEWV(x, n) ((x) = xmalloc(sizeof(*x) * (n)))
190 # define D(body) { if (debug) { body } }
191 # define Dpid pid_t pid = debug ? getpid() : -1
197 /* Preservation of error status */
198 #define PRESERVING_ERRNO(body) do { \
199 int _err = errno; { body } errno = _err; \
202 /* Allocate N bytes of memory; abort on failure. */
203 static void *xmalloc(size_t n)
207 if ((p = malloc(n)) == 0) { perror("malloc"); exit(127); }
211 /* Allocate a copy of the null-terminated string P; abort on failure. */
212 static char *xstrdup(const char *p)
214 size_t n = strlen(p) + 1;
215 char *q = xmalloc(n);
220 /*----- Address-type hacking ----------------------------------------------*/
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.
226 static int simple_mask_length(unsigned long m)
230 while (m & 1) { n++; m >>= 1; }
234 /* Answer whether AF is an interesting address family. */
235 static int family_known_p(int af)
246 /* Return the socket address length for address family AF. */
247 static socklen_t family_socklen(int af)
250 case AF_INET: return (sizeof(struct sockaddr_in));
251 case AF_INET6: return (sizeof(struct sockaddr_in6));
256 /* Return the width of addresses of kind AF. */
257 static int address_width(int af)
260 case AF_INET: return 32;
261 case AF_INET6: return 128;
266 /* If addresses A and B share a common prefix then return its length;
267 * otherwise return -1.
269 static int common_prefix_length(int af, const ipaddr *a, const ipaddr *b)
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));
279 const uint8_t *aa = a->v6.s6_addr, *bb = b->v6.s6_addr;
284 for (i = 0; i < 16 && aa[i] == bb[i]; 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);
300 /* Extract the port number (in host byte-order) from SA. */
301 static int port_from_sockaddr(const struct sockaddr *sa)
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));
310 /* Store the port number PORT (in host byte-order) in SA. */
311 static void port_to_sockaddr(struct sockaddr *sa, int port)
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;
320 /* Extract the address part from SA and store it in A. */
321 static void ipaddr_from_sockaddr(ipaddr *a, const struct sockaddr *sa)
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;
330 /* Store the address A in SA. */
331 static void ipaddr_to_sockaddr(struct sockaddr *sa, const ipaddr *a)
333 switch (sa->sa_family) {
335 SIN(sa)->sin_addr = a->v4;
338 SIN6(sa)->sin6_addr = a->v6;
339 SIN6(sa)->sin6_scope_id = 0;
340 SIN6(sa)->sin6_flowinfo = 0;
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)); }
352 /* Convert an AF_INET socket address into the equivalent IPv4-mapped AF_INET6
355 static void map_ipv4_sockaddr(struct sockaddr_in6 *a6,
356 const struct sockaddr_in *a4)
359 in_addr_t a = ntohl(a4->sin_addr.s_addr);
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;
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.
374 static int unmap_ipv4_sockaddr(struct sockaddr_in *a4,
375 const struct sockaddr_in6 *a6)
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);
389 /* Answer whether two addresses are equal. */
390 static int ipaddr_equal_p(int af, const ipaddr *a, const ipaddr *b)
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);
399 /* Answer whether the address part of SA is between A and B (inclusive). We
400 * assume that SA has the correct address family.
402 static int sockaddr_in_range_p(const struct sockaddr *sa,
403 const ipaddr *a, const ipaddr *b)
405 switch (sa->sa_family) {
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));
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;
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;
429 /* Fill in SA with the appropriate wildcard address. */
430 static void wildcard_address(int af, struct sockaddr *sa)
434 struct sockaddr_in *sin = SIN(sa);
435 memset(sin, 0, sizeof(*sin));
436 sin->sin_family = AF_INET;
438 sin->sin_addr.s_addr = INADDR_ANY;
441 struct sockaddr_in6 *sin6 = SIN6(sa);
442 memset(sin6, 0, sizeof(*sin6));
443 sin6->sin6_family = AF_INET6;
445 sin6->sin6_addr = in6addr_any;
446 sin6->sin6_scope_id = 0;
447 sin6->sin6_flowinfo = 0;
454 /* Mask the address A, forcing all but the top PLEN bits to zero or one
455 * according to HIGHP.
457 static void mask_address(int af, ipaddr *a, int plen, int highp)
461 unsigned long addr = ntohl(a->v4.s_addr);
462 unsigned long mask = plen ? ~0ul << (32 - plen) : 0;
464 if (highp) addr |= ~mask;
465 a->v4.s_addr = htonl(addr & 0xffffffff);
469 unsigned m = (0xff << (8 - plen%8)) & 0xff;
470 unsigned s = highp ? 0xff : 0;
472 a->v6.s6_addr[i] = (a->v6.s6_addr[i] & m) | (s & ~m);
475 for (; i < 16; i++) a->v6.s6_addr[i] = s;
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).
487 static char *present_sockaddr(const struct sockaddr *sa, socklen_t len,
488 char *buf, size_t sz)
490 #define WANT(n_) do { if (sz < (n_)) goto nospace; } while (0)
491 #define PUTC(c_) do { *buf++ = (c_); sz--; } while (0)
493 if (!sa) return "<null-address>";
494 if (!sz) return "<no-space-in-buffer>";
495 if (!len) len = family_socklen(sa->sa_family);
497 switch (sa->sa_family) {
499 struct sockaddr_un *sun = SUN(sa);
500 char *p = sun->sun_path;
501 size_t n = len - offsetof(struct sockaddr_un, sun_path);
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;
517 if (*p > ' ' && *p <= '~')
518 { WANT(1); PUTC(*p); }
520 WANT(4); PUTC('\\'); PUTC('x');
521 PUTC((*p >> 4)&0xf); PUTC((*p >> 0)&0xf);
528 if (*p != '/') { WANT(2); PUTC('.'); PUTC('/'); }
529 while (n && *p) { WANT(1); PUTC(*p); p++; n--; }
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);
540 snprintf(buf, sz, strchr(addrbuf, ':') ? "[%s]:%s" : "%s:%s",
544 snprintf(buf, sz, "<unknown-address-family %d>", sa->sa_family);
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); }
558 /* Parse a socket address P and write the result to SA. */
559 static int parse_sockaddr(struct sockaddr *sa, const char *p)
563 struct addrinfo *ai, ai_hint = { 0 };
565 if (strlen(p) >= sizeof(buf) - 1) return (-1);
566 strcpy(buf, p); p = buf;
568 if ((q = strchr(p, ':')) == 0) return (-1);
572 if ((q = strchr(p, ']')) == 0) return (-1);
574 if (*q != ':') return (-1);
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);
587 /*----- Access control lists ----------------------------------------------*/
591 static void dump_addrrange(int af, const ipaddr *min, const ipaddr *max)
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);
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);
607 /* Write to standard error a description of the ACL node A. */
608 static void dump_aclnode(const aclnode *a)
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);
620 static void dump_acl(const aclnode *a)
624 for (; a; a = a->next) {
628 fprintf(stderr, "noip(%d): [default policy: %s]\n", getpid(),
629 act == ALLOW ? "DENY" : "ALLOW");
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)
637 unsigned short port = port_from_sockaddr(sa);
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"); )
655 D( fprintf(stderr, "noip(%d): nothing found: %s\n", pid,
656 act ? "DENY" : "ALLOW"); )
660 /*----- Socket address conversion -----------------------------------------*/
662 /* Return a uniformly distributed integer between MIN and MAX inclusive. */
663 static unsigned randrange(unsigned min, unsigned max)
667 /* It's so nice not to have to care about the quality of the generator
671 for (mask = 1; mask < max; mask = (mask << 1) | 1)
673 do i = rand() & mask; while (i > max);
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.
683 static int unix_socket_status(struct sockaddr_un *sun, int quickp)
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.
695 if (stat(sun->sun_path, &st))
696 return (errno == ENOENT ? UNUSED : USED);
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
702 if (!S_ISSOCK(st.st_mode) || quickp)
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.
710 if ((fp = fopen("/proc/net/unix", "r")) == 0)
712 if (!fgets(buf, sizeof(buf), fp)) goto done; /* skip header */
713 len = strlen(sun->sun_path);
715 while (fgets(buf, sizeof(buf), fp)) {
717 if (n >= len + 2 && buf[n - len - 2] == ' ' && buf[n - 1] == '\n' &&
718 memcmp(buf + n - len - 1, sun->sun_path, len) == 0) {
720 if (sscanf(buf, "%*s %*x %*x %lx", &f) < 0 || (f&0x00010000))
734 /* Encode SA as a Unix-domain address SUN, and return whether it's currently
737 static int encode_single_inet_addr(const struct sockaddr *sa,
738 struct sockaddr_un *sun,
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);
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
755 static int encode_unused_inet_addr(struct sockaddr *sa,
756 struct sockaddr_un *sun,
759 address waddr, maddr;
760 struct sockaddr_un wsun;
761 int port = port_from_sockaddr(sa);
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.)
767 if (encode_single_inet_addr(sa, sun, !desperatep)&USED)
770 /* Next, check the corresponding wildcard address, so as to avoid
771 * inadvertant collisions with listeners. Do this in the same way.
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)
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
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)
787 map_ipv4_sockaddr(&maddr.sin6, &waddr.sin);
788 if (encode_single_inet_addr(&maddr.sa, &wsun, !desperatep)&USED)
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)
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.
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,
816 struct sockaddr_in6 sin6;
817 int port = port_from_sockaddr(sa);
821 D( fprintf(stderr, "noip(%d): encode %s (%s)", getpid(),
822 present_sockaddr(sa, 0, buf, sizeof(buf)),
823 (f&ENCF_FRESH) ? "FRESH" : "EXISTING"); )
825 /* Start making the Unix-domain address. */
826 sun->sun_family = AF_UNIX;
828 if (port || !(f&ENCF_FRESH)) {
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.
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;
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.
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.
845 * * Failing that, we try again with the wildcard address for the
846 * appropriate address family.
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.
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;
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;
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;
872 /* Well, this isn't going to work (unless a miraculous race is lost), but
873 * we might as well try.
875 encode_single_inet_addr(sa, sun, 1);
878 /* We want a fresh new socket. */
880 /* Make a copy of the given address, because we're going to mangle it. */
881 copy_sockaddr(&addr.sa, sa);
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;
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.
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;
900 /* We failed to find any free ports. */
902 D( fprintf(stderr, " -- can't resolve\n"); )
908 D( fprintf(stderr, " -> `%s'\n", sun->sun_path); )
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
918 static int decode_inet_addr(struct sockaddr *sa, int af_hint,
919 const struct sockaddr_un *sun,
923 size_t n = strlen(sockdir), nn;
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"); )
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"); )
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))); )
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
954 static int fixup_real_ip_socket(int sk, int af_hint, int *tmp)
959 struct sockaddr_un sun;
972 _(LINGER, struct linger) \
975 _(RCVTIMEO, struct timeval) \
976 _(SNDTIMEO, struct timeval)
979 if (real_getsockname(sk, SA(&sun), &len))
981 if (decode_inet_addr(&addr.sa, af_hint, &sun, len))
982 return (0); /* Not one of ours */
984 if (real_getsockopt(sk, SOL_SOCKET, SO_TYPE, &type, &len) < 0 ||
985 (nsk = real_socket(addr.sa.sa_family, type, 0)) < 0)
987 #define FIX(opt, ty) do { \
990 if (real_getsockopt(sk, SOL_SOCKET, SO_##opt, &ov_, &len) < 0 || \
991 real_setsockopt(nsk, SOL_SOCKET, SO_##opt, &ov_, len)) { \
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) {
1008 unlink(sun.sun_path);
1010 if (fcntl(sk, F_SETFD, fd) < 0) {
1011 perror("noip: fixup_real_ip_socket F_SETFD");
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
1023 #define FNF_V6MAPPED 1u
1024 static void return_fake_name(struct sockaddr *sa, socklen_t len,
1025 struct sockaddr *fake, socklen_t *fakelen,
1029 struct sockaddr_in6 sin6;
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)) {
1036 len = family_socklen(addr.sa.sa_family);
1038 map_ipv4_sockaddr(&sin6, &addr.sin);
1040 len = family_socklen(AF_INET6);
1044 if (len > *fakelen) len = *fakelen;
1045 if (len > 0) memcpy(fake, sa, len);
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
1054 static void return_fake_peer(int sk, struct sockaddr *sa, socklen_t len,
1055 struct sockaddr *fake, socklen_t *fakelen)
1058 socklen_t mylen = sizeof(sabuf);
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;
1070 return_fake_name(sa, len, fake, fakelen, fnf);
1073 /*----- Implicit binding --------------------------------------------------*/
1077 static void dump_impbind(const impbind *i)
1079 char buf[ADDRBUFSZ];
1081 fprintf(stderr, "noip(%d): ", getpid());
1082 dump_addrrange(i->af, &i->minaddr, &i->maxaddr);
1084 case SAME: fprintf(stderr, " <self>"); break;
1086 fprintf(stderr, " %s", inet_ntop(i->af, &i->bindaddr,
1091 fputc('\n', stderr);
1094 static void dump_impbind_list(void)
1098 for (i = impbinds; i; i = i->next) dump_impbind(i);
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
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.
1114 #define IBF_V6MAPPED 1u
1115 static int do_implicit_bind(int sk, const struct sockaddr *sa, unsigned f)
1118 struct sockaddr_in6 sin6;
1119 struct sockaddr_un sun;
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 port_to_sockaddr(&addr.sa, 0);
1135 D( fprintf(stderr, "noip(%d): no match; using wildcard\n", pid); )
1136 wildcard_address(sa->sa_family, &addr.sa);
1138 if (addr.sa.sa_family != AF_INET || !(f&IBF_V6MAPPED)) sa = &addr.sa;
1139 else { map_ipv4_sockaddr(&sin6, &addr.sin); sa = SA(&sin6); }
1140 encode_inet_addr(&sun, sa, ENCF_FRESH);
1141 D( fprintf(stderr, "noip(%d): implicitly binding to %s\n",
1142 pid, sun.sun_path); )
1143 if (real_bind(sk, SA(&sun), SUN_LEN(&sun))) return (-1);
1147 /* The socket SK is about to communicate with the remote address *SA. Ensure
1148 * that the socket has a local address, and adjust *SA to refer to the real
1151 * If we need to translate the remote address, then the Unix-domain endpoint
1152 * address will end in *SUN, and *SA will be adjusted to point to it.
1154 static int fixup_client_socket(int sk, const struct sockaddr **sa_r,
1155 socklen_t *len_r, struct sockaddr_un *sun)
1157 struct sockaddr_in sin;
1158 socklen_t mylen = sizeof(*sun);
1159 const struct sockaddr *sa = *sa_r;
1162 /* If this isn't a Unix-domain socket then there's nothing to do. */
1163 if (real_getsockname(sk, SA(sun), &mylen) < 0) return (-1);
1164 if (sun->sun_family != AF_UNIX) return (0);
1165 if (mylen < sizeof(*sun)) ((char *)sun)[mylen] = 0;
1167 /* If the remote address is v6-mapped IPv4, then unmap it so as to search
1168 * for IPv4 servers. Also remember to v6-map the local address when we
1171 if (sa->sa_family == AF_INET6 && !(unmap_ipv4_sockaddr(&sin, SIN6(sa)))) {
1173 ibf |= IBF_V6MAPPED;
1176 /* If we're allowed to talk to a real remote endpoint, then fix things up
1177 * as necessary and proceed.
1179 if (acl_allows_p(connect_real, sa)) {
1180 if (fixup_real_ip_socket(sk, (*sa_r)->sa_family, 0)) return (-1);
1184 /* Speaking of which, if we don't have a local address, then we should
1187 if (!sun->sun_path[0] && do_implicit_bind(sk, sa, ibf)) return (-1);
1189 /* And then come up with a remote address. */
1190 encode_inet_addr(sun, sa, 0);
1192 *len_r = SUN_LEN(sun);
1196 /*----- Configuration -----------------------------------------------------*/
1198 /* Return the process owner's home directory. */
1199 static char *home(void)
1204 if (getuid() == uid &&
1205 (p = getenv("HOME")) != 0)
1207 else if ((pw = getpwuid(uid)) != 0)
1208 return (pw->pw_dir);
1213 /* Return a good temporary directory to use. */
1214 static char *tmpdir(void)
1218 if ((p = getenv("TMPDIR")) != 0) return (p);
1219 else if ((p = getenv("TMP")) != 0) return (p);
1220 else return ("/tmp");
1223 /* Return the user's name, or at least something distinctive. */
1224 static char *user(void)
1226 static char buf[16];
1230 if ((p = getenv("USER")) != 0) return (p);
1231 else if ((p = getenv("LOGNAME")) != 0) return (p);
1232 else if ((pw = getpwuid(uid)) != 0) return (pw->pw_name);
1234 snprintf(buf, sizeof(buf), "uid-%lu", (unsigned long)uid);
1239 /* Skip P over space characters. */
1240 #define SKIPSPC do { while (*p && isspace(UC(*p))) p++; } while (0)
1242 /* Set Q to point to the next word following P, null-terminate it, and step P
1244 #define NEXTWORD(q) do { \
1247 while (*p && !isspace(UC(*p))) p++; \
1251 /* Set Q to point to the next dotted-quad address, store the ending delimiter
1252 * in DEL, null-terminate it, and step P past it. */
1253 static void parse_nextaddr(char **pp, char **qq, int *del)
1261 p += strcspn(p, "]");
1266 while (*p && (*p == '.' || isdigit(UC(*p)))) p++;
1273 /* Set Q to point to the next decimal number, store the ending delimiter in
1274 * DEL, null-terminate it, and step P past it. */
1275 #define NEXTNUMBER(q, del) do { \
1278 while (*p && isdigit(UC(*p))) p++; \
1283 /* Push the character DEL back so we scan it again, unless it's zero
1285 #define RESCAN(del) do { if (del) *--p = del; } while (0)
1287 /* Evaluate true if P is pointing to the word KW (and not some longer string
1288 * of which KW is a prefix). */
1290 #define KWMATCHP(kw) (strncmp(p, kw, sizeof(kw) - 1) == 0 && \
1291 !isalnum(UC(p[sizeof(kw) - 1])) && \
1292 (p += sizeof(kw) - 1))
1294 /* Parse a port list, starting at *PP. Port lists have the form
1295 * [:LOW[-HIGH]]: if omitted, all ports are included; if HIGH is omitted,
1296 * it's as if HIGH = LOW. Store LOW in *MIN, HIGH in *MAX and set *PP to the
1297 * rest of the string.
1299 static void parse_ports(char **pp, unsigned short *min, unsigned short *max)
1306 { *min = 0; *max = 0xffff; }
1309 NEXTNUMBER(q, del); *min = strtoul(q, 0, 0); RESCAN(del);
1312 { p++; NEXTNUMBER(q, del); *max = strtoul(q, 0, 0); RESCAN(del); }
1319 /* Parse an address range designator starting at PP and store a
1320 * representation of it in R. An address range designator has the form:
1322 * any | local | ADDR | ADDR - ADDR | ADDR/ADDR | ADDR/INT
1324 static int parse_addrrange(char **pp, addrrange *r)
1332 if (KWMATCHP("any")) r->type = ANY;
1333 else if (KWMATCHP("local")) r->type = LOCAL;
1335 parse_nextaddr(&p, &q, &del);
1336 af = guess_address_family(q);
1337 if (inet_pton(af, q, &r->u.range.min) <= 0) goto bad;
1342 parse_nextaddr(&p, &q, &del);
1343 if (inet_pton(af, q, &r->u.range.max) <= 0) goto bad;
1345 } else if (*p == '/') {
1348 n = strtoul(q, 0, 0);
1349 r->u.range.max = r->u.range.min;
1350 mask_address(af, &r->u.range.min, n, 0);
1351 mask_address(af, &r->u.range.max, n, 1);
1354 r->u.range.max = r->u.range.min;
1365 /* Call FUNC on each individual address range in R. */
1366 static void foreach_addrrange(const addrrange *r,
1367 void (*func)(int af,
1373 ipaddr minaddr, maxaddr;
1380 for (i = 0; address_families[i] >= 0; i++) {
1381 af = address_families[i];
1382 memset(&minaddr, 0, sizeof(minaddr));
1383 maxaddr = minaddr; mask_address(af, &maxaddr, 0, 1);
1384 func(af, &minaddr, &maxaddr, p);
1388 for (i = 0; address_families[i] >= 0; i++) {
1389 af = address_families[i];
1390 memset(&minaddr, 0, sizeof(minaddr));
1391 maxaddr = minaddr; mask_address(af, &maxaddr, 0, 1);
1392 func(af, &minaddr, &minaddr, p);
1393 func(af, &maxaddr, &maxaddr, p);
1395 for (i = 0; i < n_local_ipaddrs; i++) {
1396 func(local_ipaddrs[i].af,
1397 &local_ipaddrs[i].addr, &local_ipaddrs[i].addr,
1402 func(r->u.range.af, &r->u.range.min, &r->u.range.max, p);
1409 struct add_aclnode_ctx {
1411 unsigned short minport, maxport;
1415 static void add_aclnode(int af, const ipaddr *min, const ipaddr *max,
1418 struct add_aclnode_ctx *ctx = p;
1424 a->minaddr = *min; a->maxaddr = *max;
1425 a->minport = ctx->minport; a->maxport = ctx->maxport;
1426 **ctx->tail = a; *ctx->tail = &a->next;
1429 /* Parse an ACL line. *PP points to the end of the line; *TAIL points to
1430 * the list tail (i.e., the final link in the list). An ACL entry has the
1431 * form +|- ADDR-RANGE PORTS
1432 * where PORTS is parsed by parse_ports above; an ACL line consists of a
1433 * comma-separated sequence of entries..
1435 static void parse_acl_line(char **pp, aclnode ***tail)
1437 struct add_aclnode_ctx ctx;
1444 if (*p == '+') ctx.act = ALLOW;
1445 else if (*p == '-') ctx.act = DENY;
1449 if (parse_addrrange(&p, &r)) goto bad;
1450 parse_ports(&p, &ctx.minport, &ctx.maxport);
1451 foreach_addrrange(&r, add_aclnode, &ctx);
1453 if (*p != ',') break;
1461 D( fprintf(stderr, "noip(%d): bad acl spec (ignored)\n", getpid()); )
1465 /* Parse an ACL from an environment variable VAR, attaching it to the list
1468 static void parse_acl_env(const char *var, aclnode ***tail)
1472 if ((p = getenv(var)) != 0) {
1474 parse_acl_line(&q, tail);
1479 struct add_impbind_ctx {
1484 static void add_impbind(int af, const ipaddr *min, const ipaddr *max,
1487 struct add_impbind_ctx *ctx = p;
1490 if (ctx->af && af != ctx->af) return;
1494 i->minaddr = *min; i->maxaddr = *max;
1496 case EXPLICIT: i->bindaddr = ctx->addr;
1500 *impbind_tail = i; impbind_tail = &i->next;
1503 /* Parse an implicit-bind line. An implicit-bind entry has the form
1504 * ADDR-RANGE {ADDR | same}
1506 static void parse_impbind_line(char **pp)
1508 struct add_impbind_ctx ctx;
1514 if (parse_addrrange(&p, &r)) goto bad;
1516 if (KWMATCHP("same")) {
1521 parse_nextaddr(&p, &q, &del);
1522 ctx.af = guess_address_family(q);
1523 if (inet_pton(ctx.af, q, &ctx.addr) < 0) goto bad;
1526 foreach_addrrange(&r, add_impbind, &ctx);
1528 if (*p != ',') break;
1536 D( fprintf(stderr, "noip(%d): bad implicit-bind spec (ignored)\n",
1541 /* Parse implicit-bind instructions from an environment variable VAR,
1542 * attaching it to the list.
1544 static void parse_impbind_env(const char *var)
1548 if ((p = getenv(var)) != 0) {
1550 parse_impbind_line(&q);
1555 /* Parse the autoports configuration directive. Syntax is MIN - MAX. */
1556 static void parse_autoports(char **pp)
1563 NEXTNUMBER(q, del); x = strtoul(q, 0, 0); RESCAN(del);
1565 if (*p != '-') goto bad;
1567 NEXTNUMBER(q, del); y = strtoul(q, 0, 0); RESCAN(del);
1568 minautoport = x; maxautoport = y;
1569 SKIPSPC; if (*p) goto bad;
1574 D( fprintf(stderr, "noip(%d): bad port range (ignored)\n", getpid()); )
1578 /* Read the configuration from the config file and environment. */
1579 static void readconfig(void)
1587 parse_acl_env("NOIP_REALBIND_BEFORE", &bind_tail);
1588 parse_acl_env("NOIP_REALCONNECT_BEFORE", &connect_tail);
1589 parse_impbind_env("NOIP_IMPBIND_BEFORE");
1590 if ((p = getenv("NOIP_AUTOPORTS")) != 0) {
1592 parse_autoports(&q);
1595 if ((p = getenv("NOIP_CONFIG")) == 0)
1596 snprintf(p = buf, sizeof(buf), "%s/.noip", home());
1597 D( fprintf(stderr, "noip(%d): config file: %s\n", pid, p); )
1599 if ((fp = fopen(p, "r")) == 0) {
1600 D( fprintf(stderr, "noip(%d): couldn't read config: %s\n",
1601 pid, strerror(errno)); )
1604 while (fgets(buf, sizeof(buf), fp)) {
1609 if (!*p || *p == '#') continue;
1610 while (n && isspace(UC(buf[n - 1]))) n--;
1615 if (strcmp(cmd, "socketdir") == 0)
1616 sockdir = xstrdup(p);
1617 else if (strcmp(cmd, "realbind") == 0)
1618 parse_acl_line(&p, &bind_tail);
1619 else if (strcmp(cmd, "realconnect") == 0)
1620 parse_acl_line(&p, &connect_tail);
1621 else if (strcmp(cmd, "impbind") == 0)
1622 parse_impbind_line(&p);
1623 else if (strcmp(cmd, "autoports") == 0)
1624 parse_autoports(&p);
1625 else if (strcmp(cmd, "debug") == 0)
1626 debug = *p ? atoi(p) : 1;
1628 D( fprintf(stderr, "noip(%d): bad config command %s\n", pid, cmd); )
1633 parse_acl_env("NOIP_REALBIND", &bind_tail);
1634 parse_acl_env("NOIP_REALCONNECT", &connect_tail);
1635 parse_impbind_env("NOIP_IMPBIND");
1636 parse_acl_env("NOIP_REALBIND_AFTER", &bind_tail);
1637 parse_acl_env("NOIP_REALCONNECT_AFTER", &connect_tail);
1638 parse_impbind_env("NOIP_IMPBIND_AFTER");
1642 if (!sockdir) sockdir = getenv("NOIP_SOCKETDIR");
1644 snprintf(buf, sizeof(buf), "%s/noip-%s", tmpdir(), user());
1645 sockdir = xstrdup(buf);
1647 D( fprintf(stderr, "noip(%d): socketdir: %s\n", pid, sockdir);
1648 fprintf(stderr, "noip(%d): autoports: %u-%u\n",
1649 pid, minautoport, maxautoport);
1650 fprintf(stderr, "noip(%d): realbind acl:\n", pid);
1651 dump_acl(bind_real);
1652 fprintf(stderr, "noip(%d): realconnect acl:\n", pid);
1653 dump_acl(connect_real);
1654 fprintf(stderr, "noip(%d): impbind list:\n", pid);
1655 dump_impbind_list(); )
1658 /*----- Overridden system calls -------------------------------------------*/
1660 static void dump_syserr(long rc)
1661 { fprintf(stderr, " => %ld (E%d)\n", rc, errno); }
1663 static void dump_sysresult(long rc)
1665 if (rc < 0) dump_syserr(rc);
1666 else fprintf(stderr, " => %ld\n", rc);
1669 static void dump_addrresult(long rc, const struct sockaddr *sa,
1672 char addrbuf[ADDRBUFSZ];
1674 if (rc < 0) dump_syserr(rc);
1676 fprintf(stderr, " => %ld [%s]\n", rc,
1677 present_sockaddr(sa, len, addrbuf, sizeof(addrbuf)));
1681 int socket(int pf, int ty, int proto)
1685 D( fprintf(stderr, "noip(%d): SOCKET pf=%d, type=%d, proto=%d",
1686 getpid(), pf, ty, proto); )
1690 if (!family_known_p(pf)) {
1691 D( fprintf(stderr, " -> unknown; refuse\n"); )
1692 errno = EAFNOSUPPORT;
1695 D( fprintf(stderr, " -> inet; substitute"); )
1703 D( fprintf(stderr, " -> safe; permit"); )
1706 sk = real_socket(pf, ty, proto);
1707 D( dump_sysresult(sk); )
1711 int socketpair(int pf, int ty, int proto, int *sk)
1715 D( fprintf(stderr, "noip(%d): SOCKETPAIR pf=%d, type=%d, proto=%d",
1716 getpid(), pf, ty, proto); )
1717 if (!family_known_p(pf))
1718 D( fprintf(stderr, " -> unknown; permit"); )
1720 D( fprintf(stderr, " -> inet; substitute"); )
1724 rc = real_socketpair(pf, ty, proto, sk);
1725 D( if (rc < 0) dump_syserr(rc);
1726 else fprintf(stderr, " => %d (%d, %d)\n", rc, sk[0], sk[1]); )
1730 int bind(int sk, const struct sockaddr *sa, socklen_t len)
1732 struct sockaddr_un sun;
1739 D({ char buf[ADDRBUFSZ];
1740 fprintf(stderr, "noip(%d): BIND sk=%d, sa[%d]=%s", pid,
1741 sk, len, present_sockaddr(sa, len, buf, sizeof(buf))); })
1743 if (!family_known_p(sa->sa_family))
1744 D( fprintf(stderr, " -> unknown af; pass through"); )
1746 D( fprintf(stderr, " -> checking...\n"); )
1748 if (acl_allows_p(bind_real, sa)) {
1749 if (fixup_real_ip_socket(sk, sa->sa_family, 0))
1754 if (!getsockopt(sk, SOL_SOCKET, SO_REUSEADDR, &reusep, &n) && reusep)
1755 f |= ENCF_REUSEADDR;
1756 encode_inet_addr(&sun, sa, f);
1758 len = SUN_LEN(&sun);
1761 D( fprintf(stderr, "noip(%d): BIND ...", pid); )
1763 rc = real_bind(sk, sa, len);
1764 D( dump_sysresult(rc); )
1768 int connect(int sk, const struct sockaddr *sa, socklen_t len)
1770 struct sockaddr_un sun;
1774 D({ char buf[ADDRBUFSZ];
1775 fprintf(stderr, "noip(%d): CONNECT sk=%d, sa[%d]=%s", pid,
1776 sk, len, present_sockaddr(sa, len, buf, sizeof(buf))); })
1778 if (!family_known_p(sa->sa_family)) {
1779 D( fprintf(stderr, " -> unknown af; pass through"); )
1780 rc = real_connect(sk, sa, len);
1782 D( fprintf(stderr, " -> checking...\n"); )
1784 fixup_client_socket(sk, &sa, &len, &sun);
1786 D( fprintf(stderr, "noip(%d): CONNECT ...", pid); )
1787 rc = real_connect(sk, sa, len);
1790 case ENOENT: errno = ECONNREFUSED; break;
1794 D( dump_sysresult(rc); )
1798 ssize_t sendto(int sk, const void *buf, size_t len, int flags,
1799 const struct sockaddr *to, socklen_t tolen)
1801 struct sockaddr_un sun;
1805 D({ char addrbuf[ADDRBUFSZ];
1806 fprintf(stderr, "noip(%d): SENDTO sk=%d, len=%lu, flags=%d, to[%d]=%s",
1807 pid, sk, (unsigned long)len, flags, tolen,
1808 present_sockaddr(to, tolen, addrbuf, sizeof(addrbuf))); })
1811 D( fprintf(stderr, " -> null address; leaving"); )
1812 else if (!family_known_p(to->sa_family))
1813 D( fprintf(stderr, " -> unknown af; pass through"); )
1815 D( fprintf(stderr, " -> checking...\n"); )
1817 fixup_client_socket(sk, &to, &tolen, &sun);
1819 D( fprintf(stderr, "noip(%d): SENDTO ...", pid); )
1821 n = real_sendto(sk, buf, len, flags, to, tolen);
1822 D( dump_sysresult(n); )
1826 ssize_t recvfrom(int sk, void *buf, size_t len, int flags,
1827 struct sockaddr *from, socklen_t *fromlen)
1830 socklen_t mylen = sizeof(sabuf);
1834 D( fprintf(stderr, "noip(%d): RECVFROM sk=%d, len=%lu, flags=%d",
1835 pid, sk, (unsigned long)len, flags); )
1838 D( fprintf(stderr, " -> null addr; pass through"); )
1839 n = real_recvfrom(sk, buf, len, flags, 0, 0);
1841 n = real_recvfrom(sk, buf, len, flags, SA(sabuf), &mylen);
1843 D( fprintf(stderr, " -> converting...\n"); )
1845 return_fake_peer(sk, SA(sabuf), mylen, from, fromlen);
1847 D( fprintf(stderr, "noip(%d): ... RECVFROM", pid); )
1850 D( dump_addrresult(n, from, fromlen ? *fromlen : 0); )
1854 ssize_t sendmsg(int sk, const struct msghdr *msg, int flags)
1856 struct sockaddr_un sun;
1857 const struct sockaddr *sa = SA(msg->msg_name);
1858 struct msghdr mymsg;
1862 D({ char addrbuf[ADDRBUFSZ];
1863 fprintf(stderr, "noip(%d): SENDMSG sk=%d, "
1864 "msg_flags=%d, msg_name[%d]=%s, ...",
1865 pid, sk, msg->msg_flags, msg->msg_namelen,
1866 present_sockaddr(sa, msg->msg_namelen,
1867 addrbuf, sizeof(addrbuf))); })
1870 D( fprintf(stderr, " -> null address; leaving"); )
1871 else if (!family_known_p(sa->sa_family))
1872 D( fprintf(stderr, " -> unknown af; pass through"); )
1874 D( fprintf(stderr, " -> checking...\n"); )
1877 fixup_client_socket(sk, &sa, &mymsg.msg_namelen, &sun);
1878 mymsg.msg_name = SA(sa);
1881 D( fprintf(stderr, "noip(%d): SENDMSG ...", pid); )
1883 n = real_sendmsg(sk, msg, flags);
1884 D( dump_sysresult(n); )
1888 ssize_t recvmsg(int sk, struct msghdr *msg, int flags)
1891 struct sockaddr *sa = SA(msg->msg_name);
1892 socklen_t len = msg->msg_namelen;
1896 D( fprintf(stderr, "noip(%d): RECVMSG sk=%d msg_flags=%d, ...",
1897 pid, sk, msg->msg_flags); )
1899 if (!msg->msg_name) {
1900 D( fprintf(stderr, " -> null addr; pass through"); )
1901 return (real_recvmsg(sk, msg, flags));
1903 msg->msg_name = sabuf;
1904 msg->msg_namelen = sizeof(sabuf);
1905 n = real_recvmsg(sk, msg, flags);
1907 D( fprintf(stderr, " -> converting...\n"); )
1909 return_fake_peer(sk, SA(sabuf), msg->msg_namelen, sa, &len);
1912 D( fprintf(stderr, "noip(%d): ... RECVMSG", pid); )
1914 msg->msg_namelen = len;
1916 D( dump_addrresult(n, sa, len); )
1920 int accept(int sk, struct sockaddr *sa, socklen_t *len)
1923 socklen_t mylen = sizeof(sabuf);
1927 D( fprintf(stderr, "noip(%d): ACCEPT sk=%d", pid, sk); )
1929 nsk = real_accept(sk, SA(sabuf), &mylen);
1930 if (nsk < 0) /* failed */;
1931 else if (!sa) D( fprintf(stderr, " -> address not wanted"); )
1933 D( fprintf(stderr, " -> converting...\n"); )
1934 return_fake_peer(sk, SA(sabuf), mylen, sa, len);
1935 D( fprintf(stderr, "noip(%d): ... ACCEPT", pid); )
1937 D( dump_addrresult(nsk, sa, len ? *len : 0); )
1941 int getsockname(int sk, struct sockaddr *sa, socklen_t *len)
1944 socklen_t mylen = sizeof(sabuf);
1948 D( fprintf(stderr, "noip(%d): GETSOCKNAME sk=%d", pid, sk); )
1949 rc = real_getsockname(sk, SA(sabuf), &mylen);
1951 D( fprintf(stderr, " -> converting...\n"); )
1952 return_fake_name(SA(sabuf), mylen, sa, len, 0);
1953 D( fprintf(stderr, "noip(%d): ... GETSOCKNAME", pid); )
1955 D( dump_addrresult(rc, sa, *len); )
1959 int getpeername(int sk, struct sockaddr *sa, socklen_t *len)
1962 socklen_t mylen = sizeof(sabuf);
1966 D( fprintf(stderr, "noip(%d): GETPEERNAME sk=%d", pid, sk); )
1967 rc = real_getpeername(sk, SA(sabuf), &mylen);
1969 D( fprintf(stderr, " -> converting...\n"); )
1970 return_fake_peer(sk, SA(sabuf), mylen, sa, len);
1971 D( fprintf(stderr, "noip(%d): ... GETPEERNAME", pid); )
1973 D( dump_addrresult(rc, sa, *len); )
1977 int getsockopt(int sk, int lev, int opt, void *p, socklen_t *len)
1988 return (real_getsockopt(sk, lev, opt, p, len));
1991 int setsockopt(int sk, int lev, int opt, const void *p, socklen_t len)
2001 case SO_BINDTODEVICE:
2002 case SO_ATTACH_FILTER:
2003 case SO_DETACH_FILTER:
2006 return (real_setsockopt(sk, lev, opt, p, len));
2009 int ioctl(int fd, unsigned long op, ...)
2017 arg = va_arg(ap, void *);
2021 case SIOCGIFBRDADDR:
2022 case SIOCGIFDSTADDR:
2023 case SIOCGIFNETMASK:
2025 if (fixup_real_ip_socket(fd, AF_INET, &sk)) goto real;
2027 rc = real_ioctl(sk, op, arg);
2028 PRESERVING_ERRNO({ close(sk); });
2032 rc = real_ioctl(fd, op, arg);
2039 /*----- Initialization ----------------------------------------------------*/
2041 /* Clean up the socket directory, deleting stale sockets. */
2042 static void cleanup_sockdir(void)
2047 struct sockaddr_un sun;
2051 if ((dir = opendir(sockdir)) == 0) return;
2052 sun.sun_family = AF_UNIX;
2053 while ((d = readdir(dir)) != 0) {
2054 if (d->d_name[0] == '.') continue;
2055 snprintf(sun.sun_path, sizeof(sun.sun_path),
2056 "%s/%s", sockdir, d->d_name);
2057 if (decode_inet_addr(&addr.sa, 0, &sun, SUN_LEN(&sun)) ||
2058 stat(sun.sun_path, &st) ||
2059 !S_ISSOCK(st.st_mode)) {
2060 D( fprintf(stderr, "noip(%d): ignoring unknown socketdir entry `%s'\n",
2061 pid, sun.sun_path); )
2064 if (unix_socket_status(&sun, 0) == STALE) {
2065 D( fprintf(stderr, "noip(%d): clearing away stale socket %s\n",
2067 unlink(sun.sun_path);
2073 /* Find the addresses attached to local network interfaces, and remember them
2076 static void get_local_ipaddrs(void)
2078 struct ifaddrs *ifa_head, *ifa;
2083 D( fprintf(stderr, "noip(%d): fetching local addresses...\n", pid); )
2084 if (getifaddrs(&ifa_head)) { perror("getifaddrs"); return; }
2085 for (n_local_ipaddrs = 0, ifa = ifa_head;
2086 n_local_ipaddrs < MAX_LOCAL_IPADDRS && ifa;
2087 ifa = ifa->ifa_next) {
2088 if (!ifa->ifa_addr || !family_known_p(ifa->ifa_addr->sa_family))
2090 ipaddr_from_sockaddr(&a, ifa->ifa_addr);
2091 D({ char buf[ADDRBUFSZ];
2092 fprintf(stderr, "noip(%d): local addr %s = %s", pid,
2094 inet_ntop(ifa->ifa_addr->sa_family, &a,
2095 buf, sizeof(buf))); })
2096 for (i = 0; i < n_local_ipaddrs; i++) {
2097 if (ifa->ifa_addr->sa_family == local_ipaddrs[i].af &&
2098 ipaddr_equal_p(local_ipaddrs[i].af, &a, &local_ipaddrs[i].addr)) {
2099 D( fprintf(stderr, " (duplicate)\n"); )
2103 D( fprintf(stderr, "\n"); )
2104 local_ipaddrs[n_local_ipaddrs].af = ifa->ifa_addr->sa_family;
2105 local_ipaddrs[n_local_ipaddrs].addr = a;
2109 freeifaddrs(ifa_head);
2112 /* Print the given message to standard error. Avoids stdio. */
2113 static void printerr(const char *p)
2114 { if (write(STDERR_FILENO, p, strlen(p))) ; }
2116 /* Create the socket directory, being careful about permissions. */
2117 static void create_sockdir(void)
2121 if (lstat(sockdir, &st)) {
2122 if (errno == ENOENT) {
2123 if (mkdir(sockdir, 0700)) {
2124 perror("noip: creating socketdir");
2127 if (!lstat(sockdir, &st))
2130 perror("noip: checking socketdir");
2134 if (!S_ISDIR(st.st_mode)) {
2135 printerr("noip: bad socketdir: not a directory\n");
2138 if (st.st_uid != uid) {
2139 printerr("noip: bad socketdir: not owner\n");
2142 if (st.st_mode & 077) {
2143 printerr("noip: bad socketdir: not private\n");
2148 /* Initialization function. */
2149 static void setup(void) __attribute__((constructor));
2150 static void setup(void)
2157 if ((p = getenv("NOIP_DEBUG")) && atoi(p))
2159 get_local_ipaddrs();
2166 /*----- That's all, folks -------------------------------------------------*/