]> git.ipfire.org Git - thirdparty/asterisk.git/log
thirdparty/asterisk.git
8 years agobuild: Various OpenBSD issues 65/4465/1
George Joseph [Thu, 17 Nov 2016 02:24:08 +0000 (19:24 -0700)] 
build:  Various OpenBSD issues

OpenBSD's 'find' doesn't take the -delete argument so you have to pipe
through 'xargs rm -rf'.

'echo -e' doesn't like \t starting a line. It just prints 't' which
causes the libasteriskpj.exports file to be garbage.  They were just
cosmetic so they were removed.

librt doesn't exist so the link of libasteriskpj.so fails. It's not
actually needed for linux anyway so -lrt was removed from the link.

res_rtp_asterisk was failing to load because of an undefined
DTLS_method. '|| defined(LIBRESSL_VERSION_NUMBER)' was added to the #if
so DTLSv1_method is used instead.

ASTERISK-26608

Change-Id: I926ec95b0b69633231e3ad1d6e803b977272c49c

8 years agoMerge "channel: Fix issues in hangup scenarios caused by frame deferral" into 13
George Joseph [Wed, 16 Nov 2016 23:42:17 +0000 (17:42 -0600)] 
Merge "channel:  Fix issues in hangup scenarios caused by frame deferral" into 13

8 years agochannel: Fix issues in hangup scenarios caused by frame deferral 22/4422/4
George Joseph [Tue, 15 Nov 2016 00:45:01 +0000 (17:45 -0700)] 
channel:  Fix issues in hangup scenarios caused by frame deferral

ASTERISK-26343

Change-Id: I06dbf7366e26028251964143454a77d017bb61c8

8 years agoMerge "codec_opus: Fix warning when Opus negotiated but codec_opus not loaded." into 13
Joshua Colp [Wed, 16 Nov 2016 23:40:36 +0000 (17:40 -0600)] 
Merge "codec_opus: Fix warning when Opus negotiated but codec_opus not loaded." into 13

8 years agoMerge "res/ari/resource_bridges: Add the ability to manipulate the video source"...
zuul [Wed, 16 Nov 2016 22:48:14 +0000 (16:48 -0600)] 
Merge "res/ari/resource_bridges: Add the ability to manipulate the video source" into 13

8 years agoMerge "Revert "Revert "channel: Use frame deferral API for safe sleep.""" into 13
Joshua Colp [Wed, 16 Nov 2016 21:39:00 +0000 (15:39 -0600)] 
Merge "Revert "Revert "channel: Use frame deferral API for safe sleep.""" into 13

8 years agoMerge "Revert "Revert "autoservice: Use frame deferral API""" into 13
Joshua Colp [Wed, 16 Nov 2016 21:38:55 +0000 (15:38 -0600)] 
Merge "Revert "Revert "autoservice: Use frame deferral API""" into 13

8 years agoMerge "Revert "Revert "AGI: Only defer frames when in an interception routine.""...
zuul [Wed, 16 Nov 2016 21:06:25 +0000 (15:06 -0600)] 
Merge "Revert "Revert "AGI: Only defer frames when in an interception routine.""" into 13

8 years agoMerge "Revert "Revert "Add API for channel frame deferral.""" into 13
zuul [Wed, 16 Nov 2016 21:06:24 +0000 (15:06 -0600)] 
Merge "Revert "Revert "Add API for channel frame deferral.""" into 13

8 years agoMerge "apps/app_echo: Only relay a single video source change frame" into 13
zuul [Wed, 16 Nov 2016 21:06:23 +0000 (15:06 -0600)] 
Merge "apps/app_echo: Only relay a single video source change frame" into 13

8 years agocodec_opus: Fix warning when Opus negotiated but codec_opus not loaded. 54/4454/2
Richard Mudgett [Tue, 15 Nov 2016 22:23:35 +0000 (16:23 -0600)] 
codec_opus: Fix warning when Opus negotiated but codec_opus not loaded.

When Opus is negotiated but not loaded, the log is spammed with messages
because the system does not know how to calculate the number of samples in
a frame.

* Suppress the warning by supplying a function that assumes 20ms of
samples in the frame.  For pass through support it doesn't really seem to
matter what number of samples is returned anyway.

ASTERISK-26605 #close

Change-Id: Icf2273692f040dc2c45b01e72a790d11092f9e0f

8 years agoMerge "Add X.509 subject alternative name support to TLS certificate verification...
Joshua Colp [Wed, 16 Nov 2016 19:14:42 +0000 (13:14 -0600)] 
Merge "Add X.509 subject alternative name support to TLS certificate verification." into 13

8 years agoMerge "cli: Fix ast_el_read_char to work with libedit >= 3.1" into 13
Joshua Colp [Wed, 16 Nov 2016 18:50:15 +0000 (12:50 -0600)] 
Merge "cli:  Fix ast_el_read_char to work with libedit >= 3.1" into 13

8 years agoMerge "file.c/__ast_file_read_dirs: Fix issues on filesystems without d_type" into 13
Joshua Colp [Wed, 16 Nov 2016 17:12:16 +0000 (11:12 -0600)] 
Merge "file.c/__ast_file_read_dirs:  Fix issues on filesystems without d_type" into 13

8 years agofile.c/__ast_file_read_dirs: Fix issues on filesystems without d_type 46/4446/4
George Joseph [Tue, 15 Nov 2016 18:01:04 +0000 (11:01 -0700)] 
file.c/__ast_file_read_dirs:  Fix issues on filesystems without d_type

One of the code paths in __ast_file_read_dirs will only get executed if
the OS doesn't support dirent->d_type OR if the filesystem the
particular file is on doesn't support it.  So, while standard Linux
systems support the field, some filesystems like XFS do not.  In this
case, we need to call stat() to determine whether the directory entry
is a file or directory so we append the filename to the supplied
directory path and call stat.  We forgot to truncate path back to just
the directory afterwards though so we were passing a complete file name
to the callback in the dir_name parameter instead of just the directory
name.

The logic has been re-written to only create a full_path if we need to
call stat() or if we need to descend into another directory.

Change-Id: I54e4228bd8355fad65200c6df3ec4c9c8a98dfba

8 years agoAdd X.509 subject alternative name support to TLS certificate 51/4451/1
Maciej Szmigiero [Thu, 14 May 2015 22:12:41 +0000 (00:12 +0200)] 
Add X.509 subject alternative name support to TLS certificate
verification.

This way one X.509 certificate can be used for hosts that
can be reached under multiple DNS names or for multiple hosts.

Signed-off-by: Maciej Szmigiero <mail@maciej.szmigiero.name>
ASTERISK-25063 #close

Change-Id: I13302c80490a0b44c43f1b45376c9bd7b15a538f

8 years agopjproject: Use a much higher limit for PJ_ICE_MAX_CHECKS 33/4433/1
Matt Jordan [Mon, 14 Nov 2016 21:57:08 +0000 (15:57 -0600)] 
pjproject: Use a much higher limit for PJ_ICE_MAX_CHECKS

The PJ_ICE_MAX_CHECKS constant is used by pjproject to determine how
many pairs of local/remote candidates will be made. If for some reason
we reach this upper bound, ICE will generally fail and no media will
flow between the browser and Asterisk.

This patch makes PJ_ICE_MAX_CHECKS set to the total possible number of
pairs of candidates we'd theoretically allow, which is
PJ_ICE_MAX_CAND^2. Prior to this patch, we simply multiplied
PJ_ICE_MAX_CAND by two; on systems with multiple interfaces (I blame
Docker), this is far too low to allow WebRTC calls to succeed.

Setting this to be PJ_ICE_MAX_CAND^2 allowed WebRTC calls to succeed
even when the system Asterisk was running on had quite a few virtual
interfaces.

Change-Id: Icd4f17de0ac9d3a83dddfc8bf1cb7616bc107d55

8 years agoapps/app_echo: Only relay a single video source change frame 32/4432/1
Matt Jordan [Mon, 14 Nov 2016 21:32:14 +0000 (15:32 -0600)] 
apps/app_echo: Only relay a single video source change frame

In 9785e8d0, app_echo was updated to relay video source updates to the
channel for the purposes of displaying video in WebRTC tests.
Unfortunately, this can cause a Kafkaesque nightmare if two or more
Local channels are in a bridge together where their ends are in
app_echo. When this situation occurs, a video update sent into app_echo
will cause the video update to be relayed to the other Local channels,
causing another round of video updates, etc. In not much time at all,
the channel length queues will be overwhelmed, channel alert pipes will
fail, and all hell will break loose as Asterisk merrily continues to
throw more video update requests onto the channels.

This patch updates app_echo to *only* relay a single video update. Once
a video update has been made, all further video updates are dropped.
This meets the intended purpose of the original patch: if we get a video
update and we're in app_echo, go ahead and ask the sender to update
themselves. However, once we've got that video stream sync'd up, don't
keep spamming the world.

Change-Id: I9210780b08d4c17ddb38599d1c64453adfc34f74

8 years agores/ari/resource_bridges: Add the ability to manipulate the video source 31/4431/1
Matt Jordan [Tue, 8 Nov 2016 16:11:41 +0000 (10:11 -0600)] 
res/ari/resource_bridges: Add the ability to manipulate the video source

In multi-party bridges, Asterisk currently supports two video modes:
 * Follow the talker, in which the speaker with the most energy is shown
   to all participants but the speaker, and the speaker sees the
   previous video source
 * Explicitly set video sources, in which all participants see a locked
   video source

Prior to this patch, ARI had no ability to manipulate the video source.
This isn't important for two-party bridges, in which Asterisk merely
relays the video between the participants. However, in a multi-party
bridge, it can be advantageous to allow an external application to
manipulate the video source.

This patch provides two new routes to accomplish this:
(1) setVideoSource: POST /bridges/{bridgeId}/videoSource/{channelId}
    Sets a video source to an explicit channel
(2) clearVideoSource: DELETE /bridges/{bridgeId}/videoSource
    Removes any explicit video source, and sets the video mode to talk
    detection

ASTERISK-26595 #close

Change-Id: I98e455d5bffc08ea5e8d6b84ccaf063c714e6621

8 years agoRevert "Revert "channel: Use frame deferral API for safe sleep."" 21/4421/2
George Joseph [Mon, 14 Nov 2016 20:22:31 +0000 (15:22 -0500)] 
Revert "Revert "channel: Use frame deferral API for safe sleep.""

This reverts commit 58c88cfbaa80cb43419cde9186d643d1c5d24baf.

Change-Id: I72692e2b2e83ef6da9390075ff20b138b2c374b6

8 years agoRevert "Revert "autoservice: Use frame deferral API"" 20/4420/2
George Joseph [Mon, 14 Nov 2016 20:22:10 +0000 (15:22 -0500)] 
Revert "Revert "autoservice: Use frame deferral API""

This reverts commit 1df434e2b4bd7cc34b9b4addf405a3caa7ac16b8.

Change-Id: Id2b8a8bccbb4bbdd82b792275d4cd6f32563e401

8 years agoRevert "Revert "AGI: Only defer frames when in an interception routine."" 19/4419/2
George Joseph [Mon, 14 Nov 2016 20:21:48 +0000 (15:21 -0500)] 
Revert "Revert "AGI: Only defer frames when in an interception routine.""

This reverts commit 6be5d8de0da7e804544507f70382425af9a07b3f.

Change-Id: I4b548137f52ae0686d8f09e21496b778d1c6a797

8 years agoRevert "Revert "Add API for channel frame deferral."" 18/4418/1
George Joseph [Mon, 14 Nov 2016 20:21:26 +0000 (15:21 -0500)] 
Revert "Revert "Add API for channel frame deferral.""

This reverts commit 6b5a7ced136b7178ae0b2ba39221eba1cd2e37c9.

Change-Id: I61d1dbb2e69e1977f684b7dfc8e98211024e1cd1

8 years agoMerge "res_pjsip.c: Rework endpt_send_request() req_wrapper code." into 13
zuul [Mon, 14 Nov 2016 18:44:41 +0000 (12:44 -0600)] 
Merge "res_pjsip.c: Rework endpt_send_request() req_wrapper code." into 13

8 years agocli: Fix ast_el_read_char to work with libedit >= 3.1 11/4411/1
George Joseph [Mon, 14 Nov 2016 18:16:03 +0000 (11:16 -0700)] 
cli:  Fix ast_el_read_char to work with libedit >= 3.1

Libedit 3.1 is not build with unicode on as a default and so the
prototype for the el_gets callback changed from expecting a char buffer
to accepting a wchar buffer.  If ast_el_read_char isn't changed,
the cli reads garbage from teh terminal.

Added a configure test for (*el_rfunc_t)(EditLine *, wchar_t *) and
updated ast_el_read_char to use the HAVE_ define to detemrine whether
to use char or wchar.

ASTERISK-26592 #close

Change-Id: I9099b46f68e06d0202ff80e53022a2b68b08871a

8 years agoMerge "Fix closing rtp ports after call finished in chan_unistim." into 13
Joshua Colp [Mon, 14 Nov 2016 14:05:38 +0000 (08:05 -0600)] 
Merge "Fix closing rtp ports after call finished in chan_unistim." into 13

8 years agoMerge "res_pjsip: Fix tdata leaks in off nominal paths." into 13
Joshua Colp [Mon, 14 Nov 2016 12:15:44 +0000 (06:15 -0600)] 
Merge "res_pjsip: Fix tdata leaks in off nominal paths." into 13

8 years agoFix closing rtp ports after call finished in chan_unistim. 02/4402/1
Igor Goncharovskiy [Fri, 11 Nov 2016 08:41:36 +0000 (11:41 +0300)] 
Fix closing rtp ports after call finished in chan_unistim.

Fix ASTERISK-26565 by adding ast_rtp_instance_stop before
rtp instance destroy for chan_unistim. Also several fixes
for displayed text translation.

Change-Id: If42a03eea09bd1633471406bdc829cf98bf6affc

8 years agoMerge "res_pjsip_sdp_rtp: Reject offer of required SRTP without res_srtp." into 13
Joshua Colp [Fri, 11 Nov 2016 21:17:54 +0000 (15:17 -0600)] 
Merge "res_pjsip_sdp_rtp: Reject offer of required SRTP without res_srtp." into 13

8 years agoMerge "build: Fix default values for some SANITIZER options" into 13
zuul [Fri, 11 Nov 2016 04:09:02 +0000 (22:09 -0600)] 
Merge "build:  Fix default values for some SANITIZER options" into 13

8 years agores_pjsip.c: Rework endpt_send_request() req_wrapper code. 87/4387/1
Richard Mudgett [Fri, 23 Sep 2016 22:54:07 +0000 (17:54 -0500)] 
res_pjsip.c: Rework endpt_send_request() req_wrapper code.

* Don't hold the req_wrapper lock too long in endpt_send_request().  We
could block the PJSIP monitor thread if the timeout timer expires.
sip_get_tpselector_from_endpoint() does a sorcery access that could take
awhile accessing a database.  pjsip_endpt_send_request() might take awhile
if selecting a transport.

* Shorten the time that the req_wrapper lock is held in the callback
functions.

* Simplify endpt_send_request() req_wrapper->timeout code.

* Removed some redundant req_wrapper->timeout_timer->id assignments.

Change-Id: I3195e3a8e0207bb8e7f49060ad2742cf21a6e4c9

8 years agores_pjsip: Fix tdata leaks in off nominal paths. 84/4384/1
Richard Mudgett [Wed, 21 Sep 2016 20:10:29 +0000 (15:10 -0500)] 
res_pjsip: Fix tdata leaks in off nominal paths.

Change-Id: Ie83e06e88c2d60157775263b07e40b61718ac97b

8 years agores_pjsip_registrar_expire.c: Remove extra linefeed in debug message. 81/4381/1
Richard Mudgett [Mon, 24 Oct 2016 17:41:38 +0000 (12:41 -0500)] 
res_pjsip_registrar_expire.c: Remove extra linefeed in debug message.

Change-Id: I1f9adb911f23376503396ec8867e8005b755eb94

8 years agores_pjsip_sdp_rtp: Reject offer of required SRTP without res_srtp. 92/4392/1
Joshua Colp [Thu, 10 Nov 2016 16:57:49 +0000 (16:57 +0000)] 
res_pjsip_sdp_rtp: Reject offer of required SRTP without res_srtp.

When optimistic SRTP was on it was possible for us to still
set up a call without an audio stream if an offer was received
with required SRTP.

This change makes it so this scenario will now fail with a 488
response.

ASTERISK-26575

Change-Id: I7d14187037681f48879bd20319ac79d0877318f3

8 years agoapp_queue: Add mention of 'ABANDON' variable to CHANGES. 77/4377/1
Joshua Colp [Thu, 10 Nov 2016 14:33:41 +0000 (14:33 +0000)] 
app_queue: Add mention of 'ABANDON' variable to CHANGES.

ASTERISK-26558

Change-Id: I1127010181e79c8ac291f72f036cb8e430dc7f7e

8 years agoMerge "Revert "autoservice: Use frame deferral API"" into 13
George Joseph [Thu, 10 Nov 2016 13:42:37 +0000 (07:42 -0600)] 
Merge "Revert "autoservice: Use frame deferral API"" into 13

8 years agoMerge "Revert "Add API for channel frame deferral."" into 13
George Joseph [Thu, 10 Nov 2016 13:42:36 +0000 (07:42 -0600)] 
Merge "Revert "Add API for channel frame deferral."" into 13

8 years agoMerge "Revert "AGI: Only defer frames when in an interception routine."" into 13
George Joseph [Thu, 10 Nov 2016 13:42:36 +0000 (07:42 -0600)] 
Merge "Revert "AGI: Only defer frames when in an interception routine."" into 13

8 years agoMerge "Revert "channel: Use frame deferral API for safe sleep."" into 13
George Joseph [Thu, 10 Nov 2016 13:42:35 +0000 (07:42 -0600)] 
Merge "Revert "channel: Use frame deferral API for safe sleep."" into 13

8 years agoRevert "Add API for channel frame deferral." 76/4376/1
George Joseph [Thu, 10 Nov 2016 13:41:55 +0000 (08:41 -0500)] 
Revert "Add API for channel frame deferral."

This reverts commit 9231a56cf3d6f5eca1bf2d37d827453400690773.
Multiple testsuite failures were detected after the fact.

Change-Id: I3bac8d7c3ddb69a4ddf6c5d6de0ffa5ff7ff3af7

8 years agoRevert "AGI: Only defer frames when in an interception routine." 75/4375/1
George Joseph [Thu, 10 Nov 2016 13:41:43 +0000 (08:41 -0500)] 
Revert "AGI: Only defer frames when in an interception routine."

This reverts commit 5c10091f3d1430c6fc04015226f8c3e3aa9d8282.
Multiple testsuite failures were detected after the fact.

Change-Id: I397a841acc17ae230c512449cd6bed89d2ef3b73

8 years agoRevert "autoservice: Use frame deferral API" 74/4374/1
George Joseph [Thu, 10 Nov 2016 13:41:25 +0000 (08:41 -0500)] 
Revert "autoservice: Use frame deferral API"

This reverts commit 2e3a3545754749de21873bfdc6d1a40ec7d8893f.
Multiple testsuite failures were detected after the fact.

Change-Id: Ia45fa4633fae74dca345b24bb6722737c63035de

8 years agoRevert "channel: Use frame deferral API for safe sleep." 73/4373/1
George Joseph [Thu, 10 Nov 2016 13:40:59 +0000 (08:40 -0500)] 
Revert "channel: Use frame deferral API for safe sleep."

This reverts commit 44f7e252397fd87420b3374df26941d7436401b3.
Multiple testsuite failures were detected after the fact.

Change-Id: I56299087da22128a95f0c8f3955f740890d7ca65

8 years agoMerge "app_queue: new variable set when abandoned" into 13
Joshua Colp [Thu, 10 Nov 2016 12:52:41 +0000 (06:52 -0600)] 
Merge "app_queue: new variable set when abandoned" into 13

8 years agobuild: Fix default values for some SANITIZER options 61/4361/1
George Joseph [Thu, 10 Nov 2016 00:18:00 +0000 (17:18 -0700)] 
build:  Fix default values for some SANITIZER options

2 of the sanitizers didn't have default values so in systems that
don't support sanitizers menuselect would spit out warnings.  They
were harmless but confusing.  They've now been set to "0".

Change-Id: I08dc495e3b83f1feac3160b421f538c375fc5d58

8 years agoMerge "res_pjsip_session: Do not call session supplements when it's too late." into 13
George Joseph [Wed, 9 Nov 2016 19:23:59 +0000 (13:23 -0600)] 
Merge "res_pjsip_session: Do not call session supplements when it's too late." into 13

8 years agoapp_queue: new variable set when abandoned 23/4323/4
Sebastian Gutierrez [Sun, 6 Nov 2016 12:04:00 +0000 (09:04 -0300)] 
app_queue: new variable set when abandoned

sets the variable ABANDONED to TRUE if the call was not answered.

ASTERISK-26558

Change-Id: I4729af9bff4eba436d8a776afd3374065d0036d3

8 years agores_pjsip_session: Do not call session supplements when it's too late. 51/4351/1
Mark Michelson [Tue, 8 Nov 2016 16:48:32 +0000 (10:48 -0600)] 
res_pjsip_session: Do not call session supplements when it's too late.

res_pjsip_sesssion was hooking into transaction and invite state
changes. One of the reasons for doing so was due to the
PJSIP_EVENT_TX_MSG event. The idea was that we were hooking into the
message sending process, and so we should call session supplements to
alter the outgoing message.

In reality, this event was meant to indicate that the message either
a) had already been sent, or
b) required a DNS lookup and would be sent when the DNS query
completed.

In case (a), this meant we were altering an already-sent
request/response for no reason. In case (b), this potentially meant we
could be trying to alter a request/response at the same time that the
DNS resolution completed. In this case, it meant we might be stomping on
memory being used by the thread actually sending the message. This
caused potential crashes and memory corruption.

This patch removes the calls to session supplements from the case where
the PJSIP_EVENT_TX_MSG event occurs. In all of these cases, trying to
alter the message at this point is too late, and it can cause nothing
but harm to try to do it. Because there were no longer any calls to the
handle_outgoing() function, it has been removed.

Change-Id: Ibcc223fb1c3a237927f38754e0429e80ee301e92

8 years agochannel: Use frame deferral API for safe sleep. 00/4300/2
Mark Michelson [Thu, 3 Nov 2016 21:46:41 +0000 (16:46 -0500)] 
channel: Use frame deferral API for safe sleep.

This is another case where manual frame deferral can be replaced with
centralized routines instead.

Change-Id: I42cdf205f8f29a7977e599751a57efbaac07c30e

8 years agoautoservice: Use frame deferral API 99/4299/2
Mark Michelson [Thu, 3 Nov 2016 21:46:03 +0000 (16:46 -0500)] 
autoservice: Use frame deferral API

Rather than use manual frame deferral, just let the channel API do it
for us.

ASTERISK-26343

Change-Id: I688386f36e765dbc07be863943a43f26bd5eac49

8 years agoAGI: Only defer frames when in an interception routine. 98/4298/2
Mark Michelson [Thu, 3 Nov 2016 21:42:40 +0000 (16:42 -0500)] 
AGI: Only defer frames when in an interception routine.

AGI recently was modified to defer important frames. This was because
when AGI was used in a connected line interception routine, the
resulting connected line frame would end up getting discarded by the
AGI.

However, this caused bad behavior in other cases. Specifically, during a
transfer, if someone attempted to manually set the Caller ID on a
channel in an AGI, the deferred connected line frame would end up
overwriting what had been manually set in the AGI.

Since the initial issue was specific to interception routines, this
change removes the manual frame deferral from AGI and instead uses the
new frame deferral API in interception routines.

ASTERISK-26343 #close
Reported by Morton Tryfoss

Change-Id: Iab7d39436d0ee99bfe32ad55ef91e9bd88db4208

8 years agoMerge "automon: restore mixing of the both channels after recording stops" into 13
zuul [Tue, 8 Nov 2016 13:58:28 +0000 (07:58 -0600)] 
Merge "automon: restore mixing of the both channels after recording stops" into 13

8 years agoMerge "Add API for channel frame deferral." into 13
zuul [Tue, 8 Nov 2016 13:58:25 +0000 (07:58 -0600)] 
Merge "Add API for channel frame deferral." into 13

8 years agoMerge "chan_ooh323: reset rrq count on gk registration" into 13
Joshua Colp [Tue, 8 Nov 2016 10:59:03 +0000 (04:59 -0600)] 
Merge "chan_ooh323: reset rrq count on gk registration" into 13

8 years agoMerge "chan_ooh323: Fixes to work right with Cisco devices" into 13
Joshua Colp [Tue, 8 Nov 2016 10:58:25 +0000 (04:58 -0600)] 
Merge "chan_ooh323: Fixes to work right with Cisco devices" into 13

8 years agoMerge "stasis_recording/stored: remove calls to deprecated readdir_r function." into 13
Joshua Colp [Tue, 8 Nov 2016 10:57:47 +0000 (04:57 -0600)] 
Merge "stasis_recording/stored: remove calls to deprecated readdir_r function." into 13

8 years agoMerge "res_stasis: Don't unsubscribe from a NULL bridge." into 13
Joshua Colp [Tue, 8 Nov 2016 01:48:23 +0000 (19:48 -0600)] 
Merge "res_stasis: Don't unsubscribe from a NULL bridge." into 13

8 years agoMerge "res_http_websocket: Increase the buffer size for non-LOW_MEMORY systems" into 13
Joshua Colp [Tue, 8 Nov 2016 01:32:05 +0000 (19:32 -0600)] 
Merge "res_http_websocket: Increase the buffer size for non-LOW_MEMORY systems" into 13

8 years agoMerge "res_stasis: Set a video source mode on Stasis created bridges" into 13
Joshua Colp [Tue, 8 Nov 2016 00:23:26 +0000 (18:23 -0600)] 
Merge "res_stasis: Set a video source mode on Stasis created bridges" into 13

8 years agoMerge "main/bridge: Add some verbose logging for video source changes" into 13
Joshua Colp [Mon, 7 Nov 2016 22:53:27 +0000 (16:53 -0600)] 
Merge "main/bridge: Add some verbose logging for video source changes" into 13

8 years agoMerge "main/bridge_channel: Fix channel reference leak on video source" into 13
Joshua Colp [Mon, 7 Nov 2016 22:31:45 +0000 (16:31 -0600)] 
Merge "main/bridge_channel: Fix channel reference leak on video source" into 13

8 years agoMerge "bridges/bridge_softmix: Remove SSRC changes on join/leave; update video source...
Joshua Colp [Mon, 7 Nov 2016 20:23:35 +0000 (14:23 -0600)] 
Merge "bridges/bridge_softmix: Remove SSRC changes on join/leave; update video source" into 13

8 years agoAdd API for channel frame deferral. 97/4297/2
Mark Michelson [Thu, 3 Nov 2016 21:36:13 +0000 (16:36 -0500)] 
Add API for channel frame deferral.

There are several places in Asterisk that have duplicated logic
for deferring important frames until later.

This commit adds a couple of API calls to facilitate this automatically.

ast_channel_start_defer_frames(): Future reads of deferrable frames on
this channel will be deferred until later.

ast_channel_stop_defer_frames(): Any frames that have been deferred get
requeued onto the channel.

ASTERISK-26343

Change-Id: I3e1b87bc6796f222442fa6f7d1b6a4706fb33641

8 years agoMerge "pjproject_bundled: Fix issue with libasteriskpj needing libresample" into 13
zuul [Mon, 7 Nov 2016 16:18:59 +0000 (10:18 -0600)] 
Merge "pjproject_bundled:  Fix issue with libasteriskpj needing libresample" into 13

8 years agochan_ooh323: Fixes to work right with Cisco devices 32/4332/1
Alexander Anikin [Thu, 3 Nov 2016 12:42:20 +0000 (16:42 +0400)] 
chan_ooh323: Fixes to work right with Cisco devices

Changed output packets queue processing algo to one read-one write
instead of all read-all send

Remove h.245 tunneling parameter from ReleaseComplete packet

ASTERISK-24400 #close
Reported by: Dmitry Melekhov
Tested by: Dmitry Melekhov

Change-Id: I0b31933b062a21011dbac9a82b8bcfe345f406f6

8 years agochan_ooh323: reset rrq count on gk registration 29/4329/1
Alexander Anikin [Thu, 3 Nov 2016 18:10:53 +0000 (22:10 +0400)] 
chan_ooh323: reset rrq count on gk registration

reset registration attempts count on success registration on gatekeeper

Change-Id: I5f47351852e0ca76c9ac78421659600e0f106336

8 years agoMerge "chan_ooh323: Fix infinite loop on read second part of H.225 packet" into 13
zuul [Mon, 7 Nov 2016 13:50:38 +0000 (07:50 -0600)] 
Merge "chan_ooh323: Fix infinite loop on read second part of H.225 packet" into 13

8 years agoMerge "rtp_engine: Allow more than 32 dynamic payload types." into 13
zuul [Mon, 7 Nov 2016 12:38:25 +0000 (06:38 -0600)] 
Merge "rtp_engine: Allow more than 32 dynamic payload types." into 13

8 years agoautomon: restore mixing of the both channels after recording stops 19/4319/2
Michael Kuron [Sun, 6 Nov 2016 09:46:30 +0000 (10:46 +0100)] 
automon: restore mixing of the both channels after recording stops

This is a regression over Asterisk 11, introduced by
2dc8a060064f359a17f5ebcd515d85fe5203c019. Previously, recordings started via
the automon DTMF code would automatically be mixed together using sox because
app_monitor would be called with the m option. This commit restores this
behavior.

Change-Id: Ibaf58684285c3f1b6ca3714524e6d638ae3b3759

8 years agores_http_websocket: Increase the buffer size for non-LOW_MEMORY systems 13/4313/1
Matt Jordan [Fri, 4 Nov 2016 20:42:09 +0000 (15:42 -0500)] 
res_http_websocket: Increase the buffer size for non-LOW_MEMORY systems

Not surprisingly, using Respoke (and possibly other systems) it is
possible to blow past the 16k limit for a WebSocket packet size. This
patch bumps it up to 32k, which, at least for Respoke, is sufficient.
For now.

Because 32k is laughable on a LOW_MEMORY system (as is 16k, for that
matter), this patch adds a LOW_MEMORY directive that sets the buffer to
8k for systems who have asked for their reduced memory availability to
be considered.

Change-Id: Id235902537091b58608196844dc4b045e383cd2e

8 years agores_stasis: Set a video source mode on Stasis created bridges 12/4312/1
Matt Jordan [Fri, 4 Nov 2016 20:40:58 +0000 (15:40 -0500)] 
res_stasis: Set a video source mode on Stasis created bridges

When a bridge is created via ARI (through res_stasis), no video source
mode is set by default. As a result, any endpoint sending video media
won't ever see any video reflected back to it.

This patch defaults a bridge to a 'follow the talker' video mode.
Further work can be done to add routes that allow for the video mode to
be controlled through the /bridges resource.

Change-Id: I7e9d530a5d7a97a4524a9ee4e468e1a6b3443866

8 years agomain/bridge_channel: Fix channel reference leak on video source 11/4311/1
Matt Jordan [Fri, 4 Nov 2016 20:37:57 +0000 (15:37 -0500)] 
main/bridge_channel: Fix channel reference leak on video source

When a channel is made the video source, the bridge holds a reference to
it. Whenever the video source changes, that reference is released.
However, a ref leak does occur if the channel leaves the bridge (such as
being hung up) while it is the video source, as the bridge never
releases the ref in such a case.

This patch adds a line to the bridge_channel_internal_join routine such
that, when a channel finishes its time in the bridge, it notifies the
bridge via ast_bridge_remove_video_src that if it is a video source its
reference should be released.

ASTERISK-26555 #close

Change-Id: I3a2f5238a9d2fc49c591f0e65199d782ab0be76a

8 years agomain/bridge: Add some verbose logging for video source changes 10/4310/1
Matt Jordan [Fri, 4 Nov 2016 20:36:42 +0000 (15:36 -0500)] 
main/bridge: Add some verbose logging for video source changes

It's actually quite useful to see the source of a video stream change.
This doesn't happen terribly often, even with talk detection - but when
it does, it's nice to know which channel is now providing your video
stream.

As a verbose 5 level message, it shouldn't be terribly spammy or costly
to have, and is 'lower level' then most other verbose messages that the
bridge system emits.

ASTERISK-26555

Change-Id: Ia1c20ecafa9670171fd38bddcf3beccae47fb15c

8 years agobridges/bridge_softmix: Remove SSRC changes on join/leave; update video source 09/4309/1
Matt Jordan [Fri, 4 Nov 2016 20:33:35 +0000 (15:33 -0500)] 
bridges/bridge_softmix: Remove SSRC changes on join/leave; update video source

WebRTC clients really, really want to know the SSRC of the media they're
getting. Changing the SSRC is generally not a good thing.

bridge_softmix, starting in Asterisk 12, started changing the SSRC of
parties as they joined or left the bridge. With most phones, this isn't
a problem: phones just play back the stream they're getting. With WebRTC
clients, however, the SSRC is tied to a media stream that may be
negotiated. When a new SSRC just shows up, the media can be dropped.

As it turns out, the SSRC change shouldn't even be necessary. From the
perspective of the client, it's still talking to Asterisk with the same
media stream: why indicate that the far party has suddenly changed to a
different source of media?

This patch opts to just remove the SSRC changes. With this patch, video
clients that join/leave a softmix bridge actually get the video stream
instead of freaking out.

ASTERISK-26555

Change-Id: I27fec098b32e7c8718b4b65f3fd5fa73527968bf

8 years agostasis_recording/stored: remove calls to deprecated readdir_r function. 24/4224/7
Kevin Harwell [Fri, 28 Oct 2016 20:11:35 +0000 (15:11 -0500)] 
stasis_recording/stored: remove calls to deprecated readdir_r function.

The readdir_r function has been deprecated and should no longer be used. This
patch removes the readdir_r dependency (replaced it with readdir) and also moves
the directory search code to a more centralized spot (file.c)

Also removed a strict dependency on the dirent structure's d_type field as it
is not portable. The code now checks to see if the value is available. If so,
it tries to use it, but defaults back to using the stats function if necessary.

Lastly, for most implementations of readdir it *should* be thread-safe to make
concurrent calls to it as long as different directory streams are specified.
glibc falls into this category. However, since it is possible that there exist
some implementations that are not safe, locking has been added for those other
than glibc.

ASTERISK-26412
ASTERISK-26509 #close

Change-Id: Id8f54689b1e2873e82a09d0d0d2faf41964e80ba

8 years agoRevert "chan_sip: Fix lastrtprx always updated" 01/4301/1
Kevin Harwell [Fri, 4 Nov 2016 15:57:43 +0000 (10:57 -0500)] 
Revert "chan_sip: Fix lastrtprx always updated"

This reverts commit 93332cb1d0eea18021ea6538237297e627d6e2fc.

Unfortunately, the aforementioned commit caused a regression (incoming calls
would eventually disconnect). Thus it is being removed.

ASTERISK-26523 #close
ASTERISK-25270

Change-Id: Ibf5586adc303073a8eac667a4cbfdb6be184a64d

8 years agores_stasis: Don't unsubscribe from a NULL bridge. 34/4334/1
Joshua Colp [Wed, 2 Nov 2016 15:52:13 +0000 (15:52 +0000)] 
res_stasis: Don't unsubscribe from a NULL bridge.

A NULL bridge has special meaning in res_stasis for
unsubscribing. It means that a subscription to ALL
bridges should be removed. This should not be done
as part of the normal subscription management in
the res_stasis channel loop.

ASTERISK-26468

Change-Id: I6d5bea8246dd13a22ef86b736aefbf2a39c15af0

8 years agochan_ooh323: Fix infinite loop on read second part of H.225 packet 94/4294/1
Alexander Anikin [Thu, 3 Nov 2016 18:45:37 +0000 (22:45 +0400)] 
chan_ooh323: Fix infinite loop on read second part of H.225 packet

Fix logic on read second part of H.225 packet. There was infinite loop on
wrong connections due to read before poll.

Change-Id: I42b4bf75c46e4a5c5df5c5ca1f0bd74b8944e7ff

8 years agopjproject_bundled: Fix issue with libasteriskpj needing libresample 90/4290/1
George Joseph [Thu, 3 Nov 2016 16:55:06 +0000 (10:55 -0600)] 
pjproject_bundled:  Fix issue with libasteriskpj needing libresample

libresample is only needed by pjproject if we're building pjsua, which
we only do if TEST_FRAMEWORK is selected.  It's required by pjsua to
process audio which is needed by some testsuite tests.  Unfortunately,
pjproject relies on a newer version of libresample than the version
that ships by most distros so we need to compile the version that's
bundled with pjproject.  Since we only need it for pjsua, we DON'T want
it's symbols exposed when we actually build asterisk.

There was a problem however... TEST_FRAMEWORK is only known AFTER we've
already run ./configure on both asterisk and pjproject but pjproject's
./configure needs to test it to know whether to set up to build
libresample or not.  The previous way of figuring this out was to
always tell ./configure "yes" but not actually build the library.  This
caused an issue where building libasteriskpj was being told to include
libresample but it wasn't actually there.

The solution is to still do a default pjproject configure during an
asterisk ./configure but if makeopts or menuselect.makeopts changes
subsequently, we now reconfigure pjproject, taking into account the
current state of TEST_FRAMEWORK.  Previously, if makeopts or
menuselect.makeopts changed, only a recompile of pjproject was done.

Change-Id: I9b5d84c61384a3ae07fe30e85c49698378cc4685

8 years agoMerge "chan_sip: add missing account code" into 13
Joshua Colp [Wed, 2 Nov 2016 22:32:36 +0000 (17:32 -0500)] 
Merge "chan_sip: add missing account code" into 13

8 years agochan_sip: add missing account code 75/4275/2
Sebastian Gutierrez [Wed, 2 Nov 2016 00:48:50 +0000 (21:48 -0300)] 
chan_sip: add missing account code

Added missing account to AMI event of sip show peers

ASTERISK-26176 #close

Change-Id: Ieb6c2c80a838a1b59c82103eba4c63ba238dc482

8 years agortp_engine: Allow more than 32 dynamic payload types. 81/3681/10
Alexander Traud [Tue, 13 Sep 2016 09:08:34 +0000 (11:08 +0200)] 
rtp_engine: Allow more than 32 dynamic payload types.

The dynamic range (96-127) allows 32 RTP Payload Types. RFC 3551 section 3
allows to reassign other ranges. Consequently, when the dynamic range is
exhausted, you can go for "rtp_pt_dynamic = 35" (or 0) in asterisk.conf. This
enables the range 35-63 (or 0-63) giving room for another 29 (or 64) payload
types.

ASTERISK-26311 #close

Change-Id: I7bc96ab764bc30098a178b841cbf7146f9d64964
(cherry picked from commit 9ac53877f688c06acaa7c377f15da8770e4ee88b)

8 years agoapp_dial: Fix incorrect device state when channel is picked up. 78/4278/1
Joshua Colp [Wed, 2 Nov 2016 14:15:14 +0000 (14:15 +0000)] 
app_dial: Fix incorrect device state when channel is picked up.

Given the scenario where multiple channels are dialed using Dial()
but the caller is picked up using PickupChan() all outgoing channels
except the channel specified to PickupChan() would be marked
as ringing until the call had been hung up.

When using the PickupChan application the channel executing the
application is swapped into place of another channel. As part
of this process the channel is answered. The Dial application
has explicit logic which checks if the channel is answered,
cancels all other outgoing channels, and bridges. This logic is
different than the normal logic that is executed when an outgoing
channel is answered. This different logic failed to publish dial
events stating that the other outgoing channels had been canceled.
As a result references to the outgoing channels were held onto by
the dial masquerade process until the call had been ended and
the channels had gone away. This would result in the channels
appearing in the "core show channels" list despite not being present
anymore and would also result in incorrect device state.

This change makes it so that this logic also publishes
dial events stating that the other outgoing channels have been
canceled.

ASTERISK-26549

Change-Id: Iea7168e6e82f7d4609ec0366153804e4f55ea64f

8 years agoMerge "res_pjsip_sdp_rtp: Limit number of formats to defined maximum." into 13
Joshua Colp [Wed, 2 Nov 2016 13:31:02 +0000 (08:31 -0500)] 
Merge "res_pjsip_sdp_rtp: Limit number of formats to defined maximum." into 13

8 years agoMerge "bundled pjproject: Fix DNS write to freed memory." into 13
Joshua Colp [Wed, 2 Nov 2016 10:24:34 +0000 (05:24 -0500)] 
Merge "bundled pjproject: Fix DNS write to freed memory." into 13

8 years agoMerge "res/stasis: Add CLI commands for displaying/debugging ARI apps" into 13
Joshua Colp [Wed, 2 Nov 2016 10:23:51 +0000 (05:23 -0500)] 
Merge "res/stasis: Add CLI commands for displaying/debugging ARI apps" into 13

8 years agoMerge "define PATH_MAX for HURD" into 13
zuul [Wed, 2 Nov 2016 03:30:41 +0000 (22:30 -0500)] 
Merge "define PATH_MAX for HURD" into 13

8 years agoMerge "netsock.c: fix includes for HURD" into 13
zuul [Wed, 2 Nov 2016 02:15:09 +0000 (21:15 -0500)] 
Merge "netsock.c: fix includes for HURD" into 13

8 years agoMerge "pjproject_bundled: Fix compile of pjsua so it handles audio" into 13
zuul [Wed, 2 Nov 2016 00:30:33 +0000 (19:30 -0500)] 
Merge "pjproject_bundled:  Fix compile of pjsua so it handles audio" into 13

8 years agoMerge "codecs.conf.sample: Add sample and option descriptions for codec_opus" into 13
Joshua Colp [Tue, 1 Nov 2016 22:30:17 +0000 (17:30 -0500)] 
Merge "codecs.conf.sample: Add sample and option descriptions for codec_opus" into 13

8 years agobundled pjproject: Fix DNS write to freed memory. 70/4270/1
Richard Mudgett [Tue, 1 Nov 2016 18:13:13 +0000 (13:13 -0500)] 
bundled pjproject: Fix DNS write to freed memory.

PJPROJECT 2.5.5 introduced a race condition with the -r5349 IPv6 DNS
patch.

The patch below fixes a write to freed memory under cartain DNS lookup
conditions.

0006-r5477-svn-backport-Fix-DNS-write-on-freed-memory.patch

ASTERISK-26516
Reported by:  Richard Mudgett

Change-Id: Ifdfae9ecf1e41b53080f33aab44ce1a220f349c5

8 years agoMerge "chan_sip: Incorrect display option Outbound reg. retry 403" into 13
zuul [Tue, 1 Nov 2016 19:28:22 +0000 (14:28 -0500)] 
Merge "chan_sip: Incorrect display option Outbound reg. retry 403" into 13

8 years agores_pjsip_sdp_rtp: Limit number of formats to defined maximum. 67/4267/1
Joshua Colp [Tue, 1 Nov 2016 11:56:24 +0000 (11:56 +0000)] 
res_pjsip_sdp_rtp: Limit number of formats to defined maximum.

The res_pjsip_sdp_rtp module did not restrict the number of
formats added to a media stream in the SDP to the defined
limit. If allow=all was used with additional loaded codecs this
could result in the next media stream being overwritten some.

This change restricts the module to limit it to the defined
maximum and also increases the maximum in our bundled pjproject.

ASTERISK-26541 #close

Change-Id: I0dc5f59d3891246cafa2f3df5ec406f088559ee8

8 years agonetsock.c: fix includes for HURD 65/4265/2
Tzafrir Cohen [Tue, 1 Nov 2016 09:18:49 +0000 (11:18 +0200)] 
netsock.c: fix includes for HURD

ASTERISK-25070

Change-Id: I43bf94d2d36d3d8a8d0df40cd6c027d65a462814

8 years agodefine PATH_MAX for HURD 62/4262/1
Tzafrir Cohen [Tue, 1 Nov 2016 09:00:21 +0000 (11:00 +0200)] 
define PATH_MAX for HURD

PATH_MAX is not guaranteed to be defined. In parctice, all but the HURD
define it to a constant. It is indeed not safe to assume there won't be
longer paths and Asterisk generally does err safely on such cases.

So even for HURD we'll just pretend PATH_MAX is 4096.

ASTERISK-25070 #close

Change-Id: I53d10ba18c34c132bcb640a5fd8e0da1d9b22db3

8 years agocodecs.conf.sample: Add sample and option descriptions for codec_opus 50/4250/2
Kevin Harwell [Mon, 31 Oct 2016 22:35:47 +0000 (17:35 -0500)] 
codecs.conf.sample: Add sample and option descriptions for codec_opus

codecs.conf.sample was missing codec opus's configuration options, descriptions,
and examples. This patch adds the configuration options and examples to
codecs.conf.sample that can be used with codec_opus.

ASTERISK-26538 #close

Change-Id: I1d89bb5e01d3e3b5bd78951b8dd0ff077a83dc8b

8 years agochan_sip: Incorrect display option Outbound reg. retry 403 61/4261/1
Grachev Sergey [Tue, 1 Nov 2016 13:32:35 +0000 (16:32 +0300)] 
chan_sip: Incorrect display option Outbound reg. retry 403

If in sip.conf (general section) set option register_retry_403=no,
the command "sip show settings" return value:
Outbound reg. retry 403:0
If in sip.conf (general section) set option register_retry_403=yes,
the command "sip show settings" return value:
Outbound reg. retry 403:-1

* In static char "sip show settings" for "Outbound.reg. retry 403"
option use AST_CLI_YESNO

ASTERISK-26476 #close

Change-Id: I3c14272f05f1067bd2aeaa8b3ef9cf8fcb12dcf9

8 years agores/stasis: Add CLI commands for displaying/debugging ARI apps 64/4164/4
Matt Jordan [Thu, 20 Oct 2016 12:27:21 +0000 (07:27 -0500)] 
res/stasis: Add CLI commands for displaying/debugging ARI apps

This patch adds three new CLI commands:
 - ari show apps: list the registered ARI applications
 - ari show app: show detailed information about an ARI application
 - ari set debug: dump events being sent to an ARI application

Note that while these CLI commands live in the res_stasis module, we use
the 'ari' family for these commands. This was done as most users of
Asterisk aren't aware of the semantic differences between ARI and
res_stasis, and some 'ari' CLI commands already exist.

ASTERISK-26488 #close

Change-Id: I51ad6ff0cabee0d69db06858c13f18b1c513c9f5

8 years agopjproject_bundled: Fix compile of pjsua so it handles audio 45/4245/1
George Joseph [Mon, 31 Oct 2016 21:12:57 +0000 (15:12 -0600)] 
pjproject_bundled:  Fix compile of pjsua so it handles audio

In order for pjsua and its python binding to actually negotiate
audio for the testsuite tests, it needs g711 and resample.  The
pj* libraries themselves do not.  Unfortunately, pjproject relies
on a brand new libresample that most distros don't ship so we need
to use the libresample already bundled with pjproject.  Only the pjsua
executable and the _pjsua.so python library are linked with it so it
shouldn't interfere with asterisk itself.

Also it was pointed out that apply_patches couldn't handle multiple
patches that depended on each other during the dry-run, so the
dry-run was removed.

Change-Id: I24f397462b486dcdde0dcafe40e6c55a6593f098

8 years agomanager: Add documentation for NewConnectedLine event. 44/4244/1
Etienne Lessard [Mon, 31 Oct 2016 18:46:54 +0000 (14:46 -0400)] 
manager: Add documentation for NewConnectedLine event.

The NewConnectedLine event has been added by commit fe7671f, but the
documentation was missing.

ASTERISK-26537 #close

Change-Id: I7fc331f18caa28492da9303e576f70884ca8c9e6