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>
60 /*----- Data structures ---------------------------------------------------*/
62 enum { UNUSED, STALE, USED }; /* Unix socket status values */
63 enum { DENY, ALLOW }; /* ACL verdicts */
65 static int address_families[] = { AF_INET, AF_INET6, -1 };
69 /* Address representations. */
70 typedef union ipaddr {
75 /* Convenient socket address hacking. */
76 typedef union address {
78 struct sockaddr_in sin;
79 struct sockaddr_in6 sin6;
82 /* Access control list nodes */
83 typedef struct aclnode {
87 ipaddr minaddr, maxaddr;
88 unsigned short minport, maxport;
91 /* Implicit bind records */
92 typedef struct impbind {
95 ipaddr minaddr, maxaddr, bindaddr;
97 enum { EXPLICIT, SAME };
99 /* A type for an address range */
100 typedef struct addrrange {
103 struct { int af; ipaddr min, max; } range;
106 enum { EMPTY, ANY, LOCAL, RANGE };
108 /* Local address records */
109 typedef struct full_ipaddr {
113 #define MAX_LOCAL_IPADDRS 64
114 static full_ipaddr local_ipaddrs[MAX_LOCAL_IPADDRS];
115 static int n_local_ipaddrs;
117 /* General configuration */
119 static char *sockdir = 0;
120 static int debug = 0;
121 static unsigned minautoport = 16384, maxautoport = 65536;
123 /* Access control lists */
124 static aclnode *bind_real, **bind_tail = &bind_real;
125 static aclnode *connect_real, **connect_tail = &connect_real;
126 static impbind *impbinds, **impbind_tail = &impbinds;
128 /*----- Import the real versions of functions -----------------------------*/
130 /* The list of functions to immport. */
132 _(socket, int, (int, int, int)) \
133 _(socketpair, int, (int, int, int, int *)) \
134 _(connect, int, (int, const struct sockaddr *, socklen_t)) \
135 _(bind, int, (int, const struct sockaddr *, socklen_t)) \
136 _(accept, int, (int, struct sockaddr *, socklen_t *)) \
137 _(getsockname, int, (int, struct sockaddr *, socklen_t *)) \
138 _(getpeername, int, (int, struct sockaddr *, socklen_t *)) \
139 _(getsockopt, int, (int, int, int, void *, socklen_t *)) \
140 _(setsockopt, int, (int, int, int, const void *, socklen_t)) \
141 _(sendto, ssize_t, (int, const void *buf, size_t, int, \
142 const struct sockaddr *to, socklen_t tolen)) \
143 _(recvfrom, ssize_t, (int, void *buf, size_t, int, \
144 struct sockaddr *from, socklen_t *fromlen)) \
145 _(sendmsg, ssize_t, (int, const struct msghdr *, int)) \
146 _(recvmsg, ssize_t, (int, struct msghdr *, int)) \
147 _(ioctl, int, (int, unsigned long, ...))
149 /* Function pointers to set up. */
150 #define DECL(imp, ret, args) static ret (*real_##imp) args;
154 /* Import the system calls. */
155 static void import(void)
157 #define IMPORT(imp, ret, args) \
158 real_##imp = (ret (*)args)dlsym(RTLD_NEXT, #imp);
163 /*----- Utilities ---------------------------------------------------------*/
165 /* Socket address casts */
166 #define SA(sa) ((struct sockaddr *)(sa))
167 #define SIN(sa) ((struct sockaddr_in *)(sa))
168 #define SIN6(sa) ((struct sockaddr_in6 *)(sa))
169 #define SUN(sa) ((struct sockaddr_un *)(sa))
172 #define UC(ch) ((unsigned char)(ch))
174 /* Memory allocation */
175 #define NEW(x) ((x) = xmalloc(sizeof(*x)))
176 #define NEWV(x, n) ((x) = xmalloc(sizeof(*x) * (n)))
180 # define D(body) { if (debug) { body } }
181 # define Dpid pid_t pid = debug ? getpid() : -1
187 /* Preservation of error status */
188 #define PRESERVING_ERRNO(body) do { \
189 int _err = errno; { body } errno = _err; \
192 /* Allocate N bytes of memory; abort on failure. */
193 static void *xmalloc(size_t n)
197 if ((p = malloc(n)) == 0) { perror("malloc"); exit(127); }
201 /* Allocate a copy of the null-terminated string P; abort on failure. */
202 static char *xstrdup(const char *p)
204 size_t n = strlen(p) + 1;
205 char *q = xmalloc(n);
210 /*----- Address-type hacking ----------------------------------------------*/
212 /* If M is a simple mask, i.e., consists of a sequence of zero bits followed
213 * by a sequence of one bits, then return the length of the latter sequence
214 * (which may be zero); otherwise return -1.
216 static int simple_mask_length(unsigned long m)
220 while (m & 1) { n++; m >>= 1; }
224 /* Answer whether AF is an interesting address family. */
225 static int family_known_p(int af)
236 /* Return the socket address length for address family AF. */
237 static socklen_t family_socklen(int af)
240 case AF_INET: return (sizeof(struct sockaddr_in));
241 case AF_INET6: return (sizeof(struct sockaddr_in6));
246 /* Return the width of addresses of kind AF. */
247 static int address_width(int af)
250 case AF_INET: return 32;
251 case AF_INET6: return 128;
256 /* If addresses A and B share a common prefix then return its length;
257 * otherwise return -1.
259 static int common_prefix_length(int af, const ipaddr *a, const ipaddr *b)
263 unsigned long aa = ntohl(a->v4.s_addr), bb = ntohl(b->v4.s_addr);
264 unsigned long m = aa^bb;
265 if ((aa&m) == 0 && (bb&m) == m) return (32 - simple_mask_length(m));
269 const uint8_t *aa = a->v6.s6_addr, *bb = b->v6.s6_addr;
274 for (i = 0; i < 16 && aa[i] == bb[i]; i++);
278 if ((aa[i]&m) != 0 || (bb[i]&m) != m) return (-1);
279 n += 8 - simple_mask_length(m);
280 for (i++; i < 16; i++)
281 if (aa[i] || bb[i] != 0xff) return (-1);
290 /* Extract the port number (in host byte-order) from SA. */
291 static int port_from_sockaddr(const struct sockaddr *sa)
293 switch (sa->sa_family) {
294 case AF_INET: return (ntohs(SIN(sa)->sin_port));
295 case AF_INET6: return (ntohs(SIN6(sa)->sin6_port));
300 /* Store the port number PORT (in host byte-order) in SA. */
301 static void port_to_sockaddr(struct sockaddr *sa, int port)
303 switch (sa->sa_family) {
304 case AF_INET: SIN(sa)->sin_port = htons(port); break;
305 case AF_INET6: SIN6(sa)->sin6_port = htons(port); break;
310 /* Extract the address part from SA and store it in A. */
311 static void ipaddr_from_sockaddr(ipaddr *a, const struct sockaddr *sa)
313 switch (sa->sa_family) {
314 case AF_INET: a->v4 = SIN(sa)->sin_addr; break;
315 case AF_INET6: a->v6 = SIN6(sa)->sin6_addr; break;
320 /* Store the address A in SA. */
321 static void ipaddr_to_sockaddr(struct sockaddr *sa, const ipaddr *a)
323 switch (sa->sa_family) {
325 SIN(sa)->sin_addr = a->v4;
328 SIN6(sa)->sin6_addr = a->v6;
329 SIN6(sa)->sin6_scope_id = 0;
330 SIN6(sa)->sin6_flowinfo = 0;
337 /* Copy a whole socket address about. */
338 static void copy_sockaddr(struct sockaddr *sa_dst,
339 const struct sockaddr *sa_src)
340 { memcpy(sa_dst, sa_src, family_socklen(sa_src->sa_family)); }
342 /* Answer whether two addresses are equal. */
343 static int ipaddr_equal_p(int af, const ipaddr *a, const ipaddr *b)
346 case AF_INET: return (a->v4.s_addr == b->v4.s_addr);
347 case AF_INET6: return (memcmp(a->v6.s6_addr, b->v6.s6_addr, 16) == 0);
352 /* Answer whether the address part of SA is between A and B (inclusive). We
353 * assume that SA has the correct address family.
355 static int sockaddr_in_range_p(const struct sockaddr *sa,
356 const ipaddr *a, const ipaddr *b)
358 switch (sa->sa_family) {
360 unsigned long addr = ntohl(SIN(sa)->sin_addr.s_addr);
361 return (ntohl(a->v4.s_addr) <= addr &&
362 addr <= ntohl(b->v4.s_addr));
365 const uint8_t *ss = SIN6(sa)->sin6_addr.s6_addr;
366 const uint8_t *aa = a->v6.s6_addr, *bb = b->v6.s6_addr;
370 for (i = 0; h && l && i < 16; i++, ss++, aa++, bb++) {
371 if (*ss < *aa || *bb < *ss) return (0);
372 if (*aa < *ss) l = 0;
373 if (*ss < *bb) h = 0;
382 /* Fill in SA with the appropriate wildcard address. */
383 static void wildcard_address(int af, struct sockaddr *sa)
387 struct sockaddr_in *sin = SIN(sa);
388 memset(sin, 0, sizeof(*sin));
389 sin->sin_family = AF_INET;
391 sin->sin_addr.s_addr = INADDR_ANY;
394 struct sockaddr_in6 *sin6 = SIN6(sa);
395 memset(sin6, 0, sizeof(*sin6));
396 sin6->sin6_family = AF_INET6;
398 sin6->sin6_addr = in6addr_any;
399 sin6->sin6_scope_id = 0;
400 sin6->sin6_flowinfo = 0;
407 /* Mask the address A, forcing all but the top PLEN bits to zero or one
408 * according to HIGHP.
410 static void mask_address(int af, ipaddr *a, int plen, int highp)
414 unsigned long addr = ntohl(a->v4.s_addr);
415 unsigned long mask = plen ? ~0ul << (32 - plen) : 0;
417 if (highp) addr |= ~mask;
418 a->v4.s_addr = htonl(addr & 0xffffffff);
422 unsigned m = (0xff << (8 - plen%8)) & 0xff;
423 unsigned s = highp ? 0xff : 0;
425 a->v6.s6_addr[i] = (a->v6.s6_addr[i] & m) | (s & ~m);
428 for (; i < 16; i++) a->v6.s6_addr[i] = s;
435 /* Write a presentation form of SA to BUF, a buffer of length SZ. LEN is the
436 * address length; if it's zero, look it up based on the address family.
437 * Return a pointer to the string (which might, in an emergency, be a static
438 * string rather than your buffer).
440 static char *present_sockaddr(const struct sockaddr *sa, socklen_t len,
441 char *buf, size_t sz)
443 #define WANT(n_) do { if (sz < (n_)) goto nospace; } while (0)
444 #define PUTC(c_) do { *buf++ = (c_); sz--; } while (0)
446 if (!sa) return "<null-address>";
447 if (!sz) return "<no-space-in-buffer>";
448 if (!len) len = family_socklen(sa->sa_family);
450 switch (sa->sa_family) {
452 struct sockaddr_un *sun = SUN(sa);
453 char *p = sun->sun_path;
454 size_t n = len - offsetof(struct sockaddr_un, sun_path);
462 case 0: WANT(2); PUTC('\\'); PUTC('0'); break;
463 case '\a': WANT(2); PUTC('\\'); PUTC('a'); break;
464 case '\n': WANT(2); PUTC('\\'); PUTC('n'); break;
465 case '\r': WANT(2); PUTC('\\'); PUTC('r'); break;
466 case '\t': WANT(2); PUTC('\\'); PUTC('t'); break;
467 case '\v': WANT(2); PUTC('\\'); PUTC('v'); break;
468 case '\\': WANT(2); PUTC('\\'); PUTC('\\'); break;
470 if (*p > ' ' && *p <= '~')
471 { WANT(1); PUTC(*p); }
473 WANT(4); PUTC('\\'); PUTC('x');
474 PUTC((*p >> 4)&0xf); PUTC((*p >> 0)&0xf);
481 if (*p != '/') { WANT(2); PUTC('.'); PUTC('/'); }
482 while (n && *p) { WANT(1); PUTC(*p); p++; n--; }
486 case AF_INET: case AF_INET6: {
487 char addrbuf[NI_MAXHOST], portbuf[NI_MAXSERV];
488 int err = getnameinfo(sa, len,
489 addrbuf, sizeof(addrbuf),
490 portbuf, sizeof(portbuf),
491 NI_NUMERICHOST | NI_NUMERICSERV);
493 snprintf(buf, sz, strchr(addrbuf, ':') ? "[%s]:%s" : "%s:%s",
497 snprintf(buf, sz, "<unknown-address-family %d>", sa->sa_family);
507 /* Guess the family of a textual socket address. */
508 static int guess_address_family(const char *p)
509 { return (strchr(p, ':') ? AF_INET6 : AF_INET); }
511 /* Parse a socket address P and write the result to SA. */
512 static int parse_sockaddr(struct sockaddr *sa, const char *p)
516 struct addrinfo *ai, ai_hint = { 0 };
518 if (strlen(p) >= sizeof(buf) - 1) return (-1);
519 strcpy(buf, p); p = buf;
521 if ((q = strchr(p, ':')) == 0) return (-1);
525 if ((q = strchr(p, ']')) == 0) return (-1);
527 if (*q != ':') return (-1);
531 ai_hint.ai_family = AF_UNSPEC;
532 ai_hint.ai_socktype = SOCK_DGRAM;
533 ai_hint.ai_flags = AI_NUMERICHOST | AI_NUMERICSERV;
534 if (getaddrinfo(p, q, &ai_hint, &ai)) return (-1);
535 memcpy(sa, ai->ai_addr, ai->ai_addrlen);
540 /*----- Access control lists ----------------------------------------------*/
544 static void dump_addrrange(int af, const ipaddr *min, const ipaddr *max)
550 plen = common_prefix_length(af, min, max);
551 p = inet_ntop(af, min, buf, sizeof(buf));
552 fprintf(stderr, strchr(p, ':') ? "[%s]" : "%s", p);
554 p = inet_ntop(af, &max, buf, sizeof(buf));
555 fprintf(stderr, strchr(p, ':') ? "-[%s]" : "-%s", p);
556 } else if (plen < address_width(af))
557 fprintf(stderr, "/%d", plen);
560 /* Write to standard error a description of the ACL node A. */
561 static void dump_aclnode(const aclnode *a)
563 fprintf(stderr, "noip(%d): %c ", getpid(), a->act ? '+' : '-');
564 dump_addrrange(a->af, &a->minaddr, &a->maxaddr);
565 if (a->minport != 0 || a->maxport != 0xffff) {
566 fprintf(stderr, ":%u", (unsigned)a->minport);
567 if (a->minport != a->maxport)
568 fprintf(stderr, "-%u", (unsigned)a->maxport);
573 static void dump_acl(const aclnode *a)
577 for (; a; a = a->next) {
581 fprintf(stderr, "noip(%d): [default policy: %s]\n", getpid(),
582 act == ALLOW ? "DENY" : "ALLOW");
587 /* Returns nonzero if the ACL A allows the socket address SA. */
588 static int acl_allows_p(const aclnode *a, const struct sockaddr *sa)
590 unsigned short port = port_from_sockaddr(sa);
594 D({ char buf[ADDRBUFSZ];
595 fprintf(stderr, "noip(%d): check %s\n", pid,
596 present_sockaddr(sa, 0, buf, sizeof(buf))); })
597 for (; a; a = a->next) {
598 D( dump_aclnode(a); )
599 if (a->af == sa->sa_family &&
600 sockaddr_in_range_p(sa, &a->minaddr, &a->maxaddr) &&
601 a->minport <= port && port <= a->maxport) {
602 D( fprintf(stderr, "noip(%d): aha! %s\n", pid,
603 a->act ? "ALLOW" : "DENY"); )
608 D( fprintf(stderr, "noip(%d): nothing found: %s\n", pid,
609 act ? "DENY" : "ALLOW"); )
613 /*----- Socket address conversion -----------------------------------------*/
615 /* Return a uniformly distributed integer between MIN and MAX inclusive. */
616 static unsigned randrange(unsigned min, unsigned max)
620 /* It's so nice not to have to care about the quality of the generator
624 for (mask = 1; mask < max; mask = (mask << 1) | 1)
626 do i = rand() & mask; while (i > max);
630 /* Return the status of Unix-domain socket address SUN. Returns: UNUSED if
631 * the socket doesn't exist; USED if the path refers to an active socket, or
632 * isn't really a socket at all, or we can't tell without a careful search
633 * and QUICKP is set; or STALE if the file refers to a socket which isn't
634 * being used any more.
636 static int unix_socket_status(struct sockaddr_un *sun, int quickp)
644 /* If we can't find the socket node, then it's definitely not in use. If
645 * we get some other error, then this socket is weird.
647 if (stat(sun->sun_path, &st))
648 return (errno == ENOENT ? UNUSED : USED);
650 /* If it's not a socket, then something weird is going on. If we're just
651 * probing quickly to find a spare port, then existence is sufficient to
654 if (!S_ISSOCK(st.st_mode) || quickp)
657 /* The socket's definitely there, but is anyone actually still holding it
658 * open? The only way I know to discover this is to trundle through
659 * `/proc/net/unix'. If there's no entry, then the socket must be stale.
662 if ((fp = fopen("/proc/net/unix", "r")) == 0)
664 if (!fgets(buf, sizeof(buf), fp)) goto done; /* skip header */
665 len = strlen(sun->sun_path);
666 while (fgets(buf, sizeof(buf), fp)) {
668 if (n >= len + 2 && buf[n - len - 2] == ' ' && buf[n - 1] == '\n' &&
669 memcmp(buf + n - len - 1, sun->sun_path, len) == 0)
682 /* Encode SA as a Unix-domain address SUN, and return whether it's currently
685 static int encode_single_inet_addr(const struct sockaddr *sa,
686 struct sockaddr_un *sun,
692 snprintf(sun->sun_path, sizeof(sun->sun_path), "%s/%s", sockdir,
693 present_sockaddr(sa, 0, buf, sizeof(buf)));
694 if ((rc = unix_socket_status(sun, quickp)) == USED) return (USED);
695 else if (rc == STALE) unlink(sun->sun_path);
699 /* Convert the IP address SA to a Unix-domain address SUN. Fail if the
700 * address seems already taken. If DESPARATEP then try cleaning up stale old
703 static int encode_unused_inet_addr(struct sockaddr *sa,
704 struct sockaddr_un *sun,
708 struct sockaddr_un wsun;
709 int port = port_from_sockaddr(sa);
711 /* First, look for an exact match. Only look quickly unless we're
712 * desperate. If the socket is in use, we fail here. (This could get
713 * racy. Let's not worry about that for now.)
715 if (encode_single_inet_addr(sa, sun, !desperatep) == USED)
718 /* Next, check the corresponding wildcard address, so as to avoid
719 * inadvertant collisions with listeners. Do this in the same way.
721 wildcard_address(sa->sa_family, &waddr.sa);
722 port_to_sockaddr(&waddr.sa, port);
723 if (encode_single_inet_addr(&waddr.sa, &wsun, !desperatep) == USED)
730 /* Encode the Internet address SA as a Unix-domain address SUN. If the flag
731 * `ENCF_FRESH' is set, and SA's port number is zero, then we pick an
732 * arbitrary local port. Otherwise we pick the port given. There's an
733 * unpleasant hack to find servers bound to local wildcard addresses.
734 * Returns zero on success; -1 on failure.
736 #define ENCF_FRESH 1u
737 static int encode_inet_addr(struct sockaddr_un *sun,
738 const struct sockaddr *sa,
744 int port = port_from_sockaddr(sa);
747 D( fprintf(stderr, "noip(%d): encode %s (%s)", getpid(),
748 present_sockaddr(sa, 0, buf, sizeof(buf)),
749 (f&ENCF_FRESH) ? "FRESH" : "EXISTING"); )
751 /* Start making the Unix-domain address. */
752 sun->sun_family = AF_UNIX;
754 if (port || !(f&ENCF_FRESH)) {
756 /* Try the address as given. If it's in use, or we don't necessarily
757 * want an existing socket, then we're done.
759 if (encode_single_inet_addr(sa, sun, 0) == USED || (f&ENCF_FRESH))
762 /* We're looking for a socket which already exists. Try the
763 * corresponding wildcard address.
765 wildcard_address(sa->sa_family, &addr.sa);
766 port_to_sockaddr(&addr.sa, port);
767 encode_single_inet_addr(&addr.sa, sun, 0);
770 /* We want a fresh new socket. */
772 /* Make a copy of the given address, because we're going to mangle it. */
773 copy_sockaddr(&addr.sa, sa);
775 /* Try a few random-ish port numbers to see if any of them is spare. */
776 for (i = 0; i < 10; i++) {
777 port_to_sockaddr(&addr.sa, randrange(minautoport, maxautoport));
778 if (!encode_unused_inet_addr(&addr.sa, sun, 0)) goto found;
781 /* Things must be getting tight. Work through all of the autoport range
782 * to see if we can find a spare one. The first time, just do it the
783 * quick way; if that doesn't work, then check harder for stale sockets.
785 for (desperatep = 0; desperatep < 2; desperatep++) {
786 for (i = minautoport; i <= maxautoport; i++) {
787 port_to_sockaddr(&addr.sa, i);
788 if (!encode_unused_inet_addr(&addr.sa, sun, 0)) goto found;
792 /* We failed to find any free ports. */
794 D( fprintf(stderr, " -- can't resolve\n"); )
800 D( fprintf(stderr, " -> `%s'\n", sun->sun_path); )
804 /* Decode the Unix address SUN to an Internet address SIN. If AF_HINT is
805 * nonzero, an empty address (indicative of an unbound Unix-domain socket) is
806 * translated to a wildcard Internet address of the appropriate family.
807 * Returns zero on success; -1 on failure (e.g., it wasn't one of our
810 static int decode_inet_addr(struct sockaddr *sa, int af_hint,
811 const struct sockaddr_un *sun,
815 size_t n = strlen(sockdir), nn;
818 if (!sa) sa = &addr.sa;
819 if (sun->sun_family != AF_UNIX) return (-1);
820 if (len > sizeof(*sun)) return (-1);
821 ((char *)sun)[len] = 0;
822 nn = strlen(sun->sun_path);
823 D( fprintf(stderr, "noip(%d): decode `%s'", getpid(), sun->sun_path); )
824 if (af_hint && !sun->sun_path[0]) {
825 wildcard_address(af_hint, sa);
826 D( fprintf(stderr, " -- unbound socket\n"); )
829 if (nn < n + 1 || nn - n >= sizeof(buf) || sun->sun_path[n] != '/' ||
830 memcmp(sun->sun_path, sockdir, n) != 0) {
831 D( fprintf(stderr, " -- not one of ours\n"); )
834 if (parse_sockaddr(sa, sun->sun_path + n + 1)) return (-1);
835 D( fprintf(stderr, " -> %s\n",
836 present_sockaddr(sa, 0, buf, sizeof(buf))); )
840 /* SK is (or at least might be) a Unix-domain socket we created when an
841 * Internet socket was asked for. We've decided it should be an Internet
842 * socket after all, with family AF_HINT, so convert it. If TMP is not null,
843 * then don't replace the existing descriptor: store the new socket in *TMP
846 static int fixup_real_ip_socket(int sk, int af_hint, int *tmp)
851 struct sockaddr_un sun;
864 _(LINGER, struct linger) \
867 _(RCVTIMEO, struct timeval) \
868 _(SNDTIMEO, struct timeval)
871 if (real_getsockname(sk, SA(&sun), &len))
873 if (decode_inet_addr(&addr.sa, af_hint, &sun, len))
874 return (0); /* Not one of ours */
876 if (real_getsockopt(sk, SOL_SOCKET, SO_TYPE, &type, &len) < 0 ||
877 (nsk = real_socket(addr.sa.sa_family, type, 0)) < 0)
879 #define FIX(opt, ty) do { \
882 if (real_getsockopt(sk, SOL_SOCKET, SO_##opt, &ov_, &len) < 0 || \
883 real_setsockopt(nsk, SOL_SOCKET, SO_##opt, &ov_, len)) { \
893 if ((f = fcntl(sk, F_GETFL)) < 0 ||
894 (fd = fcntl(sk, F_GETFD)) < 0 ||
895 fcntl(nsk, F_SETFL, f) < 0 ||
900 unlink(sun.sun_path);
902 if (fcntl(sk, F_SETFD, fd) < 0) {
903 perror("noip: fixup_real_ip_socket F_SETFD");
910 /* We found the real address SA, with length LEN; if it's a Unix-domain
911 * address corresponding to a fake socket, convert it to cover up the
912 * deception. Whatever happens, put the result at FAKE and store its length
915 static void return_fake_name(struct sockaddr *sa, socklen_t len,
916 struct sockaddr *fake, socklen_t *fakelen)
921 if (sa->sa_family == AF_UNIX &&
922 !decode_inet_addr(&addr.sa, 0, SUN(sa), len)) {
924 len = family_socklen(addr.sa.sa_family);
927 if (len > *fakelen) len = *fakelen;
928 if (len > 0) memcpy(fake, sa, len);
932 /*----- Implicit binding --------------------------------------------------*/
936 static void dump_impbind(const impbind *i)
940 fprintf(stderr, "noip(%d): ", getpid());
941 dump_addrrange(i->af, &i->minaddr, &i->maxaddr);
943 case SAME: fprintf(stderr, " <self>"); break;
945 fprintf(stderr, " %s", inet_ntop(i->af, &i->bindaddr,
953 static void dump_impbind_list(void)
957 for (i = impbinds; i; i = i->next) dump_impbind(i);
962 /* The socket SK is about to be used to communicate with the remote address
963 * SA. Assign it a local address so that getpeername(2) does something
966 static int do_implicit_bind(int sk, const struct sockaddr *sa)
969 struct sockaddr_un sun;
973 D( fprintf(stderr, "noip(%d): checking impbind list...\n", pid); )
974 for (i = impbinds; i; i = i->next) {
975 D( dump_impbind(i); )
976 if (sa->sa_family == i->af &&
977 sockaddr_in_range_p(sa, &i->minaddr, &i->maxaddr)) {
978 D( fprintf(stderr, "noip(%d): match!\n", pid); )
979 addr.sa.sa_family = sa->sa_family;
980 ipaddr_to_sockaddr(&addr.sa, &i->bindaddr);
984 D( fprintf(stderr, "noip(%d): no match; using wildcard\n", pid); )
985 wildcard_address(sa->sa_family, &addr.sa);
987 encode_inet_addr(&sun, &addr.sa, ENCF_FRESH);
988 D( fprintf(stderr, "noip(%d): implicitly binding to %s\n",
989 pid, sun.sun_path); )
990 if (real_bind(sk, SA(&sun), SUN_LEN(&sun))) return (-1);
994 /* The socket SK is about to communicate with the remote address *SA. Ensure
995 * that the socket has a local address, and adjust *SA to refer to the real
998 * If we need to translate the remote address, then the Unix-domain endpoint
999 * address will end in *SUN, and *SA will be adjusted to point to it.
1001 static int fixup_client_socket(int sk, const struct sockaddr **sa_r,
1002 socklen_t *len_r, struct sockaddr_un *sun)
1004 socklen_t mylen = sizeof(*sun);
1005 const struct sockaddr *sa = *sa_r;
1007 /* If this isn't a Unix-domain socket then there's nothing to do. */
1008 if (real_getsockname(sk, SA(sun), &mylen) < 0) return (-1);
1009 if (sun->sun_family != AF_UNIX) return (0);
1010 if (mylen < sizeof(*sun)) ((char *)sun)[mylen] = 0;
1012 /* If we're allowed to talk to a real remote endpoint, then fix things up
1013 * as necessary and proceed.
1015 if (acl_allows_p(connect_real, sa)) {
1016 if (fixup_real_ip_socket(sk, (*sa_r)->sa_family, 0)) return (-1);
1020 /* Speaking of which, if we don't have a local address, then we should
1023 if (!sun->sun_path[0] && do_implicit_bind(sk, sa)) return (-1);
1025 /* And then come up with a remote address. */
1026 encode_inet_addr(sun, sa, 0);
1028 *len_r = SUN_LEN(sun);
1032 /*----- Configuration -----------------------------------------------------*/
1034 /* Return the process owner's home directory. */
1035 static char *home(void)
1040 if (getuid() == uid &&
1041 (p = getenv("HOME")) != 0)
1043 else if ((pw = getpwuid(uid)) != 0)
1044 return (pw->pw_dir);
1049 /* Return a good temporary directory to use. */
1050 static char *tmpdir(void)
1054 if ((p = getenv("TMPDIR")) != 0) return (p);
1055 else if ((p = getenv("TMP")) != 0) return (p);
1056 else return ("/tmp");
1059 /* Return the user's name, or at least something distinctive. */
1060 static char *user(void)
1062 static char buf[16];
1066 if ((p = getenv("USER")) != 0) return (p);
1067 else if ((p = getenv("LOGNAME")) != 0) return (p);
1068 else if ((pw = getpwuid(uid)) != 0) return (pw->pw_name);
1070 snprintf(buf, sizeof(buf), "uid-%lu", (unsigned long)uid);
1075 /* Skip P over space characters. */
1076 #define SKIPSPC do { while (*p && isspace(UC(*p))) p++; } while (0)
1078 /* Set Q to point to the next word following P, null-terminate it, and step P
1080 #define NEXTWORD(q) do { \
1083 while (*p && !isspace(UC(*p))) p++; \
1087 /* Set Q to point to the next dotted-quad address, store the ending delimiter
1088 * in DEL, null-terminate it, and step P past it. */
1089 static void parse_nextaddr(char **pp, char **qq, int *del)
1097 p += strcspn(p, "]");
1102 while (*p && (*p == '.' || isdigit(UC(*p)))) p++;
1109 /* Set Q to point to the next decimal number, store the ending delimiter in
1110 * DEL, null-terminate it, and step P past it. */
1111 #define NEXTNUMBER(q, del) do { \
1114 while (*p && isdigit(UC(*p))) p++; \
1119 /* Push the character DEL back so we scan it again, unless it's zero
1121 #define RESCAN(del) do { if (del) *--p = del; } while (0)
1123 /* Evaluate true if P is pointing to the word KW (and not some longer string
1124 * of which KW is a prefix). */
1126 #define KWMATCHP(kw) (strncmp(p, kw, sizeof(kw) - 1) == 0 && \
1127 !isalnum(UC(p[sizeof(kw) - 1])) && \
1128 (p += sizeof(kw) - 1))
1130 /* Parse a port list, starting at *PP. Port lists have the form
1131 * [:LOW[-HIGH]]: if omitted, all ports are included; if HIGH is omitted,
1132 * it's as if HIGH = LOW. Store LOW in *MIN, HIGH in *MAX and set *PP to the
1133 * rest of the string.
1135 static void parse_ports(char **pp, unsigned short *min, unsigned short *max)
1142 { *min = 0; *max = 0xffff; }
1145 NEXTNUMBER(q, del); *min = strtoul(q, 0, 0); RESCAN(del);
1148 { p++; NEXTNUMBER(q, del); *max = strtoul(q, 0, 0); RESCAN(del); }
1155 /* Parse an address range designator starting at PP and store a
1156 * representation of it in R. An address range designator has the form:
1158 * any | local | ADDR | ADDR - ADDR | ADDR/ADDR | ADDR/INT
1160 static int parse_addrrange(char **pp, addrrange *r)
1168 if (KWMATCHP("any")) r->type = ANY;
1169 else if (KWMATCHP("local")) r->type = LOCAL;
1171 parse_nextaddr(&p, &q, &del);
1172 af = guess_address_family(q);
1173 if (inet_pton(af, q, &r->u.range.min) <= 0) goto bad;
1178 parse_nextaddr(&p, &q, &del);
1179 if (inet_pton(af, q, &r->u.range.max) <= 0) goto bad;
1181 } else if (*p == '/') {
1184 n = strtoul(q, 0, 0);
1185 r->u.range.max = r->u.range.min;
1186 mask_address(af, &r->u.range.min, n, 0);
1187 mask_address(af, &r->u.range.max, n, 1);
1190 r->u.range.max = r->u.range.min;
1201 /* Call FUNC on each individual address range in R. */
1202 static void foreach_addrrange(const addrrange *r,
1203 void (*func)(int af,
1209 ipaddr minaddr, maxaddr;
1216 for (i = 0; address_families[i] >= 0; i++) {
1217 af = address_families[i];
1218 memset(&minaddr, 0, sizeof(minaddr));
1219 maxaddr = minaddr; mask_address(af, &maxaddr, 0, 1);
1220 func(af, &minaddr, &maxaddr, p);
1224 for (i = 0; address_families[i] >= 0; i++) {
1225 af = address_families[i];
1226 memset(&minaddr, 0, sizeof(minaddr));
1227 maxaddr = minaddr; mask_address(af, &maxaddr, 0, 1);
1228 func(af, &minaddr, &minaddr, p);
1229 func(af, &maxaddr, &maxaddr, p);
1231 for (i = 0; i < n_local_ipaddrs; i++) {
1232 func(local_ipaddrs[i].af,
1233 &local_ipaddrs[i].addr, &local_ipaddrs[i].addr,
1238 func(r->u.range.af, &r->u.range.min, &r->u.range.max, p);
1245 struct add_aclnode_ctx {
1247 unsigned short minport, maxport;
1251 static void add_aclnode(int af, const ipaddr *min, const ipaddr *max,
1254 struct add_aclnode_ctx *ctx = p;
1260 a->minaddr = *min; a->maxaddr = *max;
1261 a->minport = ctx->minport; a->maxport = ctx->maxport;
1262 **ctx->tail = a; *ctx->tail = &a->next;
1265 /* Parse an ACL line. *PP points to the end of the line; *TAIL points to
1266 * the list tail (i.e., the final link in the list). An ACL entry has the
1267 * form +|- ADDR-RANGE PORTS
1268 * where PORTS is parsed by parse_ports above; an ACL line consists of a
1269 * comma-separated sequence of entries..
1271 static void parse_acl_line(char **pp, aclnode ***tail)
1273 struct add_aclnode_ctx ctx;
1280 if (*p == '+') ctx.act = ALLOW;
1281 else if (*p == '-') ctx.act = DENY;
1285 if (parse_addrrange(&p, &r)) goto bad;
1286 parse_ports(&p, &ctx.minport, &ctx.maxport);
1287 foreach_addrrange(&r, add_aclnode, &ctx);
1289 if (*p != ',') break;
1297 D( fprintf(stderr, "noip(%d): bad acl spec (ignored)\n", getpid()); )
1301 /* Parse an ACL from an environment variable VAR, attaching it to the list
1304 static void parse_acl_env(const char *var, aclnode ***tail)
1308 if ((p = getenv(var)) != 0) {
1310 parse_acl_line(&q, tail);
1315 struct add_impbind_ctx {
1320 static void add_impbind(int af, const ipaddr *min, const ipaddr *max,
1323 struct add_impbind_ctx *ctx = p;
1326 if (ctx->af && af != ctx->af) return;
1330 i->minaddr = *min; i->maxaddr = *max;
1332 case EXPLICIT: i->bindaddr = ctx->addr;
1336 *impbind_tail = i; impbind_tail = &i->next;
1339 /* Parse an implicit-bind line. An implicit-bind entry has the form
1340 * ADDR-RANGE {ADDR | same}
1342 static void parse_impbind_line(char **pp)
1344 struct add_impbind_ctx ctx;
1350 if (parse_addrrange(&p, &r)) goto bad;
1352 if (KWMATCHP("same")) {
1357 parse_nextaddr(&p, &q, &del);
1358 ctx.af = guess_address_family(q);
1359 if (inet_pton(ctx.af, q, &ctx.addr) < 0) goto bad;
1362 foreach_addrrange(&r, add_impbind, &ctx);
1364 if (*p != ',') break;
1372 D( fprintf(stderr, "noip(%d): bad implicit-bind spec (ignored)\n",
1377 /* Parse implicit-bind instructions from an environment variable VAR,
1378 * attaching it to the list.
1380 static void parse_impbind_env(const char *var)
1384 if ((p = getenv(var)) != 0) {
1386 parse_impbind_line(&q);
1391 /* Parse the autoports configuration directive. Syntax is MIN - MAX. */
1392 static void parse_autoports(char **pp)
1399 NEXTNUMBER(q, del); x = strtoul(q, 0, 0); RESCAN(del);
1401 if (*p != '-') goto bad;
1403 NEXTNUMBER(q, del); y = strtoul(q, 0, 0); RESCAN(del);
1404 minautoport = x; maxautoport = y;
1405 SKIPSPC; if (*p) goto bad;
1410 D( fprintf(stderr, "noip(%d): bad port range (ignored)\n", getpid()); )
1414 /* Read the configuration from the config file and environment. */
1415 static void readconfig(void)
1423 parse_acl_env("NOIP_REALBIND_BEFORE", &bind_tail);
1424 parse_acl_env("NOIP_REALCONNECT_BEFORE", &connect_tail);
1425 parse_impbind_env("NOIP_IMPBIND_BEFORE");
1426 if ((p = getenv("NOIP_AUTOPORTS")) != 0) {
1428 parse_autoports(&q);
1431 if ((p = getenv("NOIP_CONFIG")) == 0)
1432 snprintf(p = buf, sizeof(buf), "%s/.noip", home());
1433 D( fprintf(stderr, "noip(%d): config file: %s\n", pid, p); )
1435 if ((fp = fopen(p, "r")) == 0) {
1436 D( fprintf(stderr, "noip(%d): couldn't read config: %s\n",
1437 pid, strerror(errno)); )
1440 while (fgets(buf, sizeof(buf), fp)) {
1445 if (!*p || *p == '#') continue;
1446 while (n && isspace(UC(buf[n - 1]))) n--;
1451 if (strcmp(cmd, "socketdir") == 0)
1452 sockdir = xstrdup(p);
1453 else if (strcmp(cmd, "realbind") == 0)
1454 parse_acl_line(&p, &bind_tail);
1455 else if (strcmp(cmd, "realconnect") == 0)
1456 parse_acl_line(&p, &connect_tail);
1457 else if (strcmp(cmd, "impbind") == 0)
1458 parse_impbind_line(&p);
1459 else if (strcmp(cmd, "autoports") == 0)
1460 parse_autoports(&p);
1461 else if (strcmp(cmd, "debug") == 0)
1462 debug = *p ? atoi(p) : 1;
1464 D( fprintf(stderr, "noip(%d): bad config command %s\n", pid, cmd); )
1469 parse_acl_env("NOIP_REALBIND", &bind_tail);
1470 parse_acl_env("NOIP_REALCONNECT", &connect_tail);
1471 parse_impbind_env("NOIP_IMPBIND");
1472 parse_acl_env("NOIP_REALBIND_AFTER", &bind_tail);
1473 parse_acl_env("NOIP_REALCONNECT_AFTER", &connect_tail);
1474 parse_impbind_env("NOIP_IMPBIND_AFTER");
1478 if (!sockdir) sockdir = getenv("NOIP_SOCKETDIR");
1480 snprintf(buf, sizeof(buf), "%s/noip-%s", tmpdir(), user());
1481 sockdir = xstrdup(buf);
1483 D( fprintf(stderr, "noip(%d): socketdir: %s\n", pid, sockdir);
1484 fprintf(stderr, "noip(%d): autoports: %u-%u\n",
1485 pid, minautoport, maxautoport);
1486 fprintf(stderr, "noip(%d): realbind acl:\n", pid);
1487 dump_acl(bind_real);
1488 fprintf(stderr, "noip(%d): realconnect acl:\n", pid);
1489 dump_acl(connect_real);
1490 fprintf(stderr, "noip(%d): impbind list:\n", pid);
1491 dump_impbind_list(); )
1494 /*----- Overridden system calls -------------------------------------------*/
1496 static void dump_syserr(long rc)
1497 { fprintf(stderr, " => %ld (E%d)\n", rc, errno); }
1499 static void dump_sysresult(long rc)
1501 if (rc < 0) dump_syserr(rc);
1502 else fprintf(stderr, " => %ld\n", rc);
1505 static void dump_addrresult(long rc, const struct sockaddr *sa,
1508 char addrbuf[ADDRBUFSZ];
1510 if (rc < 0) dump_syserr(rc);
1512 fprintf(stderr, " => %ld [%s]\n", rc,
1513 present_sockaddr(sa, len, addrbuf, sizeof(addrbuf)));
1517 int socket(int pf, int ty, int proto)
1521 D( fprintf(stderr, "noip(%d): SOCKET pf=%d, type=%d, proto=%d",
1522 getpid(), pf, ty, proto); )
1526 if (!family_known_p(pf)) {
1527 D( fprintf(stderr, " -> unknown; refuse\n"); )
1528 errno = EAFNOSUPPORT;
1531 D( fprintf(stderr, " -> inet; substitute"); )
1539 D( fprintf(stderr, " -> safe; permit"); )
1542 sk = real_socket(pf, ty, proto);
1543 D( dump_sysresult(sk); )
1547 int socketpair(int pf, int ty, int proto, int *sk)
1551 D( fprintf(stderr, "noip(%d): SOCKETPAIR pf=%d, type=%d, proto=%d",
1552 getpid(), pf, ty, proto); )
1553 if (!family_known_p(pf))
1554 D( fprintf(stderr, " -> unknown; permit"); )
1556 D( fprintf(stderr, " -> inet; substitute"); )
1560 rc = real_socketpair(pf, ty, proto, sk);
1561 D( if (rc < 0) dump_syserr(rc);
1562 else fprintf(stderr, " => %d (%d, %d)\n", rc, sk[0], sk[1]); )
1566 int bind(int sk, const struct sockaddr *sa, socklen_t len)
1568 struct sockaddr_un sun;
1572 D({ char buf[ADDRBUFSZ];
1573 fprintf(stderr, "noip(%d): BIND sk=%d, sa[%d]=%s", pid,
1574 sk, len, present_sockaddr(sa, len, buf, sizeof(buf))); })
1576 if (!family_known_p(sa->sa_family))
1577 D( fprintf(stderr, " -> unknown af; pass through"); )
1579 D( fprintf(stderr, " -> checking...\n"); )
1581 if (acl_allows_p(bind_real, sa)) {
1582 if (fixup_real_ip_socket(sk, sa->sa_family, 0))
1585 encode_inet_addr(&sun, sa, ENCF_FRESH);
1587 len = SUN_LEN(&sun);
1590 D( fprintf(stderr, "noip(%d): BIND ...", pid); )
1592 rc = real_bind(sk, sa, len);
1593 D( dump_sysresult(rc); )
1597 int connect(int sk, const struct sockaddr *sa, socklen_t len)
1599 struct sockaddr_un sun;
1603 D({ char buf[ADDRBUFSZ];
1604 fprintf(stderr, "noip(%d): CONNECT sk=%d, sa[%d]=%s", pid,
1605 sk, len, present_sockaddr(sa, len, buf, sizeof(buf))); })
1607 if (!family_known_p(sa->sa_family)) {
1608 D( fprintf(stderr, " -> unknown af; pass through"); )
1609 rc = real_connect(sk, sa, len);
1611 D( fprintf(stderr, " -> checking...\n"); )
1613 fixup_client_socket(sk, &sa, &len, &sun);
1615 D( fprintf(stderr, "noip(%d): CONNECT ...", pid); )
1616 rc = real_connect(sk, sa, len);
1619 case ENOENT: errno = ECONNREFUSED; break;
1623 D( dump_sysresult(rc); )
1627 ssize_t sendto(int sk, const void *buf, size_t len, int flags,
1628 const struct sockaddr *to, socklen_t tolen)
1630 struct sockaddr_un sun;
1634 D({ char addrbuf[ADDRBUFSZ];
1635 fprintf(stderr, "noip(%d): SENDTO sk=%d, len=%lu, flags=%d, to[%d]=%s",
1636 pid, sk, (unsigned long)len, flags, tolen,
1637 present_sockaddr(to, tolen, addrbuf, sizeof(addrbuf))); })
1640 D( fprintf(stderr, " -> null address; leaving"); )
1641 else if (!family_known_p(to->sa_family))
1642 D( fprintf(stderr, " -> unknown af; pass through"); )
1644 D( fprintf(stderr, " -> checking...\n"); )
1646 fixup_client_socket(sk, &to, &tolen, &sun);
1648 D( fprintf(stderr, "noip(%d): SENDTO ...", pid); )
1650 n = real_sendto(sk, buf, len, flags, to, tolen);
1651 D( dump_sysresult(n); )
1655 ssize_t recvfrom(int sk, void *buf, size_t len, int flags,
1656 struct sockaddr *from, socklen_t *fromlen)
1659 socklen_t mylen = sizeof(sabuf);
1663 D( fprintf(stderr, "noip(%d): RECVFROM sk=%d, len=%lu, flags=%d",
1664 pid, sk, (unsigned long)len, flags); )
1667 D( fprintf(stderr, " -> null addr; pass through"); )
1668 n = real_recvfrom(sk, buf, len, flags, 0, 0);
1671 n = real_recvfrom(sk, buf, len, flags, SA(sabuf), &mylen);
1673 D( fprintf(stderr, " -> converting...\n"); )
1674 return_fake_name(SA(sabuf), mylen, from, fromlen);
1675 D( fprintf(stderr, "noip(%d): ... RECVFROM", pid); )
1679 D( dump_addrresult(n, from, fromlen ? *fromlen : 0); )
1683 ssize_t sendmsg(int sk, const struct msghdr *msg, int flags)
1685 struct sockaddr_un sun;
1686 const struct sockaddr *sa = SA(msg->msg_name);
1687 struct msghdr mymsg;
1691 D({ char addrbuf[ADDRBUFSZ];
1692 fprintf(stderr, "noip(%d): SENDMSG sk=%d, "
1693 "msg_flags=%d, msg_name[%d]=%s, ...",
1694 pid, sk, msg->msg_flags, msg->msg_namelen,
1695 present_sockaddr(sa, msg->msg_namelen,
1696 addrbuf, sizeof(addrbuf))); })
1699 D( fprintf(stderr, " -> null address; leaving"); )
1700 else if (!family_known_p(sa->sa_family))
1701 D( fprintf(stderr, " -> unknown af; pass through"); )
1703 D( fprintf(stderr, " -> checking...\n"); )
1706 fixup_client_socket(sk, &sa, &mymsg.msg_namelen, &sun);
1707 mymsg.msg_name = SA(sa);
1710 D( fprintf(stderr, "noip(%d): SENDMSG ...", pid); )
1712 n = real_sendmsg(sk, msg, flags);
1713 D( dump_sysresult(n); )
1717 ssize_t recvmsg(int sk, struct msghdr *msg, int flags)
1720 struct sockaddr *sa = SA(msg->msg_name);
1721 socklen_t len = msg->msg_namelen;
1725 D( fprintf(stderr, "noip(%d): RECVMSG sk=%d msg_flags=%d, ...",
1726 pid, sk, msg->msg_flags); )
1728 if (!msg->msg_name) {
1729 D( fprintf(stderr, " -> null addr; pass through"); )
1730 return (real_recvmsg(sk, msg, flags));
1733 msg->msg_name = sabuf;
1734 msg->msg_namelen = sizeof(sabuf);
1735 n = real_recvmsg(sk, msg, flags);
1737 D( fprintf(stderr, " -> converting...\n"); )
1738 return_fake_name(SA(sabuf), msg->msg_namelen, sa, &len);
1739 D( fprintf(stderr, "noip(%d): ... RECVMSG", pid); )
1742 msg->msg_namelen = len;
1745 D( dump_addrresult(n, sa, len); )
1749 int accept(int sk, struct sockaddr *sa, socklen_t *len)
1752 socklen_t mylen = sizeof(sabuf);
1756 D( fprintf(stderr, "noip(%d): ACCEPT sk=%d", pid, sk); )
1758 nsk = real_accept(sk, SA(sabuf), &mylen);
1759 if (nsk < 0) /* failed */;
1760 else if (!sa) D( fprintf(stderr, " -> address not wanted"); )
1762 D( fprintf(stderr, " -> converting...\n"); )
1763 return_fake_name(SA(sabuf), mylen, sa, len);
1764 D( fprintf(stderr, "noip(%d): ... ACCEPT", pid); )
1766 D( dump_addrresult(nsk, sa, len ? *len : 0); )
1770 int getsockname(int sk, struct sockaddr *sa, socklen_t *len)
1773 socklen_t mylen = sizeof(sabuf);
1777 D( fprintf(stderr, "noip(%d): GETSOCKNAME sk=%d", pid, sk); )
1778 rc = real_getsockname(sk, SA(sabuf), &mylen);
1780 D( fprintf(stderr, " -> converting...\n"); )
1781 return_fake_name(SA(sabuf), mylen, sa, len);
1782 D( fprintf(stderr, "noip(%d): ... GETSOCKNAME", pid); )
1784 D( dump_addrresult(rc, sa, *len); )
1788 int getpeername(int sk, struct sockaddr *sa, socklen_t *len)
1791 socklen_t mylen = sizeof(sabuf);
1795 D( fprintf(stderr, "noip(%d): GETPEERNAME sk=%d", pid, sk); )
1796 rc = real_getpeername(sk, SA(sabuf), &mylen);
1798 D( fprintf(stderr, " -> converting...\n"); )
1799 return_fake_name(SA(sabuf), mylen, sa, len);
1800 D( fprintf(stderr, "noip(%d): ... GETPEERNAME", pid); )
1802 D( dump_addrresult(rc, sa, *len); )
1806 int getsockopt(int sk, int lev, int opt, void *p, socklen_t *len)
1817 return (real_getsockopt(sk, lev, opt, p, len));
1820 int setsockopt(int sk, int lev, int opt, const void *p, socklen_t len)
1830 case SO_BINDTODEVICE:
1831 case SO_ATTACH_FILTER:
1832 case SO_DETACH_FILTER:
1835 return (real_setsockopt(sk, lev, opt, p, len));
1838 int ioctl(int fd, unsigned long op, ...)
1846 arg = va_arg(ap, void *);
1850 case SIOCGIFBRDADDR:
1851 case SIOCGIFDSTADDR:
1852 case SIOCGIFNETMASK:
1854 if (fixup_real_ip_socket(fd, AF_INET, &sk)) goto real;
1856 rc = real_ioctl(sk, op, arg);
1857 PRESERVING_ERRNO({ close(sk); });
1861 rc = real_ioctl(fd, op, arg);
1868 /*----- Initialization ----------------------------------------------------*/
1870 /* Clean up the socket directory, deleting stale sockets. */
1871 static void cleanup_sockdir(void)
1876 struct sockaddr_un sun;
1880 if ((dir = opendir(sockdir)) == 0) return;
1881 sun.sun_family = AF_UNIX;
1882 while ((d = readdir(dir)) != 0) {
1883 if (d->d_name[0] == '.') continue;
1884 snprintf(sun.sun_path, sizeof(sun.sun_path),
1885 "%s/%s", sockdir, d->d_name);
1886 if (decode_inet_addr(&addr.sa, 0, &sun, SUN_LEN(&sun)) ||
1887 stat(sun.sun_path, &st) ||
1888 !S_ISSOCK(st.st_mode)) {
1889 D( fprintf(stderr, "noip(%d): ignoring unknown socketdir entry `%s'\n",
1890 pid, sun.sun_path); )
1893 if (unix_socket_status(&sun, 0) == STALE) {
1894 D( fprintf(stderr, "noip(%d): clearing away stale socket %s\n",
1896 unlink(sun.sun_path);
1902 /* Find the addresses attached to local network interfaces, and remember them
1905 static void get_local_ipaddrs(void)
1907 struct ifaddrs *ifa_head, *ifa;
1912 D( fprintf(stderr, "noip(%d): fetching local addresses...\n", pid); )
1913 if (getifaddrs(&ifa_head)) { perror("getifaddrs"); return; }
1914 for (n_local_ipaddrs = 0, ifa = ifa_head;
1915 n_local_ipaddrs < MAX_LOCAL_IPADDRS && ifa;
1916 ifa = ifa->ifa_next) {
1917 if (!ifa->ifa_addr || !family_known_p(ifa->ifa_addr->sa_family))
1919 ipaddr_from_sockaddr(&a, ifa->ifa_addr);
1920 D({ char buf[ADDRBUFSZ];
1921 fprintf(stderr, "noip(%d): local addr %s = %s", pid,
1923 inet_ntop(ifa->ifa_addr->sa_family, &a,
1924 buf, sizeof(buf))); })
1925 for (i = 0; i < n_local_ipaddrs; i++) {
1926 if (ifa->ifa_addr->sa_family == local_ipaddrs[i].af &&
1927 ipaddr_equal_p(local_ipaddrs[i].af, &a, &local_ipaddrs[i].addr)) {
1928 D( fprintf(stderr, " (duplicate)\n"); )
1932 D( fprintf(stderr, "\n"); )
1933 local_ipaddrs[n_local_ipaddrs].af = ifa->ifa_addr->sa_family;
1934 local_ipaddrs[n_local_ipaddrs].addr = a;
1938 freeifaddrs(ifa_head);
1941 /* Print the given message to standard error. Avoids stdio. */
1942 static void printerr(const char *p)
1943 { if (write(STDERR_FILENO, p, strlen(p))) ; }
1945 /* Create the socket directory, being careful about permissions. */
1946 static void create_sockdir(void)
1950 if (lstat(sockdir, &st)) {
1951 if (errno == ENOENT) {
1952 if (mkdir(sockdir, 0700)) {
1953 perror("noip: creating socketdir");
1956 if (!lstat(sockdir, &st))
1959 perror("noip: checking socketdir");
1963 if (!S_ISDIR(st.st_mode)) {
1964 printerr("noip: bad socketdir: not a directory\n");
1967 if (st.st_uid != uid) {
1968 printerr("noip: bad socketdir: not owner\n");
1971 if (st.st_mode & 077) {
1972 printerr("noip: bad socketdir: not private\n");
1977 /* Initialization function. */
1978 static void setup(void) __attribute__((constructor));
1979 static void setup(void)
1986 if ((p = getenv("NOIP_DEBUG")) && atoi(p))
1988 get_local_ipaddrs();
1995 /*----- That's all, folks -------------------------------------------------*/