39#include <arpa/nameser.h>
50#include <openssl/opensslconf.h>
51#include <openssl/opensslv.h>
52#if !defined(OPENSSL_NO_SRTP) && (OPENSSL_VERSION_NUMBER >= 0x10001000L)
53#include <openssl/ssl.h>
54#include <openssl/err.h>
55#include <openssl/bio.h>
56#if !defined(OPENSSL_NO_ECDH) && (OPENSSL_VERSION_NUMBER >= 0x10000000L)
57#include <openssl/bn.h>
60#include <openssl/dh.h>
67#include <pjlib-util.h>
98#define MAX_TIMESTAMP_SKEW 640
100#define RTP_SEQ_MOD (1<<16)
101#define RTCP_DEFAULT_INTERVALMS 5000
102#define RTCP_MIN_INTERVALMS 500
103#define RTCP_MAX_INTERVALMS 60000
105#define DEFAULT_RTP_START 5000
106#define DEFAULT_RTP_END 31000
108#define MINIMUM_RTP_PORT 1024
109#define MAXIMUM_RTP_PORT 65535
111#define DEFAULT_TURN_PORT 3478
113#define TURN_STATE_WAIT_TIME 2000
115#define DEFAULT_RTP_SEND_BUFFER_SIZE 250
116#define MAXIMUM_RTP_SEND_BUFFER_SIZE (DEFAULT_RTP_SEND_BUFFER_SIZE + 200)
117#define DEFAULT_RTP_RECV_BUFFER_SIZE 20
118#define MAXIMUM_RTP_RECV_BUFFER_SIZE (DEFAULT_RTP_RECV_BUFFER_SIZE + 20)
119#define OLD_PACKET_COUNT 1000
120#define MISSING_SEQNOS_ADDED_TRIGGER 2
122#define SEQNO_CYCLE_OVER 65536
125#define RTCP_PT_FUR 192
127#define RTCP_PT_SR AST_RTP_RTCP_SR
129#define RTCP_PT_RR AST_RTP_RTCP_RR
131#define RTCP_PT_SDES 202
133#define RTCP_PT_BYE 203
135#define RTCP_PT_APP 204
138#define RTCP_PT_PSFB AST_RTP_RTCP_PSFB
142#define DEFAULT_DTMF_TIMEOUT (150 * (8000 / 1000))
144#define ZFONE_PROFILE_ID 0x505a
146#define DEFAULT_LEARNING_MIN_SEQUENTIAL 4
159#define CALC_LEARNING_MIN_DURATION(count) (((count) - 1) * 9 - 5)
160#define DEFAULT_LEARNING_MIN_DURATION CALC_LEARNING_MIN_DURATION(DEFAULT_LEARNING_MIN_SEQUENTIAL)
162#define SRTP_MASTER_KEY_LEN 16
163#define SRTP_MASTER_SALT_LEN 14
164#define SRTP_MASTER_LEN (SRTP_MASTER_KEY_LEN + SRTP_MASTER_SALT_LEN)
166#define RTP_DTLS_ESTABLISHED -37
187#define STRICT_RTP_LEARN_TIMEOUT 5000
189#define DEFAULT_STRICT_RTP STRICT_RTP_YES
190#define DEFAULT_SRTP_REPLAY_PROTECTION 1
191#define DEFAULT_ICESUPPORT 1
192#define DEFAULT_STUN_SOFTWARE_ATTRIBUTE 1
193#define DEFAULT_DTLS_MTU 1200
203#define RTP_IGNORE_FIRST_PACKETS_COUNT 15
219static int nochecksums;
225#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
231static struct sockaddr_in stunaddr;
232static pj_str_t turnaddr;
234static pj_str_t turnusername;
235static pj_str_t turnpassword;
255static pj_pool_t *pool;
258static pj_timer_heap_t *timer_heap;
261static pj_thread_t *timer_thread;
264static int timer_terminate;
267struct ast_rtp_ioqueue_thread {
273 pj_ioqueue_t *ioqueue;
275 pj_timer_heap_t *timerheap;
288struct ast_ice_host_candidate {
291 unsigned int include_local;
302#define FLAG_3389_WARNING (1 << 0)
303#define FLAG_NAT_ACTIVE (3 << 1)
304#define FLAG_NAT_INACTIVE (0 << 1)
305#define FLAG_NAT_INACTIVE_NOWARN (1 << 1)
306#define FLAG_NEED_MARKER_BIT (1 << 3)
307#define FLAG_DTMF_COMPENSATE (1 << 4)
308#define FLAG_REQ_LOCAL_BRIDGE_BIT (1 << 5)
310#define TRANSPORT_SOCKET_RTP 0
311#define TRANSPORT_SOCKET_RTCP 1
312#define TRANSPORT_TURN_RTP 2
313#define TRANSPORT_TURN_RTCP 3
326#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
340 pj_ice_sess *real_ice;
484 struct ice_wrap *ice;
486 pj_turn_sock *turn_rtp;
487 pj_turn_sock *turn_rtcp;
488 pj_turn_state_t turn_state;
489 unsigned int passthrough:1;
490 unsigned int rtp_passthrough:1;
491 unsigned int rtcp_passthrough:1;
492 unsigned int ice_port;
496 struct ast_rtp_ioqueue_thread *ioqueue;
498 char remote_ufrag[257];
499 char remote_passwd[257];
501 char local_ufrag[257];
502 char local_passwd[257];
508 unsigned int ice_num_components;
509 unsigned int ice_media_started:1;
512#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
517 char local_fingerprint[160];
519 unsigned char remote_fingerprint[EVP_MAX_MD_SIZE];
522 struct dtls_details dtls;
604#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
605 struct dtls_details dtls;
673#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
677static int dtls_bio_write(BIO *bio,
const char *
buf,
int len);
678static long dtls_bio_ctrl(BIO *bio,
int cmd,
long arg1,
void *arg2);
679static int dtls_bio_new(BIO *bio);
680static int dtls_bio_free(BIO *bio);
682#ifndef HAVE_OPENSSL_BIO_METHOD
683static BIO_METHOD dtls_bio_methods = {
684 .type = BIO_TYPE_BIO,
686 .bwrite = dtls_bio_write,
687 .ctrl = dtls_bio_ctrl,
688 .create = dtls_bio_new,
689 .destroy = dtls_bio_free,
692static BIO_METHOD *dtls_bio_methods;
699static void stunaddr_resolve_callback(
const struct ast_dns_query *query);
700static int store_stunaddr_resolved(
const struct ast_dns_query *query);
703#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
704static int dtls_bio_new(BIO *bio)
706#ifdef HAVE_OPENSSL_BIO_METHOD
707 BIO_set_init(bio, 1);
708 BIO_set_data(bio,
NULL);
709 BIO_set_shutdown(bio, 0);
718static int dtls_bio_free(BIO *bio)
724#ifdef HAVE_OPENSSL_BIO_METHOD
725 BIO_set_data(bio,
NULL);
732static int dtls_bio_write(BIO *bio,
const char *
buf,
int len)
734#ifdef HAVE_OPENSSL_BIO_METHOD
749 if (rtp->
rtcp && rtp->
rtcp->dtls.write_bio == bio) {
760 bytes_sent =
__rtp_sendto(instance, (
char *)
buf,
len, 0, &remote_address, rtcp, &ice, 0);
763 ast_debug(0,
"(%p) DTLS - sent %s packet to %s%s (len %-6.6d)\n",
765 ice ?
" (via ICE)" :
"", bytes_sent);
771static long dtls_bio_ctrl(BIO *bio,
int cmd,
long arg1,
void *arg2)
776 case BIO_CTRL_DGRAM_QUERY_MTU:
778 case BIO_CTRL_WPENDING:
779 case BIO_CTRL_PENDING:
790static void host_candidate_overrides_clear(
void)
792 struct ast_ice_host_candidate *candidate;
807 char address[PJ_INET6_ADDRSTRLEN];
809 if (component < 1 || !ice->comp[component - 1].valid_check) {
814 pj_sockaddr_print(&ice->comp[component - 1].valid_check->rcand->addr,
address,
817 pj_sockaddr_get_port(&ice->comp[component - 1].valid_check->rcand->addr));
821static void ast_rtp_ice_candidate_destroy(
void *obj)
835static void ast_rtp_ice_set_authentication(
struct ast_rtp_instance *instance,
const char *ufrag,
const char *password)
838 int ice_attrb_reset = 0;
841 if (!
ast_strlen_zero(rtp->remote_ufrag) && strcmp(ufrag, rtp->remote_ufrag)) {
848 if (!
ast_strlen_zero(rtp->remote_passwd) && strcmp(password, rtp->remote_passwd)) {
851 ast_copy_string(rtp->remote_passwd, password,
sizeof(rtp->remote_passwd));
855 if (ice_attrb_reset) {
861static int ice_candidate_cmp(
void *obj,
void *arg,
int flags)
865 if (strcmp(candidate1->
foundation, candidate2->foundation) ||
866 candidate1->
id != candidate2->id ||
867 candidate1->
type != candidate2->type ||
882 if (strcasecmp(candidate->
transport,
"udp")) {
886 if (!rtp->ice_proposed_remote_candidates) {
889 if (!rtp->ice_proposed_remote_candidates) {
899 if (!(remote_candidate =
ao2_alloc(
sizeof(*remote_candidate), ast_rtp_ice_candidate_destroy))) {
904 remote_candidate->
id = candidate->
id;
909 remote_candidate->
type = candidate->
type;
911 ast_debug_ice(2,
"(%p) ICE add remote candidate\n", instance);
913 ao2_link(rtp->ice_proposed_remote_candidates, remote_candidate);
920static void pj_thread_register_check(
void)
922 pj_thread_desc *
desc;
925 if (pj_thread_is_registered() == PJ_TRUE) {
931 ast_log(
LOG_ERROR,
"Could not get thread desc from thread-local storage. Expect awful things to occur\n");
936 if (pj_thread_register(
"Asterisk Thread", *
desc, &
thread) != PJ_SUCCESS) {
949 struct ice_wrap *ice;
971static void ice_wrap_dtor(
void *vdoomed)
973 struct ice_wrap *ice = vdoomed;
976 pj_thread_register_check();
978 pj_ice_sess_destroy(ice->real_ice);
982static void ast2pj_rtp_ice_role(
enum ast_rtp_ice_role ast_role,
enum pj_ice_sess_role *pj_role)
986 *pj_role = PJ_ICE_SESS_ROLE_CONTROLLED;
989 *pj_role = PJ_ICE_SESS_ROLE_CONTROLLING;
994static void pj2ast_rtp_ice_role(
enum pj_ice_sess_role pj_role,
enum ast_rtp_ice_role *ast_role)
997 case PJ_ICE_SESS_ROLE_CONTROLLED:
1000 case PJ_ICE_SESS_ROLE_CONTROLLING:
1003 case PJ_ICE_SESS_ROLE_UNKNOWN:
1020 if (!rtp->ice->real_ice->is_nominating && !rtp->ice->real_ice->is_complete) {
1021 ast_debug_ice(3,
" (%p) ICE nevermind, not ready for a reset\n", instance);
1025 ast_debug_ice(3,
"(%p) ICE recreating ICE session %s (%d)\n",
1027 res = ice_create(instance, &rtp->ice_original_rtp_addr, rtp->ice_port, 1);
1030 enum pj_ice_sess_role role = PJ_ICE_SESS_ROLE_UNKNOWN;
1031 ast2pj_rtp_ice_role(rtp->role, &role);
1032 pj_ice_sess_change_role(rtp->ice->real_ice, role);
1038 if (rtp->ice_num_components == 1 && rtp->turn_rtcp) {
1040 struct timespec ts = { .tv_sec = wait.tv_sec, .tv_nsec = wait.tv_usec * 1000, };
1042 rtp->turn_state = PJ_TURN_STATE_NULL;
1046 pj_turn_sock_destroy(rtp->turn_rtcp);
1048 while (rtp->turn_state != PJ_TURN_STATE_DESTROYING) {
1053 rtp->ice_media_started = 0;
1071 if (!left_candidate) {
1089 pj_str_t ufrag = pj_str(rtp->remote_ufrag), passwd = pj_str(rtp->remote_passwd);
1090 pj_ice_sess_cand candidates[PJ_ICE_MAX_CAND];
1093 int cand_cnt = 0, has_rtp = 0, has_rtcp = 0;
1095 if (!rtp->ice || !rtp->ice_proposed_remote_candidates) {
1100 if (rtp->ice_active_remote_candidates &&
1101 !ice_candidates_compare(rtp->ice_proposed_remote_candidates, rtp->ice_active_remote_candidates)) {
1102 ast_debug_ice(2,
"(%p) ICE proposed equals active candidates\n", instance);
1104 rtp->ice_proposed_remote_candidates =
NULL;
1106 pj2ast_rtp_ice_role(rtp->ice->real_ice->role, &rtp->role);
1112 rtp->ice_active_remote_candidates = rtp->ice_proposed_remote_candidates;
1113 rtp->ice_proposed_remote_candidates =
NULL;
1118 if (ice_reset_session(instance)) {
1119 ast_log(
LOG_NOTICE,
"(%p) ICE failed to create replacement session\n", instance);
1123 pj_thread_register_check();
1134 pj_strdup2(rtp->ice->real_ice->pool, &candidates[cand_cnt].foundation,
1136 candidates[cand_cnt].comp_id = candidate->
id;
1137 candidates[cand_cnt].prio = candidate->
priority;
1146 candidates[cand_cnt].type = PJ_ICE_CAND_TYPE_HOST;
1148 candidates[cand_cnt].type = PJ_ICE_CAND_TYPE_SRFLX;
1150 candidates[cand_cnt].type = PJ_ICE_CAND_TYPE_RELAYED;
1157 pj_turn_sock_set_perm(rtp->turn_rtp, 1, &candidates[cand_cnt].addr, 1);
1163 pj_turn_sock_set_perm(rtp->turn_rtcp, 1, &candidates[cand_cnt].addr, 1);
1174 ast_log(
LOG_WARNING,
"(%p) ICE lost %d candidates. Consider increasing PJ_ICE_MAX_CAND in PJSIP\n",
1183 if (!has_rtcp && rtp->ice_num_components > 1) {
1187 if (rtp->ice && has_rtp && (has_rtcp || rtp->ice_num_components == 1)) {
1190 struct ice_wrap *ice;
1196 res = pj_ice_sess_create_check_list(ice->real_ice, &ufrag, &passwd, cand_cnt, &candidates[0]);
1197 if (res == PJ_SUCCESS) {
1198 ast_debug_ice(2,
"(%p) ICE successfully created checklist\n", instance);
1200 pj_ice_sess_start_check(ice->real_ice);
1201 pj_timer_heap_poll(timer_heap,
NULL);
1210 pj_strerror(res, reason,
sizeof(reason));
1211 ast_log(
LOG_WARNING,
"(%p) ICE failed to create session check list: %s\n", instance, reason);
1220 ao2_ref(rtp->ice_active_remote_candidates, -1);
1221 rtp->ice_active_remote_candidates =
NULL;
1223 rtp->ice->real_ice->rcand_cnt = rtp->ice->real_ice->clist.count = 0;
1232 return rtp->local_ufrag;
1236static const char *ast_rtp_ice_get_password(
struct ast_rtp_instance *instance)
1240 return rtp->local_passwd;
1248 if (rtp->ice_local_candidates) {
1249 ao2_ref(rtp->ice_local_candidates, +1);
1252 return rtp->ice_local_candidates;
1264 pj_thread_register_check();
1266 pj_ice_sess_change_role(rtp->ice->real_ice, PJ_ICE_SESS_ROLE_CONTROLLING);
1275 ast_debug_ice(3,
"(%p) ICE set role failed; no ice instance\n", instance);
1281 if (!rtp->ice->real_ice->is_nominating && !rtp->ice->real_ice->is_complete) {
1282 pj_thread_register_check();
1286 PJ_ICE_SESS_ROLE_CONTROLLED : PJ_ICE_SESS_ROLE_CONTROLLING);
1288 ast_debug_ice(2,
"(%p) ICE not setting role because state is %s\n",
1289 instance, rtp->ice->real_ice->is_nominating ?
"nominating" :
"complete");
1295 unsigned comp_id,
unsigned transport_id, pj_ice_cand_type
type, pj_uint16_t local_pref,
1296 const pj_sockaddr_t *addr,
const pj_sockaddr_t *base_addr,
const pj_sockaddr_t *rel_addr,
1299 pj_str_t foundation;
1301 struct ice_wrap *ice;
1302 char address[PJ_INET6_ADDRSTRLEN];
1309 pj_thread_register_check();
1311 pj_ice_calc_foundation(rtp->ice->real_ice->pool, &foundation,
type, addr);
1313 if (!rtp->ice_local_candidates) {
1315 NULL, ice_candidate_cmp);
1316 if (!rtp->ice_local_candidates) {
1321 if (!(candidate =
ao2_alloc(
sizeof(*candidate), ast_rtp_ice_candidate_destroy))) {
1326 candidate->
id = comp_id;
1337 if (
type == PJ_ICE_CAND_TYPE_HOST) {
1339 }
else if (
type == PJ_ICE_CAND_TYPE_SRFLX) {
1341 }
else if (
type == PJ_ICE_CAND_TYPE_RELAYED) {
1355 status = pj_ice_sess_add_cand(ice->real_ice, comp_id, transport_id,
type, local_pref,
1356 &foundation, addr, base_addr, rel_addr, addr_len,
NULL);
1359 if (!rtp->ice ||
status != PJ_SUCCESS) {
1367 candidate->
priority = rtp->ice->real_ice->lcand[rtp->ice->real_ice->lcand_cnt - 1].prio;
1372 ao2_link(rtp->ice_local_candidates, candidate);
1377static void ast_rtp_on_turn_rx_rtp_data(pj_turn_sock *turn_sock,
void *pkt,
unsigned pkt_len,
const pj_sockaddr_t *peer_addr,
unsigned addr_len)
1381 struct ice_wrap *ice;
1392 if (
status != PJ_SUCCESS) {
1400 if (!rtp->rtp_passthrough) {
1403 rtp->rtp_passthrough = 0;
1406 ast_sendto(rtp->
s, pkt, pkt_len, 0, &rtp->rtp_loop);
1410static void ast_rtp_on_turn_rtp_state(pj_turn_sock *turn_sock, pj_turn_state_t old_state, pj_turn_state_t new_state)
1425 rtp->turn_state = new_state;
1428 if (new_state == PJ_TURN_STATE_DESTROYING) {
1429 pj_turn_sock_set_user_data(rtp->turn_rtp,
NULL);
1430 rtp->turn_rtp =
NULL;
1437static pj_turn_sock_cb ast_rtp_turn_rtp_sock_cb = {
1438 .on_rx_data = ast_rtp_on_turn_rx_rtp_data,
1439 .on_state = ast_rtp_on_turn_rtp_state,
1443static void ast_rtp_on_turn_rx_rtcp_data(pj_turn_sock *turn_sock,
void *pkt,
unsigned pkt_len,
const pj_sockaddr_t *peer_addr,
unsigned addr_len)
1447 struct ice_wrap *ice;
1458 if (
status != PJ_SUCCESS) {
1466 if (!rtp->rtcp_passthrough) {
1469 rtp->rtcp_passthrough = 0;
1476static void ast_rtp_on_turn_rtcp_state(pj_turn_sock *turn_sock, pj_turn_state_t old_state, pj_turn_state_t new_state)
1491 rtp->turn_state = new_state;
1494 if (new_state == PJ_TURN_STATE_DESTROYING) {
1495 pj_turn_sock_set_user_data(rtp->turn_rtcp,
NULL);
1496 rtp->turn_rtcp =
NULL;
1503static pj_turn_sock_cb ast_rtp_turn_rtcp_sock_cb = {
1504 .on_rx_data = ast_rtp_on_turn_rx_rtcp_data,
1505 .on_state = ast_rtp_on_turn_rtcp_state,
1509static int ioqueue_worker_thread(
void *data)
1511 struct ast_rtp_ioqueue_thread *ioqueue = data;
1513 while (!ioqueue->terminate) {
1514 const pj_time_val delay = {0, 10};
1516 pj_ioqueue_poll(ioqueue->ioqueue, &delay);
1518 pj_timer_heap_poll(ioqueue->timerheap,
NULL);
1525static void rtp_ioqueue_thread_destroy(
struct ast_rtp_ioqueue_thread *ioqueue)
1527 if (ioqueue->thread) {
1528 ioqueue->terminate = 1;
1529 pj_thread_join(ioqueue->thread);
1530 pj_thread_destroy(ioqueue->thread);
1533 if (ioqueue->pool) {
1537 pj_pool_t *temp_pool = ioqueue->pool;
1539 ioqueue->pool =
NULL;
1540 pj_ioqueue_destroy(ioqueue->ioqueue);
1541 pj_pool_release(temp_pool);
1548static void rtp_ioqueue_thread_remove(
struct ast_rtp_ioqueue_thread *ioqueue)
1554 if ((ioqueue->count -= 2) == 0) {
1564 rtp_ioqueue_thread_destroy(ioqueue);
1568static struct ast_rtp_ioqueue_thread *rtp_ioqueue_thread_get_or_create(
void)
1570 struct ast_rtp_ioqueue_thread *ioqueue;
1577 if ((ioqueue->count + 2) < PJ_IOQUEUE_MAX_HANDLES) {
1584 ioqueue->count += 2;
1593 ioqueue->pool = pj_pool_create(&
cachingpool.factory,
"rtp", 512, 512,
NULL);
1598 if (pj_timer_heap_create(ioqueue->pool, 4, &ioqueue->timerheap) != PJ_SUCCESS) {
1602 if (pj_lock_create_recursive_mutex(ioqueue->pool,
"rtp%p", &
lock) != PJ_SUCCESS) {
1606 pj_timer_heap_set_lock(ioqueue->timerheap,
lock, PJ_TRUE);
1608 if (pj_ioqueue_create(ioqueue->pool, PJ_IOQUEUE_MAX_HANDLES, &ioqueue->ioqueue) != PJ_SUCCESS) {
1612 if (pj_thread_create(ioqueue->pool,
"ice", &ioqueue_worker_thread, ioqueue, 0, 0, &ioqueue->thread) != PJ_SUCCESS) {
1624 rtp_ioqueue_thread_destroy(ioqueue);
1634 enum ast_transport transport,
const char *server,
unsigned int port,
const char *username,
const char *password)
1637 pj_turn_sock **turn_sock;
1638 const pj_turn_sock_cb *turn_cb;
1639 pj_turn_tp_type conn_type;
1641 pj_stun_auth_cred cred = { 0, };
1644 pj_stun_config stun_config;
1646 struct timespec ts = { .tv_sec = wait.tv_sec, .tv_nsec = wait.tv_usec * 1000, };
1647 pj_turn_session_info
info;
1650 pj_turn_sock_cfg turn_sock_cfg;
1651 struct ice_wrap *ice;
1662 turn_sock = &rtp->turn_rtp;
1663 turn_cb = &ast_rtp_turn_rtp_sock_cb;
1667 turn_sock = &rtp->turn_rtcp;
1668 turn_cb = &ast_rtp_turn_rtcp_sock_cb;
1676 conn_type = PJ_TURN_TP_UDP;
1678 conn_type = PJ_TURN_TP_TCP;
1687 rtp->turn_state = PJ_TURN_STATE_NULL;
1691 pj_turn_sock_destroy(*turn_sock);
1693 while (rtp->turn_state != PJ_TURN_STATE_DESTROYING) {
1705 rtp->ioqueue = rtp_ioqueue_thread_get_or_create();
1707 if (!rtp->ioqueue) {
1712 pj_stun_config_init(&stun_config, &
cachingpool.factory, 0, rtp->ioqueue->ioqueue, rtp->ioqueue->timerheap);
1713 if (!stun_software_attribute) {
1714 stun_config.software_name = pj_str(
NULL);
1718 pj_turn_sock_cfg_default(&turn_sock_cfg);
1721 turn_sock_cfg.grp_lock = ice->real_ice->grp_lock;
1727 status = pj_turn_sock_create(&stun_config,
1729 turn_cb, &turn_sock_cfg, instance, turn_sock);
1731 if (
status != PJ_SUCCESS) {
1737 cred.type = PJ_STUN_AUTH_CRED_STATIC;
1738 pj_strset2(&cred.data.static_cred.username, (
char*)username);
1739 cred.data.static_cred.data_type = PJ_STUN_PASSWD_PLAIN;
1740 pj_strset2(&cred.data.static_cred.data, (
char*)password);
1742 pj_turn_sock_alloc(*turn_sock, pj_cstr(&turn_addr, server), port,
NULL, &cred,
NULL);
1744 ast_debug_ice(2,
"(%p) ICE request TURN %s %s candidate\n", instance,
1754 while (rtp->turn_state < PJ_TURN_STATE_READY) {
1759 if (rtp->turn_state != PJ_TURN_STATE_READY) {
1763 pj_turn_sock_get_info(*turn_sock, &info);
1765 ast_rtp_ice_add_cand(instance, rtp, component, conn_transport,
1766 PJ_ICE_CAND_TYPE_RELAYED, 65535, &
info.relay_addr, &
info.relay_addr,
1767 &
info.mapped_addr, pj_sockaddr_get_len(&
info.relay_addr));
1781 for (x=0; x<4; x++) {
1784 snprintf(
buf, size,
"%08lx%08lx%08lx%08lx", (
long unsigned)
val[0], (
long unsigned)
val[1], (
long unsigned)
val[2], (
long unsigned)
val[3]);
1790static void ast_rtp_ice_change_components(
struct ast_rtp_instance *instance,
int num_components)
1797 if (!icesupport || !rtp->ice || rtp->ice_num_components == num_components) {
1801 ast_debug_ice(2,
"(%p) ICE change number of components %u -> %u\n", instance,
1802 rtp->ice_num_components, num_components);
1804 rtp->ice_num_components = num_components;
1805 ice_reset_session(instance);
1824#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
1834 dtls->dtls_setup = setup;
1836 if (!(dtls->ssl =
SSL_new(ssl_ctx))) {
1847#ifdef HAVE_OPENSSL_BIO_METHOD
1849 ast_log(
LOG_ERROR,
"Failed to allocate memory for outbound SSL traffic\n");
1856 ast_log(
LOG_ERROR,
"Failed to allocate memory for outbound SSL traffic\n");
1859 dtls->write_bio->ptr = instance;
1861 SSL_set_bio(dtls->ssl, dtls->read_bio, dtls->write_bio);
1873 if (dtls->read_bio) {
1875 dtls->read_bio =
NULL;
1878 if (dtls->write_bio) {
1880 dtls->write_bio =
NULL;
1894 if (!rtp->ssl_ctx || !rtp->
rtcp) {
1899 return dtls_details_initialize(&rtp->
rtcp->dtls, rtp->ssl_ctx, rtp->dtls.dtls_setup, instance);
1902static const SSL_METHOD *get_dtls_method(
void)
1904#if OPENSSL_VERSION_NUMBER < 0x10002000L
1905 return DTLSv1_method();
1907 return DTLS_method();
1911struct dtls_cert_info {
1912 EVP_PKEY *private_key;
1916static int apply_dh_params(
SSL_CTX *ctx, BIO *bio)
1920#if OPENSSL_VERSION_NUMBER >= 0x30000000L
1921 EVP_PKEY *dhpkey = PEM_read_bio_Parameters(bio,
NULL);
1922 if (dhpkey && EVP_PKEY_is_a(dhpkey,
"DH")) {
1923 res = SSL_CTX_set0_tmp_dh_pkey(ctx, dhpkey);
1929 EVP_PKEY_free(dhpkey);
1934 res = SSL_CTX_set_tmp_dh(ctx, dh);
1944#if !defined(OPENSSL_NO_ECDH) && (OPENSSL_VERSION_NUMBER >= 0x10000000L) && (OPENSSL_VERSION_NUMBER < 0x10100000L)
1948#ifndef OPENSSL_NO_DH
1950 BIO *bio = BIO_new_file(dtls_cfg->
pvtfile,
"r");
1952 if (apply_dh_params(rtp->ssl_ctx, bio)) {
1953 long options = SSL_OP_CIPHER_SERVER_PREFERENCE |
1954 SSL_OP_SINGLE_DH_USE | SSL_OP_SINGLE_ECDH_USE;
1956 ast_verb(2,
"DTLS DH initialized, PFS enabled\n");
1963#if !defined(OPENSSL_NO_ECDH) && (OPENSSL_VERSION_NUMBER >= 0x10000000L) && (OPENSSL_VERSION_NUMBER < 0x10100000L)
1965 ecdh = EC_KEY_new_by_curve_name(NID_X9_62_prime256v1);
1967 if (SSL_CTX_set_tmp_ecdh(rtp->ssl_ctx, ecdh)) {
1968 #ifndef SSL_CTRL_SET_ECDH_AUTO
1969 #define SSL_CTRL_SET_ECDH_AUTO 94
1972 if (SSL_CTX_ctrl(rtp->ssl_ctx, SSL_CTRL_SET_ECDH_AUTO, 1,
NULL)) {
1973 ast_verb(2,
"DTLS ECDH initialized (automatic), faster PFS enabled\n");
1975 ast_verb(2,
"DTLS ECDH initialized (secp256r1), faster PFS enabled\n");
1983#if !defined(OPENSSL_NO_ECDH) && (OPENSSL_VERSION_NUMBER >= 0x10000000L)
1985static int create_ephemeral_ec_keypair(EVP_PKEY **keypair)
1987#if OPENSSL_VERSION_NUMBER >= 0x30000000L
1988 *keypair = EVP_EC_gen(SN_X9_62_prime256v1);
1989 return *keypair ? 0 : -1;
1991 EC_KEY *eckey =
NULL;
1994 group = EC_GROUP_new_by_curve_name(NID_X9_62_prime256v1);
1999 EC_GROUP_set_asn1_flag(
group, OPENSSL_EC_NAMED_CURVE);
2000 EC_GROUP_set_point_conversion_form(
group, POINT_CONVERSION_UNCOMPRESSED);
2002 eckey = EC_KEY_new();
2007 if (!EC_KEY_set_group(eckey,
group)) {
2011 if (!EC_KEY_generate_key(eckey)) {
2015 *keypair = EVP_PKEY_new();
2020 EVP_PKEY_assign_EC_KEY(*keypair, eckey);
2021 EC_GROUP_free(
group);
2027 EC_GROUP_free(
group);
2034#define SERIAL_RAND_BITS 159
2036static int create_ephemeral_certificate(EVP_PKEY *keypair, X509 **certificate)
2039 BIGNUM *serial =
NULL;
2047 if (!X509_set_version(cert, 2)) {
2052 X509_set_pubkey(cert, keypair);
2055 if (!(serial = BN_new())
2056 || !BN_rand(serial, SERIAL_RAND_BITS, -1, 0)
2057 || !BN_to_ASN1_INTEGER(serial, X509_get_serialNumber(cert))) {
2068#if OPENSSL_VERSION_NUMBER < 0x10100000L
2069 if (!X509_time_adj_ex(X509_get_notBefore(cert), -1, 0,
NULL)
2070 || !X509_time_adj_ex(X509_get_notAfter(cert), 30, 0,
NULL)) {
2074 if (!X509_time_adj_ex(X509_getm_notBefore(cert), -1, 0,
NULL)
2075 || !X509_time_adj_ex(X509_getm_notAfter(cert), 30, 0,
NULL)) {
2081 if (!(
name = X509_get_subject_name(cert))
2082 || !X509_NAME_add_entry_by_NID(
name, NID_commonName, MBSTRING_ASC,
2083 (
unsigned char *)
"asterisk", -1, -1, 0)
2084 || !X509_set_issuer_name(cert,
name)) {
2089 if (!X509_sign(cert, keypair, EVP_sha256())) {
2093 *certificate = cert;
2105 struct dtls_cert_info *cert_info)
2108 cert_info->private_key =
NULL;
2109 cert_info->certificate =
NULL;
2111 if (create_ephemeral_ec_keypair(&cert_info->private_key)) {
2116 if (create_ephemeral_certificate(cert_info->private_key, &cert_info->certificate)) {
2124 X509_free(cert_info->certificate);
2125 EVP_PKEY_free(cert_info->private_key);
2134 struct dtls_cert_info *cert_info)
2136 ast_log(
LOG_ERROR,
"Your version of OpenSSL does not support ECDSA keys\n");
2144 struct dtls_cert_info *cert_info)
2147 BIO *certbio =
NULL;
2148 EVP_PKEY *private_key =
NULL;
2152 fp = fopen(private_key_file,
"r");
2154 ast_log(
LOG_ERROR,
"Failed to read private key from file '%s': %s\n", private_key_file, strerror(
errno));
2158 if (!PEM_read_PrivateKey(fp, &private_key,
NULL,
NULL)) {
2159 ast_log(
LOG_ERROR,
"Failed to read private key from PEM file '%s'\n", private_key_file);
2165 ast_log(
LOG_ERROR,
"Failed to close private key file '%s': %s\n", private_key_file, strerror(
errno));
2169 certbio = BIO_new(BIO_s_file());
2171 ast_log(
LOG_ERROR,
"Failed to allocate memory for certificate fingerprinting on RTP instance '%p'\n",
2176 if (!BIO_read_filename(certbio, dtls_cfg->
certfile)
2177 || !(cert = PEM_read_bio_X509(certbio,
NULL, 0,
NULL))) {
2182 cert_info->private_key = private_key;
2183 cert_info->certificate = cert;
2185 BIO_free_all(certbio);
2191 BIO_free_all(certbio);
2192 EVP_PKEY_free(private_key);
2199 struct dtls_cert_info *cert_info)
2202 return create_certificate_ephemeral(instance, dtls_cfg, cert_info);
2204 return create_certificate_from_file(instance, dtls_cfg, cert_info);
2214 struct dtls_cert_info cert_info = { 0 };
2224 ast_log(
LOG_ERROR,
"SRTP support module is not loaded or available. Try loading res_srtp.so.\n");
2232 rtp->ssl_ctx = SSL_CTX_new(get_dtls_method());
2233 if (!rtp->ssl_ctx) {
2237 SSL_CTX_set_read_ahead(rtp->ssl_ctx, 1);
2239 configure_dhparams(rtp, dtls_cfg);
2241 rtp->dtls_verify = dtls_cfg->
verify;
2245 dtls_verify_callback :
NULL);
2248 SSL_CTX_set_tlsext_use_srtp(rtp->ssl_ctx,
"SRTP_AES128_CM_SHA1_80");
2250 SSL_CTX_set_tlsext_use_srtp(rtp->ssl_ctx,
"SRTP_AES128_CM_SHA1_32");
2252 ast_log(
LOG_ERROR,
"Unsupported suite specified for DTLS-SRTP on RTP instance '%p'\n", instance);
2256 rtp->local_hash = dtls_cfg->
hash;
2258 if (!load_dtls_certificate(instance, dtls_cfg, &cert_info)) {
2260 unsigned int size, i;
2261 unsigned char fingerprint[EVP_MAX_MD_SIZE];
2262 char *local_fingerprint = rtp->local_fingerprint;
2264 if (!SSL_CTX_use_certificate(rtp->ssl_ctx, cert_info.certificate)) {
2265 ast_log(
LOG_ERROR,
"Specified certificate for RTP instance '%p' could not be used\n",
2270 if (!SSL_CTX_use_PrivateKey(rtp->ssl_ctx, cert_info.private_key)
2271 || !SSL_CTX_check_private_key(rtp->ssl_ctx)) {
2272 ast_log(
LOG_ERROR,
"Specified private key for RTP instance '%p' could not be used\n",
2280 type = EVP_sha256();
2282 ast_log(
LOG_ERROR,
"Unsupported fingerprint hash type on RTP instance '%p'\n",
2287 if (!X509_digest(cert_info.certificate,
type, fingerprint, &size) || !size) {
2288 ast_log(
LOG_ERROR,
"Could not produce fingerprint from certificate for RTP instance '%p'\n",
2293 for (i = 0; i < size; i++) {
2294 sprintf(local_fingerprint,
"%02hhX:", fingerprint[i]);
2295 local_fingerprint += 3;
2298 *(local_fingerprint - 1) = 0;
2300 EVP_PKEY_free(cert_info.private_key);
2301 X509_free(cert_info.certificate);
2305 if (!SSL_CTX_set_cipher_list(rtp->ssl_ctx, dtls_cfg->
cipher)) {
2306 ast_log(
LOG_ERROR,
"Invalid cipher specified in cipher list '%s' for RTP instance '%p'\n",
2307 dtls_cfg->
cipher, instance);
2314 ast_log(
LOG_ERROR,
"Invalid certificate authority file '%s' or path '%s' specified for RTP instance '%p'\n",
2320 rtp->rekey = dtls_cfg->
rekey;
2321 rtp->suite = dtls_cfg->
suite;
2323 res = dtls_details_initialize(&rtp->dtls, rtp->ssl_ctx, dtls_cfg->
default_setup, instance);
2325 dtls_setup_rtcp(instance);
2336 return !rtp->ssl_ctx ? 0 : 1;
2343 SSL *ssl = rtp->dtls.ssl;
2347 dtls_srtp_stop_timeout_timer(instance, rtp, 0);
2351 SSL_CTX_free(rtp->ssl_ctx);
2352 rtp->ssl_ctx =
NULL;
2355 if (rtp->dtls.ssl) {
2356 SSL_free(rtp->dtls.ssl);
2357 rtp->dtls.ssl =
NULL;
2362 dtls_srtp_stop_timeout_timer(instance, rtp, 1);
2365 if (rtp->
rtcp->dtls.ssl) {
2366 if (rtp->
rtcp->dtls.ssl != ssl) {
2367 SSL_free(rtp->
rtcp->dtls.ssl);
2379 if (SSL_is_init_finished(rtp->dtls.ssl)) {
2380 SSL_shutdown(rtp->dtls.ssl);
2384 if (rtp->
rtcp && SSL_is_init_finished(rtp->
rtcp->dtls.ssl)) {
2385 SSL_shutdown(rtp->
rtcp->dtls.ssl);
2395 return rtp->dtls.connection;
2403 return rtp->dtls.dtls_setup;
2432 if (old == *dtls_setup) {
2442 SSL_set_connect_state(ssl);
2444 SSL_set_accept_state(ssl);
2455 if (rtp->dtls.ssl) {
2456 dtls_set_setup(&rtp->dtls.dtls_setup, setup, rtp->dtls.ssl);
2459 if (rtp->
rtcp && rtp->
rtcp->dtls.ssl) {
2460 dtls_set_setup(&rtp->
rtcp->dtls.dtls_setup, setup, rtp->
rtcp->dtls.ssl);
2475 rtp->remote_hash = hash;
2477 while ((
value =
strsep(&tmp,
":")) && (pos != (EVP_MAX_MD_SIZE - 1))) {
2478 sscanf(
value,
"%02hhx", &rtp->remote_fingerprint[pos++]);
2487 return rtp->local_hash;
2491static const char *ast_rtp_dtls_get_fingerprint(
struct ast_rtp_instance *instance)
2495 return rtp->local_fingerprint;
2501 .active = ast_rtp_dtls_active,
2502 .stop = ast_rtp_dtls_stop,
2503 .reset = ast_rtp_dtls_reset,
2504 .get_connection = ast_rtp_dtls_get_connection,
2505 .get_setup = ast_rtp_dtls_get_setup,
2506 .set_setup = ast_rtp_dtls_set_setup,
2507 .set_fingerprint = ast_rtp_dtls_set_fingerprint,
2508 .get_fingerprint_hash = ast_rtp_dtls_get_fingerprint_hash,
2509 .get_fingerprint = ast_rtp_dtls_get_fingerprint,
2514#ifdef TEST_FRAMEWORK
2552 if (rtp && rtp->
rtcp) {
2557static struct ast_rtp_engine_test ast_rtp_test = {
2558 .packets_to_drop = 0,
2561 .recv_buffer_count = get_recv_buffer_count,
2562 .recv_buffer_max = get_recv_buffer_max,
2563 .send_buffer_count = get_send_buffer_count,
2564 .set_schedid = set_rtp_rtcp_schedid,
2594#ifdef HAVE_PJPROJECT
2595 .ice = &ast_rtp_ice,
2597#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
2598 .dtls = &ast_rtp_dtls,
2599 .activate = ast_rtp_activate,
2607#ifdef TEST_FRAMEWORK
2608 .test = &ast_rtp_test,
2612#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
2614static void dtls_perform_handshake(
struct ast_rtp_instance *instance,
struct dtls_details *
dtls,
int rtcp)
2618 ast_debug_dtls(3,
"(%p) DTLS perform handshake - ssl = %p, setup = %d\n",
2619 rtp, dtls->ssl, dtls->dtls_setup);
2629 SSL_do_handshake(dtls->ssl);
2639 dtls_srtp_start_timeout_timer(instance, rtp,
rtcp);
2643#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
2644static void dtls_perform_setup(
struct dtls_details *dtls)
2646 if (!dtls->ssl || !SSL_is_init_finished(dtls->ssl)) {
2650 SSL_clear(dtls->ssl);
2652 SSL_set_accept_state(dtls->ssl);
2654 SSL_set_connect_state(dtls->ssl);
2662#ifdef HAVE_PJPROJECT
2666static void ast_rtp_ice_start_media(pj_ice_sess *ice, pj_status_t
status)
2673 if (
status == PJ_SUCCESS) {
2690#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
2692 if (rtp->ice_media_started) {
2698 "(%p) ICE starting media - perform DTLS - (%p)\n", instance, rtp);
2712 dtls_perform_handshake(instance, &rtp->dtls, 0);
2715 dtls_perform_handshake(instance, &rtp->
rtcp->dtls, 1);
2719 rtp->ice_media_started = 1;
2726 ast_verb(4,
"%p -- Strict RTP learning after ICE completion\n", rtp);
2731#ifdef HAVE_PJPROJECT_ON_VALID_ICE_PAIR_CALLBACK
2733static void ast_rtp_on_valid_pair(pj_ice_sess *ice)
2735 ast_debug_ice(2,
"(%p) ICE valid pair, start media\n", ice->user_data);
2736 ast_rtp_ice_start_media(ice, PJ_SUCCESS);
2741static void ast_rtp_on_ice_complete(pj_ice_sess *ice, pj_status_t
status)
2743 ast_debug_ice(2,
"(%p) ICE complete, start media\n", ice->user_data);
2744 ast_rtp_ice_start_media(ice,
status);
2748static void ast_rtp_on_ice_rx_data(pj_ice_sess *ice,
unsigned comp_id,
unsigned transport_id,
void *pkt, pj_size_t size,
const pj_sockaddr_t *src_addr,
unsigned src_addr_len)
2756 rtp->passthrough = 1;
2758 rtp->rtp_passthrough = 1;
2760 rtp->rtcp_passthrough = 1;
2765static pj_status_t ast_rtp_on_ice_tx_pkt(pj_ice_sess *ice,
unsigned comp_id,
unsigned transport_id,
const void *pkt, pj_size_t size,
const pj_sockaddr_t *dst_addr,
unsigned dst_addr_len)
2769 pj_status_t
status = PJ_EINVALIDOP;
2770 pj_ssize_t _size = (pj_ssize_t)size;
2774 status = pj_sock_sendto(rtp->
s, pkt, &_size, 0, dst_addr, dst_addr_len);
2780 status = pj_sock_sendto(rtp->
rtcp->
s, pkt, &_size, 0, dst_addr, dst_addr_len);
2788 if (rtp->turn_rtp) {
2789 status = pj_turn_sock_sendto(rtp->turn_rtp, pkt, size, dst_addr, dst_addr_len);
2793 if (rtp->turn_rtcp) {
2794 status = pj_turn_sock_sendto(rtp->turn_rtcp, pkt, size, dst_addr, dst_addr_len);
2802static pj_ice_sess_cb ast_rtp_ice_sess_cb = {
2803#ifdef HAVE_PJPROJECT_ON_VALID_ICE_PAIR_CALLBACK
2804 .on_valid_pair = ast_rtp_on_valid_pair,
2806 .on_ice_complete = ast_rtp_on_ice_complete,
2807 .on_rx_data = ast_rtp_on_ice_rx_data,
2808 .on_tx_pkt = ast_rtp_on_ice_tx_pkt,
2812static int timer_worker_thread(
void *data)
2814 pj_ioqueue_t *ioqueue;
2816 if (pj_ioqueue_create(pool, 1, &ioqueue) != PJ_SUCCESS) {
2820 while (!timer_terminate) {
2821 const pj_time_val delay = {0, 10};
2823 pj_timer_heap_poll(timer_heap,
NULL);
2824 pj_ioqueue_poll(ioqueue, &delay);
2863#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
2883 struct dtls_details *dtls = !rtcp ? &rtp->dtls : &rtp->
rtcp->dtls;
2884 struct timeval dtls_timeout;
2887 res = DTLSv1_handle_timeout(dtls->ssl);
2888 ast_debug_dtls(3,
"(%p) DTLS srtp - handle timeout - rtcp=%d result: %d\n", instance, rtcp, res);
2891 res = DTLSv1_get_timeout(dtls->ssl, &dtls_timeout);
2894 dtls->timeout_timer = -1;
2897 ast_debug_dtls(3,
"(%p) DTLS srtp - handle timeout - rtcp=%d get timeout failure\n", instance, rtcp);
2900 *timeout = dtls_timeout.tv_sec * 1000 + dtls_timeout.tv_usec / 1000;
2901 if (*timeout == 0) {
2921 ast_debug_dtls(3,
"(%p) DTLS srtp - handle timeout - rtcp=%d timeout=%d\n", instance, rtcp, *timeout);
2927static int dtls_srtp_handle_rtp_timeout(
const void *data)
2934 res = dtls_srtp_handle_timeout(instance, &
timeout, 0);
2946static int dtls_srtp_handle_rtcp_timeout(
const void *
data)
2953 res = dtls_srtp_handle_timeout(instance, &
timeout, 1);
2966 struct dtls_details *dtls = !rtcp ? &rtp->dtls : &rtp->
rtcp->dtls;
2967 ast_sched_cb cb = !rtcp ? dtls_srtp_handle_rtp_timeout : dtls_srtp_handle_rtcp_timeout;
2968 struct timeval dtls_timeout;
2974 res = DTLSv1_get_timeout(dtls->ssl, &dtls_timeout);
2976 ast_debug_dtls(3,
"(%p) DTLS srtp - DTLSv1_get_timeout return an error or there was no timeout set for %s\n",
2977 instance, rtcp ?
"RTCP" :
"RTP");
2981 timeout = dtls_timeout.tv_sec * 1000 + dtls_timeout.tv_usec / 1000;
2990 ast_log(
LOG_WARNING,
"Scheduling '%s' DTLS retransmission for RTP instance [%p] failed.\n",
2991 !rtcp ?
"RTP" :
"RTCP", instance);
2993 ast_debug_dtls(3,
"(%p) DTLS srtp - scheduled timeout timer for '%d' %s\n",
2994 instance, timeout, rtcp ?
"RTCP" :
"RTP");
3001 struct dtls_details *dtls = !rtcp ? &rtp->dtls : &rtp->
rtcp->dtls;
3004 ast_debug_dtls(3,
"(%p) DTLS srtp - stopped timeout timer'\n", instance);
3008static int dtls_srtp_renegotiate(
const void *data)
3016 SSL_renegotiate(rtp->dtls.ssl);
3017 SSL_do_handshake(rtp->dtls.ssl);
3019 if (rtp->
rtcp && rtp->
rtcp->dtls.ssl && rtp->
rtcp->dtls.ssl != rtp->dtls.ssl) {
3020 SSL_renegotiate(rtp->
rtcp->dtls.ssl);
3021 SSL_do_handshake(rtp->
rtcp->dtls.ssl);
3035 unsigned char *local_key, *local_salt, *remote_key, *remote_salt;
3038 struct dtls_details *dtls = !rtcp ? &rtp->dtls : &rtp->
rtcp->dtls;
3040 ast_debug_dtls(3,
"(%p) DTLS srtp - add local ssrc - rtcp=%d, set_remote_policy=%d'\n",
3041 instance, rtcp, set_remote_policy);
3044 if (!SSL_export_keying_material(dtls->ssl, material,
SRTP_MASTER_LEN * 2,
"EXTRACTOR-dtls_srtp", 19,
NULL, 0, 0)) {
3045 ast_log(
LOG_WARNING,
"Unable to extract SRTP keying material from DTLS-SRTP negotiation on RTP instance '%p'\n",
3052 local_key = material;
3057 remote_key = material;
3068 ast_log(
LOG_WARNING,
"Could not set key/salt information on local policy of '%p' when setting up DTLS-SRTP\n", rtp);
3073 ast_log(
LOG_WARNING,
"Could not set suite to '%u' on local policy of '%p' when setting up DTLS-SRTP\n", rtp->suite, rtp);
3079 if (set_remote_policy) {
3085 ast_log(
LOG_WARNING,
"Could not set key/salt information on remote policy of '%p' when setting up DTLS-SRTP\n", rtp);
3090 ast_log(
LOG_WARNING,
"Could not set suite to '%u' on remote policy of '%p' when setting up DTLS-SRTP\n", rtp->suite, rtp);
3098 ast_log(
LOG_WARNING,
"Could not set policies when setting up DTLS-SRTP on '%p'\n", rtp);
3108 if (remote_policy) {
3117 struct dtls_details *dtls = !rtcp ? &rtp->dtls : &rtp->
rtcp->dtls;
3120 ast_debug_dtls(3,
"(%p) DTLS setup SRTP rtp=%p'\n", instance, rtp);
3126 if (!(certificate = SSL_get_peer_certificate(dtls->ssl))) {
3127 ast_log(
LOG_WARNING,
"No certificate was provided by the peer on RTP instance '%p'\n", instance);
3132 if (rtp->remote_fingerprint[0]) {
3134 unsigned char fingerprint[EVP_MAX_MD_SIZE];
3140 type = EVP_sha256();
3142 ast_log(
LOG_WARNING,
"Unsupported fingerprint hash type on RTP instance '%p'\n", instance);
3146 if (!X509_digest(certificate,
type, fingerprint, &size) ||
3148 memcmp(fingerprint, rtp->remote_fingerprint, size)) {
3149 X509_free(certificate);
3150 ast_log(
LOG_WARNING,
"Fingerprint provided by remote party does not match that of peer certificate on RTP instance '%p'\n",
3156 X509_free(certificate);
3187 return elem -
value;
3193 return elem ==
value;
3206 version = (packet[0] & 0XC0) >> 6;
3221 m = packet[1] & 0x80;
3222 pt = packet[1] & 0x7F;
3223 if (m && pt >= 64 && pt <= 95) {
3234#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
3237#ifdef HAVE_PJPROJECT
3238 struct ast_sockaddr *loop = rtcp ? &rtp->rtcp_loop : &rtp->rtp_loop;
3240#ifdef TEST_FRAMEWORK
3241 struct ast_rtp_engine_test *
test = ast_rtp_instance_get_test(instance);
3248#ifdef TEST_FRAMEWORK
3249 if (
test &&
test->packets_to_drop > 0) {
3250 test->packets_to_drop--;
3255#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
3258 if ((*
in >= 20) && (*
in <= 63)) {
3259 struct dtls_details *dtls = !rtcp ? &rtp->dtls : &rtp->
rtcp->dtls;
3264 ast_log(
LOG_ERROR,
"Received SSL traffic on RTP instance '%p' without an SSL session\n",
3269 ast_debug_dtls(3,
"(%p) DTLS - __rtp_recvfrom rtp=%p - Got SSL packet '%d'\n", instance, rtp, *
in);
3271#ifdef HAVE_PJPROJECT
3290#ifdef HAVE_PJPROJECT
3292 int pass_src_check = 0;
3306 if (!rtp->ice_media_started) {
3319 for (ix = 0; ix < rtp->ice->real_ice->rcand_cnt; ix++) {
3320 pj_ice_sess_cand *rcand = &rtp->ice->real_ice->rcand[ix];
3327 if (!pass_src_check) {
3328 ast_log(
LOG_WARNING,
"%s: DTLS packet from %s dropped. Source not in ICE active candidate list.\n",
3346 dtls_srtp_stop_timeout_timer(instance, rtp, rtcp);
3352 SSL_set_accept_state(dtls->ssl);
3355 BIO_write(dtls->read_bio,
buf,
len);
3359 if ((
len < 0) && (SSL_get_error(dtls->ssl,
len) == SSL_ERROR_SSL)) {
3360 unsigned long error = ERR_get_error();
3361 ast_log(
LOG_ERROR,
"DTLS failure occurred on RTP instance '%p' due to reason '%s', terminating\n",
3362 instance, ERR_reason_error_string(
error));
3366 if (SSL_is_init_finished(dtls->ssl)) {
3370 if ((res = dtls_srtp_setup(rtp, instance, rtcp))) {
3376 ast_debug_dtls(3,
"(%p) DTLS - __rtp_recvfrom rtp=%p - established'\n", instance, rtp);
3379 dtls_srtp_start_timeout_timer(instance, rtp, rtcp);
3386#ifdef HAVE_PJPROJECT
3396 }
else if (rtp->ice) {
3400 struct ice_wrap *ice;
3402 pj_thread_register_check();
3404 pj_sockaddr_parse(pj_AF_UNSPEC(), 0, &combined, &
address);
3410 status = pj_ice_sess_on_rx_pkt(ice->real_ice,
3413 pj_sockaddr_get_len(&
address));
3416 if (
status != PJ_SUCCESS) {
3419 pj_strerror(
status, err_buf,
sizeof(err_buf));
3424 if (!rtp->passthrough) {
3429 if (!rtp->ice_active_remote_candidates && !rtp->ice_proposed_remote_candidates) {
3438 rtp->passthrough = 0;
3467#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
3484#ifdef HAVE_PJPROJECT
3485 if (transport_rtp->ice) {
3488 struct ice_wrap *ice;
3491 if (rtcp && rtp->
rtcp->
s == rtp->
s) {
3495 pj_thread_register_check();
3498 ice = transport_rtp->ice;
3500 if (instance == transport) {
3503 status = pj_ice_sess_send_data(ice->real_ice, component, temp,
len);
3505 if (instance == transport) {
3508 if (
status == PJ_SUCCESS) {
3546 unsigned int interval;
3559 double last_sum_of_squares = (*std_dev) * (*std_dev) * (*count ?: 1);
3561 if (++(*count) == 0) {
3573 delta1 = new_sample - *mean;
3574 *mean += (delta1 / *count);
3575 delta2 = new_sample - *mean;
3578 *std_dev = sqrt((last_sum_of_squares + (delta1 * delta2)) / *count);
3596 setsockopt(sock, SOL_SOCKET, SO_NO_CHECK, &nochecksums,
sizeof(nochecksums));
3600#ifdef HAVE_SOCK_IPV6_V6ONLY
3603 if (setsockopt(sock, IPPROTO_IPV6, IPV6_V6ONLY, &(
int){0},
sizeof(int)) != 0) {
3622 info->max_seq =
seq;
3624 memset(&info->received, 0,
sizeof(info->received));
3639 if (
seq == (uint16_t) (info->max_seq + 1)) {
3650 switch (info->stream_type) {
3660 }
else if (!info->packets
3675 info->max_seq =
seq;
3677 return info->packets;
3694#ifdef HAVE_PJPROJECT
3740static int stun_address_is_blacklisted(
const struct ast_sockaddr *addr)
3755 unsigned int count = 0;
3756 struct ifaddrs *ifa, *ia;
3759 struct ast_ice_host_candidate *candidate;
3760 int af_inet_ok = 0, af_inet6_ok = 0;
3761 struct sockaddr_in stunaddr_copy;
3766 af_inet_ok = af_inet6_ok = 1;
3771 if (getifaddrs(&ifa) < 0) {
3773 ast_log(
LOG_ERROR,
"(%p) ICE Error obtaining list of local addresses: %s\n",
3774 instance, strerror(
errno));
3776 ast_debug_ice(2,
"(%p) ICE add system candidates\n", instance);
3780 for (ia = ifa; ia && count < PJ_ICE_MAX_CAND; ia = ia->ifa_next) {
3783 if (!ia->ifa_addr || (ia->ifa_flags & IFF_UP) == 0) {
3788 if (ia->ifa_addr->sa_family != AF_INET && ia->ifa_addr->sa_family != AF_INET6) {
3794 if (ia->ifa_addr->sa_family == AF_INET) {
3795 const struct sockaddr_in *sa_in = (
struct sockaddr_in*)ia->ifa_addr;
3803 if ((sa_in->sin_addr.s_addr & htonl(0xFF000000)) == htonl(0x7F000000)) {
3808 if ((sa_in->sin_addr.s_addr & htonl(0xFF000000)) == 0) {
3831 if (!rtp_address_is_ice_blacklisted(&candidate->advertised)) {
3833 pj_sockaddr_set_port(&pjtmp, port);
3834 ast_rtp_ice_add_cand(instance, rtp, component, transport,
3835 PJ_ICE_CAND_TYPE_HOST, 65535, &pjtmp, &pjtmp,
NULL,
3836 pj_sockaddr_get_len(&pjtmp));
3840 if (!candidate->include_local) {
3857 if (rtp_address_is_ice_blacklisted(&tmp)) {
3862 pj_sockaddr_set_port(&pjtmp, port);
3863 ast_rtp_ice_add_cand(instance, rtp, component, transport,
3864 PJ_ICE_CAND_TYPE_HOST, 65535, &pjtmp, &pjtmp,
NULL,
3865 pj_sockaddr_get_len(&pjtmp));
3872 memcpy(&stunaddr_copy, &stunaddr,
sizeof(stunaddr));
3876 if (stunaddr_copy.sin_addr.s_addr && !stun_address_is_blacklisted(addr) &&
3878 count < PJ_ICE_MAX_CAND) {
3879 struct sockaddr_in
answer;
3883 "(%p) ICE request STUN %s %s candidate\n", instance,
3897 pj_sockaddr
ext, base;
3899 int srflx = 1, baseset = 0;
3902 pj_sockaddr_init(pj_AF_INET(), &
ext, &mapped, ntohs(
answer.sin_port));
3916 if (!pj_sockaddr_cmp(&candidate->
address, &
ext)) {
3924 if (srflx && baseset) {
3925 pj_sockaddr_set_port(&base, port);
3926 ast_rtp_ice_add_cand(instance, rtp, component, transport,
3927 PJ_ICE_CAND_TYPE_SRFLX, 65535, &
ext, &base, &base,
3928 pj_sockaddr_get_len(&
ext));
3934 if (pj_strlen(&turnaddr)) {
3935 ast_rtp_ice_turn_request(instance, component,
AST_TRANSPORT_TCP, pj_strbuf(&turnaddr), turnport,
3936 pj_strbuf(&turnusername), pj_strbuf(&turnpassword));
3967 return (
unsigned int) ms;
3970#ifdef HAVE_PJPROJECT
3988 pj_stun_config stun_config;
3989 pj_str_t ufrag, passwd;
3991 struct ice_wrap *ice_old;
3992 struct ice_wrap *ice;
3993 pj_ice_sess *real_ice =
NULL;
3997 rtp->ice_local_candidates =
NULL;
4003 ast_rtp_ice_stop(instance);
4007 pj_thread_register_check();
4009 pj_stun_config_init(&stun_config, &
cachingpool.factory, 0,
NULL, timer_heap);
4010 if (!stun_software_attribute) {
4011 stun_config.software_name = pj_str(
NULL);
4014 ufrag = pj_str(rtp->local_ufrag);
4015 passwd = pj_str(rtp->local_passwd);
4020 status = pj_ice_sess_create(&stun_config,
NULL, PJ_ICE_SESS_ROLE_UNKNOWN,
4021 rtp->ice_num_components, &ast_rtp_ice_sess_cb, &ufrag, &passwd,
NULL, &real_ice);
4023 if (
status == PJ_SUCCESS) {
4025 real_ice->user_data = instance;
4026 ice->real_ice = real_ice;
4042 if (
replace && rtp->
rtcp && rtp->ice_num_components > 1) {
4043 rtp_add_candidates_to_ice(instance, rtp, &rtp->
rtcp->
us,
4057 ast_rtp_ice_stop(instance);
4065 int x, startplace, i, maxloops;
4071 ast_log(
LOG_WARNING,
"Failed to create a new socket for RTP instance '%p'\n", instance);
4083 for (i = 0; i <= maxloops; i++) {
4087 ast_debug_rtp(1,
"(%p) RTP allocated port %d\n", instance, x);
4099 if (x == startplace || (
errno != EADDRINUSE &&
errno != EACCES)) {
4100 ast_log(
LOG_ERROR,
"Oh dear... we couldn't allocate a port for RTP instance '%p'\n", instance);
4107#ifdef HAVE_PJPROJECT
4116 rtp->ice_num_components = 2;
4117 ast_debug_ice(2,
"(%p) ICE creating session %s (%d)\n", instance,
4128#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
4130 rtp->dtls.timeout_timer = -1;
4138 int saved_rtp_s = rtp->
s;
4139#ifdef HAVE_PJPROJECT
4141 struct timespec ts = { .tv_sec = wait.tv_sec, .tv_nsec = wait.tv_usec * 1000, };
4144#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
4145 ast_rtp_dtls_stop(instance);
4156 if (saved_rtp_s != rtp->
rtcp->
s) {
4157 close(rtp->
rtcp->
s);
4162#ifdef HAVE_PJPROJECT
4163 pj_thread_register_check();
4170 if (rtp->turn_rtp) {
4171 rtp->turn_state = PJ_TURN_STATE_NULL;
4175 pj_turn_sock_destroy(rtp->turn_rtp);
4177 while (rtp->turn_state != PJ_TURN_STATE_DESTROYING) {
4180 rtp->turn_rtp =
NULL;
4184 if (rtp->turn_rtcp) {
4185 rtp->turn_state = PJ_TURN_STATE_NULL;
4189 pj_turn_sock_destroy(rtp->turn_rtcp);
4191 while (rtp->turn_state != PJ_TURN_STATE_DESTROYING) {
4194 rtp->turn_rtcp =
NULL;
4197 ast_debug_ice(2,
"(%p) ICE RTP transport deallocating\n", instance);
4199 ast_rtp_ice_stop(instance);
4202 if (rtp->ice_local_candidates) {
4203 ao2_ref(rtp->ice_local_candidates, -1);
4204 rtp->ice_local_candidates =
NULL;
4207 if (rtp->ice_active_remote_candidates) {
4208 ao2_ref(rtp->ice_active_remote_candidates, -1);
4209 rtp->ice_active_remote_candidates =
NULL;
4212 if (rtp->ice_proposed_remote_candidates) {
4213 ao2_ref(rtp->ice_proposed_remote_candidates, -1);
4214 rtp->ice_proposed_remote_candidates =
NULL;
4224 rtp_ioqueue_thread_remove(rtp->ioqueue);
4226 rtp->ioqueue =
NULL;
4242 rtp->
owner = instance;
4285#define SSRC_MAPPING_ELEM_CMP(elem, value) ((elem).instance == (value))
4379 int hdrlen = 12, res = 0, i = 0, payload = -1, sample_rate = -1;
4381 unsigned int *rtpheader = (
unsigned int*)data;
4394 }
else if (
digit ==
'*') {
4396 }
else if (
digit ==
'#') {
4398 }
else if ((
digit >=
'A') && (
digit <=
'D')) {
4400 }
else if ((
digit >=
'a') && (
digit <=
'd')) {
4414 if (payload_format) {
4422 if (sample_rate != -1) {
4426 if (payload == -1 ||
4437 if (payload == -1 || sample_rate == -1) {
4442 if (payload == -1) {
4447 ast_debug(1,
"Sending digit '%d' at rate %d with payload %d\n",
digit, sample_rate, payload);
4456 rtpheader[0] = htonl((2 << 30) | (1 << 23) | (payload << 16) | (rtp->
seqno));
4458 rtpheader[2] = htonl(rtp->
ssrc);
4461 for (i = 0; i < 2; i++) {
4465 res =
rtp_sendto(instance, (
void *) rtpheader, hdrlen + 4, 0, &remote_address, &ice);
4472 ast_verbose(
"Sent RTP DTMF packet to %s%s (type %-2.2d, seq %-6.6d, ts %-6.6u, len %-6.6d)\n",
4474 ice ?
" (via ICE)" :
"",
4479 rtpheader[0] = htonl((2 << 30) | (payload << 16) | (rtp->
seqno));
4495 int hdrlen = 12, res = 0;
4497 unsigned int *rtpheader = (
unsigned int*)data;
4510 rtpheader[2] = htonl(rtp->
ssrc);
4514 res =
rtp_sendto(instance, (
void *) rtpheader, hdrlen + 4, 0, &remote_address, &ice);
4522 ast_verbose(
"Sent RTP DTMF packet to %s%s (type %-2.2d, seq %-6.6d, ts %-6.6u, len %-6.6d)\n",
4524 ice ?
" (via ICE)" :
"",
4541 int hdrlen = 12, res = -1, i = 0;
4543 unsigned int *rtpheader = (
unsigned int*)data;
4544 unsigned int measured_samples;
4556 }
else if (
digit ==
'*') {
4558 }
else if (
digit ==
'#') {
4560 }
else if ((
digit >=
'A') && (
digit <=
'D')) {
4562 }
else if ((
digit >=
'a') && (
digit <=
'd')) {
4572 ast_debug_rtp(2,
"(%p) RTP adjusting final end duration from %d to %u\n",
4579 rtpheader[2] = htonl(rtp->
ssrc);
4581 rtpheader[3] |= htonl((1 << 23));
4584 for (i = 0; i < 3; i++) {
4589 res =
rtp_sendto(instance, (
void *) rtpheader, hdrlen + 4, 0, &remote_address, &ice);
4598 ast_verbose(
"Sent RTP DTMF packet to %s%s (type %-2.2d, seq %-6.6d, ts %-6.6u, len %-6.6d)\n",
4600 ice ?
" (via ICE)" :
"",
4639 ast_debug_rtp(3,
"(%p) RTP setting the marker bit due to a source update\n", instance);
4657 ast_debug_rtp(3,
"(%p) RTP changing ssrc from %u to %u due to a source change\n",
4658 instance,
rtp->ssrc, ssrc);
4661 ast_debug_rtp(3,
"(%p) RTP changing ssrc for SRTP from %u to %u\n",
4662 instance,
rtp->ssrc, ssrc);
4664 if (rtcp_srtp != srtp) {
4672 rtp->expectedrxseqno = -1;
4677static void timeval2ntp(
struct timeval tv,
unsigned int *msw,
unsigned int *lsw)
4679 unsigned int sec, usec, frac;
4680 sec = tv.tv_sec + 2208988800u;
4701 frac = ((((usec << 12) / 125) << 7) / 125) << 7;
4706static void ntp2timeval(
unsigned int msw,
unsigned int lsw,
struct timeval *tv)
4708 tv->tv_sec = msw - 2208988800u;
4710 tv->tv_usec = ((((lsw >> 7) * 125) >> 7) * 125) >> 12;
4714 unsigned int *lost_packets,
4717 unsigned int extended_seq_no;
4718 unsigned int expected_packets;
4719 unsigned int expected_interval;
4720 unsigned int received_interval;
4724 extended_seq_no =
rtp->cycles +
rtp->lastrxseqno;
4725 expected_packets = extended_seq_no -
rtp->seedrxseqno + 1;
4726 if (
rtp->rxcount > expected_packets) {
4727 expected_packets +=
rtp->rxcount - expected_packets;
4729 *lost_packets = expected_packets -
rtp->rxcount;
4730 expected_interval = expected_packets -
rtp->rtcp->expected_prior;
4731 received_interval =
rtp->rxcount -
rtp->rtcp->received_prior;
4732 if (received_interval > expected_interval) {
4738 expected_interval = received_interval;
4740 lost_interval = expected_interval - received_interval;
4741 if (expected_interval == 0 || lost_interval <= 0) {
4744 *fraction_lost = (lost_interval << 8) / expected_interval;
4748 rtp->rtcp->received_prior =
rtp->rxcount;
4749 rtp->rtcp->expected_prior = expected_packets;
4757 if (lost_interval <= 0) {
4758 rtp->rtcp->rxlost = 0;
4760 rtp->rtcp->rxlost = lost_interval;
4762 if (
rtp->rtcp->rxlost_count == 0) {
4763 rtp->rtcp->minrxlost =
rtp->rtcp->rxlost;
4765 if (lost_interval && lost_interval < rtp->rtcp->minrxlost) {
4766 rtp->rtcp->minrxlost =
rtp->rtcp->rxlost;
4768 if (lost_interval >
rtp->rtcp->maxrxlost) {
4769 rtp->rtcp->maxrxlost =
rtp->rtcp->rxlost;
4773 &
rtp->rtcp->stdev_rxlost, &
rtp->rtcp->rxlost_count);
4782 unsigned int now_lsw;
4783 unsigned int now_msw;
4784 unsigned int lost_packets;
4786 struct timeval dlsr = { 0, };
4789 if (!rtp || !rtp->
rtcp) {
4812 gettimeofday(&now,
NULL);
4824 report_block =
ast_calloc(1,
sizeof(*report_block));
4825 if (!report_block) {
4839 report_block->
dlsr = (((
dlsr.tv_sec * 1000) + (
dlsr.tv_usec / 1000)) * 65536) / 1000;
4876 if (!rtp || !rtp->
rtcp) {
4899 ast_verbose(
"* Sent RTCP %s to %s%s\n", sr ?
"SR" :
"RR",
4920 ast_verbose(
" DLSR: %4.4f (sec)\n\n", (
double)(report_block->
dlsr / 65536.0));
4930 rtcp_report, message_blob);
4940 uint16_t sdes_packet_len_bytes;
4941 uint16_t sdes_packet_len_rounded;
4943 if (!rtp || !rtp->
rtcp) {
4955 sdes_packet_len_bytes =
4964 sdes_packet_len_rounded = (sdes_packet_len_bytes + 3) & ~0x3;
4968 rtcpheader[8] = 0x01;
4983 len += (sdes_packet_len_rounded - sdes_packet_len_bytes);
5006 if (res == 0 || res == 1) {
5007 ast_debug_rtcp(1,
"(%p) RTCP failed to generate %s report!\n", instance, sr ?
"SR" :
"RR");
5015 if (res == 0 || res == 1) {
5016 ast_debug_rtcp(1,
"(%p) RTCP failed to generate SDES!\n", instance);
5020 return packet_len + res;
5029 unsigned int fci = 0;
5030 size_t remaining_missing_seqno;
5032 if (!rtp || !rtp->
rtcp) {
5045 if (!remaining_missing_seqno) {
5052 while (remaining_missing_seqno) {
5064 if (blp_index >= 17) {
5071 if (blp_index == 0) {
5072 fci |= (current_seqno << 16);
5074 fci |= (1 << (blp_index - 1));
5078 remaining_missing_seqno--;
5117 unsigned char *rtcpheader;
5131 if (res == 0 || res == 1) {
5143 res =
rtcp_sendto(instance, (
unsigned int *)rtcpheader, packet_len, 0, &remote_address, &ice);
5170 unsigned char *cp = p;
5174 datum = (time_msw << 18) & 0x00fc0000;
5175 datum |= (time_lsw >> 14) & 0x0003ffff;
5177 cp[0] = datum >> 16;
5191#ifdef TEST_FRAMEWORK
5192 struct ast_rtp_engine_test *
test = ast_rtp_instance_get_test(instance);
5203#ifdef TEST_FRAMEWORK
5205 test->send_report = 0;
5222 ast_debug_rtp(3,
"(%p) RTP audio difference is %d, ms is %u\n",
5223 instance,
abs((
int)rtp->
lastts - pred), ms);
5234 if (
abs((
int)rtp->
lastts - pred) < 7200) {
5238 ast_debug_rtp(3,
"(%p) RTP video difference is %d, ms is %u (%u), pred/ts/samples %u/%d/%d\n",
5249 if (
abs((
int)rtp->
lastts - pred) < 7200) {
5253 ast_debug_rtp(3,
"(%p) RTP other difference is %d, ms is %u, pred/ts/samples %u/%d/%d\n",
5285 if (
abs(difference) > 100) {
5290 seqno += difference;
5292 if (difference >= 0) {
5295 rtp->
seqno += difference;
5317 int abs_send_time_id;
5319 unsigned char *rtpheader;
5323 if (abs_send_time_id != -1) {
5329 packet_len = frame->
datalen + hdrlen;
5330 rtpheader = (
unsigned char *)(frame->
data.
ptr - hdrlen);
5339 if (abs_send_time_id != -1) {
5340 unsigned int now_msw;
5341 unsigned int now_lsw;
5347 rtpheader[16] = (abs_send_time_id << 4) | 2;
5357 payload =
ast_malloc(
sizeof(*payload) + packet_len);
5359 payload->
size = packet_len;
5360 memcpy(payload->
buf, rtpheader, packet_len);
5367 res =
rtp_sendto(instance, (
void *)rtpheader, packet_len, 0, &remote_address, &ice);
5370 ast_debug_rtp(1,
"(%p) RTP transmission error of packet %d to %s: %s\n",
5371 instance, rtp->
seqno,
5377 ast_debug(0,
"(%p) RTP NAT: Can't write RTP to private address %s, waiting for other end to send audio...\n",
5395 ast_verbose(
"Sent RTP packet to %s%s (type %-2.2d, seq %-6.6d, ts %-6.6u, len %-6.6d)\n",
5397 ice ?
" (via ICE)" :
"",
5406 if (seqno == rtp->
seqno) {
5421 for (i = 1; i < red->
num_gen+1; i++)
5428 for (i = 0; i < red->
num_gen; i++)
5429 red->
len[i] = red->
len[i+1];
5434 for (i = 0; i < red->
num_gen; i++) {
5455 unsigned char *rtcpheader;
5456 unsigned char bdata[1024];
5464 if (!rtp || !rtp->
rtcp) {
5492 if (res == 0 || res == 1) {
5504 res =
rtcp_sendto(instance, (
unsigned int *)rtcpheader, packet_len + fir_len, 0, rtp->
bundled ? remote_address : &rtp->
rtcp->
them, &ice);
5517 unsigned char *rtcpheader;
5518 unsigned char bdata[1024];
5527 ast_debug_rtcp(1,
"(%p) RTCP provided feedback frame of format %d to write, but only REMB is supported\n",
5528 instance, feedback->
fmt);
5532 if (!rtp || !rtp->
rtcp) {
5538 ast_debug_rtcp(1,
"(%p) RTCP provided feedback REMB report to write, but REMB support not enabled\n",
5556 if (res == 0 || res == 1) {
5566 put_unaligned_uint32(rtcpheader + packet_len + 12, htonl((
'R' << 24) | (
'E' << 16) | (
'M' << 8) | (
'B')));
5569 res =
rtcp_sendto(instance, (
unsigned int *)rtcpheader, packet_len + remb_len, 0, rtp->
bundled ? remote_address : &rtp->
rtcp->
them, &ice);
5591 ast_debug_rtp(1,
"(%p) RTP no remote address on instance, so dropping frame\n", instance);
5608 ast_debug_rtp(1,
"(%p) RTP received frame with no data for instance, so dropping frame\n", instance);
5640 ast_debug_rtp(1,
"(%s) RTP ooh, format changed from %s to %s\n",
5688 if (frame->
offset < hdrlen) {
5706 struct ast_rtp *rtp,
unsigned int rx_rtp_ts,
5711 double jitter = 0.0;
5712 double prev_jitter = 0.0;
5717 unsigned int arrival;
5721 gettimeofday(&now,
NULL);
5723 if (rtp->
rxcount == 1 || mark) {
5745 "Seed ts: %u current time: %f\n",
5787 "pkt: %5u Stable Seed ts: %u current time: %f\n",
5803 ast_debug_rtcp(3,
"%s: Current packet seq %d != last packet seq %d + 1. Ignoring\n",
5843 transit = arrival - rx_rtp_ts;
5851 jitter = (1.0/16.0) * (((
double)
d) - prev_jitter);
5860 "Arrival sec: %7.3f Arrival ts: %10u RX ts: %10u "
5861 "Transit samp: %6d Last transit samp: %6d d: %4d "
5862 "Curr jitter: %7.0f(%7.3f) Prev Jitter: %7.0f(%7.3f) New Jitter: %7.0f(%7.3f)\n",
5908 ast_debug_rtp(1,
"(%p) RTP ignore potential DTMF echo from '%s'\n",
5921 if (rtp->
resp ==
'X') {
5927 ast_debug_rtp(1,
"(%p) RTP creating %s DTMF Frame: %d (%c), at %s\n",
5947 unsigned int event, event_end, samples;
5954 event = ntohl(*((
unsigned int *)(
data)));
5956 event_end = ntohl(*((
unsigned int *)(
data)));
5963 ast_verbose(
"Got RTP RFC2833 from %s (type %-2.2d, seq %-6.6u, ts %-6.6u, len %-6.6d, mark %d, event %08x, end %d, duration %-5.5u) \n",
5975 }
else if (
event < 11) {
5977 }
else if (
event < 12) {
5979 }
else if (
event < 16) {
5980 resp =
'A' + (
event - 12);
5981 }
else if (
event < 17) {
5985 ast_debug_rtp(1,
"(%p) RTP ignoring RTP 2833 Event: %08x. Not a DTMF Digit.\n", instance,
event);
6006 unsigned int last_duration = new_duration & 0xFFFF;
6008 if (last_duration > 64000 &&
samples < last_duration) {
6009 new_duration += 0xFFFF + 1;
6011 new_duration = (new_duration & ~0xFFFF) |
samples;
6013 if (event_end & 0x80) {
6026 ast_debug_rtp(1,
"(%p) RTP dropping duplicate or out of order DTMF END frame (seqno: %u, ts %u, digit %c)\n",
6027 instance,
seqno, timestamp, resp);
6038 && timestamp <= rtp->last_end_timestamp.ts)) {
6044 ast_debug(0,
"Dropping out of order DTMF frame (seqno %u, ts %u, digit %c)\n",
6045 seqno, timestamp, resp);
6050 if (rtp->
resp && rtp->
resp != resp) {
6126 event =
data[3] & 0x1f;
6129 ast_debug(0,
"Cisco DTMF Digit: %02x (len=%d, seq=%d, flags=%02x, power=%u, history count=%d)\n",
event,
len,
seq,
flags, power, (
len - 4) / 2);
6132 }
else if (
event < 11) {
6134 }
else if (
event < 12) {
6136 }
else if (
event < 16) {
6137 resp =
'A' + (
event - 12);
6138 }
else if (
event < 17) {
6141 if ((!rtp->
resp && power) || (rtp->
resp && (rtp->
resp != resp))) {
6148 }
else if ((rtp->
resp == resp) && !power) {
6152 }
else if (rtp->
resp == resp) {
6169 ast_debug(0,
"- RTP 3389 Comfort noise event: Format %s (len = %d)\n",
6178 ast_log(
LOG_NOTICE,
"Comfort noise support incomplete in Asterisk (RFC 3389). Please turn off on client if possible. Client address: %s\n",
6208 struct timeval rtt_tv;
6211 unsigned int rtt_msw;
6212 unsigned int rtt_lsw;
6216 gettimeofday(&now,
NULL);
6219 lsr_a = ((msw & 0x0000ffff) << 16) | ((lsw & 0xffff0000) >> 16);
6220 rtt = lsr_a - lsr - dlsr;
6221 rtt_msw = (rtt & 0xffff0000) >> 16;
6222 rtt_lsw = (rtt & 0x0000ffff);
6223 rtt_tv.tv_sec = rtt_msw;
6237 rtt_tv.tv_usec = (rtt_lsw * 15625) >> 10;
6238 rtp->
rtcp->
rtt = (double)rtt_tv.tv_sec + ((
double)rtt_tv.tv_usec / 1000000);
6239 if (lsr_a - dlsr < lsr) {
6288 double reported_lost;
6295 if (reported_lost < rtp->rtcp->reported_minlost) {
6306#define RESCALE(in, inmin, inmax, outmin, outmax) ((((in - inmin)/(inmax-inmin))*(outmax-outmin))+outmin)
6331 double normdevrtt,
double normdev_rxjitter,
double stdev_rxjitter,
6332 double normdev_rxlost)
6347 double effective_latency = (normdevrtt * 1000)
6348 + ((normdev_rxjitter * 2) * (stdev_rxjitter / 3))
6359 if (effective_latency < 160) {
6360 r_value = 93.2 - (effective_latency / 40);
6362 r_value = 93.2 - (effective_latency - 120) / 10;
6366 r_value = r_value - (normdev_rxlost * 2.0);
6374 }
else if (r_value > 100) {
6377 pseudo_mos = 1 + (0.035 * r_value) + (r_value * (r_value - 60) * (100 - r_value) * 0.000007);
6385 mes =
RESCALE(pseudo_mos, 0.0, 5.0, 0.0, 100.0);
6407 if (mes < rtp->rtcp->reported_minmes) {
6417 ast_debug_rtcp(2,
"%s: rtt: %.9f j: %.9f sjh: %.9f lost: %.9f mes: %4.1f\n",
6451 ast_debug_rtcp(2,
" %s: rtt: %.9f j: %.9f sjh: %.9f lost: %.9f mes: %4.1f\n",
6461 struct ast_rtp *rtp,
unsigned int ssrc,
int source)
6489 struct ast_rtp *rtp,
unsigned int ssrc)
6496 struct ast_rtp *rtp,
unsigned int ssrc)
6507 str =
"Sender Report";
6510 str =
"Receiver Report";
6521 str =
"Source Description";
6555 unsigned int length)
6563 unsigned int current_word;
6567 int abs_send_time_id;
6568 unsigned int now_msw = 0;
6569 unsigned int now_lsw = 0;
6570 unsigned int packets_not_found = 0;
6574 "but we don't have a RTP packet storage!\n", instance);
6579 if (abs_send_time_id != -1) {
6589 for (packet_index = 3; packet_index < length; packet_index++) {
6590 current_word = ntohl(nackdata[position + packet_index]);
6591 pid = current_word >> 16;
6595 if (abs_send_time_id != -1) {
6601 res +=
rtp_sendto(instance, payload->
buf, payload->
size, 0, &remote_address, &ice);
6603 ast_debug_rtcp(1,
"(%p) RTCP received NACK request for RTP packet with seqno %d, "
6604 "but we don't have it\n", instance, pid);
6605 packets_not_found++;
6613 blp = current_word & 0xffff;
6618 unsigned int seqno = (pid + blp_index) % 65536;
6621 if (abs_send_time_id != -1) {
6624 res +=
rtp_sendto(instance, payload->
buf, payload->
size, 0, &remote_address, &ice);
6626 ast_debug_rtcp(1,
"(%p) RTCP remote end also requested RTP packet with seqno %d, "
6627 "but we don't have it\n", instance, seqno);
6628 packets_not_found++;
6636 if (packets_not_found) {
6642 ast_debug_rtcp(2,
"(%p) RTCP send buffer on RTP instance is now at maximum of %zu\n",
6652#define RTCP_LENGTH_MASK 0xFFFF
6653#define RTCP_PAYLOAD_TYPE_MASK 0xFF
6654#define RTCP_REPORT_COUNT_MASK 0x1F
6655#define RTCP_PADDING_MASK 0x01
6656#define RTCP_VERSION_MASK 0x03
6661#define RTCP_LENGTH_SHIFT 0
6662#define RTCP_PAYLOAD_TYPE_SHIFT 16
6663#define RTCP_REPORT_COUNT_SHIFT 24
6664#define RTCP_PADDING_SHIFT 29
6665#define RTCP_VERSION_SHIFT 30
6667#define RTCP_VERSION 2U
6668#define RTCP_VERSION_SHIFTED (RTCP_VERSION << RTCP_VERSION_SHIFT)
6669#define RTCP_VERSION_MASK_SHIFTED (RTCP_VERSION_MASK << RTCP_VERSION_SHIFT)
6682#define RTCP_VALID_MASK (RTCP_VERSION_MASK_SHIFTED | (((RTCP_PAYLOAD_TYPE_MASK & ~0x1)) << RTCP_PAYLOAD_TYPE_SHIFT))
6683#define RTCP_VALID_VALUE (RTCP_VERSION_SHIFTED | (RTCP_PT_SR << RTCP_PAYLOAD_TYPE_SHIFT))
6685#define RTCP_SR_BLOCK_WORD_LENGTH 5
6686#define RTCP_RR_BLOCK_WORD_LENGTH 6
6687#define RTCP_HEADER_SSRC_LENGTH 2
6688#define RTCP_FB_REMB_BLOCK_WORD_LENGTH 4
6689#define RTCP_FB_NACK_BLOCK_WORD_LENGTH 2
6692 const unsigned char *rtcpdata,
size_t size,
struct ast_sockaddr *addr)
6697 unsigned int *rtcpheader = (
unsigned int *)(rtcpdata);
6698 unsigned int packetwords;
6699 unsigned int position;
6700 unsigned int first_word;
6702 unsigned int ssrc_seen;
6705#ifdef TEST_FRAMEWORK
6706 struct ast_rtp_engine_test *test_engine;
6715 packetwords =
len / 4;
6726 ast_debug_rtcp(2,
"(%s) RTCP %p -- from %s: Frame size (%u words) is too short\n",
6732 first_word = ntohl(rtcpheader[position]);
6734 ast_debug_rtcp(2,
"(%s) RTCP %p -- from %s: Failed first packet validity check\n",
6741 if (packetwords <= position) {
6744 first_word = ntohl(rtcpheader[position]);
6746 if (position != packetwords) {
6747 ast_debug_rtcp(2,
"(%s) RTCP %p -- from %s: Failed packet version or length check\n",
6772 while (position < packetwords) {
6778 unsigned int ssrc_valid;
6779 unsigned int length;
6780 unsigned int min_length;
6782 unsigned int use_packet_source = 1;
6791 first_word = ntohl(rtcpheader[i]);
6805 use_packet_source = 0;
6817 use_packet_source = 0;
6836 min_length = length;
6839 ast_debug_rtcp(1,
"(%p) RTCP %p -- from %s: %u(%s) skipping record\n",
6843 ast_verbose(
"RTCP from %s: %u(%s) skipping record\n",
6849 if (length < min_length) {
6850 ast_debug_rtcp(1,
"(%p) RTCP %p -- from %s: %u(%s) length field less than expected minimum. Min:%u Got:%u\n",
6852 min_length - 1, length - 1);
6865 rtcp_report->reception_report_count = rc;
6867 ssrc = ntohl(rtcpheader[i + 2]);
6868 rtcp_report->ssrc = ssrc;
6872 ssrc = ntohl(rtcpheader[i + 1]);
6875 ssrc = ntohl(rtcpheader[i + 2]);
6892 ast_verbose(
"Packet Subtype: %u (%s)\n", rc, subtype);
6905 if (use_packet_source) {
6910 if (child && child != transport) {
6922 rtp = transport_rtp;
6926 rtp = transport_rtp;
6939 if ((ssrc != rtp->
themssrc && use_packet_source && ssrc != 1)
6947 ast_debug_rtcp(1,
"(%p) RTCP %p -- from %s: Skipping record, received SSRC '%u' != expected '%u'\n",
6962 ast_debug(0,
"(%p) RTCP NAT: Got RTCP from other end. Now sending to address %s\n",
6972 rtp->
rtcp->
themrxlsr = ((ntohl(rtcpheader[i]) & 0x0000ffff) << 16) | ((ntohl(rtcpheader[i + 1]) & 0xffff0000) >> 16);
6973 rtp->
rtcp->
spc = ntohl(rtcpheader[i + 3]);
6974 rtp->
rtcp->
soc = ntohl(rtcpheader[i + 4]);
6977 rtcp_report->sender_information.packet_count = rtp->
rtcp->
spc;
6978 rtcp_report->sender_information.octet_count = rtp->
rtcp->
soc;
6980 (
unsigned int)ntohl(rtcpheader[i + 1]),
6981 &rtcp_report->sender_information.ntp_timestamp);
6982 rtcp_report->sender_information.rtp_timestamp = ntohl(rtcpheader[i + 2]);
6985 (
unsigned int)rtcp_report->sender_information.ntp_timestamp.tv_sec,
6986 (
unsigned int)rtcp_report->sender_information.ntp_timestamp.tv_usec);
6987 ast_verbose(
"RTP timestamp: %u\n", rtcp_report->sender_information.rtp_timestamp);
6989 rtcp_report->sender_information.packet_count,
6990 rtcp_report->sender_information.octet_count);
7001 report_block =
ast_calloc(1,
sizeof(*report_block));
7002 if (!report_block) {
7008 rtcp_report->report_block[0] = report_block;
7013 report_block->
ia_jitter = ntohl(rtcpheader[i + 3]);
7014 report_block->
lsr = ntohl(rtcpheader[i + 4]);
7015 report_block->
dlsr = ntohl(rtcpheader[i + 5]);
7016 if (report_block->
lsr) {
7020 unsigned int lsr_now, lsw, msw;
7021 gettimeofday(&now,
NULL);
7023 lsr_now = (((msw & 0xffff) << 16) | ((lsw & 0xffff0000) >> 16));
7024 ast_verbose(
"Internal RTCP NTP clock skew detected: "
7025 "lsr=%u, now=%u, dlsr=%u (%u:%03ums), "
7027 report_block->
lsr, lsr_now, report_block->
dlsr, report_block->
dlsr / 65536,
7028 (report_block->
dlsr % 65536) * 1000 / 65536,
7029 report_block->
dlsr - (lsr_now - report_block->
lsr));
7050 ast_verbose(
" Last SR(our NTP): %lu.%010lu\n",(
unsigned long)(report_block->
lsr) >> 16,((
unsigned long)(report_block->
lsr) << 16) * 4096);
7051 ast_verbose(
" DLSR: %4.4f (sec)\n",(
double)report_block->
dlsr / 65536.0);
7091 transport_rtp->
f.
src =
"RTP";
7093 f = &transport_rtp->
f;
7104 ast_verbose(
"Received generic RTCP NACK message\n");
7121 ast_verbose(
"Received an RTCP Fast Update Request\n");
7128 transport_rtp->
f.
src =
"RTP";
7129 f = &transport_rtp->
f;
7144 feedback = transport_rtp->
f.
data.
ptr;
7148 first_word = ntohl(rtcpheader[i + 2]);
7149 feedback->
remb.
br_exp = (first_word >> 18) & ((1 << 6) - 1);
7158 transport_rtp->
f.
src =
"RTP";
7159 f = &transport_rtp->
f;
7170#ifdef TEST_FRAMEWORK
7171 if ((test_engine = ast_rtp_instance_get_test(instance))) {
7172 test_engine->sdes_received = 1;
7208 if ((res =
rtcp_recvfrom(instance, read_area, read_area_size,
7217 if (
errno != EAGAIN) {
7231 struct sockaddr_in addr_tmp;
7241 ast_debug_stun(2,
"(%p) STUN cannot do for non IPv4 address %s\n",
7261 int res = 0, payload = 0, bridged_payload = 0, mark;
7266 unsigned int timestamp = ntohl(rtpheader[1]);
7274 if (!payload_type) {
7280 payload_type->asterisk_format, payload_type->format, payload_type->rtp_code, payload_type->sample_rate);
7283 if (bridged_payload < 0) {
7289 ast_debug_rtp(1,
"(%p, %p) RTP unsupported payload type received\n", instance, instance1);
7299 ast_debug_rtp(1,
"(%p, %p) RTP feeding packet with duplicate timestamp to core\n", instance, instance1);
7303 if (payload_type->asterisk_format) {
7331 ast_debug_rtp(1,
"(%p, %p) RTP Feeding packet to core until DTMF finishes\n", instance, instance1);
7337 if (payload_type->asterisk_format) {
7345 ast_debug_rtp(1,
"(%p, %p) RTP asymmetric RTP codecs detected (TX: %s, RX: %s) sending frame to core\n",
7359 ast_debug_rtp(5,
"(%p, %p) RTP remote address is null, most likely RTP has been stopped\n",
7360 instance, instance1);
7386 bridged->
ssrc = ntohl(rtpheader[2]);
7390 res =
rtp_sendto(instance1, (
void *)rtpheader,
len, 0, &remote_address, &ice);
7394 "RTP Transmission error of packet to %s: %s\n",
7400 "RTP NAT: Can't write RTP to private "
7401 "address %s, waiting for other end to "
7413 ast_verbose(
"Sent RTP P2P packet to %s%s (type %-2.2d, len %-6.6d)\n",
7415 ice ?
" (via ICE)" :
"",
7416 bridged_payload,
len - hdrlen);
7434 return a.seqno -
b.seqno;
7438 uint16_t *status_vector_chunk,
int status)
7441 *status_vector_chunk_bits -= 2;
7447 *status_vector_chunk |= (
status << (16 - 2 - (14 - *status_vector_chunk_bits)));
7450 if (*status_vector_chunk_bits) {
7456 *status_vector_chunk_bits = 14;
7462 *status_vector_chunk = (1 << 15) | (1 << 14);
7467 uint16_t *status_vector_chunk,
int *run_length_chunk_count,
int *run_length_chunk_status,
int status)
7469 if (*run_length_chunk_status !=
status) {
7470 while (*run_length_chunk_count > 0 && *run_length_chunk_count < 8) {
7478 status_vector_chunk, *run_length_chunk_status);
7479 *run_length_chunk_count -= 1;
7482 if (*run_length_chunk_count) {
7484 put_unaligned_uint16(rtcpheader + *packet_len, htons((0 << 15) | (*run_length_chunk_status << 13) | *run_length_chunk_count));
7489 *run_length_chunk_count = 0;
7490 *run_length_chunk_status = -1;
7492 if (*status_vector_chunk_bits == 14) {
7494 *run_length_chunk_status =
status;
7495 *run_length_chunk_count = 1;
7499 status_vector_chunk,
status);
7503 *run_length_chunk_count += 1;
7511 unsigned char *rtcpheader;
7516 int status_vector_chunk_bits = 14;
7517 uint16_t status_vector_chunk = (1 << 15) | (1 << 14);
7518 int run_length_chunk_count = 0;
7519 int run_length_chunk_status = -1;
7520 int packet_len = 20;
7522 int packet_count = 0;
7523 unsigned int received_msw;
7524 unsigned int received_lsw;
7528 unsigned int large_delta_count = 0;
7529 unsigned int small_delta_count = 0;
7530 unsigned int lost_count = 0;
7545 rtcpheader = (
unsigned char *)bdata;
7549 previous_packet = first_packet;
7576 &status_vector_chunk, &run_length_chunk_count, &run_length_chunk_status, 0);
7582 if (packet_len + delta_len + 20 >
sizeof(bdata)) {
7602 &status_vector_chunk, &run_length_chunk_count, &run_length_chunk_status, 2);
7604 large_delta_count++;
7608 &status_vector_chunk, &run_length_chunk_count, &run_length_chunk_status, 1);
7610 small_delta_count++;
7616 if (packet_len + delta_len + 20 >
sizeof(bdata)) {
7621 if (status_vector_chunk_bits != 14) {
7625 }
else if (run_length_chunk_count) {
7627 put_unaligned_uint16(rtcpheader + packet_len, htons((0 << 15) | (run_length_chunk_status << 13) | run_length_chunk_count));
7656 while (packet_len % 4) {
7657 rtcpheader[packet_len++] = 0;
7676 ast_debug_rtcp(2,
"(%p) RTCP sending transport-cc feedback packet of size '%d' on '%s' with packet count of %d (small = %d, large = %d, lost = %d)\n",
7679 res =
rtcp_sendto(instance, (
unsigned int *)rtcpheader, packet_len, 0, &remote_address, &ice);
7695 unsigned char *data,
int len)
7697 uint16_t *
seqno = (uint16_t *)data;
7737 ast_debug_rtcp(1,
"(%p) RTCP starting transport-cc feedback transmission on RTP instance '%p'\n", instance, transport);
7743 ast_log(
LOG_WARNING,
"Scheduling RTCP transport-cc feedback transmission failed on RTP instance '%p'\n",
7756 if (transport_wide_cc_id == -1) {
7763 int extension_len = (
extension[pos] & 0xF) + 1;
7780 }
else if (
id == 15) {
7790 }
else if ((pos + extension_len) >
len) {
7798 if (
id == transport_wide_cc_id) {
7803 pos += extension_len;
7808 const struct ast_sockaddr *remote_address,
unsigned char *read_area,
int length,
int prev_seqno,
7809 unsigned int bundled)
7811 unsigned int *rtpheader = (
unsigned int*)(read_area);
7814 int res = length, hdrlen = 12, ssrc, seqno, payloadtype, padding, mark,
ext, cc;
7815 unsigned int timestamp;
7831 ssrc = ntohl(rtpheader[2]);
7832 seqno = ntohl(rtpheader[0]);
7833 payloadtype = (seqno & 0x7f0000) >> 16;
7834 padding = seqno & (1 << 29);
7835 mark = seqno & (1 << 23);
7836 ext = seqno & (1 << 28);
7837 cc = (seqno & 0xF000000) >> 24;
7839 timestamp = ntohl(rtpheader[1]);
7845 res -= read_area[res - 1];
7855 int extensions_size = (ntohl(rtpheader[hdrlen/4]) & 0xffff) << 2;
7856 unsigned int profile;
7857 profile = (ntohl(rtpheader[3]) & 0xffff0000) >> 16;
7859 if (profile == 0xbede) {
7863 if (profile == 0x505a) {
7864 ast_log(
LOG_DEBUG,
"Found Zfone extension in RTP stream - zrtp - not supported.\n");
7871 hdrlen += extensions_size;
7892 ast_debug(0,
"(%p) RTP forcing Marker bit, because SSRC has changed\n", instance);
7934 if ((
int)prev_seqno - (
int)
seqno > 100)
7944 struct timeval rxtime;
7966 if (!payload->asterisk_format) {
7976 }
else if (payload->rtp_code ==
AST_RTP_CN) {
8030 rtp->
f.
data.
ptr = read_area + hdrlen;
8037 && ((
int)
seqno - (prev_seqno + 1) > 0)
8038 && ((
int)
seqno - (prev_seqno + 1) < 10)) {
8050 unsigned char *header_end;
8051 int num_generations;
8054 int diff =(int)
seqno - (prev_seqno+1);
8059 if (header_end ==
NULL) {
8064 header_length = header_end -
data;
8065 num_generations = header_length / 4;
8066 len = header_length;
8069 for (x = 0; x < num_generations; x++)
8077 }
else if (diff > num_generations && diff < 10) {
8087 for ( x = 0; x < num_generations - diff; x++)
8138struct rtp_drop_packets_data {
8140 unsigned int use_random_num;
8142 unsigned int use_random_interval;
8145 unsigned int num_to_drop;
8147 unsigned int num_dropped;
8150 struct timeval interval;
8152 struct timeval next;
8159static struct rtp_drop_packets_data drop_packets_data;
8161static void drop_packets_data_update(
struct timeval tv)
8170 drop_packets_data.num_dropped = drop_packets_data.use_random_num ?
8171 ast_random() % drop_packets_data.num_to_drop : 0;
8179 if (drop_packets_data.use_random_interval) {
8182 &drop_packets_data.interval) * ((
double)(
ast_random() % 100 + 1) / 100),
8185 drop_packets_data.next =
ast_tvadd(tv, interval);
8187 drop_packets_data.next =
ast_tvadd(tv, drop_packets_data.interval);
8191static int should_drop_packets(
struct ast_sockaddr *addr)
8195 if (!drop_packets_data.num_to_drop) {
8204 (drop_packets_data.port ?
8212 if (drop_packets_data.num_dropped < drop_packets_data.num_to_drop) {
8213 ++drop_packets_data.num_dropped;
8222 if (
ast_tvzero(drop_packets_data.interval)) {
8224 drop_packets_data.num_to_drop = 0;
8229 if (
ast_tvcmp(tv, drop_packets_data.next) == -1) {
8239 drop_packets_data_update(tv);
8252 int res, hdrlen = 12,
version, payloadtype;
8255 unsigned int *rtpheader = (
unsigned int*)(read_area), seqno, ssrc, timestamp, prev_seqno;
8259 unsigned int bundled;
8270 if ((res =
rtp_recvfrom(instance, read_area, read_area_size, 0,
8279 if (
errno != EAGAIN) {
8301 for (i = 0; i < res; ++i) {
8302 if (read_area[i] !=
'\0') {
8311 seqno = ntohl(rtpheader[0]);
8316 struct sockaddr_in addr_tmp;
8325 ast_debug_stun(1,
"(%p) STUN cannot do for non IPv4 address %s\n",
8343 ssrc = ntohl(rtpheader[2]);
8354 if (child != instance) {
8412 ast_verb(4,
"%p -- Strict RTP learning complete - Locking on source address %s\n",
8441 ast_verb(4,
"%p -- Strict RTP switching to RTP target address %s as source\n",
8460 ast_verb(4,
"%p -- Strict RTP qualifying stream type: %s\n",
8465 ast_verb(4,
"%p -- Strict RTP switching source address to %s\n",
8472 ast_debug_rtp(1,
"(%p) RTP %p -- Received packet from %s, dropping due to strict RTP protection. Will switch to it in %d packets.\n",
8481 ast_debug_rtp(1,
"(%p) RTP %p -- Received packet from %s, dropping due to strict RTP protection. Qualifying new stream.\n",
8500 ast_debug_rtp(1,
"(%p) RTP %p -- Received packet from %s, dropping due to strict RTP protection.\n",
8502#ifdef TEST_FRAMEWORK
8504 static int strict_rtp_test_event = 1;
8505 if (strict_rtp_test_event) {
8508 strict_rtp_test_event = 0;
8529 ast_debug(0,
"(%p) RTP NAT: Got audio from other end. Now sending to address %s\n",
8535 payloadtype = (seqno & 0x7f0000) >> 16;
8537 timestamp = ntohl(rtpheader[1]);
8540 if (should_drop_packets(&addr)) {
8541 ast_debug(0,
"(%p) RTP: drop received packet from %s (type %-2.2d, seq %-6.6u, ts %-6.6u, len %-6.6d)\n",
8548 ast_verbose(
"Got RTP packet from %s (type %-2.2d, seq %-6.6u, ts %-6.6u, len %-6.6d)\n",
8550 payloadtype, seqno, timestamp, res - hdrlen);
8564 frame =
ast_rtp_interpret(instance, srtp, &addr, read_area, res, prev_seqno, bundled);
8579 frame =
ast_rtp_interpret(instance, srtp, &addr, read_area, res, prev_seqno, bundled);
8586 ast_debug_rtp(2,
"(%p) RTP Packet with sequence number '%d' on instance is no longer missing\n",
8594 frame =
ast_rtp_interpret(instance, srtp, &addr, read_area, res, prev_seqno, bundled);
8629 ast_debug_rtp(2,
"(%p) RTP pulled buffered packet with sequence number '%d' to additionally return\n",
8630 instance, frame->
seqno);
8651 ast_debug_rtp(2,
"(%p) RTP source has wild gap or packet loss, sending FIR\n",
8669 ast_debug_rtp(2,
"(%p) RTP inserted just received packet with sequence number '%d' in correct order\n",
8694 ast_debug_rtp(2,
"(%p) RTP emptying queue and returning packet with sequence number '%d'\n",
8695 instance, frame->
seqno);
8712 frame =
ast_rtp_interpret(instance, srtp, &addr, read_area, res, prev_seqno, bundled);
8719 ast_debug_rtp(2,
"(%p) RTP adding just received packet with sequence number '%d' to end of dumped queue\n",
8754 ast_debug_rtp(2,
"(%p) RTP received an old packet with sequence number '%d', dropping it\n",
8759 ast_debug_rtp(2,
"(%p) RTP received a duplicate transmission of packet with sequence number '%d', dropping it\n",
8767 unsigned int missing_seqnos_added = 0;
8769 ast_debug_rtp(2,
"(%p) RTP received an out of order packet with sequence number '%d' while expecting '%d' from the future\n",
8772 payload =
ast_malloc(
sizeof(*payload) + res);
8783 payload->
size = res;
8784 memcpy(payload->
buf, rtpheader, res);
8796 if (!remove_failed) {
8797 ast_debug_rtp(2,
"(%p) RTP packet with sequence number '%d' is no longer missing\n",
8806 missing_seqno = seqno;
8807 while (remove_failed) {
8811 if (missing_seqno < 0) {
8812 missing_seqno = 65535;
8816 if (missing_seqno == prev_seqno) {
8844 ast_debug_rtp(2,
"(%p) RTP added missing sequence number '%d'\n",
8845 instance, missing_seqno);
8848 missing_seqnos_added++;
8873 rtcpheader =
ast_malloc(
sizeof(*rtcpheader) + data_size);
8875 ast_debug_rtcp(1,
"(%p) RTCP failed to allocate memory for NACK\n", instance);
8879 memset(rtcpheader, 0, data_size);
8883 if (res == 0 || res == 1) {
8892 ast_debug_rtcp(1,
"(%p) RTCP failed to construct NACK, stopping here\n", instance);
8898 res =
rtcp_sendto(instance, rtcpheader, packet_len, 0, &remote_address, &ice);
8900 ast_debug_rtcp(1,
"(%p) RTCP failed to send NACK request out\n", instance);
8902 ast_debug_rtcp(2,
"(%p) RTCP sending a NACK request to get missing packets\n", instance);
8922 ast_debug_rtcp(1,
"(%p) RTCP ignoring duplicate property\n", instance);
8932#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
8933 rtp->
rtcp->dtls.timeout_timer = -1;
8969 ast_debug_rtcp(1,
"(%p) RTCP failed to create a new socket\n", instance);
8978 ast_debug_rtcp(1,
"(%p) RTCP failed to setup RTP instance\n", instance);
8979 close(rtp->
rtcp->
s);
8985#ifdef HAVE_PJPROJECT
8990#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
8991 dtls_setup_rtcp(instance);
9004 if (rtp->
rtcp->
s > -1 && rtp->
rtcp->
s != rtp->
s) {
9005 close(rtp->
rtcp->
s);
9010#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
9011 if (rtp->
rtcp->dtls.ssl && rtp->
rtcp->dtls.ssl != rtp->dtls.ssl) {
9012 SSL_free(rtp->
rtcp->dtls.ssl);
9014 rtp->
rtcp->dtls.ssl = rtp->dtls.ssl;
9029 ast_debug_rtcp(1,
"(%p) RTCP failed to tear down RTCP\n", instance);
9041 ast_debug_rtcp(1,
"(%p) RTCP failed to tear down transport-cc feedback\n", instance);
9048 if (rtp->
rtcp->
s > -1 && rtp->
rtcp->
s != rtp->
s) {
9049 close(rtp->
rtcp->
s);
9051#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
9053 dtls_srtp_stop_timeout_timer(instance, rtp, 1);
9056 if (rtp->
rtcp->dtls.ssl && rtp->
rtcp->dtls.ssl != rtp->dtls.ssl) {
9057 SSL_free(rtp->
rtcp->dtls.ssl);
9123 ast_debug_rtcp(1,
"(%p) RTCP setting address on RTP instance\n", instance);
9155 ast_verb(4,
"%p -- Strict RTP learning after remote address set to: %s\n",
9203 for (x = 0; x < generations; x++) {
9204 rtp->
red->
pt[x] = payloads[x];
9205 rtp->
red->
pt[x] |= 1 << 7;
9226 const unsigned char *primary = red->
buf_data;
9229 if (primary[0] == 0x08 || primary[0] == 0x0a || primary[0] == 0x0d) {
9234 if (primary[0] == 0x08 || primary[0] == 0x0a || primary[0] == 0x0d) {
9363 struct sockaddr_in suggestion_tmp;
9380#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
9384 dtls_srtp_stop_timeout_timer(instance, rtp, 0);
9386 dtls_srtp_stop_timeout_timer(instance, rtp, 1);
9440 unsigned int *rtpheader;
9442 int res, payload = 0;
9456 level = 127 - (level & 0x7f);
9461 rtpheader = (
unsigned int *)data;
9462 rtpheader[0] = htonl((2 << 30) | (payload << 16) | (rtp->
seqno));
9463 rtpheader[1] = htonl(rtp->
lastts);
9464 rtpheader[2] = htonl(rtp->
ssrc);
9467 res =
rtp_sendto(instance, (
void *) rtpheader, hdrlen + 1, 0, &remote_address, &ice);
9475 ast_verbose(
"Sent Comfort Noise RTP packet to %s%s (type %-2.2d, seq %-6.6d, ts %-6.6u, len %-6.6d)\n",
9477 ice ?
" (via ICE)" :
"",
9567 if (child_rtp->
bundled == parent) {
9612#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
9617 dtls_srtp_add_local_ssrc(parent_rtp, parent, 0, child_rtp->
ssrc, 0);
9633#ifdef HAVE_PJPROJECT
9634static void stunaddr_resolve_callback(
const struct ast_dns_query *query)
9638 const char *stunaddr_resolved_str;
9640 if (!store_stunaddr_resolved(query)) {
9641 ast_log(
LOG_WARNING,
"Failed to resolve stunaddr '%s'. Cancelling recurring resolution.\n", stunaddr_name);
9650 ast_debug_stun(2,
"Resolved stunaddr '%s' to '%s'. Lowest TTL = %d.\n",
9652 stunaddr_resolved_str,
9661static int store_stunaddr_resolved(
const struct ast_dns_query *query)
9671 if (
rr_type == ns_t_a && data_size == 4) {
9673 memcpy(&stunaddr.sin_addr,
data, data_size);
9674 stunaddr.sin_family = AF_INET;
9679 ast_debug_stun(3,
"Unrecognized rr_type '%u' or data_size '%zu' from DNS query for stunaddr '%s'\n",
9687static void clean_stunaddr(
void) {
9688 if (stunaddr_resolver) {
9690 ast_log(
LOG_ERROR,
"Failed to cancel recurring DNS resolution of previous stunaddr.\n");
9692 ao2_ref(stunaddr_resolver, -1);
9693 stunaddr_resolver =
NULL;
9696 memset(&stunaddr, 0,
sizeof(stunaddr));
9701#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
9708#ifdef HAVE_PJPROJECT
9714 ast_debug_dtls(3,
"(%p) DTLS - ast_rtp_activate rtp=%p - setup and perform DTLS'\n", instance, rtp);
9716 dtls_perform_setup(&rtp->dtls);
9717 dtls_perform_handshake(instance, &rtp->dtls, 0);
9720 dtls_perform_setup(&rtp->
rtcp->dtls);
9721 dtls_perform_handshake(instance, &rtp->
rtcp->dtls, 1);
9731 char *debughost =
NULL;
9732 char *debugport =
NULL;
9735 ast_cli(
a->fd,
"Lookup failed for '%s'\n", arg);
9739 ast_cli(
a->fd,
"RTP Packet Debugging Enabled for address: %s\n",
9748 char *debughost =
NULL;
9749 char *debugport =
NULL;
9752 ast_cli(
a->fd,
"Lookup failed for '%s'\n", arg);
9756 ast_cli(
a->fd,
"RTCP Packet Debugging Enabled for address: %s\n",
9766 e->
command =
"rtp set debug {on|off|ip}";
9768 "Usage: rtp set debug {on|off|ip host[:port]}\n"
9769 " Enable/Disable dumping of all RTP packets. If 'ip' is\n"
9770 " specified, limit the dumped packets to those to and from\n"
9771 " the specified 'host' with optional port.\n";
9777 if (
a->argc == e->
args) {
9778 if (!strncasecmp(
a->argv[e->
args-1],
"on", 2)) {
9781 ast_cli(
a->fd,
"RTP Packet Debugging Enabled\n");
9783 }
else if (!strncasecmp(
a->argv[e->
args-1],
"off", 3)) {
9785 ast_cli(
a->fd,
"RTP Packet Debugging Disabled\n");
9788 }
else if (
a->argc == e->
args +1) {
9798#ifdef HAVE_PJPROJECT
9799 struct sockaddr_in stunaddr_copy;
9803 e->
command =
"rtp show settings";
9805 "Usage: rtp show settings\n"
9806 " Display RTP configuration settings\n";
9816 ast_cli(
a->fd,
"\n\nGeneral Settings:\n");
9817 ast_cli(
a->fd,
"----------------\n");
9831#ifdef HAVE_PJPROJECT
9835 memcpy(&stunaddr_copy, &stunaddr,
sizeof(stunaddr));
9837 ast_cli(
a->fd,
" STUN address: %s:%d\n",
ast_inet_ntoa(stunaddr_copy.sin_addr), htons(stunaddr_copy.sin_port));
9847 e->
command =
"rtcp set debug {on|off|ip}";
9849 "Usage: rtcp set debug {on|off|ip host[:port]}\n"
9850 " Enable/Disable dumping of all RTCP packets. If 'ip' is\n"
9851 " specified, limit the dumped packets to those to and from\n"
9852 " the specified 'host' with optional port.\n";
9858 if (
a->argc == e->
args) {
9859 if (!strncasecmp(
a->argv[e->
args-1],
"on", 2)) {
9862 ast_cli(
a->fd,
"RTCP Packet Debugging Enabled\n");
9864 }
else if (!strncasecmp(
a->argv[e->
args-1],
"off", 3)) {
9866 ast_cli(
a->fd,
"RTCP Packet Debugging Disabled\n");
9869 }
else if (
a->argc == e->
args +1) {
9880 e->
command =
"rtcp set stats {on|off}";
9882 "Usage: rtcp set stats {on|off}\n"
9883 " Enable/Disable dumping of RTCP stats.\n";
9889 if (
a->argc != e->
args)
9892 if (!strncasecmp(
a->argv[e->
args-1],
"on", 2))
9894 else if (!strncasecmp(
a->argv[e->
args-1],
"off", 3))
9905static unsigned int use_random(
struct ast_cli_args *
a,
int pos,
unsigned int index)
9908 !strcasecmp(
a->argv[index - 1],
"random");
9913 static const char *
const completions_2[] = {
"stop",
"<N>",
NULL };
9914 static const char *
const completions_3[] = {
"random",
"incoming packets",
NULL };
9915 static const char *
const completions_5[] = {
"on",
"every",
NULL };
9916 static const char *
const completions_units[] = {
"random",
"usec",
"msec",
"sec",
"min",
NULL };
9918 unsigned int use_random_num = 0;
9919 unsigned int use_random_interval = 0;
9920 unsigned int num_to_drop = 0;
9921 unsigned int interval = 0;
9922 const char *interval_s =
NULL;
9923 const char *unit_s =
NULL;
9925 const char *addr_s =
NULL;
9931 "Usage: rtp drop [stop|[<N> [random] incoming packets[ every <N> [random] {usec|msec|sec|min}][ on <ip[:port]>]]\n"
9932 " Drop RTP incoming packets.\n";
9935 use_random_num = use_random(
a,
a->pos, 4);
9936 use_random_interval = use_random(
a,
a->pos, 8 + use_random_num) ||
9937 use_random(
a,
a->pos, 10 + use_random_num);
9939 switch (
a->pos - use_random_num - use_random_interval) {
9947 if (!strcasecmp(
a->argv[
a->pos - 2],
"on")) {
9953 if (!strcasecmp(
a->argv[
a->pos - 2 - use_random_interval],
"every")) {
9958 if (!strcasecmp(
a->argv[
a->pos - 3 - use_random_interval],
"every")) {
9971 use_random_num = use_random(
a,
a->argc, 4);
9972 use_random_interval = use_random(
a,
a->argc, 8 + use_random_num) ||
9973 use_random(
a,
a->argc, 10 + use_random_num);
9975 if (!strcasecmp(
a->argv[2],
"stop")) {
9977 }
else if (
a->argc < 5) {
9980 ast_cli(
a->fd,
"%s is not a valid number of packets to drop\n",
a->argv[2]);
9982 }
else if (
a->argc - use_random_num == 5) {
9984 }
else if (
a->argc - use_random_num >= 7 && !strcasecmp(
a->argv[5 + use_random_num],
"on")) {
9986 addr_s =
a->argv[6 + use_random_num];
9987 if (
a->argc - use_random_num - use_random_interval == 10 &&
9988 !strcasecmp(
a->argv[7 + use_random_num],
"every")) {
9990 interval_s =
a->argv[8 + use_random_num];
9991 unit_s =
a->argv[9 + use_random_num + use_random_interval];
9993 }
else if (
a->argc - use_random_num >= 8 && !strcasecmp(
a->argv[5 + use_random_num],
"every")) {
9995 interval_s =
a->argv[6 + use_random_num];
9996 unit_s =
a->argv[7 + use_random_num + use_random_interval];
9997 if (
a->argc == 10 + use_random_num + use_random_interval &&
9998 !strcasecmp(
a->argv[8 + use_random_num + use_random_interval],
"on")) {
10000 addr_s =
a->argv[9 + use_random_num + use_random_interval];
10006 if (
a->argc - use_random_num >= 8 && !interval_s && !addr_s) {
10011 ast_cli(
a->fd,
"%s is not a valid interval number\n", interval_s);
10015 memset(&addr, 0,
sizeof(addr));
10017 ast_cli(
a->fd,
"%s is not a valid hostname[:port]\n", addr_s);
10021 drop_packets_data.use_random_num = use_random_num;
10022 drop_packets_data.use_random_interval = use_random_interval;
10023 drop_packets_data.num_to_drop = num_to_drop;
10040 AST_CLI_DEFINE(handle_cli_rtp_drop_incoming_packets,
"Drop RTP incoming packets"),
10050#ifdef HAVE_PJPROJECT
10052 struct ast_ice_host_candidate *candidate;
10053 int acl_subscription_flag = 0;
10082#ifdef HAVE_PJPROJECT
10087 turnaddr = pj_str(
NULL);
10088 turnusername = pj_str(
NULL);
10089 turnpassword = pj_str(
NULL);
10090 host_candidate_overrides_clear();
10093#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
10125 ast_log(
LOG_WARNING,
"Disabling RTP checksums is not supported on this operating system!\n");
10131 ast_log(
LOG_WARNING,
"DTMF timeout of '%d' outside range, using default of '%d' instead\n",
10139 }
else if (!strcasecmp(s,
"seqno")) {
10147 ast_log(
LOG_WARNING,
"Value for 'probation' could not be read, using default of '%d' instead\n",
10156#ifdef HAVE_PJPROJECT
10161 stun_software_attribute =
ast_true(s);
10164 char *hostport, *host, *port;
10171 ast_debug_stun(3,
"stunaddr = '%s' does not need name resolution\n",
10183 stunaddr.sin_port = htons(port_parsed);
10186 &stunaddr_resolve_callback,
NULL);
10187 if (!stunaddr_resolver) {
10188 ast_log(
LOG_ERROR,
"Failed to setup recurring DNS resolution of stunaddr '%s'",
10196 struct sockaddr_in addr;
10201 pj_strdup2_with_null(pool, &turnaddr,
ast_inet_ntoa(addr.sin_addr));
10204 turnport = ntohs(addr.sin_port);
10208 pj_strdup2_with_null(pool, &turnusername, s);
10211 pj_strdup2_with_null(pool, &turnpassword, s);
10217 unsigned int include_local_address = 0;
10228 sep = strchr((
char *)
var->value,
',');
10233 include_local_address = strcmp(sep,
"include_local_address") == 0;
10241 if (!(candidate =
ast_calloc(1,
sizeof(*candidate)))) {
10246 candidate->include_local = include_local_address;
10262 const char* sense =
NULL;
10264 if (strncasecmp(
var->name,
"ice_", 4) == 0) {
10265 sense =
var->name + 4;
10267 }
else if (strncasecmp(
var->name,
"stun_", 5) == 0) {
10268 sense =
var->name + 5;
10274 if (strcasecmp(sense,
"blacklist") == 0) {
10278 if (strcasecmp(sense,
"acl") && strcasecmp(sense,
"permit") && strcasecmp(sense,
"deny")) {
10295#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
10297 if ((sscanf(s,
"%d", &dtls_mtu) != 1) || dtls_mtu < 256) {
10298 ast_log(
LOG_WARNING,
"Value for 'dtls_mtu' could not be read, using default of '%d' instead\n",
10329#ifdef HAVE_PJPROJECT
10330static void rtp_terminate_pjproject(
void)
10332 pj_thread_register_check();
10334 if (timer_thread) {
10335 timer_terminate = 1;
10336 pj_thread_join(timer_thread);
10337 pj_thread_destroy(timer_thread);
10357#ifdef HAVE_PJPROJECT
10363 if (pj_init() != PJ_SUCCESS) {
10367 if (pjlib_util_init() != PJ_SUCCESS) {
10368 rtp_terminate_pjproject();
10372 if (pjnath_init() != PJ_SUCCESS) {
10373 rtp_terminate_pjproject();
10379 pool = pj_pool_create(&
cachingpool.factory,
"timer", 512, 512,
NULL);
10381 if (pj_timer_heap_create(pool, 100, &timer_heap) != PJ_SUCCESS) {
10382 rtp_terminate_pjproject();
10386 if (pj_lock_create_recursive_mutex(pool,
"rtp%p", &
lock) != PJ_SUCCESS) {
10387 rtp_terminate_pjproject();
10391 pj_timer_heap_set_lock(timer_heap,
lock, PJ_TRUE);
10393 if (pj_thread_create(pool,
"timer", &timer_worker_thread,
NULL, 0, 0, &timer_thread) != PJ_SUCCESS) {
10394 rtp_terminate_pjproject();
10400#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP) && defined(HAVE_OPENSSL_BIO_METHOD)
10401 dtls_bio_methods = BIO_meth_new(BIO_TYPE_BIO,
"rtp write");
10402 if (!dtls_bio_methods) {
10403#ifdef HAVE_PJPROJECT
10404 rtp_terminate_pjproject();
10408 BIO_meth_set_write(dtls_bio_methods, dtls_bio_write);
10409 BIO_meth_set_ctrl(dtls_bio_methods, dtls_bio_ctrl);
10410 BIO_meth_set_create(dtls_bio_methods, dtls_bio_new);
10411 BIO_meth_set_destroy(dtls_bio_methods, dtls_bio_free);
10415#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP) && defined(HAVE_OPENSSL_BIO_METHOD)
10416 BIO_meth_free(dtls_bio_methods);
10418#ifdef HAVE_PJPROJECT
10419 rtp_terminate_pjproject();
10425#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP) && defined(HAVE_OPENSSL_BIO_METHOD)
10426 BIO_meth_free(dtls_bio_methods);
10428#ifdef HAVE_PJPROJECT
10430 rtp_terminate_pjproject();
10445#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP) && defined(HAVE_OPENSSL_BIO_METHOD)
10446 if (dtls_bio_methods) {
10447 BIO_meth_free(dtls_bio_methods);
10451#ifdef HAVE_PJPROJECT
10452 host_candidate_overrides_clear();
10453 pj_thread_register_check();
10454 rtp_terminate_pjproject();
10457 rtp_unload_acl(&ice_acl_lock, &ice_acl);
10458 rtp_unload_acl(&stun_acl_lock, &stun_acl);
10471#ifdef HAVE_PJPROJECT
10472 .
requires =
"res_pjproject",
Access Control of various sorts.
struct stasis_message_type * ast_named_acl_change_type(void)
a stasis_message_type for changes against a named ACL or the set of all named ACLs
int ast_ouraddrfor(const struct ast_sockaddr *them, struct ast_sockaddr *us)
Get our local IP address when contacting a remote host.
void ast_append_acl(const char *sense, const char *stuff, struct ast_acl_list **path, int *error, int *named_acl_flag)
Add a rule to an ACL struct.
int ast_find_ourip(struct ast_sockaddr *ourip, const struct ast_sockaddr *bindaddr, int family)
Find our IP address.
enum ast_acl_sense ast_apply_acl_nolog(struct ast_acl_list *acl_list, const struct ast_sockaddr *addr)
Apply a set of rules to a given IP address, don't log failure.
struct ast_acl_list * ast_free_acl_list(struct ast_acl_list *acl)
Free a list of ACLs.
void ast_cli_unregister_multiple(void)
static volatile unsigned int seq
void timersub(struct timeval *tvend, struct timeval *tvstart, struct timeval *tvdiff)
char * strsep(char **str, const char *delims)
Asterisk main include file. File version handling, generic pbx functions.
#define ast_strndup(str, len)
A wrapper for strndup()
#define ast_strdup(str)
A wrapper for strdup()
#define ast_strdupa(s)
duplicate a string in memory from the stack
void ast_free_ptr(void *ptr)
free() wrapper
#define ast_calloc(num, len)
A wrapper for calloc()
#define ast_malloc(len)
A wrapper for malloc()
#define ao2_iterator_next(iter)
#define ao2_link(container, obj)
Add an object to a container.
@ AO2_ALLOC_OPT_LOCK_NOLOCK
@ AO2_ALLOC_OPT_LOCK_MUTEX
int ao2_container_count(struct ao2_container *c)
Returns the number of elements in a container.
#define ao2_find(container, arg, flags)
struct ao2_iterator ao2_iterator_init(struct ao2_container *c, int flags) attribute_warn_unused_result
Create an iterator for a container.
#define ao2_replace(dst, src)
Replace one object reference with another cleaning up the original.
#define ao2_ref(o, delta)
Reference/unreference an object and return the old refcount.
#define ao2_alloc_options(data_size, destructor_fn, options)
void * ao2_object_get_lockaddr(void *obj)
Return the mutex lock address of an object.
#define ao2_bump(obj)
Bump refcount on an AO2 object by one, returning the object.
void ao2_iterator_destroy(struct ao2_iterator *iter)
Destroy a container iterator.
#define ao2_container_alloc_list(ao2_options, container_options, sort_fn, cmp_fn)
Allocate and initialize a list container.
#define ao2_alloc(data_size, destructor_fn)
static struct stasis_subscription * acl_change_sub
static void acl_change_stasis_cb(void *data, struct stasis_subscription *sub, struct stasis_message *message)
static char version[AST_MAX_EXTENSION]
static int answer(void *data)
General Asterisk PBX channel definitions.
Standard Command Line Interface.
#define AST_CLI_YESNO(x)
Return Yes or No depending on the argument.
#define AST_CLI_DEFINE(fn, txt,...)
int ast_cli_completion_add(char *value)
Add a result to a request for completion options.
void ast_cli(int fd, const char *fmt,...)
char * ast_cli_complete(const char *word, const char *const choices[], int pos)
#define ast_cli_register_multiple(e, len)
Register multiple commands.
static struct ao2_container * codecs
Registered codecs.
ast_media_type
Types of media.
unsigned int ast_codec_samples_count(struct ast_frame *frame)
Get the number of samples contained within a frame.
const char * ast_codec_media_type2str(enum ast_media_type type)
Conversion function to take a media type and turn it into a string.
static int reconstruct(int sign, int dqln, int y)
Conversion utility functions.
int ast_str_to_uint(const char *str, unsigned int *res)
Convert the given string to an unsigned integer.
void * ast_data_buffer_get(const struct ast_data_buffer *buffer, size_t pos)
Retrieve a data payload from the data buffer.
struct ast_data_buffer * ast_data_buffer_alloc(ast_data_buffer_free_callback free_fn, size_t size)
Allocate a data buffer.
size_t ast_data_buffer_count(const struct ast_data_buffer *buffer)
Return the number of payloads in a data buffer.
void ast_data_buffer_resize(struct ast_data_buffer *buffer, size_t size)
Resize a data buffer.
int ast_data_buffer_put(struct ast_data_buffer *buffer, size_t pos, void *payload)
Place a data payload at a position in the data buffer.
size_t ast_data_buffer_max(const struct ast_data_buffer *buffer)
Return the maximum number of payloads a data buffer can hold.
void * ast_data_buffer_remove(struct ast_data_buffer *buffer, size_t pos)
Remove a data payload from the data buffer.
void ast_data_buffer_free(struct ast_data_buffer *buffer)
Free a data buffer (and all held data payloads)
const struct ast_dns_record * ast_dns_record_get_next(const struct ast_dns_record *record)
Get the next DNS record.
int ast_dns_result_get_lowest_ttl(const struct ast_dns_result *result)
Retrieve the lowest TTL from a result.
const char * ast_dns_record_get_data(const struct ast_dns_record *record)
Retrieve the raw DNS record.
const struct ast_dns_record * ast_dns_result_get_records(const struct ast_dns_result *result)
Get the first record of a DNS Result.
struct ast_dns_result * ast_dns_query_get_result(const struct ast_dns_query *query)
Get the result information for a DNS query.
int ast_dns_record_get_rr_type(const struct ast_dns_record *record)
Get the resource record type of a DNS record.
const char * ast_dns_query_get_name(const struct ast_dns_query *query)
Get the name queried in a DNS query.
size_t ast_dns_record_get_data_size(const struct ast_dns_record *record)
Retrieve the size of the raw DNS record.
Internal DNS structure definitions.
DNS Recurring Resolution API.
int ast_dns_resolve_recurring_cancel(struct ast_dns_query_recurring *recurring)
Cancel an asynchronous recurring DNS resolution.
struct ast_dns_query_recurring * ast_dns_resolve_recurring(const char *name, int rr_type, int rr_class, ast_dns_resolve_callback callback, void *data)
Asynchronously resolve a DNS query, and continue resolving it according to the lowest TTL available.
static int replace(struct ast_channel *chan, const char *cmd, char *data, struct ast_str **buf, ssize_t len)
static int len(struct ast_channel *chan, const char *cmd, char *data, char *buf, size_t buflen)
struct stasis_message_type * ast_rtp_rtcp_sent_type(void)
Message type for an RTCP message sent from this Asterisk instance.
struct stasis_message_type * ast_rtp_rtcp_received_type(void)
Message type for an RTCP message received from some external source.
Configuration File Parser.
struct ast_config * ast_config_load2(const char *filename, const char *who_asked, struct ast_flags flags)
Load a config file.
#define CONFIG_STATUS_FILEUNCHANGED
@ CONFIG_FLAG_FILEUNCHANGED
#define CONFIG_STATUS_FILEINVALID
int ast_parse_arg(const char *arg, enum ast_parse_flags flags, void *p_result,...)
The argument parsing routine.
void ast_config_destroy(struct ast_config *cfg)
Destroys a config.
const char * ast_variable_retrieve(struct ast_config *config, const char *category, const char *variable)
struct ast_variable * ast_variable_browse(const struct ast_config *config, const char *category_name)
Asterisk internal frame definitions.
#define ast_frame_byteswap_be(fr)
#define ast_frisolate(fr)
Makes a frame independent of any static storage.
void ast_frame_free(struct ast_frame *frame, int cache)
Frees a frame or list of frames.
#define ast_frdup(fr)
Copies a frame.
@ AST_FRFLAG_HAS_SEQUENCE_NUMBER
@ AST_FRFLAG_HAS_TIMING_INFO
#define AST_FRIENDLY_OFFSET
Offset into a frame's data buffer.
ast_frame_type
Frame types.
struct ast_frame ast_null_frame
#define DEBUG_ATLEAST(level)
#define ast_debug(level,...)
Log a DEBUG message.
#define ast_verb(level,...)
struct ssl_ctx_st SSL_CTX
void ast_json_unref(struct ast_json *value)
Decrease refcount on value. If refcount reaches zero, value is freed.
struct ast_json * ast_json_pack(char const *format,...)
Helper for creating complex JSON values.
#define AST_RWLIST_REMOVE_CURRENT
#define AST_RWLIST_RDLOCK(head)
Read locks a list.
#define AST_LIST_HEAD_INIT_NOLOCK(head)
Initializes a list head structure.
#define AST_LIST_HEAD_STATIC(name, type)
Defines a structure to be used to hold a list of specified type, statically initialized.
#define AST_LIST_HEAD_NOLOCK(name, type)
Defines a structure to be used to hold a list of specified type (with no lock).
#define AST_RWLIST_TRAVERSE_SAFE_BEGIN
#define AST_RWLIST_WRLOCK(head)
Write locks a list.
#define AST_RWLIST_UNLOCK(head)
Attempts to unlock a read/write based list.
#define AST_LIST_TRAVERSE(head, var, field)
Loops over (traverses) the entries in a list.
#define AST_RWLIST_HEAD_STATIC(name, type)
Defines a structure to be used to hold a read/write list of specified type, statically initialized.
#define AST_LIST_INSERT_TAIL(head, elm, field)
Appends a list entry to the tail of a list.
#define AST_LIST_ENTRY(type)
Declare a forward link structure inside a list entry.
#define AST_RWLIST_TRAVERSE_SAFE_END
#define AST_LIST_LOCK(head)
Locks a list.
#define AST_LIST_INSERT_HEAD(head, elm, field)
Inserts a list entry at the head of a list.
#define AST_LIST_REMOVE(head, elm, field)
Removes a specific entry from a list.
#define AST_RWLIST_INSERT_TAIL
#define AST_LIST_REMOVE_HEAD(head, field)
Removes and returns the head entry from a list.
#define AST_LIST_UNLOCK(head)
Attempts to unlock a list.
#define AST_LIST_FIRST(head)
Returns the first entry contained in a list.
#define AST_LIST_NEXT(elm, field)
Returns the next entry in the list after the given entry.
Asterisk locking-related definitions:
#define ast_rwlock_wrlock(a)
#define AST_RWLOCK_INIT_VALUE
#define ast_cond_init(cond, attr)
#define ast_cond_timedwait(cond, mutex, time)
#define ast_rwlock_rdlock(a)
pthread_cond_t ast_cond_t
#define ast_rwlock_unlock(a)
#define ast_cond_signal(cond)
#define AST_LOG_CATEGORY_DISABLED
#define AST_LOG_CATEGORY_ENABLED
#define ast_debug_category(sublevel, ids,...)
Log for a debug category.
int ast_debug_category_set_sublevel(const char *name, int sublevel)
Set the debug category's sublevel.
The AMI - Asterisk Manager Interface - is a TCP protocol created to manage Asterisk with third-party ...
Asterisk module definitions.
#define AST_MODULE_INFO(keystr, flags_to_set, desc, fields...)
@ AST_MODPRI_CHANNEL_DEPEND
@ AST_MODULE_SUPPORT_CORE
#define ASTERISK_GPL_KEY
The text the key() function should return.
@ AST_MODULE_LOAD_SUCCESS
@ AST_MODULE_LOAD_DECLINE
Module has failed to load, may be in an inconsistent state.
int ast_sockaddr_ipv4_mapped(const struct ast_sockaddr *addr, struct ast_sockaddr *ast_mapped)
Convert an IPv4-mapped IPv6 address into an IPv4 address.
static char * ast_sockaddr_stringify(const struct ast_sockaddr *addr)
Wrapper around ast_sockaddr_stringify_fmt() with default format.
#define ast_sockaddr_port(addr)
Get the port number of a socket address.
static void ast_sockaddr_copy(struct ast_sockaddr *dst, const struct ast_sockaddr *src)
Copies the data from one ast_sockaddr to another.
int ast_sockaddr_is_ipv6(const struct ast_sockaddr *addr)
Determine if this is an IPv6 address.
int ast_bind(int sockfd, const struct ast_sockaddr *addr)
Wrapper around bind(2) that uses struct ast_sockaddr.
#define ast_sockaddr_from_sockaddr(addr, sa)
Converts a struct sockaddr to a struct ast_sockaddr.
int ast_sockaddr_cmp_addr(const struct ast_sockaddr *a, const struct ast_sockaddr *b)
Compares the addresses of two ast_sockaddr structures.
static char * ast_sockaddr_stringify_host(const struct ast_sockaddr *addr)
Wrapper around ast_sockaddr_stringify_fmt() to return an address only, suitable for a URL (with brack...
ssize_t ast_sendto(int sockfd, const void *buf, size_t len, int flags, const struct ast_sockaddr *dest_addr)
Wrapper around sendto(2) that uses ast_sockaddr.
int ast_sockaddr_is_any(const struct ast_sockaddr *addr)
Determine if the address type is unspecified, or "any" address.
int ast_sockaddr_split_hostport(char *str, char **host, char **port, int flags)
Splits a string into its host and port components.
int ast_set_qos(int sockfd, int tos, int cos, const char *desc)
Set type of service.
#define ast_sockaddr_to_sin(addr, sin)
Converts a struct ast_sockaddr to a struct sockaddr_in.
int ast_sockaddr_parse(struct ast_sockaddr *addr, const char *str, int flags)
Parse an IPv4 or IPv6 address string.
static int ast_sockaddr_isnull(const struct ast_sockaddr *addr)
Checks if the ast_sockaddr is null. "null" in this sense essentially means uninitialized,...
ssize_t ast_recvfrom(int sockfd, void *buf, size_t len, int flags, struct ast_sockaddr *src_addr)
Wrapper around recvfrom(2) that uses struct ast_sockaddr.
int ast_sockaddr_cmp(const struct ast_sockaddr *a, const struct ast_sockaddr *b)
Compares two ast_sockaddr structures.
#define ast_sockaddr_set_port(addr, port)
Sets the port number of a socket address.
#define ast_sockaddr_from_sin(addr, sin)
Converts a struct sockaddr_in to a struct ast_sockaddr.
static void ast_sockaddr_setnull(struct ast_sockaddr *addr)
Sets address addr to null.
int ast_sockaddr_is_ipv4(const struct ast_sockaddr *addr)
Determine if the address is an IPv4 address.
const char * ast_inet_ntoa(struct in_addr ia)
thread-safe replacement for inet_ntoa().
Options provided by main asterisk program.
#define AST_PJPROJECT_INIT_LOG_LEVEL()
Get maximum log level pjproject was compiled with.
Core PBX routines and definitions.
static char * generate_random_string(char *buf, size_t size)
Generate 32 byte random string (stolen from chan_sip.c)
static struct stasis_subscription * sub
Statsd channel stats. Exmaple of how to subscribe to Stasis events.
int ast_sockaddr_to_pj_sockaddr(const struct ast_sockaddr *addr, pj_sockaddr *pjaddr)
Fill a pj_sockaddr from an ast_sockaddr.
void ast_pjproject_caching_pool_destroy(pj_caching_pool *cp)
Destroy caching pool factory and all cached pools.
int ast_sockaddr_pj_sockaddr_cmp(const struct ast_sockaddr *addr, const pj_sockaddr *pjaddr)
Compare an ast_sockaddr to a pj_sockaddr.
void ast_pjproject_caching_pool_init(pj_caching_pool *cp, const pj_pool_factory_policy *policy, pj_size_t max_capacity)
Initialize the caching pool factory.
static pj_caching_pool cachingpool
Pool factory used by pjlib to allocate memory.
#define TURN_STATE_WAIT_TIME
static int ast_rtp_dtmf_compatible(struct ast_channel *chan0, struct ast_rtp_instance *instance0, struct ast_channel *chan1, struct ast_rtp_instance *instance1)
static void ast_rtp_update_source(struct ast_rtp_instance *instance)
#define TRANSPORT_TURN_RTCP
static int ast_rtp_destroy(struct ast_rtp_instance *instance)
#define RTCP_LENGTH_SHIFT
struct ast_srtp_res * res_srtp
static int ast_rtp_rtcp_handle_nack(struct ast_rtp_instance *instance, unsigned int *nackdata, unsigned int position, unsigned int length)
static int rtp_reload(int reload, int by_external_config)
#define RTCP_PAYLOAD_TYPE_SHIFT
#define DEFAULT_RTP_RECV_BUFFER_SIZE
#define MAX_TIMESTAMP_SKEW
#define DEFAULT_ICESUPPORT
static void ntp2timeval(unsigned int msw, unsigned int lsw, struct timeval *tv)
#define RTCP_FB_NACK_BLOCK_WORD_LENGTH
static struct ast_sockaddr rtpdebugaddr
#define DEFAULT_LEARNING_MIN_SEQUENTIAL
#define FLAG_3389_WARNING
static int rtp_learning_rtp_seq_update(struct rtp_learning_info *info, uint16_t seq)
static int create_new_socket(const char *type, struct ast_sockaddr *bind_addr)
static int rtp_transport_wide_cc_feedback_produce(const void *data)
#define RTCP_RR_BLOCK_WORD_LENGTH
static struct ast_frame * ast_rtcp_interpret(struct ast_rtp_instance *instance, struct ast_srtp *srtp, const unsigned char *rtcpdata, size_t size, struct ast_sockaddr *addr)
static const char * rtcp_payload_subtype2str(unsigned int pt, unsigned int subtype)
static int ast_rtp_new(struct ast_rtp_instance *instance, struct ast_sched_context *sched, struct ast_sockaddr *addr, void *data)
static char * handle_cli_rtp_settings(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
static struct ast_frame * ast_rtcp_read(struct ast_rtp_instance *instance)
#define RTP_IGNORE_FIRST_PACKETS_COUNT
static int rtp_raw_write(struct ast_rtp_instance *instance, struct ast_frame *frame, int codec)
#define RTCP_SR_BLOCK_WORD_LENGTH
static int ast_rtp_dtmf_end_with_duration(struct ast_rtp_instance *instance, char digit, unsigned int duration)
static int rtcp_recvfrom(struct ast_rtp_instance *instance, void *buf, size_t size, int flags, struct ast_sockaddr *sa)
static struct ast_rtp_instance * rtp_find_instance_by_packet_source_ssrc(struct ast_rtp_instance *instance, struct ast_rtp *rtp, unsigned int ssrc)
#define RTCP_REPORT_COUNT_SHIFT
#define RTCP_DEFAULT_INTERVALMS
static void rtp_deallocate_transport(struct ast_rtp_instance *instance, struct ast_rtp *rtp)
#define RTP_DTLS_ESTABLISHED
static int bridge_p2p_rtp_write(struct ast_rtp_instance *instance, struct ast_rtp_instance *instance1, unsigned int *rtpheader, int len, int hdrlen)
#define DEFAULT_DTMF_TIMEOUT
static void put_unaligned_time24(void *p, uint32_t time_msw, uint32_t time_lsw)
#define RTCP_MAX_INTERVALMS
static int ast_rtcp_generate_nack(struct ast_rtp_instance *instance, unsigned char *rtcpheader)
static char * handle_cli_rtp_set_debug(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
static void rtp_transport_wide_cc_feedback_status_append(unsigned char *rtcpheader, int *packet_len, int *status_vector_chunk_bits, uint16_t *status_vector_chunk, int *run_length_chunk_count, int *run_length_chunk_status, int status)
static int ast_rtp_bundle(struct ast_rtp_instance *child, struct ast_rtp_instance *parent)
static struct ast_rtp_engine asterisk_rtp_engine
static const char * rtcp_payload_type2str(unsigned int pt)
#define TRANSPORT_SOCKET_RTP
static void rtp_instance_parse_transport_wide_cc(struct ast_rtp_instance *instance, struct ast_rtp *rtp, unsigned char *data, int len)
static void calc_rxstamp_and_jitter(struct timeval *tv, struct ast_rtp *rtp, unsigned int rx_rtp_ts, int mark)
static unsigned int calc_txstamp(struct ast_rtp *rtp, struct timeval *delivery)
static int ast_rtp_dtmf_continuation(struct ast_rtp_instance *instance)
#define SRTP_MASTER_KEY_LEN
static int learning_min_sequential
static int rtp_allocate_transport(struct ast_rtp_instance *instance, struct ast_rtp *rtp)
static char * rtcp_do_debug_ip(struct ast_cli_args *a)
static int ast_rtcp_generate_report(struct ast_rtp_instance *instance, unsigned char *rtcpheader, struct ast_rtp_rtcp_report *rtcp_report, int *sr)
static struct ast_frame * ast_rtp_read(struct ast_rtp_instance *instance, int rtcp)
static char * handle_cli_rtcp_set_debug(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
struct ast_srtp_policy_res * res_srtp_policy
static struct ast_rtp_instance * __rtp_find_instance_by_ssrc(struct ast_rtp_instance *instance, struct ast_rtp *rtp, unsigned int ssrc, int source)
static void calculate_lost_packet_statistics(struct ast_rtp *rtp, unsigned int *lost_packets, int *fraction_lost)
#define RTCP_HEADER_SSRC_LENGTH
static void process_dtmf_rfc2833(struct ast_rtp_instance *instance, unsigned char *data, int len, unsigned int seqno, unsigned int timestamp, int payloadtype, int mark, struct frame_list *frames)
static int srtp_replay_protection
static void ast_rtp_set_stream_num(struct ast_rtp_instance *instance, int stream_num)
static int learning_min_duration
static int ast_rtp_fd(struct ast_rtp_instance *instance, int rtcp)
static int ast_rtcp_generate_compound_prefix(struct ast_rtp_instance *instance, unsigned char *rtcpheader, struct ast_rtp_rtcp_report *report, int *sr)
static void update_jitter_stats(struct ast_rtp *rtp, unsigned int ia_jitter)
#define RTCP_FB_REMB_BLOCK_WORD_LENGTH
static struct ast_frame * process_cn_rfc3389(struct ast_rtp_instance *instance, unsigned char *data, int len, unsigned int seqno, unsigned int timestamp, int payloadtype, int mark)
#define DEFAULT_SRTP_REPLAY_PROTECTION
static int reload_module(void)
#define FLAG_NAT_INACTIVE
static int rtcp_debug_test_addr(struct ast_sockaddr *addr)
static int ast_rtp_qos_set(struct ast_rtp_instance *instance, int tos, int cos, const char *desc)
static void ast_rtp_change_source(struct ast_rtp_instance *instance)
static int ast_rtp_dtmf_end(struct ast_rtp_instance *instance, char digit)
static void calc_mean_and_standard_deviation(double new_sample, double *mean, double *std_dev, unsigned int *count)
static int compare_by_value(int elem, int value)
Helper function to compare an elem in a vector by value.
static int update_rtt_stats(struct ast_rtp *rtp, unsigned int lsr, unsigned int dlsr)
static int rtcp_sendto(struct ast_rtp_instance *instance, void *buf, size_t size, int flags, struct ast_sockaddr *sa, int *ice)
static struct ast_sockaddr rtcpdebugaddr
static struct ast_rtp_instance * rtp_find_instance_by_media_source_ssrc(struct ast_rtp_instance *instance, struct ast_rtp *rtp, unsigned int ssrc)
#define MAXIMUM_RTP_RECV_BUFFER_SIZE
static int rtp_red_buffer(struct ast_rtp_instance *instance, struct ast_frame *frame)
#define STRICT_RTP_LEARN_TIMEOUT
Strict RTP learning timeout time in milliseconds.
#define RTCP_VERSION_SHIFTED
static int ast_rtp_dtmf_begin(struct ast_rtp_instance *instance, char digit)
static void rtp_instance_parse_extmap_extensions(struct ast_rtp_instance *instance, struct ast_rtp *rtp, unsigned char *extension, int len)
static int find_by_value(int elem, int value)
Helper function to find an elem in a vector by value.
#define RTCP_REPORT_COUNT_MASK
static void rtp_instance_unlock(struct ast_rtp_instance *instance)
#define DEFAULT_RTP_START
#define TRANSPORT_TURN_RTP
static int rtp_recvfrom(struct ast_rtp_instance *instance, void *buf, size_t size, int flags, struct ast_sockaddr *sa)
static struct ast_cli_entry cli_rtp[]
static int ast_rtp_get_stat(struct ast_rtp_instance *instance, struct ast_rtp_instance_stats *stats, enum ast_rtp_instance_stat stat)
#define RESCALE(in, inmin, inmax, outmin, outmax)
#define MISSING_SEQNOS_ADDED_TRIGGER
#define SRTP_MASTER_SALT_LEN
static int ast_rtp_write(struct ast_rtp_instance *instance, struct ast_frame *frame)
#define RTCP_PAYLOAD_TYPE_MASK
#define DEFAULT_RTP_SEND_BUFFER_SIZE
#define FLAG_NEED_MARKER_BIT
static int __rtp_recvfrom(struct ast_rtp_instance *instance, void *buf, size_t size, int flags, struct ast_sockaddr *sa, int rtcp)
#define RTCP_MIN_INTERVALMS
static void ast_rtp_stop(struct ast_rtp_instance *instance)
#define FLAG_REQ_LOCAL_BRIDGE_BIT
static int __rtp_sendto(struct ast_rtp_instance *instance, void *buf, size_t size, int flags, struct ast_sockaddr *sa, int rtcp, int *via_ice, int use_srtp)
static int load_module(void)
static int ast_rtcp_calculate_sr_rr_statistics(struct ast_rtp_instance *instance, struct ast_rtp_rtcp_report *rtcp_report, struct ast_sockaddr remote_address, int ice, int sr)
#define RTCP_VERSION_MASK_SHIFTED
#define CALC_LEARNING_MIN_DURATION(count)
Calculate the min learning duration in ms.
static int rtp_transport_wide_cc_packet_statistics_cmp(struct rtp_transport_wide_cc_packet_statistics a, struct rtp_transport_wide_cc_packet_statistics b)
#define SSRC_MAPPING_ELEM_CMP(elem, value)
SSRC mapping comparator for AST_VECTOR_REMOVE_CMP_UNORDERED()
static int rtp_debug_test_addr(struct ast_sockaddr *addr)
static int rtp_red_init(struct ast_rtp_instance *instance, int buffer_time, int *payloads, int generations)
static int unload_module(void)
static void ast_rtp_set_remote_ssrc(struct ast_rtp_instance *instance, unsigned int ssrc)
static void ast_rtp_prop_set(struct ast_rtp_instance *instance, enum ast_rtp_property property, int value)
#define FLAG_NAT_INACTIVE_NOWARN
static int rtcp_mux(struct ast_rtp *rtp, const unsigned char *packet)
static void rtp_learning_seq_init(struct rtp_learning_info *info, uint16_t seq)
#define TRANSPORT_SOCKET_RTCP
static void rtp_learning_start(struct ast_rtp *rtp)
Start the strictrtp learning mode.
static int ast_rtp_dtmf_mode_set(struct ast_rtp_instance *instance, enum ast_rtp_dtmf_mode dtmf_mode)
static unsigned int ast_rtcp_calc_interval(struct ast_rtp *rtp)
static char * rtp_do_debug_ip(struct ast_cli_args *a)
static enum ast_rtp_dtmf_mode ast_rtp_dtmf_mode_get(struct ast_rtp_instance *instance)
static int rtp_sendto(struct ast_rtp_instance *instance, void *buf, size_t size, int flags, struct ast_sockaddr *sa, int *ice)
static unsigned int ast_rtp_get_ssrc(struct ast_rtp_instance *instance)
static void timeval2ntp(struct timeval tv, unsigned int *msw, unsigned int *lsw)
static void ast_rtp_remote_address_set(struct ast_rtp_instance *instance, struct ast_sockaddr *addr)
static struct ast_frame * ast_rtp_interpret(struct ast_rtp_instance *instance, struct ast_srtp *srtp, const struct ast_sockaddr *remote_address, unsigned char *read_area, int length, int prev_seqno, unsigned int bundled)
static int ast_rtp_local_bridge(struct ast_rtp_instance *instance0, struct ast_rtp_instance *instance1)
static struct ast_frame * red_t140_to_red(struct rtp_red *red)
static int ast_rtcp_generate_sdes(struct ast_rtp_instance *instance, unsigned char *rtcpheader, struct ast_rtp_rtcp_report *rtcp_report)
static double calc_media_experience_score(struct ast_rtp_instance *instance, double normdevrtt, double normdev_rxjitter, double stdev_rxjitter, double normdev_rxlost)
Calculate a "media experience score" based on given data.
static void update_reported_mes_stats(struct ast_rtp *rtp)
#define DEFAULT_STRICT_RTP
static int ast_rtp_sendcng(struct ast_rtp_instance *instance, int level)
generate comfort noice (CNG)
static char * handle_cli_rtcp_set_stats(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
static void update_lost_stats(struct ast_rtp *rtp, unsigned int lost_packets)
static void ast_rtp_stun_request(struct ast_rtp_instance *instance, struct ast_sockaddr *suggestion, const char *username)
static const char * ast_rtp_get_cname(struct ast_rtp_instance *instance)
static void rtp_write_rtcp_psfb(struct ast_rtp_instance *instance, struct ast_rtp *rtp, struct ast_frame *frame, struct ast_sockaddr *remote_address)
static struct ast_frame * process_dtmf_cisco(struct ast_rtp_instance *instance, unsigned char *data, int len, unsigned int seqno, unsigned int timestamp, int payloadtype, int mark)
static struct ast_frame * create_dtmf_frame(struct ast_rtp_instance *instance, enum ast_frame_type type, int compensate)
static void rtp_write_rtcp_fir(struct ast_rtp_instance *instance, struct ast_rtp *rtp, struct ast_sockaddr *remote_address)
#define DEFAULT_TURN_PORT
#define MAXIMUM_RTP_SEND_BUFFER_SIZE
static int red_write(const void *data)
Write t140 redundancy frame.
#define DEFAULT_STUN_SOFTWARE_ATTRIBUTE
#define DEFAULT_LEARNING_MIN_DURATION
static void update_local_mes_stats(struct ast_rtp *rtp)
static void rtp_transport_wide_cc_feedback_status_vector_append(unsigned char *rtcpheader, int *packet_len, int *status_vector_chunk_bits, uint16_t *status_vector_chunk, int status)
static int ast_rtp_extension_enable(struct ast_rtp_instance *instance, enum ast_rtp_extension extension)
static int ast_rtcp_write(const void *data)
Write a RTCP packet to the far end.
@ AST_AES_CM_128_HMAC_SHA1_80
@ AST_AES_CM_128_HMAC_SHA1_32
static void cleanup(void)
Clean up any old apps that we don't need any more.
Pluggable RTP Architecture.
ast_rtp_dtls_setup
DTLS setup types.
@ AST_RTP_DTLS_SETUP_PASSIVE
@ AST_RTP_DTLS_SETUP_HOLDCONN
@ AST_RTP_DTLS_SETUP_ACTPASS
@ AST_RTP_DTLS_SETUP_ACTIVE
#define AST_RTP_RTCP_PSFB
#define AST_DEBUG_CATEGORY_DTLS
#define ast_debug_rtcp_packet_is_allowed
ast_rtp_ice_role
ICE role during negotiation.
@ AST_RTP_ICE_ROLE_CONTROLLING
@ AST_RTP_ICE_ROLE_CONTROLLED
#define AST_RTP_RTCP_FMT_FIR
#define ast_debug_rtcp(sublevel,...)
Log debug level RTCP information.
struct ast_format * ast_rtp_codecs_get_preferred_format(struct ast_rtp_codecs *codecs)
Retrieve rx preferred format.
ast_rtp_ice_component_type
ICE component types.
@ AST_RTP_ICE_COMPONENT_RTCP
@ AST_RTP_ICE_COMPONENT_RTP
struct ast_rtp_rtcp_report * ast_rtp_rtcp_report_alloc(unsigned int report_blocks)
Allocate an ao2 ref counted instance of ast_rtp_rtcp_report.
struct ast_rtp_payload_type * ast_rtp_codecs_get_payload(struct ast_rtp_codecs *codecs, int payload)
Retrieve rx payload mapped information by payload type.
int ast_rtp_instance_get_prop(struct ast_rtp_instance *instance, enum ast_rtp_property property)
Get the value of an RTP instance property.
ast_rtp_dtls_hash
DTLS fingerprint hashes.
@ AST_RTP_DTLS_HASH_SHA256
int ast_rtp_engine_srtp_is_registered(void)
#define AST_RED_MAX_GENERATION
@ AST_RTP_INSTANCE_RTCP_MUX
@ AST_RTP_INSTANCE_RTCP_STANDARD
void ast_rtp_publish_rtcp_message(struct ast_rtp_instance *rtp, struct stasis_message_type *message_type, struct ast_rtp_rtcp_report *report, struct ast_json *blob)
Publish an RTCP message to Stasis Message Bus API.
struct ast_srtp * ast_rtp_instance_get_srtp(struct ast_rtp_instance *instance, int rtcp)
Obtain the SRTP instance associated with an RTP instance.
#define AST_RTP_STAT_TERMINATOR(combined)
#define AST_RTP_RTCP_RTPFB
struct ast_rtp_instance * ast_rtp_instance_get_bridged(struct ast_rtp_instance *instance)
Get the other RTP instance that an instance is bridged to.
ast_rtp_dtls_verify
DTLS verification settings.
@ AST_RTP_DTLS_VERIFY_FINGERPRINT
@ AST_RTP_DTLS_VERIFY_CERTIFICATE
#define ast_debug_rtp_packet_is_allowed
#define AST_LOG_CATEGORY_RTCP_PACKET
@ AST_RTP_INSTANCE_STAT_LOCAL_MAXRXPLOSS
@ AST_RTP_INSTANCE_STAT_REMOTE_NORMDEVRXPLOSS
@ AST_RTP_INSTANCE_STAT_REMOTE_MAXRXPLOSS
@ AST_RTP_INSTANCE_STAT_REMOTE_NORMDEVMES
@ AST_RTP_INSTANCE_STAT_REMOTE_MINJITTER
@ AST_RTP_INSTANCE_STAT_LOCAL_NORMDEVMES
@ AST_RTP_INSTANCE_STAT_MIN_RTT
@ AST_RTP_INSTANCE_STAT_TXMES
@ AST_RTP_INSTANCE_STAT_CHANNEL_UNIQUEID
@ AST_RTP_INSTANCE_STAT_TXPLOSS
@ AST_RTP_INSTANCE_STAT_MAX_RTT
@ AST_RTP_INSTANCE_STAT_RXPLOSS
@ AST_RTP_INSTANCE_STAT_REMOTE_MAXJITTER
@ AST_RTP_INSTANCE_STAT_LOCAL_MAXJITTER
@ AST_RTP_INSTANCE_STAT_REMOTE_MINMES
@ AST_RTP_INSTANCE_STAT_REMOTE_STDEVJITTER
@ AST_RTP_INSTANCE_STAT_REMOTE_MINRXPLOSS
@ AST_RTP_INSTANCE_STAT_LOCAL_MINMES
@ AST_RTP_INSTANCE_STAT_TXOCTETCOUNT
@ AST_RTP_INSTANCE_STAT_RXMES
@ AST_RTP_INSTANCE_STAT_REMOTE_STDEVMES
@ AST_RTP_INSTANCE_STAT_LOCAL_NORMDEVRXPLOSS
@ AST_RTP_INSTANCE_STAT_REMOTE_STDEVRXPLOSS
@ AST_RTP_INSTANCE_STAT_LOCAL_STDEVRXPLOSS
@ AST_RTP_INSTANCE_STAT_REMOTE_MAXMES
@ AST_RTP_INSTANCE_STAT_TXCOUNT
@ AST_RTP_INSTANCE_STAT_STDEVRTT
@ AST_RTP_INSTANCE_STAT_COMBINED_MES
@ AST_RTP_INSTANCE_STAT_LOCAL_MAXMES
@ AST_RTP_INSTANCE_STAT_RXJITTER
@ AST_RTP_INSTANCE_STAT_LOCAL_MINRXPLOSS
@ AST_RTP_INSTANCE_STAT_LOCAL_SSRC
@ AST_RTP_INSTANCE_STAT_REMOTE_NORMDEVJITTER
@ AST_RTP_INSTANCE_STAT_COMBINED_JITTER
@ AST_RTP_INSTANCE_STAT_TXJITTER
@ AST_RTP_INSTANCE_STAT_LOCAL_MINJITTER
@ AST_RTP_INSTANCE_STAT_COMBINED_LOSS
@ AST_RTP_INSTANCE_STAT_LOCAL_STDEVJITTER
@ AST_RTP_INSTANCE_STAT_COMBINED_RTT
@ AST_RTP_INSTANCE_STAT_NORMDEVRTT
@ AST_RTP_INSTANCE_STAT_RTT
@ AST_RTP_INSTANCE_STAT_RXOCTETCOUNT
@ AST_RTP_INSTANCE_STAT_LOCAL_STDEVMES
@ AST_RTP_INSTANCE_STAT_LOCAL_NORMDEVJITTER
@ AST_RTP_INSTANCE_STAT_RXCOUNT
@ AST_RTP_INSTANCE_STAT_REMOTE_SSRC
void * ast_rtp_instance_get_data(struct ast_rtp_instance *instance)
Get the data portion of an RTP instance.
#define ast_rtp_instance_get_remote_address(instance, address)
Get the address of the remote endpoint that we are sending RTP to.
enum ast_media_type ast_rtp_codecs_get_stream_type(struct ast_rtp_codecs *codecs)
Determine the type of RTP stream media from the codecs mapped.
#define AST_RTP_RTCP_FMT_NACK
#define ast_debug_rtp(sublevel,...)
Log debug level RTP information.
void ast_rtp_instance_set_last_tx(struct ast_rtp_instance *rtp, time_t time)
Set the last RTP transmission time.
void ast_rtp_instance_set_data(struct ast_rtp_instance *instance, void *data)
Set the data portion of an RTP instance.
int ast_rtp_codecs_payload_code_tx_sample_rate(struct ast_rtp_codecs *codecs, int asterisk_format, const struct ast_format *format, int code, unsigned int sample_rate)
Retrieve a tx mapped payload type based on whether it is an Asterisk format and the code.
void ast_rtp_instance_set_prop(struct ast_rtp_instance *instance, enum ast_rtp_property property, int value)
Set the value of an RTP instance property.
int ast_rtp_codecs_find_payload_code(struct ast_rtp_codecs *codecs, int payload)
Search for the tx payload type in the ast_rtp_codecs structure.
int ast_rtp_codecs_get_preferred_dtmf_format_rate(struct ast_rtp_codecs *codecs)
Retrieve rx preferred dtmf format sample rate.
void ast_rtp_instance_get_local_address(struct ast_rtp_instance *instance, struct ast_sockaddr *address)
Get the local address that we are expecting RTP on.
@ AST_RTP_ICE_CANDIDATE_TYPE_RELAYED
@ AST_RTP_ICE_CANDIDATE_TYPE_SRFLX
@ AST_RTP_ICE_CANDIDATE_TYPE_HOST
#define AST_DEBUG_CATEGORY_ICE
int ast_rtp_instance_set_local_address(struct ast_rtp_instance *instance, const struct ast_sockaddr *address)
Set the address that we are expecting to receive RTP on.
int ast_rtp_get_rate(const struct ast_format *format)
Retrieve the sample rate of a format according to RTP specifications.
int ast_rtp_codecs_payload_code_tx(struct ast_rtp_codecs *codecs, int asterisk_format, const struct ast_format *format, int code)
Retrieve a tx mapped payload type based on whether it is an Asterisk format and the code.
ast_rtp_extension
Known RTP extensions.
@ AST_RTP_EXTENSION_TRANSPORT_WIDE_CC
@ AST_RTP_EXTENSION_ABS_SEND_TIME
int ast_rtp_payload_mapping_tx_is_present(struct ast_rtp_codecs *codecs, const struct ast_rtp_payload_type *to_match)
Determine if a type of payload is already present in mappings.
#define ast_rtp_instance_set_remote_address(instance, address)
Set the address of the remote endpoint that we are sending RTP to.
#define AST_RTP_RTCP_FMT_REMB
ast_rtp_dtls_connection
DTLS connection states.
@ AST_RTP_DTLS_CONNECTION_NEW
@ AST_RTP_DTLS_CONNECTION_EXISTING
#define ast_debug_dtls(sublevel,...)
Log debug level DTLS information.
@ AST_RTP_PROPERTY_RETRANS_RECV
@ AST_RTP_PROPERTY_RETRANS_SEND
@ AST_RTP_PROPERTY_ASYMMETRIC_CODEC
@ AST_RTP_PROPERTY_DTMF_COMPENSATE
#define ast_debug_dtls_packet_is_allowed
#define AST_LOG_CATEGORY_RTP_PACKET
#define AST_RTP_STAT_STRCPY(current_stat, combined, placement, value)
#define ast_debug_ice(sublevel,...)
Log debug level ICE information.
void ast_rtp_instance_get_requested_target_address(struct ast_rtp_instance *instance, struct ast_sockaddr *address)
Get the requested target address of the remote endpoint.
int ast_rtp_instance_set_incoming_source_address(struct ast_rtp_instance *instance, const struct ast_sockaddr *address)
Set the incoming source address of the remote endpoint that we are sending RTP to.
int ast_rtp_instance_extmap_get_id(struct ast_rtp_instance *instance, enum ast_rtp_extension extension)
Retrieve the id for an RTP extension.
int ast_rtp_codecs_get_preferred_dtmf_format_pt(struct ast_rtp_codecs *codecs)
Retrieve rx preferred dtmf format payload type.
int ast_rtp_engine_unregister(struct ast_rtp_engine *engine)
Unregister an RTP engine.
#define AST_RTP_RTCP_FMT_TRANSPORT_WIDE_CC
struct ast_rtp_codecs * ast_rtp_instance_get_codecs(struct ast_rtp_instance *instance)
Get the codecs structure of an RTP instance.
const char * ast_rtp_instance_get_channel_id(struct ast_rtp_instance *instance)
Get the unique ID of the channel that owns this RTP instance.
unsigned int ast_rtp_codecs_get_framing(struct ast_rtp_codecs *codecs)
Get the framing used for a set of codecs.
unsigned int ast_rtp_instance_get_ssrc(struct ast_rtp_instance *rtp)
Retrieve the local SSRC value that we will be using.
#define AST_RTP_STAT_SET(current_stat, combined, placement, value)
#define DEFAULT_DTMF_SAMPLE_RATE_MS
int ast_rtp_instance_add_srtp_policy(struct ast_rtp_instance *instance, struct ast_srtp_policy *remote_policy, struct ast_srtp_policy *local_policy, int rtcp)
Add or replace the SRTP policies for the given RTP instance.
#define AST_RTP_RTCP_FMT_PLI
#define ast_rtp_engine_register(engine)
#define AST_RTP_CISCO_DTMF
#define AST_SCHED_DEL_UNREF(sched, id, refcall)
schedule task to get deleted and call unref function
#define AST_SCHED_DEL(sched, id)
Remove a scheduler entry.
int ast_sched_del(struct ast_sched_context *con, int id) attribute_warn_unused_result
Deletes a scheduled event.
int ast_sched_add(struct ast_sched_context *con, int when, ast_sched_cb callback, const void *data) attribute_warn_unused_result
Adds a scheduled event.
int ast_sched_add_variable(struct ast_sched_context *con, int when, ast_sched_cb callback, const void *data, int variable) attribute_warn_unused_result
Adds a scheduled event with rescheduling support.
int(* ast_sched_cb)(const void *data)
scheduler callback
Security Event Reporting API.
struct stasis_topic * ast_security_topic(void)
A stasis_topic which publishes messages for security related issues.
Asterisk internal frame definitions.
void ast_smoother_set_flags(struct ast_smoother *smoother, int flags)
#define ast_smoother_feed_be(s, f)
int ast_smoother_test_flag(struct ast_smoother *s, int flag)
void ast_smoother_free(struct ast_smoother *s)
#define AST_SMOOTHER_FLAG_FORCED
struct ast_frame * ast_smoother_read(struct ast_smoother *s)
#define ast_smoother_feed(s, f)
struct ast_smoother * ast_smoother_new(int bytes)
#define AST_SMOOTHER_FLAG_BE
@ STASIS_SUBSCRIPTION_FILTER_SELECTIVE
int stasis_subscription_accept_message_type(struct stasis_subscription *subscription, const struct stasis_message_type *type)
Indicate to a subscription that we are interested in a message type.
int stasis_subscription_set_filter(struct stasis_subscription *subscription, enum stasis_subscription_message_filter filter)
Set the message type filtering level on a subscription.
struct stasis_subscription * stasis_unsubscribe_and_join(struct stasis_subscription *subscription)
Cancel a subscription, blocking until the last message is processed.
#define stasis_subscribe(topic, callback, data)
#define S_OR(a, b)
returns the equivalent of logic or for strings: first one if not empty, otherwise second one.
int attribute_pure ast_true(const char *val)
Make sure something is true. Determine if a string containing a boolean value is "true"....
static force_inline int attribute_pure ast_strlen_zero(const char *s)
int attribute_pure ast_false(const char *val)
Make sure something is false. Determine if a string containing a boolean value is "false"....
void ast_copy_string(char *dst, const char *src, size_t size)
Size-limited null-terminating string copy.
char *attribute_pure ast_skip_blanks(const char *str)
Gets a pointer to the first non-whitespace character in a string.
When we need to walk through a container, we use an ao2_iterator to keep track of the current positio...
Wrapper for an ast_acl linked list.
Structure to describe a channel "technology", ie a channel driver See for examples:
Main Channel structure associated with a channel.
descriptor for a cli entry.
int args
This gets set in ast_cli_register()
Data buffer containing fixed number of data payloads.
char data[0]
The raw DNS record.
int rr_type
Resource record type.
The result of a DNS query.
Structure used to handle boolean flags.
unsigned int frame_ending
struct ast_format * format
Data structure associated with a single frame of data.
struct ast_frame_subclass subclass
enum ast_frame_type frametype
union ast_frame::@235 data
Abstract JSON element (object, array, string, int, ...).
Structure defining an RTCP session.
unsigned int received_prior
unsigned char frame_buf[512+AST_FRIENDLY_OFFSET]
double reported_maxjitter
unsigned int reported_mes_count
double reported_normdev_lost
double reported_normdev_mes
unsigned int lastsrtxcount
unsigned int reported_lost
double reported_stdev_jitter
unsigned int reported_jitter_count
double accumulated_transit
double reported_stdev_lost
enum ast_rtp_instance_rtcp type
unsigned int rxjitter_count
unsigned int reported_lost_count
double reported_stdev_mes
double reported_normdev_jitter
unsigned int rxlost_count
double reported_minjitter
unsigned int expected_prior
DTLS configuration structure.
enum ast_rtp_dtls_setup default_setup
enum ast_rtp_dtls_verify verify
enum ast_rtp_dtls_hash hash
unsigned int ephemeral_cert
enum ast_srtp_suite suite
Structure that represents the optional DTLS SRTP support within an RTP engine.
int(* set_configuration)(struct ast_rtp_instance *instance, const struct ast_rtp_dtls_cfg *dtls_cfg)
Structure for an ICE candidate.
struct ast_sockaddr address
enum ast_rtp_ice_component_type id
struct ast_sockaddr relay_address
enum ast_rtp_ice_candidate_type type
Structure that represents the optional ICE support within an RTP engine.
void(* set_authentication)(struct ast_rtp_instance *instance, const char *ufrag, const char *password)
void(* start)(struct ast_rtp_instance *instance)
struct ast_rtp_engine_dtls * dtls
double remote_stdevrxploss
double local_normdevjitter
double local_normdevrxploss
unsigned int rxoctetcount
double remote_normdevrxploss
double local_stdevrxploss
double remote_normdevjitter
unsigned int txoctetcount
char channel_uniqueid[MAX_CHANNEL_ID]
double remote_stdevjitter
An object that represents data received in a feedback report.
struct ast_rtp_rtcp_feedback_remb remb
Structure for storing RTP packets for retransmission.
A report block within a SR/RR report.
unsigned int highest_seq_no
struct ast_rtp_rtcp_report_block::@287 lost_count
An object that represents data sent during a SR/RR RTCP report.
struct ast_rtp_rtcp_report::@288 sender_information
unsigned short reception_report_count
unsigned int rtp_timestamp
struct ast_rtp_rtcp_report_block * report_block[0]
struct timeval ntp_timestamp
unsigned int packet_count
unsigned int lastividtimestamp
unsigned int dtmf_duration
struct ast_format * lasttxformat
struct rtp_transport_wide_cc_statistics transport_wide_cc
struct ast_smoother * smoother
struct ast_sched_context * sched
unsigned short seedrxseqno
unsigned int remote_seed_rx_rtp_ts_stable
enum ast_rtp_dtmf_mode dtmfmode
struct ast_sockaddr strict_rtp_address
enum strict_rtp_state strict_rtp_state
unsigned int rxoctetcount
unsigned int themssrc_valid
struct ast_rtp::@513 ssrc_mapping
unsigned int dtmf_timeout
char cname[AST_UUID_STR_LEN]
unsigned char rawdata[8192+AST_FRIENDLY_OFFSET]
unsigned int last_transit_time_samples
unsigned int lastovidtimestamp
unsigned int asymmetric_codec
struct ast_rtp::@512 missing_seqno
struct ast_data_buffer * recv_buffer
optional_ts last_end_timestamp
unsigned int lastotexttimestamp
struct ast_sockaddr bind_address
struct ast_data_buffer * send_buffer
struct rtp_learning_info rtp_source_learn
struct ast_rtp_instance * owner
The RTP instance owning us (used for debugging purposes) We don't hold a reference to the instance be...
unsigned int remote_seed_rx_rtp_ts
unsigned int lastitexttimestamp
unsigned int dtmf_samplerate_ms
unsigned int txoctetcount
struct ast_rtp_instance * bundled
struct ast_format * lastrxformat
Structure for rwlock and tracking information.
Socket address structure.
void(* destroy)(struct ast_srtp_policy *policy)
int(* set_master_key)(struct ast_srtp_policy *policy, const unsigned char *key, size_t key_len, const unsigned char *salt, size_t salt_len)
void(* set_ssrc)(struct ast_srtp_policy *policy, unsigned long ssrc, int inbound)
int(* set_suite)(struct ast_srtp_policy *policy, enum ast_srtp_suite suite)
struct ast_srtp_policy *(* alloc)(void)
int(* unprotect)(struct ast_srtp *srtp, void *buf, int *size, int rtcp)
int(* change_source)(struct ast_srtp *srtp, unsigned int from_ssrc, unsigned int to_ssrc)
int(* protect)(struct ast_srtp *srtp, void **buf, int *size, int rtcp)
struct ast_rtp_instance * rtp
Structure for variables, used for configurations and for channel variables.
struct ast_variable * next
structure to hold extensions
RTP learning mode tracking information.
enum ast_media_type stream_type
struct ast_sockaddr proposed_address
unsigned char t140red_data[64000]
unsigned char ts[AST_RED_MAX_GENERATION]
unsigned char len[AST_RED_MAX_GENERATION]
unsigned char buf_data[64000]
unsigned char pt[AST_RED_MAX_GENERATION]
Structure used for mapping an incoming SSRC to an RTP instance.
unsigned int ssrc
The received SSRC.
struct ast_rtp_instance * instance
The RTP instance this SSRC belongs to.
Packet statistics (used for transport-cc)
Statistics information (used for transport-cc)
struct rtp_transport_wide_cc_statistics::@511 packet_statistics
unsigned int last_extended_seqno
unsigned int feedback_count
int ast_stun_request(int s, struct sockaddr_in *dst, const char *username, struct sockaddr_in *answer)
Generic STUN request.
int ast_stun_handle_packet(int s, struct sockaddr_in *src, unsigned char *data, size_t len, stun_cb_f *stun_cb, void *arg)
handle an incoming STUN message.
#define ast_debug_stun(sublevel,...)
Log debug level STUN information.
#define AST_DEBUG_CATEGORY_STUN
static const int STANDARD_STUN_PORT
#define ast_test_suite_event_notify(s, f,...)
void * ast_threadstorage_get(struct ast_threadstorage *ts, size_t init_size)
Retrieve thread storage.
#define AST_THREADSTORAGE(name)
Define a thread storage variable.
int64_t ast_tvdiff_us(struct timeval end, struct timeval start)
Computes the difference (in microseconds) between two struct timeval instances.
struct timeval ast_samp2tv(unsigned int _nsamp, unsigned int _rate)
Returns a timeval corresponding to the duration of n samples at rate r. Useful to convert samples to ...
int ast_tvzero(const struct timeval t)
Returns true if the argument is 0,0.
int ast_tvcmp(struct timeval _a, struct timeval _b)
Compress two struct timeval instances returning -1, 0, 1 if the first arg is smaller,...
struct timeval ast_time_create_by_unit(unsigned long val, enum TIME_UNIT unit)
Convert the given unit value, and create a timeval object from it.
double ast_samp2sec(unsigned int _nsamp, unsigned int _rate)
Returns the duration in seconds of _nsamp samples at rate _rate.
unsigned int ast_sec2samp(double _seconds, int _rate)
Returns the number of samples at _rate in the duration in _seconds.
struct timeval ast_tvadd(struct timeval a, struct timeval b)
Returns the sum of two timevals a + b.
struct timeval ast_time_create_by_unit_str(unsigned long val, const char *unit)
Convert the given unit value, and create a timeval object from it.
struct timeval ast_tvsub(struct timeval a, struct timeval b)
Returns the difference of two timevals a - b.
double ast_tv2double(const struct timeval *tv)
Returns a double corresponding to the number of seconds in the timeval tv.
ast_suseconds_t ast_time_tv_to_usec(const struct timeval *tv)
Convert a timeval structure to microseconds.
int64_t ast_tvdiff_ms(struct timeval end, struct timeval start)
Computes the difference (in milliseconds) between two struct timeval instances.
struct timeval ast_tvnow(void)
Returns current timeval. Meant to replace calls to gettimeofday().
struct timeval ast_tv(ast_time_t sec, ast_suseconds_t usec)
Returns a timeval from sec, usec.
static void destroy(struct ast_trans_pvt *pvt)
Handle unaligned data access.
static void put_unaligned_uint16(void *p, unsigned short datum)
static void put_unaligned_uint32(void *p, unsigned int datum)
int error(const char *format,...)
static void statistics(void)
#define ast_test_flag(p, flag)
#define RAII_VAR(vartype, varname, initval, dtor)
Declare a variable that will call a destructor function when it goes out of scope.
#define ast_socket_nonblock(domain, type, protocol)
Create a non-blocking socket.
#define ast_clear_flag(p, flag)
long int ast_random(void)
#define ast_set_flag(p, flag)
Universally unique identifier support.
char * ast_uuid_generate_str(char *buf, size_t size)
Generate a UUID string.
#define AST_VECTOR_RESET(vec, cleanup)
Reset vector.
#define AST_VECTOR_ELEM_CLEANUP_NOOP(elem)
Vector element cleanup that does nothing.
#define AST_VECTOR_SIZE(vec)
Get the number of elements in a vector.
#define AST_VECTOR_REMOVE_CMP_ORDERED(vec, value, cmp, cleanup)
Remove an element from a vector that matches the given comparison while maintaining order.
#define AST_VECTOR_FREE(vec)
Deallocates this vector.
#define AST_VECTOR_REMOVE_CMP_UNORDERED(vec, value, cmp, cleanup)
Remove an element from a vector that matches the given comparison.
#define AST_VECTOR_GET_CMP(vec, value, cmp)
Get an element from a vector that matches the given comparison.
#define AST_VECTOR_ADD_SORTED(vec, elem, cmp)
Add an element into a sorted vector.
#define AST_VECTOR_INIT(vec, size)
Initialize a vector.
#define AST_VECTOR_APPEND(vec, elem)
Append an element to a vector, growing the vector if needed.
#define AST_VECTOR(name, type)
Define a vector structure.
#define AST_VECTOR_GET_ADDR(vec, idx)
Get an address of element in a vector.