socat/xio-ipapp.c

413 lines
10 KiB
C
Raw Normal View History

2008-01-28 21:37:16 +00:00
/* source: xio-ipapp.c */
/* Copyright Gerhard Rieger and contributors (see file CHANGES) */
2008-01-27 12:00:08 +00:00
/* Published under the GNU General Public License V.2, see file COPYING */
/* this file contains the source for TCP and UDP related options */
#include "xiosysincludes.h"
#if WITH_TCP || WITH_UDP
#include "xioopen.h"
#include "xio-socket.h"
#include "xio-ip.h"
#include "xio-listen.h"
#include "xio-ip6.h"
#include "xio-ipapp.h"
const struct optdesc opt_sourceport = { "sourceport", "sp", OPT_SOURCEPORT, GROUP_IPAPP, PH_LATE,TYPE_2BYTE, OFUNC_SPEC };
/*const struct optdesc opt_port = { "port", NULL, OPT_PORT, GROUP_IPAPP, PH_BIND, TYPE_USHORT, OFUNC_SPEC };*/
const struct optdesc opt_lowport = { "lowport", NULL, OPT_LOWPORT, GROUP_IPAPP, PH_LATE, TYPE_BOOL, OFUNC_SPEC };
#if WITH_IP4
/* we expect the form "host:port" */
int xioopen_ipapp_connect(int argc, const char *argv[], struct opt *opts,
int xioflags, xiofile_t *xxfd,
groups_t groups, int socktype, int ipproto,
2008-01-27 12:00:08 +00:00
int pf) {
struct single *xfd = &xxfd->stream;
struct opt *opts0 = NULL;
const char *hostname = argv[1], *portname = argv[2];
bool dofork = false;
union sockaddr_union us_sa, *us = &us_sa;
socklen_t uslen = sizeof(us_sa);
struct addrinfo *themlist, *themp;
char infobuff[256];
2008-01-27 12:00:08 +00:00
bool needbind = false;
bool lowport = false;
int level;
struct addrinfo **ai_sorted;
int i;
2023-11-05 15:29:58 +00:00
int result;
2008-01-27 12:00:08 +00:00
if (argc != 3) {
Error2("%s: wrong number of parameters (%d instead of 2)", argv[0], argc-1);
}
xfd->howtoend = END_SHUTDOWN;
if (applyopts_single(xfd, opts, PH_INIT) < 0)
return -1;
2008-01-27 12:00:08 +00:00
applyopts(-1, opts, PH_INIT);
retropt_bool(opts, OPT_FORK, &dofork);
if (_xioopen_ipapp_prepare(opts, &opts0, hostname, portname, &pf, ipproto,
xfd->para.socket.ip.ai_flags,
&themlist, us, &uslen, &needbind, &lowport,
2008-09-20 21:47:06 +00:00
socktype) != STAT_OK) {
2008-01-27 12:00:08 +00:00
return STAT_NORETRY;
}
if (dofork) {
xiosetchilddied(); /* set SIGCHLD handler */
}
if (xioparms.logopt == 'm') {
2008-01-27 12:00:08 +00:00
Info("starting connect loop, switching to syslog");
diag_set('y', xioparms.syslogfac); xioparms.logopt = 'y';
2008-01-27 12:00:08 +00:00
} else {
Info("starting connect loop");
}
/* Count addrinfo entries */
themp = themlist;
i = 0;
while (themp != NULL) {
++i;
themp = themp->ai_next;
}
ai_sorted = Calloc((i+1), sizeof(struct addrinfo *));
if (ai_sorted == NULL)
return STAT_RETRYLATER;
/* Generate a list of addresses sorted by preferred ip version */
_xio_sort_ip_addresses(themlist, ai_sorted);
do { /* loop over retries, and forks */
/* Loop over themlist - no, over ai_sorted */
result = STAT_RETRYLATER;
i = 0;
themp = ai_sorted[i++];
while (themp != NULL) {
Notice1("opening connection to %s",
sockaddr_info(themp->ai_addr, themp->ai_addrlen,
infobuff, sizeof(infobuff)));
2008-01-27 12:00:08 +00:00
#if WITH_RETRY
if (xfd->forever || xfd->retry || ai_sorted[i] != NULL) {
level = E_INFO;
} else
2008-01-27 12:00:08 +00:00
#endif /* WITH_RETRY */
level = E_ERROR;
2008-01-27 12:00:08 +00:00
result =
2008-01-27 12:00:08 +00:00
_xioopen_connect(xfd,
needbind?us:NULL, uslen,
themp->ai_addr, themp->ai_addrlen,
opts, pf?pf:themp->ai_family, socktype, ipproto,
lowport, level);
if (result == STAT_OK)
break;
themp = ai_sorted[i++];
if (themp == NULL) {
result = STAT_RETRYLATER;
}
}
2008-01-27 12:00:08 +00:00
switch (result) {
case STAT_OK: break;
#if WITH_RETRY
case STAT_RETRYLATER:
case STAT_RETRYNOW:
if (xfd->forever || xfd->retry) {
--xfd->retry;
if (result == STAT_RETRYLATER) {
Nanosleep(&xfd->intervall, NULL);
}
2015-01-06 12:07:15 +00:00
dropopts(opts, PH_ALL); free(opts); opts = copyopts(opts0, GROUP_ALL);
2008-01-27 12:00:08 +00:00
continue;
}
#endif /* WITH_RETRY */
default:
free(ai_sorted);
free(opts0);free(opts);
2008-01-27 12:00:08 +00:00
return result;
}
#if WITH_RETRY
if (dofork) {
pid_t pid;
2008-09-22 20:17:55 +00:00
int level = E_ERROR;
if (xfd->forever || xfd->retry) {
level = E_WARN; /* most users won't expect a problem here,
2008-01-27 12:00:08 +00:00
so Notice is too weak */
2008-09-22 20:17:55 +00:00
}
while ((pid = xio_fork(false, level, xfd->shutup)) < 0) {
2008-09-22 20:17:55 +00:00
if (xfd->forever || --xfd->retry) {
2008-01-27 12:00:08 +00:00
Nanosleep(&xfd->intervall, NULL); continue;
}
free(ai_sorted);
free(opts0);
2008-01-27 12:00:08 +00:00
return STAT_RETRYLATER;
}
2008-09-22 20:17:55 +00:00
if (pid == 0) { /* child process */
xfd->forever = false; xfd->retry = 0;
2008-01-27 12:00:08 +00:00
break;
}
2008-09-22 20:17:55 +00:00
2008-01-27 12:00:08 +00:00
/* parent process */
Close(xfd->fd);
/* with and without retry */
Nanosleep(&xfd->intervall, NULL);
2015-01-06 12:07:15 +00:00
dropopts(opts, PH_ALL); free(opts); opts = copyopts(opts0, GROUP_ALL);
2008-01-27 12:00:08 +00:00
continue; /* with next socket() bind() connect() */
} else
#endif /* WITH_RETRY */
{
break;
}
} while (true);
2008-09-22 20:17:55 +00:00
/* only "active" process breaks (master without fork, or child) */
free(ai_sorted);
xiofreeaddrinfo(themlist);
2008-01-27 12:00:08 +00:00
if ((result = _xio_openlate(xfd, opts)) < 0) {
2015-01-06 12:07:15 +00:00
free(opts0);free(opts);
2008-01-27 12:00:08 +00:00
return result;
}
free(opts0); free(opts);
2008-01-27 12:00:08 +00:00
return 0;
}
2008-09-20 21:47:06 +00:00
/* returns STAT_OK on success or some other value on failure
applies and consumes the following options:
PH_EARLY
OPT_PROTOCOL_FAMILY, OPT_BIND, OPT_SOURCEPORT, OPT_LOWPORT
*/
2008-01-27 12:00:08 +00:00
int
_xioopen_ipapp_prepare(
struct opt *opts,
struct opt **opts0,
const char *hostname,
const char *portname,
int *pf,
int protocol,
const int ai_flags[2],
struct addrinfo **themlist,
union sockaddr_union *us,
socklen_t *uslen,
bool *needbind,
bool *lowport,
int socktype) {
2008-01-27 12:00:08 +00:00
uint16_t port;
int result;
retropt_socket_pf(opts, pf);
if (hostname != NULL || portname != NULL) {
if ((result =
2008-01-27 12:00:08 +00:00
xiogetaddrinfo(hostname, portname,
2008-09-20 21:47:06 +00:00
*pf, socktype, protocol,
themlist, ai_flags))
2008-01-27 12:00:08 +00:00
!= STAT_OK) {
return STAT_NORETRY; /*! STAT_RETRYLATER? */
}
2008-01-27 12:00:08 +00:00
}
applyopts(-1, opts, PH_EARLY);
/* 3 means: IP address AND port accepted */
if (retropt_bind(opts, (*pf!=PF_UNSPEC)?*pf:(*themlist)->ai_family,
socktype, protocol, (struct sockaddr *)us, uslen, 3,
ai_flags)
2008-01-27 12:00:08 +00:00
!= STAT_NOACTION) {
*needbind = true;
} else {
switch ((*pf!=PF_UNSPEC)?*pf:(*themlist)->ai_family) {
2008-01-27 12:00:08 +00:00
#if WITH_IP4
case PF_INET: socket_in_init(&us->ip4); *uslen = sizeof(us->ip4); break;
#endif /* WITH_IP4 */
#if WITH_IP6
case PF_INET6: socket_in6_init(&us->ip6); *uslen = sizeof(us->ip6); break;
#endif /* WITH_IP6 */
default: Error("unsupported protocol family");
2008-01-27 12:00:08 +00:00
}
}
if (retropt_2bytes(opts, OPT_SOURCEPORT, &port) >= 0) {
switch ((*pf!=PF_UNSPEC)?*pf:(*themlist)->ai_family) {
2008-01-27 12:00:08 +00:00
#if WITH_IP4
case PF_INET: us->ip4.sin_port = htons(port); break;
#endif /* WITH_IP4 */
#if WITH_IP6
case PF_INET6: us->ip6.sin6_port = htons(port); break;
#endif /* WITH_IP6 */
default: Error("unsupported protocol family");
}
*needbind = true;
}
retropt_bool(opts, OPT_LOWPORT, lowport);
*opts0 = copyopts(opts, GROUP_ALL);
return STAT_OK;
}
#endif /* WITH_IP4 */
#if WITH_TCP && WITH_LISTEN
2008-09-20 21:47:06 +00:00
/*
applies and consumes the following options:
OPT_PROTOCOL_FAMILY, OPT_BIND
*/
int _xioopen_ipapp_listen_prepare(
struct opt *opts,
struct opt **opts0,
const char *portname,
int *pf,
int ipproto,
const int ai_flags[2],
union sockaddr_union *us,
socklen_t *uslen,
int socktype)
{
2008-01-27 12:00:08 +00:00
char *bindname = NULL;
int ai_flags2[2];
2008-01-27 12:00:08 +00:00
int result;
retropt_socket_pf(opts, pf);
retropt_string(opts, OPT_BIND, &bindname);
/* Set AI_PASSIVE, except when it is explicitely disabled */
ai_flags2[0] = ai_flags[0];
ai_flags2[1] = ai_flags[1];
if (!(ai_flags2[1] & AI_PASSIVE))
ai_flags2[0] |= AI_PASSIVE;
result =
xioresolve(bindname, portname, *pf, socktype, ipproto,
us, uslen, ai_flags2);
if (result != STAT_OK) {
2008-01-27 12:00:08 +00:00
/*! STAT_RETRY? */
return result;
}
*opts0 = copyopts(opts, GROUP_ALL);
return STAT_OK;
}
/* we expect the form: port */
/* currently only used for TCP4 */
int xioopen_ipapp_listen(int argc, const char *argv[], struct opt *opts,
int xioflags, xiofile_t *xfd,
groups_t groups, int socktype,
2008-01-27 12:00:08 +00:00
int ipproto, int pf) {
struct opt *opts0 = NULL;
union sockaddr_union us_sa, *us = &us_sa;
socklen_t uslen = sizeof(us_sa);
int result;
if (argc != 2) {
Error2("%s: wrong number of parameters (%d instead of 1)", argv[0], argc-1);
}
xioinit_ip(&pf, xioparms.default_ip);
2008-01-27 12:00:08 +00:00
if (pf == PF_UNSPEC) {
#if WITH_IP4 && WITH_IP6
switch (xioparms.default_ip) {
case '4': pf = PF_INET; break;
case '6': pf = PF_INET6; break;
default: break; /* includes \0 */
}
2008-01-27 12:00:08 +00:00
#elif WITH_IP6
pf = PF_INET6;
#else
pf = PF_INET;
#endif
}
xfd->stream.howtoend = END_SHUTDOWN;
2008-01-27 12:00:08 +00:00
if (applyopts_single(&xfd->stream, opts, PH_INIT) < 0) return -1;
2008-01-27 12:00:08 +00:00
applyopts(-1, opts, PH_INIT);
applyopts(-1, opts, PH_EARLY);
if (_xioopen_ipapp_listen_prepare(opts, &opts0, argv[1], &pf, ipproto,
xfd->stream.para.socket.ip.ai_flags,
2008-09-20 21:47:06 +00:00
us, &uslen, socktype)
2008-01-27 12:00:08 +00:00
!= STAT_OK) {
return STAT_NORETRY;
}
if ((result =
xioopen_listen(&xfd->stream, xioflags,
2008-01-27 12:00:08 +00:00
(struct sockaddr *)us, uslen,
opts, opts0, pf, socktype, ipproto))
!= 0)
return result;
return 0;
}
#endif /* WITH_IP4 && WITH_TCP && WITH_LISTEN */
/* Sort the records of an addrinfo list themp (as returned by getaddrinfo),
return the sorted list in the array ai_sorted (takes at most n entries
including the terminating NULL)
Returns 0 on success. */
int _xio_sort_ip_addresses(
struct addrinfo *themlist,
struct addrinfo **ai_sorted)
{
struct addrinfo *themp;
int i;
int ipv[3];
int ipi = 0;
/* Make a simple array of IP version preferences */
switch (xioparms.preferred_ip) {
case '0':
ipv[0] = PF_UNSPEC;
ipv[1] = -1;
break;
case '4':
ipv[0] = PF_INET;
ipv[1] = PF_INET6;
ipv[2] = -1;
break;
case '6':
ipv[0] = PF_INET6;
ipv[1] = PF_INET;
ipv[2] = -1;
break;
default:
Error("INTERNAL: undefined preferred_ip value");
return -1;
}
/* Create the sorted list */
ipi = 0;
i = 0;
while (ipv[ipi] >= 0) {
themp = themlist;
while (themp != NULL) {
if (ipv[ipi] == PF_UNSPEC) {
ai_sorted[i] = themp;
++i;
} else if (ipv[ipi] == themp->ai_family) {
ai_sorted[i] = themp;
++i;
}
themp = themp->ai_next;
}
++ipi;
}
ai_sorted[i] = NULL;
return 0;
}
2008-01-27 12:00:08 +00:00
#endif /* WITH_TCP || WITH_UDP */