fwd.c (fw_log): Report the timezone in log messages.
[fwd] / socket.c
CommitLineData
48bb1f76 1/* -*-c-*-
2 *
48bb1f76 3 * Socket source and target definitions
4 *
5 * (c) 1999 Straylight/Edgeware
6 */
7
206212ca 8/*----- Licensing notice --------------------------------------------------*
48bb1f76 9 *
9155ea97 10 * This file is part of the `fwd' port forwarder.
48bb1f76 11 *
9155ea97 12 * `fwd' is free software; you can redistribute it and/or modify
48bb1f76 13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
206212ca 16 *
9155ea97 17 * `fwd' is distributed in the hope that it will be useful,
48bb1f76 18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
206212ca 21 *
48bb1f76 22 * You should have received a copy of the GNU General Public License
9155ea97 23 * along with `fwd'; if not, write to the Free Software Foundation,
48bb1f76 24 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25 */
26
9155ea97 27#include "fwd.h"
48bb1f76 28
29/*----- Data structures ---------------------------------------------------*/
30
31/* --- Socket source options --- */
32
33typedef struct ssource_opts {
0fe44b09 34 unsigned opt;
48bb1f76 35 unsigned conn;
745cfee1 36 unsigned listen;
64c6a214 37 unsigned naccept;
48bb1f76 38} ssource_opts;
39
64c6a214 40static ssource_opts ssgo = { 256, 0, 5, 1 };
0fe44b09 41
42#define SOCKOPT_LIMIT 0u
43#define SOCKOPT_NOLIMIT 1u
44#define SOCKOPT_ONESHOT 2u
48bb1f76 45
46/* --- Socket source --- */
47
48typedef struct ssource {
49 source s;
50 addr *a;
51 target *t;
52 addr_opts *ao;
53 ssource_opts o;
54 sel_file r;
55} ssource;
56
57/* --- Socket target --- */
58
59typedef struct starget {
60 target t;
61 addr *a;
62 addr_opts *ao;
63} starget;
64
65/* --- Socket target endpoint --- */
66
67typedef struct stept {
68 endpt e;
69 conn c;
372a98e2 70 char *desc;
48bb1f76 71} stept;
72
73/* --- Socket source endpoint --- */
74
75typedef struct ssept {
76 endpt e;
77 ssource *s;
78} ssept;
79
48bb1f76 80/*----- Protocol table ----------------------------------------------------*/
81
82static addr_ops *addrs[] = { &inet_ops, &un_ops, 0 };
83
84/*----- Other persistent variables ----------------------------------------*/
85
0ac54f22 86static addr_opts gsao = { 0 }, gtao = { 0 };
48bb1f76 87
88/*----- Parsing address types ---------------------------------------------*/
89
90/* --- @getaddrtype@ --- *
91 *
92 * Arguments: @scanner *sc@ = pointer to scanner (for error reporting)
93 * @const char *p@ = pointer to protocol name
94 * @int abbrev@ = nonzero to allow abbreviations
95 *
96 * Returns: Pointer to address operations table or null.
97 *
98 * Use: Looks up a protocol name. Handy when parsing addresses and
99 * other bits of configuration. Returns null if no matching
100 * address was found.
101 */
102
103static addr_ops *getaddrtype(scanner *sc, const char *p, int abbrev)
104{
105 addr_ops **ops;
106 addr_ops *chosen = 0;
107 size_t sz = strlen(p);
108
109 for (ops = addrs; *ops; ops++) {
110 if (strncmp((*ops)->name, p, sz) == 0) {
111 if ((*ops)->name[sz] == 0)
112 return (*ops);
113 else if (chosen && abbrev)
114 error(sc, "ambiguous socket address type `%s'", p);
115 chosen = *ops;
116 }
117 }
118 if (!abbrev)
119 return (0);
120 return (chosen);
121}
122
123/* --- @getaddr@ --- *
124 *
125 * Arguments: @scanner *sc@ = pointer to scanner to read from
126 * @unsigned type@ = address type (@ADDR_SRC@ or @ADDR_DEST@)
127 *
128 * Returns: Pointer to an address successfully read.
129 *
130 * Use: Reads an optionally qualified address.
131 */
132
133static addr *getaddr(scanner *sc, unsigned type)
134{
135 addr_ops *ops = 0;
136 int abbrev = 0;
137
138 if (sc->t == ':') {
139 token(sc);
140 abbrev = 1;
141 }
142 if (sc->t == CTOK_WORD)
143 ops = getaddrtype(sc, sc->d.buf, abbrev);
144 if (ops)
145 token(sc);
146 else if (abbrev)
147 error(sc, "unknown socket address type `%s'", sc->d.buf);
148 else
149 ops = &inet_ops;
150 if (sc->t == ':')
151 token(sc);
152
153 return (ops->read(sc, type));
154}
155
156/*----- Socket endpoints --------------------------------------------------*/
157
158/* --- @wclose@ --- */
159
160static void sept_wclose(endpt *e)
161{
162 shutdown(e->out->fd, 1);
163}
164
165/* --- @close@ (source) --- */
166
167static void ss_listen(ssource */*ss*/);
168
169static void ssept_close(endpt *e)
170{
171 ssept *ee = (ssept *)e;
172
0fe44b09 173 if (ee->s->o.opt == SOCKOPT_LIMIT) {
48bb1f76 174 ee->s->o.conn++;
0fe44b09 175 if (ee->s->o.conn == 1)
176 ss_listen(ee->s);
177 }
48bb1f76 178 REFFD_DEC(ee->e.in);
179 REFFD_DEC(ee->e.out);
180 fw_dec();
181 DESTROY(ee);
182}
183
184/* --- @close@ (target) --- */
185
186static void stept_close(endpt *e)
187{
188 stept *ee = (stept *)e;
189
0d3d364b 190 if (ee->e.f & EPF_PENDING)
191 conn_kill(&ee->c);
192 else {
48bb1f76 193 REFFD_DEC(ee->e.in);
194 REFFD_DEC(ee->e.out);
195 }
196
745cfee1 197 xfree(ee->desc);
48bb1f76 198 fw_dec();
199 DESTROY(ee);
200}
201
0ac54f22 202/* --- @starget_connected@ --- *
48bb1f76 203 *
204 * Arguments: @int fd@ = file descriptor now ready for use
205 * @void *p@ = pointer to an endpoint structure
206 *
207 * Returns: ---
208 *
209 * Use: Handles successful connection of the target endpoint.
210 */
211
0ac54f22 212void starget_connected(int fd, void *p)
48bb1f76 213{
214 stept *e = p;
215
48bb1f76 216 if (fd == -1) {
217 fw_log(-1, "[%s] connection failed: %s", e->desc, strerror(errno));
0d3d364b 218 endpt_kill(&e->e);
48bb1f76 219 } else {
220 reffd *r = reffd_init(fd);
0ac54f22 221 int opt = 1;
48bb1f76 222 REFFD_INC(r);
0ac54f22 223 fdflags(fd, O_NONBLOCK, O_NONBLOCK, FD_CLOEXEC, FD_CLOEXEC);
224 setsockopt(fd, SOL_SOCKET, SO_OOBINLINE, &opt, sizeof(opt));
48bb1f76 225 e->e.in = e->e.out = r;
0d3d364b 226 e->e.f &= ~EPF_PENDING;
48bb1f76 227 if (e->e.other)
86c9bc4b 228 endpt_join(&e->e, e->e.other, 0);
48bb1f76 229 }
230}
231
232/* --- Socket endpoint definition --- */
233
234static endpt_ops ssept_ops = {
0fe44b09 235 0, 0, sept_wclose, ssept_close
48bb1f76 236};
237
238static endpt_ops stept_ops = {
0fe44b09 239 0, 0, sept_wclose, stept_close
48bb1f76 240};
241
242/*----- Source definition -------------------------------------------------*/
243
244/* --- @option@ --- */
245
246static int ssource_option(source *s, scanner *sc)
247{
248 ssource *ss = (ssource *)s;
249 ssource_opts *sso = ss ? &ss->o : &ssgo;
250
0ac54f22 251 CONF_BEGIN(sc, "socket", "socket source")
48bb1f76 252
253 /* --- Make sure the next token is a word --- */
254
255 if (sc->t != CTOK_WORD)
256 error(sc, "parse error, option keyword expected");
257
258 /* --- Handle options at this level --- */
259
260 if (strcmp(sc->d.buf, "conn") == 0) {
261 token(sc);
262 if (sc->t == '=')
263 token(sc);
0fe44b09 264 if (sc->t != CTOK_WORD)
265 error(sc, "parse error, expected `unlimited', `one-shot' or number");
266 if (isdigit((unsigned char)sc->d.buf[0])) {
267 sso->conn = atoi(sc->d.buf);
268 if (sso->conn == 0)
269 error(sc, "argument of `conn' must be positive");
270 sso->opt = SOCKOPT_LIMIT;
271 token(sc);
272 } else {
273 sso->conn = 0;
274 sso->opt = 1 + (1 & conf_enum(sc,
275 "unlimited,one-shot,infinite",
276 ENUM_ABBREV, "`conn' option"));
277 }
48bb1f76 278 CONF_ACCEPT;
279 }
280
745cfee1 281 if (strcmp(sc->d.buf, "listen") == 0) {
282 token(sc);
283 if (sc->t == '=')
284 token(sc);
285 if (sc->t != CTOK_WORD || !isdigit((unsigned char)sc->d.buf[0]))
286 error(sc, "parse error, expected number");
287 sso->listen = atoi(sc->d.buf);
288 if (sso->listen == 0)
289 error(sc, "argument of `listen' must be positive");
fed9ddde 290 token(sc);
745cfee1 291 CONF_ACCEPT;
292 }
293
64c6a214
MW
294 if (strcmp(sc->d.buf, "accept") == 0 ||
295 strcmp(sc->d.buf, "accept-count") == 0) {
296 token(sc);
297 if (sc->t == '=')
298 token(sc);
299 if (sc->t != CTOK_WORD)
300 error(sc, "parse error, expected `unlimited' or number");
301 else if (isdigit((unsigned char)sc->d.buf[0])) {
302 sso->naccept = atoi(sc->d.buf);
303 if (sso->naccept == 0)
304 error(sc, "argument of `accept-count' must be positive");
305 } else {
306 sso->naccept = 0;
307 conf_enum(sc, "unlimited,infinite",
308 ENUM_ABBREV, "`accept-count' option");
309 }
310 token(sc);
311 CONF_ACCEPT;
312 }
313
48bb1f76 314 if (strcmp(sc->d.buf, "logging") == 0 ||
315 strcmp(sc->d.buf, "log") == 0) {
0ac54f22 316 addr_opts *ao = ss ? ss->ao : &gsao;
48bb1f76 317 token(sc);
318 if (sc->t == '=')
319 token(sc);
320 if (conf_enum(sc, "no,yes", ENUM_ABBREV, "logging status"))
321 ao->f &= ~ADDRF_NOLOG;
322 else
323 ao->f |= ADDRF_NOLOG;
324 CONF_ACCEPT;
325 }
326
327 /* --- Pass the option around the various address types --- */
328
329 if (ss) {
0ac54f22 330 if (ss->a->ops->option && ss->a->ops->option(sc, ss->ao, ADDR_SRC))
48bb1f76 331 CONF_ACCEPT;
332 } else {
333 addr_ops **a;
334 for (a = addrs; *a; a++) {
0ac54f22 335 if ((*a)->option && (*a)->option(sc, 0, ADDR_GLOBAL))
48bb1f76 336 CONF_ACCEPT;
337 }
338 }
339
340 /* --- Nobody understood the option --- */
341
342 CONF_END;
343}
344
345/* --- @read@ --- */
346
347static source *ssource_read(scanner *sc)
348{
349 ssource *ss;
350
351 (void)(conf_prefix(sc, "socket") || conf_prefix(sc, "sk"));
352 ss = CREATE(ssource);
353 ss->s.ops = &ssource_ops;
354 ss->s.desc = 0;
355 ss->t = 0;
356 ss->a = getaddr(sc, ADDR_SRC);
0ac54f22 357 if (ss->a->ops->initsrcopts)
358 ss->ao = ss->a->ops->initsrcopts();
64c6a214 359 else
48bb1f76 360 ss->ao = CREATE(addr_opts);
64c6a214 361 *ss->ao = gsao;
48bb1f76 362 ss->o = ssgo;
363 return (&ss->s);
364}
365
366/* --- @ss_accept@ --- *
367 *
368 * Arguments: @int fd@ = file descriptor to accept from
369 * @unsigned mode@ = what's ready with the descriptor
370 * @void *p@ = pointer to the source definition
371 *
372 * Returns: ---
373 *
374 * Use: Accepts an incoming connection and attaches it to a target
375 * endpoint.
376 */
377
0fe44b09 378static void ssource_destroy(source */*s*/);
379
48bb1f76 380static void ss_accept(int fd, unsigned mode, void *p)
381{
382 ssource *ss = p;
383 ssept *e;
384 endpt *ee;
385 reffd *r;
64c6a214
MW
386 int acceptp = 1;
387 unsigned i = 0;
48bb1f76 388
64c6a214 389 while (acceptp) {
48bb1f76 390
64c6a214 391 /* --- Make the file descriptor --- */
48bb1f76 392
64c6a214
MW
393 {
394 int opt = 1;
395 if ((r = ss->a->ops->accept(fd, ss->ao, ss->s.desc)) == 0)
396 return;
397 setsockopt(r->fd, SOL_SOCKET, SO_OOBINLINE, &opt, sizeof(opt));
398 fdflags(r->fd, O_NONBLOCK, O_NONBLOCK, FD_CLOEXEC, FD_CLOEXEC);
399 }
48bb1f76 400
64c6a214 401 /* --- Make an endpoint --- */
48bb1f76 402
64c6a214
MW
403 e = CREATE(ssept);
404 e->e.ops = &ssept_ops;
405 e->e.other = 0;
406 e->e.f = EPF_FILE;
407 e->e.t = 0;
408 e->e.in = e->e.out = r;
409 e->s = ss;
410 REFFD_INC(r);
48bb1f76 411
64c6a214 412 /* --- Obtain the target endpoint and let rip --- */
48bb1f76 413
64c6a214
MW
414 if ((ee = ss->t->ops->create(ss->t, ss->s.desc)) == 0) {
415 REFFD_DEC(r);
416 REFFD_DEC(r);
417 DESTROY(e);
418 return;
419 }
420 fw_inc();
421
422 /* --- Note that we've done one --- */
423
424 i++;
425 if (i >= ss->o.naccept)
426 acceptp = 0;
427
428 /* --- Remove the listening socket if necessary --- */
429
430 switch (ss->o.opt) {
431 case SOCKOPT_LIMIT:
432 ss->o.conn--;
433 if (!ss->o.conn) {
434 if (!(ss->ao->f & ADDRF_NOLOG))
435 fw_log(-1, "[%s] maximum connections reached", ss->s.desc);
436 sel_rmfile(&ss->r);
437 close(ss->r.fd);
438 if (ss->a->ops->unbind)
439 ss->a->ops->unbind(ss->a);
440 acceptp = 0;
441 }
442 break;
443 case SOCKOPT_NOLIMIT:
444 break;
445 case SOCKOPT_ONESHOT:
0fe44b09 446 sel_rmfile(&ss->r);
447 close(ss->r.fd);
448 if (ss->a->ops->unbind)
449 ss->a->ops->unbind(ss->a);
64c6a214
MW
450 ssource_destroy(&ss->s);
451 acceptp = 0;
452 break;
453 }
48bb1f76 454
64c6a214 455 /* --- Let everything else happen --- */
48bb1f76 456
86c9bc4b 457 endpt_join(&e->e, ee, ss->s.desc);
64c6a214 458 }
48bb1f76 459}
460
461/* --- @ss_listen@ --- *
462 *
463 * Arguments: @ssource *ss@ = source to listen on
464 *
465 * Returns: ---
466 *
467 * Use: Sets the socket to listen again, if it stopped for some
468 * reason. This is a copy of the code in the @read@ function,
469 * because it has different (wildly different) error handling
470 * behaviour.
471 */
472
48bb1f76 473static void ss_listen(ssource *ss)
474{
48bb1f76 475 int fd;
0ac54f22 476 int opt = 1;
48bb1f76 477
0fe44b09 478 if (!(ss->ao->f & ADDRF_NOLOG))
479 fw_log(-1, "[%s] reattaching listener", ss->s.desc);
48bb1f76 480
481 /* --- Make the socket --- */
482
0ac54f22 483 if ((fd = ss->a->ops->bind(ss->a, ss->ao)) < 0) {
48bb1f76 484 fw_log(-1, "[%s] couldn't create socket: %s",
485 ss->s.desc, strerror(errno));
486 goto fail_0;
487 }
488
48bb1f76 489 /* --- Set it to listen for connections --- */
490
0ac54f22 491 setsockopt(fd, SOL_SOCKET, SO_OOBINLINE, &opt, sizeof(opt));
492 fdflags(fd, O_NONBLOCK, O_NONBLOCK, FD_CLOEXEC, FD_CLOEXEC);
745cfee1 493 if (listen(fd, ss->o.listen)) {
48bb1f76 494 fw_log(-1, "[%s] couldn't listen on socket: %s",
495 ss->s.desc, strerror(errno));
496 goto fail_1;
497 }
498
499 /* --- Set the listener up again --- */
500
501 ss->r.fd = fd;
502 sel_addfile(&ss->r);
503 return;
504
505 /* --- Tidy up if it failed --- *
506 *
507 * I'll just remove the entire source.
508 */
509
510fail_1:
511 close(fd);
512fail_0:
513 ss->o.conn = 0;
514 ssource_destroy(&ss->s);
515}
516
517/* --- @attach@ --- */
518
519static void ssource_attach(source *s, scanner *sc, target *t)
520{
521 ssource *ss = (ssource *)s;
522 int fd;
0ac54f22 523 int opt = 1;
48bb1f76 524
525 ss->t = t;
526
527 /* --- Initialize the description string --- */
528
529 {
530 dstr d = DSTR_INIT;
531 dstr_puts(&d, "socket.");
532 ss->a->ops->print(ss->a, ADDR_SRC, &d);
533 dstr_puts(&d, " -> ");
534 dstr_puts(&d, ss->t->desc);
535 ss->s.desc = xstrdup(d.buf);
536 dstr_destroy(&d);
537 }
538
ee599f55 539 /* --- Confirm the address --- */
540
541 if (ss->a->ops->confirm)
542 ss->a->ops->confirm(ss->a, ADDR_SRC, ss->ao);
543
48bb1f76 544 /* --- Initialize the socket for listening --- */
545
0ac54f22 546 if ((fd = ss->a->ops->bind(ss->a, ss->ao)) < 0)
547 error(sc, "couldn't bind socket `%s': %s", ss->s.desc, strerror(errno));
48bb1f76 548
0ac54f22 549 /* --- Set it to listen for connections --- */
48bb1f76 550
0ac54f22 551 setsockopt(fd, SOL_SOCKET, SO_OOBINLINE, &opt, sizeof(opt));
552 fdflags(fd, O_NONBLOCK, O_NONBLOCK, FD_CLOEXEC, FD_CLOEXEC);
553 if (listen(fd, ss->o.listen)) {
554 error(sc, "couldn't listen on socket `%s': %s",
555 ss->s.desc, strerror(errno));
48bb1f76 556 }
557
558 /* --- We're ready to go now --- */
559
560 sel_initfile(sel, &ss->r, fd, SEL_READ, ss_accept, ss);
561 sel_addfile(&ss->r);
562 source_add(&ss->s);
563 fw_inc();
564}
565
566/* --- @destroy@ --- */
567
568static void ssource_destroy(source *s)
569{
570 ssource *ss = (ssource *)s;
571
14865057 572 if (ss->o.conn || ss->o.opt != SOCKOPT_LIMIT) {
48bb1f76 573 sel_rmfile(&ss->r);
574 close(ss->r.fd);
575 if (ss->a->ops->unbind)
576 ss->a->ops->unbind(ss->a);
577 }
0ac54f22 578 if (ss->a->ops->freesrcopts)
579 ss->a->ops->freesrcopts(ss->ao);
48bb1f76 580 else
581 DESTROY(ss->ao);
745cfee1 582 xfree(ss->s.desc);
48bb1f76 583 ss->a->ops->destroy(ss->a);
584 ss->t->ops->destroy(ss->t);
585 source_remove(&ss->s);
586 DESTROY(ss);
587 fw_dec();
588}
589
590/* --- Source definition block --- */
591
592source_ops ssource_ops = {
593 "socket",
594 ssource_option, ssource_read, ssource_attach, ssource_destroy
595};
596
597/*----- Target definition -------------------------------------------------*/
598
0ac54f22 599/* --- @options@ --- */
600
601static int starget_option(target *t, scanner *sc)
602{
603 starget *st = (starget *)t;
604
605 CONF_BEGIN(sc, "starget", "socket target")
606
607 /* --- Pass the option around the various address types --- */
608
609 if (st) {
610 if (st->a->ops->option && st->a->ops->option(sc, st->ao, ADDR_DEST))
611 CONF_ACCEPT;
612 }
613 /* We'd have done it already if it was global */
614
615 /* --- Done --- */
616
617 CONF_END;
618}
619
48bb1f76 620/* --- @read@ --- */
621
622static target *starget_read(scanner *sc)
623{
624 starget *st;
625 dstr d = DSTR_INIT;
626
627 (void)(conf_prefix(sc, "socket") || conf_prefix(sc, "sk"));
628 st = CREATE(starget);
629 st->t.ops = &starget_ops;
630 st->a = getaddr(sc, ADDR_DEST);
0ac54f22 631 if (st->a->ops->inittargopts)
632 st->ao = st->a->ops->inittargopts();
b374625f 633 else {
0ac54f22 634 st->ao = CREATE(addr_opts);
b374625f
MW
635 *st->ao = gtao;
636 }
48bb1f76 637 dstr_puts(&d, "socket.");
638 st->a->ops->print(st->a, ADDR_DEST, &d);
639 st->t.desc = xstrdup(d.buf);
640 dstr_destroy(&d);
641 return (&st->t);
642}
643
ee599f55 644/* --- @confirm@ --- */
645
646static void starget_confirm(target *t)
647{
648 starget *st = (starget *)t;
649
650 if (st->a->ops->confirm)
651 st->a->ops->confirm(st->a, ADDR_DEST, st->ao);
652}
653
654/* --- @create@ --- */
48bb1f76 655
656static endpt *starget_create(target *t, const char *desc)
657{
658 starget *st = (starget *)t;
659 stept *e = CREATE(stept);
48bb1f76 660
48bb1f76 661 e->e.ops = &stept_ops;
662 e->e.other = 0;
0d3d364b 663 e->e.f = EPF_FILE | EPF_PENDING;
48bb1f76 664 e->e.t = 0;
372a98e2 665 e->desc = xstrdup(desc);
0ac54f22 666 if (st->a->ops->connect(st->a, st->ao, &e->c, &e->e)) {
667 fw_log(-1, "[%s] couldn't connect: %s", e->desc, strerror(errno));
48bb1f76 668 DESTROY(e);
669 return (0);
670 }
48bb1f76 671 fw_inc();
672 return (&e->e);
673}
674
675/* --- @destroy@ --- */
676
677static void starget_destroy(target *t)
678{
679 starget *st = (starget *)t;
0ac54f22 680 if (st->a->ops->freetargopts)
681 st->a->ops->freetargopts(st->ao);
682 else
683 DESTROY(st->ao);
48bb1f76 684 st->a->ops->destroy(st->a);
745cfee1 685 xfree(st->t.desc);
48bb1f76 686 DESTROY(st);
687}
688
689/* --- Socket target definition block --- */
690
691target_ops starget_ops = {
692 "socket",
ee599f55 693 starget_option, starget_read, starget_confirm,
694 starget_create, starget_destroy
48bb1f76 695};
696
697/*----- That's all, folks -------------------------------------------------*/