mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-22 13:06:06 +03:00
Add idle option, so we can stop iodine and start it on demand with systemd
This commit is contained in:
parent
717f1d5d26
commit
abd276ed9e
@ -71,6 +71,8 @@ iodine, iodined \- tunnel IPv4 over DNS
|
|||||||
.I context
|
.I context
|
||||||
.B ] [-F
|
.B ] [-F
|
||||||
.I pidfile
|
.I pidfile
|
||||||
|
.B ] [-i
|
||||||
|
.I max_idle_time
|
||||||
.B ]
|
.B ]
|
||||||
.I tunnel_ip
|
.I tunnel_ip
|
||||||
.B [
|
.B [
|
||||||
@ -278,6 +280,10 @@ same as 'port'.
|
|||||||
.B Note:
|
.B Note:
|
||||||
The forwarding is not fully transparent, and not advised for use
|
The forwarding is not fully transparent, and not advised for use
|
||||||
in production environments.
|
in production environments.
|
||||||
|
.TP
|
||||||
|
.B -i max_idle_time
|
||||||
|
Make the server stop itself after max_idle_time seconds if no traffic have been received.
|
||||||
|
This should be combined with systemd or upstart on demand activation for being effective.
|
||||||
.SS Client Arguments:
|
.SS Client Arguments:
|
||||||
.TP
|
.TP
|
||||||
.B nameserver
|
.B nameserver
|
||||||
|
@ -1688,12 +1688,13 @@ tunnel_dns(int tun_fd, int dns_fd, int bind_fd)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
tunnel(int tun_fd, int dns_fd, int bind_fd)
|
tunnel(int tun_fd, int dns_fd, int bind_fd, int max_idle_time)
|
||||||
{
|
{
|
||||||
struct timeval tv;
|
struct timeval tv;
|
||||||
fd_set fds;
|
fd_set fds;
|
||||||
int i;
|
int i;
|
||||||
int userid;
|
int userid;
|
||||||
|
time_t last_action = time(NULL);
|
||||||
|
|
||||||
while (running) {
|
while (running) {
|
||||||
int maxfd;
|
int maxfd;
|
||||||
@ -1745,7 +1746,19 @@ tunnel(int tun_fd, int dns_fd, int bind_fd)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (i==0) {
|
if (i==0) {
|
||||||
/* timeout; whatever; doesn't matter anymore */
|
if (max_idle_time) {
|
||||||
|
/* only trigger the check if that's worth ( ie, no need to loop over if there
|
||||||
|
is something to send */
|
||||||
|
if (last_action + max_idle_time < time(NULL)) {
|
||||||
|
for (userid = 0; userid < created_users; userid++) {
|
||||||
|
last_action = ( users[userid].last_pkt > last_action ) ? users[userid].last_pkt : last_action;
|
||||||
|
}
|
||||||
|
if (last_action + max_idle_time < time(NULL)) {
|
||||||
|
fprintf(stderr, "Idling since too long, shutting down...\n");
|
||||||
|
running = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
if (FD_ISSET(tun_fd, &fds)) {
|
if (FD_ISSET(tun_fd, &fds)) {
|
||||||
tunnel_tun(tun_fd, dns_fd);
|
tunnel_tun(tun_fd, dns_fd);
|
||||||
@ -2172,7 +2185,7 @@ usage() {
|
|||||||
fprintf(stderr, "Usage: %s [-v] [-h] [-c] [-s] [-f] [-D] [-u user] "
|
fprintf(stderr, "Usage: %s [-v] [-h] [-c] [-s] [-f] [-D] [-u user] "
|
||||||
"[-t chrootdir] [-d device] [-m mtu] [-z context] "
|
"[-t chrootdir] [-d device] [-m mtu] [-z context] "
|
||||||
"[-l ip address to listen on] [-p port] [-n external ip] "
|
"[-l ip address to listen on] [-p port] [-n external ip] "
|
||||||
"[-b dnsport] [-P password] [-F pidfile] "
|
"[-b dnsport] [-P password] [-F pidfile] [-i max idle time] "
|
||||||
"tunnel_ip[/netmask] topdomain\n", __progname);
|
"tunnel_ip[/netmask] topdomain\n", __progname);
|
||||||
exit(2);
|
exit(2);
|
||||||
}
|
}
|
||||||
@ -2206,6 +2219,7 @@ help() {
|
|||||||
fprintf(stderr, " -b port to forward normal DNS queries to (on localhost)\n");
|
fprintf(stderr, " -b port to forward normal DNS queries to (on localhost)\n");
|
||||||
fprintf(stderr, " -P password used for authentication (max 32 chars will be used)\n");
|
fprintf(stderr, " -P password used for authentication (max 32 chars will be used)\n");
|
||||||
fprintf(stderr, " -F pidfile to write pid to a file\n");
|
fprintf(stderr, " -F pidfile to write pid to a file\n");
|
||||||
|
fprintf(stderr, " -i maximum idle time before shutting down\n");
|
||||||
fprintf(stderr, "tunnel_ip is the IP number of the local tunnel interface.\n");
|
fprintf(stderr, "tunnel_ip is the IP number of the local tunnel interface.\n");
|
||||||
fprintf(stderr, " /netmask sets the size of the tunnel network.\n");
|
fprintf(stderr, " /netmask sets the size of the tunnel network.\n");
|
||||||
fprintf(stderr, "topdomain is the FQDN that is delegated to this server.\n");
|
fprintf(stderr, "topdomain is the FQDN that is delegated to this server.\n");
|
||||||
@ -2250,6 +2264,7 @@ main(int argc, char **argv)
|
|||||||
char *netsize;
|
char *netsize;
|
||||||
int ns_get_externalip;
|
int ns_get_externalip;
|
||||||
int retval;
|
int retval;
|
||||||
|
int max_idle_time = 0;
|
||||||
#ifdef HAVE_SYSTEMD
|
#ifdef HAVE_SYSTEMD
|
||||||
int nb_fds;
|
int nb_fds;
|
||||||
#endif
|
#endif
|
||||||
@ -2299,7 +2314,7 @@ main(int argc, char **argv)
|
|||||||
srand(time(NULL));
|
srand(time(NULL));
|
||||||
fw_query_init();
|
fw_query_init();
|
||||||
|
|
||||||
while ((choice = getopt(argc, argv, "vcsfhDu:t:d:m:l:p:n:b:P:z:F:")) != -1) {
|
while ((choice = getopt(argc, argv, "vcsfhDu:t:d:m:l:p:n:b:P:z:F:i:")) != -1) {
|
||||||
switch(choice) {
|
switch(choice) {
|
||||||
case 'v':
|
case 'v':
|
||||||
version();
|
version();
|
||||||
@ -2351,6 +2366,9 @@ main(int argc, char **argv)
|
|||||||
case 'F':
|
case 'F':
|
||||||
pidfile = optarg;
|
pidfile = optarg;
|
||||||
break;
|
break;
|
||||||
|
case 'i':
|
||||||
|
max_idle_time = atoi(optarg);
|
||||||
|
break;
|
||||||
case 'P':
|
case 'P':
|
||||||
strncpy(password, optarg, sizeof(password));
|
strncpy(password, optarg, sizeof(password));
|
||||||
password[sizeof(password)-1] = 0;
|
password[sizeof(password)-1] = 0;
|
||||||
@ -2559,7 +2577,7 @@ main(int argc, char **argv)
|
|||||||
|
|
||||||
syslog(LOG_INFO, "started, listening on port %d", port);
|
syslog(LOG_INFO, "started, listening on port %d", port);
|
||||||
|
|
||||||
tunnel(tun_fd, dnsd_fd, bind_fd);
|
tunnel(tun_fd, dnsd_fd, bind_fd, max_idle_time);
|
||||||
|
|
||||||
syslog(LOG_INFO, "stopping");
|
syslog(LOG_INFO, "stopping");
|
||||||
cleanup3:
|
cleanup3:
|
||||||
|
Loading…
Reference in New Issue
Block a user