mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-20 08:40:16 +00:00
Merged revisions 337974 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/10 ................ r337974 | rmudgett | 2011-09-26 14:35:23 -0500 (Mon, 26 Sep 2011) | 37 lines Merged revisions 337973 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.8 ........ r337973 | rmudgett | 2011-09-26 14:30:39 -0500 (Mon, 26 Sep 2011) | 30 lines Fix deadlock when using dummy channels. Dummy channels created by ast_dummy_channel_alloc() should be destoyed by ast_channel_unref(). Using ast_channel_release() needlessly grabs the channel container lock and can cause a deadlock as a result. * Analyzed use of ast_dummy_channel_alloc() and made use ast_channel_unref() when done with the dummy channel. (Primary reason for the reported deadlock.) * Made app_dial.c:dial_exec_full() not call ast_call() holding any channel locks. Chan_local could not perform deadlock avoidance correctly. (Potential deadlock exposed by this issue. Secondary reason for the reported deadlock since the held lock was part of the deadlock chain.) * Fixed some uses of ast_dummy_channel_alloc() not checking the returned channel pointer for failure. * Fixed some potential chan=NULL pointer usage in func_odbc.c. Protected by testing the bogus_chan value. * Fixed needlessly clearing a 1024 char auto array when setting the first char to zero is enough in manager.c:action_getvar(). (closes issue ASTERISK-18613) Reported by: Thomas Arimont Patches: jira_asterisk_18613_v1.8.patch (license #5621) patch uploaded by rmudgett Tested by: Thomas Arimont ........ ................ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@337975 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -4573,7 +4573,7 @@ static void make_email_file(FILE *p, char *srcemail, struct ast_vm_user *vmu, in
|
||||
} else {
|
||||
fprintf(p, "From: %s <%s>" ENDL, ast_str_quote(&str2, 0, ast_str_buffer(str1)), who);
|
||||
}
|
||||
ast = ast_channel_release(ast);
|
||||
ast = ast_channel_unref(ast);
|
||||
} else {
|
||||
ast_log(AST_LOG_WARNING, "Cannot allocate the channel for variables substitution\n");
|
||||
}
|
||||
@@ -4618,7 +4618,7 @@ static void make_email_file(FILE *p, char *srcemail, struct ast_vm_user *vmu, in
|
||||
} else {
|
||||
fprintf(p, "Subject: %s" ENDL, ast_str_buffer(str1));
|
||||
}
|
||||
ast = ast_channel_release(ast);
|
||||
ast = ast_channel_unref(ast);
|
||||
} else {
|
||||
ast_log(AST_LOG_WARNING, "Cannot allocate the channel for variables substitution\n");
|
||||
}
|
||||
@@ -4704,7 +4704,7 @@ static void make_email_file(FILE *p, char *srcemail, struct ast_vm_user *vmu, in
|
||||
#else
|
||||
fprintf(p, "%s" ENDL, ast_str_buffer(str1));
|
||||
#endif
|
||||
ast = ast_channel_release(ast);
|
||||
ast = ast_channel_unref(ast);
|
||||
} else {
|
||||
ast_log(AST_LOG_WARNING, "Cannot allocate the channel for variables substitution\n");
|
||||
}
|
||||
@@ -4931,7 +4931,7 @@ static int sendpage(char *srcemail, char *pager, int msgnum, char *context, char
|
||||
} else {
|
||||
fprintf(p, "From: %s <%s>" ENDL, ast_str_quote(&str2, 0, ast_str_buffer(str1)), who);
|
||||
}
|
||||
ast = ast_channel_release(ast);
|
||||
ast = ast_channel_unref(ast);
|
||||
} else {
|
||||
ast_log(AST_LOG_WARNING, "Cannot allocate the channel for variables substitution\n");
|
||||
}
|
||||
@@ -4975,7 +4975,7 @@ static int sendpage(char *srcemail, char *pager, int msgnum, char *context, char
|
||||
} else {
|
||||
fprintf(p, "Subject: %s" ENDL, ast_str_buffer(str1));
|
||||
}
|
||||
ast = ast_channel_release(ast);
|
||||
ast = ast_channel_unref(ast);
|
||||
} else {
|
||||
ast_log(AST_LOG_WARNING, "Cannot allocate the channel for variables substitution\n");
|
||||
}
|
||||
@@ -4993,7 +4993,7 @@ static int sendpage(char *srcemail, char *pager, int msgnum, char *context, char
|
||||
prep_email_sub_vars(ast, vmu, msgnum + 1, context, mailbox, fromfolder, cidnum, cidname, dur, date, category, flag);
|
||||
ast_str_substitute_variables(&str1, 0, ast, pagerbody);
|
||||
fprintf(p, "%s" ENDL, ast_str_buffer(str1));
|
||||
ast = ast_channel_release(ast);
|
||||
ast = ast_channel_unref(ast);
|
||||
} else {
|
||||
ast_log(AST_LOG_WARNING, "Cannot allocate the channel for variables substitution\n");
|
||||
}
|
||||
@@ -12689,6 +12689,9 @@ AST_TEST_DEFINE(test_voicemail_msgcount)
|
||||
!(vmu = find_or_create(testcontext, testmailbox))) {
|
||||
ast_test_status_update(test, "Cannot create vmu structure\n");
|
||||
ast_unreplace_sigchld();
|
||||
#ifdef IMAP_STORAGE
|
||||
chan = ast_channel_unref(chan);
|
||||
#endif
|
||||
return AST_TEST_FAIL;
|
||||
}
|
||||
|
||||
@@ -12708,6 +12711,9 @@ AST_TEST_DEFINE(test_voicemail_msgcount)
|
||||
ast_test_status_update(test, "Unable to create test voicemail: %s\n",
|
||||
syserr > 0 ? strerror(syserr) : "unable to fork()");
|
||||
ast_unreplace_sigchld();
|
||||
#ifdef IMAP_STORAGE
|
||||
chan = ast_channel_unref(chan);
|
||||
#endif
|
||||
return AST_TEST_FAIL;
|
||||
}
|
||||
}
|
||||
@@ -12781,7 +12787,7 @@ AST_TEST_DEFINE(test_voicemail_msgcount)
|
||||
}
|
||||
|
||||
#ifdef IMAP_STORAGE
|
||||
chan = ast_channel_release(chan);
|
||||
chan = ast_channel_unref(chan);
|
||||
#endif
|
||||
|
||||
/* And remove test directory */
|
||||
|
||||
Reference in New Issue
Block a user