summaryrefslogtreecommitdiff
path: root/main/sorcery.c
diff options
context:
space:
mode:
authorGeorge Joseph <george.joseph@fairview5.com>2014-10-03 15:55:57 +0000
committerGeorge Joseph <george.joseph@fairview5.com>2014-10-03 15:55:57 +0000
commit4967478d180f2a512cfb6ff83fa115aac43978c6 (patch)
treeccc69a21a9414807201ca044b33482e1cfa5ef17 /main/sorcery.c
parentb1f8eba178e9e7baf8eaee80db9c2e6c176a22f8 (diff)
sorcery: Prevent SEGV in sorcery_wizard_create when there's no create function
When you call ast_sorcery_create() you don't necessarily know which wizard is going to be invoked. If it happens to be a wizard like 'config' that doesn't have a 'create' virtual function you get a segfault in the sorcery_wizard_create callback. This patch catches the null function pointer, does an ast_assert, and logs an error. Review: https://reviewboard.asterisk.org/r/4044/ ........ Merged revisions 424447 from http://svn.asterisk.org/svn/asterisk/branches/12 ........ Merged revisions 424448 from http://svn.asterisk.org/svn/asterisk/branches/13 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@424449 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/sorcery.c')
-rw-r--r--main/sorcery.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/main/sorcery.c b/main/sorcery.c
index 85a699bcb..9ddf77020 100644
--- a/main/sorcery.c
+++ b/main/sorcery.c
@@ -1572,6 +1572,12 @@ static int sorcery_wizard_create(void *obj, void *arg, int flags)
const struct ast_sorcery_object_wizard *object_wizard = obj;
const struct sorcery_details *details = arg;
+ if (!object_wizard->wizard->create) {
+ ast_assert(0);
+ ast_log(LOG_ERROR, "Sorcery wizard '%s' doesn't contain a 'create' virtual function.\n",
+ object_wizard->wizard->name);
+ return 0;
+ }
return (!object_wizard->caching && !object_wizard->wizard->create(details->sorcery, object_wizard->data, details->obj)) ? CMP_MATCH | CMP_STOP : 0;
}