Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
F
freeswitch
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
张华
freeswitch
Commits
7510bccd
提交
7510bccd
authored
1月 14, 2013
作者:
Anthony Minessale
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
MILESTONE: working inbound calls
上级
cb076e6b
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
240 行增加
和
180 行删除
+240
-180
switch_rtp.h
src/include/switch_rtp.h
+3
-2
switch_stun.h
src/include/switch_stun.h
+1
-0
mod_sofia.c
src/mod/endpoints/mod_sofia/mod_sofia.c
+2
-1
switch_core.c
src/switch_core.c
+1
-0
switch_core_media.c
src/switch_core_media.c
+149
-137
switch_rtp.c
src/switch_rtp.c
+62
-27
switch_stun.c
src/switch_stun.c
+22
-13
没有找到文件。
src/include/switch_rtp.h
浏览文件 @
7510bccd
...
@@ -220,9 +220,10 @@ SWITCH_DECLARE(void) switch_rtp_destroy(switch_rtp_t **rtp_session);
...
@@ -220,9 +220,10 @@ SWITCH_DECLARE(void) switch_rtp_destroy(switch_rtp_t **rtp_session);
\return SWITCH_STATUS_SUCCESS
\return SWITCH_STATUS_SUCCESS
*/
*/
SWITCH_DECLARE
(
switch_status_t
)
switch_rtp_activate_ice
(
switch_rtp_t
*
rtp_session
,
char
*
login
,
char
*
rlogin
,
SWITCH_DECLARE
(
switch_status_t
)
switch_rtp_activate_ice
(
switch_rtp_t
*
rtp_session
,
char
*
login
,
char
*
rlogin
,
const
char
*
password
,
switch_core_media_ice_type_t
type
,
uint32_t
priority
);
const
char
*
password
,
const
char
*
rpassword
,
switch_core_media_ice_type_t
type
,
uint32_t
priority
);
SWITCH_DECLARE
(
switch_status_t
)
switch_rtp_activate_rtcp_ice
(
switch_rtp_t
*
rtp_session
,
char
*
login
,
char
*
rlogin
,
SWITCH_DECLARE
(
switch_status_t
)
switch_rtp_activate_rtcp_ice
(
switch_rtp_t
*
rtp_session
,
char
*
login
,
char
*
rlogin
,
const
char
*
password
,
switch_core_media_ice_type_t
type
,
uint32_t
priority
);
const
char
*
password
,
const
char
*
rpassword
,
switch_core_media_ice_type_t
type
,
uint32_t
priority
);
/*!
/*!
\brief Activate sending RTCP Sender Reports (SR's)
\brief Activate sending RTCP Sender Reports (SR's)
...
...
src/include/switch_stun.h
浏览文件 @
7510bccd
...
@@ -262,6 +262,7 @@ SWITCH_DECLARE(switch_status_t) switch_stun_lookup(char **ip,
...
@@ -262,6 +262,7 @@ SWITCH_DECLARE(switch_status_t) switch_stun_lookup(char **ip,
\param end pointer to the end of the buffer
\param end pointer to the end of the buffer
\return true or false depending on if there are any more attributes
\return true or false depending on if there are any more attributes
*/
*/
#define switch_stun_packet_next_attribute(attribute, end) (attribute && (attribute = (switch_stun_packet_attribute_t *) (attribute->value + switch_stun_attribute_padded_length(attribute))) && ((void *)attribute < end) && attribute->type && ((void *)(attribute + switch_stun_attribute_padded_length(attribute)) < end))
#define switch_stun_packet_next_attribute(attribute, end) (attribute && (attribute = (switch_stun_packet_attribute_t *) (attribute->value + switch_stun_attribute_padded_length(attribute))) && ((void *)attribute < end) && attribute->type && ((void *)(attribute + switch_stun_attribute_padded_length(attribute)) < end))
#define switch_stun_packet_next_attribute_hbo(attribute, end) (attribute && (attribute = (switch_stun_packet_attribute_t *) (attribute->value + switch_stun_attribute_padded_length_hbo(attribute))) && ((void *)attribute < end) && attribute->type && ((void *)(attribute + switch_stun_attribute_padded_length_hbo(attribute)) < end))
#define switch_stun_packet_next_attribute_hbo(attribute, end) (attribute && (attribute = (switch_stun_packet_attribute_t *) (attribute->value + switch_stun_attribute_padded_length_hbo(attribute))) && ((void *)attribute < end) && attribute->type && ((void *)(attribute + switch_stun_attribute_padded_length_hbo(attribute)) < end))
...
...
src/mod/endpoints/mod_sofia/mod_sofia.c
浏览文件 @
7510bccd
...
@@ -817,13 +817,14 @@ static switch_status_t sofia_answer_channel(switch_core_session_t *session)
...
@@ -817,13 +817,14 @@ static switch_status_t sofia_answer_channel(switch_core_session_t *session)
if
(
sofia_media_activate_rtp
(
tech_pvt
)
!=
SWITCH_STATUS_SUCCESS
)
{
if
(
sofia_media_activate_rtp
(
tech_pvt
)
!=
SWITCH_STATUS_SUCCESS
)
{
switch_channel_hangup
(
channel
,
SWITCH_CAUSE_DESTINATION_OUT_OF_ORDER
);
switch_channel_hangup
(
channel
,
SWITCH_CAUSE_DESTINATION_OUT_OF_ORDER
);
}
}
if
(
tech_pvt
->
nh
)
{
if
(
tech_pvt
->
nh
)
{
if
(
tech_pvt
->
mparams
.
local_sdp_str
)
{
if
(
tech_pvt
->
mparams
.
local_sdp_str
)
{
switch_log_printf
(
SWITCH_CHANNEL_SESSION_LOG
(
session
),
SWITCH_LOG_DEBUG
,
"Local SDP %s:
\n
%s
\n
"
,
switch_channel_get_name
(
channel
),
switch_log_printf
(
SWITCH_CHANNEL_SESSION_LOG
(
session
),
SWITCH_LOG_DEBUG
,
"Local SDP %s:
\n
%s
\n
"
,
switch_channel_get_name
(
channel
),
tech_pvt
->
mparams
.
local_sdp_str
);
tech_pvt
->
mparams
.
local_sdp_str
);
}
}
}
}
}
}
if
(
sofia_test_flag
(
tech_pvt
,
TFLAG_NAT
)
||
if
(
sofia_test_flag
(
tech_pvt
,
TFLAG_NAT
)
||
...
...
src/switch_core.c
浏览文件 @
7510bccd
...
@@ -1228,6 +1228,7 @@ SWITCH_DECLARE(void) switch_load_network_lists(switch_bool_t reload)
...
@@ -1228,6 +1228,7 @@ SWITCH_DECLARE(void) switch_load_network_lists(switch_bool_t reload)
switch_network_list_add_cidr
(
rfc_list
,
"10.0.0.0/8"
,
SWITCH_FALSE
);
switch_network_list_add_cidr
(
rfc_list
,
"10.0.0.0/8"
,
SWITCH_FALSE
);
switch_network_list_add_cidr
(
rfc_list
,
"172.16.0.0/12"
,
SWITCH_FALSE
);
switch_network_list_add_cidr
(
rfc_list
,
"172.16.0.0/12"
,
SWITCH_FALSE
);
switch_network_list_add_cidr
(
rfc_list
,
"192.168.0.0/16"
,
SWITCH_FALSE
);
switch_network_list_add_cidr
(
rfc_list
,
"192.168.0.0/16"
,
SWITCH_FALSE
);
switch_network_list_add_cidr
(
rfc_list
,
"169.254.0.0/16"
,
SWITCH_FALSE
);
switch_core_hash_insert
(
IP_LIST
.
hash
,
tmp_name
,
rfc_list
);
switch_core_hash_insert
(
IP_LIST
.
hash
,
tmp_name
,
rfc_list
);
tmp_name
=
"nat.auto"
;
tmp_name
=
"nat.auto"
;
...
...
src/switch_core_media.c
浏览文件 @
7510bccd
差异被折叠。
点击展开。
src/switch_rtp.c
浏览文件 @
7510bccd
...
@@ -55,7 +55,7 @@
...
@@ -55,7 +55,7 @@
#define WRITE_DEC(rtp_session) switch_mutex_unlock(rtp_session->write_mutex); rtp_session->writing--
#define WRITE_DEC(rtp_session) switch_mutex_unlock(rtp_session->write_mutex); rtp_session->writing--
#define RTP_DEFAULT_STUNCOUNT 100;
#define rtp_header_len 12
#define rtp_header_len 12
#define RTP_START_PORT 16384
#define RTP_START_PORT 16384
#define RTP_END_PORT 32768
#define RTP_END_PORT 32768
...
@@ -164,6 +164,7 @@ typedef struct {
...
@@ -164,6 +164,7 @@ typedef struct {
char
*
ice_user
;
char
*
ice_user
;
char
*
user_ice
;
char
*
user_ice
;
char
*
pass
;
char
*
pass
;
char
*
rpass
;
uint32_t
stuncount
;
uint32_t
stuncount
;
uint32_t
funny_stun
;
uint32_t
funny_stun
;
uint32_t
default_stuncount
;
uint32_t
default_stuncount
;
...
@@ -677,7 +678,7 @@ static switch_status_t ice_out(switch_rtp_t *rtp_session, switch_rtp_ice_t *ice)
...
@@ -677,7 +678,7 @@ static switch_status_t ice_out(switch_rtp_t *rtp_session, switch_rtp_ice_t *ice)
switch_stun_packet_attribute_add_controlling
(
packet
);
switch_stun_packet_attribute_add_controlling
(
packet
);
}
}
switch_stun_packet_attribute_add_integrity
(
packet
,
ice
->
pass
);
switch_stun_packet_attribute_add_integrity
(
packet
,
ice
->
r
pass
);
switch_stun_packet_attribute_add_fingerprint
(
packet
);
switch_stun_packet_attribute_add_fingerprint
(
packet
);
...
@@ -715,6 +716,8 @@ static void handle_ice(switch_rtp_t *rtp_session, switch_rtp_ice_t *ice, void *d
...
@@ -715,6 +716,8 @@ static void handle_ice(switch_rtp_t *rtp_session, switch_rtp_ice_t *ice, void *d
char
username
[
33
]
=
{
0
};
char
username
[
33
]
=
{
0
};
unsigned
char
buf
[
512
]
=
{
0
};
unsigned
char
buf
[
512
]
=
{
0
};
switch_size_t
cpylen
=
len
;
switch_size_t
cpylen
=
len
;
int
xlen
=
0
;
int
ok
=
1
;
if
(
!
switch_rtp_ready
(
rtp_session
)
||
zstr
(
ice
->
user_ice
)
||
zstr
(
ice
->
ice_user
))
{
if
(
!
switch_rtp_ready
(
rtp_session
)
||
zstr
(
ice
->
user_ice
)
||
zstr
(
ice
->
ice_user
))
{
return
;
return
;
...
@@ -727,23 +730,19 @@ static void handle_ice(switch_rtp_t *rtp_session, switch_rtp_ice_t *ice, void *d
...
@@ -727,23 +730,19 @@ static void handle_ice(switch_rtp_t *rtp_session, switch_rtp_ice_t *ice, void *d
goto
end
;
goto
end
;
}
}
if
(
cpylen
>
sizeof
(
buf
))
{
if
(
cpylen
>
512
)
{
cpylen
=
sizeof
(
buf
);
cpylen
=
512
;
}
}
memcpy
(
buf
,
data
,
cpylen
);
memcpy
(
buf
,
data
,
cpylen
);
packet
=
switch_stun_packet_parse
(
buf
,
sizeof
(
buf
)
);
packet
=
switch_stun_packet_parse
(
buf
,
cpylen
);
if
(
!
packet
)
{
if
(
!
packet
)
{
switch_core_session_t
*
session
=
switch_core_memory_pool_get_data
(
rtp_session
->
pool
,
"__session"
);
switch_core_session_t
*
session
=
switch_core_memory_pool_get_data
(
rtp_session
->
pool
,
"__session"
);
//int sbytes = (int) cpylen;
//int stat;
//if ((stat = srtp_unprotect(rtp_session->recv_ctx, buf, &sbytes)) || !(packet = switch_stun_packet_parse(buf, sizeof(buf)))) {
switch_log_printf
(
SWITCH_CHANNEL_SESSION_LOG
(
session
),
SWITCH_LOG_ERROR
,
"Invalid STUN/ICE packet received
\n
"
);
switch_log_printf
(
SWITCH_CHANNEL_SESSION_LOG
(
session
),
SWITCH_LOG_ERROR
,
"Invalid STUN/ICE packet received
\n
"
);
goto
end
;
goto
end
;
//}
}
}
#if 0
#if 0
...
@@ -762,8 +761,6 @@ static void handle_ice(switch_rtp_t *rtp_session, switch_rtp_ice_t *ice, void *d
...
@@ -762,8 +761,6 @@ static void handle_ice(switch_rtp_t *rtp_session, switch_rtp_ice_t *ice, void *d
switch_stun_packet_first_attribute
(
packet
,
attr
);
switch_stun_packet_first_attribute
(
packet
,
attr
);
do
{
do
{
switch
(
attr
->
type
)
{
switch
(
attr
->
type
)
{
case
SWITCH_STUN_ATTR_MAPPED_ADDRESS
:
case
SWITCH_STUN_ATTR_MAPPED_ADDRESS
:
...
@@ -778,27 +775,41 @@ static void handle_ice(switch_rtp_t *rtp_session, switch_rtp_ice_t *ice, void *d
...
@@ -778,27 +775,41 @@ static void handle_ice(switch_rtp_t *rtp_session, switch_rtp_ice_t *ice, void *d
switch_stun_packet_attribute_get_username
(
attr
,
username
,
32
);
switch_stun_packet_attribute_get_username
(
attr
,
username
,
32
);
}
}
break
;
break
;
case
SWITCH_STUN_ATTR_PRIORITY
:
{
uint32_t
*
val
=
(
uint32_t
*
)
attr
->
value
;
ok
=
*
val
==
ice
->
priority
;
}
break
;
}
if
(
!
switch_stun_packet_next_attribute
(
attr
,
end_buf
))
{
break
;
}
}
}
while
(
switch_stun_packet_next_attribute
(
attr
,
end_buf
));
xlen
+=
4
+
switch_stun_attribute_padded_length
(
attr
);
}
while
(
xlen
<=
packet
->
header
.
length
);
if
(
ice
->
type
==
ICE_GOOGLE_JINGLE
&&
ok
)
{
ok
=
!
strcmp
(
ice
->
user_ice
,
username
);
}
if
((
packet
->
header
.
type
==
SWITCH_STUN_BINDING_REQUEST
))
{
if
((
packet
->
header
.
type
==
SWITCH_STUN_BINDING_REQUEST
)
&&
ok
)
{
//if ((packet->header.type == SWITCH_STUN_BINDING_REQUEST) && !strcmp(ice->user_ice, username)) {
uint8_t
stunbuf
[
512
];
uint8_t
stunbuf
[
512
];
switch_stun_packet_t
*
rpacket
;
switch_stun_packet_t
*
rpacket
;
const
char
*
remote_ip
;
const
char
*
remote_ip
;
switch_size_t
bytes
;
switch_size_t
bytes
;
char
ipbuf
[
25
];
char
ipbuf
[
25
];
//int rtcp = 0;
switch_sockaddr_t
*
from_addr
=
rtp_session
->
from_addr
;
switch_sockaddr_t
*
from_addr
=
rtp_session
->
from_addr
;
switch_socket_t
*
sock_output
=
rtp_session
->
sock_output
;
switch_socket_t
*
sock_output
=
rtp_session
->
sock_output
;
if
(
ice
==
&
rtp_session
->
rtcp_ice
)
{
if
(
ice
==
&
rtp_session
->
rtcp_ice
)
{
//rtcp = 1;
from_addr
=
rtp_session
->
rtcp_from_addr
;
from_addr
=
rtp_session
->
rtcp_from_addr
;
sock_output
=
rtp_session
->
rtcp_sock_output
;
sock_output
=
rtp_session
->
rtcp_sock_output
;
}
}
printf
(
"STUN REQ
\n
"
);
rtp_session
->
ice
.
ready
=
1
;
memset
(
stunbuf
,
0
,
sizeof
(
stunbuf
));
memset
(
stunbuf
,
0
,
sizeof
(
stunbuf
));
rpacket
=
switch_stun_packet_build_header
(
SWITCH_STUN_BINDING_RESPONSE
,
packet
->
header
.
id
,
stunbuf
);
rpacket
=
switch_stun_packet_build_header
(
SWITCH_STUN_BINDING_RESPONSE
,
packet
->
header
.
id
,
stunbuf
);
...
@@ -811,11 +822,18 @@ static void handle_ice(switch_rtp_t *rtp_session, switch_rtp_ice_t *ice, void *d
...
@@ -811,11 +822,18 @@ static void handle_ice(switch_rtp_t *rtp_session, switch_rtp_ice_t *ice, void *d
switch_stun_packet_attribute_add_binded_address
(
rpacket
,
(
char
*
)
remote_ip
,
switch_sockaddr_get_port
(
from_addr
));
switch_stun_packet_attribute_add_binded_address
(
rpacket
,
(
char
*
)
remote_ip
,
switch_sockaddr_get_port
(
from_addr
));
if
((
ice
->
type
&
ICE_VANILLA
))
{
if
((
ice
->
type
&
ICE_VANILLA
))
{
//if (!(ice->type && ICE_CONTROLLED)) {
// switch_stun_packet_attribute_add_use_candidate(rpacket);
// switch_stun_packet_attribute_add_priority(rpacket, ice->priority);
//}
switch_stun_packet_attribute_add_integrity
(
rpacket
,
ice
->
pass
);
switch_stun_packet_attribute_add_integrity
(
rpacket
,
ice
->
pass
);
switch_stun_packet_attribute_add_fingerprint
(
rpacket
);
switch_stun_packet_attribute_add_fingerprint
(
rpacket
);
}
}
rtp_session
->
ice
.
ready
=
1
;
bytes
=
switch_stun_packet_length
(
rpacket
);
bytes
=
switch_stun_packet_length
(
rpacket
);
switch_socket_sendto
(
sock_output
,
from_addr
,
0
,
(
void
*
)
rpacket
,
&
bytes
);
switch_socket_sendto
(
sock_output
,
from_addr
,
0
,
(
void
*
)
rpacket
,
&
bytes
);
...
@@ -1074,7 +1092,7 @@ static uint8_t get_next_write_ts(switch_rtp_t *rtp_session, uint32_t timestamp)
...
@@ -1074,7 +1092,7 @@ static uint8_t get_next_write_ts(switch_rtp_t *rtp_session, uint32_t timestamp)
static
int
check_srtp_and_ice
(
switch_rtp_t
*
rtp_session
)
static
int
check_srtp_and_ice
(
switch_rtp_t
*
rtp_session
)
{
{
int
ret
=
0
;
int
ret
=
0
;
int
rtcp_ok
=
1
;
if
(
rtp_session
->
flags
[
SWITCH_RTP_FLAG_AUTO_CNG
]
&&
rtp_session
->
send_msg
.
header
.
ts
&&
if
(
rtp_session
->
flags
[
SWITCH_RTP_FLAG_AUTO_CNG
]
&&
rtp_session
->
send_msg
.
header
.
ts
&&
...
@@ -1094,7 +1112,11 @@ static int check_srtp_and_ice(switch_rtp_t *rtp_session)
...
@@ -1094,7 +1112,11 @@ static int check_srtp_and_ice(switch_rtp_t *rtp_session)
}
}
}
}
if
(
rtp_session
->
rtcp_sock_output
&&
if
(
rtp_session
->
rtcp_ice
.
ice_user
&&
!
rtp_session
->
rtcp_ice
.
ready
)
{
rtcp_ok
=
0
;
}
if
(
rtp_session
->
rtcp_sock_output
&&
rtcp_ok
&&
rtp_session
->
flags
[
SWITCH_RTP_FLAG_ENABLE_RTCP
]
&&
!
rtp_session
->
flags
[
SWITCH_RTP_FLAG_RTCP_PASSTHRU
]
&&
rtp_session
->
flags
[
SWITCH_RTP_FLAG_ENABLE_RTCP
]
&&
!
rtp_session
->
flags
[
SWITCH_RTP_FLAG_RTCP_PASSTHRU
]
&&
rtp_session
->
rtcp_interval
&&
(
rtp_session
->
stats
.
read_count
%
rtp_session
->
rtcp_interval
)
==
0
)
{
rtp_session
->
rtcp_interval
&&
(
rtp_session
->
stats
.
read_count
%
rtp_session
->
rtcp_interval
)
==
0
)
{
struct
switch_rtcp_senderinfo
*
sr
=
(
struct
switch_rtcp_senderinfo
*
)
rtp_session
->
rtcp_send_msg
.
body
;
struct
switch_rtcp_senderinfo
*
sr
=
(
struct
switch_rtcp_senderinfo
*
)
rtp_session
->
rtcp_send_msg
.
body
;
...
@@ -2422,7 +2444,7 @@ SWITCH_DECLARE(switch_status_t) switch_rtp_activate_rtcp(switch_rtp_t *rtp_sessi
...
@@ -2422,7 +2444,7 @@ SWITCH_DECLARE(switch_status_t) switch_rtp_activate_rtcp(switch_rtp_t *rtp_sessi
}
}
SWITCH_DECLARE
(
switch_status_t
)
switch_rtp_activate_ice
(
switch_rtp_t
*
rtp_session
,
char
*
login
,
char
*
rlogin
,
SWITCH_DECLARE
(
switch_status_t
)
switch_rtp_activate_ice
(
switch_rtp_t
*
rtp_session
,
char
*
login
,
char
*
rlogin
,
const
char
*
password
,
switch_core_media_ice_type_t
type
,
uint32_t
priority
)
const
char
*
password
,
const
char
*
rpassword
,
switch_core_media_ice_type_t
type
,
uint32_t
priority
)
{
{
char
ice_user
[
80
];
char
ice_user
[
80
];
char
user_ice
[
80
];
char
user_ice
[
80
];
...
@@ -2439,12 +2461,18 @@ SWITCH_DECLARE(switch_status_t) switch_rtp_activate_ice(switch_rtp_t *rtp_sessio
...
@@ -2439,12 +2461,18 @@ SWITCH_DECLARE(switch_status_t) switch_rtp_activate_ice(switch_rtp_t *rtp_sessio
rtp_session
->
ice
.
user_ice
=
switch_core_strdup
(
rtp_session
->
pool
,
user_ice
);
rtp_session
->
ice
.
user_ice
=
switch_core_strdup
(
rtp_session
->
pool
,
user_ice
);
rtp_session
->
ice
.
type
=
type
;
rtp_session
->
ice
.
type
=
type
;
rtp_session
->
ice
.
priority
=
priority
;
rtp_session
->
ice
.
priority
=
priority
;
rtp_session
->
ice
.
pass
=
""
;
rtp_session
->
ice
.
rpass
=
""
;
if
(
password
)
{
if
(
password
)
{
rtp_session
->
ice
.
pass
=
switch_core_strdup
(
rtp_session
->
pool
,
password
);
rtp_session
->
ice
.
pass
=
switch_core_strdup
(
rtp_session
->
pool
,
password
);
}
}
if
(
rpassword
)
{
rtp_session
->
ice
.
rpass
=
switch_core_strdup
(
rtp_session
->
pool
,
rpassword
);
}
rtp_session
->
ice
.
default_stuncount
=
25
;
rtp_session
->
ice
.
default_stuncount
=
RTP_DEFAULT_STUNCOUNT
;
rtp_session
->
ice
.
stuncount
=
0
;
rtp_session
->
ice
.
stuncount
=
0
;
if
(
rtp_session
->
ice
.
ice_user
)
{
if
(
rtp_session
->
ice
.
ice_user
)
{
...
@@ -2458,7 +2486,7 @@ SWITCH_DECLARE(switch_status_t) switch_rtp_activate_ice(switch_rtp_t *rtp_sessio
...
@@ -2458,7 +2486,7 @@ SWITCH_DECLARE(switch_status_t) switch_rtp_activate_ice(switch_rtp_t *rtp_sessio
SWITCH_DECLARE
(
switch_status_t
)
switch_rtp_activate_rtcp_ice
(
switch_rtp_t
*
rtp_session
,
char
*
login
,
char
*
rlogin
,
SWITCH_DECLARE
(
switch_status_t
)
switch_rtp_activate_rtcp_ice
(
switch_rtp_t
*
rtp_session
,
char
*
login
,
char
*
rlogin
,
const
char
*
password
,
switch_core_media_ice_type_t
type
,
uint32_t
priority
)
const
char
*
password
,
const
char
*
rpassword
,
switch_core_media_ice_type_t
type
,
uint32_t
priority
)
{
{
char
ice_user
[
80
];
char
ice_user
[
80
];
char
user_ice
[
80
];
char
user_ice
[
80
];
...
@@ -2475,11 +2503,18 @@ SWITCH_DECLARE(switch_status_t) switch_rtp_activate_rtcp_ice(switch_rtp_t *rtp_s
...
@@ -2475,11 +2503,18 @@ SWITCH_DECLARE(switch_status_t) switch_rtp_activate_rtcp_ice(switch_rtp_t *rtp_s
rtp_session
->
rtcp_ice
.
user_ice
=
switch_core_strdup
(
rtp_session
->
pool
,
user_ice
);
rtp_session
->
rtcp_ice
.
user_ice
=
switch_core_strdup
(
rtp_session
->
pool
,
user_ice
);
rtp_session
->
rtcp_ice
.
type
=
type
;
rtp_session
->
rtcp_ice
.
type
=
type
;
rtp_session
->
rtcp_ice
.
priority
=
priority
;
rtp_session
->
rtcp_ice
.
priority
=
priority
;
rtp_session
->
rtcp_ice
.
pass
=
""
;
rtp_session
->
rtcp_ice
.
rpass
=
""
;
if
(
password
)
{
if
(
password
)
{
rtp_session
->
rtcp_ice
.
pass
=
switch_core_strdup
(
rtp_session
->
pool
,
password
);
rtp_session
->
rtcp_ice
.
pass
=
switch_core_strdup
(
rtp_session
->
pool
,
password
);
}
}
rtp_session
->
rtcp_ice
.
default_stuncount
=
25
;
if
(
rpassword
)
{
rtp_session
->
rtcp_ice
.
rpass
=
switch_core_strdup
(
rtp_session
->
pool
,
rpassword
);
}
rtp_session
->
rtcp_ice
.
default_stuncount
=
RTP_DEFAULT_STUNCOUNT
;
rtp_session
->
rtcp_ice
.
stuncount
=
0
;
rtp_session
->
rtcp_ice
.
stuncount
=
0
;
if
(
rtp_session
->
rtcp_ice
.
ice_user
)
{
if
(
rtp_session
->
rtcp_ice
.
ice_user
)
{
...
...
src/switch_stun.c
浏览文件 @
7510bccd
...
@@ -120,6 +120,7 @@ SWITCH_DECLARE(switch_stun_packet_t *) switch_stun_packet_parse(uint8_t *buf, ui
...
@@ -120,6 +120,7 @@ SWITCH_DECLARE(switch_stun_packet_t *) switch_stun_packet_parse(uint8_t *buf, ui
switch_stun_packet_attribute_t
*
attr
;
switch_stun_packet_attribute_t
*
attr
;
uint32_t
bytes_left
=
len
;
uint32_t
bytes_left
=
len
;
void
*
end_buf
=
buf
+
len
;
void
*
end_buf
=
buf
+
len
;
int
xlen
=
0
;
if
(
len
<
SWITCH_STUN_PACKET_MIN_LEN
)
{
if
(
len
<
SWITCH_STUN_PACKET_MIN_LEN
)
{
return
NULL
;
return
NULL
;
...
@@ -128,7 +129,8 @@ SWITCH_DECLARE(switch_stun_packet_t *) switch_stun_packet_parse(uint8_t *buf, ui
...
@@ -128,7 +129,8 @@ SWITCH_DECLARE(switch_stun_packet_t *) switch_stun_packet_parse(uint8_t *buf, ui
packet
=
(
switch_stun_packet_t
*
)
buf
;
packet
=
(
switch_stun_packet_t
*
)
buf
;
packet
->
header
.
type
=
ntohs
(
packet
->
header
.
type
);
packet
->
header
.
type
=
ntohs
(
packet
->
header
.
type
);
packet
->
header
.
length
=
ntohs
(
packet
->
header
.
length
);
packet
->
header
.
length
=
ntohs
(
packet
->
header
.
length
);
bytes_left
-=
packet
->
header
.
length
+
20
;
bytes_left
-=
20
;
/*
/*
* Check packet type (RFC3489(bis?) values)
* Check packet type (RFC3489(bis?) values)
...
@@ -182,12 +184,13 @@ SWITCH_DECLARE(switch_stun_packet_t *) switch_stun_packet_parse(uint8_t *buf, ui
...
@@ -182,12 +184,13 @@ SWITCH_DECLARE(switch_stun_packet_t *) switch_stun_packet_parse(uint8_t *buf, ui
attr
->
type
=
ntohs
(
attr
->
type
);
attr
->
type
=
ntohs
(
attr
->
type
);
bytes_left
-=
4
;
/* attribute header consumed */
bytes_left
-=
4
;
/* attribute header consumed */
if
(
!
attr
->
length
||
switch_stun_attribute_padded_length
(
attr
)
>
bytes_left
)
{
if
(
switch_stun_attribute_padded_length
(
attr
)
>
bytes_left
)
{
/*
/*
* Note we simply don't "break" here out of the loop anymore because
* Note we simply don't "break" here out of the loop anymore because
* we don't want the upper layers to have to deal with attributes without a value
* we don't want the upper layers to have to deal with attributes without a value
* (or worse: invalid length)
* (or worse: invalid length)
*/
*/
return
NULL
;
}
}
/*
/*
...
@@ -202,6 +205,12 @@ SWITCH_DECLARE(switch_stun_packet_t *) switch_stun_packet_parse(uint8_t *buf, ui
...
@@ -202,6 +205,12 @@ SWITCH_DECLARE(switch_stun_packet_t *) switch_stun_packet_parse(uint8_t *buf, ui
case
SWITCH_STUN_ATTR_REFLECTED_FROM
:
case
SWITCH_STUN_ATTR_REFLECTED_FROM
:
case
SWITCH_STUN_ATTR_ALTERNATE_SERVER
:
case
SWITCH_STUN_ATTR_ALTERNATE_SERVER
:
case
SWITCH_STUN_ATTR_DESTINATION_ADDRESS
:
case
SWITCH_STUN_ATTR_DESTINATION_ADDRESS
:
case
SWITCH_STUN_ATTR_PRIORITY
:
{
uint32_t
*
u
=
(
uint32_t
*
)
attr
->
value
;
*
u
=
ntohl
(
*
u
);
}
break
;
case
SWITCH_STUN_ATTR_SOURCE_ADDRESS2
:
case
SWITCH_STUN_ATTR_SOURCE_ADDRESS2
:
{
{
switch_stun_ip_t
*
ip
;
switch_stun_ip_t
*
ip
;
...
@@ -279,16 +288,18 @@ SWITCH_DECLARE(switch_stun_packet_t *) switch_stun_packet_parse(uint8_t *buf, ui
...
@@ -279,16 +288,18 @@ SWITCH_DECLARE(switch_stun_packet_t *) switch_stun_packet_parse(uint8_t *buf, ui
break
;
break
;
default
:
default
:
/* Mandatory attribute range? => invalid */
//if (attr->type <= 0x7FFF) {
// return NULL;
//}
break
;
break
;
}
}
bytes_left
-=
switch_stun_attribute_padded_length
(
attr
);
/* attribute value consumed, substract padded length */
}
while
(
bytes_left
>=
SWITCH_STUN_ATTRIBUTE_MIN_LEN
&&
switch_stun_packet_next_attribute
(
attr
,
end_buf
));
bytes_left
-=
switch_stun_attribute_padded_length
(
attr
);
/* attribute value consumed, substract padded length */
xlen
+=
4
+
switch_stun_attribute_padded_length
(
attr
);
attr
=
(
switch_stun_packet_attribute_t
*
)
(
attr
->
value
+
switch_stun_attribute_padded_length
(
attr
));
if
((
void
*
)
attr
>
end_buf
)
{
break
;
}
}
while
(
xlen
<
packet
->
header
.
length
);
if
((
uint32_t
)
(
packet
->
header
.
length
+
20
)
>
(
uint32_t
)
(
len
-
bytes_left
))
{
if
((
uint32_t
)
(
packet
->
header
.
length
+
20
)
>
(
uint32_t
)
(
len
-
bytes_left
))
{
/*
/*
* the packet length is longer than the length of all attributes?
* the packet length is longer than the length of all attributes?
...
@@ -296,10 +307,11 @@ SWITCH_DECLARE(switch_stun_packet_t *) switch_stun_packet_parse(uint8_t *buf, ui
...
@@ -296,10 +307,11 @@ SWITCH_DECLARE(switch_stun_packet_t *) switch_stun_packet_parse(uint8_t *buf, ui
*/
*/
packet
->
header
.
length
=
(
uint16_t
)
((
len
-
bytes_left
)
-
20
);
packet
->
header
.
length
=
(
uint16_t
)
((
len
-
bytes_left
)
-
20
);
}
}
return
packet
;
return
packet
;
}
}
SWITCH_DECLARE
(
const
char
*
)
switch_stun_value_to_name
(
int32_t
type
,
uint32_t
value
)
SWITCH_DECLARE
(
const
char
*
)
switch_stun_value_to_name
(
int32_t
type
,
uint32_t
value
)
{
{
uint32_t
x
=
0
;
uint32_t
x
=
0
;
...
@@ -460,16 +472,13 @@ SWITCH_DECLARE(uint8_t) switch_stun_packet_attribute_add_xor_binded_address(swit
...
@@ -460,16 +472,13 @@ SWITCH_DECLARE(uint8_t) switch_stun_packet_attribute_add_xor_binded_address(swit
SWITCH_DECLARE
(
uint8_t
)
switch_stun_packet_attribute_add_priority
(
switch_stun_packet_t
*
packet
,
uint32_t
priority
)
SWITCH_DECLARE
(
uint8_t
)
switch_stun_packet_attribute_add_priority
(
switch_stun_packet_t
*
packet
,
uint32_t
priority
)
{
{
switch_stun_packet_attribute_t
*
attribute
;
switch_stun_packet_attribute_t
*
attribute
;
uint32_t
*
lame
;
priority
=
htonl
(
priority
);
priority
=
htonl
(
priority
);
attribute
=
(
switch_stun_packet_attribute_t
*
)
((
uint8_t
*
)
&
packet
->
first_attribute
+
ntohs
(
packet
->
header
.
length
));
attribute
=
(
switch_stun_packet_attribute_t
*
)
((
uint8_t
*
)
&
packet
->
first_attribute
+
ntohs
(
packet
->
header
.
length
));
attribute
->
type
=
htons
(
SWITCH_STUN_ATTR_PRIORITY
);
attribute
->
type
=
htons
(
SWITCH_STUN_ATTR_PRIORITY
);
attribute
->
length
=
htons
(
4
);
attribute
->
length
=
htons
(
4
);
memcpy
(
attribute
->
value
,
&
priority
,
4
);
memcpy
(
attribute
->
value
,
&
priority
,
4
);
lame
=
(
uint32_t
*
)
attribute
->
value
;
printf
(
"FUCKER2 %u %u
\n
"
,
*
lame
,
priority
);
packet
->
header
.
length
+=
htons
(
sizeof
(
switch_stun_packet_attribute_t
))
+
attribute
->
length
;
packet
->
header
.
length
+=
htons
(
sizeof
(
switch_stun_packet_attribute_t
))
+
attribute
->
length
;
return
1
;
return
1
;
}
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论