[Asterisk-code-review] app_voicemail: Prevent deadlocks when out of ODBC database connections (asterisk[master])
Sean Bright
asteriskteam at digium.com
Thu Dec 24 09:25:02 CST 2020
Sean Bright has uploaded this change for review. ( https://gerrit.asterisk.org/c/asterisk/+/15277 )
Change subject: app_voicemail: Prevent deadlocks when out of ODBC database connections
......................................................................
app_voicemail: Prevent deadlocks when out of ODBC database connections
ASTERISK-28992 #close
Change-Id: Ia7d608924036139ee2520b840d077762d02668d0
---
M apps/app_voicemail.c
1 file changed, 10 insertions(+), 2 deletions(-)
git pull ssh://gerrit.asterisk.org:29418/asterisk refs/changes/77/15277/1
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index 1bb736b..2929cf2 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -3834,6 +3834,7 @@
char fn[PATH_MAX];
char full_fn[PATH_MAX];
char msgnums[80];
+ char msg_id[MSG_ID_LEN] = "";
char *argv[] = { dir, msgnums };
struct generic_prepare_struct gps = { .sql = sql, .argc = 2, .argv = argv };
struct odbc_obj *obj;
@@ -3938,10 +3939,10 @@
} else {
res = SQLGetData(stmt, x + 1, SQL_CHAR, rowdata, sizeof(rowdata), NULL);
if (res == SQL_NULL_DATA && !strcasecmp(coltitle, "msg_id")) {
- char msg_id[MSG_ID_LEN];
+ /* Generate msg_id now, but don't store it until we're done with this
+ connection */
generate_msg_id(msg_id);
snprintf(rowdata, sizeof(rowdata), "%s", msg_id);
- odbc_update_msg_id(dir, msgnum, msg_id);
} else if (res == SQL_NULL_DATA && !strcasecmp(coltitle, "category")) {
/* Ignore null column value for category */
ast_debug(3, "Ignoring null category column in ODBC voicemail retrieve_file.\n");
@@ -3967,6 +3968,13 @@
ast_odbc_release_obj(obj);
+ /* If res_odbc is configured to only allow a single database connection, we
+ will deadlock if we try to do this before releasing the connection we
+ were just using. */
+ if (!ast_strlen_zero(msg_id)) {
+ odbc_update_msg_id(dir, msgnum, msg_id);
+ }
+
return x - 1;
}
--
To view, visit https://gerrit.asterisk.org/c/asterisk/+/15277
To unsubscribe, or for help writing mail filters, visit https://gerrit.asterisk.org/settings
Gerrit-Project: asterisk
Gerrit-Branch: master
Gerrit-Change-Id: Ia7d608924036139ee2520b840d077762d02668d0
Gerrit-Change-Number: 15277
Gerrit-PatchSet: 1
Gerrit-Owner: Sean Bright <sean.bright at gmail.com>
Gerrit-MessageType: newchange
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-code-review/attachments/20201224/d8d5c28b/attachment.html>
More information about the asterisk-code-review
mailing list