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 distributed in the hope that it will be useful, but WITHOUT
18 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
22 * You should have received a copy of the GNU General Public License along
23 * with mLib; if not, write to the Free Software Foundation, Inc., 59 Temple
24 * Place - Suite 330, Boston, MA 02111-1307, USA.
32 /*----- Header files ------------------------------------------------------*/
45 #include <sys/ioctl.h>
46 #include <sys/socket.h>
50 #include <netinet/in.h>
51 #include <arpa/inet.h>
52 #include <netinet/tcp.h>
53 #include <netinet/udp.h>
56 /*----- Data structures ---------------------------------------------------*/
58 enum { UNUSED, STALE, USED }; /* Unix socket status values */
59 enum { WANT_FRESH, WANT_EXISTING }; /* Socket address dispositions */
60 enum { DENY, ALLOW }; /* ACL verdicts */
62 /* Access control list nodes */
63 typedef struct aclnode {
66 unsigned long minaddr, maxaddr;
67 unsigned short minport, maxport;
70 /* Local address records */
71 #define MAX_LOCAL_IPADDRS 16
72 static struct in_addr local_ipaddrs[MAX_LOCAL_IPADDRS];
73 static int n_local_ipaddrs;
75 /* General configuration */
77 static char *sockdir = 0;
79 static unsigned minautoport = 16384, maxautoport = 65536;
81 /* Access control lists */
82 static aclnode *bind_real, **bind_tail = &bind_real;
83 static aclnode *connect_real, **connect_tail = &connect_real;
85 /*----- Import the real versions of functions -----------------------------*/
87 /* The list of functions to immport. */
89 _(socket, int, (int, int, int)) \
90 _(socketpair, int, (int, int, int, int *)) \
91 _(connect, int, (int, const struct sockaddr *, socklen_t)) \
92 _(bind, int, (int, const struct sockaddr *, socklen_t)) \
93 _(accept, int, (int, struct sockaddr *, socklen_t *)) \
94 _(getsockname, int, (int, struct sockaddr *, socklen_t *)) \
95 _(getpeername, int, (int, struct sockaddr *, socklen_t *)) \
96 _(getsockopt, int, (int, int, int, void *, socklen_t *)) \
97 _(setsockopt, int, (int, int, int, const void *, socklen_t)) \
98 _(sendto, ssize_t, (int, const void *buf, size_t, int, \
99 const struct sockaddr *to, socklen_t tolen)) \
100 _(recvfrom, ssize_t, (int, void *buf, size_t, int, \
101 struct sockaddr *from, socklen_t *fromlen)) \
102 _(sendmsg, ssize_t, (int, const struct msghdr *, int)) \
103 _(recvmsg, ssize_t, (int, struct msghdr *, int))
105 /* Function pointers to set up. */
106 #define DECL(imp, ret, args) static ret (*real_##imp) args;
110 /* Import the system calls. */
111 static void import(void)
113 #define IMPORT(imp, ret, args) \
114 real_##imp = (ret (*)args)dlsym(RTLD_NEXT, #imp);
119 /*----- Utilities ---------------------------------------------------------*/
121 /* Socket address casts */
122 #define SA(sa) ((struct sockaddr *)(sa))
123 #define SIN(sa) ((struct sockaddr_in *)(sa))
124 #define SUN(sa) ((struct sockaddr_un *)(sa))
127 #define UC(ch) ((unsigned char)(ch))
129 /* Memory allocation */
130 #define NEW(x) ((x) = xmalloc(sizeof(*x)))
131 #define NEWV(x, n) ((x) = xmalloc(sizeof(*x) * (n)))
135 # define D(body) { if (debug) { body } }
140 /* Preservation of error status */
141 #define PRESERVING_ERRNO(body) do { \
142 int _err = errno; { body } errno = _err; \
145 /* Allocate N bytes of memory; abort on failure. */
146 static void *xmalloc(size_t n)
150 if ((p = malloc(n)) == 0) { perror("malloc"); exit(127); }
154 /* Allocate a copy of the null-terminated string P; abort on failure. */
155 static char *xstrdup(const char *p)
157 size_t n = strlen(p) + 1;
158 char *q = xmalloc(n);
162 /*----- Access control lists ----------------------------------------------*/
166 /* Write to standard error a description of the ACL node A. */
167 static void dump_aclnode(aclnode *a)
169 char minbuf[16], maxbuf[16];
170 struct in_addr amin, amax;
172 amin.s_addr = htonl(a->minaddr);
173 amax.s_addr = htonl(a->maxaddr);
174 fprintf(stderr, "noip: %c ", a->act ? '+' : '-');
175 if (a->minaddr == 0 && a->maxaddr == 0xffffffff)
176 fprintf(stderr, "any");
178 fprintf(stderr, "%s",
179 inet_ntop(AF_INET, &amin, minbuf, sizeof(minbuf)));
180 if (a->maxaddr != a->minaddr) {
181 fprintf(stderr, "-%s",
182 inet_ntop(AF_INET, &amax, maxbuf, sizeof(maxbuf)));
185 if (a->minport != 0 || a->maxport != 0xffff) {
186 fprintf(stderr, ":%u", (unsigned)a->minport);
187 if (a->minport != a->maxport)
188 fprintf(stderr, "-%u", (unsigned)a->maxport);
193 static void dump_acl(aclnode *a)
197 for (; a; a = a->next) {
201 fprintf(stderr, "noip: [default policy: %s]\n",
202 act == ALLOW ? "DENY" : "ALLOW");
207 /* Returns nonzero if the ACL A allows the IP socket SIN. */
208 static int acl_allows_p(aclnode *a, const struct sockaddr_in *sin)
210 unsigned long addr = ntohl(sin->sin_addr.s_addr);
211 unsigned short port = ntohs(sin->sin_port);
215 fprintf(stderr, "noip: check %s:%u\n",
216 inet_ntop(AF_INET, &sin->sin_addr, buf, sizeof(buf)),
217 ntohs((unsigned)sin->sin_port)); )
218 for (; a; a = a->next) {
219 D( dump_aclnode(a); )
220 if (a->minaddr <= addr && addr <= a->maxaddr &&
221 a->minport <= port && port <= a->maxport) {
222 D( fprintf(stderr, "noip: aha! %s\n", a->act ? "ALLOW" : "DENY"); )
227 D( fprintf(stderr, "noip: nothing found: %s\n", act ? "DENY" : "ALLOW"); )
231 /*----- Socket address conversion -----------------------------------------*/
233 /* Return a uniformly distributed integer between MIN and MAX inclusive. */
234 static unsigned randrange(unsigned min, unsigned max)
238 /* It's so nice not to have to care about the quality of the generator
241 for (mask = 1; mask < max; mask = (mask << 1) | 1)
243 do i = rand() & mask; while (i > max);
247 /* Return the status of Unix-domain socket address SUN. Returns: UNUSED if
248 * the socket doesn't exist; USED if the path refers to an active socket, or
249 * isn't really a socket at all, or we can't tell without a careful search
250 * and QUICKP is set; or STALE if the file refers to a socket which isn't
251 * being used any more.
253 static int unix_socket_status(struct sockaddr_un *sun, int quickp)
261 if (stat(sun->sun_path, &st))
262 return (errno == ENOENT ? UNUSED : USED);
263 if (!S_ISSOCK(st.st_mode) || quickp)
266 if ((fp = fopen("/proc/net/unix", "r")) == 0)
268 if (!fgets(buf, sizeof(buf), fp)) goto done; /* skip header */
269 len = strlen(sun->sun_path);
270 while (fgets(buf, sizeof(buf), fp)) {
272 if (n >= len + 2 && buf[n - len - 2] == ' ' && buf[n - 1] == '\n' &&
273 memcmp(buf + n - len - 1, sun->sun_path, len) == 0)
284 /* Encode the Internet address SIN as a Unix-domain address SUN. If WANT is
285 * WANT_FRESH, and SIN->sin_port is zero, then we pick an arbitrary local
286 * port. Otherwise we pick the port given. There's an unpleasant hack to
287 * find servers bound to INADDR_ANY. Returns zero on success; -1 on failure.
289 static int encode_inet_addr(struct sockaddr_un *sun,
290 const struct sockaddr_in *sin,
295 char buf[INET_ADDRSTRLEN];
298 D( fprintf(stderr, "noip: encode %s:%u (%s)",
299 inet_ntop(AF_INET, &sin->sin_addr, buf, sizeof(buf)),
300 (unsigned)ntohs(sin->sin_port),
301 want == WANT_EXISTING ? "EXISTING" : "FRESH"); )
302 sun->sun_family = AF_UNIX;
303 if (sin->sin_port || want == WANT_EXISTING) {
304 snprintf(sun->sun_path, sizeof(sun->sun_path), "%s/%s:%u", sockdir,
305 inet_ntop(AF_INET, &sin->sin_addr, buf, sizeof(buf)),
306 (unsigned)ntohs(sin->sin_port));
307 rc = unix_socket_status(sun, 0);
308 if (rc == STALE) unlink(sun->sun_path);
309 if (rc != USED && want == WANT_EXISTING) {
310 snprintf(sun->sun_path, sizeof(sun->sun_path), "%s/0.0.0.0:%u",
311 sockdir, (unsigned)ntohs(sin->sin_port));
312 if (unix_socket_status(sun, 0) == STALE) unlink(sun->sun_path);
315 for (i = 0; i < 10; i++) {
316 snprintf(sun->sun_path, sizeof(sun->sun_path), "%s/%s:%u", sockdir,
317 inet_ntop(AF_INET, &sin->sin_addr, buf, sizeof(buf)),
318 randrange(minautoport, maxautoport));
319 if (unix_socket_status(sun, 1) == UNUSED) goto found;
321 for (desperatep = 0; desperatep < 2; desperatep++) {
322 for (i = minautoport; i <= maxautoport; i++) {
323 snprintf(sun->sun_path, sizeof(sun->sun_path), "%s/%s:%u", sockdir,
324 inet_ntop(AF_INET, &sin->sin_addr, buf, sizeof(buf)),
326 rc = unix_socket_status(sun, !desperatep);
328 case STALE: unlink(sun->sun_path);
329 case UNUSED: goto found;
334 D( fprintf(stderr, " -- can't resolve\n"); )
338 D( fprintf(stderr, " -> `%s'\n", sun->sun_path); )
342 /* Decode the Unix address SUN to an Internet address SIN. If
343 * DECODE_UNBOUND_P is nonzero, an empty address (indicative of an unbound
344 * Unix-domain socket) is translated to a wildcard Internet address. Returns
345 * zero on success; -1 on failure (e.g., it wasn't one of our addresses).
347 static int decode_inet_addr(struct sockaddr_in *sin,
348 const struct sockaddr_un *sun,
350 int decode_unbound_p)
352 char buf[INET_ADDRSTRLEN + 16];
354 size_t n = strlen(sockdir), nn;
355 struct sockaddr_in sin_mine;
360 if (sun->sun_family != AF_UNIX)
362 nn = strlen(sun->sun_path);
363 if (len < sizeof(sun)) ((char *)sun)[len] = 0;
364 D( fprintf(stderr, "noip: decode (%d) `%s'",
365 *sun->sun_path, sun->sun_path); )
366 if (decode_unbound_p && !sun->sun_path[0]) {
367 sin->sin_family = AF_INET;
368 sin->sin_addr.s_addr = INADDR_ANY;
370 D( fprintf(stderr, " -- unbound socket\n"); )
373 if (nn < n + 1 || nn - n >= sizeof(buf) || sun->sun_path[n] != '/' ||
374 memcmp(sun->sun_path, sockdir, n) != 0) {
375 D( fprintf(stderr, " -- not one of ours\n"); )
378 memcpy(buf, sun->sun_path + n + 1, nn - n);
379 if ((p = strchr(buf, ':')) == 0) {
380 D( fprintf(stderr, " -- malformed (no port)\n"); )
384 sin->sin_family = AF_INET;
385 if (inet_pton(AF_INET, buf, &sin->sin_addr) <= 0) {
386 D( fprintf(stderr, " -- malformed (bad address `%s')\n", buf); )
389 port = strtoul(p, &p, 10);
390 if (*p || port >= 65536) {
391 D( fprintf(stderr, " -- malformed (port out of range)"); )
394 sin->sin_port = htons(port);
395 D( fprintf(stderr, " -> %s:%u\n",
396 inet_ntop(AF_INET, &sin->sin_addr, buf, sizeof(buf)),
401 /* SK is (or at least might be) a Unix-domain socket we created when an
402 * Internet socket was asked for. We've decided it should be an Internet
403 * socket after all, so convert it.
405 static int fixup_real_ip_socket(int sk)
410 struct sockaddr_un sun;
411 struct sockaddr_in sin;
423 _(LINGER, struct linger) \
426 _(RCVTIMEO, struct timeval) \
427 _(SNDTIMEO, struct timeval)
430 if (real_getsockname(sk, SA(&sun), &len))
432 if (decode_inet_addr(&sin, &sun, len, 1))
433 return (0); /* Not one of ours */
435 if (real_getsockopt(sk, SOL_SOCKET, SO_TYPE, &type, &len) < 0 ||
436 (nsk = real_socket(PF_INET, type, 0)) < 0)
438 #define FIX(opt, ty) do { \
441 if (real_getsockopt(sk, SOL_SOCKET, SO_##opt, &ov_, &len) < 0 || \
442 real_setsockopt(nsk, SOL_SOCKET, SO_##opt, &ov_, len)) { \
449 if ((f = fcntl(sk, F_GETFL)) < 0 ||
450 (fd = fcntl(sk, F_GETFD)) < 0 ||
451 fcntl(nsk, F_SETFL, f) < 0 ||
456 unlink(sun.sun_path);
458 if (fcntl(sk, F_SETFD, fd) < 0) {
459 perror("noip: fixup_real_ip_socket F_SETFD");
465 /* The socket SK is about to be used to communicate with the remote address
466 * SA. Assign it a local address so that getpeername does something useful.
468 static int do_implicit_bind(int sk, const struct sockaddr **sa,
469 socklen_t *len, struct sockaddr_un *sun)
471 struct sockaddr_in sin;
472 socklen_t mylen = sizeof(*sun);
474 if (acl_allows_p(connect_real, SIN(*sa))) {
475 if (fixup_real_ip_socket(sk))
478 if (real_getsockname(sk, SA(sun), &mylen) < 0)
480 if (sun->sun_family == AF_UNIX) {
481 if (mylen < sizeof(*sun)) ((char *)sun)[mylen] = 0;
482 if (!sun->sun_path[0]) {
483 sin.sin_family = AF_INET;
484 sin.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
486 encode_inet_addr(sun, &sin, WANT_FRESH);
487 if (real_bind(sk, SA(sun), SUN_LEN(sun)))
490 encode_inet_addr(sun, SIN(*sa), WANT_EXISTING);
498 /* We found the real address SA, with length LEN; if it's a Unix-domain
499 * address corresponding to a fake socket, convert it to cover up the
500 * deception. Whatever happens, put the result at FAKE and store its length
503 static void return_fake_name(struct sockaddr *sa, socklen_t len,
504 struct sockaddr *fake, socklen_t *fakelen)
506 struct sockaddr_in sin;
509 if (sa->sa_family == AF_UNIX &&
510 !decode_inet_addr(&sin, SUN(sa), len, 0)) {
518 memcpy(fake, sa, len);
522 /*----- Configuration -----------------------------------------------------*/
524 /* Return the process owner's home directory. */
525 static char *home(void)
530 if (getuid() == uid &&
531 (p = getenv("HOME")) != 0)
533 else if ((pw = getpwuid(uid)) != 0)
539 /* Return a good temporary directory to use. */
540 static char *tmpdir(void)
544 if ((p = getenv("TMPDIR")) != 0) return (p);
545 else if ((p = getenv("TMP")) != 0) return (p);
546 else return ("/tmp");
549 /* Return the user's name, or at least something distinctive. */
550 static char *user(void)
556 if ((p = getenv("USER")) != 0) return (p);
557 else if ((p = getenv("LOGNAME")) != 0) return (p);
558 else if ((pw = getpwuid(uid)) != 0) return (pw->pw_name);
560 snprintf(buf, sizeof(buf), "uid-%lu", (unsigned long)uid);
565 /* Skip P over space characters. */
566 #define SKIPSPC do { while (*p && isspace(UC(*p))) p++; } while (0)
568 /* Set Q to point to the next word following P, null-terminate it, and step P
570 #define NEXTWORD(q) do { \
573 while (*p && !isspace(UC(*p))) p++; \
577 /* Set Q to point to the next dotted-quad address, store the ending delimiter
578 * in DEL, null-terminate it, and step P past it. */
579 #define NEXTADDR(q, del) do { \
582 while (*p && (*p == '.' || isdigit(UC(*p)))) p++; \
587 /* Set Q to point to the next decimal number, store the ending delimiter in
588 * DEL, null-terminate it, and step P past it. */
589 #define NEXTNUMBER(q, del) do { \
592 while (*p && isdigit(UC(*p))) p++; \
597 /* Push the character DEL back so we scan it again, unless it's zero
599 #define RESCAN(del) do { if (del) *--p = del; } while (0)
601 /* Evaluate true if P is pointing to the word KW (and not some longer string
602 * of which KW is a prefix). */
604 #define KWMATCHP(kw) (strncmp(p, kw, sizeof(kw) - 1) == 0 && \
605 !isalnum(UC(p[sizeof(kw) - 1])) && \
606 (p += sizeof(kw) - 1))
608 /* Parse a port list, starting at *PP. Port lists have the form
609 * [:LOW[-HIGH]]: if omitted, all ports are included; if HIGH is omitted,
610 * it's as if HIGH = LOW. Store LOW in *MIN, HIGH in *MAX and set *PP to the
611 * rest of the string.
613 static void parse_ports(char **pp, unsigned short *min, unsigned short *max)
620 { *min = 0; *max = 0xffff; }
623 NEXTNUMBER(q, del); *min = strtoul(q, 0, 0); RESCAN(del);
626 { p++; NEXTNUMBER(q, del); *max = strtoul(q, 0, 0); RESCAN(del); }
633 /* Make a new ACL node. ACT is the verdict; MINADDR and MAXADDR are the
634 * ranges on IP addresses; MINPORT and MAXPORT are the ranges on port
635 * numbers; TAIL is the list tail to attach the new node to.
637 #define ACLNODE(tail_, act_, \
638 minaddr_, maxaddr_, minport_, maxport_) do { \
642 a_->minaddr = minaddr_; a_->maxaddr = maxaddr_; \
643 a_->minport = minport_; a_->maxport = maxport_; \
644 *tail_ = a_; tail_ = &a_->next; \
647 /* Parse an ACL line. *PP points to the end of the line; *TAIL points to
648 * the list tail (i.e., the final link in the list). An ACL entry has the
649 * form +|- [any | local | ADDR | ADDR - ADDR | ADDR/ADDR | ADDR/INT] PORTS
650 * where PORTS is parsed by parse_ports above; an ACL line consists of a
651 * comma-separated sequence of entries..
653 static void parse_acl_line(char **pp, aclnode ***tail)
656 unsigned long minaddr, maxaddr, mask;
657 unsigned short minport, maxport;
666 if (*p == '+') act = ALLOW;
667 else if (*p == '-') act = DENY;
672 if (KWMATCHP("any")) {
674 maxaddr = 0xffffffff;
676 } else if (KWMATCHP("local")) {
677 parse_ports(&p, &minport, &maxport);
678 ACLNODE(*tail, act, 0, 0, minport, maxport);
679 ACLNODE(*tail, act, 0xffffffff, 0xffffffff, minport, maxport);
680 for (i = 0; i < n_local_ipaddrs; i++) {
681 minaddr = ntohl(local_ipaddrs[i].s_addr);
682 ACLNODE(*tail, act, minaddr, minaddr, minport, maxport);
687 maxaddr = 0xffffffff;
690 if (inet_pton(AF_INET, q, &addr) <= 0) goto bad;
691 minaddr = ntohl(addr.s_addr);
697 if (inet_pton(AF_INET, q, &addr) <= 0) goto bad;
699 maxaddr = ntohl(addr.s_addr);
700 } else if (*p == '/') {
703 if (strchr(q, '.')) {
704 if (inet_pton(AF_INET, q, &addr) <= 0) goto bad;
705 mask = ntohl(addr.s_addr);
707 n = strtoul(q, 0, 0);
708 mask = (~0ul << (32 - n)) & 0xffffffff;
712 maxaddr = minaddr | (mask ^ 0xffffffff);
717 parse_ports(&p, &minport, &maxport);
718 ACLNODE(*tail, act, minaddr, maxaddr, minport, maxport);
721 if (*p != ',') break;
727 D( fprintf(stderr, "noip: bad acl spec (ignored)\n"); )
731 /* Parse the autoports configuration directive. Syntax is MIN - MAX. */
732 static void parse_autoports(char **pp)
739 NEXTNUMBER(q, del); x = strtoul(q, 0, 0); RESCAN(del);
741 if (*p != '-') goto bad; p++;
742 NEXTNUMBER(q, del); y = strtoul(q, 0, 0); RESCAN(del);
743 minautoport = x; maxautoport = y;
747 D( fprintf(stderr, "bad port range (ignored)\n"); )
751 /* Parse an ACL from an environment variable VAR, attaching it to the list
753 static void parse_acl_env(const char *var, aclnode ***tail)
757 if ((p = getenv(var)) != 0) {
759 parse_acl_line(&q, tail);
764 /* Read the configuration from the config file and environment. */
765 static void readconfig(void)
772 parse_acl_env("NOIP_REALBIND_BEFORE", &bind_tail);
773 parse_acl_env("NOIP_REALCONNECT_BEFORE", &connect_tail);
774 if ((p = getenv("NOIP_AUTOPORTS")) != 0) {
779 if ((p = getenv("NOIP_CONFIG")) == 0)
780 snprintf(p = buf, sizeof(buf), "%s/.noip", home());
781 D( fprintf(stderr, "noip: config file: %s\n", p); )
783 if ((fp = fopen(p, "r")) == 0) {
784 D( fprintf(stderr, "noip: couldn't read config: %s\n",
788 while (fgets(buf, sizeof(buf), fp)) {
793 if (!*p || *p == '#') continue;
794 while (n && isspace(UC(buf[n - 1]))) n--;
799 if (strcmp(cmd, "socketdir") == 0)
800 sockdir = xstrdup(p);
801 else if (strcmp(cmd, "realbind") == 0)
802 parse_acl_line(&p, &bind_tail);
803 else if (strcmp(cmd, "realconnect") == 0)
804 parse_acl_line(&p, &connect_tail);
805 else if (strcmp(cmd, "autoports") == 0)
807 else if (strcmp(cmd, "debug") == 0)
808 debug = *p ? atoi(p) : 1;
810 D( fprintf(stderr, "noip: bad config command %s\n", cmd); )
815 parse_acl_env("NOIP_REALBIND", &bind_tail);
816 parse_acl_env("NOIP_REALCONNECT", &connect_tail);
817 parse_acl_env("NOIP_REALBIND_AFTER", &bind_tail);
818 parse_acl_env("NOIP_REALCONNECT_AFTER", &connect_tail);
821 if (!sockdir) sockdir = getenv("NOIP_SOCKETDIR");
823 snprintf(buf, sizeof(buf), "%s/noip-%s", tmpdir(), user());
824 sockdir = xstrdup(buf);
826 D( fprintf(stderr, "noip: socketdir: %s\n", sockdir);
827 fprintf(stderr, "noip: autoports: %u-%u\n",
828 minautoport, maxautoport);
829 fprintf(stderr, "noip: realbind acl:\n");
831 fprintf(stderr, "noip: realconnect acl:\n");
832 dump_acl(connect_real); )
835 /*----- Overridden system calls -------------------------------------------*/
837 int socket(int pf, int ty, int proto)
844 return real_socket(pf, ty, proto);
846 errno = EAFNOSUPPORT;
851 int socketpair(int pf, int ty, int proto, int *sk)
857 return (real_socketpair(pf, ty, proto, sk));
860 int bind(int sk, const struct sockaddr *sa, socklen_t len)
862 struct sockaddr_un sun;
864 if (sa->sa_family == AF_INET) {
866 if (acl_allows_p(bind_real, SIN(sa))) {
867 if (fixup_real_ip_socket(sk))
870 encode_inet_addr(&sun, SIN(sa), WANT_FRESH);
876 return real_bind(sk, sa, len);
879 int connect(int sk, const struct sockaddr *sa, socklen_t len)
881 struct sockaddr_un sun;
885 switch (sa->sa_family) {
888 do_implicit_bind(sk, &sa, &len, &sun);
891 rc = real_connect(sk, sa, len);
894 case ENOENT: errno = ECONNREFUSED; break;
899 rc = real_connect(sk, sa, len);
905 ssize_t sendto(int sk, const void *buf, size_t len, int flags,
906 const struct sockaddr *to, socklen_t tolen)
908 struct sockaddr_un sun;
910 if (to && to->sa_family == AF_INET) {
912 do_implicit_bind(sk, &to, &tolen, &sun);
915 return real_sendto(sk, buf, len, flags, to, tolen);
918 ssize_t recvfrom(int sk, void *buf, size_t len, int flags,
919 struct sockaddr *from, socklen_t *fromlen)
922 socklen_t mylen = sizeof(sabuf);
926 return real_recvfrom(sk, buf, len, flags, 0, 0);
928 n = real_recvfrom(sk, buf, len, flags, SA(sabuf), &mylen);
931 return_fake_name(SA(sabuf), mylen, from, fromlen);
936 ssize_t sendmsg(int sk, const struct msghdr *msg, int flags)
938 struct sockaddr_un sun;
939 const struct sockaddr *sa;
942 if (msg->msg_name && SA(msg->msg_name)->sa_family == AF_INET) {
944 sa = SA(msg->msg_name);
946 do_implicit_bind(sk, &sa, &mymsg.msg_namelen, &sun);
947 mymsg.msg_name = SA(sa);
951 return real_sendmsg(sk, msg, flags);
954 ssize_t recvmsg(int sk, struct msghdr *msg, int flags)
962 return real_recvmsg(sk, msg, flags);
964 sa = SA(msg->msg_name);
965 len = msg->msg_namelen;
966 msg->msg_name = sabuf;
967 msg->msg_namelen = sizeof(sabuf);
968 n = real_recvmsg(sk, msg, flags);
971 return_fake_name(SA(sabuf), msg->msg_namelen, sa, &len);
973 msg->msg_namelen = len;
978 int accept(int sk, struct sockaddr *sa, socklen_t *len)
981 socklen_t mylen = sizeof(sabuf);
982 int nsk = real_accept(sk, SA(sabuf), &mylen);
986 return_fake_name(SA(sabuf), mylen, sa, len);
990 int getsockname(int sk, struct sockaddr *sa, socklen_t *len)
994 socklen_t mylen = sizeof(sabuf);
995 if (real_getsockname(sk, SA(sabuf), &mylen))
997 return_fake_name(SA(sabuf), mylen, sa, len);
1002 int getpeername(int sk, struct sockaddr *sa, socklen_t *len)
1006 socklen_t mylen = sizeof(sabuf);
1007 if (real_getpeername(sk, SA(sabuf), &mylen))
1009 return_fake_name(SA(sabuf), mylen, sa, len);
1014 int getsockopt(int sk, int lev, int opt, void *p, socklen_t *len)
1024 return real_getsockopt(sk, lev, opt, p, len);
1027 int setsockopt(int sk, int lev, int opt, const void *p, socklen_t len)
1036 case SO_BINDTODEVICE:
1037 case SO_ATTACH_FILTER:
1038 case SO_DETACH_FILTER:
1041 return real_setsockopt(sk, lev, opt, p, len);
1044 /*----- Initialization ----------------------------------------------------*/
1046 /* Clean up the socket directory, deleting stale sockets. */
1047 static void cleanup_sockdir(void)
1051 struct sockaddr_in sin;
1052 struct sockaddr_un sun;
1055 if ((dir = opendir(sockdir)) == 0)
1057 sun.sun_family = AF_UNIX;
1058 while ((d = readdir(dir)) != 0) {
1059 if (d->d_name[0] == '.') continue;
1060 snprintf(sun.sun_path, sizeof(sun.sun_path),
1061 "%s/%s", sockdir, d->d_name);
1062 if (decode_inet_addr(&sin, &sun, SUN_LEN(&sun), 0) ||
1063 stat(sun.sun_path, &st) ||
1064 !S_ISSOCK(st.st_mode)) {
1065 D( fprintf(stderr, "noip: ignoring unknown socketdir entry `%s'\n",
1069 if (unix_socket_status(&sun, 0) == STALE) {
1070 D( fprintf(stderr, "noip: clearing away stale socket %s\n",
1072 unlink(sun.sun_path);
1078 /* Find the addresses attached to local network interfaces, and remember them
1081 static void get_local_ipaddrs(void)
1083 struct if_nameindex *ifn;
1088 ifn = if_nameindex();
1089 if ((sk = real_socket(PF_INET, SOCK_STREAM, 00)) < 0)
1091 for (i = n_local_ipaddrs = 0;
1092 n_local_ipaddrs < MAX_LOCAL_IPADDRS &&
1093 ifn[i].if_name && *ifn[i].if_name;
1095 strcpy(ifr.ifr_name, ifn[i].if_name);
1096 if (ioctl(sk, SIOCGIFADDR, &ifr) || ifr.ifr_addr.sa_family != AF_INET)
1098 local_ipaddrs[n_local_ipaddrs++] =
1099 SIN(&ifr.ifr_addr)->sin_addr;
1100 D( fprintf(stderr, "noip: local addr %s = %s\n", ifn[i].if_name,
1101 inet_ntoa(local_ipaddrs[n_local_ipaddrs - 1])); )
1106 /* Print the given message to standard error. Avoids stdio. */
1107 static void printerr(const char *p)
1108 { int hunoz; hunoz = write(STDERR_FILENO, p, strlen(p)); }
1110 /* Create the socket directory, being careful about permissions. */
1111 static void create_sockdir(void)
1115 if (stat(sockdir, &st)) {
1116 if (errno == ENOENT) {
1117 if (mkdir(sockdir, 0700)) {
1118 perror("noip: creating socketdir");
1121 if (!stat(sockdir, &st))
1124 perror("noip: checking socketdir");
1128 if (!S_ISDIR(st.st_mode)) {
1129 printerr("noip: bad socketdir: not a directory\n");
1132 if (st.st_uid != uid) {
1133 printerr("noip: bad socketdir: not owner\n");
1136 if (st.st_mode & 077) {
1137 printerr("noip: bad socketdir: not private\n");
1142 /* Initialization function. */
1143 static void setup(void) __attribute__((constructor));
1144 static void setup(void)
1151 if ((p = getenv("NOIP_DEBUG")) && atoi(p))
1153 get_local_ipaddrs();
1160 /*----- That's all, folks -------------------------------------------------*/