[asterisk-commits] file: Ensure nativeformats remains valid for lifetime of use. (asterisk[13])
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon May 9 08:27:51 CDT 2016
Anonymous Coward #1000019 has submitted this change and it was merged.
Change subject: file: Ensure nativeformats remains valid for lifetime of use.
......................................................................
file: Ensure nativeformats remains valid for lifetime of use.
It is possible for the nativeformats of a channel to change
throughout its lifetime. As a result a user of it needs to either
ensure the channel is locked when accessing the formats or keep
a reference to the nativeformats themselves.
This change fixes the file playback support so it keeps a
reference to the nativeformats when accessing things.
ASTERISK-25998 #close
Change-Id: Ie45b65475e1481ddf05b874ee48f63e39fff8915
---
M main/file.c
1 file changed, 20 insertions(+), 4 deletions(-)
Approvals:
Kevin Harwell: Looks good to me, but someone else must approve
Jaco Kroon: Looks good to me, but someone else must approve
Anonymous Coward #1000019: Verified
Joshua Colp: Looks good to me, approved
diff --git a/main/file.c b/main/file.c
index 7ce0213..1c51177 100644
--- a/main/file.c
+++ b/main/file.c
@@ -799,7 +799,7 @@
/* As above, but for video. But here we don't have translators
* so we must enforce a format.
*/
- struct ast_format_cap *tmp_cap;
+ struct ast_format_cap *nativeformats, *tmp_cap;
char *buf;
int buflen;
int i, fd;
@@ -810,16 +810,23 @@
buflen = strlen(preflang) + strlen(filename) + 4;
buf = ast_alloca(buflen);
+ ast_channel_lock(chan);
+ nativeformats = ao2_bump(ast_channel_nativeformats(chan));
+ ast_channel_unlock(chan);
+
/* is the channel capable of video without translation ?*/
- if (!ast_format_cap_has_type(ast_channel_nativeformats(chan), AST_MEDIA_TYPE_VIDEO)) {
+ if (!ast_format_cap_has_type(nativeformats, AST_MEDIA_TYPE_VIDEO)) {
+ ao2_cleanup(nativeformats);
return NULL;
}
if (!(tmp_cap = ast_format_cap_alloc(AST_FORMAT_CAP_FLAG_DEFAULT))) {
+ ao2_cleanup(nativeformats);
return NULL;
}
/* Video is supported, so see what video formats exist for this file */
if (!fileexists_core(filename, NULL, preflang, buf, buflen, tmp_cap)) {
ao2_ref(tmp_cap, -1);
+ ao2_cleanup(nativeformats);
return NULL;
}
@@ -828,7 +835,7 @@
struct ast_format *format = ast_format_cap_get_format(tmp_cap, i);
if ((ast_format_get_type(format) != AST_MEDIA_TYPE_VIDEO) ||
- !ast_format_cap_iscompatible(ast_channel_nativeformats(chan), tmp_cap)) {
+ !ast_format_cap_iscompatible(nativeformats, tmp_cap)) {
ao2_ref(format, -1);
continue;
}
@@ -837,12 +844,14 @@
if (fd >= 0) {
ao2_ref(format, -1);
ao2_ref(tmp_cap, -1);
+ ao2_cleanup(nativeformats);
return ast_channel_vstream(chan);
}
ast_log(LOG_WARNING, "File %s has video but couldn't be opened\n", filename);
ao2_ref(format, -1);
}
ao2_ref(tmp_cap, -1);
+ ao2_cleanup(nativeformats);
return NULL;
}
@@ -1097,8 +1106,10 @@
fs = ast_openstream(chan, filename, preflang);
if (!fs) {
struct ast_str *codec_buf = ast_str_alloca(AST_FORMAT_CAP_NAMES_LEN);
+ ast_channel_lock(chan);
ast_log(LOG_WARNING, "Unable to open %s (format %s): %s\n",
filename, ast_format_cap_get_names(ast_channel_nativeformats(chan), &codec_buf), strerror(errno));
+ ast_channel_unlock(chan);
return -1;
}
@@ -1133,7 +1144,12 @@
res = ast_playstream(fs);
if (!res && vfs)
res = ast_playstream(vfs);
- ast_verb(3, "<%s> Playing '%s.%s' (language '%s')\n", ast_channel_name(chan), filename, ast_format_get_name(ast_channel_writeformat(chan)), preflang ? preflang : "default");
+
+ if (VERBOSITY_ATLEAST(3)) {
+ ast_channel_lock(chan);
+ ast_verb(3, "<%s> Playing '%s.%s' (language '%s')\n", ast_channel_name(chan), filename, ast_format_get_name(ast_channel_writeformat(chan)), preflang ? preflang : "default");
+ ast_channel_unlock(chan);
+ }
return res;
}
--
To view, visit https://gerrit.asterisk.org/2762
To unsubscribe, visit https://gerrit.asterisk.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: Ie45b65475e1481ddf05b874ee48f63e39fff8915
Gerrit-PatchSet: 2
Gerrit-Project: asterisk
Gerrit-Branch: 13
Gerrit-Owner: Joshua Colp <jcolp at digium.com>
Gerrit-Reviewer: Anonymous Coward #1000019
Gerrit-Reviewer: Jaco Kroon <jaco at uls.co.za>
Gerrit-Reviewer: Joshua Colp <jcolp at digium.com>
Gerrit-Reviewer: Kevin Harwell <kharwell at digium.com>
More information about the asterisk-commits
mailing list