Compare commits

...

7 Commits

Author SHA1 Message Date
Asterisk Autobuilder
ceb4fdd341 Importing release summary for 11.14.1 release.
git-svn-id: https://origsvn.digium.com/svn/asterisk/tags/11.14.1@428502 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2014-11-20 17:43:20 +00:00
Asterisk Autobuilder
95c803e78c Merge r428332 for AST-2014-017
git-svn-id: https://origsvn.digium.com/svn/asterisk/tags/11.14.1@428446 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2014-11-20 17:10:03 +00:00
Asterisk Autobuilder
f0c116e842 Merge r428299 for AST-2014-014
git-svn-id: https://origsvn.digium.com/svn/asterisk/tags/11.14.1@428440 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2014-11-20 17:00:01 +00:00
Asterisk Autobuilder
a6dac8c2df Merge r428363 for AST-2014-018
git-svn-id: https://origsvn.digium.com/svn/asterisk/tags/11.14.1@428433 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2014-11-20 16:47:25 +00:00
Asterisk Autobuilder
48677a521c Merge r428417 for AST-2014-012
git-svn-id: https://origsvn.digium.com/svn/asterisk/tags/11.14.1@428427 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2014-11-20 16:39:36 +00:00
Asterisk Autobuilder
0823b384df Update .version, remove summaries
git-svn-id: https://origsvn.digium.com/svn/asterisk/tags/11.14.1@428372 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2014-11-20 16:24:46 +00:00
Asterisk Autobuilder
2e5de7b8e9 Create 11.14.1
git-svn-id: https://origsvn.digium.com/svn/asterisk/tags/11.14.1@428336 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2014-11-20 15:49:23 +00:00
10 changed files with 261 additions and 927 deletions

View File

@@ -1 +1 @@
11.14.0
11.14.1

View File

@@ -1,3 +1,64 @@
2014-11-20 Asterisk Development Team <asteriskteam@digium.com>
* Asterisk 11.14.1 Released.
* AST-2014-012: Fix error with mixed address family ACLs.
Prior to this commit, the address family of the first item in an ACL
was used to compare all incoming traffic. This could lead to traffic
of other IP address families bypassing ACLs.
ASTERISK-24469 #close
Reported by Matt Jordan
* AST-2014-014: Fix race condition where channels may get stuck in
ConfBridge under load.
Under load it was possible for the bridging API, and thus ConfBridge,
to get channels that may have hung up stuck in it. This is because
handling of state transitions for a bridged channel within a bridge
was not protected and simply set the new state without regard to the
existing state. If the existing state had been hung up this would get
overwritten.
This change adds locking to protect changing of the state and also
takes into consideration the existing state.
ASTERISK-24440 #close
Reported by: Ben Klang
* AST-2014-017 - app_confbridge: permission escalation/ class
authorization.
Confbridge dialplan function permission escalation via AMI and
inappropriate class authorization on the ConfbridgeStartRecord action.
The CONFBRIDGE dialplan function when executed from an external
protocol (for instance AMI), could result in a privilege escalation.
Also, the AMI action “ConfbridgeStartRecord” could also be used to
execute arbitrary system commands without first checking for system
access.
Asterisk now inhibits the CONFBRIDGE function from being executed
from an external interface if the live_dangerously option is set to
no. Also, the “ConfbridgeStartRecord” AMI action is now only allowed
to execute under a user with system level access.
ASTERISK-24490
Reported by: Gareth Palmer
* AST-2014-018 - func_db: DB Dialplan function permission escalation
via AMI.
The DB dialplan function when executed from an external protocol
(for instance AMI), could result in a privilege escalation.
Asterisk now inhibits the DB function from being executed from an
external interface if the live_dangerously option is set to no.
ASTERISK-24534
Reported by: Gareth Palmer
patches: submitted by Gareth Palmer (license 5169)
2014-11-10 Asterisk Development Team <asteriskteam@digium.com>
* Asterisk 11.14.0 Released.

View File

@@ -3189,7 +3189,7 @@ static int load_module(void)
ast_log(LOG_ERROR, "Unable to load config. Not loading module.\n");
return AST_MODULE_LOAD_DECLINE;
}
if ((ast_custom_function_register(&confbridge_function))) {
if ((ast_custom_function_register_escalating(&confbridge_function, AST_CFE_WRITE))) {
return AST_MODULE_LOAD_FAILURE;
}
if ((ast_custom_function_register(&confbridge_info_function))) {
@@ -3220,7 +3220,7 @@ static int load_module(void)
res |= ast_manager_register_xml("ConfbridgeKick", EVENT_FLAG_CALL, action_confbridgekick);
res |= ast_manager_register_xml("ConfbridgeUnlock", EVENT_FLAG_CALL, action_confbridgeunlock);
res |= ast_manager_register_xml("ConfbridgeLock", EVENT_FLAG_CALL, action_confbridgelock);
res |= ast_manager_register_xml("ConfbridgeStartRecord", EVENT_FLAG_CALL, action_confbridgestartrecord);
res |= ast_manager_register_xml("ConfbridgeStartRecord", EVENT_FLAG_SYSTEM, action_confbridgestartrecord);
res |= ast_manager_register_xml("ConfbridgeStopRecord", EVENT_FLAG_CALL, action_confbridgestoprecord);
res |= ast_manager_register_xml("ConfbridgeSetSingleVideoSrc", EVENT_FLAG_CALL, action_confbridgesetsinglevideosrc);
if (res) {

View File

@@ -1,414 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /><title>Release Summary - asterisk-11.14.0</title></head>
<body>
<h1 align="center"><a name="top">Release Summary</a></h1>
<h3 align="center">asterisk-11.14.0</h3>
<h3 align="center">Date: 2014-11-10</h3>
<h3 align="center">&lt;asteriskteam@digium.com&gt;</h3>
<hr/>
<h2 align="center">Table of Contents</h2>
<ol>
<li><a href="#summary">Summary</a></li>
<li><a href="#contributors">Contributors</a></li>
<li><a href="#issues">Closed Issues</a></li>
<li><a href="#commits">Other Changes</a></li>
<li><a href="#diffstat">Diffstat</a></li>
</ol>
<hr/>
<a name="summary"><h2 align="center">Summary</h2></a>
<center><a href="#top">[Back to Top]</a></center><br/><p>This release includes only bug fixes. The changes included were made only to address problems that have been identified in this release series. Users should be able to safely upgrade to this version if this release series is already in use. Users considering upgrading from a previous release series are strongly encouraged to review the UPGRADE.txt document as well as the CHANGES document for information about upgrading to this release series.</p>
<p>The data in this summary reflects changes that have been made since the previous release, asterisk-11.13.0.</p>
<hr/>
<a name="contributors"><h2 align="center">Contributors</h2></a>
<center><a href="#top">[Back to Top]</a></center><br/><p>This table lists the people who have submitted code, those that have tested patches, as well as those that reported issues on the issue tracker that were resolved in this release. For coders, the number is how many of their patches (of any size) were committed into this release. For testers, the number is the number of times their name was listed as assisting with testing a patch. Finally, for reporters, the number is the number of issues that they reported that were closed by commits that went into this release.</p>
<table width="100%" border="0">
<tr>
<td width="33%"><h3>Coders</h3></td>
<td width="33%"><h3>Testers</h3></td>
<td width="33%"><h3>Reporters</h3></td>
</tr>
<tr valign="top">
<td>
13 coreyfarrell<br/>
8 wdoekes<br/>
6 mjordan<br/>
4 bebuild<br/>
3 file<br/>
3 mdavenport<br/>
3 Torrey Searle<br/>
2 igorg<br/>
2 Nitesh Bansal<br/>
2 tzafrir<br/>
1 abelbeck<br/>
1 Damian Ivereigh<br/>
1 ibercom<br/>
1 jcolp<br/>
1 Jeremy Laine<br/>
1 Jeremy Lainé<br/>
1 kharwell<br/>
1 kmoore<br/>
1 may<br/>
1 Michael Myles<br/>
1 oej<br/>
1 Peter Katzmann<br/>
</td>
<td>
1 abelbeck<br/>
1 Dmitry Melekhov<br/>
1 Etienne Lessard<br/>
1 gtjoseph<br/>
1 Nick Adams<br/>
1 opsmonitor<br/>
1 Paolo Compagnini<br/>
1 Yuriy Gorlichenko<br/>
</td>
<td>
10 coreyfarrell<br/>
3 tzafrir<br/>
2 sharky<br/>
2 tsearle<br/>
1 abelbeck<br/>
1 boroda<br/>
1 dafi<br/>
1 damianivereigh<br/>
1 dhanapathy<br/>
1 hexanol<br/>
1 ibercom<br/>
1 jcolp<br/>
1 kharwell<br/>
1 laimbock<br/>
1 looserouting<br/>
1 Narkov<br/>
1 nbansal<br/>
1 oej<br/>
1 pk16208<br/>
1 rustamxp<br/>
1 slesru<br/>
1 wdoekes<br/>
1 xdrive<br/>
</td>
</tr>
</table>
<hr/>
<a name="issues"><h2 align="center">Closed Issues</h2></a>
<center><a href="#top">[Back to Top]</a></center><br/><p>This is a list of all issues from the issue tracker that were closed by changes that went into this release.</p>
<h3>Category: Addons/chan_ooh323</h3><br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-24393">ASTERISK-24393</a>: rtptimeout=0 doesn't disable rtptimeout<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=425548">425548</a><br/>
Reporter: slesru<br/>
Testers: Dmitry Melekhov<br/>
Coders: may<br/>
<br/>
<h3>Category: Applications/app_queue</h3><br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-24454">ASTERISK-24454</a>: app_queue: ao2_iterator not destroyed, causing leak<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=426255">426255</a><br/>
Reporter: coreyfarrell<br/>
Coders: coreyfarrell<br/>
<br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-24466">ASTERISK-24466</a>: app_queue: fix a couple leaks to struct call_queue<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=426805">426805</a><br/>
Reporter: coreyfarrell<br/>
Coders: coreyfarrell<br/>
<br/>
<h3>Category: Applications/app_voicemail</h3><br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-24190">ASTERISK-24190</a>: IMAP voicemail causes segfault<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=426692">426692</a><br/>
Reporter: Narkov<br/>
Testers: Nick Adams<br/>
Coders: wdoekes<br/>
<br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-24476">ASTERISK-24476</a>: main/app.c / app_voicemail: ast_writestream leaks<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=427024">427024</a><br/>
Reporter: coreyfarrell<br/>
Coders: coreyfarrell<br/>
<br/>
<h3>Category: Applications/app_voicemail/IMAP</h3><br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-24190">ASTERISK-24190</a>: IMAP voicemail causes segfault<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=426692">426692</a><br/>
Reporter: Narkov<br/>
Testers: Nick Adams<br/>
Coders: wdoekes<br/>
<br/>
<h3>Category: Channels/chan_motif</h3><br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-24384">ASTERISK-24384</a>: chan_motif: format capabilities leak on module load error<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=424550">424550</a><br/>
Reporter: coreyfarrell<br/>
Coders: coreyfarrell<br/>
<br/>
<h3>Category: Channels/chan_sip/General</h3><br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-15879">ASTERISK-15879</a>: [patch] Failure to receive an ACK to a SIP Re-INVITE results in a SIP channel leak<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=425069">425069</a><br/>
Reporter: tsearle<br/>
Coders: Torrey Searle, Nitesh Bansal<br/>
<br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-20784">ASTERISK-20784</a>: Failure to receive an ACK to a SIP Re-INVITE results in a SIP channel leak<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=425069">425069</a><br/>
Reporter: nbansal<br/>
Coders: Torrey Searle, Nitesh Bansal<br/>
<br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-22791">ASTERISK-22791</a>: asterisk sends Re-INVITE after receiving a BYE<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=425297">425297</a><br/>
Reporter: looserouting<br/>
Testers: Paolo Compagnini<br/>
Coders: wdoekes<br/>
<br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-22945">ASTERISK-22945</a>: [patch] Memory leaks in chan_sip.c with realtime peers<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=424177">424177</a><br/>
Reporter: ibercom<br/>
Testers: Yuriy Gorlichenko<br/>
Coders: ibercom<br/>
<br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-24063">ASTERISK-24063</a>: [patch]Asterisk does not respect outbound proxy when sending qualify requests<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=425819">425819</a><br/>
Reporter: damianivereigh<br/>
Coders: Damian Ivereigh<br/>
<br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-24335">ASTERISK-24335</a>: [PATCH] Asterisk incorrectly responds 503 to INVITE retransmissions of rejected calls<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=423721">423721</a><br/>
Reporter: tsearle<br/>
Coders: Torrey Searle<br/>
<br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-24385">ASTERISK-24385</a>: chan_sip: process_sdp leaks on an error path<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=424569">424569</a><br/>
Reporter: coreyfarrell<br/>
Coders: coreyfarrell<br/>
<br/>
<h3>Category: Channels/chan_sip/Interoperability</h3><br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-21721">ASTERISK-21721</a>: SIP Failed to parse multiple Supported: headers<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=426595">426595</a><br/>
Reporter: oej<br/>
Coders: oej<br/>
<br/>
<h3>Category: Channels/chan_sip/T.38</h3><br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-22791">ASTERISK-22791</a>: asterisk sends Re-INVITE after receiving a BYE<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=425297">425297</a><br/>
Reporter: looserouting<br/>
Testers: Paolo Compagnini<br/>
Coders: wdoekes<br/>
<br/>
<h3>Category: Channels/chan_unistim</h3><br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-23846">ASTERISK-23846</a>: Unistim multilines. Loss of voice after second call drops (on a second line).<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=425667">425667</a><br/>
Reporter: rustamxp<br/>
Coders: igorg<br/>
<br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-24304">ASTERISK-24304</a>: asterisk crashing randomly because of unistim channel<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=426666">426666</a><br/>
Reporter: dhanapathy<br/>
Coders: igorg<br/>
<br/>
<h3>Category: Contrib/General</h3><br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-24011">ASTERISK-24011</a>: [patch]safe_asterisk tries to set ulimit -n too high on linux systems with lots of RAM<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=424878">424878</a><br/>
Reporter: xdrive<br/>
Coders: Michael Myles<br/>
<br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-24432">ASTERISK-24432</a>: Install refcounter.py when REF_DEBUG is enabled<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=426831">426831</a><br/>
Reporter: coreyfarrell<br/>
Coders: coreyfarrell<br/>
<br/>
<h3>Category: Core/AstMM</h3><br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-24390">ASTERISK-24390</a>: astobj2: REF_DEBUG reports false leaks with ao2_callback with OBJ_MULTIPLE<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=424787">424787</a><br/>
Reporter: coreyfarrell<br/>
Coders: coreyfarrell<br/>
<br/>
<h3>Category: Core/BuildSystem</h3><br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-13797">ASTERISK-13797</a>: [patch] relax badshell tilde test<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=425292">425292</a><br/>
Reporter: tzafrir<br/>
Coders: wdoekes<br/>
<br/>
<h3>Category: Core/CallerID</h3><br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-24406">ASTERISK-24406</a>: Some caller ID strings are parsed differently since 11.13.0<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=425153">425153</a><br/>
Reporter: hexanol<br/>
Testers: Etienne Lessard<br/>
Coders: kmoore<br/>
<br/>
<h3>Category: Core/General</h3><br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-24348">ASTERISK-24348</a>: Built-in editline tab complete segfault with MALLOC_DEBUG<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=423658">423658</a><br/>
Reporter: wdoekes<br/>
Coders: wdoekes<br/>
<br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-24476">ASTERISK-24476</a>: main/app.c / app_voicemail: ast_writestream leaks<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=427024">427024</a><br/>
Reporter: coreyfarrell<br/>
Coders: coreyfarrell<br/>
<br/>
<h3>Category: Core/ManagerInterface</h3><br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-24354">ASTERISK-24354</a>: AMI sendMessage closes AMI connection on error<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=424690">424690</a><br/>
Reporter: pk16208<br/>
Coders: Peter Katzmann<br/>
<br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-24378">ASTERISK-24378</a>: Release AMI connections on shutdown<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=424578">424578</a><br/>
Reporter: coreyfarrell<br/>
Coders: coreyfarrell<br/>
<br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-24430">ASTERISK-24430</a>: missing letter "p" in word response in OriginateResponse event documentation<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=426366">426366</a><br/>
Reporter: dafi<br/>
Coders: mjordan<br/>
<br/>
<h3>Category: Documentation</h3><br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-23768">ASTERISK-23768</a>: [patch] Asterisk man page contains a (new) unquoted minus sign<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=423916">423916</a><br/>
Reporter: sharky<br/>
Coders: Jeremy Lainé<br/>
<br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-24430">ASTERISK-24430</a>: missing letter "p" in word response in OriginateResponse event documentation<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=426366">426366</a><br/>
Reporter: dafi<br/>
Coders: mjordan<br/>
<br/>
<h3>Category: General</h3><br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-20567">ASTERISK-20567</a>: bashism in autosupport<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=424117">424117</a><br/>
Reporter: tzafrir<br/>
Coders: wdoekes<br/>
<br/>
<h3>Category: Resources/res_calendar_ews</h3><br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-24325">ASTERISK-24325</a>: res_calendar_ews: cannot be used with neon 0.30<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=425287">425287</a><br/>
Reporter: tzafrir<br/>
Coders: wdoekes<br/>
<br/>
<h3>Category: Resources/res_fax</h3><br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-22791">ASTERISK-22791</a>: asterisk sends Re-INVITE after receiving a BYE<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=425297">425297</a><br/>
Reporter: looserouting<br/>
Testers: Paolo Compagnini<br/>
Coders: wdoekes<br/>
<br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-24357">ASTERISK-24357</a>: [fax] Out of bounds error in update_modem_bits<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=423983">423983</a><br/>
Reporter: sharky<br/>
Coders: Jeremy Laine<br/>
<br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-24392">ASTERISK-24392</a>: res_fax: fax gateway sessions leak<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=425457">425457</a><br/>
Reporter: coreyfarrell<br/>
Coders: coreyfarrell<br/>
<br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-24457">ASTERISK-24457</a>: res_fax: fax gateway frames leak<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=426527">426527</a><br/>
Reporter: coreyfarrell<br/>
Coders: coreyfarrell<br/>
<br/>
<h3>Category: Resources/res_fax_spandsp</h3><br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-18923">ASTERISK-18923</a>: res_fax_spandsp usage counter is wrong<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=425407">425407</a><br/>
Reporter: boroda<br/>
Coders: coreyfarrell<br/>
<br/>
<h3>Category: Resources/res_jabber</h3><br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-24425">ASTERISK-24425</a>: [patch] jabber/xmpp to use TLS instead of SSLv3, security fix POODLE (CVE-2014-3566)<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=425986">425986</a><br/>
Reporter: abelbeck<br/>
Testers: abelbeck, opsmonitor, gtjoseph<br/>
Coders: abelbeck, mjordan<br/>
<br/>
<h3>Category: Resources/res_rtp_asterisk</h3><br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-24326">ASTERISK-24326</a>: res_rtp_asterisk: ICE-TCP candidates are incorrectly attempted<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=424852">424852</a><br/>
Reporter: jcolp<br/>
Coders: jcolp<br/>
<br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-24383">ASTERISK-24383</a>: res_rtp_asterisk: Crash if no candidates received for component<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=425029">425029</a><br/>
Reporter: kharwell<br/>
Coders: kharwell<br/>
<br/>
<h3>Category: Resources/res_srtp</h3><br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-24436">ASTERISK-24436</a>: Missing header in res/res_srtp.c when compiling against libsrtp-1.5.0<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=426141">426141</a><br/>
Reporter: laimbock<br/>
Coders: mjordan<br/>
<br/>
<h3>Category: Resources/res_xmpp</h3><br/>
<a href="https://issues.asterisk.org/jira/browse/ASTERISK-24425">ASTERISK-24425</a>: [patch] jabber/xmpp to use TLS instead of SSLv3, security fix POODLE (CVE-2014-3566)<br/>
Revision: <a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=425986">425986</a><br/>
Reporter: abelbeck<br/>
Testers: abelbeck, opsmonitor, gtjoseph<br/>
Coders: abelbeck, mjordan<br/>
<br/>
<hr/>
<a name="commits"><h2 align="center">Commits Not Associated with an Issue</h2></a>
<center><a href="#top">[Back to Top]</a></center><br/><p>This is a list of all changes that went into this release that did not directly close an issue from the issue tracker. The commits may have been marked as being related to an issue. If that is the case, the issue numbers are listed here, as well.</p>
<table width="100%" border="1">
<tr><td><b>Revision</b></td><td><b>Author</b></td><td><b>Summary</b></td><td><b>Issues Referenced</b></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=423801">423801</a></td><td>wdoekes</td><td>chan_sip: Unref outbound proxy structure on dialog/pvt destruction.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=424151">424151</a></td><td>file</td><td>res_rtp_asterisk: Ensure that the base and mapped address for candidates is present in SDP.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=424182">424182</a></td><td>wdoekes</td><td>chan_sip: Simplify some unref code by removing unlink_peer_from_tables.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=425360">425360</a></td><td>file</td><td>res_rtp_asterisk: Make the ICE transport check case insensitive as some implementations use 'udp'.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=425644">425644</a></td><td>file</td><td>res_rtp_asterisk: Fix a bug where ICE state would get reset when it shouldn't.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=426209">426209</a></td><td>mjordan</td><td>res/res_http_websocket: Fix minor nits found by wdoekes on r409681</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=426291">426291</a></td><td>mdavenport</td><td>ASTERISK-24419, fix incorrect syntax for setting language in extensions.conf.sample</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=426359">426359</a></td><td>mdavenport</td><td>ASTERISK-24323, fix bug in documentation of AGI STREAM FILE CONTROL</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=426456">426456</a></td><td>mdavenport</td><td>ASTERISK-23512, correct inaccurate comment in manager.conf.sample</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=426600">426600</a></td><td>mjordan</td><td>channels/chan_sip: Add improved support for 4xx error codes</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=426860">426860</a></td><td>mjordan</td><td>channels/sip/reqresp_parser: Fix unit tests for r426594</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=426927">426927</a></td><td>tzafrir</td><td>install init.d files on GNU/kFreeBSD</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=426931">426931</a></td><td>tzafrir</td><td>Fix syntax from commit r426927</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=427019">427019</a></td><td>coreyfarrell</td><td>func_jitterbuffer: fix frame leaks.</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=427087">427087</a></td><td>coreyfarrell</td><td>Fix compile error caused by review 4138</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=427543">427543</a></td><td>bebuild</td><td>Create 11.14.0-rc2</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=427546">427546</a></td><td>bebuild</td><td>Update version, remove old summaries</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=427549">427549</a></td><td>bebuild</td><td>Merge 427381 for rc2; update ChangeLog</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/branches/11?view=revision&revision=427552">427552</a></td><td>bebuild</td><td>Importing release summary for 11.14.0-rc2 release.</td>
<td></td></tr></table>
<hr/>
<a name="diffstat"><h2 align="center">Diffstat Results</h2></a>
<center><a href="#top">[Back to Top]</a></center><br/><p>This is a summary of the changes to the source code that went into this release that was generated using the diffstat utility.</p>
<pre>
.version | 2
ChangeLog | 18 +
Makefile | 6
UPGRADE.txt | 12
addons/chan_ooh323.c | 2
apps/app_queue.c | 9
apps/app_voicemail.c | 36 ++
asterisk-11.14.0-rc1-summary.html | 396 ----------------------------
asterisk-11.14.0-rc1-summary.txt | 479 ----------------------------------
asterisk-11.14.0-rc2-summary.html | 62 ++++
asterisk-11.14.0-rc2-summary.txt | 93 ++++++
channels/chan_motif.c | 6
channels/chan_sip.c | 117 +++++---
channels/chan_unistim.c | 24 +
channels/sip/include/reqresp_parser.h | 5
channels/sip/reqresp_parser.c | 6
configs/extensions.conf.sample | 2
configs/manager.conf.sample | 2
contrib/Makefile | 29 ++
contrib/scripts/autosupport | 12
contrib/scripts/safe_asterisk | 11
doc/asterisk.8 | 2
funcs/func_jitterbuffer.c | 11
include/asterisk/stringfields.h | 32 +-
main/abstract_jb.c | 4
main/app.c | 18 -
main/astobj2.c | 2
main/callerid.c | 16 -
main/editline/readline.c | 1
main/manager.c | 14
main/message.c | 8
main/tcptls.c | 22 +
main/utils.c | 15 -
res/res_agi.c | 4
res/res_calendar_ews.c | 13
res/res_fax.c | 31 +-
res/res_http_websocket.c | 16 -
res/res_jabber.c | 5
res/res_rtp_asterisk.c | 37 +-
res/res_srtp.c | 1
res/res_xmpp.c | 6
tests/test_callerid.c | 4
42 files changed, 547 insertions(+), 1044 deletions(-)
</pre><br/>
<hr/>
</body>
</html>

View File

@@ -1,503 +0,0 @@
Release Summary
asterisk-11.14.0
Date: 2014-11-10
<asteriskteam@digium.com>
----------------------------------------------------------------------
Table of Contents
1. Summary
2. Contributors
3. Closed Issues
4. Other Changes
5. Diffstat
----------------------------------------------------------------------
Summary
[Back to Top]
This release includes only bug fixes. The changes included were made only
to address problems that have been identified in this release series.
Users should be able to safely upgrade to this version if this release
series is already in use. Users considering upgrading from a previous
release series are strongly encouraged to review the UPGRADE.txt document
as well as the CHANGES document for information about upgrading to this
release series.
The data in this summary reflects changes that have been made since the
previous release, asterisk-11.13.0.
----------------------------------------------------------------------
Contributors
[Back to Top]
This table lists the people who have submitted code, those that have
tested patches, as well as those that reported issues on the issue tracker
that were resolved in this release. For coders, the number is how many of
their patches (of any size) were committed into this release. For testers,
the number is the number of times their name was listed as assisting with
testing a patch. Finally, for reporters, the number is the number of
issues that they reported that were closed by commits that went into this
release.
Coders Testers Reporters
13 coreyfarrell 1 abelbeck 10 coreyfarrell
8 wdoekes 1 Dmitry Melekhov 3 tzafrir
6 mjordan 1 Etienne Lessard 2 sharky
4 bebuild 1 gtjoseph 2 tsearle
3 file 1 Nick Adams 1 abelbeck
3 mdavenport 1 opsmonitor 1 boroda
3 Torrey Searle 1 Paolo Compagnini 1 dafi
2 igorg 1 Yuriy Gorlichenko 1 damianivereigh
2 Nitesh Bansal 1 dhanapathy
2 tzafrir 1 hexanol
1 abelbeck 1 ibercom
1 Damian Ivereigh 1 jcolp
1 ibercom 1 kharwell
1 jcolp 1 laimbock
1 Jeremy Laine 1 looserouting
1 Jeremy LainA(c) 1 Narkov
1 kharwell 1 nbansal
1 kmoore 1 oej
1 may 1 pk16208
1 Michael Myles 1 rustamxp
1 oej 1 slesru
1 Peter Katzmann 1 wdoekes
1 xdrive
----------------------------------------------------------------------
Closed Issues
[Back to Top]
This is a list of all issues from the issue tracker that were closed by
changes that went into this release.
Category: Addons/chan_ooh323
ASTERISK-24393: rtptimeout=0 doesn't disable rtptimeout
Revision: 425548
Reporter: slesru
Testers: Dmitry Melekhov
Coders: may
Category: Applications/app_queue
ASTERISK-24454: app_queue: ao2_iterator not destroyed, causing leak
Revision: 426255
Reporter: coreyfarrell
Coders: coreyfarrell
ASTERISK-24466: app_queue: fix a couple leaks to struct call_queue
Revision: 426805
Reporter: coreyfarrell
Coders: coreyfarrell
Category: Applications/app_voicemail
ASTERISK-24190: IMAP voicemail causes segfault
Revision: 426692
Reporter: Narkov
Testers: Nick Adams
Coders: wdoekes
ASTERISK-24476: main/app.c / app_voicemail: ast_writestream leaks
Revision: 427024
Reporter: coreyfarrell
Coders: coreyfarrell
Category: Applications/app_voicemail/IMAP
ASTERISK-24190: IMAP voicemail causes segfault
Revision: 426692
Reporter: Narkov
Testers: Nick Adams
Coders: wdoekes
Category: Channels/chan_motif
ASTERISK-24384: chan_motif: format capabilities leak on module load error
Revision: 424550
Reporter: coreyfarrell
Coders: coreyfarrell
Category: Channels/chan_sip/General
ASTERISK-15879: [patch] Failure to receive an ACK to a SIP Re-INVITE
results in a SIP channel leak
Revision: 425069
Reporter: tsearle
Coders: Torrey Searle, Nitesh Bansal
ASTERISK-20784: Failure to receive an ACK to a SIP Re-INVITE results in a
SIP channel leak
Revision: 425069
Reporter: nbansal
Coders: Torrey Searle, Nitesh Bansal
ASTERISK-22791: asterisk sends Re-INVITE after receiving a BYE
Revision: 425297
Reporter: looserouting
Testers: Paolo Compagnini
Coders: wdoekes
ASTERISK-22945: [patch] Memory leaks in chan_sip.c with realtime peers
Revision: 424177
Reporter: ibercom
Testers: Yuriy Gorlichenko
Coders: ibercom
ASTERISK-24063: [patch]Asterisk does not respect outbound proxy when
sending qualify requests
Revision: 425819
Reporter: damianivereigh
Coders: Damian Ivereigh
ASTERISK-24335: [PATCH] Asterisk incorrectly responds 503 to INVITE
retransmissions of rejected calls
Revision: 423721
Reporter: tsearle
Coders: Torrey Searle
ASTERISK-24385: chan_sip: process_sdp leaks on an error path
Revision: 424569
Reporter: coreyfarrell
Coders: coreyfarrell
Category: Channels/chan_sip/Interoperability
ASTERISK-21721: SIP Failed to parse multiple Supported: headers
Revision: 426595
Reporter: oej
Coders: oej
Category: Channels/chan_sip/T.38
ASTERISK-22791: asterisk sends Re-INVITE after receiving a BYE
Revision: 425297
Reporter: looserouting
Testers: Paolo Compagnini
Coders: wdoekes
Category: Channels/chan_unistim
ASTERISK-23846: Unistim multilines. Loss of voice after second call drops
(on a second line).
Revision: 425667
Reporter: rustamxp
Coders: igorg
ASTERISK-24304: asterisk crashing randomly because of unistim channel
Revision: 426666
Reporter: dhanapathy
Coders: igorg
Category: Contrib/General
ASTERISK-24011: [patch]safe_asterisk tries to set ulimit -n too high on
linux systems with lots of RAM
Revision: 424878
Reporter: xdrive
Coders: Michael Myles
ASTERISK-24432: Install refcounter.py when REF_DEBUG is enabled
Revision: 426831
Reporter: coreyfarrell
Coders: coreyfarrell
Category: Core/AstMM
ASTERISK-24390: astobj2: REF_DEBUG reports false leaks with ao2_callback
with OBJ_MULTIPLE
Revision: 424787
Reporter: coreyfarrell
Coders: coreyfarrell
Category: Core/BuildSystem
ASTERISK-13797: [patch] relax badshell tilde test
Revision: 425292
Reporter: tzafrir
Coders: wdoekes
Category: Core/CallerID
ASTERISK-24406: Some caller ID strings are parsed differently since
11.13.0
Revision: 425153
Reporter: hexanol
Testers: Etienne Lessard
Coders: kmoore
Category: Core/General
ASTERISK-24348: Built-in editline tab complete segfault with MALLOC_DEBUG
Revision: 423658
Reporter: wdoekes
Coders: wdoekes
ASTERISK-24476: main/app.c / app_voicemail: ast_writestream leaks
Revision: 427024
Reporter: coreyfarrell
Coders: coreyfarrell
Category: Core/ManagerInterface
ASTERISK-24354: AMI sendMessage closes AMI connection on error
Revision: 424690
Reporter: pk16208
Coders: Peter Katzmann
ASTERISK-24378: Release AMI connections on shutdown
Revision: 424578
Reporter: coreyfarrell
Coders: coreyfarrell
ASTERISK-24430: missing letter "p" in word response in OriginateResponse
event documentation
Revision: 426366
Reporter: dafi
Coders: mjordan
Category: Documentation
ASTERISK-23768: [patch] Asterisk man page contains a (new) unquoted minus
sign
Revision: 423916
Reporter: sharky
Coders: Jeremy LainA(c)
ASTERISK-24430: missing letter "p" in word response in OriginateResponse
event documentation
Revision: 426366
Reporter: dafi
Coders: mjordan
Category: General
ASTERISK-20567: bashism in autosupport
Revision: 424117
Reporter: tzafrir
Coders: wdoekes
Category: Resources/res_calendar_ews
ASTERISK-24325: res_calendar_ews: cannot be used with neon 0.30
Revision: 425287
Reporter: tzafrir
Coders: wdoekes
Category: Resources/res_fax
ASTERISK-22791: asterisk sends Re-INVITE after receiving a BYE
Revision: 425297
Reporter: looserouting
Testers: Paolo Compagnini
Coders: wdoekes
ASTERISK-24357: [fax] Out of bounds error in update_modem_bits
Revision: 423983
Reporter: sharky
Coders: Jeremy Laine
ASTERISK-24392: res_fax: fax gateway sessions leak
Revision: 425457
Reporter: coreyfarrell
Coders: coreyfarrell
ASTERISK-24457: res_fax: fax gateway frames leak
Revision: 426527
Reporter: coreyfarrell
Coders: coreyfarrell
Category: Resources/res_fax_spandsp
ASTERISK-18923: res_fax_spandsp usage counter is wrong
Revision: 425407
Reporter: boroda
Coders: coreyfarrell
Category: Resources/res_jabber
ASTERISK-24425: [patch] jabber/xmpp to use TLS instead of SSLv3, security
fix POODLE (CVE-2014-3566)
Revision: 425986
Reporter: abelbeck
Testers: abelbeck, opsmonitor, gtjoseph
Coders: abelbeck, mjordan
Category: Resources/res_rtp_asterisk
ASTERISK-24326: res_rtp_asterisk: ICE-TCP candidates are incorrectly
attempted
Revision: 424852
Reporter: jcolp
Coders: jcolp
ASTERISK-24383: res_rtp_asterisk: Crash if no candidates received for
component
Revision: 425029
Reporter: kharwell
Coders: kharwell
Category: Resources/res_srtp
ASTERISK-24436: Missing header in res/res_srtp.c when compiling against
libsrtp-1.5.0
Revision: 426141
Reporter: laimbock
Coders: mjordan
Category: Resources/res_xmpp
ASTERISK-24425: [patch] jabber/xmpp to use TLS instead of SSLv3, security
fix POODLE (CVE-2014-3566)
Revision: 425986
Reporter: abelbeck
Testers: abelbeck, opsmonitor, gtjoseph
Coders: abelbeck, mjordan
----------------------------------------------------------------------
Commits Not Associated with an Issue
[Back to Top]
This is a list of all changes that went into this release that did not
directly close an issue from the issue tracker. The commits may have been
marked as being related to an issue. If that is the case, the issue
numbers are listed here, as well.
+------------------------------------------------------------------------+
| Revision | Author | Summary | Issues |
| | | | Referenced |
|----------+--------------+---------------------------------+------------|
| | | chan_sip: Unref outbound proxy | |
| 423801 | wdoekes | structure on dialog/pvt | |
| | | destruction. | |
|----------+--------------+---------------------------------+------------|
| | | res_rtp_asterisk: Ensure that | |
| 424151 | file | the base and mapped address for | |
| | | candidates is present in SDP. | |
|----------+--------------+---------------------------------+------------|
| | | chan_sip: Simplify some unref | |
| 424182 | wdoekes | code by removing | |
| | | unlink_peer_from_tables. | |
|----------+--------------+---------------------------------+------------|
| | | res_rtp_asterisk: Make the ICE | |
| 425360 | file | transport check case | |
| | | insensitive as some | |
| | | implementations use 'udp'. | |
|----------+--------------+---------------------------------+------------|
| | | res_rtp_asterisk: Fix a bug | |
| 425644 | file | where ICE state would get reset | |
| | | when it shouldn't. | |
|----------+--------------+---------------------------------+------------|
| | | res/res_http_websocket: Fix | |
| 426209 | mjordan | minor nits found by wdoekes on | |
| | | r409681 | |
|----------+--------------+---------------------------------+------------|
| | | ASTERISK-24419, fix incorrect | |
| 426291 | mdavenport | syntax for setting language in | |
| | | extensions.conf.sample | |
|----------+--------------+---------------------------------+------------|
| | | ASTERISK-24323, fix bug in | |
| 426359 | mdavenport | documentation of AGI STREAM | |
| | | FILE CONTROL | |
|----------+--------------+---------------------------------+------------|
| | | ASTERISK-23512, correct | |
| 426456 | mdavenport | inaccurate comment in | |
| | | manager.conf.sample | |
|----------+--------------+---------------------------------+------------|
| 426600 | mjordan | channels/chan_sip: Add improved | |
| | | support for 4xx error codes | |
|----------+--------------+---------------------------------+------------|
| 426860 | mjordan | channels/sip/reqresp_parser: | |
| | | Fix unit tests for r426594 | |
|----------+--------------+---------------------------------+------------|
| 426927 | tzafrir | install init.d files on | |
| | | GNU/kFreeBSD | |
|----------+--------------+---------------------------------+------------|
| 426931 | tzafrir | Fix syntax from commit r426927 | |
|----------+--------------+---------------------------------+------------|
| 427019 | coreyfarrell | func_jitterbuffer: fix frame | |
| | | leaks. | |
|----------+--------------+---------------------------------+------------|
| 427087 | coreyfarrell | Fix compile error caused by | |
| | | review 4138 | |
|----------+--------------+---------------------------------+------------|
| 427543 | bebuild | Create 11.14.0-rc2 | |
|----------+--------------+---------------------------------+------------|
| 427546 | bebuild | Update version, remove old | |
| | | summaries | |
|----------+--------------+---------------------------------+------------|
| 427549 | bebuild | Merge 427381 for rc2; update | |
| | | ChangeLog | |
|----------+--------------+---------------------------------+------------|
| 427552 | bebuild | Importing release summary for | |
| | | 11.14.0-rc2 release. | |
+------------------------------------------------------------------------+
----------------------------------------------------------------------
Diffstat Results
[Back to Top]
This is a summary of the changes to the source code that went into this
release that was generated using the diffstat utility.
.version | 2
ChangeLog | 18 +
Makefile | 6
UPGRADE.txt | 12
addons/chan_ooh323.c | 2
apps/app_queue.c | 9
apps/app_voicemail.c | 36 ++
asterisk-11.14.0-rc1-summary.html | 396 ----------------------------
asterisk-11.14.0-rc1-summary.txt | 479 ----------------------------------
asterisk-11.14.0-rc2-summary.html | 62 ++++
asterisk-11.14.0-rc2-summary.txt | 93 ++++++
channels/chan_motif.c | 6
channels/chan_sip.c | 117 +++++---
channels/chan_unistim.c | 24 +
channels/sip/include/reqresp_parser.h | 5
channels/sip/reqresp_parser.c | 6
configs/extensions.conf.sample | 2
configs/manager.conf.sample | 2
contrib/Makefile | 29 ++
contrib/scripts/autosupport | 12
contrib/scripts/safe_asterisk | 11
doc/asterisk.8 | 2
funcs/func_jitterbuffer.c | 11
include/asterisk/stringfields.h | 32 +-
main/abstract_jb.c | 4
main/app.c | 18 -
main/astobj2.c | 2
main/callerid.c | 16 -
main/editline/readline.c | 1
main/manager.c | 14
main/message.c | 8
main/tcptls.c | 22 +
main/utils.c | 15 -
res/res_agi.c | 4
res/res_calendar_ews.c | 13
res/res_fax.c | 31 +-
res/res_http_websocket.c | 16 -
res/res_jabber.c | 5
res/res_rtp_asterisk.c | 37 +-
res/res_srtp.c | 1
res/res_xmpp.c | 6
tests/test_callerid.c | 4
42 files changed, 547 insertions(+), 1044 deletions(-)
----------------------------------------------------------------------

View File

@@ -0,0 +1,68 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /><title>Release Summary - asterisk-11.14.1</title></head>
<body>
<h1 align="center"><a name="top">Release Summary</a></h1>
<h3 align="center">asterisk-11.14.1</h3>
<h3 align="center">Date: 2014-11-20</h3>
<h3 align="center">&lt;asteriskteam@digium.com&gt;</h3>
<hr/>
<h2 align="center">Table of Contents</h2>
<ol>
<li><a href="#summary">Summary</a></li>
<li><a href="#contributors">Contributors</a></li>
<li><a href="#commits">Other Changes</a></li>
<li><a href="#diffstat">Diffstat</a></li>
</ol>
<hr/>
<a name="summary"><h2 align="center">Summary</h2></a>
<center><a href="#top">[Back to Top]</a></center><br/><p>This release has been made to address one or more security vulnerabilities that have been identified. A security advisory document has been published for each vulnerability that includes additional information. Users of versions of Asterisk that are affected are strongly encouraged to review the advisories and determine what action they should take to protect their systems from these issues.</p>
<p>Security Advisories: <a href="http://downloads.asterisk.org/pub/security/AST-2014-012.html">AST-2014-012</a>, <a href="http://downloads.asterisk.org/pub/security/AST-2014-014.html">AST-2014-014</a>, <a href="http://downloads.asterisk.org/pub/security/AST-2014-017.html">AST-2014-017</a>, <a href="http://downloads.asterisk.org/pub/security/AST-2014-018.html">AST-2014-018</a></p>
<p>The data in this summary reflects changes that have been made since the previous release, asterisk-11.14.0.</p>
<hr/>
<a name="contributors"><h2 align="center">Contributors</h2></a>
<center><a href="#top">[Back to Top]</a></center><br/><p>This table lists the people who have submitted code, those that have tested patches, as well as those that reported issues on the issue tracker that were resolved in this release. For coders, the number is how many of their patches (of any size) were committed into this release. For testers, the number is the number of times their name was listed as assisting with testing a patch. Finally, for reporters, the number is the number of issues that they reported that were closed by commits that went into this release.</p>
<table width="100%" border="0">
<tr>
<td width="33%"><h3>Coders</h3></td>
<td width="33%"><h3>Testers</h3></td>
<td width="33%"><h3>Reporters</h3></td>
</tr>
<tr valign="top">
<td>
6 bebuild<br/>
</td>
<td>
</td>
<td>
</td>
</tr>
</table>
<hr/>
<a name="commits"><h2 align="center">Commits Not Associated with an Issue</h2></a>
<center><a href="#top">[Back to Top]</a></center><br/><p>This is a list of all changes that went into this release that did not directly close an issue from the issue tracker. The commits may have been marked as being related to an issue. If that is the case, the issue numbers are listed here, as well.</p>
<table width="100%" border="1">
<tr><td><b>Revision</b></td><td><b>Author</b></td><td><b>Summary</b></td><td><b>Issues Referenced</b></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/tags/11.14.1?view=revision&revision=428336">428336</a></td><td>bebuild</td><td>Create 11.14.1</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/tags/11.14.1?view=revision&revision=428372">428372</a></td><td>bebuild</td><td>Update .version, remove summaries</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/tags/11.14.1?view=revision&revision=428427">428427</a></td><td>bebuild</td><td>Merge r428417 for AST-2014-012</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/tags/11.14.1?view=revision&revision=428433">428433</a></td><td>bebuild</td><td>Merge r428363 for AST-2014-018</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/tags/11.14.1?view=revision&revision=428440">428440</a></td><td>bebuild</td><td>Merge r428299 for AST-2014-014</td>
<td></td></tr><tr><td><a href="http://svn.digium.com/view/asterisk/tags/11.14.1?view=revision&revision=428446">428446</a></td><td>bebuild</td><td>Merge r428332 for AST-2014-017</td>
<td></td></tr></table>
<hr/>
<a name="diffstat"><h2 align="center">Diffstat Results</h2></a>
<center><a href="#top">[Back to Top]</a></center><br/><p>This is a summary of the changes to the source code that went into this release that was generated using the diffstat utility.</p>
<pre>
.version | 2
ChangeLog | 61 +++++
apps/app_confbridge.c | 4
asterisk-11.14.0-summary.html | 414 ----------------------------------
asterisk-11.14.0-summary.txt | 503 ------------------------------------------
funcs/func_db.c | 2
main/acl.c | 2
main/bridging.c | 26 +-
8 files changed, 87 insertions(+), 927 deletions(-)
</pre><br/>
<hr/>
</body>
</html>

View File

@@ -0,0 +1,106 @@
Release Summary
asterisk-11.14.1
Date: 2014-11-20
<asteriskteam@digium.com>
----------------------------------------------------------------------
Table of Contents
1. Summary
2. Contributors
3. Other Changes
4. Diffstat
----------------------------------------------------------------------
Summary
[Back to Top]
This release has been made to address one or more security vulnerabilities
that have been identified. A security advisory document has been published
for each vulnerability that includes additional information. Users of
versions of Asterisk that are affected are strongly encouraged to review
the advisories and determine what action they should take to protect their
systems from these issues.
Security Advisories: AST-2014-012, AST-2014-014, AST-2014-017,
AST-2014-018
The data in this summary reflects changes that have been made since the
previous release, asterisk-11.14.0.
----------------------------------------------------------------------
Contributors
[Back to Top]
This table lists the people who have submitted code, those that have
tested patches, as well as those that reported issues on the issue tracker
that were resolved in this release. For coders, the number is how many of
their patches (of any size) were committed into this release. For testers,
the number is the number of times their name was listed as assisting with
testing a patch. Finally, for reporters, the number is the number of
issues that they reported that were closed by commits that went into this
release.
Coders Testers Reporters
6 bebuild
----------------------------------------------------------------------
Commits Not Associated with an Issue
[Back to Top]
This is a list of all changes that went into this release that did not
directly close an issue from the issue tracker. The commits may have been
marked as being related to an issue. If that is the case, the issue
numbers are listed here, as well.
+------------------------------------------------------------------------+
| Revision | Author | Summary | Issues Referenced |
|----------+---------+-------------------------------+-------------------|
| 428336 | bebuild | Create 11.14.1 | |
|----------+---------+-------------------------------+-------------------|
| 428372 | bebuild | Update .version, remove | |
| | | summaries | |
|----------+---------+-------------------------------+-------------------|
| 428427 | bebuild | Merge r428417 for | |
| | | AST-2014-012 | |
|----------+---------+-------------------------------+-------------------|
| 428433 | bebuild | Merge r428363 for | |
| | | AST-2014-018 | |
|----------+---------+-------------------------------+-------------------|
| 428440 | bebuild | Merge r428299 for | |
| | | AST-2014-014 | |
|----------+---------+-------------------------------+-------------------|
| 428446 | bebuild | Merge r428332 for | |
| | | AST-2014-017 | |
+------------------------------------------------------------------------+
----------------------------------------------------------------------
Diffstat Results
[Back to Top]
This is a summary of the changes to the source code that went into this
release that was generated using the diffstat utility.
.version | 2
ChangeLog | 61 +++++
apps/app_confbridge.c | 4
asterisk-11.14.0-summary.html | 414 ----------------------------------
asterisk-11.14.0-summary.txt | 503 ------------------------------------------
funcs/func_db.c | 2
main/acl.c | 2
main/bridging.c | 26 +-
8 files changed, 87 insertions(+), 927 deletions(-)
----------------------------------------------------------------------

View File

@@ -351,7 +351,7 @@ static int load_module(void)
{
int res = 0;
res |= ast_custom_function_register(&db_function);
res |= ast_custom_function_register_escalating(&db_function, AST_CFE_BOTH);
res |= ast_custom_function_register(&db_exists_function);
res |= ast_custom_function_register_escalating(&db_delete_function, AST_CFE_READ);
res |= ast_custom_function_register(&db_keys_function);

View File

@@ -776,7 +776,7 @@ enum ast_acl_sense ast_apply_ha(const struct ast_ha *ha, const struct ast_sockad
ast_copy_string(iabuf2, ast_inet_ntoa(ha->netaddr), sizeof(iabuf2));
ast_debug(1, "##### Testing %s with %s\n", iabuf, iabuf2);
#endif
if (ast_sockaddr_is_ipv4(&ha->addr)) {
if (ast_sockaddr_is_ipv4(&current_ha->addr)) {
if (ast_sockaddr_is_ipv6(addr)) {
if (ast_sockaddr_is_ipv4_mapped(addr)) {
/* IPv4 ACLs apply to IPv4-mapped addresses */

View File

@@ -120,8 +120,22 @@ int ast_bridge_technology_unregister(struct ast_bridge_technology *technology)
void ast_bridge_change_state(struct ast_bridge_channel *bridge_channel, enum ast_bridge_channel_state new_state)
{
/* Change the state on the bridge channel */
bridge_channel->state = new_state;
/* Change the state on the bridge channel with some manner of intelligence. */
ao2_lock(bridge_channel);
switch (bridge_channel->state) {
case AST_BRIDGE_CHANNEL_STATE_DEPART:
break;
case AST_BRIDGE_CHANNEL_STATE_END:
case AST_BRIDGE_CHANNEL_STATE_HANGUP:
if (new_state != AST_BRIDGE_CHANNEL_STATE_DEPART) {
break;
}
/* Fall through */
default:
bridge_channel->state = new_state;
break;
}
ao2_unlock(bridge_channel);
/* Only poke the channel's thread if it is not us */
if (!pthread_equal(pthread_self(), bridge_channel->thread)) {
@@ -130,8 +144,6 @@ void ast_bridge_change_state(struct ast_bridge_channel *bridge_channel, enum ast
ast_cond_signal(&bridge_channel->cond);
ao2_unlock(bridge_channel);
}
return;
}
/*! \brief Helper function to poke the bridge thread */
@@ -1147,8 +1159,12 @@ static void *bridge_channel_thread(void *data)
state = bridge_channel_join(bridge_channel);
/* If no other thread is going to take the channel then hang it up, or else we would have to service it until something else came along */
if (bridge_channel->allow_impart_hangup && (state == AST_BRIDGE_CHANNEL_STATE_END || state == AST_BRIDGE_CHANNEL_STATE_HANGUP)) {
if (bridge_channel->allow_impart_hangup
&& state != AST_BRIDGE_CHANNEL_STATE_DEPART) {
ast_hangup(bridge_channel->chan);
/* nobody is waiting to join me. */
pthread_detach(pthread_self());
}
/* cleanup */