channel lifetime

This commit is contained in:
Richard Garnier 2016-09-20 14:15:52 +09:00
parent 8226747791
commit 2128253b31
7 changed files with 24 additions and 5 deletions

View File

@ -381,6 +381,12 @@
#
#stale-nonce
# Uncomment to set the lifetime for the channel.
# Default value is 600 secs (10 minutes).
# This value MUST not be changed for production purposes.
#
#channel-lifetime=600
# Certificate file.
# Use an absolute path or path relative to the
# configuration file.

View File

@ -124,7 +124,7 @@ LOW_DEFAULT_PORTS_BOUNDARY,HIGH_DEFAULT_PORTS_BOUNDARY,0,0,0,"",
/////////////// stop server ////////////////
0,
/////////////// MISC PARAMS ////////////////
0,0,0,0,0,':',0,0,TURN_CREDENTIALS_NONE,0,0,0,0,0,0,
0,0,0,0,0,':',0,0,0,TURN_CREDENTIALS_NONE,0,0,0,0,0,0,
///////////// Users DB //////////////
{ (TURN_USERDB_TYPE)0, {"\0"}, {0,NULL, {NULL,0}} },
///////////// CPUs //////////////////
@ -548,6 +548,8 @@ static char Usage[] = "Usage: turnserver [options]\n"
" name will be constructed as-is, without PID and date appendage.\n"
" This option can be used, for example, together with the logrotate tool.\n"
" --stale-nonce Use extra security with nonce value having limited lifetime (600 secs).\n"
" --channel-lifetime <value> Set the lifetime for channel binding, default to 600 secs\n."
" This value MUST not be changed for production purposes."
" -S, --stun-only Option to set standalone STUN operation only, all TURN requests will be ignored.\n"
" --no-stun Option to suppress STUN functionality, only TURN requests will be processed.\n"
" --alternate-server <ip:port> Set the TURN server to redirect the allocate requests (UDP and TCP services).\n"
@ -670,6 +672,7 @@ enum EXTRA_OPTS {
MIN_PORT_OPT,
MAX_PORT_OPT,
STALE_NONCE_OPT,
CHANNEL_LIFETIME_OPT,
AUTH_SECRET_OPT,
DEL_ALL_AUTH_SECRETS_OPT,
STATIC_AUTH_SECRET_VAL_OPT,
@ -787,6 +790,7 @@ static const struct myoption long_options[] = {
{ "no-udp-relay", optional_argument, NULL, NO_UDP_RELAY_OPT },
{ "no-tcp-relay", optional_argument, NULL, NO_TCP_RELAY_OPT },
{ "stale-nonce", optional_argument, NULL, STALE_NONCE_OPT },
{ "channel-lifetime", optional_argument, NULL, CHANNEL_LIFETIME_OPT },
{ "stun-only", optional_argument, NULL, 'S' },
{ "no-stun", optional_argument, NULL, NO_STUN_OPT },
{ "cert", required_argument, NULL, CERT_FILE_OPT },
@ -1048,6 +1052,9 @@ static void set_option(int c, char *value)
case STALE_NONCE_OPT:
turn_params.stale_nonce = get_bool_value(value);
break;
case CHANNEL_LIFETIME_OPT:
turn_params.channel_lifetime = get_int_value(value, STUN_DEFAULT_CHANNEL_LIFETIME);
break;
case MAX_ALLOCATE_TIMEOUT_OPT:
TURN_MAX_ALLOCATE_TIMEOUT = atoi(value);
TURN_MAX_ALLOCATE_TIMEOUT_STUN_ONLY = atoi(value);

View File

@ -285,6 +285,7 @@ typedef struct _turn_params_ {
int fingerprint;
char rest_api_separator;
vint stale_nonce;
vint channel_lifetime;
vint mobility;
turn_credential_type ct;
int use_auth_secret_with_timestamp;

View File

@ -1633,6 +1633,7 @@ static void setup_relay_server(struct relay_server *rs, ioa_engine_handle e, int
&turn_params.no_tcp_relay,
&turn_params.no_udp_relay,
&turn_params.stale_nonce,
&turn_params.channel_lifetime,
&turn_params.stun_only,
&turn_params.no_stun,
&turn_params.alternate_servers_list,

View File

@ -63,7 +63,7 @@
#define STUN_DEFAULT_ALLOCATE_LIFETIME (600)
#define STUN_MIN_ALLOCATE_LIFETIME STUN_DEFAULT_ALLOCATE_LIFETIME
#define STUN_MAX_ALLOCATE_LIFETIME (3600)
#define STUN_CHANNEL_LIFETIME (600)
#define STUN_DEFAULT_CHANNEL_LIFETIME (600)
#define STUN_PERMISSION_LIFETIME (300)
#define STUN_NONCE_EXPIRATION_TIME (600)
/**/

View File

@ -883,13 +883,13 @@ static int update_channel_lifetime(ts_ur_super_session *ss, ch_info* chn)
if (server) {
if (update_turn_permission_lifetime(ss, tinfo, STUN_CHANNEL_LIFETIME) < 0)
if (update_turn_permission_lifetime(ss, tinfo, *(server->channel_lifetime)) < 0)
return -1;
chn->expiration_time = server->ctime + STUN_CHANNEL_LIFETIME;
chn->expiration_time = server->ctime + *(server->channel_lifetime);
IOA_EVENT_DEL(chn->lifetime_ev);
chn->lifetime_ev = set_ioa_timer(server->e, STUN_CHANNEL_LIFETIME, 0,
chn->lifetime_ev = set_ioa_timer(server->e, *(server->channel_lifetime), 0,
client_ss_channel_timeout_handler,
chn, 0,
"client_ss_channel_timeout_handler");
@ -4796,6 +4796,7 @@ void init_turn_server(turn_turnserver* server,
vintp no_tcp_relay,
vintp no_udp_relay,
vintp stale_nonce,
vintp channel_lifetime,
vintp stun_only,
vintp no_stun,
turn_server_addrs_list_t *alternate_servers_list,
@ -4851,6 +4852,7 @@ void init_turn_server(turn_turnserver* server,
server->self_udp_balance = self_udp_balance;
server->stale_nonce = stale_nonce;
server->channel_lifetime = channel_lifetime;
server->stun_only = stun_only;
server->no_stun = no_stun;

View File

@ -115,6 +115,7 @@ struct _turn_turnserver {
int rfc5780;
vintp check_origin;
vintp stale_nonce;
vintp channel_lifetime;
vintp stun_only;
vintp no_stun;
vintp secure_stun;
@ -184,6 +185,7 @@ void init_turn_server(turn_turnserver* server,
vintp no_tcp_relay,
vintp no_udp_relay,
vintp stale_nonce,
vintp channel_lifetime,
vintp stun_only,
vintp no_stun,
turn_server_addrs_list_t *alternate_servers_list,