]> git.ipfire.org Git - thirdparty/asterisk.git/log
thirdparty/asterisk.git
7 years agoMerge "res_xmpp: Google OAuth 2.0 protocol support for XMPP / Motif" into 13
Jenkins2 [Tue, 15 Aug 2017 13:18:29 +0000 (08:18 -0500)] 
Merge "res_xmpp: Google OAuth 2.0 protocol support for XMPP / Motif" into 13

7 years agores_xmpp: Google OAuth 2.0 protocol support for XMPP / Motif
Andrey Egorov [Fri, 4 Aug 2017 14:25:52 +0000 (17:25 +0300)] 
res_xmpp: Google OAuth 2.0 protocol support for XMPP / Motif

Add ability to use tokens instead of passwords according to Google OAuth 2.0
protocol.

ASTERISK-27169
Reported by: Andrey Egorov
Tested by: Andrey Egorov

Change-Id: I07f7052a502457ab55010a4d3686653b60f4c8db

7 years agoMerge "res_pjsip_outbound_registration.c: Re-REGISTER on transport shutdown." into 13
George Joseph [Mon, 14 Aug 2017 19:56:29 +0000 (14:56 -0500)] 
Merge "res_pjsip_outbound_registration.c: Re-REGISTER on transport shutdown." into 13

7 years agoMerge "res_pjsip: Remove ephemeral registered contacts on transport shutdown." into 13
Jenkins2 [Mon, 14 Aug 2017 18:14:13 +0000 (13:14 -0500)] 
Merge "res_pjsip: Remove ephemeral registered contacts on transport shutdown." into 13

7 years agoMerge "res_pjsip: PJSIP Transport state monitor refactor." into 13
Jenkins2 [Mon, 14 Aug 2017 18:05:29 +0000 (13:05 -0500)] 
Merge "res_pjsip: PJSIP Transport state monitor refactor." into 13

7 years agoMerge "res_pjsip_transport_management.c: Rename some variables." into 13
Jenkins2 [Mon, 14 Aug 2017 17:49:45 +0000 (12:49 -0500)] 
Merge "res_pjsip_transport_management.c: Rename some variables." into 13

7 years agoSTUN/netsock2: Fix some valgrind uninitialized memory findings.
Richard Mudgett [Thu, 10 Aug 2017 19:18:01 +0000 (14:18 -0500)] 
STUN/netsock2: Fix some valgrind uninitialized memory findings.

* netsock2.c: Test the addr->len member first as it may be the only member
initialized in the struct.

* stun.c:ast_stun_handle_packet(): The combinded[] local array could get
used uninitialized by ast_stun_request().  The uninitialized string gets
copied to another location and could overflow the destination memory
buffer.

These valgrind findings were found for ASTERISK_27150 but are not
necessarily a fix for the issue.

Change-Id: I55f8687ba4ffc0f69578fd850af006a56cbc9a57

7 years agores_pjsip_outbound_registration.c: Re-REGISTER on transport shutdown.
Richard Mudgett [Wed, 2 Aug 2017 23:44:12 +0000 (18:44 -0500)] 
res_pjsip_outbound_registration.c: Re-REGISTER on transport shutdown.

The fix for the issue is broken up into three parts.

This is part three which handles the client side of REGISTER requests.
The registered contact may no longer be valid on the server when the
transport used is reliable and the connection is broken.

* Re-REGISTER our contact if the reliable transport is broken after
registration completes.  We attempt to re-REGISTER immediately to minimize
the time we are unreachable.  Time may have already passed between the
connection being broken and the loss being detected.

* Reorder sip_outbound_registration_state_alloc() so the STATSD_GUAGE's
are still correct if an allocation failure happens.

ASTERISK-27147

Change-Id: I3668405b1ee75dfefb07c0d637826176f741ce83

7 years agores_pjsip: Remove ephemeral registered contacts on transport shutdown.
Richard Mudgett [Mon, 31 Jul 2017 19:21:06 +0000 (14:21 -0500)] 
res_pjsip: Remove ephemeral registered contacts on transport shutdown.

The fix for the issue is broken up into three parts.

This is part two which handles the server side of REGISTER requests when
rewrite_contact is enabled.  Any registered reliable transport contact
becomes invalid when the transport connection becomes disconnected.

* Monitor the rewrite_contact's reliable transport REGISTER contact for
shutdown.  If it is shutdown then the contact must be removed because it
is no longer valid.  Otherwise, when the client attempts to re-REGISTER it
may be blocked because the invalid contact is there.  Also if we try to
send a call to the endpoint using the invalid contact then the endpoint is
not likely to see the request.  The endpoint either won't be listening on
that port for new connections or a NAT/firewall will block it.

* Prune any rewrite_contact's registered reliable transport contacts on
boot.  The reliable transport no longer exists so the contact is invalid.

* Websockets always rewrite the REGISTER contact address and the transport
needs to be monitored for shutdown.

* Made the websocket transport set a unique name since that is what we use
as the ao2 container key.  Otherwise, we would not know which transport we
find when one of them shuts down.  The names are also used for PJPROJECT
debug logging.

* Made the websocket transport post the PJSIP_TP_STATE_CONNECTED state
event.  Now the global keep_alive_interval option, initially idle shutdown
timer, and the server REGISTER contact monitor can work on wetsocket
transports.

* Made the websocket transport set the PJSIP_TP_DIR_INCOMING direction.
Now initially idle websockets will automatically shutdown.

ASTERISK-27147

Change-Id: I397a5e7d18476830f7ffe1726adf9ee6c15964f4

7 years agores_pjsip: PJSIP Transport state monitor refactor.
Richard Mudgett [Fri, 28 Jul 2017 23:26:17 +0000 (18:26 -0500)] 
res_pjsip: PJSIP Transport state monitor refactor.

The fix for the issue is broken up into three parts.

This is part one which refactors the transport state monitor code to allow
more modules to be able to monitor transports.

* Pull the management of PJPROJECT's transport state callback code from
res_pjsip_transport_management.c into res_pjsip.  Now other modules can
dynamically add and remove themselves from transport monitoring without
worrying about breaking PJPROJECT's callback chain.

* Add the ability for other modules to get a callback whenever a specific
transport is shutdown.

ASTERISK-27147

Change-Id: I7d9a31371eb1487c9b7050cf82a9af5180a57912

7 years agores_pjsip_transport_management.c: Rename some variables.
Richard Mudgett [Thu, 27 Jul 2017 20:36:20 +0000 (15:36 -0500)] 
res_pjsip_transport_management.c: Rename some variables.

* Use monitored instead of the misleading keepalive name.

Change-Id: I9e5bcbb4ab2b82d49bcd0f06dfe85d15e0b552b6

7 years agoMerge "res_pjsip_messaging: IPv6 receive address needs brackets" into 13
Jenkins2 [Thu, 10 Aug 2017 16:00:44 +0000 (11:00 -0500)] 
Merge "res_pjsip_messaging: IPv6 receive address needs brackets" into 13

7 years agores_pjsip_messaging: IPv6 receive address needs brackets
Scott Griepentrog [Thu, 10 Aug 2017 14:09:29 +0000 (09:09 -0500)] 
res_pjsip_messaging: IPv6 receive address needs brackets

When handling an incoming SIP MESSAGE, PJSIP
attaches the IP address that the message was
received from to the message in the variable
PJSIP_RECVADDR.  When the IP address is IPv6
the :PORT appended results in an unparseable
mess. By using an additional bit flag on the
pj_sockaddr_print call, the conventional use
of brackets around the address is achieved.

ASTERISK-27193 #close

Change-Id: I12342521f2ce87a5b6e4883d480a3fd957aa9fd9

7 years agoMerge "configure: Add --with-download-cache option" into 13
Joshua Colp [Thu, 10 Aug 2017 11:58:01 +0000 (06:58 -0500)] 
Merge "configure:  Add --with-download-cache option" into 13

7 years agoMerge "res_rtp_asterisk: enable rtcp & QOS stats on native bridge" into 13
Jenkins2 [Wed, 9 Aug 2017 20:48:42 +0000 (15:48 -0500)] 
Merge "res_rtp_asterisk: enable rtcp & QOS stats on native bridge" into 13

7 years agoMerge "res_rtp_asterisk: Make P2P bridge Asymmetric codec aware" into 13
Joshua Colp [Wed, 9 Aug 2017 19:54:26 +0000 (14:54 -0500)] 
Merge "res_rtp_asterisk:  Make P2P bridge Asymmetric codec aware" into 13

7 years agoconfigure: Add --with-download-cache option
George Joseph [Wed, 9 Aug 2017 13:01:33 +0000 (07:01 -0600)] 
configure:  Add --with-download-cache option

To make building without an internet connection easier, a new
./configure option '--with-download-cache' was added that sets
the cache for externals (like pjproject, the codecs and the DPMA),
AND the sounds files.  It can also be specified as an environment
variable named "AST_DOWNLOAD_CACHE".  The existing
'--with-sounds-cache' option / SOUNDS_CACHE_DIR env variable and
'--with-externals-cache' option / EXTERNALS_CACHE_DIR env variable
remain and if specified, will override '--with-downloads-cache'.

Change-Id: I5c3cf15ee61e8fe191b52732303e969854f8d861

7 years agoMerge "res_pjsip_session: Release media resources on session end quicker." into 13
Jenkins2 [Mon, 7 Aug 2017 23:48:14 +0000 (18:48 -0500)] 
Merge "res_pjsip_session: Release media resources on session end quicker." into 13

7 years agoMerge "res_pjsip_nat.c: Remove unnecessary CMP_STOP." into 13
Jenkins2 [Mon, 7 Aug 2017 13:28:18 +0000 (08:28 -0500)] 
Merge "res_pjsip_nat.c: Remove unnecessary CMP_STOP." into 13

7 years agoMerge "Support GMIME 3.0" into 13
Jenkins2 [Mon, 7 Aug 2017 13:05:45 +0000 (08:05 -0500)] 
Merge "Support GMIME 3.0" into 13

7 years agores_rtp_asterisk: enable rtcp & QOS stats on native bridge
Torrey Searle [Wed, 26 Jul 2017 14:17:02 +0000 (16:17 +0200)] 
res_rtp_asterisk: enable rtcp & QOS stats on native bridge

Asterisk wasn't generating or forwarding RTCP packets when native
bridge was activated.  Also the stats weren't available via
CHANNEL(qos). Now the RTCP stats are always calculated.

ASTERISK-27158 #close

Change-Id: I46fb8f61c95e836b9d2dda6054b0cf205c16037b

8 years agores_pjsip_session: Release media resources on session end quicker.
Joshua Colp [Wed, 26 Jul 2017 16:39:32 +0000 (16:39 +0000)] 
res_pjsip_session: Release media resources on session end quicker.

A change was made long ago where the session was kept around
until the underlying INVITE session had been destroyed. This
had the side effect of also keeping the underlying media resources
around for this time as well.

This change ensures that when we know the session is ending we
release the media resources immediately.

ASTERISK-27110

Change-Id: I643e431d5c3bf05cda220c1d39e824a505a29b82

8 years agoapp_privacy: remove unused header asterisk/image.h
Corey Farrell [Wed, 2 Aug 2017 21:08:38 +0000 (17:08 -0400)] 
app_privacy: remove unused header asterisk/image.h

Change-Id: I56ed530633a642633b18383821069e806c92ae82

8 years agoMerge "Fix compile error for old versions of GCC." into 13
Jenkins2 [Fri, 4 Aug 2017 17:37:05 +0000 (12:37 -0500)] 
Merge "Fix compile error for old versions of GCC." into 13

8 years agoMerge "Correct some leaks in unit tests." into 13
Jenkins2 [Fri, 4 Aug 2017 16:01:37 +0000 (11:01 -0500)] 
Merge "Correct some leaks in unit tests." into 13

8 years agoMerge "res_pjsip_transport_websocket.c: Fix serializer ref leak." into 13
Jenkins2 [Fri, 4 Aug 2017 15:14:49 +0000 (10:14 -0500)] 
Merge "res_pjsip_transport_websocket.c: Fix serializer ref leak." into 13

8 years agoSupport GMIME 3.0
Tzafrir Cohen [Thu, 3 Aug 2017 18:13:01 +0000 (14:13 -0400)] 
Support GMIME 3.0

Support building the Asterisk httpd with version 3.0 of gmime as
well as earlier versions of that library.

ASTERISK-27173

Change-Id: I7e13dd05a3083ccb0df2dabf83110223f6a9fa8f

8 years agoMerge "res_pjsip_outbound_registration.c: Misc fixes." into 13
Jenkins2 [Fri, 4 Aug 2017 14:23:15 +0000 (09:23 -0500)] 
Merge "res_pjsip_outbound_registration.c: Misc fixes." into 13

8 years agores_rtp_asterisk: Make P2P bridge Asymmetric codec aware
Torrey Searle [Fri, 28 Jul 2017 12:53:44 +0000 (14:53 +0200)] 
res_rtp_asterisk:  Make P2P bridge Asymmetric codec aware

Introduce a new property to rtp-engine to make it aware of
the desire for assymetric codecs or not.  If asymmetric codecs
is not allowed, the bridge will compare read/write formats
and shut down the p2p bridge if needed

ASTERISK-26745 #close

Change-Id: I0d9c83e5356df81661e58d40a8db565833501a6f

8 years agoCorrect some leaks in unit tests.
Corey Farrell [Fri, 4 Aug 2017 02:30:12 +0000 (22:30 -0400)] 
Correct some leaks in unit tests.

* chan_sip: channel in test_sip_rtpqos_1.
* test_config: config hook, config info and global config holder.
* test_core_format: format in format_attribute_set_without_interface.
* test_stream: unneeded frame duplication.
* test_taskprocessor: task_data.

Change-Id: I94d364d195cf3b3b5de2bf3ad565343275c7ad31

8 years agores_pjsip_transport_websocket.c: Fix serializer ref leak.
Richard Mudgett [Wed, 26 Jul 2017 22:49:57 +0000 (17:49 -0500)] 
res_pjsip_transport_websocket.c: Fix serializer ref leak.

Change-Id: Ib5a19bfd597f63d9021baeb645fc11153b3afa57

8 years agores_pjsip_outbound_registration.c: Misc fixes.
Richard Mudgett [Wed, 2 Aug 2017 23:41:49 +0000 (18:41 -0500)] 
res_pjsip_outbound_registration.c: Misc fixes.

* Remove unnecessary CMP_STOP.

* In handle_client_registration() use DEBUG_ATLEAST() to only do work
needed for the debug log message when the debug log message is needed.

* In sip_outbound_registration_state_destroy() check state->registration
for NULL.

Change-Id: I656d0fa11dda0b00048103efb1558e67a426fd80

8 years agores_pjsip_nat.c: Remove unnecessary CMP_STOP.
Richard Mudgett [Tue, 1 Aug 2017 01:20:13 +0000 (20:20 -0500)] 
res_pjsip_nat.c: Remove unnecessary CMP_STOP.

Change-Id: I6279b0d723bc3b75b8d65e81e02da9ea9bc0c3da

8 years agores_pjsip_registrar.c: Remove unnecessary CMP_STOP.
Richard Mudgett [Mon, 31 Jul 2017 19:20:02 +0000 (14:20 -0500)] 
res_pjsip_registrar.c: Remove unnecessary CMP_STOP.

Most uses of CMP_STOP are superfluous and are only respected when
OBJ_MULTIPLE is used to search the container.

Change-Id: I20571a202ec0aa1098bb2749eeba18de7ca110b8

8 years agoFix compile error for old versions of GCC.
Corey Farrell [Thu, 3 Aug 2017 16:30:31 +0000 (12:30 -0400)] 
Fix compile error for old versions of GCC.

Use -Wno-format-truncation only if supported by compiler.

ASTERISK-27171 #close

Change-Id: Iac0aed7a5bcaa16c21b7d62c4e4678d244c4ccb6

8 years agoRevert "res_pjsip_session: Release media resources on session end quicker."
George Joseph [Tue, 1 Aug 2017 20:57:15 +0000 (15:57 -0500)] 
Revert "res_pjsip_session: Release media resources on session end quicker."

This reverts commit 98709642d640b490f327d220fdcdea6d45fd65d7.

See the 15 branch review.

Change-Id: I8476b3cdacaad5157fa36b6247d0e4cdf1e8d5c6

8 years agoapp_queue: Add priority to AMI QueueStatus
Niklas Larsson [Thu, 29 Jun 2017 08:47:41 +0000 (10:47 +0200)] 
app_queue: Add priority to AMI QueueStatus

Add priority to callers in AMI QueueStatus response

ASTERISK-27092 #close

Change-Id: I8d1f737a72c7c38f4cfe1a4ee3ecc0a4f85bd199

8 years agores_pjsip_session: Release media resources on session end quicker.
Joshua Colp [Wed, 26 Jul 2017 16:39:32 +0000 (16:39 +0000)] 
res_pjsip_session: Release media resources on session end quicker.

A change was made long ago where the session was kept around
until the underlying INVITE session had been destroyed. This
had the side effect of also keeping the underlying media resources
around for this time as well.

This change ensures that when we know the session is ending we
release the media resources immediately.

ASTERISK-27110

Change-Id: I3c6a82fe7d2c50b9dc9197cb12ef22f20d337501

8 years agores_pjsip_pidf_eyebeam_body_supplement: Correct status presentation
Sean Bright [Wed, 26 Jul 2017 13:48:29 +0000 (09:48 -0400)] 
res_pjsip_pidf_eyebeam_body_supplement: Correct status presentation

This change fixes PIDF content generation when the underlying device
state is considered in use. Previously it was incorrectly marked
as closed meaning they were offline/unavailable. The code now
correctly marks them as open.

Additionally:

  * Generate an XML element for our activity instead of a using a text
    node.

  * Consider every extension state other than "unavailable" to be 'open'
    status.

  * Update the XML namespaces and structure to reflect those
    documented in RFC 4480

  * Use 'on-the-phone' (defined in RFC 4880) instead of 'busy' as the
    "in use" activity. This change results in eyeBeam using the
    appropriate icon for the watched user.

This was tested on eyeBeam 1.5.20.2 build 59030 on Windows.

ASTERISK-26659 #close
Reported by: Abraham Liebsch
patches:
  ASTERISK-26659.diff submitted by snuffy (license 5024)

Change-Id: I6e5ad450f91106029fb30517b8c0ea0c2058c810

8 years agores_pjsip: Add support for dnsmgr to external_media_address.
Joshua Colp [Sun, 23 Jul 2017 23:34:32 +0000 (23:34 +0000)] 
res_pjsip: Add support for dnsmgr to external_media_address.

The "external_media_address" option on transports is now
resolved using dnsmgr. This allows it to be automatically
refreshed regularly if refreshes are enabled in dnsmgr.
If the system is using a dynamic IP address a dynamic DNS
hostname can be provided to keep the IP address up to
date.

Change-Id: Ia54771720dff0105bde55d5bbb81a3ba437e05b2

8 years agoFix compiler warnings on Fedora 26 / GCC 7.
Corey Farrell [Fri, 28 Jul 2017 01:58:22 +0000 (21:58 -0400)] 
Fix compiler warnings on Fedora 26 / GCC 7.

GCC 7 has added capability to produce warnings, this fixes most of those
warnings.  The specific warnings are disabled in a few places:

* app_voicemail.c: truncation of paths more than 4096 chars in many places.
* chan_mgcp.c: callid truncated to 80 chars.
* cdr.c: two userfields are combined to cdr copy, fix would break ABI.
* tcptls.c: ignore use of deprecated method SSLv3_client_method().

ASTERISK-27156 #close

Change-Id: I65f280e7d3cfad279d16f41823a4d6fddcbc4c88

8 years agobundled_pjproject: Improve SSL/TLS error handling
George Joseph [Thu, 27 Jul 2017 11:35:51 +0000 (05:35 -0600)] 
bundled_pjproject:  Improve SSL/TLS error handling

OpenSSL has 2 levels or error processing.  It's possible for the
top layer to return SSL_ERROR_SYSCALL but the lower layer return
no error, in which case processing should continue.  Only the top
layer was being examined though so connections were being torn
down when they didn't need to be.  This patch adds the examination
of the lower level codes, and if they return no errors, allows
processing to continue.

ASTERISK-27001
Reported-by: Ian Gilmour
patches:
pjproject-2.6.patch submitted by Ian Gilmour (license 6889)

Updated-by: George Joseph and Sauw Ming (Teluu)
Merged to upstream pjproject on 7/27/2017 (commit 5631)

Change-Id: I23844ca0c68ef1ee550f14d46f6dae57d33b7bd2

8 years agochan_pjsip: add a new function PJSIP_DTMF_MODE
Torrey Searle [Mon, 26 Jun 2017 12:52:52 +0000 (14:52 +0200)] 
chan_pjsip: add a new function PJSIP_DTMF_MODE

This function is a replica of SIPDtmfMode, allowing the DTMF mode of a
PJSIP call to be modified on a per-call basis

ASTERISK-27085 #close

Change-Id: I20eef5da3e5d1d3e58b304416bc79683f87e7612

8 years agores_rtp_asterisk: Fix mapping of pjsip's ICE roles to ours
Sean Bright [Tue, 25 Jul 2017 20:17:45 +0000 (16:17 -0400)] 
res_rtp_asterisk: Fix mapping of pjsip's ICE roles to ours

Change-Id: Ia578ede1a55b21014581793992a429441903278b

8 years agoMerge "res_stasis_device_state: Unsubscribe should remove old subscriptions" into 13
Jenkins2 [Wed, 26 Jul 2017 12:09:31 +0000 (07:09 -0500)] 
Merge "res_stasis_device_state: Unsubscribe should remove old subscriptions" into 13

8 years agoMerge "app_voicemail.c: Allow mailbox entry on authentication retry prompt." into 13
Jenkins2 [Wed, 26 Jul 2017 11:43:20 +0000 (06:43 -0500)] 
Merge "app_voicemail.c: Allow mailbox entry on authentication retry prompt." into 13

8 years agoMerge "core: Add VP9 passthrough support." into 13
Joshua Colp [Tue, 25 Jul 2017 16:11:45 +0000 (11:11 -0500)] 
Merge "core: Add VP9 passthrough support." into 13

8 years agores_stasis_device_state: Unsubscribe should remove old subscriptions
Sergej Kasumovic [Thu, 20 Jul 2017 13:08:05 +0000 (15:08 +0200)] 
res_stasis_device_state: Unsubscribe should remove old subscriptions

Case scenario with Applications ARI:

* Once you subscribe to deviceState with Applications REST API, it will be
added into subscription pool.

* When you unsubscribe it will remove from the device_state_subscription
hash table but not from the subscription pool.

* When you subscribe again, it will add it to pool again.

* Now you will have two subscriptions and you will receive same event
twice.

This fix should now remove deviceState subscription from pool and it
should fix unsubscribe on deviceState.

ASTERISK-27130 #close

Change-Id: I718b70d770a086e39b4ddba4f69a3c616d4476c4

8 years agoMerge "say.c: Fix file locations for second, seconds, minute, minutes files" into 13
George Joseph [Tue, 25 Jul 2017 12:44:41 +0000 (07:44 -0500)] 
Merge "say.c: Fix file locations for second, seconds, minute, minutes files" into 13

8 years agocore: Add VP9 passthrough support.
Joshua Colp [Mon, 24 Jul 2017 18:30:59 +0000 (18:30 +0000)] 
core: Add VP9 passthrough support.

This change adds VP9 as a known codec and creates a cached
"vp9" media format for use.

Change-Id: I025a93ed05cf96153d66f36db1839109cc24c5cc

8 years agoformat.h: Fix a few minor errors in comments.
Matthew Fredrickson [Fri, 21 Jul 2017 20:57:46 +0000 (15:57 -0500)] 
format.h: Fix a few minor errors in comments.

A few minor problems were found in comments in format.h.  This patch fixes them.

Change-Id: I07f0bdb47b93359b361c4c3d8ecc87cd3199dd94

8 years agosay.c: Fix file locations for second, seconds, minute, minutes files
Rusty Newton [Fri, 21 Jul 2017 22:04:31 +0000 (17:04 -0500)] 
say.c: Fix file locations for second, seconds, minute, minutes files

The seconds and minutes files have always existed in the base language
directory of the Core package. So say.c has always been calling the wrong
location (under digits/) for those two files and in the case of second and
minute they didn't exist in the Core packages at all.

The 1.6 sounds release moves the second and minute files into Core from
Extra for the languages that already had them. A future release will include
the second and minute files for languages that didn't already have them.

This patch just changes all the target locations for second, seconds,
minute, and minutes that were under the digits subdir to be under the root of
sounds instead. Which is where the sounds will be for some languages after 1.6
sounds and for all languages after a future release.

ASTERISK-25810 #close

Change-Id: I05d9d4bee6a7237030530a46e7eb3df15f13f702
Reported-by: Nicolas Riendeau
8 years agoapp_voicemail.c: Allow mailbox entry on authentication retry prompt.
Richard Mudgett [Wed, 19 Jul 2017 23:11:19 +0000 (18:11 -0500)] 
app_voicemail.c: Allow mailbox entry on authentication retry prompt.

The following testsuite voicemail tests were failing to re-enter the
mailbox after the first login attempt.

tests/apps/voicemail/authenticate_invalid_mailbox
tests/apps/voicemail/authenticate_invalid_password

The tests were noting the start of the vm-incorrect-mailbox prompt and
immediately sending the mailbox for the next login attempt.  Since the
invalid message playback had to complete before the digits were
recognized, the test passed for the wrong reason and added approximately
20 seconds to the test times.

* Allow the vm-incorrect-mailbox prompt to get interrupted by the mailbox
digits like the initial vm-login prompt so the tests are able to enter the
intended mailbox.

Change-Id: I1dc53fe917bfe03a4587b2c4cd24c94696a69df8

8 years agoSounds: Update Makefile for Extra sounds 1.5.1 release
Rusty Newton [Fri, 21 Jul 2017 19:20:10 +0000 (14:20 -0500)] 
Sounds: Update Makefile for Extra sounds 1.5.1 release

Incrementing version for the Extra sounds release. 1.5.1 Extra sounds
removes two prompts that were moved into the Core packages in the 1.6 Core
sounds release.

ASTERISK-27142 #close

Change-Id: I82f017812b0ea9599e19dd4635afd55611f13ee7

8 years agoMerge "corosync: Fix corosync library name in configure.ac" into 13
Jenkins2 [Fri, 21 Jul 2017 11:38:41 +0000 (06:38 -0500)] 
Merge "corosync: Fix corosync library name in configure.ac" into 13

8 years agoMerge "pjsip: Increase maximum packet size." into 13
Jenkins2 [Thu, 20 Jul 2017 15:47:09 +0000 (10:47 -0500)] 
Merge "pjsip: Increase maximum packet size." into 13

8 years agocorosync: Fix corosync library name in configure.ac
Sean Bright [Thu, 20 Jul 2017 14:57:08 +0000 (10:57 -0400)] 
corosync: Fix corosync library name in configure.ac

Also add new corosync packages to install_prereq.

Reported by Travis Ryan in #asterisk-dev

Change-Id: Ib861c95ba630fed62dc54e56784ad8446ed9d2db

8 years agoMerge "app_playback.c: Use the timezonename parameter" into 13
Jenkins2 [Wed, 19 Jul 2017 14:34:07 +0000 (09:34 -0500)] 
Merge "app_playback.c: Use the timezonename parameter" into 13

8 years agoMerge "core: Add PARSE_TIMELEN support to ast_parse_arg and ACO." into 13
Jenkins2 [Wed, 19 Jul 2017 14:11:27 +0000 (09:11 -0500)] 
Merge "core: Add PARSE_TIMELEN support to ast_parse_arg and ACO." into 13

8 years agopjsip: Increase maximum packet size.
Benjamin Keith Ford [Tue, 18 Jul 2017 20:04:44 +0000 (15:04 -0500)] 
pjsip: Increase maximum packet size.

The maximum packet size for PJSIP has been increased to handle the
multiple streams being added for WebRTC.

Change-Id: I9ea1e8d02668c544acadcb1c6200e1cc1bd588b3

8 years agoapp_playback.c: Use the timezonename parameter
Holger Hans Peter Freyther [Tue, 11 Jul 2017 09:48:26 +0000 (11:48 +0200)] 
app_playback.c: Use the timezonename parameter

In say_date_generic the timezonename parameter is passed but never
used. Fix it by passing it to the ast_localtime function.

ASTERISK-27124

Change-Id: I6afa98f9163190043244b9f3ba91eb1874d1b586

8 years agoMerge "res_rtp_asterisk: Use RTP component for ICE if RTCP-MUX is in use." into 13
Joshua Colp [Mon, 17 Jul 2017 19:57:35 +0000 (14:57 -0500)] 
Merge "res_rtp_asterisk: Use RTP component for ICE if RTCP-MUX is in use." into 13

8 years agoMerge "app_confbridge: Make sure name recordings are always removed from the filesyst...
Jenkins2 [Mon, 17 Jul 2017 14:03:38 +0000 (09:03 -0500)] 
Merge "app_confbridge: Make sure name recordings are always removed from the filesystem" into 13

8 years agoMerge "chan_iax2: On reload make sure to check for existing MWI subscription" into 13
Jenkins2 [Mon, 17 Jul 2017 13:32:54 +0000 (08:32 -0500)] 
Merge "chan_iax2: On reload make sure to check for existing MWI subscription" into 13

8 years agoMerge "res/res_stasis_snoop: generate silence when audiohook returns null" into 13
Jenkins2 [Mon, 17 Jul 2017 13:03:40 +0000 (08:03 -0500)] 
Merge "res/res_stasis_snoop: generate silence when audiohook returns null" into 13

8 years agores_rtp_asterisk: Use RTP component for ICE if RTCP-MUX is in use.
Joshua Colp [Sun, 16 Jul 2017 17:18:39 +0000 (17:18 +0000)] 
res_rtp_asterisk: Use RTP component for ICE if RTCP-MUX is in use.

This change makes it so that if an RTCP packet is being sent
the RTP ICE component is used for sending if RTCP-MUX is in use.

ASTERISK-27133

Change-Id: I6200f611ede709602ee9b89501720c29545ed68b

8 years agores/res_stasis_snoop: generate silence when audiohook returns null
Torrey Searle [Tue, 11 Jul 2017 14:55:36 +0000 (16:55 +0200)] 
res/res_stasis_snoop: generate silence when audiohook returns null

Currently when rtp is paused, no packets are written to the
recorded audio file, causing the silence to be skipped and recording
not properly time aligned.  The read handler as been adapted to
return a silence frame of the correct size.

ASTERISK-27128 #close

Change-Id: I2d7f60650457860b9c70907b14426756b058a844

8 years agoapp_confbridge: Make sure name recordings are always removed from the filesystem
Sergej Kasumovic [Fri, 14 Jul 2017 06:25:36 +0000 (08:25 +0200)] 
app_confbridge: Make sure name recordings are always removed from the filesystem

This commit fixes two possible scenarios:

* When recording name and if during recording you hangup, file is never
removed. This is due to the fact file location is nulled.
* When recording name and if you hangup during thank-you prompt, file
is never removed.

ASTERISK-27123 #close

Change-Id: I39b7271408b4b54ce880c5111a886aa8f28c2625

8 years agochan_iax2: On reload make sure to check for existing MWI subscription
Sergej Kasumovic [Fri, 14 Jul 2017 06:11:50 +0000 (08:11 +0200)] 
chan_iax2: On reload make sure to check for existing MWI subscription

On every reload of chan_iax2 module, MWI subscription was added, which
results in additional taskprocessors being accumulated over time.

This commit fixes it by making sure we check for existing subscription
first.

This was verified with 'core show taskprocessors' CLI command.

ASTERISK-27122 #close

Change-Id: Ie2ef528fd5ca01b933eeb88188cc10967899cfb9

8 years agoSounds: Update for core sounds 1.6 release
Rusty Newton [Thu, 13 Jul 2017 20:43:42 +0000 (15:43 -0500)] 
Sounds: Update for core sounds 1.6 release

Added necessary lines to make the en_NZ language set selectable and to get
core sounds 1.6 pulled down.

ASTERISK-26807 #close
ASTERISK-25816 #close
ASTERISK-26274 #close

Change-Id: I84e4dd4696568cc1ba318d12ac4b075461d6eed4

8 years agocore: Add PARSE_TIMELEN support to ast_parse_arg and ACO.
Corey Farrell [Mon, 10 Jul 2017 19:04:58 +0000 (15:04 -0400)] 
core: Add PARSE_TIMELEN support to ast_parse_arg and ACO.

This adds support for parsing timelen values from config files.  This
includes support for all flags which apply to PARSE_INT32.  Support for
this parser is added to ACO via the OPT_TIMELEN_T option type.

Fixes an issue where extra characters provided to ast_app_parse_timelen
were ignored, they now cause an error.

Testing is included.

ASTERISK-27117 #close

Change-Id: I6b333feca7e3f83b4ef5bf2636fc0fd613742554

8 years agoMerge "res/res_pjsip_t38 ensure t38 requests get rejected quickly" into 13
Jenkins2 [Thu, 13 Jul 2017 15:11:40 +0000 (10:11 -0500)] 
Merge "res/res_pjsip_t38  ensure t38 requests get rejected quickly" into 13

8 years agobasic-pbx: Remove res_pjsip_multihomed from sample config
Sean Bright [Wed, 12 Jul 2017 20:07:42 +0000 (16:07 -0400)] 
basic-pbx: Remove res_pjsip_multihomed from sample config

ASTERISK-27127 #close
Reported by: HZMI8gkCvPpom0tM

Change-Id: I2b0c54570d58156e37166ac536728af3b6c01789

8 years agoMerge "res_musiconhold: Add kill_escalation_delay, kill_method to class" into 13
Jenkins2 [Wed, 12 Jul 2017 10:55:38 +0000 (05:55 -0500)] 
Merge "res_musiconhold:  Add kill_escalation_delay, kill_method to class" into 13

8 years agoMerge "http.c: Reduce log spam" into 13
Joshua Colp [Wed, 12 Jul 2017 09:25:20 +0000 (04:25 -0500)] 
Merge "http.c:  Reduce log spam" into 13

8 years agores_musiconhold: Add kill_escalation_delay, kill_method to class
George Joseph [Tue, 11 Jul 2017 12:26:27 +0000 (06:26 -0600)] 
res_musiconhold:  Add kill_escalation_delay, kill_method to class

By default, when res_musiconhold reloads or unloads, it sends a HUP
signal to custom applications (and all descendants), waits 100ms,
then sends a TERM signal, waits 100ms, then finally sends a KILL
signal.  An application which is interacting with an external
device and/or spawns children of its own may not be able to exit
cleanly in the default times, expecially if sent a KILL signal, or
if it's children are getting signals directly from
res_musiconhoild.

* To allow extra time, the 'kill_escalation_delay'
  class option can be used to set the number of milliseconds
  res_musiconhold waits before escalating kill signals, with the
  default being the current 100ms.

* To control to whom the signals are sent, the "kill_method" class
  option can be set to "process_group" (the default, existing
  behavior), which sends signals to the application and its
  descendants directly, or "process" which sends signals only to the
  application itself.

Change-Id: Iff70a1a9405685a9021a68416830c0db5158603b

8 years agoAvoid setting maxfiles for a remote asterisk
Tzafrir Cohen [Mon, 3 Jul 2017 12:30:37 +0000 (15:30 +0300)] 
Avoid setting maxfiles for a remote asterisk

Setting maxfiles (maximum number of open files) has no practical
effect on a remote asterisk (rasterisk, rasterisk -x).

It has an ill effect of printing an extra message, which
may be annoying in case of -x.

ASTERISK-27105 #close

Change-Id: Iaf9eb344e4b4b517df91b736b27ec55f6a6921a2

8 years agohttp.c: Reduce log spam
George Joseph [Wed, 5 Jul 2017 20:31:43 +0000 (14:31 -0600)] 
http.c:  Reduce log spam

Messages like "fwrite() failed: Connection reset by peer" are no
help whatsoever, especially since they can be caused simply by a
client disconnecting.

* Make those WARNINGs DEBUGs.
* Check the return of the headers fprintf.

Change-Id: I17bd5f3621514152a7b2b263c801324c5e96568b

8 years agoMerge "res_pjsip: Fix crash with from_user containing invalid characters." into 13
Jenkins2 [Tue, 11 Jul 2017 12:03:53 +0000 (07:03 -0500)] 
Merge "res_pjsip: Fix crash with from_user containing invalid characters." into 13

8 years agoMerge "json.c: Add backtrace log to find 'Invalid UTF-8 string' errors" into 13
Jenkins2 [Mon, 10 Jul 2017 16:22:06 +0000 (11:22 -0500)] 
Merge "json.c: Add backtrace log to find 'Invalid UTF-8 string' errors" into 13

8 years agoMerge "res_rtp_asterisk.c: Fix TURN deadlock by using ICE session group lock." into 13
Jenkins2 [Mon, 10 Jul 2017 16:05:23 +0000 (11:05 -0500)] 
Merge "res_rtp_asterisk.c: Fix TURN deadlock by using ICE session group lock." into 13

8 years agoMerge "bridge_native_rtp.c: Fix direct media video RTP instance ACL check." into 13
Jenkins2 [Mon, 10 Jul 2017 15:51:02 +0000 (10:51 -0500)] 
Merge "bridge_native_rtp.c: Fix direct media video RTP instance ACL check." into 13

8 years agores_pjsip: Fix crash with from_user containing invalid characters.
Benjamin Keith Ford [Fri, 7 Jul 2017 16:19:13 +0000 (11:19 -0500)] 
res_pjsip: Fix crash with from_user containing invalid characters.

If the from_user field contains certain characters (like @, {, ^, etc.),
PJSIP will return a null value for the URI when attempting to parse it.
This causes a crash when trying to dial out through a trunk that contains
these invalid characters in its from_user field.

This change checks the configuration and ensures that an endpoint will
not be created if the from_user contains an invalid character. It also
adds a null check to the PJSIP URI parsing as a backup.

ASTERISK-27036 #close
Reported by: Maxim Vasilev

Change-Id: I0396fdb5080604e0bdf1277464d5c8a85db913d0

8 years agojson.c: Add backtrace log to find 'Invalid UTF-8 string' errors
Richard Mudgett [Wed, 28 Jun 2017 00:27:43 +0000 (19:27 -0500)] 
json.c: Add backtrace log to find 'Invalid UTF-8 string' errors

Change-Id: I9020ff9f2b3749904317c0c173f47a1bbed6f929

8 years agoMerge "app_voicemail: Cleanup ODBC connection handling" into 13
Jenkins2 [Fri, 7 Jul 2017 21:24:52 +0000 (16:24 -0500)] 
Merge "app_voicemail: Cleanup ODBC connection handling" into 13

8 years agores_rtp_asterisk.c: Fix TURN deadlock by using ICE session group lock.
Richard Mudgett [Wed, 5 Jul 2017 18:39:45 +0000 (13:39 -0500)] 
res_rtp_asterisk.c: Fix TURN deadlock by using ICE session group lock.

When a message is received on the TURN socket, the code processing the
message needs to call into the ICE/STUN session for further processing.
This code path locks the TURN group lock then the ICE/STUN group lock.  In
another thread an ICE/STUN timer can fire off to send a keep alive message
over the TURN socket.  In this code path, the ICE/STUN group lock is
obtained then the TURN group lock is obtained to send the packet.  A
classic deadlock case if the group locks are not the same.

* Made TURN get created using the ICE/STUN session's group lock.

NOTE: I was originally concerned that the ICE/STUN session can get
recreated by ice_reset_session() for an event like RTCP multiplexing
causing a change during SDP negotiation.  In this case the TURN group lock
would become different.  However, TURN is also recreated as part of the
ICE/STUN recreation in ice_create() when all known ICE candidates are
added to the new ICE session.  While the ICE/STUN and TURN sessions are
being recreated there is a period where the group locks could be
different.

ASTERISK-27023 #close
Patches:
    res_rtp_asterisk-turn-deadlock-fix.patch (license #6502)
        patch uploaded by Michael Walton (modified)

Change-Id: Ic870edb99ce4988a8c8eb6e678ca7f19da1432b9

8 years agoMerge "Fix alembic branches" into 13
Joshua Colp [Thu, 6 Jul 2017 11:39:13 +0000 (06:39 -0500)] 
Merge "Fix alembic branches" into 13

8 years agoFix alembic branches
George Joseph [Thu, 6 Jul 2017 10:55:17 +0000 (04:55 -0600)] 
Fix alembic branches

Change-Id: I04f607f084bda9b1b7f626e8e9735c37dc751187

8 years agoMerge "core: Fix segfault when invoking 'data get' CLI command" into 13
Jenkins2 [Wed, 5 Jul 2017 23:29:28 +0000 (18:29 -0500)] 
Merge "core: Fix segfault when invoking 'data get' CLI command" into 13

8 years agoMerge "pjproject_bundled: Allow passing configure options to bundled" into 13
Jenkins2 [Wed, 5 Jul 2017 22:39:56 +0000 (17:39 -0500)] 
Merge "pjproject_bundled:  Allow passing configure options to bundled" into 13

8 years agobridge_native_rtp.c: Fix direct media video RTP instance ACL check.
Richard Mudgett [Fri, 23 Jun 2017 16:17:51 +0000 (11:17 -0500)] 
bridge_native_rtp.c: Fix direct media video RTP instance ACL check.

The video stream was using the audio stream RTP instance addresses to
check if the video RTP gets directed to an allowed direct media Access
Control List (ACL) address.  There is no guarantee that the video RTP
instance uses the same addresses as the audio RTP instance.

This looks like it has been a bug since v11 when direct media ACL was
first added to chan_sip and then faithfully reproduced through a couple
code refactorings into the new bridging architecture.

Change-Id: I8ddd56320e0eea769f3ceed3fa5b6bdfb51d681a

8 years agoMerge "pjsip_distributor.c: Fix deadlock with TCP type transports." into 13
George Joseph [Wed, 5 Jul 2017 21:08:18 +0000 (16:08 -0500)] 
Merge "pjsip_distributor.c: Fix deadlock with TCP type transports." into 13

8 years agoMerge "chan_sip: Only when different, add TCP|TLS in autodomain (SIP Domain Support...
Jenkins2 [Wed, 5 Jul 2017 21:06:44 +0000 (16:06 -0500)] 
Merge "chan_sip: Only when different, add TCP|TLS in autodomain (SIP Domain Support)." into 13

8 years agoMerge "pjsip_distributor.c: Fix unidentified_requests hash functions." into 13
Jenkins2 [Wed, 5 Jul 2017 20:07:51 +0000 (15:07 -0500)] 
Merge "pjsip_distributor.c: Fix unidentified_requests hash functions." into 13

8 years agoMerge "bridge_native_rtp: Keep rtp instance refs on bridge_channel" into 13
Jenkins2 [Wed, 5 Jul 2017 20:02:28 +0000 (15:02 -0500)] 
Merge "bridge_native_rtp: Keep rtp instance refs on bridge_channel" into 13

8 years agoMerge "chan_pjsip: Fix ability to send UPDATE on COLP" into 13
George Joseph [Wed, 5 Jul 2017 19:38:01 +0000 (14:38 -0500)] 
Merge "chan_pjsip:  Fix ability to send UPDATE on COLP" into 13

8 years agoMerge "channel: Clear channel flag in error branch." into 13
Jenkins2 [Wed, 5 Jul 2017 13:56:46 +0000 (08:56 -0500)] 
Merge "channel: Clear channel flag in error branch." into 13

8 years agocore: Fix segfault when invoking 'data get' CLI command
Sean Bright [Wed, 5 Jul 2017 12:42:07 +0000 (08:42 -0400)] 
core: Fix segfault when invoking 'data get' CLI command

Invoking 'data get /asterisk/core/channeltypes' caused a crash because
of an assumption of a tech's capabilities to be non-NULL. The
'Surrogate' tech, however, does have a NULL capabilities member,
resulting in a crash.

ASTERISK-27108 #close

Change-Id: I2fbe7715681f43d5565d1e1599269468c26b0e0a

8 years agochan_sip: Only when different, add TCP|TLS in autodomain (SIP Domain Support).
Alexander Traud [Mon, 3 Jul 2017 15:59:43 +0000 (17:59 +0200)] 
chan_sip: Only when different, add TCP|TLS in autodomain (SIP Domain Support).

When sip.conf contained tcpenable=yes and autodomain=yes, the TCP domain was
added in any case, because of a local Boolean-negation error of the return value
of ast_sockaddr_cmp. After fixing this error for TCP and TLS, the TLS domain was
still always added with tlsenable=yes, because the domains were not compared
just on the address but also on the port – and TLS is always on a different port
than UDP/TCP.

ASTERISK-27106

Change-Id: I14fe9e319e238320b094016980445ef3a5b3337c

8 years agochan_sip: Fix a typo for tlsbindaddr in autodomain (SIP Domain Support).
Alexander Traud [Mon, 3 Jul 2017 15:38:32 +0000 (17:38 +0200)] 
chan_sip: Fix a typo for tlsbindaddr in autodomain (SIP Domain Support).

Because of a copy-and-paste error when the struct ast_sockaddr changed,
tlsbindaddr was not added, when sip.conf contained autodomain=yes; see
"show sip domains" on the command-line interface (CLI) of Asterisk.

ASTERISK-27106

Change-Id: I3d0957150017c223136968ef1266f275d0d6695e