[asterisk-bugs] [Asterisk 0016058]: [patch] Crash in local_ast_moh_start / ast_indicate_data due to AST_CONTROL_HOLD with bad pointer
Asterisk Bug Tracker
noreply at bugs.digium.com
Tue Jan 26 12:08:49 CST 2010
A NOTE has been added to this issue.
======================================================================
https://issues.asterisk.org/view.php?id=16058
======================================================================
Reported By: atis
Assigned To: jpeeler
======================================================================
Project: Asterisk
Issue ID: 16058
Category: Channels/General
Reproducibility: have not tried
Severity: crash
Priority: normal
Status: closed
Target Version: 1.6.1.14
Asterisk Version: SVN
JIRA:
Regression: No
Reviewboard Link:
SVN Branch (only for SVN checkouts, not tarball releases): N/A
SVN Revision (number only!):
Request Review:
Resolution: fixed
Fixed in Version:
======================================================================
Date Submitted: 2009-10-12 08:24 CDT
Last Modified: 2010-01-26 12:08 CST
======================================================================
Summary: [patch] Crash in local_ast_moh_start /
ast_indicate_data due to AST_CONTROL_HOLD with bad pointer
Description:
I got the following backtrace:
Program terminated with signal 11, Segmentation fault.
# 0 0x00002aaab13265d0 in local_ast_moh_start (chan=0x2aaac82fad98,
mclass=0xc8196c58 <Address 0xc8196c58 out of bounds>, interpclass=0xc4c1db
"default") at
/export/storage0/dist/1.6.1_p1/asterisk-svn-1.6.1.6-iqlabs/include/asterisk/strings.h:50
50 return (!s || (*s == '\0'));
# 0 0x00002aaab13265d0 in local_ast_moh_start (chan=0x2aaac82fad98,
mclass=0xc8196c58 <Address 0xc8196c58 out of bounds>, interpclass=0xc4c1db
"default") at
/export/storage0/dist/1.6.1_p1/asterisk-svn-1.6.1.6-iqlabs/include/asterisk/strings.h:50
# 1 0x000000000046b106 in ast_moh_start (chan=0x2aaac82fad98,
mclass=0xc8196c58 <Address 0xc8196c58 out of bounds>, interpclass=0xc4c1db
"default") at channel.c:5625
# 2 0x00002aaab8e1ad84 in sip_indicate (ast=0x2aaac82fad98, condition=16,
data=0xc8196c58, datalen=0) at chan_sip.c:5794
# 3 0x000000000045f40c in ast_indicate_data (chan=0x2aaac82fad98,
_condition=16, data=0xc8196c58, datalen=0) at channel.c:3113
# 4 0x0000000000467171 in ast_generic_bridge (c0=0xaa7638,
c1=0x2aaac82fad98, config=0x40c90c00, fo=0x40c8fd28, rc=0x40c8fd20,
bridge_end={tv_sec = 1255274833, tv_usec = 81777}) at channel.c:4902
After investigating closer in frame 4 i found that:
f->datalen = 0
f->data.ptr = (void *) 0xc8196c58 (which is out of bounds in
ast_strlen_zero)
f->frametype = AST_FRAME_CONTROL
f->subclass = 16 (AST_CONTROL_HOLD)
So, apparently something generates wrong HOLD frame with datalength 0 but
invalid pointer.
Full backtrace attached
======================================================================
----------------------------------------------------------------------
(0117205) svnbot (reporter) - 2010-01-26 12:08
https://issues.asterisk.org/view.php?id=16058#c117205
----------------------------------------------------------------------
Repository: asterisk
Revision: 243245
_U branches/1.6.0/
------------------------------------------------------------------------
r243245 | jpeeler | 2010-01-26 12:08:48 -0600 (Tue, 26 Jan 2010) | 18
lines
Blocked revisions 243244 via svnmerge
........
r243244 | jpeeler | 2010-01-26 12:07:57 -0600 (Tue, 26 Jan 2010) | 12
lines
Fix crash resulting from frames with invalid data pointers.
In ast_frdup the frame data union does not get set to point to malloced
memory
if the datalen is zero, so make sure to handle the same case in
ast_frisolate
appropriately.
(closes issue https://issues.asterisk.org/view.php?id=16058)
Reported by: atis
Patches:
bug16058-fix.patch uploaded by jpeeler (license 325)
Tested by: atis
........
------------------------------------------------------------------------
http://svn.digium.com/view/asterisk?view=rev&revision=243245
Issue History
Date Modified Username Field Change
======================================================================
2010-01-26 12:08 svnbot Checkin
2010-01-26 12:08 svnbot Note Added: 0117205
======================================================================
More information about the asterisk-bugs
mailing list