chiark / gitweb /
Merge branch 'master' of metalzone:public-git/preload-hacks
[preload-hacks] / noip.c
CommitLineData
1d1ccf4f
MW
1/* -*-c-*-
2 *
3 * Make programs use Unix-domain sockets instead of IP
4 *
5 * (c) 2008 Straylight/Edgeware
6 */
7
8/*----- Licensing notice --------------------------------------------------*
9 *
10 * This file is part of the preload-hacks package.
11 *
12 * Preload-hacks are free software; you can redistribute it and/or modify
13 * them under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or (at
15 * your option) any later version.
16 *
17 * Preload-hacks 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
20 * more details.
21 *
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.
25 */
26
e4976bb0 27#define _GNU_SOURCE
28#undef sun
29#undef SUN
30#define DEBUG
31
1d1ccf4f
MW
32/*----- Header files ------------------------------------------------------*/
33
e4976bb0 34#include <ctype.h>
35#include <errno.h>
36#include <stdio.h>
37#include <stdlib.h>
38
39#include <unistd.h>
40#include <dirent.h>
41#include <dlfcn.h>
42#include <fcntl.h>
43#include <pwd.h>
44
45#include <sys/ioctl.h>
46#include <sys/socket.h>
47#include <sys/stat.h>
48#include <sys/un.h>
49
50#include <netinet/in.h>
51#include <arpa/inet.h>
52#include <netinet/tcp.h>
53#include <netinet/udp.h>
54#include <net/if.h>
55
1d1ccf4f
MW
56/*----- Data structures ---------------------------------------------------*/
57
58enum { UNUSED, STALE, USED }; /* Unix socket status values */
59enum { WANT_FRESH, WANT_EXISTING }; /* Socket address dispositions */
60enum { DENY, ALLOW }; /* ACL verdicts */
61
62/* Access control list nodes */
e4976bb0 63typedef struct aclnode {
64 struct aclnode *next;
65 int act;
66 unsigned long minaddr, maxaddr;
67 unsigned short minport, maxport;
68} aclnode;
69
1d1ccf4f 70/* Local address records */
e4976bb0 71#define MAX_LOCAL_IPADDRS 16
72static struct in_addr local_ipaddrs[MAX_LOCAL_IPADDRS];
73static int n_local_ipaddrs;
74
1d1ccf4f 75/* General configuration */
e4976bb0 76static uid_t uid;
77static char *sockdir = 0;
78static int debug = 0;
f6049fdd 79static unsigned minautoport = 16384, maxautoport = 65536;
e4976bb0 80
1d1ccf4f 81/* Access control lists */
e4976bb0 82static aclnode *bind_real, **bind_tail = &bind_real;
83static aclnode *connect_real, **connect_tail = &connect_real;
84
1d1ccf4f 85/*----- Import the real versions of functions -----------------------------*/
e4976bb0 86
1d1ccf4f 87/* The list of functions to immport. */
e4976bb0 88#define IMPORTS(_) \
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)) \
104 _(close, int, (int))
105
1d1ccf4f 106/* Function pointers to set up. */
e4976bb0 107#define DECL(imp, ret, args) static ret (*real_##imp) args;
108IMPORTS(DECL)
109#undef DECL
110
1d1ccf4f 111/* Import the system calls. */
e4976bb0 112static void import(void)
113{
114#define IMPORT(imp, ret, args) \
115 real_##imp = (ret (*)args)dlsym(RTLD_NEXT, #imp);
116 IMPORTS(IMPORT)
117#undef IMPORT
118}
119
1d1ccf4f 120/*----- Utilities ---------------------------------------------------------*/
e4976bb0 121
1d1ccf4f 122/* Socket address casts */
e4976bb0 123#define SA(sa) ((struct sockaddr *)(sa))
124#define SIN(sa) ((struct sockaddr_in *)(sa))
125#define SUN(sa) ((struct sockaddr_un *)(sa))
126
1d1ccf4f 127/* Raw bytes */
e4976bb0 128#define UC(ch) ((unsigned char)(ch))
129
1d1ccf4f 130/* Memory allocation */
e4976bb0 131#define NEW(x) ((x) = xmalloc(sizeof(*x)))
132#define NEWV(x, n) ((x) = xmalloc(sizeof(*x) * (n)))
133
1d1ccf4f 134/* Debugging */
e4976bb0 135#ifdef DEBUG
136# define D(body) { if (debug) { body } }
137#else
138# define D(body) ;
139#endif
140
1d1ccf4f 141/* Preservation of error status */
e4976bb0 142#define PRESERVING_ERRNO(body) do { \
143 int _err = errno; { body } errno = _err; \
144} while (0)
145
1d1ccf4f 146/* Allocate N bytes of memory; abort on failure. */
e4976bb0 147static void *xmalloc(size_t n)
148{
149 void *p;
150 if (!n) return (0);
3ef1fec9 151 if ((p = malloc(n)) == 0) { perror("malloc"); exit(127); }
e4976bb0 152 return (p);
153}
154
1d1ccf4f 155/* Allocate a copy of the null-terminated string P; abort on failure. */
e4976bb0 156static char *xstrdup(const char *p)
157{
158 size_t n = strlen(p) + 1;
159 char *q = xmalloc(n);
160 memcpy(q, p, n);
161 return (q);
162}
1d1ccf4f 163/*----- Access control lists ----------------------------------------------*/
e4976bb0 164
165#ifdef DEBUG
166
1d1ccf4f 167/* Write to standard error a description of the ACL node A. */
e4976bb0 168static void dump_aclnode(aclnode *a)
169{
170 char minbuf[16], maxbuf[16];
171 struct in_addr amin, amax;
172
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");
178 else {
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)));
184 }
185 }
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);
190 }
191 fputc('\n', stderr);
192}
193
1d1ccf4f
MW
194static void dump_acl(aclnode *a)
195{
196 int act = ALLOW;
197
198 for (; a; a = a->next) {
199 dump_aclnode(a);
200 act = a->act;
201 }
202 fprintf(stderr, "noip: [default policy: %s]\n",
203 act == ALLOW ? "DENY" : "ALLOW");
204}
205
e4976bb0 206#endif
207
1d1ccf4f 208/* Returns nonzero if the ACL A allows the IP socket SIN. */
e4976bb0 209static int acl_allows_p(aclnode *a, const struct sockaddr_in *sin)
210{
211 unsigned long addr = ntohl(sin->sin_addr.s_addr);
212 unsigned short port = ntohs(sin->sin_port);
213 int act = ALLOW;
214
215 D( char buf[16];
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"); )
224 return (a->act);
225 }
226 act = a->act;
227 }
228 D( fprintf(stderr, "noip: nothing found: %s\n", act ? "DENY" : "ALLOW"); )
229 return (!act);
230}
231
1d1ccf4f 232/*----- Socket address conversion -----------------------------------------*/
e4976bb0 233
1d1ccf4f 234/* Return a uniformly distributed integer between MIN and MAX inclusive. */
f6049fdd 235static unsigned randrange(unsigned min, unsigned max)
236{
237 unsigned mask, i;
238
239 /* It's so nice not to have to care about the quality of the generator
240 much! */
241 max -= min;
242 for (mask = 1; mask < max; mask = (mask << 1) | 1)
243 ;
244 do i = rand() & mask; while (i > max);
245 return (i + min);
246}
247
1d1ccf4f
MW
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.
253 */
254static int unix_socket_status(struct sockaddr_un *sun, int quickp)
255{
256 struct stat st;
257 FILE *fp = 0;
258 size_t len, n;
259 int rc;
260 char buf[256];
261
262 if (stat(sun->sun_path, &st))
263 return (errno == ENOENT ? UNUSED : USED);
264 if (!S_ISSOCK(st.st_mode) || quickp)
265 return (USED);
266 rc = USED;
267 if ((fp = fopen("/proc/net/unix", "r")) == 0)
268 goto done;
269 fgets(buf, sizeof(buf), fp); /* skip header */
270 len = strlen(sun->sun_path);
271 while (fgets(buf, sizeof(buf), fp)) {
272 n = strlen(buf);
273 if (n >= len + 2 && buf[n - len - 2] == ' ' && buf[n - 1] == '\n' &&
274 memcmp(buf + n - len - 1, sun->sun_path, len) == 0)
275 goto done;
276 }
277 if (ferror(fp))
278 goto done;
279 rc = STALE;
280done:
281 if (fp) fclose(fp);
282 return (rc);
283}
284
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.
289 */
e4976bb0 290static int encode_inet_addr(struct sockaddr_un *sun,
291 const struct sockaddr_in *sin,
292 int want)
293{
294 int i;
3ef1fec9 295 int desperatep = 0;
e4976bb0 296 char buf[INET_ADDRSTRLEN];
297 int rc;
298
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);
314 }
315 } else {
f6049fdd 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;
321 }
3ef1fec9 322 for (desperatep = 0; desperatep < 2; desperatep++) {
f6049fdd 323 for (i = minautoport; i <= maxautoport; i++) {
e4976bb0 324 snprintf(sun->sun_path, sizeof(sun->sun_path), "%s/%s:%u", sockdir,
325 inet_ntop(AF_INET, &sin->sin_addr, buf, sizeof(buf)),
326 (unsigned)i);
3ef1fec9 327 rc = unix_socket_status(sun, !desperatep);
e4976bb0 328 switch (rc) {
329 case STALE: unlink(sun->sun_path);
330 case UNUSED: goto found;
331 }
332 }
333 }
334 errno = EADDRINUSE;
335 D( fprintf(stderr, " -- can't resolve\n"); )
336 return (-1);
337 found:;
338 }
339 D( fprintf(stderr, " -> `%s'\n", sun->sun_path); )
340 return (0);
341}
342
00a98a8a
MW
343/* Decode the Unix address SUN to an Internet address SIN. If
344 * DECODE_UNBOUND_P is nonzero, an empty address (indicative of an unbound
345 * Unix-domain socket) is translated to a wildcard Internet address. Returns
346 * zero on success; -1 on failure (e.g., it wasn't one of our addresses).
347 */
e4976bb0 348static int decode_inet_addr(struct sockaddr_in *sin,
349 const struct sockaddr_un *sun,
00a98a8a
MW
350 socklen_t len,
351 int decode_unbound_p)
e4976bb0 352{
353 char buf[INET_ADDRSTRLEN + 16];
354 char *p;
355 size_t n = strlen(sockdir), nn = strlen(sun->sun_path);
356 struct sockaddr_in sin_mine;
357 unsigned long port;
358
359 if (!sin)
360 sin = &sin_mine;
361 if (sun->sun_family != AF_UNIX)
362 return (-1);
363 if (len < sizeof(sun)) ((char *)sun)[len] = 0;
364 D( fprintf(stderr, "noip: decode (%d) `%s'",
365 *sun->sun_path, sun->sun_path); )
00a98a8a 366 if (decode_unbound_p && !sun->sun_path[0]) {
e4976bb0 367 sin->sin_family = AF_INET;
368 sin->sin_addr.s_addr = INADDR_ANY;
369 sin->sin_port = 0;
370 D( fprintf(stderr, " -- unbound socket\n"); )
371 return (0);
372 }
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"); )
376 return (-1);
377 }
378 memcpy(buf, sun->sun_path + n + 1, nn - n);
379 if ((p = strchr(buf, ':')) == 0) {
380 D( fprintf(stderr, " -- malformed (no port)\n"); )
381 return (-1);
382 }
383 *p++ = 0;
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); )
387 return (-1);
388 }
389 port = strtoul(p, &p, 10);
390 if (*p || port >= 65536) {
391 D( fprintf(stderr, " -- malformed (port out of range)"); )
392 return (-1);
393 }
394 sin->sin_port = htons(port);
395 D( fprintf(stderr, " -> %s:%u\n",
396 inet_ntop(AF_INET, &sin->sin_addr, buf, sizeof(buf)),
397 (unsigned)port); )
398 return (0);
399}
400
1d1ccf4f
MW
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.
404 */
e4976bb0 405static int fixup_real_ip_socket(int sk)
406{
407 int nsk;
408 int type;
409 int f, fd;
410 struct sockaddr_un sun;
411 struct sockaddr_in sin;
412 socklen_t len;
413
414#define OPTS(_) \
415 _(DEBUG, int) \
416 _(REUSEADDR, int) \
417 _(DONTROUTE, int) \
418 _(BROADCAST, int) \
419 _(SNDBUF, int) \
420 _(RCVBUF, int) \
421 _(OOBINLINE, int) \
422 _(NO_CHECK, int) \
423 _(LINGER, struct linger) \
424 _(BSDCOMPAT, int) \
425 _(RCVLOWAT, int) \
426 _(RCVTIMEO, struct timeval) \
427 _(SNDTIMEO, struct timeval)
428
429 len = sizeof(sun);
430 if (real_getsockname(sk, SA(&sun), &len))
431 return (-1);
00a98a8a 432 if (decode_inet_addr(&sin, &sun, len, 1))
e4976bb0 433 return (0); /* Not one of ours */
434 len = sizeof(type);
435 if (real_getsockopt(sk, SOL_SOCKET, SO_TYPE, &type, &len) < 0 ||
436 (nsk = real_socket(PF_INET, type, 0)) < 0)
437 return (-1);
438#define FIX(opt, ty) do { \
439 ty ov_; \
440 len = sizeof(ov_); \
441 if (real_getsockopt(sk, SOL_SOCKET, SO_##opt, &ov_, &len) < 0 || \
442 real_setsockopt(nsk, SOL_SOCKET, SO_##opt, &ov_, len)) { \
443 real_close(nsk); \
444 return (-1); \
445 } \
446} while (0);
447 OPTS(FIX)
448#undef FIX
449 if ((f = fcntl(sk, F_GETFL)) < 0 ||
450 (fd = fcntl(sk, F_GETFD)) < 0 ||
451 fcntl(nsk, F_SETFL, f) < 0 ||
452 dup2(nsk, sk) < 0) {
453 real_close(nsk);
454 return (-1);
455 }
456 unlink(sun.sun_path);
457 real_close(nsk);
458 if (fcntl(sk, F_SETFD, fd) < 0) {
459 perror("noip: fixup_real_ip_socket F_SETFD");
460 abort();
461 }
462 return (0);
463}
464
1d1ccf4f
MW
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.
467 */
e4976bb0 468static int do_implicit_bind(int sk, const struct sockaddr **sa,
469 socklen_t *len, struct sockaddr_un *sun)
470{
471 struct sockaddr_in sin;
472 socklen_t mylen = sizeof(*sun);
473
474 if (acl_allows_p(connect_real, SIN(*sa))) {
475 if (fixup_real_ip_socket(sk))
476 return (-1);
477 } else {
478 if (real_getsockname(sk, SA(sun), &mylen) < 0)
479 return (-1);
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;
4ab301de 484 sin.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
e4976bb0 485 sin.sin_port = 0;
486 encode_inet_addr(sun, &sin, WANT_FRESH);
487 if (real_bind(sk, SA(sun), SUN_LEN(sun)))
488 return (-1);
489 }
490 encode_inet_addr(sun, SIN(*sa), WANT_EXISTING);
491 *sa = SA(sun);
492 *len = SUN_LEN(sun);
493 }
494 }
495 return (0);
496}
497
1d1ccf4f
MW
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
501 * at FAKELEN.
502 */
e4976bb0 503static void return_fake_name(struct sockaddr *sa, socklen_t len,
504 struct sockaddr *fake, socklen_t *fakelen)
505{
506 struct sockaddr_in sin;
507 socklen_t alen;
508
00a98a8a
MW
509 if (sa->sa_family == AF_UNIX &&
510 !decode_inet_addr(&sin, SUN(sa), len, 0)) {
e4976bb0 511 sa = SA(&sin);
512 len = sizeof(sin);
513 }
514 alen = len;
515 if (len > *fakelen)
516 len = *fakelen;
517 if (len > 0)
518 memcpy(fake, sa, len);
519 *fakelen = alen;
520}
521
1d1ccf4f 522/*----- Configuration -----------------------------------------------------*/
e4976bb0 523
1d1ccf4f 524/* Return the process owner's home directory. */
e4976bb0 525static char *home(void)
526{
527 char *p;
528 struct passwd *pw;
529
3ef1fec9 530 if (getuid() == uid &&
531 (p = getenv("HOME")) != 0)
532 return (p);
533 else if ((pw = getpwuid(uid)) != 0)
534 return (pw->pw_dir);
535 else
536 return "/notexist";
e4976bb0 537}
538
1d1ccf4f 539/* Return a good temporary directory to use. */
e4976bb0 540static char *tmpdir(void)
541{
542 char *p;
543
544 if ((p = getenv("TMPDIR")) != 0) return (p);
545 else if ((p = getenv("TMP")) != 0) return (p);
546 else return ("/tmp");
547}
548
1d1ccf4f 549/* Return the user's name, or at least something distinctive. */
e4976bb0 550static char *user(void)
551{
552 static char buf[16];
553 char *p;
554 struct passwd *pw;
555
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);
559 else {
560 snprintf(buf, sizeof(buf), "uid-%lu", (unsigned long)uid);
561 return (buf);
562 }
563}
564
1d1ccf4f 565/* Skip P over space characters. */
e4976bb0 566#define SKIPSPC do { while (*p && isspace(UC(*p))) p++; } while (0)
1d1ccf4f
MW
567
568/* Set Q to point to the next word following P, null-terminate it, and step P
569 * past it. */
e4976bb0 570#define NEXTWORD(q) do { \
571 SKIPSPC; \
572 q = p; \
573 while (*p && !isspace(UC(*p))) p++; \
574 if (*p) *p++ = 0; \
575} while (0)
1d1ccf4f
MW
576
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. */
e4976bb0 579#define NEXTADDR(q, del) do { \
580 SKIPSPC; \
581 q = p; \
582 while (*p && (*p == '.' || isdigit(UC(*p)))) p++; \
583 del = *p; \
584 if (*p) *p++ = 0; \
585} while (0)
1d1ccf4f
MW
586
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. */
e4976bb0 589#define NEXTNUMBER(q, del) do { \
590 SKIPSPC; \
591 q = p; \
592 while (*p && isdigit(UC(*p))) p++; \
593 del = *p; \
594 if (*p) *p++ = 0; \
595} while (0)
1d1ccf4f
MW
596
597/* Push the character DEL back so we scan it again, unless it's zero
598 * (end-of-file). */
e4976bb0 599#define RESCAN(del) do { if (del) *--p = del; } while (0)
1d1ccf4f
MW
600
601/* Evaluate true if P is pointing to the word KW (and not some longer string
602 * of which KW is a prefix). */
603
e4976bb0 604#define KWMATCHP(kw) (strncmp(p, kw, sizeof(kw) - 1) == 0 && \
605 !isalnum(UC(p[sizeof(kw) - 1])) && \
606 (p += sizeof(kw) - 1))
9f82ba1f 607
1d1ccf4f
MW
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.
612 */
e4976bb0 613static void parse_ports(char **pp, unsigned short *min, unsigned short *max)
614{
615 char *p = *pp, *q;
616 int del;
617
618 SKIPSPC;
f6049fdd 619 if (*p != ':')
620 { *min = 0; *max = 0xffff; }
621 else {
e4976bb0 622 p++;
f6049fdd 623 NEXTNUMBER(q, del); *min = strtoul(q, 0, 0); RESCAN(del);
e4976bb0 624 SKIPSPC;
f6049fdd 625 if (*p == '-')
d83beb5c 626 { p++; NEXTNUMBER(q, del); *max = strtoul(q, 0, 0); RESCAN(del); }
f6049fdd 627 else
e4976bb0 628 *max = *min;
629 }
630 *pp = p;
631}
632
1d1ccf4f
MW
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.
636 */
e4976bb0 637#define ACLNODE(tail_, act_, \
638 minaddr_, maxaddr_, minport_, maxport_) do { \
639 aclnode *a_; \
640 NEW(a_); \
641 a_->act = act_; \
642 a_->minaddr = minaddr_; a_->maxaddr = maxaddr_; \
643 a_->minport = minport_; a_->maxport = maxport_; \
644 *tail_ = a_; tail_ = &a_->next; \
645} while (0)
646
1d1ccf4f
MW
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..
652 */
e4976bb0 653static void parse_acl_line(char **pp, aclnode ***tail)
654{
655 struct in_addr addr;
656 unsigned long minaddr, maxaddr, mask;
657 unsigned short minport, maxport;
658 int i, n;
659 int act;
660 int del;
661 char *p = *pp;
662 char *q;
663
a6d9626b 664 for (;;) {
665 SKIPSPC;
666 if (*p == '+') act = ALLOW;
667 else if (*p == '-') act = DENY;
668 else goto bad;
e4976bb0 669
a6d9626b 670 p++;
671 SKIPSPC;
672 if (KWMATCHP("any")) {
e4976bb0 673 minaddr = 0;
674 maxaddr = 0xffffffff;
a6d9626b 675 goto justone;
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);
683 }
e4976bb0 684 } else {
a6d9626b 685 if (*p == ':') {
686 minaddr = 0;
687 maxaddr = 0xffffffff;
688 } else {
e4976bb0 689 NEXTADDR(q, del);
690 if (inet_pton(AF_INET, q, &addr) <= 0) goto bad;
a6d9626b 691 minaddr = ntohl(addr.s_addr);
e4976bb0 692 RESCAN(del);
a6d9626b 693 SKIPSPC;
694 if (*p == '-') {
695 p++;
696 NEXTADDR(q, del);
e4976bb0 697 if (inet_pton(AF_INET, q, &addr) <= 0) goto bad;
a6d9626b 698 RESCAN(del);
699 maxaddr = ntohl(addr.s_addr);
700 } else if (*p == '/') {
701 p++;
702 NEXTADDR(q, del);
703 if (strchr(q, '.')) {
704 if (inet_pton(AF_INET, q, &addr) <= 0) goto bad;
705 mask = ntohl(addr.s_addr);
706 } else {
f6049fdd 707 n = strtoul(q, 0, 0);
a6d9626b 708 mask = (~0ul << (32 - n)) & 0xffffffff;
709 }
710 RESCAN(del);
711 minaddr &= mask;
712 maxaddr = minaddr | (mask ^ 0xffffffff);
713 } else
714 maxaddr = minaddr;
715 }
716 justone:
717 parse_ports(&p, &minport, &maxport);
718 ACLNODE(*tail, act, minaddr, maxaddr, minport, maxport);
e4976bb0 719 }
a6d9626b 720 SKIPSPC;
721 if (*p != ',') break;
722 p++;
e4976bb0 723 }
724 return;
725
726bad:
727 D( fprintf(stderr, "noip: bad acl spec (ignored)\n"); )
728 return;
729}
730
1d1ccf4f 731/* Parse the autoports configuration directive. Syntax is MIN - MAX. */
f6049fdd 732static void parse_autoports(char **pp)
733{
734 char *p = *pp, *q;
735 unsigned x, y;
736 int del;
737
738 SKIPSPC;
739 NEXTNUMBER(q, del); x = strtoul(q, 0, 0); RESCAN(del);
740 SKIPSPC;
741 if (*p != '-') goto bad; p++;
742 NEXTNUMBER(q, del); y = strtoul(q, 0, 0); RESCAN(del);
743 minautoport = x; maxautoport = y;
744 return;
745
746bad:
747 D( fprintf(stderr, "bad port range (ignored)\n"); )
748 return;
749}
750
1d1ccf4f
MW
751/* Parse an ACL from an environment variable VAR, attaching it to the list
752 * TAIL. */
a6d9626b 753static void parse_acl_env(const char *var, aclnode ***tail)
754{
f6049fdd 755 char *p, *q;
a6d9626b 756
757 if ((p = getenv(var)) != 0) {
f6049fdd 758 p = q = xstrdup(p);
759 parse_acl_line(&q, tail);
a6d9626b 760 free(p);
761 }
762}
763
1d1ccf4f 764/* Read the configuration from the config file and environment. */
e4976bb0 765static void readconfig(void)
766{
767 FILE *fp;
768 char buf[1024];
769 size_t n;
f6049fdd 770 char *p, *q, *cmd;
e4976bb0 771
a6d9626b 772 parse_acl_env("NOIP_REALBIND_BEFORE", &bind_tail);
773 parse_acl_env("NOIP_REALCONNECT_BEFORE", &connect_tail);
f6049fdd 774 if ((p = getenv("NOIP_AUTOPORTS")) != 0) {
775 p = q = xstrdup(p);
776 parse_autoports(&q);
777 free(p);
778 }
4ab301de 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); )
782
783 if ((fp = fopen(p, "r")) == 0) {
784 D( fprintf(stderr, "noip: couldn't read config: %s\n",
785 strerror(errno)); )
f6049fdd 786 goto done;
4ab301de 787 }
e4976bb0 788 while (fgets(buf, sizeof(buf), fp)) {
789 n = strlen(buf);
790 p = buf;
791
792 SKIPSPC;
793 if (!*p || *p == '#') continue;
794 while (n && isspace(UC(buf[n - 1]))) n--;
795 buf[n] = 0;
796 NEXTWORD(cmd);
797 SKIPSPC;
798
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);
f6049fdd 805 else if (strcmp(cmd, "autoports") == 0)
806 parse_autoports(&p);
e4976bb0 807 else if (strcmp(cmd, "debug") == 0)
808 debug = *p ? atoi(p) : 1;
809 else
810 D( fprintf(stderr, "noip: bad config command %s\n", cmd); )
811 }
812 fclose(fp);
813
814done:
a6d9626b 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);
e4976bb0 819 *bind_tail = 0;
820 *connect_tail = 0;
a6d9626b 821 if (!sockdir) sockdir = getenv("NOIP_SOCKETDIR");
e4976bb0 822 if (!sockdir) {
823 snprintf(buf, sizeof(buf), "%s/noip-%s", tmpdir(), user());
824 sockdir = xstrdup(buf);
825 }
3ef1fec9 826 D( fprintf(stderr, "noip: socketdir: %s\n", sockdir);
f6049fdd 827 fprintf(stderr, "noip: autoports: %u-%u\n",
828 minautoport, maxautoport);
e4976bb0 829 fprintf(stderr, "noip: realbind acl:\n");
830 dump_acl(bind_real);
831 fprintf(stderr, "noip: realconnect acl:\n");
832 dump_acl(connect_real); )
833}
834
1d1ccf4f 835/*----- Overridden system calls -------------------------------------------*/
e4976bb0 836
837int socket(int pf, int ty, int proto)
838{
8ce11853
MW
839 switch (pf) {
840 case PF_INET:
841 pf = PF_UNIX;
842 proto = 0;
843 case PF_UNIX:
844 return real_socket(pf, ty, proto);
845 default:
846 errno = EAFNOSUPPORT;
847 return -1;
e4976bb0 848 }
e4976bb0 849}
850
851int socketpair(int pf, int ty, int proto, int *sk)
852{
853 if (pf == PF_INET) {
854 pf = PF_UNIX;
855 proto = 0;
856 }
857 return (real_socketpair(pf, ty, proto, sk));
858}
859
860int bind(int sk, const struct sockaddr *sa, socklen_t len)
861{
862 struct sockaddr_un sun;
863
9f82ba1f 864 if (sa->sa_family == AF_INET) {
e4976bb0 865 PRESERVING_ERRNO({
866 if (acl_allows_p(bind_real, SIN(sa))) {
867 if (fixup_real_ip_socket(sk))
868 return (-1);
869 } else {
870 encode_inet_addr(&sun, SIN(sa), WANT_FRESH);
871 sa = SA(&sun);
872 len = SUN_LEN(&sun);
873 }
874 });
875 }
876 return real_bind(sk, sa, len);
877}
878
879int connect(int sk, const struct sockaddr *sa, socklen_t len)
880{
881 struct sockaddr_un sun;
53390eff
MW
882 int fixup_p = 0;
883 int rc;
e4976bb0 884
6df6f816
MW
885 switch (sa->sa_family) {
886 case AF_INET:
887 PRESERVING_ERRNO({
888 do_implicit_bind(sk, &sa, &len, &sun);
889 fixup_p = 1;
890 });
891 rc = real_connect(sk, sa, len);
892 if (rc < 0) {
893 switch (errno) {
894 case ENOENT: errno = ECONNREFUSED; break;
895 }
896 }
897 break;
898 default:
899 rc = real_connect(sk, sa, len);
900 break;
53390eff
MW
901 }
902 return rc;
e4976bb0 903}
904
905ssize_t sendto(int sk, const void *buf, size_t len, int flags,
906 const struct sockaddr *to, socklen_t tolen)
907{
908 struct sockaddr_un sun;
909
910 if (to && to->sa_family == AF_INET) {
911 PRESERVING_ERRNO({
912 do_implicit_bind(sk, &to, &tolen, &sun);
913 });
914 }
915 return real_sendto(sk, buf, len, flags, to, tolen);
916}
917
918ssize_t recvfrom(int sk, void *buf, size_t len, int flags,
919 struct sockaddr *from, socklen_t *fromlen)
920{
921 char sabuf[1024];
922 socklen_t mylen = sizeof(sabuf);
923 ssize_t n;
924
925 if (!from)
926 return real_recvfrom(sk, buf, len, flags, 0, 0);
927 PRESERVING_ERRNO({
928 n = real_recvfrom(sk, buf, len, flags, SA(sabuf), &mylen);
929 if (n < 0)
930 return (-1);
931 return_fake_name(SA(sabuf), mylen, from, fromlen);
932 });
933 return (n);
934}
935
936ssize_t sendmsg(int sk, const struct msghdr *msg, int flags)
937{
938 struct sockaddr_un sun;
939 const struct sockaddr *sa;
940 struct msghdr mymsg;
941
942 if (msg->msg_name && SA(msg->msg_name)->sa_family == AF_INET) {
943 PRESERVING_ERRNO({
944 sa = SA(msg->msg_name);
945 mymsg = *msg;
946 do_implicit_bind(sk, &sa, &mymsg.msg_namelen, &sun);
947 mymsg.msg_name = SA(sa);
948 msg = &mymsg;
949 });
950 }
951 return real_sendmsg(sk, msg, flags);
952}
953
954ssize_t recvmsg(int sk, struct msghdr *msg, int flags)
955{
956 char sabuf[1024];
957 struct sockaddr *sa;
958 socklen_t len;
959 ssize_t n;
960
961 if (!msg->msg_name)
962 return real_recvmsg(sk, msg, flags);
963 PRESERVING_ERRNO({
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);
969 if (n < 0)
970 return (-1);
971 return_fake_name(SA(sabuf), msg->msg_namelen, sa, &len);
972 msg->msg_name = sa;
973 msg->msg_namelen = len;
974 });
975 return (n);
976}
977
978int accept(int sk, struct sockaddr *sa, socklen_t *len)
979{
980 char sabuf[1024];
981 socklen_t mylen = sizeof(sabuf);
982 int nsk = real_accept(sk, SA(sabuf), &mylen);
983
984 if (nsk < 0)
985 return (-1);
986 return_fake_name(SA(sabuf), mylen, sa, len);
987 return (nsk);
988}
989
990int getsockname(int sk, struct sockaddr *sa, socklen_t *len)
991{
992 PRESERVING_ERRNO({
993 char sabuf[1024];
994 socklen_t mylen = sizeof(sabuf);
995 if (real_getsockname(sk, SA(sabuf), &mylen))
996 return (-1);
997 return_fake_name(SA(sabuf), mylen, sa, len);
998 });
999 return (0);
1000}
1001
1002int getpeername(int sk, struct sockaddr *sa, socklen_t *len)
1003{
1004 PRESERVING_ERRNO({
1005 char sabuf[1024];
1006 socklen_t mylen = sizeof(sabuf);
1007 if (real_getpeername(sk, SA(sabuf), &mylen))
1008 return (-1);
1009 return_fake_name(SA(sabuf), mylen, sa, len);
1010 });
1011 return (0);
1012}
1013
1014int getsockopt(int sk, int lev, int opt, void *p, socklen_t *len)
1015{
1016 switch (lev) {
1017 case SOL_IP:
1018 case SOL_TCP:
1019 case SOL_UDP:
1020 if (*len > 0)
1021 memset(p, 0, *len);
1022 return (0);
1023 }
1024 return real_getsockopt(sk, lev, opt, p, len);
1025}
1026
1027int setsockopt(int sk, int lev, int opt, const void *p, socklen_t len)
1028{
1029 switch (lev) {
1030 case SOL_IP:
1031 case SOL_TCP:
1032 case SOL_UDP:
1033 return (0);
1034 }
1035 switch (opt) {
1036 case SO_BINDTODEVICE:
1037 case SO_ATTACH_FILTER:
1038 case SO_DETACH_FILTER:
1039 return (0);
1040 }
1041 return real_setsockopt(sk, lev, opt, p, len);
1042}
1043
1d1ccf4f 1044/*----- Initialization ----------------------------------------------------*/
e4976bb0 1045
1d1ccf4f 1046/* Clean up the socket directory, deleting stale sockets. */
e4976bb0 1047static void cleanup_sockdir(void)
1048{
1049 DIR *dir;
1050 struct dirent *d;
3ef1fec9 1051 struct sockaddr_in sin;
e4976bb0 1052 struct sockaddr_un sun;
3ef1fec9 1053 struct stat st;
e4976bb0 1054
1055 if ((dir = opendir(sockdir)) == 0)
1056 return;
4ab301de 1057 sun.sun_family = AF_UNIX;
e4976bb0 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);
00a98a8a 1062 if (decode_inet_addr(&sin, &sun, SUN_LEN(&sun), 0) ||
3ef1fec9 1063 stat(sun.sun_path, &st) ||
4ab301de 1064 !S_ISSOCK(st.st_mode)) {
1065 D( fprintf(stderr, "noip: ignoring unknown socketdir entry `%s'\n",
1066 sun.sun_path); )
3ef1fec9 1067 continue;
4ab301de 1068 }
e4976bb0 1069 if (unix_socket_status(&sun, 0) == STALE) {
1070 D( fprintf(stderr, "noip: clearing away stale socket %s\n",
1071 d->d_name); )
1072 unlink(sun.sun_path);
1073 }
1074 }
1075 closedir(dir);
1076}
1077
1d1ccf4f
MW
1078/* Find the addresses attached to local network interfaces, and remember them
1079 * in a table.
1080 */
e4976bb0 1081static void get_local_ipaddrs(void)
1082{
1083 struct if_nameindex *ifn;
1084 struct ifreq ifr;
1085 int sk;
1086 int i;
1087
1088 ifn = if_nameindex();
1089 if ((sk = real_socket(PF_INET, SOCK_STREAM, 00)) < 0)
1090 return;
1091 for (i = n_local_ipaddrs = 0;
1092 n_local_ipaddrs < MAX_LOCAL_IPADDRS &&
1093 ifn[i].if_name && *ifn[i].if_name;
1094 i++) {
1095 strcpy(ifr.ifr_name, ifn[i].if_name);
1096 if (ioctl(sk, SIOCGIFADDR, &ifr) || ifr.ifr_addr.sa_family != AF_INET)
1097 continue;
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])); )
1102 }
1103 close(sk);
1104}
1105
1d1ccf4f 1106/* Print the given message to standard error. Avoids stdio. */
3ef1fec9 1107static void printerr(const char *p) { write(STDERR_FILENO, p, strlen(p)); }
1108
1d1ccf4f 1109/* Create the socket directory, being careful about permissions. */
3ef1fec9 1110static void create_sockdir(void)
1111{
1112 struct stat st;
1113
1114 if (stat(sockdir, &st)) {
1115 if (errno == ENOENT) {
1116 if (mkdir(sockdir, 0700)) {
1117 perror("noip: creating socketdir");
1118 exit(127);
1119 }
1120 if (!stat(sockdir, &st))
1121 goto check;
1122 }
1123 perror("noip: checking socketdir");
1124 exit(127);
1125 }
1126check:
1127 if (!S_ISDIR(st.st_mode)) {
1128 printerr("noip: bad socketdir: not a directory\n");
1129 exit(127);
1130 }
1131 if (st.st_uid != uid) {
1132 printerr("noip: bad socketdir: not owner\n");
1133 exit(127);
1134 }
1135 if (st.st_mode & 077) {
1136 printerr("noip: bad socketdir: not private\n");
1137 exit(127);
1138 }
1139}
1140
1d1ccf4f
MW
1141/* Initialization function. */
1142static void setup(void) __attribute__((constructor));
e4976bb0 1143static void setup(void)
1144{
1145 PRESERVING_ERRNO({
1146 char *p;
1147
1148 import();
3ef1fec9 1149 uid = geteuid();
e4976bb0 1150 if ((p = getenv("NOIP_DEBUG")) && atoi(p))
1151 debug = 1;
1152 get_local_ipaddrs();
1153 readconfig();
3ef1fec9 1154 create_sockdir();
e4976bb0 1155 cleanup_sockdir();
1156 });
1157}
1d1ccf4f
MW
1158
1159/*----- That's all, folks -------------------------------------------------*/