]> git.ipfire.org Git - thirdparty/asterisk.git/log
thirdparty/asterisk.git
14 years agoRemoving type attributes, as a change to menuselect makes them no longer necessary.
Tilghman Lesher [Wed, 6 Jul 2011 14:35:01 +0000 (14:35 +0000)] 
Removing type attributes, as a change to menuselect makes them no longer necessary.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@326469 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoAdd the attribute "type" to each "<use>" for menuselect.
Tilghman Lesher [Tue, 5 Jul 2011 22:08:29 +0000 (22:08 +0000)] 
Add the attribute "type" to each "<use>" for menuselect.

This matters only when autoconf fails to detect that weak linking is supported.
External optional dependencies will become optional in both cases, as they are
removed at compile time when not detected.  However, runtime-optional modules
are made mandatory when weak linking is not found.  This change affects only
the external optional dependencies; previously, they were incorrectly required
when weak linking support was not detected.

Patches:
20110702__issue18062__asterisk_trunk.diff.txt by tilghman (License #5003)

Tested by: iasgoscouk

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@326411 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoUsed auth= parameter freed during "sip reload" causes crash.
Richard Mudgett [Tue, 5 Jul 2011 17:22:59 +0000 (17:22 +0000)] 
Used auth= parameter freed during "sip reload" causes crash.

If you use the auth= parameter and do a "sip reload" while there is an
ongoing call.  The peer->auth data points to free'd memory.

The patch does several things:

1) Puts the authentication list into an ao2 object for reference counting
to fix the reported crash during a SIP reload.

2) Converts the authentication list from open coding to AST list macros.

3) Adds display of the global authentication list in "sip show settings".

(closes issue ASTERISK-17939)
Reported by: wdoekes
Patches:
      jira_asterisk_17939_v1.8.patch (license #5621) patch uploaded by rmudgett

Review: https://reviewboard.asterisk.org/r/1303/

JIRA SWP-3526

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@326291 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoUpdated filestream destructor to block until move is complete when cache is used
Matthew Jordan [Tue, 5 Jul 2011 13:23:57 +0000 (13:23 +0000)] 
Updated filestream destructor to block until move is complete when cache is used

When a cache directory is used, the process is forked and a mv command is executed to move the temporary file to the permanent location.  This caused issues with voicemail, where a race condition occurred when the parent expected the file to be in the permanent location prior to the mv command completing.  The parent process is now blocked until the mv command completes.

(closes issue ASTERISK-17724)
Reported by: Adiren P.
Tested by: mjordan

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@326209 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoBetter way to get chan and pvt lock for issue ASTERISK-17431.
Richard Mudgett [Fri, 1 Jul 2011 21:07:22 +0000 (21:07 +0000)] 
Better way to get chan and pvt lock for issue ASTERISK-17431.

Redoes -r308945 for issue ASTERISK-17431 deadlock fix for
sip_set_udptl_peer() and sip_set_rtp_peer().

* Lock the channels in the defined order and avoid the need for a deadlock
avoidance loop.

* Lock the channel before getting the pointer to the private structure to
be sure that the pointer will not change due to a masquerade or channel
hangup.

* To preserve sanity, check that chan and p->owner are the same.  (Pointer
rearangements should not happen without the protection of locks because
bad things tend to happen otherwise.)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@326144 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMisc minor changes in chan_sip.
Richard Mudgett [Thu, 30 Jun 2011 20:39:45 +0000 (20:39 +0000)] 
Misc minor changes in chan_sip.

* Add load failure exit if primary SIP container(s) could not get created
in chan_sip.c:load_module().

* Removed a redundant static prototype.

* Some typos.

* Some whitespace.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@325935 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoPatched voicemail user option for emailbody / emailsubject
Matthew Jordan [Thu, 30 Jun 2011 20:09:48 +0000 (20:09 +0000)] 
Patched voicemail user option for emailbody / emailsubject

Incorporated changes per ASTERISK-16795; updated unit tests to check for vmu->emailbody / vmu->emailsubject

(closes issue ASTERISK-16795)
Reported by: mdeneen
Tested by: mjordan

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@325877 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoFixes an issue with Music on Hold classes losing files in playlist when realtime...
Jonathan Rose [Thu, 30 Jun 2011 19:17:32 +0000 (19:17 +0000)] 
Fixes an issue with Music on Hold classes losing files in playlist when realtime is used.

The bug occurs rather intermittently and I relied on the reporters to test the patch.
After a sanity check and some testing, I'm giving it an OK.

(closes issue ASTERISK-17875)
Reported by: David Cunningham
Patches:
      res_musiconhold.c.mohrt17875_v1 uploaded by Igor Goncharovsky (license #5009)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@325821 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agochan_sip: cleanup from the introduction of ast_str
Kinsey Moore [Wed, 29 Jun 2011 21:49:21 +0000 (21:49 +0000)] 
chan_sip: cleanup from the introduction of ast_str

Remove the length field from sip_req and sip_pkt in chan_sip since they are
redundant (ast_str holds its own length) and refactor the necessary functions.

Review: https://reviewboard.asterisk.org/r/1281/

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@325740 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoFixes timerfd locking issue.
David Vossel [Wed, 29 Jun 2011 18:59:33 +0000 (18:59 +0000)] 
Fixes timerfd locking issue.

(closes ASTERISK-17867, ASTERISK-17415)
Patches:
     fix uploaded by kobaz
https://reviewboard.asterisk.org/r/1255/

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@325673 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoFixed some error exit cleanup in app_queue.c.
Richard Mudgett [Wed, 29 Jun 2011 18:16:45 +0000 (18:16 +0000)] 
Fixed some error exit cleanup in app_queue.c.

* Fixed error exit cleanup in app_queue.c copy_rules() and
reload_queue_rules().

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@325614 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoResponse to QueueRule manager command does not contain ActionID if it was specified.
Richard Mudgett [Wed, 29 Jun 2011 18:05:15 +0000 (18:05 +0000)] 
Response to QueueRule manager command does not contain ActionID if it was specified.

* Add ActionID support as documented for the QueueRule AMI action.

* Remove documentation for ActionID with the Queues AMI action.  The
output does not follow normal AMI response output and there is no place to
put an ActionID header.

(closes issue AST-602)
Reported by: Vlad Povorozniuc
Patches:
      jira_ast_602_v1.8.patch (license #5621) patch uploaded by rmudgett
Tested by: Vlad Povorozniuc, rmudgett

Review: https://reviewboard.asterisk.org/r/1295/

JIRA SWP-3575

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@325610 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agomake framehooks prevent native bridging (for real this time)
Matthew Nicholson [Wed, 29 Jun 2011 16:18:39 +0000 (16:18 +0000)] 
make framehooks prevent native bridging (for real this time)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@325545 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agodon't do native/remote bridging if a framehook is active on the channel
Matthew Nicholson [Wed, 29 Jun 2011 15:34:47 +0000 (15:34 +0000)] 
don't do native/remote bridging if a framehook is active on the channel

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@325537 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoFix random misspelling noticed on asterisk-users.
Kevin P. Fleming [Tue, 28 Jun 2011 21:50:43 +0000 (21:50 +0000)] 
Fix random misspelling noticed on asterisk-users.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@325416 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoFixes locking inversion caused by holding sip pvt lock during async_goto.
David Vossel [Tue, 28 Jun 2011 20:31:00 +0000 (20:31 +0000)] 
Fixes locking inversion caused by holding sip pvt lock during async_goto.

(closes ASTERISK-17352)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@325339 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 325277 via svnmerge from
Terry Wilson [Tue, 28 Jun 2011 20:07:51 +0000 (20:07 +0000)] 
Merged revisions 325277 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

................
  r325277 | twilson | 2011-06-28 15:06:16 -0500 (Tue, 28 Jun 2011) | 9 lines

  Merged revisions 325275 via svnmerge from
  https://origsvn.digium.com/svn/asterisk/branches/1.4

  ........
    r325275 | twilson | 2011-06-28 15:03:19 -0500 (Tue, 28 Jun 2011) | 2 lines

    Don't leak SIP username information
  ........
................

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@325279 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoUse the device name and not the channel name to initialize the device state.
Richard Mudgett [Tue, 28 Jun 2011 17:30:16 +0000 (17:30 +0000)] 
Use the device name and not the channel name to initialize the device state.

Correct ASTERISK-11323 implementation as I don't see how it ever worked as
claimed when it used the channel name and not the device name.

(issue ASTERISK-11323)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@325212 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoFixes moh reload breaking custom mode moh classes when the config file is untouched
Jonathan Rose [Tue, 28 Jun 2011 15:46:29 +0000 (15:46 +0000)] 
Fixes moh reload breaking custom mode moh classes when the config file is untouched

(closes issue ASTERISK-17730)
Reported by: sdolloff

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@325152 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoRemove line from prep_tarball that kills mkrelease.
Leif Madsen [Tue, 28 Jun 2011 15:12:00 +0000 (15:12 +0000)] 
Remove line from prep_tarball that kills mkrelease.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@325091 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoSave and restore errno from within signal handlers.
Tilghman Lesher [Mon, 27 Jun 2011 16:30:50 +0000 (16:30 +0000)] 
Save and restore errno from within signal handlers.

This is recommended by the POSIX standard, as well as by the sigaction(2) manpage
for various platforms that we support (e.g. Mac OS X).

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@324955 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoWhen subscribing MWI to an unsolicited mailbox the first notification is incorrect.
Richard Mudgett [Mon, 27 Jun 2011 15:37:19 +0000 (15:37 +0000)] 
When subscribing MWI to an unsolicited mailbox the first notification is incorrect.

A remote peer subscribed to MWI with the unsolicited option and a local
phone subscribed to the remote mailbox.  The notify message-summary events
are sent correctly except for the first one when subscribing, which will
always be 0.  This means the phone MWI indicator will be wrong until the
mailbox read/unread count changes and the event is fired.

Looks like this is a regression from ASTERISK-16149.

* Fix the logic to check the cache and if allowed then fallback to
manually counting mailbox messages.

(closes issue ASTERISK-17997)
Reported by: rsw686
Patches:
      jira_asterisk_17997_v1.8.patch (license #5621) uploaded by rmudgett
Tested by: rsw686

JIRA SWP-3551

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@324914 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoSyntax errors in dialplan do not display the file name.
Richard Mudgett [Fri, 24 Jun 2011 20:46:01 +0000 (20:46 +0000)] 
Syntax errors in dialplan do not display the file name.

When issuing the CLI command "dialplan reload" syntax errors and warnings
are displayed on the console.  The offending line number is displayed on
the console, but the file name is not displayed.  Errors caught in
main/config.c do display the file name.

(closes issue ASTERISK-17985)
Reported by: ulogic
Patches:
      pbx_config.patch uploaded by ulogic (License #5685) modified format
Tested by: rmudgett

JIRA SWP-3554

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@324849 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoDTMF wasn't being logged on connected consoles when enabled in logger.conf
Jonathan Rose [Fri, 24 Jun 2011 16:48:06 +0000 (16:48 +0000)] 
DTMF wasn't being logged on connected consoles when enabled in logger.conf

Previously in order for DTMF to be logged in a connected console session, the user would
have to do logger set channel DTMF on.  This corrects that so that it is on by default.
This issue was caused by an off by one error incurred by a logger level count of 6 in
logger.h where it should have been 7.

(closes issue: ASTERISK-17974)
Reported by: Luke H

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@324768 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoFixes sip crash when calling remove_uri_parameters with NULL
David Vossel [Thu, 23 Jun 2011 18:31:00 +0000 (18:31 +0000)] 
Fixes sip crash when calling remove_uri_parameters with NULL

AST-2011-009

(closes issue ASTERISK-18017)
Reported by: jaredmauch

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@324685 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 324643 via svnmerge from
Kinsey Moore [Thu, 23 Jun 2011 18:29:17 +0000 (18:29 +0000)] 
Merged revisions 324643 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

........
  r324643 | kmoore | 2011-06-23 13:21:12 -0500 (Thu, 23 Jun 2011) | 4 lines

  Addresses AST-2011-008, memory corruption and remote crash in SIP driver.

  AST-2011-008
........

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@324678 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 324634 via svnmerge from
David Vossel [Thu, 23 Jun 2011 18:23:21 +0000 (18:23 +0000)] 
Merged revisions 324634 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

................
  r324634 | dvossel | 2011-06-23 13:18:46 -0500 (Thu, 23 Jun 2011) | 13 lines

  Merged revisions 324627 via svnmerge from
  https://origsvn.digium.com/svn/asterisk/branches/1.4

  ........
    r324627 | dvossel | 2011-06-23 13:16:52 -0500 (Thu, 23 Jun 2011) | 7 lines

    Addresses AST-2011-010, remote crash in IAX2 driver

    Thanks to twilson for identifying the issue and providing the patches.

    AST-2011-010
  ........
................

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@324652 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoRemove tests for parsing address with invalid port
Terry Wilson [Thu, 23 Jun 2011 03:10:38 +0000 (03:10 +0000)] 
Remove tests for parsing address with invalid port

getaddrinfo on OS X returns with EAI_NONAME error when passed a port
greater than 65535. Linux throws no error, so remove the tests for now.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@324557 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoUse correct variable for text SRTP media.
Richard Mudgett [Wed, 22 Jun 2011 19:16:29 +0000 (19:16 +0000)] 
Use correct variable for text SRTP media.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@324491 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoStop sending IPv6 link-local scope-ids in SIP messages
Terry Wilson [Wed, 22 Jun 2011 18:52:04 +0000 (18:52 +0000)] 
Stop sending IPv6 link-local scope-ids in SIP messages

The idea behind the patch listed below was used, but in a more targeted manner.
There are now address stringification functions for addresses that are meant to
be sent to a remote party. Link-local scope-ids only make sense on the machine
from which they originate and so are stripped in the new functions.

There is also a host sanitization function added to chan_sip which is used
for when peer and dialog tohost fields or sip_registry hostnames are used to
craft a SIP message.

Also added are some basic unit tests for netsock2 address parsing.

(closes issue ASTERISK-17711)
Reported by: ch_djalel
Patches:
      asterisk-1.8.3.2-ipv6_ll_scope.patch uploaded by ch_djalel (license 1251)

Review: https://reviewboard.asterisk.org/r/1278/

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@324484 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoTimout or error on INFO or MESSAGE transaction causes call to be lost.
Richard Mudgett [Wed, 22 Jun 2011 18:41:20 +0000 (18:41 +0000)] 
Timout or error on INFO or MESSAGE transaction causes call to be lost.

When exchanging INFO messages within a call, 4xx error causes the call to
be disconnected although RFC 2976 explicitly states that such transactions
do not modify the state of the dialog.

When exchanging MESSAGE messages within a call, 4xx error causes the call
to be disconnected.  To provide least surprise, we should not disconnect
the call since a MESSAGE is like INFO in this case.  (Implied by RFC 3428
Section 2)

(closes issue ASTERISK-17901)
Reported by: neutrino88

Review: https://reviewboard.asterisk.org/r/1257/
Review: https://reviewboard.asterisk.org/r/1258/

JIRA SWP-3486

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@324481 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoComments and whitespace in chan_sip.c
Richard Mudgett [Wed, 22 Jun 2011 18:26:55 +0000 (18:26 +0000)] 
Comments and whitespace in chan_sip.c

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@324479 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoFixes locking inversion issue in ast_async_goto()
David Vossel [Tue, 21 Jun 2011 20:11:52 +0000 (20:11 +0000)] 
Fixes locking inversion issue in ast_async_goto()

During this function we can not hold the "chan" lock while
doing the masquerade, the explicit goto on the tmp chan, or
the channel alloc.  Instead we need to get the channel lock,
store off information about the channel that we need, and
then let the channel lock go for the remainder of the function.

Review: https://reviewboard.asterisk.org/r/1275/

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@324364 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoConfBridge does not handle hangup properly
Kinsey Moore [Tue, 21 Jun 2011 16:09:14 +0000 (16:09 +0000)] 
ConfBridge does not handle hangup properly

When playing back a prompt to a channel, confbridge neglects to check for
hangup events causing lockup condititions for hangups that occur before
actually joining the conference.  This change ensures that the user is removed
from the conference in the event of a premature hangup.

Review: https://reviewboard.asterisk.org/r/1277/

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@324305 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoRemove extra 'the'.
Leif Madsen [Mon, 20 Jun 2011 18:12:32 +0000 (18:12 +0000)] 
Remove extra 'the'.
Reported by Vlad Povorozniuc

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@324241 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoRevert previous merge which had extra changes.
Leif Madsen [Mon, 20 Jun 2011 18:11:09 +0000 (18:11 +0000)] 
Revert previous merge which had extra changes.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@324240 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoRemove extra 'the'.
Leif Madsen [Mon, 20 Jun 2011 18:07:44 +0000 (18:07 +0000)] 
Remove extra 'the'.
Reported by Vlad Povorozniuc

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@324239 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoIgnore media offers with a port of 0
Terry Wilson [Mon, 20 Jun 2011 17:33:07 +0000 (17:33 +0000)] 
Ignore media offers with a port of 0

Section 5.1 of RFC3264 states:
  A port number of zero in the offer indicates that the stream is offered
  but MUST NOT be used.

(closes issue ASTERISK-17845)
Reported by: jacco
Patches:
      issue19281_2.patch uploaded by jacco (license 1277)
Tested by: jacco, twilson

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@324237 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoAdd Username and Secret fields to manager Login action.
Leif Madsen [Fri, 17 Jun 2011 18:51:16 +0000 (18:51 +0000)] 
Add Username and Secret fields to manager Login action.
Pointed out by Vlad Povorozniuc

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@324178 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoFix typo in documentation.
Leif Madsen [Fri, 17 Jun 2011 18:38:40 +0000 (18:38 +0000)] 
Fix typo in documentation.
Pointed out by Vlad Povorozniuc

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@324176 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoAdd header string to libpri debug output.
Richard Mudgett [Fri, 17 Jun 2011 18:23:19 +0000 (18:23 +0000)] 
Add header string to libpri debug output.

Add header string to libpri debug output so the libpri output can be
found/extracted easier from huge debug trace files.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@324174 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoFix grammar in documentation for Goto() and GotoIf()
Leif Madsen [Fri, 17 Jun 2011 15:14:54 +0000 (15:14 +0000)] 
Fix grammar in documentation for Goto() and GotoIf()
(closes issue ASTERISK-18023)
Reported by: Tim Osman

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@324115 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoShame on me
Terry Wilson [Thu, 16 Jun 2011 22:41:01 +0000 (22:41 +0000)] 
Shame on me

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@324049 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoLock the channel before calling the setoption callback
Terry Wilson [Thu, 16 Jun 2011 22:35:41 +0000 (22:35 +0000)] 
Lock the channel before calling the setoption callback

The channel needs to be locked before calling these callback functions. Also,
sip_setoption needs to lock the pvt and a check p->rtp is non-null before using
it.

Review: https://reviewboard.asterisk.org/r/1220/

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@324048 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoThe test_event unit test is occasionally failing.
Richard Mudgett [Thu, 16 Jun 2011 18:12:32 +0000 (18:12 +0000)] 
The test_event unit test is occasionally failing.

Wait for the special posted event to process before adding a new
subscription.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@323990 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoDon't assume ASTDBDIR exists
Terry Wilson [Thu, 16 Jun 2011 15:58:22 +0000 (15:58 +0000)] 
Don't assume ASTDBDIR exists

It most likely doesn't on FreeBSD

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@323932 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoRemove now-useless cast of ARRAY_LEN
Terry Wilson [Wed, 15 Jun 2011 20:03:58 +0000 (20:03 +0000)] 
Remove now-useless cast of ARRAY_LEN

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@323866 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMake ARRAY_LEN() return the same type on x86 and x86_64 systems
Terry Wilson [Wed, 15 Jun 2011 19:58:18 +0000 (19:58 +0000)] 
Make ARRAY_LEN() return the same type on x86 and x86_64 systems

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@323863 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoFix more ARRAY_LEN format string issues
Terry Wilson [Wed, 15 Jun 2011 19:45:20 +0000 (19:45 +0000)] 
Fix more ARRAY_LEN format string issues

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@323859 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 323733 via svnmerge from
Terry Wilson [Wed, 15 Jun 2011 18:21:52 +0000 (18:21 +0000)] 
Merged revisions 323733 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

................
  r323733 | twilson | 2011-06-15 13:13:00 -0500 (Wed, 15 Jun 2011) | 16 lines

  Merged revisions 323732 via svnmerge from
  https://origsvn.digium.com/svn/asterisk/branches/1.4

  ........
    r323732 | twilson | 2011-06-15 13:06:24 -0500 (Wed, 15 Jun 2011) | 9 lines

    Fix DYNAMIC_FEATURES

    DYNAMIC_FEATURES were broken by a recent DTMF change. This patch makes
    sure that dynamic features are also checked when deciding whether or not
    to pass DTMF through or store it for interpreting.

    (closes issue ASTERISK-17914)
    Reported by: vrban
  ........
................

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@323754 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoAdds locking to find_table in res_configure_pgsql to prevent a crash.
Jonathan Rose [Wed, 15 Jun 2011 17:42:42 +0000 (17:42 +0000)] 
Adds locking to find_table in res_configure_pgsql to prevent a crash.

Bryonclark described the problem as occuring during this function because of multiple
simultaneous database operations causing corruption against a pgsqlConn object.

(closes issue ASTERISK-17811)
Reported by: byronclark
Patches:
      pgsql_find_table_locking.patch uploaded by byronclark (license 1200)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@323730 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoCast ARRAY_LEN to size_t for ast_logging
Terry Wilson [Wed, 15 Jun 2011 17:09:51 +0000 (17:09 +0000)] 
Cast ARRAY_LEN to size_t for ast_logging

32-bit and 64-bit machines return different types for ARRAY_LEN(), so cast
it before using in a format string.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@323672 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoAdd a test to the event unit tests to catch ASTERISK-18002.
Richard Mudgett [Wed, 15 Jun 2011 16:43:31 +0000 (16:43 +0000)] 
Add a test to the event unit tests to catch ASTERISK-18002.

The new tests check to see if there are ANY subscribers to the event type
when ast_event_check_subscriber() is not passed any specific ie values.

(issue ASTERISK-18002)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@323670 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years ago[regression] Voicemail MWI is no longer sent.
Richard Mudgett [Wed, 15 Jun 2011 16:43:18 +0000 (16:43 +0000)] 
[regression] Voicemail MWI is no longer sent.

When leaving a voicemail, the MWI message is never sent.  The same thing
happens when checking a voicemail and marking it as read.

If you restart Asterisk, everything comes up at that state correctly, but
changes to the messages in voicemail causes the light to not be set
appropriately.  Very easy to reproduce.

* Made ast_event_check_subscriber() return TRUE if there are ANY
subscribers to an event type when there are no restricting ie values
passed.  This allows an event being queued to be queued.

(closes issue ASTERISK-18002)
Reported by: lmadsen
Tested by: lmadsen, irroot
Patches:
     jira_asterisk_18002_v1.8.patch uploaded by rmudgett (License #5621)

(closes issue ASTERISK-18019)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@323669 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoAdds PQclear calls on result to various parts of res_conf_pgsql
Jonathan Rose [Wed, 15 Jun 2011 16:09:24 +0000 (16:09 +0000)] 
Adds PQclear calls on result to various parts of res_conf_pgsql

(closes issue ASTERISK-17812)
Reported by: byronclark
Patches:
      pgsql_pqclear.patch uploaded by byronclark (license 1200)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@323610 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMerged revisions 323579 via svnmerge from
Sean Bright [Wed, 15 Jun 2011 15:31:53 +0000 (15:31 +0000)] 
Merged revisions 323579 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

................
  r323579 | seanbright | 2011-06-15 11:22:50 -0400 (Wed, 15 Jun 2011) | 32 lines

  Merged revisions 323559 via svnmerge from
  https://origsvn.digium.com/svn/asterisk/branches/1.4

  ........
    r323559 | seanbright | 2011-06-15 11:15:30 -0400 (Wed, 15 Jun 2011) | 25 lines

    Resolve a segfault/bus error when we try to map memory that falls on a page
    boundary.

    The fix for ASTERISK-15359 was incorrect in that it added 1 to the length of the
    mmap'd region.  The problem with this is that reading/writing to that extra byte
    outside of the bounds of the underlying fd causes a bus error.

    The real issue is that we are working with both a FILE * and the raw fd
    underneath it and not synchronizing between them.  The code that was removed in
    ASTERISK-15359 was correct, but we weren't flushing the FILE * before mapping
    the fd.

    Looking at the manager code in 1.4 reveals that the FILE * in 'struct
    mansession' is never used except to create a temporary file that we immediately
    fdopen.  This means we just need to write a 0 byte to the fd and everything will
    just work.  The other branches require a call to fflush() which, while not a
    guaranteed fix, should reduce the likelihood of a crash.

    This all makes sense in my head.

    (closes issue ASTERISK-16460)
    Reported by: Ravelomanantsoa Hoby (hoby)
    Patches:
     issue17747_1.4_svn_markII.patch uploaded by Sean Bright (license #5060)
  ........
................

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@323608 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoAdd missing break in ast_event_get_cached().
Richard Mudgett [Wed, 15 Jun 2011 00:50:20 +0000 (00:50 +0000)] 
Add missing break in ast_event_get_cached().

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@323456 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoMade ast_sockaddr_split_hostport() port warning msgs more meaningful.
Richard Mudgett [Tue, 14 Jun 2011 17:21:39 +0000 (17:21 +0000)] 
Made ast_sockaddr_split_hostport() port warning msgs more meaningful.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@323394 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoAdd more strict hostname checking to ast_dnsmgr_lookup().
Richard Mudgett [Tue, 14 Jun 2011 17:21:24 +0000 (17:21 +0000)] 
Add more strict hostname checking to ast_dnsmgr_lookup().

Change suggested in review.

Review: https://reviewboard.asterisk.org/r/1240/

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@323392 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoChanges contact use in build_peer to use the FORCE_RPORT flag instead of RPORT_PRESENT
Jonathan Rose [Tue, 14 Jun 2011 16:38:43 +0000 (16:38 +0000)] 
Changes contact use in build_peer to use the FORCE_RPORT flag instead of RPORT_PRESENT

It turned out that this was causing NAT=Yes to always use rport when present which was
against 1.6.2 behavior and the check itself was redundant since the only way this
segment of code could be reached was if RPORT_PRESENT was already evaluated as true
earlier.

(closes issue ASTERISK-17789)
Reported by: byronclark
Patches:
      use_sip_nat_force_rport.patch uploaded by byronclark (license 1200)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@323371 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoAdd rtpkeepalives back to 1.8
Terry Wilson [Tue, 14 Jun 2011 16:33:55 +0000 (16:33 +0000)] 
Add rtpkeepalives back to 1.8

The RTP-engine conversion left out support for handling rtpkeepalives.
This patch adds them back.

(closes issue ASTERISK-17304)
Reported by: lmadsen

Review: https://reviewboard.asterisk.org/r/1226/

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@323370 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoAdditional documentation for bindaddr.
Leif Madsen [Mon, 13 Jun 2011 20:22:21 +0000 (20:22 +0000)] 
Additional documentation for bindaddr.
Note that bindaddr will only enable UDP instead of both UDP and TCP which is
what I would expect for backwards compatibility with systems being upgraded
which only support UDP transportation.

(closes issue ASTERISK-17976)
Reported by: Sean Darcy

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@323234 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoAvoid dividing by zero with L() option to Dial()
Leif Madsen [Mon, 13 Jun 2011 19:51:52 +0000 (19:51 +0000)] 
Avoid dividing by zero with L() option to Dial()

Reported by: nicolasom
Patches:

issue-17995.patch - nicolasom (License #5994)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@323213 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoTweak documentation for AGI Hangup command.
Leif Madsen [Mon, 13 Jun 2011 19:00:41 +0000 (19:00 +0000)] 
Tweak documentation for AGI Hangup command.

(closes issue ASTERISK-17999)
Reported by: Ben Klang
Patches:
     hangup-doc.diff - uploaded by Ben Klang (License #5876)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@323154 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoUnlock the sip channel during fax detection like chan_dahdi does to prevent a deadloc...
Matthew Nicholson [Fri, 10 Jun 2011 19:20:41 +0000 (19:20 +0000)] 
Unlock the sip channel during fax detection like chan_dahdi does to prevent a deadlock with ast_autoservice_stop.

(closes issue ASTERISK-17798)
tested by mnicholson

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@323040 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoAvoid a DB1 infinite loop bug
Terry Wilson [Fri, 10 Jun 2011 15:29:00 +0000 (15:29 +0000)] 
Avoid a DB1 infinite loop bug

Explicity check the last entry in the DB and make sure that we don't iterate
past it. Since there can be no duplicates, this just makes sure that we stop
after matching the last key.

This patch also refactors the code to get away from some code duplication. A
previous patch added many astdb tests and this patch passed them.

Review: https://reviewboard.asterisk.org/r/1259/

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@322981 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoAdd some astdb unit tests
Terry Wilson [Fri, 10 Jun 2011 02:33:23 +0000 (02:33 +0000)] 
Add some astdb unit tests

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@322923 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoCorrect ast_db_deltree documentation
Terry Wilson [Thu, 9 Jun 2011 22:29:20 +0000 (22:29 +0000)] 
Correct ast_db_deltree documentation

ast_db_deltree returns -1 on error, otherwise the number of deletions

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@322865 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agodon't drop any voice frames when checking for T.38 during early media
Matthew Nicholson [Thu, 9 Jun 2011 17:37:07 +0000 (17:37 +0000)] 
don't drop any voice frames when checking for T.38 during early media

(closes issue ASTERISK-17705)
Review: https://reviewboard.asterisk.org/r/1186/
patch by oej
reported by oej

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@322807 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoRemove potential deadlock in call pickup race.
Richard Mudgett [Thu, 9 Jun 2011 16:31:53 +0000 (16:31 +0000)] 
Remove potential deadlock in call pickup race.

Deadlock is possible in ast_do_pickup() when holding the target channel
lock and trying to get the chan channel lock.  Also, holding the target
lock when calling ast_channel_masquerade() is not a good idea because that
routine does deadlock avoidance.

* Removed the need to hold the target lock after marking the target with a
datastore and getting the connected line data off of the target channel.

* Moved can_pickup() to ast_can_pickup() in features.c.  Now all the call
pickup methods use the same basic call pickup availability check.

Review: https://reviewboard.asterisk.org/r/1234/

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@322749 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoAdds ast_escape_encoded utility to properly handle escaping of quoted field before...
Jonathan Rose [Thu, 9 Jun 2011 14:06:42 +0000 (14:06 +0000)] 
Adds ast_escape_encoded utility to properly handle escaping of quoted field before uri.

This commit backports a feature in trunk affecting initreqprep so that display name won't
be encoded improperly. Also includes unit tests for the ast_escape_quoted function.
This patch gives 1.8 a much improved outlook in countries which don't use standard
ASCII characters.

(closes issue ASTERISK-16949)
Reported by: Örn Arnarson
Review: https://reviewboard.asterisk.org/r/1235/

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@322585 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoRing all queue with more than 255 agents will cause crash.
Richard Mudgett [Wed, 8 Jun 2011 20:46:55 +0000 (20:46 +0000)] 
Ring all queue with more than 255 agents will cause crash.

1. Create a ring-all queue with 500 permanent agents.
2. Call it.
3. Asterisk will crash.

The watchers array in app_queue.c has a hard limit of 255.  Bounds
checking is not done on this array.  No sane person should put 255 people
in a ring-all queue, but we should not crash anyway.

* Added bounds checking to the watchers array.

JIRA AST-464
JIRA SWP-2903

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@322484 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoSRV lookup attempted for SIP peers listed as an IP address.
Richard Mudgett [Wed, 8 Jun 2011 18:46:30 +0000 (18:46 +0000)] 
SRV lookup attempted for SIP peers listed as an IP address.

Asterisk attempts to SRV lookup a host name even if the host name is an IP
address.  Regression introduced when IPv6 support was added.

* Restored the check in ast_dnsmgr_lookup() to see if the given host name
is an IP address.  The IP address could be in either IPv4 or IPv6 formats.

(closes issue ASTERISK-17815)
Reported by: Byron Clark
Tested by: Byron Clark, Richard Mudgett
Patches:
     issue19248_v1.8.patch - uploaded by Richard Mudgett (License #5621)

Review: https://reviewboard.asterisk.org/r/1240/

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@322425 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years ago Make handle_request_publish do dialog expiration and destruction.
Gregory Nietsky [Wed, 8 Jun 2011 06:18:38 +0000 (06:18 +0000)] 
  Make handle_request_publish do dialog expiration and destruction.

  This patch fixes handle_request_publish so that it does dialog expiration and destruction.

  Without this patch the incoming PUBLISH requests will get stuck in the dialog list.
  Restarting asterisk is the only way to remove them.

  Personal observation on one system the server hung up while looping through the channels
  rendering asterisk unusable and all sip phones unregisterd when they try reregister
  more requests are added.

  (closes issue #18898)
  Reported by: gareth
  Tested by: loloski, Chainsaw, wimpy, se, kuj, irroot

  Jira: https://issues.asterisk.org/jira/browse/ASTERISK-17915
  Review: https://reviewboard.asterisk.org/r/1253

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@322322 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoUse correct syntax for 'sip notify snom-reboot'
Paul Belanger [Tue, 7 Jun 2011 17:59:13 +0000 (17:59 +0000)] 
Use correct syntax for 'sip notify snom-reboot'

(closes issue ASTERISK-17915)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@322189 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoFixes level toggling for logger set levels since it was reversed
Jonathan Rose [Mon, 6 Jun 2011 19:07:56 +0000 (19:07 +0000)] 
Fixes level toggling for logger set levels since it was reversed

(closes issue ASTERISK-17850)
Reported by: Luke H
Tested by: jrose, Luke H

Review: https://reviewboard.asterisk.org/r/1244/

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@322069 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoAsterisk crash when unloading cdr_radius/cel_radius.
Richard Mudgett [Fri, 3 Jun 2011 22:09:36 +0000 (22:09 +0000)] 
Asterisk crash when unloading cdr_radius/cel_radius.

The rc_openlog() API call is passed a string that is used by openlog() to
format log messages.  The openlog() does not copy the string it just keeps
a pointer to it.  When the module is unloaded, the string is gone from
memory.  Depending upon module load order and if the other module then has
an error, a crash happens.

* Pass rc_openlog() a strdup'd string with the understanding that there
will be a small memory leak if the cdr_radius/cel_radius modules are
unloaded.

* Call rc_destroy() to free the rc handle memory when the module is
unloaded.

JIRA AST-483
JIRA SWP-3062

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@321926 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoBe more explicit for CCSS generic device state event subscription.
Richard Mudgett [Fri, 3 Jun 2011 21:49:17 +0000 (21:49 +0000)] 
Be more explicit for CCSS generic device state event subscription.

Make CCSS generic device state event subscription specify the
AST_EVENT_IE_STATE ie exists to be safe.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@321924 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoEvent subscription fixes.
Richard Mudgett [Fri, 3 Jun 2011 20:58:13 +0000 (20:58 +0000)] 
Event subscription fixes.

Must commit the subscription fixes together with the integration
subscription tests.  The subscription fixes cause an erroneously passing
test to fail.  The new subscription tests detect errors without the
subscription fixes.

* Added missing event_names[] table entry.

* Reworked ast_event_check_subscriber()/match_sub_ie_val_to_event() to
correctly detect if a subscriber exists for the proposed event.

* Made match_ie_val() and match_sub_ie_val_to_event() check the buffer
length for RAW payload types.

* Fixed error handling memory leak in ast_event_sub_activate(),
ast_event_unsubscribe(), and ast_event_queue().

* Made ast_event_new() and ast_event_check_subscriber() better protect
themselves from an invalid payload type.

* Added container lock protection between removing old cache events and
adding the new cached event in
ast_event_queue_and_cache()/event_update_cache().

* Added new event subscription tests.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@321871 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoConstify subscription description parameter string.
Richard Mudgett [Fri, 3 Jun 2011 19:56:09 +0000 (19:56 +0000)] 
Constify subscription description parameter string.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@321813 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoCorrect IAX2 and SIP event subscription description string.
Richard Mudgett [Fri, 3 Jun 2011 19:55:21 +0000 (19:55 +0000)] 
Correct IAX2 and SIP event subscription description string.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@321812 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoBackport an astobj2 unit test so that it runs on 1.8 as well.
Russell Bryant [Fri, 3 Jun 2011 18:32:45 +0000 (18:32 +0000)] 
Backport an astobj2 unit test so that it runs on 1.8 as well.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@321753 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoAlso document the 'queue-minute' option.
Leif Madsen [Fri, 3 Jun 2011 13:17:50 +0000 (13:17 +0000)] 
Also document the 'queue-minute' option.

(closes issue #19386)
Reported by: juanmol

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@321685 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoCDR comment tweaks.
Richard Mudgett [Wed, 1 Jun 2011 23:11:55 +0000 (23:11 +0000)] 
CDR comment tweaks.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@321547 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoThis patch fixes an issue with using the wrong voicemail folders with greetings.
Brett Bryant [Wed, 1 Jun 2011 20:10:02 +0000 (20:10 +0000)] 
This patch fixes an issue with using the wrong voicemail folders with greetings.

(closes issue #17871)
Reported by: edhorton
Patches:
      digium_bug_17871_2 uploaded by fhackenberger (license 592)
Tested by: edhorton, fhackenberger

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@321537 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoFix double alerting, add forced alerting before answer
Alexandr Anikin [Wed, 1 Jun 2011 10:40:19 +0000 (10:40 +0000)] 
Fix double alerting, add forced alerting before answer

Fix double alerting (it wasn't fixed here by issue #18542)
Add forced alerting before connect (if it wasn't before)
Try to send all packets from outgoing queue rather than one only
Call goes into clearing state when disconnect command is received

(closes issue #19361)
Reported by: vmikhelson
Patches:
      issue19361-3.patch uploaded by may213 (license 454)
Tested by: vmikhelson

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@321528 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoUpdate some comments.
Richard Mudgett [Tue, 31 May 2011 20:54:35 +0000 (20:54 +0000)] 
Update some comments.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@321517 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoChan_local locking cleanup.
David Vossel [Tue, 31 May 2011 18:52:54 +0000 (18:52 +0000)] 
Chan_local locking cleanup.

This patch removes all of the unnecessary deadlock
avoidance loops that occur in chan_local.  It also
resolves an issue with a deadlock triggered by
local channel optimizations.

(issue #18028)

Review: https://reviewboard.asterisk.org/r/1231/

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@321515 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoEnhance NOTICE message to know who couldn't access the dialplan.
Leif Madsen [Tue, 31 May 2011 16:04:47 +0000 (16:04 +0000)] 
Enhance NOTICE message to know who couldn't access the dialplan.

(closes issue #19390)
Reported by: lmadsen
Patches:
      __20110531-sip-notice-tweak.txt uploaded by lmadsen (license 10)
Tested by: russell

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@321511 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoSome hagi launch cleanup.
Richard Mudgett [Sat, 28 May 2011 00:27:52 +0000 (00:27 +0000)] 
Some hagi launch cleanup.

Inspired by issue 19256.  This patch would also fix the crash.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@321436 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoCrash when using hagi and no servers are available.
Richard Mudgett [Fri, 27 May 2011 23:45:41 +0000 (23:45 +0000)] 
Crash when using hagi and no servers are available.

When none of the servers returned by the SRV querey respond, asterisk
crashes.  The problem is that if the loop over all the SRV entries
finishes then the srv_context has already been cleaned up.

* Make ast_srv_cleanup() check to see if the context is already cleaned
up.

(closes issue #19256)
Reported by: byronclark

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@321392 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoThe app_privacy args have undocumented "options" position, interferes with "context...
Richard Mudgett [Fri, 27 May 2011 22:06:43 +0000 (22:06 +0000)] 
The app_privacy args have undocumented "options" position, interferes with "context" position.

* Add documention for unused "options" position to match existing code.

(closes issue #19273)
Reported by: mdavenport

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@321337 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoFix issue with playback of H.261 video.
Leif Madsen [Fri, 27 May 2011 21:54:54 +0000 (21:54 +0000)] 
Fix issue with playback of H.261 video.

(closes issue #19379)
Reported by: neutrino88
Patches:
      videoprompt.patch uploaded by neutrino88 (license 297)
(changes by russell)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@321335 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoAllow parking lot hints and musicclass to be set.
Leif Madsen [Fri, 27 May 2011 21:40:23 +0000 (21:40 +0000)] 
Allow parking lot hints and musicclass to be set.

(closes issue #19378)
Reported by: sboily_proformatique
Patches:
      pf_parkinghint_music_fix uploaded by sboily proformatique (license 206)
Tested by: russell

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@321333 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoThe app_privacy args have undocumented "options" position, interferes with "context...
Richard Mudgett [Fri, 27 May 2011 21:31:25 +0000 (21:31 +0000)] 
The app_privacy args have undocumented "options" position, interferes with "context" position.

* Add documention for unused "options" position to match existing code.
The trunk(v1.10) version will remove the unused options position.

(closes issue #19273)
Reported by: mdavenport

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@321330 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agomarkm committed a patch I was working on yesterday, this fixes it to mesh up with...
Jonathan Rose [Fri, 27 May 2011 14:59:34 +0000 (14:59 +0000)] 
markm committed a patch I was working on yesterday, this fixes it to mesh up with suggestions by mnicholson.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@321273 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoFix *8 directed pickup locks system during pickupsound play out
Alec L Davis [Fri, 27 May 2011 08:31:15 +0000 (08:31 +0000)] 
Fix *8 directed pickup locks system during pickupsound play out

move playout from sip_pickup_thread to bridge using BRIDGE_PLAY_SOUND method,
This stop the clash of 2 threads trying to write audio to same channel.
In addition fixes choppy audio beep in issue 19177.

 (issue #18654)
 (issue #19177)
 Reported by: Docent
 Patches:
      review1232-1.88888888 alecdavis (license 585)
 Tested by: alecdavis

Review: https://reviewboard.asterisk.org/r/1232/

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@321211 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoFixed build problem with dev mode enabled, which was caused by commit 321100. Reform...
Mark Murawki [Thu, 26 May 2011 21:48:45 +0000 (21:48 +0000)] 
Fixed build problem with dev mode enabled, which was caused by commit 321100.  Reformulated patch to be more generic.

Moved the sip uri parse variable initalization to parse_uri_full in reqresp_parser.c.  This will ensure that any use of parse uri will have null output variables if the parse fails.

(closes issue #19346)
Reported by: kobaz
Tested by: kobaz,JonathanRose

Review: [full review board URL with trailing slash]

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@321155 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoast_sockaddr_resolve() in netsock2.c may deref a null pointer
Mark Murawki [Thu, 26 May 2011 20:09:35 +0000 (20:09 +0000)] 
ast_sockaddr_resolve() in netsock2.c may deref a null pointer

Added a null check in netsock2 ast_sockaddr_resolve() as well as added default initalizers in chan_sip parse_uri_legacy_check() to make sure that invalid uris will make null (and not undefined) user,pass,domain,transport variables

(closes issue #19346)
Reported by: kobaz
Patches:
      netsock2.patch uploaded by kobaz (license 834)
Tested by: kobaz, Marquis

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@321100 65c4cc65-6c06-0410-ace0-fbb531ad65f3

14 years agoUpdate ast_sockaddr comment with an important note.
Richard Mudgett [Thu, 26 May 2011 18:10:17 +0000 (18:10 +0000)] 
Update ast_sockaddr comment with an important note.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@321044 65c4cc65-6c06-0410-ace0-fbb531ad65f3