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 pj_str_t turnaddr;
233static pj_str_t turnusername;
234static pj_str_t turnpassword;
246static struct sockaddr_in stunaddr;
251static int stunaddr_ttl = 0;
253static char *stun_hostname =
NULL;
255static int stunaddr_reresolve_ttl_0 = 0;
261static pj_pool_t *pool;
264static pj_timer_heap_t *timer_heap;
267static pj_thread_t *timer_thread;
270static int timer_terminate;
273struct ast_rtp_ioqueue_thread {
279 pj_ioqueue_t *ioqueue;
281 pj_timer_heap_t *timerheap;
294struct ast_ice_host_candidate {
297 unsigned int include_local;
308#define FLAG_3389_WARNING (1 << 0)
309#define FLAG_NAT_ACTIVE (3 << 1)
310#define FLAG_NAT_INACTIVE (0 << 1)
311#define FLAG_NAT_INACTIVE_NOWARN (1 << 1)
312#define FLAG_NEED_MARKER_BIT (1 << 3)
313#define FLAG_DTMF_COMPENSATE (1 << 4)
314#define FLAG_REQ_LOCAL_BRIDGE_BIT (1 << 5)
316#define TRANSPORT_SOCKET_RTP 0
317#define TRANSPORT_SOCKET_RTCP 1
318#define TRANSPORT_TURN_RTP 2
319#define TRANSPORT_TURN_RTCP 3
332#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
346 pj_ice_sess *real_ice;
490 struct ice_wrap *ice;
492 pj_turn_sock *turn_rtp;
493 pj_turn_sock *turn_rtcp;
494 pj_turn_state_t turn_state;
495 unsigned int passthrough:1;
496 unsigned int rtp_passthrough:1;
497 unsigned int rtcp_passthrough:1;
498 unsigned int ice_port;
502 struct ast_rtp_ioqueue_thread *ioqueue;
504 char remote_ufrag[257];
505 char remote_passwd[257];
507 char local_ufrag[257];
508 char local_passwd[257];
514 unsigned int ice_num_components;
515 unsigned int ice_media_started:1;
518#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
523 char local_fingerprint[160];
525 unsigned char remote_fingerprint[EVP_MAX_MD_SIZE];
528 struct dtls_details dtls;
610#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
611 struct dtls_details dtls;
679#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
683static int dtls_bio_write(BIO *bio,
const char *
buf,
int len);
684static long dtls_bio_ctrl(BIO *bio,
int cmd,
long arg1,
void *arg2);
685static int dtls_bio_new(BIO *bio);
686static int dtls_bio_free(BIO *bio);
688#ifndef HAVE_OPENSSL_BIO_METHOD
689static BIO_METHOD dtls_bio_methods = {
690 .type = BIO_TYPE_BIO,
692 .bwrite = dtls_bio_write,
693 .ctrl = dtls_bio_ctrl,
694 .create = dtls_bio_new,
695 .destroy = dtls_bio_free,
698static BIO_METHOD *dtls_bio_methods;
705static void stunaddr_resolve_callback(
const struct ast_dns_query *query);
709#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
710static int dtls_bio_new(BIO *bio)
712#ifdef HAVE_OPENSSL_BIO_METHOD
713 BIO_set_init(bio, 1);
714 BIO_set_data(bio,
NULL);
715 BIO_set_shutdown(bio, 0);
724static int dtls_bio_free(BIO *bio)
730#ifdef HAVE_OPENSSL_BIO_METHOD
731 BIO_set_data(bio,
NULL);
738static int dtls_bio_write(BIO *bio,
const char *
buf,
int len)
740#ifdef HAVE_OPENSSL_BIO_METHOD
755 if (rtp->
rtcp && rtp->
rtcp->dtls.write_bio == bio) {
766 bytes_sent =
__rtp_sendto(instance, (
char *)
buf,
len, 0, &remote_address, rtcp, &ice, 0);
769 ast_debug(0,
"(%p) DTLS - sent %s packet to %s%s (len %-6.6d)\n",
771 ice ?
" (via ICE)" :
"", bytes_sent);
777static long dtls_bio_ctrl(BIO *bio,
int cmd,
long arg1,
void *arg2)
782 case BIO_CTRL_DGRAM_QUERY_MTU:
784 case BIO_CTRL_WPENDING:
785 case BIO_CTRL_PENDING:
796static void host_candidate_overrides_clear(
void)
798 struct ast_ice_host_candidate *candidate;
813 char address[PJ_INET6_ADDRSTRLEN];
815 if (component < 1 || !ice->comp[component - 1].valid_check) {
820 pj_sockaddr_print(&ice->comp[component - 1].valid_check->rcand->addr,
address,
823 pj_sockaddr_get_port(&ice->comp[component - 1].valid_check->rcand->addr));
827static void ast_rtp_ice_candidate_destroy(
void *obj)
841static void ast_rtp_ice_set_authentication(
struct ast_rtp_instance *instance,
const char *ufrag,
const char *password)
844 int ice_attrb_reset = 0;
847 if (!
ast_strlen_zero(rtp->remote_ufrag) && strcmp(ufrag, rtp->remote_ufrag)) {
854 if (!
ast_strlen_zero(rtp->remote_passwd) && strcmp(password, rtp->remote_passwd)) {
857 ast_copy_string(rtp->remote_passwd, password,
sizeof(rtp->remote_passwd));
861 if (ice_attrb_reset) {
867static int ice_candidate_cmp(
void *obj,
void *arg,
int flags)
871 if (strcmp(candidate1->
foundation, candidate2->foundation) ||
872 candidate1->
id != candidate2->id ||
873 candidate1->
type != candidate2->type ||
888 if (strcasecmp(candidate->
transport,
"udp")) {
892 if (!rtp->ice_proposed_remote_candidates) {
895 if (!rtp->ice_proposed_remote_candidates) {
905 if (!(remote_candidate =
ao2_alloc(
sizeof(*remote_candidate), ast_rtp_ice_candidate_destroy))) {
910 remote_candidate->
id = candidate->
id;
915 remote_candidate->
type = candidate->
type;
917 ast_debug_ice(2,
"(%p) ICE add remote candidate\n", instance);
919 ao2_link(rtp->ice_proposed_remote_candidates, remote_candidate);
926static void pj_thread_register_check(
void)
928 pj_thread_desc *
desc;
931 if (pj_thread_is_registered() == PJ_TRUE) {
937 ast_log(
LOG_ERROR,
"Could not get thread desc from thread-local storage. Expect awful things to occur\n");
942 if (pj_thread_register(
"Asterisk Thread", *
desc, &
thread) != PJ_SUCCESS) {
955 struct ice_wrap *ice;
977static void ice_wrap_dtor(
void *vdoomed)
979 struct ice_wrap *ice = vdoomed;
982 pj_thread_register_check();
984 pj_ice_sess_destroy(ice->real_ice);
988static void ast2pj_rtp_ice_role(
enum ast_rtp_ice_role ast_role,
enum pj_ice_sess_role *pj_role)
992 *pj_role = PJ_ICE_SESS_ROLE_CONTROLLED;
995 *pj_role = PJ_ICE_SESS_ROLE_CONTROLLING;
1000static void pj2ast_rtp_ice_role(
enum pj_ice_sess_role pj_role,
enum ast_rtp_ice_role *ast_role)
1003 case PJ_ICE_SESS_ROLE_CONTROLLED:
1006 case PJ_ICE_SESS_ROLE_CONTROLLING:
1009 case PJ_ICE_SESS_ROLE_UNKNOWN:
1026 if (!rtp->ice->real_ice->is_nominating && !rtp->ice->real_ice->is_complete) {
1027 ast_debug_ice(3,
" (%p) ICE nevermind, not ready for a reset\n", instance);
1031 ast_debug_ice(3,
"(%p) ICE recreating ICE session %s (%d)\n",
1033 res = ice_create(instance, &rtp->ice_original_rtp_addr, rtp->ice_port, 1);
1036 enum pj_ice_sess_role role = PJ_ICE_SESS_ROLE_UNKNOWN;
1037 ast2pj_rtp_ice_role(rtp->role, &role);
1038 pj_ice_sess_change_role(rtp->ice->real_ice, role);
1044 if (rtp->ice_num_components == 1 && rtp->turn_rtcp) {
1046 struct timespec ts = { .tv_sec = wait.tv_sec, .tv_nsec = wait.tv_usec * 1000, };
1048 rtp->turn_state = PJ_TURN_STATE_NULL;
1052 pj_turn_sock_destroy(rtp->turn_rtcp);
1054 while (rtp->turn_state != PJ_TURN_STATE_DESTROYING) {
1059 rtp->ice_media_started = 0;
1077 if (!left_candidate) {
1095 pj_str_t ufrag = pj_str(rtp->remote_ufrag), passwd = pj_str(rtp->remote_passwd);
1096 pj_ice_sess_cand candidates[PJ_ICE_MAX_CAND];
1099 int cand_cnt = 0, has_rtp = 0, has_rtcp = 0;
1101 if (!rtp->ice || !rtp->ice_proposed_remote_candidates) {
1106 if (rtp->ice_active_remote_candidates &&
1107 !ice_candidates_compare(rtp->ice_proposed_remote_candidates, rtp->ice_active_remote_candidates)) {
1108 ast_debug_ice(2,
"(%p) ICE proposed equals active candidates\n", instance);
1110 rtp->ice_proposed_remote_candidates =
NULL;
1112 pj2ast_rtp_ice_role(rtp->ice->real_ice->role, &rtp->role);
1118 rtp->ice_active_remote_candidates = rtp->ice_proposed_remote_candidates;
1119 rtp->ice_proposed_remote_candidates =
NULL;
1124 if (ice_reset_session(instance)) {
1125 ast_log(
LOG_NOTICE,
"(%p) ICE failed to create replacement session\n", instance);
1129 pj_thread_register_check();
1140 pj_strdup2(rtp->ice->real_ice->pool, &candidates[cand_cnt].foundation,
1142 candidates[cand_cnt].comp_id = candidate->
id;
1143 candidates[cand_cnt].prio = candidate->
priority;
1152 candidates[cand_cnt].type = PJ_ICE_CAND_TYPE_HOST;
1154 candidates[cand_cnt].type = PJ_ICE_CAND_TYPE_SRFLX;
1156 candidates[cand_cnt].type = PJ_ICE_CAND_TYPE_RELAYED;
1163 pj_turn_sock_set_perm(rtp->turn_rtp, 1, &candidates[cand_cnt].addr, 1);
1169 pj_turn_sock_set_perm(rtp->turn_rtcp, 1, &candidates[cand_cnt].addr, 1);
1180 ast_log(
LOG_WARNING,
"(%p) ICE lost %d candidates. Consider increasing PJ_ICE_MAX_CAND in PJSIP\n",
1189 if (!has_rtcp && rtp->ice_num_components > 1) {
1193 if (rtp->ice && has_rtp && (has_rtcp || rtp->ice_num_components == 1)) {
1196 struct ice_wrap *ice;
1202 res = pj_ice_sess_create_check_list(ice->real_ice, &ufrag, &passwd, cand_cnt, &candidates[0]);
1203 if (res == PJ_SUCCESS) {
1204 ast_debug_ice(2,
"(%p) ICE successfully created checklist\n", instance);
1206 pj_ice_sess_start_check(ice->real_ice);
1207 pj_timer_heap_poll(timer_heap,
NULL);
1216 pj_strerror(res, reason,
sizeof(reason));
1217 ast_log(
LOG_WARNING,
"(%p) ICE failed to create session check list: %s\n", instance, reason);
1226 ao2_ref(rtp->ice_active_remote_candidates, -1);
1227 rtp->ice_active_remote_candidates =
NULL;
1229 rtp->ice->real_ice->rcand_cnt = rtp->ice->real_ice->clist.count = 0;
1238 return rtp->local_ufrag;
1242static const char *ast_rtp_ice_get_password(
struct ast_rtp_instance *instance)
1246 return rtp->local_passwd;
1254 if (rtp->ice_local_candidates) {
1255 ao2_ref(rtp->ice_local_candidates, +1);
1258 return rtp->ice_local_candidates;
1270 pj_thread_register_check();
1272 pj_ice_sess_change_role(rtp->ice->real_ice, PJ_ICE_SESS_ROLE_CONTROLLING);
1281 ast_debug_ice(3,
"(%p) ICE set role failed; no ice instance\n", instance);
1287 if (!rtp->ice->real_ice->is_nominating && !rtp->ice->real_ice->is_complete) {
1288 pj_thread_register_check();
1292 PJ_ICE_SESS_ROLE_CONTROLLED : PJ_ICE_SESS_ROLE_CONTROLLING);
1294 ast_debug_ice(2,
"(%p) ICE not setting role because state is %s\n",
1295 instance, rtp->ice->real_ice->is_nominating ?
"nominating" :
"complete");
1301 unsigned comp_id,
unsigned transport_id, pj_ice_cand_type
type, pj_uint16_t local_pref,
1302 const pj_sockaddr_t *addr,
const pj_sockaddr_t *base_addr,
const pj_sockaddr_t *rel_addr,
1305 pj_str_t foundation;
1307 struct ice_wrap *ice;
1308 char address[PJ_INET6_ADDRSTRLEN];
1315 pj_thread_register_check();
1317 pj_ice_calc_foundation(rtp->ice->real_ice->pool, &foundation,
type, addr);
1319 if (!rtp->ice_local_candidates) {
1321 NULL, ice_candidate_cmp);
1322 if (!rtp->ice_local_candidates) {
1327 if (!(candidate =
ao2_alloc(
sizeof(*candidate), ast_rtp_ice_candidate_destroy))) {
1332 candidate->
id = comp_id;
1343 if (
type == PJ_ICE_CAND_TYPE_HOST) {
1345 }
else if (
type == PJ_ICE_CAND_TYPE_SRFLX) {
1347 }
else if (
type == PJ_ICE_CAND_TYPE_RELAYED) {
1361 status = pj_ice_sess_add_cand(ice->real_ice, comp_id, transport_id,
type, local_pref,
1362 &foundation, addr, base_addr, rel_addr, addr_len,
NULL);
1365 if (!rtp->ice ||
status != PJ_SUCCESS) {
1373 candidate->
priority = rtp->ice->real_ice->lcand[rtp->ice->real_ice->lcand_cnt - 1].prio;
1378 ao2_link(rtp->ice_local_candidates, candidate);
1383static 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)
1387 struct ice_wrap *ice;
1398 if (
status != PJ_SUCCESS) {
1406 if (!rtp->rtp_passthrough) {
1409 rtp->rtp_passthrough = 0;
1412 ast_sendto(rtp->
s, pkt, pkt_len, 0, &rtp->rtp_loop);
1416static void ast_rtp_on_turn_rtp_state(pj_turn_sock *turn_sock, pj_turn_state_t old_state, pj_turn_state_t new_state)
1431 rtp->turn_state = new_state;
1434 if (new_state == PJ_TURN_STATE_DESTROYING) {
1435 pj_turn_sock_set_user_data(rtp->turn_rtp,
NULL);
1436 rtp->turn_rtp =
NULL;
1443static pj_turn_sock_cb ast_rtp_turn_rtp_sock_cb = {
1444 .on_rx_data = ast_rtp_on_turn_rx_rtp_data,
1445 .on_state = ast_rtp_on_turn_rtp_state,
1449static 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)
1453 struct ice_wrap *ice;
1464 if (
status != PJ_SUCCESS) {
1472 if (!rtp->rtcp_passthrough) {
1475 rtp->rtcp_passthrough = 0;
1482static void ast_rtp_on_turn_rtcp_state(pj_turn_sock *turn_sock, pj_turn_state_t old_state, pj_turn_state_t new_state)
1497 rtp->turn_state = new_state;
1500 if (new_state == PJ_TURN_STATE_DESTROYING) {
1501 pj_turn_sock_set_user_data(rtp->turn_rtcp,
NULL);
1502 rtp->turn_rtcp =
NULL;
1509static pj_turn_sock_cb ast_rtp_turn_rtcp_sock_cb = {
1510 .on_rx_data = ast_rtp_on_turn_rx_rtcp_data,
1511 .on_state = ast_rtp_on_turn_rtcp_state,
1515static int ioqueue_worker_thread(
void *data)
1517 struct ast_rtp_ioqueue_thread *ioqueue = data;
1519 while (!ioqueue->terminate) {
1520 const pj_time_val delay = {0, 10};
1522 pj_ioqueue_poll(ioqueue->ioqueue, &delay);
1524 pj_timer_heap_poll(ioqueue->timerheap,
NULL);
1531static void rtp_ioqueue_thread_destroy(
struct ast_rtp_ioqueue_thread *ioqueue)
1533 if (ioqueue->thread) {
1534 ioqueue->terminate = 1;
1535 pj_thread_join(ioqueue->thread);
1536 pj_thread_destroy(ioqueue->thread);
1539 if (ioqueue->pool) {
1543 pj_pool_t *temp_pool = ioqueue->pool;
1545 ioqueue->pool =
NULL;
1546 pj_ioqueue_destroy(ioqueue->ioqueue);
1547 pj_pool_release(temp_pool);
1554static void rtp_ioqueue_thread_remove(
struct ast_rtp_ioqueue_thread *ioqueue)
1560 if ((ioqueue->count -= 2) == 0) {
1570 rtp_ioqueue_thread_destroy(ioqueue);
1574static struct ast_rtp_ioqueue_thread *rtp_ioqueue_thread_get_or_create(
void)
1576 struct ast_rtp_ioqueue_thread *ioqueue;
1583 if ((ioqueue->count + 2) < PJ_IOQUEUE_MAX_HANDLES) {
1590 ioqueue->count += 2;
1599 ioqueue->pool = pj_pool_create(&
cachingpool.factory,
"rtp", 512, 512,
NULL);
1604 if (pj_timer_heap_create(ioqueue->pool, 4, &ioqueue->timerheap) != PJ_SUCCESS) {
1608 if (pj_lock_create_recursive_mutex(ioqueue->pool,
"rtp%p", &
lock) != PJ_SUCCESS) {
1612 pj_timer_heap_set_lock(ioqueue->timerheap,
lock, PJ_TRUE);
1614 if (pj_ioqueue_create(ioqueue->pool, PJ_IOQUEUE_MAX_HANDLES, &ioqueue->ioqueue) != PJ_SUCCESS) {
1618 if (pj_thread_create(ioqueue->pool,
"ice", &ioqueue_worker_thread, ioqueue, 0, 0, &ioqueue->thread) != PJ_SUCCESS) {
1630 rtp_ioqueue_thread_destroy(ioqueue);
1640 enum ast_transport transport,
const char *server,
unsigned int port,
const char *username,
const char *password)
1643 pj_turn_sock **turn_sock;
1644 const pj_turn_sock_cb *turn_cb;
1645 pj_turn_tp_type conn_type;
1647 pj_stun_auth_cred cred = { 0, };
1650 pj_stun_config stun_config;
1652 struct timespec ts = { .tv_sec = wait.tv_sec, .tv_nsec = wait.tv_usec * 1000, };
1653 pj_turn_session_info
info;
1656 pj_turn_sock_cfg turn_sock_cfg;
1657 struct ice_wrap *ice;
1668 turn_sock = &rtp->turn_rtp;
1669 turn_cb = &ast_rtp_turn_rtp_sock_cb;
1673 turn_sock = &rtp->turn_rtcp;
1674 turn_cb = &ast_rtp_turn_rtcp_sock_cb;
1682 conn_type = PJ_TURN_TP_UDP;
1684 conn_type = PJ_TURN_TP_TCP;
1693 rtp->turn_state = PJ_TURN_STATE_NULL;
1697 pj_turn_sock_destroy(*turn_sock);
1699 while (rtp->turn_state != PJ_TURN_STATE_DESTROYING) {
1711 rtp->ioqueue = rtp_ioqueue_thread_get_or_create();
1713 if (!rtp->ioqueue) {
1718 pj_stun_config_init(&stun_config, &
cachingpool.factory, 0, rtp->ioqueue->ioqueue, rtp->ioqueue->timerheap);
1719 if (!stun_software_attribute) {
1720 stun_config.software_name = pj_str(
NULL);
1724 pj_turn_sock_cfg_default(&turn_sock_cfg);
1727 turn_sock_cfg.grp_lock = ice->real_ice->grp_lock;
1733 status = pj_turn_sock_create(&stun_config,
1735 turn_cb, &turn_sock_cfg, instance, turn_sock);
1737 if (
status != PJ_SUCCESS) {
1743 cred.type = PJ_STUN_AUTH_CRED_STATIC;
1744 pj_strset2(&cred.data.static_cred.username, (
char*)username);
1745 cred.data.static_cred.data_type = PJ_STUN_PASSWD_PLAIN;
1746 pj_strset2(&cred.data.static_cred.data, (
char*)password);
1748 pj_turn_sock_alloc(*turn_sock, pj_cstr(&turn_addr, server), port,
NULL, &cred,
NULL);
1750 ast_debug_ice(2,
"(%p) ICE request TURN %s %s candidate\n", instance,
1760 while (rtp->turn_state < PJ_TURN_STATE_READY) {
1765 if (rtp->turn_state != PJ_TURN_STATE_READY) {
1769 pj_turn_sock_get_info(*turn_sock, &info);
1771 ast_rtp_ice_add_cand(instance, rtp, component, conn_transport,
1772 PJ_ICE_CAND_TYPE_RELAYED, 65535, &
info.relay_addr, &
info.relay_addr,
1773 &
info.mapped_addr, pj_sockaddr_get_len(&
info.relay_addr));
1787 for (x=0; x<4; x++) {
1790 snprintf(
buf, size,
"%08lx%08lx%08lx%08lx", (
long unsigned)
val[0], (
long unsigned)
val[1], (
long unsigned)
val[2], (
long unsigned)
val[3]);
1796static void ast_rtp_ice_change_components(
struct ast_rtp_instance *instance,
int num_components)
1803 if (!icesupport || !rtp->ice || rtp->ice_num_components == num_components) {
1807 ast_debug_ice(2,
"(%p) ICE change number of components %u -> %u\n", instance,
1808 rtp->ice_num_components, num_components);
1810 rtp->ice_num_components = num_components;
1811 ice_reset_session(instance);
1830#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
1840 dtls->dtls_setup = setup;
1842 if (!(dtls->ssl =
SSL_new(ssl_ctx))) {
1853#ifdef HAVE_OPENSSL_BIO_METHOD
1855 ast_log(
LOG_ERROR,
"Failed to allocate memory for outbound SSL traffic\n");
1862 ast_log(
LOG_ERROR,
"Failed to allocate memory for outbound SSL traffic\n");
1865 dtls->write_bio->ptr = instance;
1867 SSL_set_bio(dtls->ssl, dtls->read_bio, dtls->write_bio);
1879 if (dtls->read_bio) {
1881 dtls->read_bio =
NULL;
1884 if (dtls->write_bio) {
1886 dtls->write_bio =
NULL;
1900 if (!rtp->ssl_ctx || !rtp->
rtcp) {
1905 return dtls_details_initialize(&rtp->
rtcp->dtls, rtp->ssl_ctx, rtp->dtls.dtls_setup, instance);
1908static const SSL_METHOD *get_dtls_method(
void)
1910#if OPENSSL_VERSION_NUMBER < 0x10002000L
1911 return DTLSv1_method();
1913 return DTLS_method();
1917struct dtls_cert_info {
1918 EVP_PKEY *private_key;
1922static int apply_dh_params(
SSL_CTX *ctx, BIO *bio)
1926#if OPENSSL_VERSION_NUMBER >= 0x30000000L
1927 EVP_PKEY *dhpkey = PEM_read_bio_Parameters(bio,
NULL);
1928 if (dhpkey && EVP_PKEY_is_a(dhpkey,
"DH")) {
1929 res = SSL_CTX_set0_tmp_dh_pkey(ctx, dhpkey);
1935 EVP_PKEY_free(dhpkey);
1940 res = SSL_CTX_set_tmp_dh(ctx, dh);
1950#if !defined(OPENSSL_NO_ECDH) && (OPENSSL_VERSION_NUMBER >= 0x10000000L) && (OPENSSL_VERSION_NUMBER < 0x10100000L)
1954#ifndef OPENSSL_NO_DH
1956 BIO *bio = BIO_new_file(dtls_cfg->
pvtfile,
"r");
1958 if (apply_dh_params(rtp->ssl_ctx, bio)) {
1959 long options = SSL_OP_CIPHER_SERVER_PREFERENCE |
1960 SSL_OP_SINGLE_DH_USE | SSL_OP_SINGLE_ECDH_USE;
1962 ast_verb(2,
"DTLS DH initialized, PFS enabled\n");
1969#if !defined(OPENSSL_NO_ECDH) && (OPENSSL_VERSION_NUMBER >= 0x10000000L) && (OPENSSL_VERSION_NUMBER < 0x10100000L)
1971 ecdh = EC_KEY_new_by_curve_name(NID_X9_62_prime256v1);
1973 if (SSL_CTX_set_tmp_ecdh(rtp->ssl_ctx, ecdh)) {
1974 #ifndef SSL_CTRL_SET_ECDH_AUTO
1975 #define SSL_CTRL_SET_ECDH_AUTO 94
1978 if (SSL_CTX_ctrl(rtp->ssl_ctx, SSL_CTRL_SET_ECDH_AUTO, 1,
NULL)) {
1979 ast_verb(2,
"DTLS ECDH initialized (automatic), faster PFS enabled\n");
1981 ast_verb(2,
"DTLS ECDH initialized (secp256r1), faster PFS enabled\n");
1989#if !defined(OPENSSL_NO_ECDH) && (OPENSSL_VERSION_NUMBER >= 0x10000000L)
1991static int create_ephemeral_ec_keypair(EVP_PKEY **keypair)
1993#if OPENSSL_VERSION_NUMBER >= 0x30000000L
1994 *keypair = EVP_EC_gen(SN_X9_62_prime256v1);
1995 return *keypair ? 0 : -1;
1997 EC_KEY *eckey =
NULL;
2000 group = EC_GROUP_new_by_curve_name(NID_X9_62_prime256v1);
2005 EC_GROUP_set_asn1_flag(
group, OPENSSL_EC_NAMED_CURVE);
2006 EC_GROUP_set_point_conversion_form(
group, POINT_CONVERSION_UNCOMPRESSED);
2008 eckey = EC_KEY_new();
2013 if (!EC_KEY_set_group(eckey,
group)) {
2017 if (!EC_KEY_generate_key(eckey)) {
2021 *keypair = EVP_PKEY_new();
2026 EVP_PKEY_assign_EC_KEY(*keypair, eckey);
2027 EC_GROUP_free(
group);
2033 EC_GROUP_free(
group);
2040#define SERIAL_RAND_BITS 159
2042static int create_ephemeral_certificate(EVP_PKEY *keypair, X509 **certificate)
2045 BIGNUM *serial =
NULL;
2053 if (!X509_set_version(cert, 2)) {
2058 X509_set_pubkey(cert, keypair);
2061 if (!(serial = BN_new())
2062 || !BN_rand(serial, SERIAL_RAND_BITS, -1, 0)
2063 || !BN_to_ASN1_INTEGER(serial, X509_get_serialNumber(cert))) {
2074#if OPENSSL_VERSION_NUMBER < 0x10100000L
2075 if (!X509_time_adj_ex(X509_get_notBefore(cert), -1, 0,
NULL)
2076 || !X509_time_adj_ex(X509_get_notAfter(cert), 30, 0,
NULL)) {
2080 if (!X509_time_adj_ex(X509_getm_notBefore(cert), -1, 0,
NULL)
2081 || !X509_time_adj_ex(X509_getm_notAfter(cert), 30, 0,
NULL)) {
2087 if (!(
name = X509_get_subject_name(cert))
2088 || !X509_NAME_add_entry_by_NID(
name, NID_commonName, MBSTRING_ASC,
2089 (
unsigned char *)
"asterisk", -1, -1, 0)
2090 || !X509_set_issuer_name(cert,
name)) {
2095 if (!X509_sign(cert, keypair, EVP_sha256())) {
2099 *certificate = cert;
2111 struct dtls_cert_info *cert_info)
2114 cert_info->private_key =
NULL;
2115 cert_info->certificate =
NULL;
2117 if (create_ephemeral_ec_keypair(&cert_info->private_key)) {
2122 if (create_ephemeral_certificate(cert_info->private_key, &cert_info->certificate)) {
2130 X509_free(cert_info->certificate);
2131 EVP_PKEY_free(cert_info->private_key);
2140 struct dtls_cert_info *cert_info)
2142 ast_log(
LOG_ERROR,
"Your version of OpenSSL does not support ECDSA keys\n");
2150 struct dtls_cert_info *cert_info)
2153 BIO *certbio =
NULL;
2154 EVP_PKEY *private_key =
NULL;
2158 fp = fopen(private_key_file,
"r");
2160 ast_log(
LOG_ERROR,
"Failed to read private key from file '%s': %s\n", private_key_file, strerror(
errno));
2164 if (!PEM_read_PrivateKey(fp, &private_key,
NULL,
NULL)) {
2165 ast_log(
LOG_ERROR,
"Failed to read private key from PEM file '%s'\n", private_key_file);
2171 ast_log(
LOG_ERROR,
"Failed to close private key file '%s': %s\n", private_key_file, strerror(
errno));
2175 certbio = BIO_new(BIO_s_file());
2177 ast_log(
LOG_ERROR,
"Failed to allocate memory for certificate fingerprinting on RTP instance '%p'\n",
2182 if (!BIO_read_filename(certbio, dtls_cfg->
certfile)
2183 || !(cert = PEM_read_bio_X509(certbio,
NULL, 0,
NULL))) {
2188 cert_info->private_key = private_key;
2189 cert_info->certificate = cert;
2191 BIO_free_all(certbio);
2197 BIO_free_all(certbio);
2198 EVP_PKEY_free(private_key);
2205 struct dtls_cert_info *cert_info)
2208 return create_certificate_ephemeral(instance, dtls_cfg, cert_info);
2210 return create_certificate_from_file(instance, dtls_cfg, cert_info);
2220 struct dtls_cert_info cert_info = { 0 };
2230 ast_log(
LOG_ERROR,
"SRTP support module is not loaded or available. Try loading res_srtp.so.\n");
2238 rtp->ssl_ctx = SSL_CTX_new(get_dtls_method());
2239 if (!rtp->ssl_ctx) {
2243 SSL_CTX_set_read_ahead(rtp->ssl_ctx, 1);
2245 configure_dhparams(rtp, dtls_cfg);
2247 rtp->dtls_verify = dtls_cfg->
verify;
2251 dtls_verify_callback :
NULL);
2254 SSL_CTX_set_tlsext_use_srtp(rtp->ssl_ctx,
"SRTP_AES128_CM_SHA1_80");
2256 SSL_CTX_set_tlsext_use_srtp(rtp->ssl_ctx,
"SRTP_AES128_CM_SHA1_32");
2258 ast_log(
LOG_ERROR,
"Unsupported suite specified for DTLS-SRTP on RTP instance '%p'\n", instance);
2262 rtp->local_hash = dtls_cfg->
hash;
2264 if (!load_dtls_certificate(instance, dtls_cfg, &cert_info)) {
2266 unsigned int size, i;
2267 unsigned char fingerprint[EVP_MAX_MD_SIZE];
2268 char *local_fingerprint = rtp->local_fingerprint;
2270 if (!SSL_CTX_use_certificate(rtp->ssl_ctx, cert_info.certificate)) {
2271 ast_log(
LOG_ERROR,
"Specified certificate for RTP instance '%p' could not be used\n",
2276 if (!SSL_CTX_use_PrivateKey(rtp->ssl_ctx, cert_info.private_key)
2277 || !SSL_CTX_check_private_key(rtp->ssl_ctx)) {
2278 ast_log(
LOG_ERROR,
"Specified private key for RTP instance '%p' could not be used\n",
2286 type = EVP_sha256();
2288 ast_log(
LOG_ERROR,
"Unsupported fingerprint hash type on RTP instance '%p'\n",
2293 if (!X509_digest(cert_info.certificate,
type, fingerprint, &size) || !size) {
2294 ast_log(
LOG_ERROR,
"Could not produce fingerprint from certificate for RTP instance '%p'\n",
2299 for (i = 0; i < size; i++) {
2300 sprintf(local_fingerprint,
"%02hhX:", fingerprint[i]);
2301 local_fingerprint += 3;
2304 *(local_fingerprint - 1) = 0;
2306 EVP_PKEY_free(cert_info.private_key);
2307 X509_free(cert_info.certificate);
2311 if (!SSL_CTX_set_cipher_list(rtp->ssl_ctx, dtls_cfg->
cipher)) {
2312 ast_log(
LOG_ERROR,
"Invalid cipher specified in cipher list '%s' for RTP instance '%p'\n",
2313 dtls_cfg->
cipher, instance);
2320 ast_log(
LOG_ERROR,
"Invalid certificate authority file '%s' or path '%s' specified for RTP instance '%p'\n",
2326 rtp->rekey = dtls_cfg->
rekey;
2327 rtp->suite = dtls_cfg->
suite;
2329 res = dtls_details_initialize(&rtp->dtls, rtp->ssl_ctx, dtls_cfg->
default_setup, instance);
2331 dtls_setup_rtcp(instance);
2342 return !rtp->ssl_ctx ? 0 : 1;
2349 SSL *ssl = rtp->dtls.ssl;
2353 dtls_srtp_stop_timeout_timer(instance, rtp, 0);
2357 SSL_CTX_free(rtp->ssl_ctx);
2358 rtp->ssl_ctx =
NULL;
2361 if (rtp->dtls.ssl) {
2362 SSL_free(rtp->dtls.ssl);
2363 rtp->dtls.ssl =
NULL;
2368 dtls_srtp_stop_timeout_timer(instance, rtp, 1);
2371 if (rtp->
rtcp->dtls.ssl) {
2372 if (rtp->
rtcp->dtls.ssl != ssl) {
2373 SSL_free(rtp->
rtcp->dtls.ssl);
2385 if (SSL_is_init_finished(rtp->dtls.ssl)) {
2386 SSL_shutdown(rtp->dtls.ssl);
2390 if (rtp->
rtcp && SSL_is_init_finished(rtp->
rtcp->dtls.ssl)) {
2391 SSL_shutdown(rtp->
rtcp->dtls.ssl);
2401 return rtp->dtls.connection;
2409 return rtp->dtls.dtls_setup;
2438 if (old == *dtls_setup) {
2448 SSL_set_connect_state(ssl);
2450 SSL_set_accept_state(ssl);
2461 if (rtp->dtls.ssl) {
2462 dtls_set_setup(&rtp->dtls.dtls_setup, setup, rtp->dtls.ssl);
2465 if (rtp->
rtcp && rtp->
rtcp->dtls.ssl) {
2466 dtls_set_setup(&rtp->
rtcp->dtls.dtls_setup, setup, rtp->
rtcp->dtls.ssl);
2481 rtp->remote_hash = hash;
2483 while ((
value =
strsep(&tmp,
":")) && (pos != (EVP_MAX_MD_SIZE - 1))) {
2484 sscanf(
value,
"%02hhx", &rtp->remote_fingerprint[pos++]);
2493 return rtp->local_hash;
2497static const char *ast_rtp_dtls_get_fingerprint(
struct ast_rtp_instance *instance)
2501 return rtp->local_fingerprint;
2507 .active = ast_rtp_dtls_active,
2508 .stop = ast_rtp_dtls_stop,
2509 .reset = ast_rtp_dtls_reset,
2510 .get_connection = ast_rtp_dtls_get_connection,
2511 .get_setup = ast_rtp_dtls_get_setup,
2512 .set_setup = ast_rtp_dtls_set_setup,
2513 .set_fingerprint = ast_rtp_dtls_set_fingerprint,
2514 .get_fingerprint_hash = ast_rtp_dtls_get_fingerprint_hash,
2515 .get_fingerprint = ast_rtp_dtls_get_fingerprint,
2520#ifdef TEST_FRAMEWORK
2558 if (rtp && rtp->
rtcp) {
2563static struct ast_rtp_engine_test ast_rtp_test = {
2564 .packets_to_drop = 0,
2567 .recv_buffer_count = get_recv_buffer_count,
2568 .recv_buffer_max = get_recv_buffer_max,
2569 .send_buffer_count = get_send_buffer_count,
2570 .set_schedid = set_rtp_rtcp_schedid,
2600#ifdef HAVE_PJPROJECT
2601 .ice = &ast_rtp_ice,
2603#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
2604 .dtls = &ast_rtp_dtls,
2605 .activate = ast_rtp_activate,
2613#ifdef TEST_FRAMEWORK
2614 .test = &ast_rtp_test,
2618#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
2620static void dtls_perform_handshake(
struct ast_rtp_instance *instance,
struct dtls_details *
dtls,
int rtcp)
2624 ast_debug_dtls(3,
"(%p) DTLS perform handshake - ssl = %p, setup = %d\n",
2625 rtp, dtls->ssl, dtls->dtls_setup);
2635 SSL_do_handshake(dtls->ssl);
2645 dtls_srtp_start_timeout_timer(instance, rtp,
rtcp);
2649#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
2650static void dtls_perform_setup(
struct dtls_details *dtls)
2652 if (!dtls->ssl || !SSL_is_init_finished(dtls->ssl)) {
2656 SSL_clear(dtls->ssl);
2658 SSL_set_accept_state(dtls->ssl);
2660 SSL_set_connect_state(dtls->ssl);
2668#ifdef HAVE_PJPROJECT
2672static void ast_rtp_ice_start_media(pj_ice_sess *ice, pj_status_t
status)
2679 if (
status == PJ_SUCCESS) {
2696#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
2698 if (rtp->ice_media_started) {
2704 "(%p) ICE starting media - perform DTLS - (%p)\n", instance, rtp);
2718 dtls_perform_handshake(instance, &rtp->dtls, 0);
2721 dtls_perform_handshake(instance, &rtp->
rtcp->dtls, 1);
2725 rtp->ice_media_started = 1;
2732 ast_verb(4,
"%p -- Strict RTP learning after ICE completion\n", rtp);
2737#ifdef HAVE_PJPROJECT_ON_VALID_ICE_PAIR_CALLBACK
2739static void ast_rtp_on_valid_pair(pj_ice_sess *ice)
2741 ast_debug_ice(2,
"(%p) ICE valid pair, start media\n", ice->user_data);
2742 ast_rtp_ice_start_media(ice, PJ_SUCCESS);
2747static void ast_rtp_on_ice_complete(pj_ice_sess *ice, pj_status_t
status)
2749 ast_debug_ice(2,
"(%p) ICE complete, start media\n", ice->user_data);
2750 ast_rtp_ice_start_media(ice,
status);
2754static 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)
2762 rtp->passthrough = 1;
2764 rtp->rtp_passthrough = 1;
2766 rtp->rtcp_passthrough = 1;
2771static 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)
2775 pj_status_t
status = PJ_EINVALIDOP;
2776 pj_ssize_t _size = (pj_ssize_t)size;
2780 status = pj_sock_sendto(rtp->
s, pkt, &_size, 0, dst_addr, dst_addr_len);
2786 status = pj_sock_sendto(rtp->
rtcp->
s, pkt, &_size, 0, dst_addr, dst_addr_len);
2794 if (rtp->turn_rtp) {
2795 status = pj_turn_sock_sendto(rtp->turn_rtp, pkt, size, dst_addr, dst_addr_len);
2799 if (rtp->turn_rtcp) {
2800 status = pj_turn_sock_sendto(rtp->turn_rtcp, pkt, size, dst_addr, dst_addr_len);
2808static pj_ice_sess_cb ast_rtp_ice_sess_cb = {
2809#ifdef HAVE_PJPROJECT_ON_VALID_ICE_PAIR_CALLBACK
2810 .on_valid_pair = ast_rtp_on_valid_pair,
2812 .on_ice_complete = ast_rtp_on_ice_complete,
2813 .on_rx_data = ast_rtp_on_ice_rx_data,
2814 .on_tx_pkt = ast_rtp_on_ice_tx_pkt,
2818static int timer_worker_thread(
void *data)
2820 pj_ioqueue_t *ioqueue;
2822 if (pj_ioqueue_create(pool, 1, &ioqueue) != PJ_SUCCESS) {
2826 while (!timer_terminate) {
2827 const pj_time_val delay = {0, 10};
2829 pj_timer_heap_poll(timer_heap,
NULL);
2830 pj_ioqueue_poll(ioqueue, &delay);
2869#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
2889 struct dtls_details *dtls = !rtcp ? &rtp->dtls : &rtp->
rtcp->dtls;
2890 struct timeval dtls_timeout;
2893 res = DTLSv1_handle_timeout(dtls->ssl);
2894 ast_debug_dtls(3,
"(%p) DTLS srtp - handle timeout - rtcp=%d result: %d\n", instance, rtcp, res);
2897 res = DTLSv1_get_timeout(dtls->ssl, &dtls_timeout);
2900 dtls->timeout_timer = -1;
2903 ast_debug_dtls(3,
"(%p) DTLS srtp - handle timeout - rtcp=%d get timeout failure\n", instance, rtcp);
2906 *timeout = dtls_timeout.tv_sec * 1000 + dtls_timeout.tv_usec / 1000;
2907 if (*timeout == 0) {
2927 ast_debug_dtls(3,
"(%p) DTLS srtp - handle timeout - rtcp=%d timeout=%d\n", instance, rtcp, *timeout);
2933static int dtls_srtp_handle_rtp_timeout(
const void *data)
2940 res = dtls_srtp_handle_timeout(instance, &
timeout, 0);
2952static int dtls_srtp_handle_rtcp_timeout(
const void *
data)
2959 res = dtls_srtp_handle_timeout(instance, &
timeout, 1);
2972 struct dtls_details *dtls = !rtcp ? &rtp->dtls : &rtp->
rtcp->dtls;
2973 ast_sched_cb cb = !rtcp ? dtls_srtp_handle_rtp_timeout : dtls_srtp_handle_rtcp_timeout;
2974 struct timeval dtls_timeout;
2980 res = DTLSv1_get_timeout(dtls->ssl, &dtls_timeout);
2982 ast_debug_dtls(3,
"(%p) DTLS srtp - DTLSv1_get_timeout return an error or there was no timeout set for %s\n",
2983 instance, rtcp ?
"RTCP" :
"RTP");
2987 timeout = dtls_timeout.tv_sec * 1000 + dtls_timeout.tv_usec / 1000;
2996 ast_log(
LOG_WARNING,
"Scheduling '%s' DTLS retransmission for RTP instance [%p] failed.\n",
2997 !rtcp ?
"RTP" :
"RTCP", instance);
2999 ast_debug_dtls(3,
"(%p) DTLS srtp - scheduled timeout timer for '%d' %s\n",
3000 instance, timeout, rtcp ?
"RTCP" :
"RTP");
3007 struct dtls_details *dtls = !rtcp ? &rtp->dtls : &rtp->
rtcp->dtls;
3010 ast_debug_dtls(3,
"(%p) DTLS srtp - stopped timeout timer'\n", instance);
3014static int dtls_srtp_renegotiate(
const void *data)
3022 SSL_renegotiate(rtp->dtls.ssl);
3023 SSL_do_handshake(rtp->dtls.ssl);
3025 if (rtp->
rtcp && rtp->
rtcp->dtls.ssl && rtp->
rtcp->dtls.ssl != rtp->dtls.ssl) {
3026 SSL_renegotiate(rtp->
rtcp->dtls.ssl);
3027 SSL_do_handshake(rtp->
rtcp->dtls.ssl);
3041 unsigned char *local_key, *local_salt, *remote_key, *remote_salt;
3044 struct dtls_details *dtls = !rtcp ? &rtp->dtls : &rtp->
rtcp->dtls;
3046 ast_debug_dtls(3,
"(%p) DTLS srtp - add local ssrc - rtcp=%d, set_remote_policy=%d'\n",
3047 instance, rtcp, set_remote_policy);
3050 if (!SSL_export_keying_material(dtls->ssl, material,
SRTP_MASTER_LEN * 2,
"EXTRACTOR-dtls_srtp", 19,
NULL, 0, 0)) {
3051 ast_log(
LOG_WARNING,
"Unable to extract SRTP keying material from DTLS-SRTP negotiation on RTP instance '%p'\n",
3058 local_key = material;
3063 remote_key = material;
3074 ast_log(
LOG_WARNING,
"Could not set key/salt information on local policy of '%p' when setting up DTLS-SRTP\n", rtp);
3079 ast_log(
LOG_WARNING,
"Could not set suite to '%u' on local policy of '%p' when setting up DTLS-SRTP\n", rtp->suite, rtp);
3085 if (set_remote_policy) {
3091 ast_log(
LOG_WARNING,
"Could not set key/salt information on remote policy of '%p' when setting up DTLS-SRTP\n", rtp);
3096 ast_log(
LOG_WARNING,
"Could not set suite to '%u' on remote policy of '%p' when setting up DTLS-SRTP\n", rtp->suite, rtp);
3104 ast_log(
LOG_WARNING,
"Could not set policies when setting up DTLS-SRTP on '%p'\n", rtp);
3114 if (remote_policy) {
3123 struct dtls_details *dtls = !rtcp ? &rtp->dtls : &rtp->
rtcp->dtls;
3126 ast_debug_dtls(3,
"(%p) DTLS setup SRTP rtp=%p'\n", instance, rtp);
3132 if (!(certificate = SSL_get_peer_certificate(dtls->ssl))) {
3133 ast_log(
LOG_WARNING,
"No certificate was provided by the peer on RTP instance '%p'\n", instance);
3138 if (rtp->remote_fingerprint[0]) {
3140 unsigned char fingerprint[EVP_MAX_MD_SIZE];
3146 type = EVP_sha256();
3148 ast_log(
LOG_WARNING,
"Unsupported fingerprint hash type on RTP instance '%p'\n", instance);
3152 if (!X509_digest(certificate,
type, fingerprint, &size) ||
3154 memcmp(fingerprint, rtp->remote_fingerprint, size)) {
3155 X509_free(certificate);
3156 ast_log(
LOG_WARNING,
"Fingerprint provided by remote party does not match that of peer certificate on RTP instance '%p'\n",
3162 X509_free(certificate);
3193 return elem -
value;
3199 return elem ==
value;
3212 version = (packet[0] & 0XC0) >> 6;
3227 m = packet[1] & 0x80;
3228 pt = packet[1] & 0x7F;
3229 if (m && pt >= 64 && pt <= 95) {
3240#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
3243#ifdef HAVE_PJPROJECT
3244 struct ast_sockaddr *loop = rtcp ? &rtp->rtcp_loop : &rtp->rtp_loop;
3246#ifdef TEST_FRAMEWORK
3247 struct ast_rtp_engine_test *
test = ast_rtp_instance_get_test(instance);
3254#ifdef TEST_FRAMEWORK
3255 if (
test &&
test->packets_to_drop > 0) {
3256 test->packets_to_drop--;
3261#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
3264 if ((*
in >= 20) && (*
in <= 63)) {
3265 struct dtls_details *dtls = !rtcp ? &rtp->dtls : &rtp->
rtcp->dtls;
3270 ast_log(
LOG_ERROR,
"Received SSL traffic on RTP instance '%p' without an SSL session\n",
3275 ast_debug_dtls(3,
"(%p) DTLS - __rtp_recvfrom rtp=%p - Got SSL packet '%d'\n", instance, rtp, *
in);
3277#ifdef HAVE_PJPROJECT
3296#ifdef HAVE_PJPROJECT
3298 int pass_src_check = 0;
3312 if (!rtp->ice_media_started) {
3325 for (ix = 0; ix < rtp->ice->real_ice->rcand_cnt; ix++) {
3326 pj_ice_sess_cand *rcand = &rtp->ice->real_ice->rcand[ix];
3333 if (!pass_src_check) {
3334 ast_log(
LOG_WARNING,
"%s: DTLS packet from %s dropped. Source not in ICE active candidate list.\n",
3352 dtls_srtp_stop_timeout_timer(instance, rtp, rtcp);
3358 SSL_set_accept_state(dtls->ssl);
3361 BIO_write(dtls->read_bio,
buf,
len);
3365 if ((
len < 0) && (SSL_get_error(dtls->ssl,
len) == SSL_ERROR_SSL)) {
3366 unsigned long error = ERR_get_error();
3367 ast_log(
LOG_ERROR,
"DTLS failure occurred on RTP instance '%p' due to reason '%s', terminating\n",
3368 instance, ERR_reason_error_string(
error));
3372 if (SSL_is_init_finished(dtls->ssl)) {
3376 if ((res = dtls_srtp_setup(rtp, instance, rtcp))) {
3382 ast_debug_dtls(3,
"(%p) DTLS - __rtp_recvfrom rtp=%p - established'\n", instance, rtp);
3385 dtls_srtp_start_timeout_timer(instance, rtp, rtcp);
3392#ifdef HAVE_PJPROJECT
3402 }
else if (rtp->ice) {
3406 struct ice_wrap *ice;
3408 pj_thread_register_check();
3410 pj_sockaddr_parse(pj_AF_UNSPEC(), 0, &combined, &
address);
3416 status = pj_ice_sess_on_rx_pkt(ice->real_ice,
3419 pj_sockaddr_get_len(&
address));
3422 if (
status != PJ_SUCCESS) {
3425 pj_strerror(
status, err_buf,
sizeof(err_buf));
3430 if (!rtp->passthrough) {
3435 if (!rtp->ice_active_remote_candidates && !rtp->ice_proposed_remote_candidates) {
3444 rtp->passthrough = 0;
3473#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
3490#ifdef HAVE_PJPROJECT
3491 if (transport_rtp->ice) {
3494 struct ice_wrap *ice;
3497 if (rtcp && rtp->
rtcp->
s == rtp->
s) {
3501 pj_thread_register_check();
3504 ice = transport_rtp->ice;
3506 if (instance == transport) {
3509 status = pj_ice_sess_send_data(ice->real_ice, component, temp,
len);
3511 if (instance == transport) {
3514 if (
status == PJ_SUCCESS) {
3552 unsigned int interval;
3565 double last_sum_of_squares = (*std_dev) * (*std_dev) * (*count ?: 1);
3567 if (++(*count) == 0) {
3579 delta1 = new_sample - *mean;
3580 *mean += (delta1 / *count);
3581 delta2 = new_sample - *mean;
3584 *std_dev = sqrt((last_sum_of_squares + (delta1 * delta2)) / *count);
3602 setsockopt(sock, SOL_SOCKET, SO_NO_CHECK, &nochecksums,
sizeof(nochecksums));
3606#ifdef HAVE_SOCK_IPV6_V6ONLY
3609 if (setsockopt(sock, IPPROTO_IPV6, IPV6_V6ONLY, &(
int){0},
sizeof(int)) != 0) {
3628 info->max_seq =
seq;
3630 memset(&info->received, 0,
sizeof(info->received));
3645 if (
seq == (uint16_t) (info->max_seq + 1)) {
3656 switch (info->stream_type) {
3666 }
else if (!info->packets
3681 info->max_seq =
seq;
3683 return info->packets;
3700#ifdef HAVE_PJPROJECT
3746static int stun_address_is_blacklisted(
const struct ast_sockaddr *addr)
3761 unsigned int count = 0;
3762 struct ifaddrs *ifa, *ia;
3765 struct ast_ice_host_candidate *candidate;
3766 int af_inet_ok = 0, af_inet6_ok = 0;
3767 struct sockaddr_in stunaddr_copy;
3768 int stunaddr_ttl_copy = 0;
3769 char *stun_hostname_copy =
NULL;
3774 af_inet_ok = af_inet6_ok = 1;
3779 if (getifaddrs(&ifa) < 0) {
3781 ast_log(
LOG_ERROR,
"(%p) ICE Error obtaining list of local addresses: %s\n",
3782 instance, strerror(
errno));
3784 ast_debug_ice(2,
"(%p) ICE add system candidates\n", instance);
3788 for (ia = ifa; ia && count < PJ_ICE_MAX_CAND; ia = ia->ifa_next) {
3791 if (!ia->ifa_addr || (ia->ifa_flags & IFF_UP) == 0) {
3796 if (ia->ifa_addr->sa_family != AF_INET && ia->ifa_addr->sa_family != AF_INET6) {
3802 if (ia->ifa_addr->sa_family == AF_INET) {
3803 const struct sockaddr_in *sa_in = (
struct sockaddr_in*)ia->ifa_addr;
3811 if ((sa_in->sin_addr.s_addr & htonl(0xFF000000)) == htonl(0x7F000000)) {
3816 if ((sa_in->sin_addr.s_addr & htonl(0xFF000000)) == 0) {
3839 if (!rtp_address_is_ice_blacklisted(&candidate->advertised)) {
3841 pj_sockaddr_set_port(&pjtmp, port);
3842 ast_rtp_ice_add_cand(instance, rtp, component, transport,
3843 PJ_ICE_CAND_TYPE_HOST, 65535, &pjtmp, &pjtmp,
NULL,
3844 pj_sockaddr_get_len(&pjtmp));
3848 if (!candidate->include_local) {
3865 if (rtp_address_is_ice_blacklisted(&tmp)) {
3870 pj_sockaddr_set_port(&pjtmp, port);
3871 ast_rtp_ice_add_cand(instance, rtp, component, transport,
3872 PJ_ICE_CAND_TYPE_HOST, 65535, &pjtmp, &pjtmp,
NULL,
3873 pj_sockaddr_get_len(&pjtmp));
3884 memcpy(&stunaddr_copy, &stunaddr,
sizeof(stunaddr));
3885 stunaddr_ttl_copy = stunaddr_ttl;
3890 if ( (!
ast_strlen_zero(stun_hostname_copy) || stunaddr_copy.sin_addr.s_addr)
3891 && !stun_address_is_blacklisted(addr) &&
3893 count < PJ_ICE_MAX_CAND) {
3894 struct sockaddr_in
answer;
3898 "(%p) ICE request STUN %s %s candidate\n", instance,
3928 ast_debug_stun(2,
"Checking stunaddr_reresolve_ttl_0: %s TTL: %d Host: %s resolver: %p\n",
3929 AST_CLI_YESNO(stunaddr_reresolve_ttl_0), stunaddr_ttl_copy, stun_hostname_copy,
3932 if (stunaddr_reresolve_ttl_0 && stunaddr_ttl_copy == 0
3946 if (stunaddr_ttl == 0 && !
ast_strlen_zero(stun_hostname) && !stunaddr_resolver) {
3947 ast_debug_stun(2,
"Restarting recurring resolution for stun server '%s'\n",
3955 &stunaddr_resolve_callback,
NULL);
3956 if (!stunaddr_resolver) {
3957 ast_log(
LOG_ERROR,
"Failed to setup recurring DNS resolution of stunaddr '%s'",
3961 ast_debug_stun(2,
"stun TTL: %d H: %s. Re-resolution skipped because another thread took care of it.\n",
3962 stunaddr_ttl, stun_hostname);
3967 ast_debug_stun(2,
"stun TTL: %d H: %s. Re-resolution not needed or disabled.\n", stunaddr_ttl, stun_hostname);
3975 pj_sockaddr
ext, base;
3977 int srflx = 1, baseset = 0;
3980 pj_sockaddr_init(pj_AF_INET(), &
ext, &mapped, ntohs(
answer.sin_port));
3994 if (!pj_sockaddr_cmp(&candidate->
address, &
ext)) {
4002 if (srflx && baseset) {
4003 pj_sockaddr_set_port(&base, port);
4004 ast_rtp_ice_add_cand(instance, rtp, component, transport,
4005 PJ_ICE_CAND_TYPE_SRFLX, 65535, &
ext, &base, &base,
4006 pj_sockaddr_get_len(&
ext));
4012 if (pj_strlen(&turnaddr)) {
4013 ast_rtp_ice_turn_request(instance, component,
AST_TRANSPORT_TCP, pj_strbuf(&turnaddr), turnport,
4014 pj_strbuf(&turnusername), pj_strbuf(&turnpassword));
4045 return (
unsigned int) ms;
4048#ifdef HAVE_PJPROJECT
4066 pj_stun_config stun_config;
4067 pj_str_t ufrag, passwd;
4069 struct ice_wrap *ice_old;
4070 struct ice_wrap *ice;
4071 pj_ice_sess *real_ice =
NULL;
4075 rtp->ice_local_candidates =
NULL;
4081 ast_rtp_ice_stop(instance);
4085 pj_thread_register_check();
4087 pj_stun_config_init(&stun_config, &
cachingpool.factory, 0,
NULL, timer_heap);
4088 if (!stun_software_attribute) {
4089 stun_config.software_name = pj_str(
NULL);
4092 ufrag = pj_str(rtp->local_ufrag);
4093 passwd = pj_str(rtp->local_passwd);
4098 status = pj_ice_sess_create(&stun_config,
NULL, PJ_ICE_SESS_ROLE_UNKNOWN,
4099 rtp->ice_num_components, &ast_rtp_ice_sess_cb, &ufrag, &passwd,
NULL, &real_ice);
4101 if (
status == PJ_SUCCESS) {
4103 real_ice->user_data = instance;
4104 ice->real_ice = real_ice;
4120 if (
replace && rtp->
rtcp && rtp->ice_num_components > 1) {
4121 rtp_add_candidates_to_ice(instance, rtp, &rtp->
rtcp->
us,
4135 ast_rtp_ice_stop(instance);
4143 int x, startplace, i, maxloops;
4144 unsigned int port_start, port_end;
4151 if (port_start > 0 && port_end > 0 && port_end > port_start) {
4152 ast_debug_rtp(1,
"(%p) RTP using per-instance port range %d-%d\n",
4153 instance, port_start, port_end);
4161 ast_log(
LOG_WARNING,
"Failed to create a new socket for RTP instance '%p'\n", instance);
4166 x = (
ast_random() % (port_end - port_start)) + port_start;
4172 maxloops = port_end - port_start;
4173 for (i = 0; i <= maxloops; i++) {
4177 ast_debug_rtp(1,
"(%p) RTP allocated port %d\n", instance, x);
4185 x = (port_start + 1) & ~1;
4189 if (x == startplace || (
errno != EADDRINUSE &&
errno != EACCES)) {
4190 ast_log(
LOG_ERROR,
"Oh dear... we couldn't allocate a port for RTP instance '%p'\n", instance);
4197#ifdef HAVE_PJPROJECT
4206 rtp->ice_num_components = 2;
4207 ast_debug_ice(2,
"(%p) ICE creating session %s (%d)\n", instance,
4218#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
4220 rtp->dtls.timeout_timer = -1;
4228 int saved_rtp_s = rtp->
s;
4229#ifdef HAVE_PJPROJECT
4231 struct timespec ts = { .tv_sec = wait.tv_sec, .tv_nsec = wait.tv_usec * 1000, };
4234#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
4235 ast_rtp_dtls_stop(instance);
4246 if (saved_rtp_s != rtp->
rtcp->
s) {
4247 close(rtp->
rtcp->
s);
4252#ifdef HAVE_PJPROJECT
4253 pj_thread_register_check();
4260 if (rtp->turn_rtp) {
4261 rtp->turn_state = PJ_TURN_STATE_NULL;
4265 pj_turn_sock_destroy(rtp->turn_rtp);
4267 while (rtp->turn_state != PJ_TURN_STATE_DESTROYING) {
4270 rtp->turn_rtp =
NULL;
4274 if (rtp->turn_rtcp) {
4275 rtp->turn_state = PJ_TURN_STATE_NULL;
4279 pj_turn_sock_destroy(rtp->turn_rtcp);
4281 while (rtp->turn_state != PJ_TURN_STATE_DESTROYING) {
4284 rtp->turn_rtcp =
NULL;
4287 ast_debug_ice(2,
"(%p) ICE RTP transport deallocating\n", instance);
4289 ast_rtp_ice_stop(instance);
4292 if (rtp->ice_local_candidates) {
4293 ao2_ref(rtp->ice_local_candidates, -1);
4294 rtp->ice_local_candidates =
NULL;
4297 if (rtp->ice_active_remote_candidates) {
4298 ao2_ref(rtp->ice_active_remote_candidates, -1);
4299 rtp->ice_active_remote_candidates =
NULL;
4302 if (rtp->ice_proposed_remote_candidates) {
4303 ao2_ref(rtp->ice_proposed_remote_candidates, -1);
4304 rtp->ice_proposed_remote_candidates =
NULL;
4314 rtp_ioqueue_thread_remove(rtp->ioqueue);
4316 rtp->ioqueue =
NULL;
4332 rtp->
owner = instance;
4375#define SSRC_MAPPING_ELEM_CMP(elem, value) ((elem).instance == (value))
4469 int hdrlen = 12, res = 0, i = 0, payload = -1, sample_rate = -1;
4471 unsigned int *rtpheader = (
unsigned int*)data;
4484 }
else if (
digit ==
'*') {
4486 }
else if (
digit ==
'#') {
4488 }
else if ((
digit >=
'A') && (
digit <=
'D')) {
4490 }
else if ((
digit >=
'a') && (
digit <=
'd')) {
4504 if (payload_format) {
4512 if (sample_rate != -1) {
4516 if (payload == -1 ||
4527 if (payload == -1 || sample_rate == -1) {
4532 if (payload == -1) {
4537 ast_debug(1,
"Sending digit '%d' at rate %d with payload %d\n",
digit, sample_rate, payload);
4546 rtpheader[0] = htonl((2 << 30) | (1 << 23) | (payload << 16) | (rtp->
seqno));
4548 rtpheader[2] = htonl(rtp->
ssrc);
4551 for (i = 0; i < 2; i++) {
4555 res =
rtp_sendto(instance, (
void *) rtpheader, hdrlen + 4, 0, &remote_address, &ice);
4562 ast_verbose(
"Sent RTP DTMF packet to %s%s (type %-2.2d, seq %-6.6d, ts %-6.6u, len %-6.6d)\n",
4564 ice ?
" (via ICE)" :
"",
4569 rtpheader[0] = htonl((2 << 30) | (payload << 16) | (rtp->
seqno));
4585 int hdrlen = 12, res = 0;
4587 unsigned int *rtpheader = (
unsigned int*)data;
4600 rtpheader[2] = htonl(rtp->
ssrc);
4604 res =
rtp_sendto(instance, (
void *) rtpheader, hdrlen + 4, 0, &remote_address, &ice);
4612 ast_verbose(
"Sent RTP DTMF packet to %s%s (type %-2.2d, seq %-6.6d, ts %-6.6u, len %-6.6d)\n",
4614 ice ?
" (via ICE)" :
"",
4631 int hdrlen = 12, res = -1, i = 0;
4633 unsigned int *rtpheader = (
unsigned int*)data;
4634 unsigned int measured_samples;
4646 }
else if (
digit ==
'*') {
4648 }
else if (
digit ==
'#') {
4650 }
else if ((
digit >=
'A') && (
digit <=
'D')) {
4652 }
else if ((
digit >=
'a') && (
digit <=
'd')) {
4662 ast_debug_rtp(2,
"(%p) RTP adjusting final end duration from %d to %u\n",
4669 rtpheader[2] = htonl(rtp->
ssrc);
4671 rtpheader[3] |= htonl((1 << 23));
4674 for (i = 0; i < 3; i++) {
4679 res =
rtp_sendto(instance, (
void *) rtpheader, hdrlen + 4, 0, &remote_address, &ice);
4688 ast_verbose(
"Sent RTP DTMF packet to %s%s (type %-2.2d, seq %-6.6d, ts %-6.6u, len %-6.6d)\n",
4690 ice ?
" (via ICE)" :
"",
4729 ast_debug_rtp(3,
"(%p) RTP setting the marker bit due to a source update\n", instance);
4747 ast_debug_rtp(3,
"(%p) RTP changing ssrc from %u to %u due to a source change\n",
4748 instance,
rtp->ssrc, ssrc);
4751 ast_debug_rtp(3,
"(%p) RTP changing ssrc for SRTP from %u to %u\n",
4752 instance,
rtp->ssrc, ssrc);
4754 if (rtcp_srtp != srtp) {
4762 rtp->expectedrxseqno = -1;
4767static void timeval2ntp(
struct timeval tv,
unsigned int *msw,
unsigned int *lsw)
4769 unsigned int sec, usec, frac;
4770 sec = tv.tv_sec + 2208988800u;
4791 frac = ((((usec << 12) / 125) << 7) / 125) << 7;
4796static void ntp2timeval(
unsigned int msw,
unsigned int lsw,
struct timeval *tv)
4798 tv->tv_sec = msw - 2208988800u;
4800 tv->tv_usec = ((((lsw >> 7) * 125) >> 7) * 125) >> 12;
4804 unsigned int *lost_packets,
4807 unsigned int extended_seq_no;
4808 unsigned int expected_packets;
4809 unsigned int expected_interval;
4810 unsigned int received_interval;
4814 extended_seq_no =
rtp->cycles +
rtp->lastrxseqno;
4815 expected_packets = extended_seq_no -
rtp->seedrxseqno + 1;
4816 if (
rtp->rxcount > expected_packets) {
4817 expected_packets +=
rtp->rxcount - expected_packets;
4819 *lost_packets = expected_packets -
rtp->rxcount;
4820 expected_interval = expected_packets -
rtp->rtcp->expected_prior;
4821 received_interval =
rtp->rxcount -
rtp->rtcp->received_prior;
4822 if (received_interval > expected_interval) {
4828 expected_interval = received_interval;
4830 lost_interval = expected_interval - received_interval;
4831 if (expected_interval == 0 || lost_interval <= 0) {
4834 *fraction_lost = (lost_interval << 8) / expected_interval;
4838 rtp->rtcp->received_prior =
rtp->rxcount;
4839 rtp->rtcp->expected_prior = expected_packets;
4847 if (lost_interval <= 0) {
4848 rtp->rtcp->rxlost = 0;
4850 rtp->rtcp->rxlost = lost_interval;
4852 if (
rtp->rtcp->rxlost_count == 0) {
4853 rtp->rtcp->minrxlost =
rtp->rtcp->rxlost;
4855 if (lost_interval && lost_interval < rtp->rtcp->minrxlost) {
4856 rtp->rtcp->minrxlost =
rtp->rtcp->rxlost;
4858 if (lost_interval >
rtp->rtcp->maxrxlost) {
4859 rtp->rtcp->maxrxlost =
rtp->rtcp->rxlost;
4863 &
rtp->rtcp->stdev_rxlost, &
rtp->rtcp->rxlost_count);
4872 unsigned int now_lsw;
4873 unsigned int now_msw;
4874 unsigned int lost_packets;
4876 struct timeval dlsr = { 0, };
4879 if (!rtp || !rtp->
rtcp) {
4902 gettimeofday(&now,
NULL);
4914 report_block =
ast_calloc(1,
sizeof(*report_block));
4915 if (!report_block) {
4929 report_block->
dlsr = (((
dlsr.tv_sec * 1000) + (
dlsr.tv_usec / 1000)) * 65536) / 1000;
4966 if (!rtp || !rtp->
rtcp) {
4989 ast_verbose(
"* Sent RTCP %s to %s%s\n", sr ?
"SR" :
"RR",
5010 ast_verbose(
" DLSR: %4.4f (sec)\n\n", (
double)(report_block->
dlsr / 65536.0));
5020 rtcp_report, message_blob);
5030 uint16_t sdes_packet_len_bytes;
5031 uint16_t sdes_packet_len_rounded;
5033 if (!rtp || !rtp->
rtcp) {
5045 sdes_packet_len_bytes =
5054 sdes_packet_len_rounded = (sdes_packet_len_bytes + 3) & ~0x3;
5058 rtcpheader[8] = 0x01;
5073 len += (sdes_packet_len_rounded - sdes_packet_len_bytes);
5096 if (res == 0 || res == 1) {
5097 ast_debug_rtcp(1,
"(%p) RTCP failed to generate %s report!\n", instance, sr ?
"SR" :
"RR");
5105 if (res == 0 || res == 1) {
5106 ast_debug_rtcp(1,
"(%p) RTCP failed to generate SDES!\n", instance);
5110 return packet_len + res;
5119 unsigned int fci = 0;
5120 size_t remaining_missing_seqno;
5122 if (!rtp || !rtp->
rtcp) {
5135 if (!remaining_missing_seqno) {
5142 while (remaining_missing_seqno) {
5154 if (blp_index >= 17) {
5161 if (blp_index == 0) {
5162 fci |= (current_seqno << 16);
5164 fci |= (1 << (blp_index - 1));
5168 remaining_missing_seqno--;
5207 unsigned char *rtcpheader;
5221 if (res == 0 || res == 1) {
5233 res =
rtcp_sendto(instance, (
unsigned int *)rtcpheader, packet_len, 0, &remote_address, &ice);
5260 unsigned char *cp = p;
5264 datum = (time_msw << 18) & 0x00fc0000;
5265 datum |= (time_lsw >> 14) & 0x0003ffff;
5267 cp[0] = datum >> 16;
5281#ifdef TEST_FRAMEWORK
5282 struct ast_rtp_engine_test *
test = ast_rtp_instance_get_test(instance);
5293#ifdef TEST_FRAMEWORK
5295 test->send_report = 0;
5312 ast_debug_rtp(3,
"(%p) RTP audio difference is %d, ms is %u\n",
5313 instance,
abs((
int)rtp->
lastts - pred), ms);
5324 if (
abs((
int)rtp->
lastts - pred) < 7200) {
5328 ast_debug_rtp(3,
"(%p) RTP video difference is %d, ms is %u (%u), pred/ts/samples %u/%d/%d\n",
5339 if (
abs((
int)rtp->
lastts - pred) < 7200) {
5343 ast_debug_rtp(3,
"(%p) RTP other difference is %d, ms is %u, pred/ts/samples %u/%d/%d\n",
5375 if (
abs(difference) > 100) {
5380 seqno += difference;
5382 if (difference >= 0) {
5385 rtp->
seqno += difference;
5407 int abs_send_time_id;
5409 unsigned char *rtpheader;
5413 if (abs_send_time_id != -1) {
5419 packet_len = frame->
datalen + hdrlen;
5420 rtpheader = (
unsigned char *)(frame->
data.
ptr - hdrlen);
5429 if (abs_send_time_id != -1) {
5430 unsigned int now_msw;
5431 unsigned int now_lsw;
5437 rtpheader[16] = (abs_send_time_id << 4) | 2;
5447 payload =
ast_malloc(
sizeof(*payload) + packet_len);
5449 payload->
size = packet_len;
5450 memcpy(payload->
buf, rtpheader, packet_len);
5457 res =
rtp_sendto(instance, (
void *)rtpheader, packet_len, 0, &remote_address, &ice);
5460 ast_debug_rtp(1,
"(%p) RTP transmission error of packet %d to %s: %s\n",
5461 instance, rtp->
seqno,
5467 ast_debug(0,
"(%p) RTP NAT: Can't write RTP to private address %s, waiting for other end to send audio...\n",
5485 ast_verbose(
"Sent RTP packet to %s%s (type %-2.2d, seq %-6.6d, ts %-6.6u, len %-6.6d)\n",
5487 ice ?
" (via ICE)" :
"",
5496 if (seqno == rtp->
seqno) {
5511 for (i = 1; i < red->
num_gen+1; i++)
5518 for (i = 0; i < red->
num_gen; i++)
5519 red->
len[i] = red->
len[i+1];
5524 for (i = 0; i < red->
num_gen; i++) {
5545 unsigned char *rtcpheader;
5546 unsigned char bdata[1024];
5554 if (!rtp || !rtp->
rtcp) {
5582 if (res == 0 || res == 1) {
5594 res =
rtcp_sendto(instance, (
unsigned int *)rtcpheader, packet_len + fir_len, 0, rtp->
bundled ? remote_address : &rtp->
rtcp->
them, &ice);
5607 unsigned char *rtcpheader;
5608 unsigned char bdata[1024];
5617 ast_debug_rtcp(1,
"(%p) RTCP provided feedback frame of format %d to write, but only REMB is supported\n",
5618 instance, feedback->
fmt);
5622 if (!rtp || !rtp->
rtcp) {
5628 ast_debug_rtcp(1,
"(%p) RTCP provided feedback REMB report to write, but REMB support not enabled\n",
5646 if (res == 0 || res == 1) {
5656 put_unaligned_uint32(rtcpheader + packet_len + 12, htonl((
'R' << 24) | (
'E' << 16) | (
'M' << 8) | (
'B')));
5659 res =
rtcp_sendto(instance, (
unsigned int *)rtcpheader, packet_len + remb_len, 0, rtp->
bundled ? remote_address : &rtp->
rtcp->
them, &ice);
5681 ast_debug_rtp(1,
"(%p) RTP no remote address on instance, so dropping frame\n", instance);
5698 ast_debug_rtp(1,
"(%p) RTP received frame with no data for instance, so dropping frame\n", instance);
5730 ast_debug_rtp(3,
"(%s) RTP ooh, format changed from %s to %s\n",
5778 if (frame->
offset < hdrlen) {
5796 struct ast_rtp *rtp,
unsigned int rx_rtp_ts,
5801 double jitter = 0.0;
5802 double prev_jitter = 0.0;
5807 unsigned int arrival;
5811 gettimeofday(&now,
NULL);
5813 if (rtp->
rxcount == 1 || mark) {
5835 "Seed ts: %u current time: %f\n",
5877 "pkt: %5u Stable Seed ts: %u current time: %f\n",
5893 ast_debug_rtcp(3,
"%s: Current packet seq %d != last packet seq %d + 1. Ignoring\n",
5933 transit = arrival - rx_rtp_ts;
5941 jitter = (1.0/16.0) * (((
double)
d) - prev_jitter);
5950 "Arrival sec: %7.3f Arrival ts: %10u RX ts: %10u "
5951 "Transit samp: %6d Last transit samp: %6d d: %4d "
5952 "Curr jitter: %7.0f(%7.3f) Prev Jitter: %7.0f(%7.3f) New Jitter: %7.0f(%7.3f)\n",
5998 ast_debug_rtp(1,
"(%p) RTP ignore potential DTMF echo from '%s'\n",
6011 if (rtp->
resp ==
'X') {
6017 ast_debug_rtp(1,
"(%p) RTP creating %s DTMF Frame: %d (%c), at %s\n",
6037 unsigned int event, event_end, samples;
6044 event = ntohl(*((
unsigned int *)(
data)));
6046 event_end = ntohl(*((
unsigned int *)(
data)));
6053 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",
6065 }
else if (
event < 11) {
6067 }
else if (
event < 12) {
6069 }
else if (
event < 16) {
6070 resp =
'A' + (
event - 12);
6071 }
else if (
event < 17) {
6075 ast_debug_rtp(1,
"(%p) RTP ignoring RTP 2833 Event: %08x. Not a DTMF Digit.\n", instance,
event);
6096 unsigned int last_duration = new_duration & 0xFFFF;
6098 if (last_duration > 64000 &&
samples < last_duration) {
6099 new_duration += 0xFFFF + 1;
6101 new_duration = (new_duration & ~0xFFFF) |
samples;
6103 if (event_end & 0x80) {
6116 ast_debug_rtp(1,
"(%p) RTP dropping duplicate or out of order DTMF END frame (seqno: %u, ts %u, digit %c)\n",
6117 instance,
seqno, timestamp, resp);
6128 && timestamp <= rtp->last_end_timestamp.ts)) {
6134 ast_debug(0,
"Dropping out of order DTMF frame (seqno %u, ts %u, digit %c)\n",
6135 seqno, timestamp, resp);
6140 if (rtp->
resp && rtp->
resp != resp) {
6216 event =
data[3] & 0x1f;
6219 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);
6222 }
else if (
event < 11) {
6224 }
else if (
event < 12) {
6226 }
else if (
event < 16) {
6227 resp =
'A' + (
event - 12);
6228 }
else if (
event < 17) {
6231 if ((!rtp->
resp && power) || (rtp->
resp && (rtp->
resp != resp))) {
6238 }
else if ((rtp->
resp == resp) && !power) {
6242 }
else if (rtp->
resp == resp) {
6259 ast_debug(0,
"- RTP 3389 Comfort noise event: Format %s (len = %d)\n",
6268 ast_log(
LOG_NOTICE,
"Comfort noise support incomplete in Asterisk (RFC 3389). Please turn off on client if possible. Client address: %s\n",
6298 struct timeval rtt_tv;
6301 unsigned int rtt_msw;
6302 unsigned int rtt_lsw;
6306 gettimeofday(&now,
NULL);
6309 lsr_a = ((msw & 0x0000ffff) << 16) | ((lsw & 0xffff0000) >> 16);
6310 rtt = lsr_a - lsr - dlsr;
6311 rtt_msw = (rtt & 0xffff0000) >> 16;
6312 rtt_lsw = (rtt & 0x0000ffff);
6313 rtt_tv.tv_sec = rtt_msw;
6327 rtt_tv.tv_usec = (rtt_lsw * 15625) >> 10;
6328 rtp->
rtcp->
rtt = (double)rtt_tv.tv_sec + ((
double)rtt_tv.tv_usec / 1000000);
6329 if (lsr_a - dlsr < lsr) {
6378 double reported_lost;
6385 if (reported_lost < rtp->rtcp->reported_minlost) {
6396#define RESCALE(in, inmin, inmax, outmin, outmax) ((((in - inmin)/(inmax-inmin))*(outmax-outmin))+outmin)
6421 double normdevrtt,
double normdev_rxjitter,
double stdev_rxjitter,
6422 double normdev_rxlost)
6437 double effective_latency = (normdevrtt * 1000)
6438 + ((normdev_rxjitter * 2) * (stdev_rxjitter / 3))
6449 if (effective_latency < 160) {
6450 r_value = 93.2 - (effective_latency / 40);
6452 r_value = 93.2 - (effective_latency - 120) / 10;
6456 r_value = r_value - (normdev_rxlost * 2.0);
6464 }
else if (r_value > 100) {
6467 pseudo_mos = 1 + (0.035 * r_value) + (r_value * (r_value - 60) * (100 - r_value) * 0.000007);
6475 mes =
RESCALE(pseudo_mos, 0.0, 5.0, 0.0, 100.0);
6497 if (mes < rtp->rtcp->reported_minmes) {
6507 ast_debug_rtcp(2,
"%s: rtt: %.9f j: %.9f sjh: %.9f lost: %.9f mes: %4.1f\n",
6541 ast_debug_rtcp(2,
" %s: rtt: %.9f j: %.9f sjh: %.9f lost: %.9f mes: %4.1f\n",
6551 struct ast_rtp *rtp,
unsigned int ssrc,
int source)
6579 struct ast_rtp *rtp,
unsigned int ssrc)
6586 struct ast_rtp *rtp,
unsigned int ssrc)
6597 str =
"Sender Report";
6600 str =
"Receiver Report";
6611 str =
"Source Description";
6645 unsigned int length)
6653 unsigned int current_word;
6657 int abs_send_time_id;
6658 unsigned int now_msw = 0;
6659 unsigned int now_lsw = 0;
6660 unsigned int packets_not_found = 0;
6664 "but we don't have a RTP packet storage!\n", instance);
6669 if (abs_send_time_id != -1) {
6679 for (packet_index = 3; packet_index < length; packet_index++) {
6680 current_word = ntohl(nackdata[position + packet_index]);
6681 pid = current_word >> 16;
6685 if (abs_send_time_id != -1) {
6691 res +=
rtp_sendto(instance, payload->
buf, payload->
size, 0, &remote_address, &ice);
6693 ast_debug_rtcp(1,
"(%p) RTCP received NACK request for RTP packet with seqno %d, "
6694 "but we don't have it\n", instance, pid);
6695 packets_not_found++;
6703 blp = current_word & 0xffff;
6708 unsigned int seqno = (pid + blp_index) % 65536;
6711 if (abs_send_time_id != -1) {
6714 res +=
rtp_sendto(instance, payload->
buf, payload->
size, 0, &remote_address, &ice);
6716 ast_debug_rtcp(1,
"(%p) RTCP remote end also requested RTP packet with seqno %d, "
6717 "but we don't have it\n", instance, seqno);
6718 packets_not_found++;
6726 if (packets_not_found) {
6732 ast_debug_rtcp(2,
"(%p) RTCP send buffer on RTP instance is now at maximum of %zu\n",
6742#define RTCP_LENGTH_MASK 0xFFFF
6743#define RTCP_PAYLOAD_TYPE_MASK 0xFF
6744#define RTCP_REPORT_COUNT_MASK 0x1F
6745#define RTCP_PADDING_MASK 0x01
6746#define RTCP_VERSION_MASK 0x03
6751#define RTCP_LENGTH_SHIFT 0
6752#define RTCP_PAYLOAD_TYPE_SHIFT 16
6753#define RTCP_REPORT_COUNT_SHIFT 24
6754#define RTCP_PADDING_SHIFT 29
6755#define RTCP_VERSION_SHIFT 30
6757#define RTCP_VERSION 2U
6758#define RTCP_VERSION_SHIFTED (RTCP_VERSION << RTCP_VERSION_SHIFT)
6759#define RTCP_VERSION_MASK_SHIFTED (RTCP_VERSION_MASK << RTCP_VERSION_SHIFT)
6772#define RTCP_VALID_MASK (RTCP_VERSION_MASK_SHIFTED | (((RTCP_PAYLOAD_TYPE_MASK & ~0x1)) << RTCP_PAYLOAD_TYPE_SHIFT))
6773#define RTCP_VALID_VALUE (RTCP_VERSION_SHIFTED | (RTCP_PT_SR << RTCP_PAYLOAD_TYPE_SHIFT))
6775#define RTCP_SR_BLOCK_WORD_LENGTH 5
6776#define RTCP_RR_BLOCK_WORD_LENGTH 6
6777#define RTCP_HEADER_SSRC_LENGTH 2
6778#define RTCP_FB_REMB_BLOCK_WORD_LENGTH 4
6779#define RTCP_FB_NACK_BLOCK_WORD_LENGTH 2
6782 const unsigned char *rtcpdata,
size_t size,
struct ast_sockaddr *addr)
6787 unsigned int *rtcpheader = (
unsigned int *)(rtcpdata);
6788 unsigned int packetwords;
6789 unsigned int position;
6790 unsigned int first_word;
6792 unsigned int ssrc_seen;
6795#ifdef TEST_FRAMEWORK
6796 struct ast_rtp_engine_test *test_engine;
6805 packetwords =
len / 4;
6816 ast_debug_rtcp(2,
"(%s) RTCP %p -- from %s: Frame size (%u words) is too short\n",
6822 first_word = ntohl(rtcpheader[position]);
6824 ast_debug_rtcp(2,
"(%s) RTCP %p -- from %s: Failed first packet validity check\n",
6831 if (packetwords <= position) {
6834 first_word = ntohl(rtcpheader[position]);
6836 if (position != packetwords) {
6837 ast_debug_rtcp(2,
"(%s) RTCP %p -- from %s: Failed packet version or length check\n",
6862 while (position < packetwords) {
6868 unsigned int ssrc_valid;
6869 unsigned int length;
6870 unsigned int min_length;
6872 unsigned int use_packet_source = 1;
6881 first_word = ntohl(rtcpheader[i]);
6895 use_packet_source = 0;
6907 use_packet_source = 0;
6926 min_length = length;
6929 ast_debug_rtcp(1,
"(%p) RTCP %p -- from %s: %u(%s) skipping record\n",
6933 ast_verbose(
"RTCP from %s: %u(%s) skipping record\n",
6939 if (length < min_length) {
6940 ast_debug_rtcp(1,
"(%p) RTCP %p -- from %s: %u(%s) length field less than expected minimum. Min:%u Got:%u\n",
6942 min_length - 1, length - 1);
6955 rtcp_report->reception_report_count = rc;
6957 ssrc = ntohl(rtcpheader[i + 2]);
6958 rtcp_report->ssrc = ssrc;
6962 ssrc = ntohl(rtcpheader[i + 1]);
6965 ssrc = ntohl(rtcpheader[i + 2]);
6982 ast_verbose(
"Packet Subtype: %u (%s)\n", rc, subtype);
6995 if (use_packet_source) {
7000 if (child && child != transport) {
7012 rtp = transport_rtp;
7016 rtp = transport_rtp;
7029 if ((ssrc != rtp->
themssrc && use_packet_source && ssrc != 1)
7037 ast_debug_rtcp(1,
"(%p) RTCP %p -- from %s: Skipping record, received SSRC '%u' != expected '%u'\n",
7052 ast_debug(0,
"(%p) RTCP NAT: Got RTCP from other end. Now sending to address %s\n",
7062 rtp->
rtcp->
themrxlsr = ((ntohl(rtcpheader[i]) & 0x0000ffff) << 16) | ((ntohl(rtcpheader[i + 1]) & 0xffff0000) >> 16);
7063 rtp->
rtcp->
spc = ntohl(rtcpheader[i + 3]);
7064 rtp->
rtcp->
soc = ntohl(rtcpheader[i + 4]);
7067 rtcp_report->sender_information.packet_count = rtp->
rtcp->
spc;
7068 rtcp_report->sender_information.octet_count = rtp->
rtcp->
soc;
7070 (
unsigned int)ntohl(rtcpheader[i + 1]),
7071 &rtcp_report->sender_information.ntp_timestamp);
7072 rtcp_report->sender_information.rtp_timestamp = ntohl(rtcpheader[i + 2]);
7075 (
unsigned int)rtcp_report->sender_information.ntp_timestamp.tv_sec,
7076 (
unsigned int)rtcp_report->sender_information.ntp_timestamp.tv_usec);
7077 ast_verbose(
"RTP timestamp: %u\n", rtcp_report->sender_information.rtp_timestamp);
7079 rtcp_report->sender_information.packet_count,
7080 rtcp_report->sender_information.octet_count);
7091 report_block =
ast_calloc(1,
sizeof(*report_block));
7092 if (!report_block) {
7098 rtcp_report->report_block[0] = report_block;
7103 report_block->
ia_jitter = ntohl(rtcpheader[i + 3]);
7104 report_block->
lsr = ntohl(rtcpheader[i + 4]);
7105 report_block->
dlsr = ntohl(rtcpheader[i + 5]);
7106 if (report_block->
lsr) {
7110 unsigned int lsr_now, lsw, msw;
7111 gettimeofday(&now,
NULL);
7113 lsr_now = (((msw & 0xffff) << 16) | ((lsw & 0xffff0000) >> 16));
7114 ast_verbose(
"Internal RTCP NTP clock skew detected: "
7115 "lsr=%u, now=%u, dlsr=%u (%u:%03ums), "
7117 report_block->
lsr, lsr_now, report_block->
dlsr, report_block->
dlsr / 65536,
7118 (report_block->
dlsr % 65536) * 1000 / 65536,
7119 report_block->
dlsr - (lsr_now - report_block->
lsr));
7140 ast_verbose(
" Last SR(our NTP): %lu.%010lu\n",(
unsigned long)(report_block->
lsr) >> 16,((
unsigned long)(report_block->
lsr) << 16) * 4096);
7141 ast_verbose(
" DLSR: %4.4f (sec)\n",(
double)report_block->
dlsr / 65536.0);
7181 transport_rtp->
f.
src =
"RTP";
7183 f = &transport_rtp->
f;
7194 ast_verbose(
"Received generic RTCP NACK message\n");
7211 ast_verbose(
"Received an RTCP Fast Update Request\n");
7218 transport_rtp->
f.
src =
"RTP";
7219 f = &transport_rtp->
f;
7234 feedback = transport_rtp->
f.
data.
ptr;
7238 first_word = ntohl(rtcpheader[i + 2]);
7239 feedback->
remb.
br_exp = (first_word >> 18) & ((1 << 6) - 1);
7248 transport_rtp->
f.
src =
"RTP";
7249 f = &transport_rtp->
f;
7260#ifdef TEST_FRAMEWORK
7261 if ((test_engine = ast_rtp_instance_get_test(instance))) {
7262 test_engine->sdes_received = 1;
7298 if ((res =
rtcp_recvfrom(instance, read_area, read_area_size,
7307 if (
errno != EAGAIN) {
7321 struct sockaddr_in addr_tmp;
7331 ast_debug_stun(2,
"(%p) STUN cannot do for non IPv4 address %s\n",
7351 int res = 0, payload = 0, bridged_payload = 0, mark;
7356 unsigned int timestamp = ntohl(rtpheader[1]);
7364 if (!payload_type) {
7370 payload_type->asterisk_format, payload_type->format, payload_type->rtp_code, payload_type->sample_rate);
7373 if (bridged_payload < 0) {
7379 ast_debug_rtp(1,
"(%p, %p) RTP unsupported payload type received\n", instance, instance1);
7389 ast_debug_rtp(1,
"(%p, %p) RTP feeding packet with duplicate timestamp to core\n", instance, instance1);
7393 if (payload_type->asterisk_format) {
7421 ast_debug_rtp(1,
"(%p, %p) RTP Feeding packet to core until DTMF finishes\n", instance, instance1);
7427 if (payload_type->asterisk_format) {
7435 ast_debug_rtp(1,
"(%p, %p) RTP asymmetric RTP codecs detected (TX: %s, RX: %s) sending frame to core\n",
7449 ast_debug_rtp(5,
"(%p, %p) RTP remote address is null, most likely RTP has been stopped\n",
7450 instance, instance1);
7476 bridged->
ssrc = ntohl(rtpheader[2]);
7480 res =
rtp_sendto(instance1, (
void *)rtpheader,
len, 0, &remote_address, &ice);
7484 "RTP Transmission error of packet to %s: %s\n",
7490 "RTP NAT: Can't write RTP to private "
7491 "address %s, waiting for other end to "
7503 ast_verbose(
"Sent RTP P2P packet to %s%s (type %-2.2d, len %-6.6d)\n",
7505 ice ?
" (via ICE)" :
"",
7506 bridged_payload,
len - hdrlen);
7524 return a.seqno -
b.seqno;
7528 uint16_t *status_vector_chunk,
int status)
7531 *status_vector_chunk_bits -= 2;
7537 *status_vector_chunk |= (
status << (16 - 2 - (14 - *status_vector_chunk_bits)));
7540 if (*status_vector_chunk_bits) {
7546 *status_vector_chunk_bits = 14;
7552 *status_vector_chunk = (1 << 15) | (1 << 14);
7557 uint16_t *status_vector_chunk,
int *run_length_chunk_count,
int *run_length_chunk_status,
int status)
7559 if (*run_length_chunk_status !=
status) {
7560 while (*run_length_chunk_count > 0 && *run_length_chunk_count < 8) {
7568 status_vector_chunk, *run_length_chunk_status);
7569 *run_length_chunk_count -= 1;
7572 if (*run_length_chunk_count) {
7574 put_unaligned_uint16(rtcpheader + *packet_len, htons((0 << 15) | (*run_length_chunk_status << 13) | *run_length_chunk_count));
7579 *run_length_chunk_count = 0;
7580 *run_length_chunk_status = -1;
7582 if (*status_vector_chunk_bits == 14) {
7584 *run_length_chunk_status =
status;
7585 *run_length_chunk_count = 1;
7589 status_vector_chunk,
status);
7593 *run_length_chunk_count += 1;
7601 unsigned char *rtcpheader;
7606 int status_vector_chunk_bits = 14;
7607 uint16_t status_vector_chunk = (1 << 15) | (1 << 14);
7608 int run_length_chunk_count = 0;
7609 int run_length_chunk_status = -1;
7610 int packet_len = 20;
7612 int packet_count = 0;
7613 unsigned int received_msw;
7614 unsigned int received_lsw;
7618 unsigned int large_delta_count = 0;
7619 unsigned int small_delta_count = 0;
7620 unsigned int lost_count = 0;
7635 rtcpheader = (
unsigned char *)bdata;
7639 previous_packet = first_packet;
7666 &status_vector_chunk, &run_length_chunk_count, &run_length_chunk_status, 0);
7672 if (packet_len + delta_len + 20 >
sizeof(bdata)) {
7692 &status_vector_chunk, &run_length_chunk_count, &run_length_chunk_status, 2);
7694 large_delta_count++;
7698 &status_vector_chunk, &run_length_chunk_count, &run_length_chunk_status, 1);
7700 small_delta_count++;
7706 if (packet_len + delta_len + 20 >
sizeof(bdata)) {
7711 if (status_vector_chunk_bits != 14) {
7715 }
else if (run_length_chunk_count) {
7717 put_unaligned_uint16(rtcpheader + packet_len, htons((0 << 15) | (run_length_chunk_status << 13) | run_length_chunk_count));
7746 while (packet_len % 4) {
7747 rtcpheader[packet_len++] = 0;
7766 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",
7769 res =
rtcp_sendto(instance, (
unsigned int *)rtcpheader, packet_len, 0, &remote_address, &ice);
7785 unsigned char *data,
int len)
7787 uint16_t *
seqno = (uint16_t *)data;
7827 ast_debug_rtcp(1,
"(%p) RTCP starting transport-cc feedback transmission on RTP instance '%p'\n", instance, transport);
7833 ast_log(
LOG_WARNING,
"Scheduling RTCP transport-cc feedback transmission failed on RTP instance '%p'\n",
7846 if (transport_wide_cc_id == -1) {
7853 int extension_len = (
extension[pos] & 0xF) + 1;
7870 }
else if (
id == 15) {
7880 }
else if ((pos + extension_len) >
len) {
7888 if (
id == transport_wide_cc_id) {
7893 pos += extension_len;
7898 const struct ast_sockaddr *remote_address,
unsigned char *read_area,
int length,
int prev_seqno,
7899 unsigned int bundled)
7901 unsigned int *rtpheader = (
unsigned int*)(read_area);
7904 int res = length, hdrlen = 12, ssrc, seqno, payloadtype, padding, mark,
ext, cc;
7905 unsigned int timestamp;
7921 ssrc = ntohl(rtpheader[2]);
7922 seqno = ntohl(rtpheader[0]);
7923 payloadtype = (seqno & 0x7f0000) >> 16;
7924 padding = seqno & (1 << 29);
7925 mark = seqno & (1 << 23);
7926 ext = seqno & (1 << 28);
7927 cc = (seqno & 0xF000000) >> 24;
7929 timestamp = ntohl(rtpheader[1]);
7935 res -= read_area[res - 1];
7945 int extensions_size = (ntohl(rtpheader[hdrlen/4]) & 0xffff) << 2;
7946 unsigned int profile;
7947 profile = (ntohl(rtpheader[3]) & 0xffff0000) >> 16;
7949 if (profile == 0xbede) {
7953 if (profile == 0x505a) {
7954 ast_log(
LOG_DEBUG,
"Found Zfone extension in RTP stream - zrtp - not supported.\n");
7961 hdrlen += extensions_size;
7982 ast_debug(0,
"(%p) RTP forcing Marker bit, because SSRC has changed\n", instance);
8024 if ((
int)prev_seqno - (
int)
seqno > 100)
8034 struct timeval rxtime;
8056 if (!payload->asterisk_format) {
8066 }
else if (payload->rtp_code ==
AST_RTP_CN) {
8120 rtp->
f.
data.
ptr = read_area + hdrlen;
8127 && ((
int)
seqno - (prev_seqno + 1) > 0)
8128 && ((
int)
seqno - (prev_seqno + 1) < 10)) {
8140 unsigned char *header_end;
8141 int num_generations;
8144 int diff =(int)
seqno - (prev_seqno+1);
8149 if (header_end ==
NULL) {
8154 header_length = header_end -
data;
8155 num_generations = header_length / 4;
8156 len = header_length;
8159 for (x = 0; x < num_generations; x++)
8167 }
else if (diff > num_generations && diff < 10) {
8177 for ( x = 0; x < num_generations - diff; x++)
8228struct rtp_drop_packets_data {
8230 unsigned int use_random_num;
8232 unsigned int use_random_interval;
8235 unsigned int num_to_drop;
8237 unsigned int num_dropped;
8240 struct timeval interval;
8242 struct timeval next;
8249static struct rtp_drop_packets_data drop_packets_data;
8251static void drop_packets_data_update(
struct timeval tv)
8260 drop_packets_data.num_dropped = drop_packets_data.use_random_num ?
8261 ast_random() % drop_packets_data.num_to_drop : 0;
8269 if (drop_packets_data.use_random_interval) {
8272 &drop_packets_data.interval) * ((
double)(
ast_random() % 100 + 1) / 100),
8275 drop_packets_data.next =
ast_tvadd(tv, interval);
8277 drop_packets_data.next =
ast_tvadd(tv, drop_packets_data.interval);
8281static int should_drop_packets(
struct ast_sockaddr *addr)
8285 if (!drop_packets_data.num_to_drop) {
8294 (drop_packets_data.port ?
8302 if (drop_packets_data.num_dropped < drop_packets_data.num_to_drop) {
8303 ++drop_packets_data.num_dropped;
8312 if (
ast_tvzero(drop_packets_data.interval)) {
8314 drop_packets_data.num_to_drop = 0;
8319 if (
ast_tvcmp(tv, drop_packets_data.next) == -1) {
8329 drop_packets_data_update(tv);
8342 int res, hdrlen = 12,
version, payloadtype;
8345 unsigned int *rtpheader = (
unsigned int*)(read_area), seqno, ssrc, timestamp, prev_seqno;
8349 unsigned int bundled;
8360 if ((res =
rtp_recvfrom(instance, read_area, read_area_size, 0,
8369 if (
errno != EAGAIN) {
8391 for (i = 0; i < res; ++i) {
8392 if (read_area[i] !=
'\0') {
8401 seqno = ntohl(rtpheader[0]);
8406 struct sockaddr_in addr_tmp;
8415 ast_debug_stun(1,
"(%p) STUN cannot do for non IPv4 address %s\n",
8433 ssrc = ntohl(rtpheader[2]);
8444 if (child != instance) {
8502 ast_verb(4,
"%p -- Strict RTP learning complete - Locking on source address %s\n",
8531 ast_verb(4,
"%p -- Strict RTP switching to RTP target address %s as source\n",
8550 ast_verb(4,
"%p -- Strict RTP qualifying stream type: %s\n",
8555 ast_verb(4,
"%p -- Strict RTP switching source address to %s\n",
8562 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",
8571 ast_debug_rtp(1,
"(%p) RTP %p -- Received packet from %s, dropping due to strict RTP protection. Qualifying new stream.\n",
8590 ast_debug_rtp(1,
"(%p) RTP %p -- Received packet from %s, dropping due to strict RTP protection.\n",
8592#ifdef TEST_FRAMEWORK
8594 static int strict_rtp_test_event = 1;
8595 if (strict_rtp_test_event) {
8598 strict_rtp_test_event = 0;
8619 ast_debug(0,
"(%p) RTP NAT: Got audio from other end. Now sending to address %s\n",
8625 payloadtype = (seqno & 0x7f0000) >> 16;
8627 timestamp = ntohl(rtpheader[1]);
8630 if (should_drop_packets(&addr)) {
8631 ast_debug(0,
"(%p) RTP: drop received packet from %s (type %-2.2d, seq %-6.6u, ts %-6.6u, len %-6.6d)\n",
8638 ast_verbose(
"Got RTP packet from %s (type %-2.2d, seq %-6.6u, ts %-6.6u, len %-6.6d)\n",
8640 payloadtype, seqno, timestamp, res - hdrlen);
8654 frame =
ast_rtp_interpret(instance, srtp, &addr, read_area, res, prev_seqno, bundled);
8669 frame =
ast_rtp_interpret(instance, srtp, &addr, read_area, res, prev_seqno, bundled);
8676 ast_debug_rtp(2,
"(%p) RTP Packet with sequence number '%d' on instance is no longer missing\n",
8684 frame =
ast_rtp_interpret(instance, srtp, &addr, read_area, res, prev_seqno, bundled);
8719 ast_debug_rtp(2,
"(%p) RTP pulled buffered packet with sequence number '%d' to additionally return\n",
8720 instance, frame->
seqno);
8741 ast_debug_rtp(2,
"(%p) RTP source has wild gap or packet loss, sending FIR\n",
8759 ast_debug_rtp(2,
"(%p) RTP inserted just received packet with sequence number '%d' in correct order\n",
8784 ast_debug_rtp(2,
"(%p) RTP emptying queue and returning packet with sequence number '%d'\n",
8785 instance, frame->
seqno);
8802 frame =
ast_rtp_interpret(instance, srtp, &addr, read_area, res, prev_seqno, bundled);
8809 ast_debug_rtp(2,
"(%p) RTP adding just received packet with sequence number '%d' to end of dumped queue\n",
8844 ast_debug_rtp(2,
"(%p) RTP received an old packet with sequence number '%d', dropping it\n",
8849 ast_debug_rtp(2,
"(%p) RTP received a duplicate transmission of packet with sequence number '%d', dropping it\n",
8857 unsigned int missing_seqnos_added = 0;
8859 ast_debug_rtp(2,
"(%p) RTP received an out of order packet with sequence number '%d' while expecting '%d' from the future\n",
8862 payload =
ast_malloc(
sizeof(*payload) + res);
8873 payload->
size = res;
8874 memcpy(payload->
buf, rtpheader, res);
8886 if (!remove_failed) {
8887 ast_debug_rtp(2,
"(%p) RTP packet with sequence number '%d' is no longer missing\n",
8896 missing_seqno = seqno;
8897 while (remove_failed) {
8901 if (missing_seqno < 0) {
8902 missing_seqno = 65535;
8906 if (missing_seqno == prev_seqno) {
8934 ast_debug_rtp(2,
"(%p) RTP added missing sequence number '%d'\n",
8935 instance, missing_seqno);
8938 missing_seqnos_added++;
8963 rtcpheader =
ast_malloc(
sizeof(*rtcpheader) + data_size);
8965 ast_debug_rtcp(1,
"(%p) RTCP failed to allocate memory for NACK\n", instance);
8969 memset(rtcpheader, 0, data_size);
8973 if (res == 0 || res == 1) {
8982 ast_debug_rtcp(1,
"(%p) RTCP failed to construct NACK, stopping here\n", instance);
8988 res =
rtcp_sendto(instance, rtcpheader, packet_len, 0, &remote_address, &ice);
8990 ast_debug_rtcp(1,
"(%p) RTCP failed to send NACK request out\n", instance);
8992 ast_debug_rtcp(2,
"(%p) RTCP sending a NACK request to get missing packets\n", instance);
9012 ast_debug_rtcp(1,
"(%p) RTCP ignoring duplicate property\n", instance);
9022#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
9023 rtp->
rtcp->dtls.timeout_timer = -1;
9059 ast_debug_rtcp(1,
"(%p) RTCP failed to create a new socket\n", instance);
9068 ast_debug_rtcp(1,
"(%p) RTCP failed to setup RTP instance\n", instance);
9069 close(rtp->
rtcp->
s);
9075#ifdef HAVE_PJPROJECT
9080#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
9081 dtls_setup_rtcp(instance);
9094 if (rtp->
rtcp->
s > -1 && rtp->
rtcp->
s != rtp->
s) {
9095 close(rtp->
rtcp->
s);
9100#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
9101 if (rtp->
rtcp->dtls.ssl && rtp->
rtcp->dtls.ssl != rtp->dtls.ssl) {
9102 SSL_free(rtp->
rtcp->dtls.ssl);
9104 rtp->
rtcp->dtls.ssl = rtp->dtls.ssl;
9119 ast_debug_rtcp(1,
"(%p) RTCP failed to tear down RTCP\n", instance);
9131 ast_debug_rtcp(1,
"(%p) RTCP failed to tear down transport-cc feedback\n", instance);
9138 if (rtp->
rtcp->
s > -1 && rtp->
rtcp->
s != rtp->
s) {
9139 close(rtp->
rtcp->
s);
9141#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
9143 dtls_srtp_stop_timeout_timer(instance, rtp, 1);
9146 if (rtp->
rtcp->dtls.ssl && rtp->
rtcp->dtls.ssl != rtp->dtls.ssl) {
9147 SSL_free(rtp->
rtcp->dtls.ssl);
9213 ast_debug_rtcp(1,
"(%p) RTCP setting address on RTP instance\n", instance);
9245 ast_verb(4,
"%p -- Strict RTP learning after remote address set to: %s\n",
9293 for (x = 0; x < generations; x++) {
9294 rtp->
red->
pt[x] = payloads[x];
9295 rtp->
red->
pt[x] |= 1 << 7;
9316 const unsigned char *primary = red->
buf_data;
9319 if (primary[0] == 0x08 || primary[0] == 0x0a || primary[0] == 0x0d) {
9324 if (primary[0] == 0x08 || primary[0] == 0x0a || primary[0] == 0x0d) {
9453 struct sockaddr_in suggestion_tmp;
9470#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
9474 dtls_srtp_stop_timeout_timer(instance, rtp, 0);
9476 dtls_srtp_stop_timeout_timer(instance, rtp, 1);
9530 unsigned int *rtpheader;
9532 int res, payload = 0;
9546 level = 127 - (level & 0x7f);
9551 rtpheader = (
unsigned int *)data;
9552 rtpheader[0] = htonl((2 << 30) | (payload << 16) | (rtp->
seqno));
9553 rtpheader[1] = htonl(rtp->
lastts);
9554 rtpheader[2] = htonl(rtp->
ssrc);
9557 res =
rtp_sendto(instance, (
void *) rtpheader, hdrlen + 1, 0, &remote_address, &ice);
9565 ast_verbose(
"Sent Comfort Noise RTP packet to %s%s (type %-2.2d, seq %-6.6d, ts %-6.6u, len %-6.6d)\n",
9567 ice ?
" (via ICE)" :
"",
9657 if (child_rtp->
bundled == parent) {
9702#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
9707 dtls_srtp_add_local_ssrc(parent_rtp, parent, 0, child_rtp->
ssrc, 0);
9723#ifdef HAVE_PJPROJECT
9724static void stunaddr_resolve_callback(
const struct ast_dns_query *query)
9748 ast_debug_stun(2,
"Record rr_type '%u' ttl: %d data_size '%zu' from DNS query for stunaddr '%s'\n",
9751 if (
rr_type == ns_t_a && data_size == 4) {
9755 memcpy(&stunaddr.sin_addr, data, data_size);
9756 stunaddr.sin_family = AF_INET;
9760 if (stunaddr_ttl == 0) {
9761 ast_log(
LOG_WARNING,
"Resolution for stunaddr '%s' returned TTL = 0. Recurring resolution disabled.\n",
name);
9763 stunaddr_resolver =
NULL;
9771 ast_debug_stun(2,
"Unrecognized rr_type '%u' or data_size '%zu' from DNS query for stunaddr '%s'\n",
9778 stunaddr_resolver =
NULL;
9781 if (stunaddr.sin_addr.s_addr) {
9782 ast_log(
LOG_WARNING,
"Lookup of stunaddr '%s' failed.%s STUN continuing with server %s:%d\n",
9783 name, last_resolver ?
" Periodic resolution cancelled." :
"",
9784 ast_inet_ntoa(stunaddr.sin_addr), htons(stunaddr.sin_port));
9792static void clean_stunaddr(
void) {
9795 if (stunaddr_resolver) {
9796 ast_debug_stun(2,
"Cancelling recurring resolution for '%s'\n", stun_hostname);
9798 ast_log(
LOG_ERROR,
"Failed to cancel recurring DNS resolution of previous stunaddr.\n");
9800 ao2_ref(stunaddr_resolver, -1);
9801 stunaddr_resolver =
NULL;
9803 memset(&stunaddr, 0,
sizeof(stunaddr));
9806 stun_hostname =
NULL;
9811#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
9818#ifdef HAVE_PJPROJECT
9824 ast_debug_dtls(3,
"(%p) DTLS - ast_rtp_activate rtp=%p - setup and perform DTLS'\n", instance, rtp);
9826 dtls_perform_setup(&rtp->dtls);
9827 dtls_perform_handshake(instance, &rtp->dtls, 0);
9830 dtls_perform_setup(&rtp->
rtcp->dtls);
9831 dtls_perform_handshake(instance, &rtp->
rtcp->dtls, 1);
9841 char *debughost =
NULL;
9842 char *debugport =
NULL;
9845 ast_cli(
a->fd,
"Lookup failed for '%s'\n", arg);
9849 ast_cli(
a->fd,
"RTP Packet Debugging Enabled for address: %s\n",
9858 char *debughost =
NULL;
9859 char *debugport =
NULL;
9862 ast_cli(
a->fd,
"Lookup failed for '%s'\n", arg);
9866 ast_cli(
a->fd,
"RTCP Packet Debugging Enabled for address: %s\n",
9876 e->
command =
"rtp set debug {on|off|ip}";
9878 "Usage: rtp set debug {on|off|ip host[:port]}\n"
9879 " Enable/Disable dumping of all RTP packets. If 'ip' is\n"
9880 " specified, limit the dumped packets to those to and from\n"
9881 " the specified 'host' with optional port.\n";
9887 if (
a->argc == e->
args) {
9888 if (!strncasecmp(
a->argv[e->
args-1],
"on", 2)) {
9891 ast_cli(
a->fd,
"RTP Packet Debugging Enabled\n");
9893 }
else if (!strncasecmp(
a->argv[e->
args-1],
"off", 3)) {
9895 ast_cli(
a->fd,
"RTP Packet Debugging Disabled\n");
9898 }
else if (
a->argc == e->
args +1) {
9908#ifdef HAVE_PJPROJECT
9909 struct sockaddr_in stunaddr_copy;
9910 const char *stun_hostname_copy =
NULL;
9911 int stunaddr_ttl_copy = 0;
9915 e->
command =
"rtp show settings";
9917 "Usage: rtp show settings\n"
9918 " Display RTP configuration settings\n";
9928 ast_cli(
a->fd,
"\n\nGeneral Settings:\n");
9929 ast_cli(
a->fd,
"----------------\n");
9943#ifdef HAVE_PJPROJECT
9947 memcpy(&stunaddr_copy, &stunaddr,
sizeof(stunaddr));
9949 stunaddr_ttl_copy = stunaddr_ttl;
9952 ast_cli(
a->fd,
" STUN: %s\n", stunaddr_copy.sin_addr.s_addr ?
"enbabled" :
"disabled");
9955 htons(stunaddr_copy.sin_port));
9957 ast_cli(
a->fd,
" Hostname: %s:%d\n", stun_hostname_copy, htons(stunaddr_copy.sin_port));
9959 htons(stunaddr_copy.sin_port),
9960 stunaddr_copy.sin_addr.s_addr ? stunaddr_resolver ?
"" :
" (possibly stale)" :
" (lookup failed)");
9961 ast_cli(
a->fd,
" Last TTL: %d (periodic resolution %s)\n", stunaddr_ttl_copy,
9962 stunaddr_resolver ?
"enabled" :
"disabled");
9977 e->
command =
"rtcp set debug {on|off|ip}";
9979 "Usage: rtcp set debug {on|off|ip host[:port]}\n"
9980 " Enable/Disable dumping of all RTCP packets. If 'ip' is\n"
9981 " specified, limit the dumped packets to those to and from\n"
9982 " the specified 'host' with optional port.\n";
9988 if (
a->argc == e->
args) {
9989 if (!strncasecmp(
a->argv[e->
args-1],
"on", 2)) {
9992 ast_cli(
a->fd,
"RTCP Packet Debugging Enabled\n");
9994 }
else if (!strncasecmp(
a->argv[e->
args-1],
"off", 3)) {
9996 ast_cli(
a->fd,
"RTCP Packet Debugging Disabled\n");
9999 }
else if (
a->argc == e->
args +1) {
10010 e->
command =
"rtcp set stats {on|off}";
10012 "Usage: rtcp set stats {on|off}\n"
10013 " Enable/Disable dumping of RTCP stats.\n";
10019 if (
a->argc != e->
args)
10022 if (!strncasecmp(
a->argv[e->
args-1],
"on", 2))
10024 else if (!strncasecmp(
a->argv[e->
args-1],
"off", 3))
10035static unsigned int use_random(
struct ast_cli_args *
a,
int pos,
unsigned int index)
10038 !strcasecmp(
a->argv[index - 1],
"random");
10043 static const char *
const completions_2[] = {
"stop",
"<N>",
NULL };
10044 static const char *
const completions_3[] = {
"random",
"incoming packets",
NULL };
10045 static const char *
const completions_5[] = {
"on",
"every",
NULL };
10046 static const char *
const completions_units[] = {
"random",
"usec",
"msec",
"sec",
"min",
NULL };
10048 unsigned int use_random_num = 0;
10049 unsigned int use_random_interval = 0;
10050 unsigned int num_to_drop = 0;
10051 unsigned int interval = 0;
10052 const char *interval_s =
NULL;
10053 const char *unit_s =
NULL;
10055 const char *addr_s =
NULL;
10061 "Usage: rtp drop [stop|[<N> [random] incoming packets[ every <N> [random] {usec|msec|sec|min}][ on <ip[:port]>]]\n"
10062 " Drop RTP incoming packets.\n";
10065 use_random_num = use_random(
a,
a->pos, 4);
10066 use_random_interval = use_random(
a,
a->pos, 8 + use_random_num) ||
10067 use_random(
a,
a->pos, 10 + use_random_num);
10069 switch (
a->pos - use_random_num - use_random_interval) {
10077 if (!strcasecmp(
a->argv[
a->pos - 2],
"on")) {
10083 if (!strcasecmp(
a->argv[
a->pos - 2 - use_random_interval],
"every")) {
10088 if (!strcasecmp(
a->argv[
a->pos - 3 - use_random_interval],
"every")) {
10101 use_random_num = use_random(
a,
a->argc, 4);
10102 use_random_interval = use_random(
a,
a->argc, 8 + use_random_num) ||
10103 use_random(
a,
a->argc, 10 + use_random_num);
10105 if (!strcasecmp(
a->argv[2],
"stop")) {
10107 }
else if (
a->argc < 5) {
10110 ast_cli(
a->fd,
"%s is not a valid number of packets to drop\n",
a->argv[2]);
10112 }
else if (
a->argc - use_random_num == 5) {
10114 }
else if (
a->argc - use_random_num >= 7 && !strcasecmp(
a->argv[5 + use_random_num],
"on")) {
10116 addr_s =
a->argv[6 + use_random_num];
10117 if (
a->argc - use_random_num - use_random_interval == 10 &&
10118 !strcasecmp(
a->argv[7 + use_random_num],
"every")) {
10120 interval_s =
a->argv[8 + use_random_num];
10121 unit_s =
a->argv[9 + use_random_num + use_random_interval];
10123 }
else if (
a->argc - use_random_num >= 8 && !strcasecmp(
a->argv[5 + use_random_num],
"every")) {
10125 interval_s =
a->argv[6 + use_random_num];
10126 unit_s =
a->argv[7 + use_random_num + use_random_interval];
10127 if (
a->argc == 10 + use_random_num + use_random_interval &&
10128 !strcasecmp(
a->argv[8 + use_random_num + use_random_interval],
"on")) {
10130 addr_s =
a->argv[9 + use_random_num + use_random_interval];
10136 if (
a->argc - use_random_num >= 8 && !interval_s && !addr_s) {
10141 ast_cli(
a->fd,
"%s is not a valid interval number\n", interval_s);
10145 memset(&addr, 0,
sizeof(addr));
10147 ast_cli(
a->fd,
"%s is not a valid hostname[:port]\n", addr_s);
10151 drop_packets_data.use_random_num = use_random_num;
10152 drop_packets_data.use_random_interval = use_random_interval;
10153 drop_packets_data.num_to_drop = num_to_drop;
10164#ifdef HAVE_PJPROJECT
10169 e->
command =
"rtp resolve stun hostname";
10171 "Usage: rtp resolve stun hostname\n"
10172 " Force a resolution of the STUN hostname (if set).\n";
10178 if (
a->argc != e->
args) {
10184 if (stunaddr.sin_addr.s_addr) {
10185 ast_cli(
a->fd,
"RTP STUN server specified as IP address '%s'. Resolution not required./n",
10188 ast_cli(
a->fd,
"RTP STUN disabled./n");
10191 if (stunaddr_resolver) {
10192 ast_debug_stun(2,
"Cancelling recurring resolution for '%s'\n", stun_hostname);
10194 ast_log(
LOG_ERROR,
"Failed to cancel recurring DNS resolution of previous stunaddr.\n");
10196 ao2_ref(stunaddr_resolver, -1);
10197 stunaddr_resolver =
NULL;
10200 if (!stunaddr_resolver) {
10201 ast_cli(
a->fd,
"Failed to setup recurring DNS resolution of stunaddr '%s'",
10204 ast_cli(
a->fd,
"Triggered background stun hostname resolution for '%s'. Run 'rtp show settings' to check results.\n", stun_hostname);
10219 AST_CLI_DEFINE(handle_cli_rtp_drop_incoming_packets,
"Drop RTP incoming packets"),
10221#ifdef HAVE_PJPROJECT
10222 AST_CLI_DEFINE(handle_cli_rtp_refresh_stun,
"Force a resolution of the STUN hostname"),
10232#ifdef HAVE_PJPROJECT
10234 struct ast_ice_host_candidate *candidate;
10235 int acl_subscription_flag = 0;
10264#ifdef HAVE_PJPROJECT
10269 turnaddr = pj_str(
NULL);
10270 turnusername = pj_str(
NULL);
10271 turnpassword = pj_str(
NULL);
10272 host_candidate_overrides_clear();
10275#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
10307 ast_log(
LOG_WARNING,
"Disabling RTP checksums is not supported on this operating system!\n");
10313 ast_log(
LOG_WARNING,
"DTMF timeout of '%d' outside range, using default of '%d' instead\n",
10321 }
else if (!strcasecmp(s,
"seqno")) {
10329 ast_log(
LOG_WARNING,
"Value for 'probation' could not be read, using default of '%d' instead\n",
10338#ifdef HAVE_PJPROJECT
10343 stun_software_attribute =
ast_true(s);
10346 stunaddr_reresolve_ttl_0 =
ast_true(s);
10349 char *hostport, *host, *port;
10356 ast_debug_stun(3,
"stunaddr = '%s' does not need name resolution\n",
10373 stunaddr.sin_port = htons(port_parsed);
10376 if (!stun_hostname) {
10380 &stunaddr_resolve_callback,
NULL);
10381 if (!stunaddr_resolver) {
10382 ast_log(
LOG_ERROR,
"Failed to setup recurring DNS resolution of stunaddr '%s'",
10385 ast_debug_stun(2,
"Attemping to start recurring stun hostname resolution for '%s'\n", stun_hostname);
10403 struct sockaddr_in addr;
10408 pj_strdup2_with_null(pool, &turnaddr,
ast_inet_ntoa(addr.sin_addr));
10411 turnport = ntohs(addr.sin_port);
10415 pj_strdup2_with_null(pool, &turnusername, s);
10418 pj_strdup2_with_null(pool, &turnpassword, s);
10424 unsigned int include_local_address = 0;
10435 sep = strchr((
char *)
var->value,
',');
10440 include_local_address = strcmp(sep,
"include_local_address") == 0;
10448 if (!(candidate =
ast_calloc(1,
sizeof(*candidate)))) {
10453 candidate->include_local = include_local_address;
10469 const char* sense =
NULL;
10471 if (strncasecmp(
var->name,
"ice_", 4) == 0) {
10472 sense =
var->name + 4;
10474 }
else if (strncasecmp(
var->name,
"stun_", 5) == 0) {
10475 sense =
var->name + 5;
10481 if (strcasecmp(sense,
"blacklist") == 0) {
10485 if (strcasecmp(sense,
"acl") && strcasecmp(sense,
"permit") && strcasecmp(sense,
"deny")) {
10502#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP)
10504 if ((sscanf(s,
"%d", &dtls_mtu) != 1) || dtls_mtu < 256) {
10505 ast_log(
LOG_WARNING,
"Value for 'dtls_mtu' could not be read, using default of '%d' instead\n",
10536#ifdef HAVE_PJPROJECT
10537static void rtp_terminate_pjproject(
void)
10539 pj_thread_register_check();
10541 if (timer_thread) {
10542 timer_terminate = 1;
10543 pj_thread_join(timer_thread);
10544 pj_thread_destroy(timer_thread);
10564#ifdef HAVE_PJPROJECT
10570 if (pj_init() != PJ_SUCCESS) {
10574 if (pjlib_util_init() != PJ_SUCCESS) {
10575 rtp_terminate_pjproject();
10579 if (pjnath_init() != PJ_SUCCESS) {
10580 rtp_terminate_pjproject();
10586 pool = pj_pool_create(&
cachingpool.factory,
"timer", 512, 512,
NULL);
10588 if (pj_timer_heap_create(pool, 100, &timer_heap) != PJ_SUCCESS) {
10589 rtp_terminate_pjproject();
10593 if (pj_lock_create_recursive_mutex(pool,
"rtp%p", &
lock) != PJ_SUCCESS) {
10594 rtp_terminate_pjproject();
10598 pj_timer_heap_set_lock(timer_heap,
lock, PJ_TRUE);
10600 if (pj_thread_create(pool,
"timer", &timer_worker_thread,
NULL, 0, 0, &timer_thread) != PJ_SUCCESS) {
10601 rtp_terminate_pjproject();
10607#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP) && defined(HAVE_OPENSSL_BIO_METHOD)
10608 dtls_bio_methods = BIO_meth_new(BIO_TYPE_BIO,
"rtp write");
10609 if (!dtls_bio_methods) {
10610#ifdef HAVE_PJPROJECT
10611 rtp_terminate_pjproject();
10615 BIO_meth_set_write(dtls_bio_methods, dtls_bio_write);
10616 BIO_meth_set_ctrl(dtls_bio_methods, dtls_bio_ctrl);
10617 BIO_meth_set_create(dtls_bio_methods, dtls_bio_new);
10618 BIO_meth_set_destroy(dtls_bio_methods, dtls_bio_free);
10622#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP) && defined(HAVE_OPENSSL_BIO_METHOD)
10623 BIO_meth_free(dtls_bio_methods);
10625#ifdef HAVE_PJPROJECT
10626 rtp_terminate_pjproject();
10632#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP) && defined(HAVE_OPENSSL_BIO_METHOD)
10633 BIO_meth_free(dtls_bio_methods);
10635#ifdef HAVE_PJPROJECT
10637 rtp_terminate_pjproject();
10652#if defined(HAVE_OPENSSL) && (OPENSSL_VERSION_NUMBER >= 0x10001000L) && !defined(OPENSSL_NO_SRTP) && defined(HAVE_OPENSSL_BIO_METHOD)
10653 if (dtls_bio_methods) {
10654 BIO_meth_free(dtls_bio_methods);
10658#ifdef HAVE_PJPROJECT
10659 host_candidate_overrides_clear();
10660 pj_thread_register_check();
10661 rtp_terminate_pjproject();
10664 rtp_unload_acl(&ice_acl_lock, &ice_acl);
10665 rtp_unload_acl(&stun_acl_lock, &stun_acl);
10678#ifdef HAVE_PJPROJECT
10679 .
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
void ast_acl_output(int fd, struct ast_acl_list *acl, const char *prefix)
output an ACL to the provided fd
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.
unsigned int ast_rtp_instance_get_port_end(struct ast_rtp_instance *instance)
Get the per-instance RTP port range end.
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)
unsigned int ast_rtp_instance_get_port_start(struct ast_rtp_instance *instance)
Get the per-instance RTP port range start.
#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.
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.