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)) \
106 /* Function pointers to set up. */
107 #define DECL(imp, ret, args) static ret (*real_##imp) args;
111 /* Import the system calls. */
112 static void import(void)
114 #define IMPORT(imp, ret, args) \
115 real_##imp = (ret (*)args)dlsym(RTLD_NEXT, #imp);
120 /*----- Utilities ---------------------------------------------------------*/
122 /* Socket address casts */
123 #define SA(sa) ((struct sockaddr *)(sa))
124 #define SIN(sa) ((struct sockaddr_in *)(sa))
125 #define SUN(sa) ((struct sockaddr_un *)(sa))
128 #define UC(ch) ((unsigned char)(ch))
130 /* Memory allocation */
131 #define NEW(x) ((x) = xmalloc(sizeof(*x)))
132 #define NEWV(x, n) ((x) = xmalloc(sizeof(*x) * (n)))
136 # define D(body) { if (debug) { body } }
141 /* Preservation of error status */
142 #define PRESERVING_ERRNO(body) do { \
143 int _err = errno; { body } errno = _err; \
146 /* Allocate N bytes of memory; abort on failure. */
147 static void *xmalloc(size_t n)
151 if ((p = malloc(n)) == 0) { perror("malloc"); exit(127); }
155 /* Allocate a copy of the null-terminated string P; abort on failure. */
156 static char *xstrdup(const char *p)
158 size_t n = strlen(p) + 1;
159 char *q = xmalloc(n);
163 /*----- Access control lists ----------------------------------------------*/
167 /* Write to standard error a description of the ACL node A. */
168 static void dump_aclnode(aclnode *a)
170 char minbuf[16], maxbuf[16];
171 struct in_addr amin, amax;
173 amin.s_addr = htonl(a->minaddr);
174 amax.s_addr = htonl(a->maxaddr);
175 fprintf(stderr, "noip: %c ", a->act ? '+' : '-');
176 if (a->minaddr == 0 && a->maxaddr == 0xffffffff)
177 fprintf(stderr, "any");
179 fprintf(stderr, "%s",
180 inet_ntop(AF_INET, &amin, minbuf, sizeof(minbuf)));
181 if (a->maxaddr != a->minaddr) {
182 fprintf(stderr, "-%s",
183 inet_ntop(AF_INET, &amax, maxbuf, sizeof(maxbuf)));
186 if (a->minport != 0 || a->maxport != 0xffff) {
187 fprintf(stderr, ":%u", (unsigned)a->minport);
188 if (a->minport != a->maxport)
189 fprintf(stderr, "-%u", (unsigned)a->maxport);
194 static void dump_acl(aclnode *a)
198 for (; a; a = a->next) {
202 fprintf(stderr, "noip: [default policy: %s]\n",
203 act == ALLOW ? "DENY" : "ALLOW");
208 /* Returns nonzero if the ACL A allows the IP socket SIN. */
209 static int acl_allows_p(aclnode *a, const struct sockaddr_in *sin)
211 unsigned long addr = ntohl(sin->sin_addr.s_addr);
212 unsigned short port = ntohs(sin->sin_port);
216 fprintf(stderr, "noip: check %s:%u\n",
217 inet_ntop(AF_INET, &sin->sin_addr, buf, sizeof(buf)),
218 ntohs((unsigned)sin->sin_port)); )
219 for (; a; a = a->next) {
220 D( dump_aclnode(a); )
221 if (a->minaddr <= addr && addr <= a->maxaddr &&
222 a->minport <= port && port <= a->maxport) {
223 D( fprintf(stderr, "noip: aha! %s\n", a->act ? "ALLOW" : "DENY"); )
228 D( fprintf(stderr, "noip: nothing found: %s\n", act ? "DENY" : "ALLOW"); )
232 /*----- Socket address conversion -----------------------------------------*/
234 /* Return a uniformly distributed integer between MIN and MAX inclusive. */
235 static unsigned randrange(unsigned min, unsigned max)
239 /* It's so nice not to have to care about the quality of the generator
242 for (mask = 1; mask < max; mask = (mask << 1) | 1)
244 do i = rand() & mask; while (i > max);
248 /* Return the status of Unix-domain socket address SUN. Returns: UNUSED if
249 * the socket doesn't exist; USED if the path refers to an active socket, or
250 * isn't really a socket at all, or we can't tell without a careful search
251 * and QUICKP is set; or STALE if the file refers to a socket which isn't
252 * being used any more.
254 static int unix_socket_status(struct sockaddr_un *sun, int quickp)
262 if (stat(sun->sun_path, &st))
263 return (errno == ENOENT ? UNUSED : USED);
264 if (!S_ISSOCK(st.st_mode) || quickp)
267 if ((fp = fopen("/proc/net/unix", "r")) == 0)
269 fgets(buf, sizeof(buf), fp); /* skip header */
270 len = strlen(sun->sun_path);
271 while (fgets(buf, sizeof(buf), fp)) {
273 if (n >= len + 2 && buf[n - len - 2] == ' ' && buf[n - 1] == '\n' &&
274 memcmp(buf + n - len - 1, sun->sun_path, len) == 0)
285 /* Encode the Internet address SIN as a Unix-domain address SUN. If WANT is
286 * WANT_FRESH, and SIN->sin_port is zero, then we pick an arbitrary local
287 * port. Otherwise we pick the port given. There's an unpleasant hack to
288 * find servers bound to INADDR_ANY. Returns zero on success; -1 on failure.
290 static int encode_inet_addr(struct sockaddr_un *sun,
291 const struct sockaddr_in *sin,
296 char buf[INET_ADDRSTRLEN];
299 D( fprintf(stderr, "noip: encode %s:%u (%s)",
300 inet_ntop(AF_INET, &sin->sin_addr, buf, sizeof(buf)),
301 (unsigned)ntohs(sin->sin_port),
302 want == WANT_EXISTING ? "EXISTING" : "FRESH"); )
303 sun->sun_family = AF_UNIX;
304 if (sin->sin_port || want == WANT_EXISTING) {
305 snprintf(sun->sun_path, sizeof(sun->sun_path), "%s/%s:%u", sockdir,
306 inet_ntop(AF_INET, &sin->sin_addr, buf, sizeof(buf)),
307 (unsigned)ntohs(sin->sin_port));
308 rc = unix_socket_status(sun, 0);
309 if (rc == STALE) unlink(sun->sun_path);
310 if (rc != USED && want == WANT_EXISTING) {
311 snprintf(sun->sun_path, sizeof(sun->sun_path), "%s/0.0.0.0:%u",
312 sockdir, (unsigned)ntohs(sin->sin_port));
313 if (unix_socket_status(sun, 0) == STALE) unlink(sun->sun_path);
316 for (i = 0; i < 10; i++) {
317 snprintf(sun->sun_path, sizeof(sun->sun_path), "%s/%s:%u", sockdir,
318 inet_ntop(AF_INET, &sin->sin_addr, buf, sizeof(buf)),
319 randrange(minautoport, maxautoport));
320 if (unix_socket_status(sun, 1) == UNUSED) goto found;
322 for (desperatep = 0; desperatep < 2; desperatep++) {
323 for (i = minautoport; i <= maxautoport; i++) {
324 snprintf(sun->sun_path, sizeof(sun->sun_path), "%s/%s:%u", sockdir,
325 inet_ntop(AF_INET, &sin->sin_addr, buf, sizeof(buf)),
327 rc = unix_socket_status(sun, !desperatep);
329 case STALE: unlink(sun->sun_path);
330 case UNUSED: goto found;
335 D( fprintf(stderr, " -- can't resolve\n"); )
339 D( fprintf(stderr, " -> `%s'\n", sun->sun_path); )
343 /* Decode the Unix address SUN to an Internet address SIN. Returns zero on
344 * success; -1 on failure (e.g., it wasn't one of our addresses). */
345 static int decode_inet_addr(struct sockaddr_in *sin,
346 const struct sockaddr_un *sun,
349 char buf[INET_ADDRSTRLEN + 16];
351 size_t n = strlen(sockdir), nn = strlen(sun->sun_path);
352 struct sockaddr_in sin_mine;
357 if (sun->sun_family != AF_UNIX)
359 if (len < sizeof(sun)) ((char *)sun)[len] = 0;
360 D( fprintf(stderr, "noip: decode (%d) `%s'",
361 *sun->sun_path, sun->sun_path); )
362 if (!sun->sun_path[0]) {
363 sin->sin_family = AF_INET;
364 sin->sin_addr.s_addr = INADDR_ANY;
366 D( fprintf(stderr, " -- unbound socket\n"); )
369 if (nn < n + 1 || nn - n >= sizeof(buf) || sun->sun_path[n] != '/' ||
370 memcmp(sun->sun_path, sockdir, n) != 0) {
371 D( fprintf(stderr, " -- not one of ours\n"); )
374 memcpy(buf, sun->sun_path + n + 1, nn - n);
375 if ((p = strchr(buf, ':')) == 0) {
376 D( fprintf(stderr, " -- malformed (no port)\n"); )
380 sin->sin_family = AF_INET;
381 if (inet_pton(AF_INET, buf, &sin->sin_addr) <= 0) {
382 D( fprintf(stderr, " -- malformed (bad address `%s')\n", buf); )
385 port = strtoul(p, &p, 10);
386 if (*p || port >= 65536) {
387 D( fprintf(stderr, " -- malformed (port out of range)"); )
390 sin->sin_port = htons(port);
391 D( fprintf(stderr, " -> %s:%u\n",
392 inet_ntop(AF_INET, &sin->sin_addr, buf, sizeof(buf)),
397 /* SK is (or at least might be) a Unix-domain socket we created when an
398 * Internet socket was asked for. We've decided it should be an Internet
399 * socket after all, so convert it.
401 static int fixup_real_ip_socket(int sk)
406 struct sockaddr_un sun;
407 struct sockaddr_in sin;
419 _(LINGER, struct linger) \
422 _(RCVTIMEO, struct timeval) \
423 _(SNDTIMEO, struct timeval)
426 if (real_getsockname(sk, SA(&sun), &len))
428 if (decode_inet_addr(&sin, &sun, len))
429 return (0); /* Not one of ours */
431 if (real_getsockopt(sk, SOL_SOCKET, SO_TYPE, &type, &len) < 0 ||
432 (nsk = real_socket(PF_INET, type, 0)) < 0)
434 #define FIX(opt, ty) do { \
437 if (real_getsockopt(sk, SOL_SOCKET, SO_##opt, &ov_, &len) < 0 || \
438 real_setsockopt(nsk, SOL_SOCKET, SO_##opt, &ov_, len)) { \
445 if ((f = fcntl(sk, F_GETFL)) < 0 ||
446 (fd = fcntl(sk, F_GETFD)) < 0 ||
447 fcntl(nsk, F_SETFL, f) < 0 ||
452 unlink(sun.sun_path);
454 if (fcntl(sk, F_SETFD, fd) < 0) {
455 perror("noip: fixup_real_ip_socket F_SETFD");
461 /* The socket SK is about to be used to communicate with the remote address
462 * SA. Assign it a local address so that getpeername does something useful.
464 static int do_implicit_bind(int sk, const struct sockaddr **sa,
465 socklen_t *len, struct sockaddr_un *sun)
467 struct sockaddr_in sin;
468 socklen_t mylen = sizeof(*sun);
470 if (acl_allows_p(connect_real, SIN(*sa))) {
471 if (fixup_real_ip_socket(sk))
474 if (real_getsockname(sk, SA(sun), &mylen) < 0)
476 if (sun->sun_family == AF_UNIX) {
477 if (mylen < sizeof(*sun)) ((char *)sun)[mylen] = 0;
478 if (!sun->sun_path[0]) {
479 sin.sin_family = AF_INET;
480 sin.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
482 encode_inet_addr(sun, &sin, WANT_FRESH);
483 if (real_bind(sk, SA(sun), SUN_LEN(sun)))
486 encode_inet_addr(sun, SIN(*sa), WANT_EXISTING);
494 /* We found the real address SA, with length LEN; if it's a Unix-domain
495 * address corresponding to a fake socket, convert it to cover up the
496 * deception. Whatever happens, put the result at FAKE and store its length
499 static void return_fake_name(struct sockaddr *sa, socklen_t len,
500 struct sockaddr *fake, socklen_t *fakelen)
502 struct sockaddr_in sin;
505 if (sa->sa_family == AF_UNIX && !decode_inet_addr(&sin, SUN(sa), len)) {
513 memcpy(fake, sa, len);
517 /*----- Configuration -----------------------------------------------------*/
519 /* Return the process owner's home directory. */
520 static char *home(void)
525 if (getuid() == uid &&
526 (p = getenv("HOME")) != 0)
528 else if ((pw = getpwuid(uid)) != 0)
534 /* Return a good temporary directory to use. */
535 static char *tmpdir(void)
539 if ((p = getenv("TMPDIR")) != 0) return (p);
540 else if ((p = getenv("TMP")) != 0) return (p);
541 else return ("/tmp");
544 /* Return the user's name, or at least something distinctive. */
545 static char *user(void)
551 if ((p = getenv("USER")) != 0) return (p);
552 else if ((p = getenv("LOGNAME")) != 0) return (p);
553 else if ((pw = getpwuid(uid)) != 0) return (pw->pw_name);
555 snprintf(buf, sizeof(buf), "uid-%lu", (unsigned long)uid);
560 /* Skip P over space characters. */
561 #define SKIPSPC do { while (*p && isspace(UC(*p))) p++; } while (0)
563 /* Set Q to point to the next word following P, null-terminate it, and step P
565 #define NEXTWORD(q) do { \
568 while (*p && !isspace(UC(*p))) p++; \
572 /* Set Q to point to the next dotted-quad address, store the ending delimiter
573 * in DEL, null-terminate it, and step P past it. */
574 #define NEXTADDR(q, del) do { \
577 while (*p && (*p == '.' || isdigit(UC(*p)))) p++; \
582 /* Set Q to point to the next decimal number, store the ending delimiter in
583 * DEL, null-terminate it, and step P past it. */
584 #define NEXTNUMBER(q, del) do { \
587 while (*p && isdigit(UC(*p))) p++; \
592 /* Push the character DEL back so we scan it again, unless it's zero
594 #define RESCAN(del) do { if (del) *--p = del; } while (0)
596 /* Evaluate true if P is pointing to the word KW (and not some longer string
597 * of which KW is a prefix). */
599 #define KWMATCHP(kw) (strncmp(p, kw, sizeof(kw) - 1) == 0 && \
600 !isalnum(UC(p[sizeof(kw) - 1])) && \
601 (p += sizeof(kw) - 1))
603 /* Parse a port list, starting at *PP. Port lists have the form
604 * [:LOW[-HIGH]]: if omitted, all ports are included; if HIGH is omitted,
605 * it's as if HIGH = LOW. Store LOW in *MIN, HIGH in *MAX and set *PP to the
606 * rest of the string.
608 static void parse_ports(char **pp, unsigned short *min, unsigned short *max)
615 { *min = 0; *max = 0xffff; }
618 NEXTNUMBER(q, del); *min = strtoul(q, 0, 0); RESCAN(del);
621 { p++; NEXTNUMBER(q, del); *max = strtoul(q, 0, 0); RESCAN(del); }
628 /* Make a new ACL node. ACT is the verdict; MINADDR and MAXADDR are the
629 * ranges on IP addresses; MINPORT and MAXPORT are the ranges on port
630 * numbers; TAIL is the list tail to attach the new node to.
632 #define ACLNODE(tail_, act_, \
633 minaddr_, maxaddr_, minport_, maxport_) do { \
637 a_->minaddr = minaddr_; a_->maxaddr = maxaddr_; \
638 a_->minport = minport_; a_->maxport = maxport_; \
639 *tail_ = a_; tail_ = &a_->next; \
642 /* Parse an ACL line. *PP points to the end of the line; *TAIL points to
643 * the list tail (i.e., the final link in the list). An ACL entry has the
644 * form +|- [any | local | ADDR | ADDR - ADDR | ADDR/ADDR | ADDR/INT] PORTS
645 * where PORTS is parsed by parse_ports above; an ACL line consists of a
646 * comma-separated sequence of entries..
648 static void parse_acl_line(char **pp, aclnode ***tail)
651 unsigned long minaddr, maxaddr, mask;
652 unsigned short minport, maxport;
661 if (*p == '+') act = ALLOW;
662 else if (*p == '-') act = DENY;
667 if (KWMATCHP("any")) {
669 maxaddr = 0xffffffff;
671 } else if (KWMATCHP("local")) {
672 parse_ports(&p, &minport, &maxport);
673 ACLNODE(*tail, act, 0, 0, minport, maxport);
674 ACLNODE(*tail, act, 0xffffffff, 0xffffffff, minport, maxport);
675 for (i = 0; i < n_local_ipaddrs; i++) {
676 minaddr = ntohl(local_ipaddrs[i].s_addr);
677 ACLNODE(*tail, act, minaddr, minaddr, minport, maxport);
682 maxaddr = 0xffffffff;
685 if (inet_pton(AF_INET, q, &addr) <= 0) goto bad;
686 minaddr = ntohl(addr.s_addr);
692 if (inet_pton(AF_INET, q, &addr) <= 0) goto bad;
694 maxaddr = ntohl(addr.s_addr);
695 } else if (*p == '/') {
698 if (strchr(q, '.')) {
699 if (inet_pton(AF_INET, q, &addr) <= 0) goto bad;
700 mask = ntohl(addr.s_addr);
702 n = strtoul(q, 0, 0);
703 mask = (~0ul << (32 - n)) & 0xffffffff;
707 maxaddr = minaddr | (mask ^ 0xffffffff);
712 parse_ports(&p, &minport, &maxport);
713 ACLNODE(*tail, act, minaddr, maxaddr, minport, maxport);
716 if (*p != ',') break;
722 D( fprintf(stderr, "noip: bad acl spec (ignored)\n"); )
726 /* Parse the autoports configuration directive. Syntax is MIN - MAX. */
727 static void parse_autoports(char **pp)
734 NEXTNUMBER(q, del); x = strtoul(q, 0, 0); RESCAN(del);
736 if (*p != '-') goto bad; p++;
737 NEXTNUMBER(q, del); y = strtoul(q, 0, 0); RESCAN(del);
738 minautoport = x; maxautoport = y;
742 D( fprintf(stderr, "bad port range (ignored)\n"); )
746 /* Parse an ACL from an environment variable VAR, attaching it to the list
748 static void parse_acl_env(const char *var, aclnode ***tail)
752 if ((p = getenv(var)) != 0) {
754 parse_acl_line(&q, tail);
759 /* Read the configuration from the config file and environment. */
760 static void readconfig(void)
767 parse_acl_env("NOIP_REALBIND_BEFORE", &bind_tail);
768 parse_acl_env("NOIP_REALCONNECT_BEFORE", &connect_tail);
769 if ((p = getenv("NOIP_AUTOPORTS")) != 0) {
774 if ((p = getenv("NOIP_CONFIG")) == 0)
775 snprintf(p = buf, sizeof(buf), "%s/.noip", home());
776 D( fprintf(stderr, "noip: config file: %s\n", p); )
778 if ((fp = fopen(p, "r")) == 0) {
779 D( fprintf(stderr, "noip: couldn't read config: %s\n",
783 while (fgets(buf, sizeof(buf), fp)) {
788 if (!*p || *p == '#') continue;
789 while (n && isspace(UC(buf[n - 1]))) n--;
794 if (strcmp(cmd, "socketdir") == 0)
795 sockdir = xstrdup(p);
796 else if (strcmp(cmd, "realbind") == 0)
797 parse_acl_line(&p, &bind_tail);
798 else if (strcmp(cmd, "realconnect") == 0)
799 parse_acl_line(&p, &connect_tail);
800 else if (strcmp(cmd, "autoports") == 0)
802 else if (strcmp(cmd, "debug") == 0)
803 debug = *p ? atoi(p) : 1;
805 D( fprintf(stderr, "noip: bad config command %s\n", cmd); )
810 parse_acl_env("NOIP_REALBIND", &bind_tail);
811 parse_acl_env("NOIP_REALCONNECT", &connect_tail);
812 parse_acl_env("NOIP_REALBIND_AFTER", &bind_tail);
813 parse_acl_env("NOIP_REALCONNECT_AFTER", &connect_tail);
816 if (!sockdir) sockdir = getenv("NOIP_SOCKETDIR");
818 snprintf(buf, sizeof(buf), "%s/noip-%s", tmpdir(), user());
819 sockdir = xstrdup(buf);
821 D( fprintf(stderr, "noip: socketdir: %s\n", sockdir);
822 fprintf(stderr, "noip: autoports: %u-%u\n",
823 minautoport, maxautoport);
824 fprintf(stderr, "noip: realbind acl:\n");
826 fprintf(stderr, "noip: realconnect acl:\n");
827 dump_acl(connect_real); )
830 /*----- Overridden system calls -------------------------------------------*/
832 int socket(int pf, int ty, int proto)
838 return real_socket(pf, ty, proto);
841 int socketpair(int pf, int ty, int proto, int *sk)
847 return (real_socketpair(pf, ty, proto, sk));
850 int bind(int sk, const struct sockaddr *sa, socklen_t len)
852 struct sockaddr_un sun;
854 if (sa->sa_family == AF_INET) {
856 if (acl_allows_p(bind_real, SIN(sa))) {
857 if (fixup_real_ip_socket(sk))
860 encode_inet_addr(&sun, SIN(sa), WANT_FRESH);
866 return real_bind(sk, sa, len);
869 int connect(int sk, const struct sockaddr *sa, socklen_t len)
871 struct sockaddr_un sun;
875 switch (sa->sa_family) {
878 do_implicit_bind(sk, &sa, &len, &sun);
881 rc = real_connect(sk, sa, len);
884 case ENOENT: errno = ECONNREFUSED; break;
889 rc = real_connect(sk, sa, len);
895 ssize_t sendto(int sk, const void *buf, size_t len, int flags,
896 const struct sockaddr *to, socklen_t tolen)
898 struct sockaddr_un sun;
900 if (to && to->sa_family == AF_INET) {
902 do_implicit_bind(sk, &to, &tolen, &sun);
905 return real_sendto(sk, buf, len, flags, to, tolen);
908 ssize_t recvfrom(int sk, void *buf, size_t len, int flags,
909 struct sockaddr *from, socklen_t *fromlen)
912 socklen_t mylen = sizeof(sabuf);
916 return real_recvfrom(sk, buf, len, flags, 0, 0);
918 n = real_recvfrom(sk, buf, len, flags, SA(sabuf), &mylen);
921 return_fake_name(SA(sabuf), mylen, from, fromlen);
926 ssize_t sendmsg(int sk, const struct msghdr *msg, int flags)
928 struct sockaddr_un sun;
929 const struct sockaddr *sa;
932 if (msg->msg_name && SA(msg->msg_name)->sa_family == AF_INET) {
934 sa = SA(msg->msg_name);
936 do_implicit_bind(sk, &sa, &mymsg.msg_namelen, &sun);
937 mymsg.msg_name = SA(sa);
941 return real_sendmsg(sk, msg, flags);
944 ssize_t recvmsg(int sk, struct msghdr *msg, int flags)
952 return real_recvmsg(sk, msg, flags);
954 sa = SA(msg->msg_name);
955 len = msg->msg_namelen;
956 msg->msg_name = sabuf;
957 msg->msg_namelen = sizeof(sabuf);
958 n = real_recvmsg(sk, msg, flags);
961 return_fake_name(SA(sabuf), msg->msg_namelen, sa, &len);
963 msg->msg_namelen = len;
968 int accept(int sk, struct sockaddr *sa, socklen_t *len)
971 socklen_t mylen = sizeof(sabuf);
972 int nsk = real_accept(sk, SA(sabuf), &mylen);
976 return_fake_name(SA(sabuf), mylen, sa, len);
980 int getsockname(int sk, struct sockaddr *sa, socklen_t *len)
984 socklen_t mylen = sizeof(sabuf);
985 if (real_getsockname(sk, SA(sabuf), &mylen))
987 return_fake_name(SA(sabuf), mylen, sa, len);
992 int getpeername(int sk, struct sockaddr *sa, socklen_t *len)
996 socklen_t mylen = sizeof(sabuf);
997 if (real_getpeername(sk, SA(sabuf), &mylen))
999 return_fake_name(SA(sabuf), mylen, sa, len);
1004 int getsockopt(int sk, int lev, int opt, void *p, socklen_t *len)
1014 return real_getsockopt(sk, lev, opt, p, len);
1017 int setsockopt(int sk, int lev, int opt, const void *p, socklen_t len)
1026 case SO_BINDTODEVICE:
1027 case SO_ATTACH_FILTER:
1028 case SO_DETACH_FILTER:
1031 return real_setsockopt(sk, lev, opt, p, len);
1034 /*----- Initialization ----------------------------------------------------*/
1036 /* Clean up the socket directory, deleting stale sockets. */
1037 static void cleanup_sockdir(void)
1041 struct sockaddr_in sin;
1042 struct sockaddr_un sun;
1045 if ((dir = opendir(sockdir)) == 0)
1047 sun.sun_family = AF_UNIX;
1048 while ((d = readdir(dir)) != 0) {
1049 if (d->d_name[0] == '.') continue;
1050 snprintf(sun.sun_path, sizeof(sun.sun_path),
1051 "%s/%s", sockdir, d->d_name);
1052 if (decode_inet_addr(&sin, &sun, SUN_LEN(&sun)) ||
1053 stat(sun.sun_path, &st) ||
1054 !S_ISSOCK(st.st_mode)) {
1055 D( fprintf(stderr, "noip: ignoring unknown socketdir entry `%s'\n",
1059 if (unix_socket_status(&sun, 0) == STALE) {
1060 D( fprintf(stderr, "noip: clearing away stale socket %s\n",
1062 unlink(sun.sun_path);
1068 /* Find the addresses attached to local network interfaces, and remember them
1071 static void get_local_ipaddrs(void)
1073 struct if_nameindex *ifn;
1078 ifn = if_nameindex();
1079 if ((sk = real_socket(PF_INET, SOCK_STREAM, 00)) < 0)
1081 for (i = n_local_ipaddrs = 0;
1082 n_local_ipaddrs < MAX_LOCAL_IPADDRS &&
1083 ifn[i].if_name && *ifn[i].if_name;
1085 strcpy(ifr.ifr_name, ifn[i].if_name);
1086 if (ioctl(sk, SIOCGIFADDR, &ifr) || ifr.ifr_addr.sa_family != AF_INET)
1088 local_ipaddrs[n_local_ipaddrs++] =
1089 SIN(&ifr.ifr_addr)->sin_addr;
1090 D( fprintf(stderr, "noip: local addr %s = %s\n", ifn[i].if_name,
1091 inet_ntoa(local_ipaddrs[n_local_ipaddrs - 1])); )
1096 /* Print the given message to standard error. Avoids stdio. */
1097 static void printerr(const char *p) { write(STDERR_FILENO, p, strlen(p)); }
1099 /* Create the socket directory, being careful about permissions. */
1100 static void create_sockdir(void)
1104 if (stat(sockdir, &st)) {
1105 if (errno == ENOENT) {
1106 if (mkdir(sockdir, 0700)) {
1107 perror("noip: creating socketdir");
1110 if (!stat(sockdir, &st))
1113 perror("noip: checking socketdir");
1117 if (!S_ISDIR(st.st_mode)) {
1118 printerr("noip: bad socketdir: not a directory\n");
1121 if (st.st_uid != uid) {
1122 printerr("noip: bad socketdir: not owner\n");
1125 if (st.st_mode & 077) {
1126 printerr("noip: bad socketdir: not private\n");
1131 /* Initialization function. */
1132 static void setup(void) __attribute__((constructor));
1133 static void setup(void)
1140 if ((p = getenv("NOIP_DEBUG")) && atoi(p))
1142 get_local_ipaddrs();
1149 /*----- That's all, folks -------------------------------------------------*/