[Asterisk-code-review] res ari: Add "module loaded" check to ari stubs (asterisk[13])

George Joseph asteriskteam at digium.com
Tue Jun 13 11:39:45 CDT 2017


George Joseph has uploaded this change for review. ( https://gerrit.asterisk.org/5809


Change subject: res_ari:  Add "module loaded" check to ari stubs
......................................................................

res_ari:  Add "module loaded" check to ari stubs

The recent change to make the use of LOAD_DECLINE more consistent
caused res_ari to unload itself before declining if the ari.conf
file wasn't found.  The ari stubs though still tried to use the
configuration resulting in segfaults.

This patch creates a new CHECK_ARI_MODULE_LOADED macro which tests
to see if res_ari is actually loaded and causes the stubs to also
decline if it isn't.  The macro was then added to the mustache
template's "load_module" function.

ASTERISK-27026 #close
Reported-by: Ronald Raikes

Change-Id: I263d56efa628ee3c411bdcd16d49af6260c6c91d
---
M include/asterisk/ari.h
M res/res_ari_applications.c
M res/res_ari_asterisk.c
M res/res_ari_bridges.c
M res/res_ari_channels.c
M res/res_ari_device_states.c
M res/res_ari_endpoints.c
M res/res_ari_events.c
M res/res_ari_mailboxes.c
M res/res_ari_playbacks.c
M res/res_ari_recordings.c
M res/res_ari_sounds.c
M rest-api-templates/res_ari_resource.c.mustache
13 files changed, 46 insertions(+), 0 deletions(-)



  git pull ssh://gerrit.asterisk.org:29418/asterisk refs/changes/09/5809/1

diff --git a/include/asterisk/ari.h b/include/asterisk/ari.h
index cad9b32..f83df04 100644
--- a/include/asterisk/ari.h
+++ b/include/asterisk/ari.h
@@ -266,4 +266,14 @@
  */
 void ast_ari_response_alloc_failed(struct ast_ari_response *response);
 
+/*! \brief Determines whether the res_ari module is loaded */
+#define CHECK_ARI_MODULE_LOADED()				\
+	do {							\
+		if (!ast_module_check("res_ari.so")		\
+			|| !ast_ari_oom_json()) {	\
+			return AST_MODULE_LOAD_DECLINE;		\
+		}						\
+	} while(0)
+
+
 #endif /* _ASTERISK_ARI_H */
diff --git a/res/res_ari_applications.c b/res/res_ari_applications.c
index cb12e84..72f7eba 100644
--- a/res/res_ari_applications.c
+++ b/res/res_ari_applications.c
@@ -502,6 +502,9 @@
 static int load_module(void)
 {
 	int res = 0;
+
+    CHECK_ARI_MODULE_LOADED();
+
 	stasis_app_ref();
 	res |= ast_ari_add_handler(&applications);
 	if (res) {
diff --git a/res/res_ari_asterisk.c b/res/res_ari_asterisk.c
index 1a574aa..218ea67 100644
--- a/res/res_ari_asterisk.c
+++ b/res/res_ari_asterisk.c
@@ -1223,6 +1223,9 @@
 static int load_module(void)
 {
 	int res = 0;
+
+    CHECK_ARI_MODULE_LOADED();
+
 	stasis_app_ref();
 	res |= ast_ari_add_handler(&asterisk);
 	if (res) {
diff --git a/res/res_ari_bridges.c b/res/res_ari_bridges.c
index 69d4d6e..3f716ed 100644
--- a/res/res_ari_bridges.c
+++ b/res/res_ari_bridges.c
@@ -1415,6 +1415,9 @@
 static int load_module(void)
 {
 	int res = 0;
+
+    CHECK_ARI_MODULE_LOADED();
+
 	stasis_app_ref();
 	res |= ast_ari_add_handler(&bridges);
 	if (res) {
diff --git a/res/res_ari_channels.c b/res/res_ari_channels.c
index f59f206..6620a34 100644
--- a/res/res_ari_channels.c
+++ b/res/res_ari_channels.c
@@ -2479,6 +2479,9 @@
 static int load_module(void)
 {
 	int res = 0;
+
+    CHECK_ARI_MODULE_LOADED();
+
 	stasis_app_ref();
 	res |= ast_ari_add_handler(&channels);
 	if (res) {
diff --git a/res/res_ari_device_states.c b/res/res_ari_device_states.c
index a3711e6..4c9be1f 100644
--- a/res/res_ari_device_states.c
+++ b/res/res_ari_device_states.c
@@ -333,6 +333,9 @@
 static int load_module(void)
 {
 	int res = 0;
+
+    CHECK_ARI_MODULE_LOADED();
+
 	stasis_app_ref();
 	res |= ast_ari_add_handler(&deviceStates);
 	if (res) {
diff --git a/res/res_ari_endpoints.c b/res/res_ari_endpoints.c
index 43d2558..a445808 100644
--- a/res/res_ari_endpoints.c
+++ b/res/res_ari_endpoints.c
@@ -457,6 +457,9 @@
 static int load_module(void)
 {
 	int res = 0;
+
+    CHECK_ARI_MODULE_LOADED();
+
 	stasis_app_ref();
 	res |= ast_ari_add_handler(&endpoints);
 	if (res) {
diff --git a/res/res_ari_events.c b/res/res_ari_events.c
index fd208c5..6f100d7 100644
--- a/res/res_ari_events.c
+++ b/res/res_ari_events.c
@@ -446,6 +446,9 @@
 	protocol->session_attempted = ast_ari_events_event_websocket_ws_attempted_cb;
 	protocol->session_established = ast_ari_events_event_websocket_ws_established_cb;
 	res |= ast_websocket_server_add_protocol2(events.ws_server, protocol);
+
+    CHECK_ARI_MODULE_LOADED();
+
 	stasis_app_ref();
 	res |= ast_ari_add_handler(&events);
 	if (res) {
diff --git a/res/res_ari_mailboxes.c b/res/res_ari_mailboxes.c
index f85541c..d25b253 100644
--- a/res/res_ari_mailboxes.c
+++ b/res/res_ari_mailboxes.c
@@ -339,6 +339,9 @@
 static int load_module(void)
 {
 	int res = 0;
+
+    CHECK_ARI_MODULE_LOADED();
+
 	stasis_app_ref();
 	res |= ast_ari_add_handler(&mailboxes);
 	if (res) {
diff --git a/res/res_ari_playbacks.c b/res/res_ari_playbacks.c
index 25e211c..402c769 100644
--- a/res/res_ari_playbacks.c
+++ b/res/res_ari_playbacks.c
@@ -291,6 +291,9 @@
 static int load_module(void)
 {
 	int res = 0;
+
+    CHECK_ARI_MODULE_LOADED();
+
 	stasis_app_ref();
 	res |= ast_ari_add_handler(&playbacks);
 	if (res) {
diff --git a/res/res_ari_recordings.c b/res/res_ari_recordings.c
index 29720a8..54492ea 100644
--- a/res/res_ari_recordings.c
+++ b/res/res_ari_recordings.c
@@ -807,6 +807,9 @@
 static int load_module(void)
 {
 	int res = 0;
+
+    CHECK_ARI_MODULE_LOADED();
+
 	stasis_app_ref();
 	res |= ast_ari_add_handler(&recordings);
 	if (res) {
diff --git a/res/res_ari_sounds.c b/res/res_ari_sounds.c
index 6d09d2c..d5e37e3 100644
--- a/res/res_ari_sounds.c
+++ b/res/res_ari_sounds.c
@@ -221,6 +221,9 @@
 static int load_module(void)
 {
 	int res = 0;
+
+    CHECK_ARI_MODULE_LOADED();
+
 	stasis_app_ref();
 	res |= ast_ari_add_handler(&sounds);
 	if (res) {
diff --git a/rest-api-templates/res_ari_resource.c.mustache b/rest-api-templates/res_ari_resource.c.mustache
index 921b007..92fd6c5 100644
--- a/rest-api-templates/res_ari_resource.c.mustache
+++ b/rest-api-templates/res_ari_resource.c.mustache
@@ -286,6 +286,9 @@
 {{/is_websocket}}
 {{/operations}}
 {{/apis}}
+
+    CHECK_ARI_MODULE_LOADED();
+
 	stasis_app_ref();
 	res |= ast_ari_add_handler(&{{root_full_name}});
 	if (res) {

-- 
To view, visit https://gerrit.asterisk.org/5809
To unsubscribe, visit https://gerrit.asterisk.org/settings

Gerrit-Project: asterisk
Gerrit-Branch: 13
Gerrit-MessageType: newchange
Gerrit-Change-Id: I263d56efa628ee3c411bdcd16d49af6260c6c91d
Gerrit-Change-Number: 5809
Gerrit-PatchSet: 1
Gerrit-Owner: George Joseph <gjoseph at digium.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-code-review/attachments/20170613/494e3953/attachment.html>


More information about the asterisk-code-review mailing list