Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
F
freeswitch
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
张华
freeswitch
Commits
636c1ecb
提交
636c1ecb
authored
1月 25, 2011
作者:
Daniel Swarbrick
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
wrap potentially non-threadsafe snmp operations in mutex; support snmpwalk in subagent
上级
02d1af64
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
79 行增加
和
96 行删除
+79
-96
mod_snmp.c
src/mod/event_handlers/mod_snmp/mod_snmp.c
+9
-18
subagent.c
src/mod/event_handlers/mod_snmp/subagent.c
+70
-78
没有找到文件。
src/mod/event_handlers/mod_snmp/mod_snmp.c
浏览文件 @
636c1ecb
...
...
@@ -38,6 +38,7 @@
static
struct
{
switch_memory_pool_t
*
pool
;
switch_mutex_t
*
mutex
;
int
shutdown
;
}
globals
;
...
...
@@ -55,27 +56,13 @@ static int snmp_callback_log(int major, int minor, void *serverarg, void *client
}
static
switch_state_handler_table_t
state_handlers
=
{
/*.on_init */
NULL
,
/*.on_routing */
NULL
,
/*.on_execute */
NULL
,
/*.on_hangup */
NULL
,
/*.on_exchange_media */
NULL
,
/*.on_soft_execute */
NULL
,
/*.on_consume_media */
NULL
,
/*.on_hibernate */
NULL
,
/*.on_reset */
NULL
,
/*.on_park */
NULL
,
/*.on_reporting */
NULL
};
static
switch_status_t
load_config
(
switch_memory_pool_t
*
pool
)
{
switch_status_t
status
=
SWITCH_STATUS_SUCCESS
;
memset
(
&
globals
,
0
,
sizeof
(
globals
));
globals
.
pool
=
pool
;
switch_mutex_init
(
&
globals
.
mutex
,
SWITCH_MUTEX_NESTED
,
globals
.
pool
);
return
status
;
}
...
...
@@ -87,7 +74,6 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_snmp_load)
load_config
(
pool
);
switch_core_add_state_handler
(
&
state_handlers
);
*
module_interface
=
switch_loadable_module_create_module_interface
(
pool
,
modname
);
/* Register callback function so we get Net-SNMP logging handled by FreeSWITCH */
...
...
@@ -114,9 +100,11 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_snmp_load)
SWITCH_MODULE_RUNTIME_FUNCTION
(
mod_snmp_runtime
)
{
while
(
!
globals
.
shutdown
)
{
if
(
!
globals
.
shutdown
)
{
/* Block on select() */
switch_mutex_lock
(
globals
.
mutex
);
agent_check_and_process
(
1
);
switch_mutex_unlock
(
globals
.
mutex
);
}
return
SWITCH_STATUS_SUCCESS
;
...
...
@@ -126,9 +114,12 @@ SWITCH_MODULE_RUNTIME_FUNCTION(mod_snmp_runtime)
SWITCH_MODULE_SHUTDOWN_FUNCTION
(
mod_snmp_shutdown
)
{
globals
.
shutdown
=
1
;
switch_core_remove_state_handler
(
&
state_handlers
);
switch_mutex_lock
(
globals
.
mutex
);
snmp_shutdown
(
"mod_snmp"
);
switch_mutex_unlock
(
globals
.
mutex
);
switch_mutex_destroy
(
globals
.
mutex
);
return
SWITCH_STATUS_SUCCESS
;
}
...
...
src/mod/event_handlers/mod_snmp/subagent.c
浏览文件 @
636c1ecb
...
...
@@ -63,8 +63,8 @@ void init_subagent(void)
{
DEBUGMSGTL
((
"init_nstAgentSubagentObject"
,
"Initializing
\n
"
));
netsnmp_register_
handler
(
netsnmp_create_handler_registration
(
"identity"
,
handle_identity
,
identity_oid
,
OID_LENGTH
(
identity_oid
),
HANDLER_CAN_RONLY
)
);
netsnmp_register_
handler
(
netsnmp_create_handler_registration
(
"systemStats"
,
handle_systemStats
,
systemStats_oid
,
OID_LENGTH
(
systemStats_oid
),
HANDLER_CAN_RONLY
)
);
netsnmp_register_
scalar_group
(
netsnmp_create_handler_registration
(
"identity"
,
handle_identity
,
identity_oid
,
OID_LENGTH
(
identity_oid
),
HANDLER_CAN_RONLY
),
1
,
2
);
netsnmp_register_
scalar_group
(
netsnmp_create_handler_registration
(
"systemStats"
,
handle_systemStats
,
systemStats_oid
,
OID_LENGTH
(
systemStats_oid
),
HANDLER_CAN_RONLY
),
1
,
7
);
}
...
...
@@ -78,7 +78,7 @@ int handle_identity(netsnmp_mib_handler *handler, netsnmp_handler_registration *
switch
(
reqinfo
->
mode
)
{
case
MODE_GET
:
for
(
request
=
requests
;
request
;
request
=
request
->
next
)
{
subid
=
request
->
requestvb
->
name
[
OID_LENGTH
(
systemStats_oid
)
];
subid
=
request
->
requestvb
->
name
[
reginfo
->
rootoid_len
-
2
];
switch
(
subid
)
{
case
versionString_oid
:
...
...
@@ -95,13 +95,9 @@ int handle_identity(netsnmp_mib_handler *handler, netsnmp_handler_registration *
}
break
;
case
MODE_GETNEXT
:
snmp_log
(
LOG_ERR
,
"MODE_GETNEXT not supported (yet)
\n
"
);
break
;
default:
/* we should never get here, so this is a really bad error */
snmp_log
(
LOG_ERR
,
"Unknown mode (%d) in handle_versionString
\n
"
,
reqinfo
->
mode
);
snmp_log
(
LOG_ERR
,
"Unknown mode (%d) in handle_identity
\n
"
,
reqinfo
->
mode
);
return
SNMP_ERR_GENERR
;
}
...
...
@@ -119,7 +115,7 @@ int handle_systemStats(netsnmp_mib_handler *handler, netsnmp_handler_registratio
switch
(
reqinfo
->
mode
)
{
case
MODE_GET
:
for
(
request
=
requests
;
request
;
request
=
request
->
next
)
{
subid
=
request
->
requestvb
->
name
[
OID_LENGTH
(
systemStats_oid
)
];
subid
=
request
->
requestvb
->
name
[
reginfo
->
rootoid_len
-
2
];
switch
(
subid
)
{
case
uptime_oid
:
...
...
@@ -162,10 +158,6 @@ int handle_systemStats(netsnmp_mib_handler *handler, netsnmp_handler_registratio
}
break
;
case
MODE_GETNEXT
:
snmp_log
(
LOG_ERR
,
"MODE_GETNEXT not supported (yet)
\n
"
);
break
;
default:
/* we should never get here, so this is a really bad error */
snmp_log
(
LOG_ERR
,
"Unknown mode (%d) in handle_systemStats
\n
"
,
reqinfo
->
mode
);
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论