| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- /*
- * Copyright (C) 2011, 2012, 2013 Citrix Systems
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * 3. Neither the name of the project nor the names of its contributors
- * may be used to endorse or promote products derived from this software
- * without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
- * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
- * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
- * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
- * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
- * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
- * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
- * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
- * SUCH DAMAGE.
- */
- #ifndef __TURN_SESSION__
- #define __TURN_SESSION__
- #include "ns_turn_utils.h"
- #include "ns_turn_maps.h"
- #include "ns_turn_ioalib.h"
- #include "ns_turn_allocation.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- ////////// REALM ////////////
- typedef struct _perf_options_t {
- band_limit_t max_bps;
- vint total_quota;
- vint user_quota;
- } perf_options_t;
- struct _realm_options_t {
- s08bits name[STUN_MAX_REALM_SIZE + 1];
- perf_options_t perf_options;
- };
- //////////////// session info //////////////////////
- typedef u64bits turnsession_id;
- #define NONCE_MAX_SIZE (NONCE_LENGTH_32BITS*4+1)
- typedef u64bits mobile_id_t;
- struct _ts_ur_super_session {
- void* server;
- turnsession_id id;
- turn_time_t start_time;
- ioa_socket_handle client_socket;
- allocation alloc;
- ioa_timer_handle to_be_allocated_timeout_ev;
- int enforce_fingerprints;
- int is_tcp_relay;
- int to_be_closed;
- /* Auth */
- u08bits nonce[NONCE_MAX_SIZE];
- turn_time_t nonce_expiration_time;
- u08bits username[STUN_MAX_USERNAME_SIZE+1];
- hmackey_t hmackey;
- int hmackey_set;
- st_password_t pwd;
- int quota_used;
- int oauth;
- turn_time_t max_session_time_auth;
- /* Realm */
- realm_options_t realm_options;
- int origin_set;
- s08bits origin[STUN_MAX_ORIGIN_SIZE + 1];
- /* Stats */
- u32bits received_packets;
- u32bits sent_packets;
- u32bits received_bytes;
- u32bits sent_bytes;
- u64bits t_received_packets;
- u64bits t_sent_packets;
- u64bits t_received_bytes;
- u64bits t_sent_bytes;
- u64bits received_rate;
- size_t sent_rate;
- size_t total_rate;
- /* Mobile */
- int is_mobile;
- mobile_id_t mobile_id;
- mobile_id_t old_mobile_id;
- char s_mobile_id[33];
- /* Bandwidth */
- band_limit_t bps;
- };
- ////// Session info for statistics //////
- #define TURN_ADDR_STR_SIZE (65)
- #define TURN_MAIN_PEERS_ARRAY_SIZE (5)
- typedef struct _addr_data {
- ioa_addr addr;
- char saddr[TURN_ADDR_STR_SIZE];
- } addr_data;
- struct turn_session_info {
- turnsession_id id;
- int valid;
- turn_time_t start_time;
- turn_time_t expiration_time;
- SOCKET_TYPE client_protocol;
- SOCKET_TYPE peer_protocol;
- char tls_method[17];
- char tls_cipher[65];
- addr_data local_addr_data;
- addr_data remote_addr_data;
- addr_data relay_addr_data_ipv4;
- addr_data relay_addr_data_ipv6;
- u08bits username[STUN_MAX_USERNAME_SIZE+1];
- int enforce_fingerprints;
- /* Stats */
- u64bits received_packets;
- u64bits sent_packets;
- u64bits received_bytes;
- u64bits sent_bytes;
- u32bits received_rate;
- u32bits sent_rate;
- u32bits total_rate;
- /* Mobile */
- int is_mobile;
- /* Peers */
- addr_data main_peers_data[TURN_MAIN_PEERS_ARRAY_SIZE];
- size_t main_peers_size;
- addr_data *extra_peers_data;
- size_t extra_peers_size;
- /* Realm */
- char realm[STUN_MAX_REALM_SIZE + 1];
- char origin[STUN_MAX_ORIGIN_SIZE + 1];
- /* Bandwidth */
- band_limit_t bps;
- };
- void turn_session_info_init(struct turn_session_info* tsi);
- void turn_session_info_clean(struct turn_session_info* tsi);
- void turn_session_info_add_peer(struct turn_session_info* tsi, ioa_addr *peer);
- int turn_session_info_copy_from(struct turn_session_info* tsi, ts_ur_super_session *ss);
- ////////////// ss /////////////////////
- allocation* get_allocation_ss(ts_ur_super_session *ss);
- ///////////////////////////////////////////////////////
- #ifdef __cplusplus
- }
- #endif
- #endif //__TURN_SESSION__
|