Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
asterisk
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Voice
asterisk
Commits
b5223a8c
Commit
b5223a8c
authored
9 years ago
by
Joshua Colp
Committed by
Gerrit Code Review
9 years ago
Browse files
Options
Downloads
Plain Diff
Merge "app_voicemail: always copy dynamic struct to avoid race condition"
parents
71641123
080c6216
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
apps/app_voicemail.c
+78
-23
78 additions, 23 deletions
apps/app_voicemail.c
with
78 additions
and
23 deletions
apps/app_voicemail.c
+
78
−
23
View file @
b5223a8c
...
@@ -1725,13 +1725,14 @@ static struct ast_vm_user *find_user(struct ast_vm_user *ivm, const char *contex
...
@@ -1725,13 +1725,14 @@ static struct ast_vm_user *find_user(struct ast_vm_user *ivm, const char *contex
}
}
if (cur) {
if (cur) {
/* Make a copy, so that on a reload, we have no race */
/* Make a copy, so that on a reload, we have no race */
if ((vmu = (ivm ? ivm : ast_malloc(sizeof(*vmu))))) {
if ((vmu = (ivm ? ivm : ast_calloc(1, sizeof(*vmu))))) {
ast_free(vmu->email);
ast_free(vmu->emailbody);
ast_free(vmu->emailsubject);
*vmu = *cur;
*vmu = *cur;
if (!ivm) {
vmu->email = ast_strdup(cur->email);
vmu->email = ast_strdup(cur->email);
vmu->emailbody = ast_strdup(cur->emailbody);
vmu->emailbody = ast_strdup(cur->emailbody);
vmu->emailsubject = ast_strdup(cur->emailsubject);
vmu->emailsubject = ast_strdup(cur->emailsubject);
}
ast_set2_flag(vmu, !ivm, VM_ALLOCED);
ast_set2_flag(vmu, !ivm, VM_ALLOCED);
AST_LIST_NEXT(vmu, list) = NULL;
AST_LIST_NEXT(vmu, list) = NULL;
}
}
...
@@ -2009,17 +2010,18 @@ static int get_folder_by_name(const char *name)
...
@@ -2009,17 +2010,18 @@ static int get_folder_by_name(const char *name)
static void free_user(struct ast_vm_user *vmu)
static void free_user(struct ast_vm_user *vmu)
{
{
if (ast_test_flag(vmu, VM_ALLOCED)) {
if (!vmu) {
return;
ast_free(vmu->email);
}
vmu->email = NULL;
ast_free(vmu->emailbody);
vmu->emailbody = NULL;
ast_free(vmu->emailsubject);
ast_free(vmu->email);
vmu->emailsubject = NULL;
vmu->email = NULL;
ast_free(vmu->emailbody);
vmu->emailbody = NULL;
ast_free(vmu->emailsubject);
vmu->emailsubject = NULL;
if (ast_test_flag(vmu, VM_ALLOCED)) {
ast_free(vmu);
ast_free(vmu);
}
}
}
}
...
@@ -2457,14 +2459,17 @@ static int __messagecount(const char *context, const char *mailbox, const char *
...
@@ -2457,14 +2459,17 @@ static int __messagecount(const char *context, const char *mailbox, const char *
return 0;
return 0;
/* We have to get the user before we can open the stream! */
/* We have to get the user before we can open the stream! */
memset(&vmus, 0, sizeof(vmus));
vmu = find_user(&vmus, context, mailbox);
vmu = find_user(&vmus, context, mailbox);
if (!vmu) {
if (!vmu) {
ast_log(AST_LOG_WARNING, "Couldn't find mailbox %s in context %s\n", mailbox, context);
ast_log(AST_LOG_WARNING, "Couldn't find mailbox %s in context %s\n", mailbox, context);
free_user(vmu);
return -1;
return -1;
} else {
} else {
/* No IMAP account available */
/* No IMAP account available */
if (vmu->imapuser[0] == '\0') {
if (vmu->imapuser[0] == '\0') {
ast_log(AST_LOG_WARNING, "IMAP user not set for mailbox %s\n", vmu->mailbox);
ast_log(AST_LOG_WARNING, "IMAP user not set for mailbox %s\n", vmu->mailbox);
free_user(vmu);
return -1;
return -1;
}
}
}
}
...
@@ -2484,9 +2489,11 @@ static int __messagecount(const char *context, const char *mailbox, const char *
...
@@ -2484,9 +2489,11 @@ static int __messagecount(const char *context, const char *mailbox, const char *
if (vms_p) {
if (vms_p) {
ast_debug(3, "Returning before search - user is logged in\n");
ast_debug(3, "Returning before search - user is logged in\n");
if (fold == 0) { /* INBOX */
if (fold == 0) { /* INBOX */
free_user(vmu);
return urgent ? vms_p->urgentmessages : vms_p->newmessages;
return urgent ? vms_p->urgentmessages : vms_p->newmessages;
}
}
if (fold == 1) { /* Old messages */
if (fold == 1) { /* Old messages */
free_user(vmu);
return vms_p->oldmessages;
return vms_p->oldmessages;
}
}
}
}
...
@@ -2503,6 +2510,7 @@ static int __messagecount(const char *context, const char *mailbox, const char *
...
@@ -2503,6 +2510,7 @@ static int __messagecount(const char *context, const char *mailbox, const char *
ret = init_mailstream(vms_p, fold);
ret = init_mailstream(vms_p, fold);
if (!vms_p->mailstream) {
if (!vms_p->mailstream) {
ast_log(AST_LOG_ERROR, "Houston we have a problem - IMAP mailstream is NULL\n");
ast_log(AST_LOG_ERROR, "Houston we have a problem - IMAP mailstream is NULL\n");
free_user(vmu);
return -1;
return -1;
}
}
if (ret == 0) {
if (ret == 0) {
...
@@ -2546,6 +2554,7 @@ static int __messagecount(const char *context, const char *mailbox, const char *
...
@@ -2546,6 +2554,7 @@ static int __messagecount(const char *context, const char *mailbox, const char *
/*Freeing the searchpgm also frees the searchhdr*/
/*Freeing the searchpgm also frees the searchhdr*/
mail_free_searchpgm(&pgm);
mail_free_searchpgm(&pgm);
ast_mutex_unlock(&vms_p->lock);
ast_mutex_unlock(&vms_p->lock);
free_user(vmu);
vms_p->updated = 0;
vms_p->updated = 0;
return vms_p->vmArrayIndex;
return vms_p->vmArrayIndex;
} else {
} else {
...
@@ -2553,6 +2562,7 @@ static int __messagecount(const char *context, const char *mailbox, const char *
...
@@ -2553,6 +2562,7 @@ static int __messagecount(const char *context, const char *mailbox, const char *
mail_ping(vms_p->mailstream);
mail_ping(vms_p->mailstream);
ast_mutex_unlock(&vms_p->lock);
ast_mutex_unlock(&vms_p->lock);
}
}
free_user(vmu);
return 0;
return 0;
}
}
...
@@ -6185,6 +6195,7 @@ static int msg_create_from_file(struct ast_vm_recording_data *recdata)
...
@@ -6185,6 +6195,7 @@ static int msg_create_from_file(struct ast_vm_recording_data *recdata)
return -1;
return -1;
}
}
memset(&svm, 0, sizeof(svm));
if (!(recipient = find_user(&svm, recdata->context, recdata->mailbox))) {
if (!(recipient = find_user(&svm, recdata->context, recdata->mailbox))) {
ast_log(LOG_ERROR, "No entry in voicemail config file for '%s@%s'\n", recdata->mailbox, recdata->context);
ast_log(LOG_ERROR, "No entry in voicemail config file for '%s@%s'\n", recdata->mailbox, recdata->context);
return -1;
return -1;
...
@@ -6500,6 +6511,7 @@ static int leave_voicemail(struct ast_channel *chan, char *ext, struct leave_vm_
...
@@ -6500,6 +6511,7 @@ static int leave_voicemail(struct ast_channel *chan, char *ext, struct leave_vm_
}
}
ast_debug(3, "Before find_user\n");
ast_debug(3, "Before find_user\n");
memset(&svm, 0, sizeof(svm));
if (!(vmu = find_user(&svm, context, ext))) {
if (!(vmu = find_user(&svm, context, ext))) {
ast_log(AST_LOG_WARNING, "No entry in voicemail config file for '%s'\n", ext);
ast_log(AST_LOG_WARNING, "No entry in voicemail config file for '%s'\n", ext);
pbx_builtin_setvar_helper(chan, "VMSTATUS", "FAILED");
pbx_builtin_setvar_helper(chan, "VMSTATUS", "FAILED");
...
@@ -6529,6 +6541,7 @@ static int leave_voicemail(struct ast_channel *chan, char *ext, struct leave_vm_
...
@@ -6529,6 +6541,7 @@ static int leave_voicemail(struct ast_channel *chan, char *ext, struct leave_vm_
snprintf(tempfile, sizeof(tempfile), "%s%s/%s/temp", VM_SPOOL_DIR, vmu->context, ext);
snprintf(tempfile, sizeof(tempfile), "%s%s/%s/temp", VM_SPOOL_DIR, vmu->context, ext);
if ((res = create_dirpath(tmpdir, sizeof(tmpdir), vmu->context, ext, "tmp"))) {
if ((res = create_dirpath(tmpdir, sizeof(tmpdir), vmu->context, ext, "tmp"))) {
ast_log(AST_LOG_WARNING, "Failed to make directory (%s)\n", tempfile);
ast_log(AST_LOG_WARNING, "Failed to make directory (%s)\n", tempfile);
free_user(vmu);
ast_free(tmp);
ast_free(tmp);
return -1;
return -1;
}
}
...
@@ -6672,9 +6685,9 @@ static int leave_voicemail(struct ast_channel *chan, char *ext, struct leave_vm_
...
@@ -6672,9 +6685,9 @@ static int leave_voicemail(struct ast_channel *chan, char *ext, struct leave_vm_
}
}
ast_play_and_wait(chan, "transfer");
ast_play_and_wait(chan, "transfer");
ast_channel_priority_set(chan, 0);
ast_channel_priority_set(chan, 0);
free_user(vmu);
pbx_builtin_setvar_helper(chan, "VMSTATUS", "USEREXIT");
pbx_builtin_setvar_helper(chan, "VMSTATUS", "USEREXIT");
}
}
free_user(vmu);
ast_free(tmp);
ast_free(tmp);
return OPERATOR_EXIT;
return OPERATOR_EXIT;
}
}
...
@@ -6708,6 +6721,7 @@ static int leave_voicemail(struct ast_channel *chan, char *ext, struct leave_vm_
...
@@ -6708,6 +6721,7 @@ static int leave_voicemail(struct ast_channel *chan, char *ext, struct leave_vm_
res = inboxcount(ext_context, &newmsgs, &oldmsgs);
res = inboxcount(ext_context, &newmsgs, &oldmsgs);
if (res < 0) {
if (res < 0) {
ast_log(AST_LOG_NOTICE, "Can not leave voicemail, unable to count messages\n");
ast_log(AST_LOG_NOTICE, "Can not leave voicemail, unable to count messages\n");
free_user(vmu);
ast_free(tmp);
ast_free(tmp);
return -1;
return -1;
}
}
...
@@ -6718,6 +6732,7 @@ static int leave_voicemail(struct ast_channel *chan, char *ext, struct leave_vm_
...
@@ -6718,6 +6732,7 @@ static int leave_voicemail(struct ast_channel *chan, char *ext, struct leave_vm_
*/
*/
if (!(vms = create_vm_state_from_user(vmu))) {
if (!(vms = create_vm_state_from_user(vmu))) {
ast_log(AST_LOG_ERROR, "Couldn't allocate necessary space\n");
ast_log(AST_LOG_ERROR, "Couldn't allocate necessary space\n");
free_user(vmu);
ast_free(tmp);
ast_free(tmp);
return -1;
return -1;
}
}
...
@@ -6912,6 +6927,7 @@ static int leave_voicemail(struct ast_channel *chan, char *ext, struct leave_vm_
...
@@ -6912,6 +6927,7 @@ static int leave_voicemail(struct ast_channel *chan, char *ext, struct leave_vm_
*cntx = '\0';
*cntx = '\0';
cntx++;
cntx++;
}
}
memset(&recipu, 0, sizeof(recipu));
if ((recip = find_user(&recipu, cntx, exten))) {
if ((recip = find_user(&recipu, cntx, exten))) {
copy_message(chan, vmu, 0, msgnum, duration, recip, fmt, dir, flag, NULL);
copy_message(chan, vmu, 0, msgnum, duration, recip, fmt, dir, flag, NULL);
free_user(recip);
free_user(recip);
...
@@ -10939,6 +10955,7 @@ static int vm_authenticate(struct ast_channel *chan, char *mailbox, int mailbox_
...
@@ -10939,6 +10955,7 @@ static int vm_authenticate(struct ast_channel *chan, char *mailbox, int mailbox_
}
}
ast_debug(1, "Before find user for mailbox %s\n", mailbox);
ast_debug(1, "Before find user for mailbox %s\n", mailbox);
memset(&vmus, 0, sizeof(vmus));
vmu = find_user(&vmus, context, mailbox);
vmu = find_user(&vmus, context, mailbox);
if (vmu && (vmu->password[0] == '\0' || (vmu->password[0] == '-' && vmu->password[1] == '\0'))) {
if (vmu && (vmu->password[0] == '\0' || (vmu->password[0] == '-' && vmu->password[1] == '\0'))) {
/* saved password is blank, so don't bother asking */
/* saved password is blank, so don't bother asking */
...
@@ -10946,10 +10963,12 @@ static int vm_authenticate(struct ast_channel *chan, char *mailbox, int mailbox_
...
@@ -10946,10 +10963,12 @@ static int vm_authenticate(struct ast_channel *chan, char *mailbox, int mailbox_
} else {
} else {
if (ast_streamfile(chan, vm_password, ast_channel_language(chan))) {
if (ast_streamfile(chan, vm_password, ast_channel_language(chan))) {
ast_log(AST_LOG_WARNING, "Unable to stream password file\n");
ast_log(AST_LOG_WARNING, "Unable to stream password file\n");
free_user(vmu);
return -1;
return -1;
}
}
if (ast_readstring(chan, password, sizeof(password) - 1, 2000, 10000, "#") < 0) {
if (ast_readstring(chan, password, sizeof(password) - 1, 2000, 10000, "#") < 0) {
ast_log(AST_LOG_WARNING, "Unable to read password\n");
ast_log(AST_LOG_WARNING, "Unable to read password\n");
free_user(vmu);
return -1;
return -1;
} else if (password[0] == '*') {
} else if (password[0] == '*') {
/* user entered '*' */
/* user entered '*' */
...
@@ -10957,11 +10976,13 @@ static int vm_authenticate(struct ast_channel *chan, char *mailbox, int mailbox_
...
@@ -10957,11 +10976,13 @@ static int vm_authenticate(struct ast_channel *chan, char *mailbox, int mailbox_
if (ast_exists_extension(chan, ast_channel_context(chan), "a", 1,
if (ast_exists_extension(chan, ast_channel_context(chan), "a", 1,
S_COR(ast_channel_caller(chan)->id.number.valid, ast_channel_caller(chan)->id.number.str, NULL))) {
S_COR(ast_channel_caller(chan)->id.number.valid, ast_channel_caller(chan)->id.number.str, NULL))) {
mailbox[0] = '*';
mailbox[0] = '*';
free_user(vmu);
return -1;
return -1;
}
}
ast_verb(4, "Jump to extension 'a' failed; setting mailbox and user to NULL\n");
ast_verb(4, "Jump to extension 'a' failed; setting mailbox and user to NULL\n");
mailbox[0] = '\0';
mailbox[0] = '\0';
/* if the password entered was '*', do not let a user mailbox be created if the extension 'a' is not defined */
/* if the password entered was '*', do not let a user mailbox be created if the extension 'a' is not defined */
free_user(vmu);
vmu = NULL;
vmu = NULL;
}
}
}
}
...
@@ -10982,6 +11003,7 @@ static int vm_authenticate(struct ast_channel *chan, char *mailbox, int mailbox_
...
@@ -10982,6 +11003,7 @@ static int vm_authenticate(struct ast_channel *chan, char *mailbox, int mailbox_
if (skipuser || logretries >= max_logins) {
if (skipuser || logretries >= max_logins) {
if (ast_streamfile(chan, "vm-incorrect", ast_channel_language(chan))) {
if (ast_streamfile(chan, "vm-incorrect", ast_channel_language(chan))) {
ast_log(AST_LOG_WARNING, "Unable to stream incorrect message\n");
ast_log(AST_LOG_WARNING, "Unable to stream incorrect message\n");
free_user(vmu);
return -1;
return -1;
}
}
} else {
} else {
...
@@ -10989,16 +11011,20 @@ static int vm_authenticate(struct ast_channel *chan, char *mailbox, int mailbox_
...
@@ -10989,16 +11011,20 @@ static int vm_authenticate(struct ast_channel *chan, char *mailbox, int mailbox_
adsi_login(chan);
adsi_login(chan);
if (ast_streamfile(chan, "vm-incorrect-mailbox", ast_channel_language(chan))) {
if (ast_streamfile(chan, "vm-incorrect-mailbox", ast_channel_language(chan))) {
ast_log(AST_LOG_WARNING, "Unable to stream incorrect mailbox message\n");
ast_log(AST_LOG_WARNING, "Unable to stream incorrect mailbox message\n");
free_user(vmu);
return -1;
return -1;
}
}
}
}
if (ast_waitstream(chan, "")) /* Channel is hung up */
if (ast_waitstream(chan, "")) { /* Channel is hung up */
free_user(vmu);
return -1;
return -1;
}
}
}
}
}
if (!valid && (logretries >= max_logins)) {
if (!valid && (logretries >= max_logins)) {
ast_stopstream(chan);
ast_stopstream(chan);
ast_play_and_wait(chan, "vm-goodbye");
ast_play_and_wait(chan, "vm-goodbye");
free_user(vmu);
return -1;
return -1;
}
}
if (vmu && !skipuser) {
if (vmu && !skipuser) {
...
@@ -11106,6 +11132,8 @@ play_msg_cleanup:
...
@@ -11106,6 +11132,8 @@ play_msg_cleanup:
}
}
#endif
#endif
free_user(vmu);
return res;
return res;
}
}
...
@@ -12301,7 +12329,7 @@ AST_TEST_DEFINE(test_voicemail_vmuser)
...
@@ -12301,7 +12329,7 @@ AST_TEST_DEFINE(test_voicemail_vmuser)
static int vm_box_exists(struct ast_channel *chan, const char *data)
static int vm_box_exists(struct ast_channel *chan, const char *data)
{
{
struct ast_vm_user svm;
struct ast_vm_user svm
, *vmu
;
char *context, *box;
char *context, *box;
AST_DECLARE_APP_ARGS(args,
AST_DECLARE_APP_ARGS(args,
AST_APP_ARG(mbox);
AST_APP_ARG(mbox);
...
@@ -12331,8 +12359,10 @@ static int vm_box_exists(struct ast_channel *chan, const char *data)
...
@@ -12331,8 +12359,10 @@ static int vm_box_exists(struct ast_channel *chan, const char *data)
context++;
context++;
}
}
if (find_user(&svm, context, args.mbox)) {
vmu = find_user(&svm, context, args.mbox);
if (vmu) {
pbx_builtin_setvar_helper(chan, "VMBOXEXISTSSTATUS", "SUCCESS");
pbx_builtin_setvar_helper(chan, "VMBOXEXISTSSTATUS", "SUCCESS");
free_user(vmu);
} else
} else
pbx_builtin_setvar_helper(chan, "VMBOXEXISTSSTATUS", "FAILED");
pbx_builtin_setvar_helper(chan, "VMBOXEXISTSSTATUS", "FAILED");
...
@@ -12341,7 +12371,7 @@ static int vm_box_exists(struct ast_channel *chan, const char *data)
...
@@ -12341,7 +12371,7 @@ static int vm_box_exists(struct ast_channel *chan, const char *data)
static int acf_mailbox_exists(struct ast_channel *chan, const char *cmd, char *args, char *buf, size_t len)
static int acf_mailbox_exists(struct ast_channel *chan, const char *cmd, char *args, char *buf, size_t len)
{
{
struct ast_vm_user svm;
struct ast_vm_user svm
, *vmu
;
AST_DECLARE_APP_ARGS(arg,
AST_DECLARE_APP_ARGS(arg,
AST_APP_ARG(mbox);
AST_APP_ARG(mbox);
AST_APP_ARG(context);
AST_APP_ARG(context);
...
@@ -12360,7 +12390,10 @@ static int acf_mailbox_exists(struct ast_channel *chan, const char *cmd, char *a
...
@@ -12360,7 +12390,10 @@ static int acf_mailbox_exists(struct ast_channel *chan, const char *cmd, char *a
ast_log(AST_LOG_WARNING, "MAILBOX_EXISTS is deprecated. Please use ${VM_INFO(%s,exists)} instead.\n", args);
ast_log(AST_LOG_WARNING, "MAILBOX_EXISTS is deprecated. Please use ${VM_INFO(%s,exists)} instead.\n", args);
}
}
ast_copy_string(buf, find_user(&svm, ast_strlen_zero(arg.context) ? "default" : arg.context, arg.mbox) ? "1" : "0", len);
vmu = find_user(&svm, ast_strlen_zero(arg.context) ? "default" : arg.context, arg.mbox);
ast_copy_string(buf, vmu ? "1" : "0", len);
free_user(vmu);
return 0;
return 0;
}
}
...
@@ -12396,10 +12429,12 @@ static int acf_vm_info(struct ast_channel *chan, const char *cmd, char *args, ch
...
@@ -12396,10 +12429,12 @@ static int acf_vm_info(struct ast_channel *chan, const char *cmd, char *args, ch
return -1;
return -1;
}
}
memset(&svm, 0, sizeof(svm));
vmu = find_user(&svm, context, mailbox);
vmu = find_user(&svm, context, mailbox);
if (!strncasecmp(arg.attribute, "exists", 5)) {
if (!strncasecmp(arg.attribute, "exists", 5)) {
ast_copy_string(buf, vmu ? "1" : "0", len);
ast_copy_string(buf, vmu ? "1" : "0", len);
free_user(vmu);
return 0;
return 0;
}
}
...
@@ -12428,13 +12463,16 @@ static int acf_vm_info(struct ast_channel *chan, const char *cmd, char *args, ch
...
@@ -12428,13 +12463,16 @@ static int acf_vm_info(struct ast_channel *chan, const char *cmd, char *args, ch
res = messagecount(mailbox_id, arg.folder);
res = messagecount(mailbox_id, arg.folder);
if (res < 0) {
if (res < 0) {
ast_log(LOG_ERROR, "Unable to retrieve message count for mailbox %s\n", arg.mailbox_context);
ast_log(LOG_ERROR, "Unable to retrieve message count for mailbox %s\n", arg.mailbox_context);
free_user(vmu);
return -1;
return -1;
}
}
snprintf(buf, len, "%d", res);
snprintf(buf, len, "%d", res);
} else {
} else {
ast_log(LOG_ERROR, "Unknown attribute '%s' for VM_INFO\n", arg.attribute);
ast_log(LOG_ERROR, "Unknown attribute '%s' for VM_INFO\n", arg.attribute);
free_user(vmu);
return -1;
return -1;
}
}
free_user(vmu);
}
}
return 0;
return 0;
...
@@ -14248,6 +14286,7 @@ AST_TEST_DEFINE(test_voicemail_msgcount)
...
@@ -14248,6 +14286,7 @@ AST_TEST_DEFINE(test_voicemail_msgcount)
}
}
#endif
#endif
memset(&svm, 0, sizeof(svm));
if (!(vmu = find_user(&svm, testcontext, testmailbox)) &&
if (!(vmu = find_user(&svm, testcontext, testmailbox)) &&
!(vmu = find_or_create(testcontext, testmailbox))) {
!(vmu = find_or_create(testcontext, testmailbox))) {
ast_test_status_update(test, "Cannot create vmu structure\n");
ast_test_status_update(test, "Cannot create vmu structure\n");
...
@@ -14277,6 +14316,7 @@ AST_TEST_DEFINE(test_voicemail_msgcount)
...
@@ -14277,6 +14316,7 @@ AST_TEST_DEFINE(test_voicemail_msgcount)
#ifdef IMAP_STORAGE
#ifdef IMAP_STORAGE
chan = ast_channel_unref(chan);
chan = ast_channel_unref(chan);
#endif
#endif
free_user(vmu);
return AST_TEST_FAIL;
return AST_TEST_FAIL;
}
}
}
}
...
@@ -14360,6 +14400,7 @@ AST_TEST_DEFINE(test_voicemail_msgcount)
...
@@ -14360,6 +14400,7 @@ AST_TEST_DEFINE(test_voicemail_msgcount)
syserr > 0 ? strerror(syserr) : "unable to fork()");
syserr > 0 ? strerror(syserr) : "unable to fork()");
}
}
free_user(vmu);
return res;
return res;
}
}
...
@@ -14469,6 +14510,7 @@ AST_TEST_DEFINE(test_voicemail_notify_endl)
...
@@ -14469,6 +14510,7 @@ AST_TEST_DEFINE(test_voicemail_notify_endl)
}
}
}
}
fclose(file);
fclose(file);
free_user(vmu);
return res;
return res;
}
}
...
@@ -14629,6 +14671,7 @@ AST_TEST_DEFINE(test_voicemail_vm_info)
...
@@ -14629,6 +14671,7 @@ AST_TEST_DEFINE(test_voicemail_vm_info)
}
}
chan = ast_channel_unref(chan);
chan = ast_channel_unref(chan);
free_user(vmu);
return res;
return res;
}
}
#endif /* defined(TEST_FRAMEWORK) */
#endif /* defined(TEST_FRAMEWORK) */
...
@@ -15020,8 +15063,10 @@ static int advanced_options(struct ast_channel *chan, struct ast_vm_user *vmu, s
...
@@ -15020,8 +15063,10 @@ static int advanced_options(struct ast_channel *chan, struct ast_vm_user *vmu, s
ast_config_destroy(msg_cfg);
ast_config_destroy(msg_cfg);
return res;
return res;
} else {
} else {
struct ast_vm_user vmu2;
struct ast_vm_user vmu2, *vmu3;
if (find_user(&vmu2, vmu->context, num)) {
memset(&vmu2, 0, sizeof(vmu2));
vmu3 = find_user(&vmu2, vmu->context, num);
if (vmu3) {
struct leave_vm_options leave_options;
struct leave_vm_options leave_options;
char mailbox[AST_MAX_EXTENSION * 2 + 2];
char mailbox[AST_MAX_EXTENSION * 2 + 2];
snprintf(mailbox, sizeof(mailbox), "%s@%s", num, vmu->context);
snprintf(mailbox, sizeof(mailbox), "%s@%s", num, vmu->context);
...
@@ -15034,6 +15079,7 @@ static int advanced_options(struct ast_channel *chan, struct ast_vm_user *vmu, s
...
@@ -15034,6 +15079,7 @@ static int advanced_options(struct ast_channel *chan, struct ast_vm_user *vmu, s
if (!res)
if (!res)
res = 't';
res = 't';
ast_config_destroy(msg_cfg);
ast_config_destroy(msg_cfg);
free_user(vmu3);
return res;
return res;
} else {
} else {
/* Sender has no mailbox, can't reply */
/* Sender has no mailbox, can't reply */
...
@@ -15528,11 +15574,13 @@ static struct ast_vm_mailbox_snapshot *vm_mailbox_snapshot_create(const char *ma
...
@@ -15528,11 +15574,13 @@ static struct ast_vm_mailbox_snapshot *vm_mailbox_snapshot_create(const char *ma
if (!(mailbox_snapshot = ast_calloc(1, sizeof(*mailbox_snapshot)))) {
if (!(mailbox_snapshot = ast_calloc(1, sizeof(*mailbox_snapshot)))) {
ast_log(AST_LOG_ERROR, "Failed to allocate memory for mailbox snapshot\n");
ast_log(AST_LOG_ERROR, "Failed to allocate memory for mailbox snapshot\n");
free_user(vmu);
return NULL;
return NULL;
}
}
if (!(mailbox_snapshot->snapshots = ast_calloc(ARRAY_LEN(mailbox_folders), sizeof(*mailbox_snapshot->snapshots)))) {
if (!(mailbox_snapshot->snapshots = ast_calloc(ARRAY_LEN(mailbox_folders), sizeof(*mailbox_snapshot->snapshots)))) {
ast_free(mailbox_snapshot);
ast_free(mailbox_snapshot);
free_user(vmu);
return NULL;
return NULL;
}
}
...
@@ -15593,6 +15641,7 @@ snapshot_cleanup:
...
@@ -15593,6 +15641,7 @@ snapshot_cleanup:
}
}
#endif
#endif
free_user(vmu);
return mailbox_snapshot;
return mailbox_snapshot;
}
}
...
@@ -15747,6 +15796,7 @@ static int vm_msg_forward(const char *from_mailbox,
...
@@ -15747,6 +15796,7 @@ static int vm_msg_forward(const char *from_mailbox,
if (!(to_vmu = find_user(&to_vmus, to_context, to_mailbox))) {
if (!(to_vmu = find_user(&to_vmus, to_context, to_mailbox))) {
ast_log(LOG_WARNING, "Can't find voicemail user to forward to (%s@%s)\n", to_mailbox, to_context);
ast_log(LOG_WARNING, "Can't find voicemail user to forward to (%s@%s)\n", to_mailbox, to_context);
free_user(vmu);
return -1;
return -1;
}
}
...
@@ -15827,6 +15877,8 @@ vm_forward_cleanup:
...
@@ -15827,6 +15877,8 @@ vm_forward_cleanup:
notify_new_state(to_vmu);
notify_new_state(to_vmu);
}
}
free_user(vmu);
free_user(to_vmu);
return res;
return res;
}
}
...
@@ -15930,6 +15982,7 @@ vm_move_cleanup:
...
@@ -15930,6 +15982,7 @@ vm_move_cleanup:
notify_new_state(vmu);
notify_new_state(vmu);
}
}
free_user(vmu);
return res;
return res;
}
}
...
@@ -16027,6 +16080,7 @@ vm_remove_cleanup:
...
@@ -16027,6 +16080,7 @@ vm_remove_cleanup:
notify_new_state(vmu);
notify_new_state(vmu);
}
}
free_user(vmu);
return res;
return res;
}
}
...
@@ -16140,6 +16194,7 @@ play2_msg_cleanup:
...
@@ -16140,6 +16194,7 @@ play2_msg_cleanup:
notify_new_state(vmu);
notify_new_state(vmu);
}
}
free_user(vmu);
return res;
return res;
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment