]> git.ipfire.org Git - thirdparty/asterisk.git/log
thirdparty/asterisk.git
7 years agoMerge "res_pjsip_t38.c: Fix crash by ignoring 1xx messages." into 15
Jenkins2 [Thu, 5 Jul 2018 15:56:40 +0000 (10:56 -0500)] 
Merge "res_pjsip_t38.c: Fix crash by ignoring 1xx messages." into 15

7 years agoMerge "pjsip: Clarify certificate configuration for Websocket." into 15
Jenkins2 [Tue, 3 Jul 2018 16:22:24 +0000 (11:22 -0500)] 
Merge "pjsip: Clarify certificate configuration for Websocket." into 15

7 years agoMerge "res_pjsip_pubsub: Hold module reference for publications." into 15
Jenkins2 [Tue, 3 Jul 2018 13:32:27 +0000 (08:32 -0500)] 
Merge "res_pjsip_pubsub: Hold module reference for publications." into 15

7 years agopjsip: Clarify certificate configuration for Websocket.
Joshua Colp [Mon, 2 Jul 2018 23:44:53 +0000 (20:44 -0300)] 
pjsip: Clarify certificate configuration for Websocket.

The Websocket transport uses the built-in HTTP server. As a result
the TLS configuration is done in http.conf and not in pjsip.conf.

This change adds a warning if this is configured in pjsip.conf and
also clarifies in the sample configuration file.

Change-Id: I187d994d328c3ed274b6754fd4c2a4955bdc6dd9

7 years agores_pjsip_t38.c: Fix crash by ignoring 1xx messages.
Richard Mudgett [Fri, 29 Jun 2018 23:28:26 +0000 (18:28 -0500)] 
res_pjsip_t38.c: Fix crash by ignoring 1xx messages.

If we initiated a T.38 reINVITE, we would crash if we received any other
1xx response message except 100 if it were followed by a 200 response.

* Made ignore any 1xx response so we do not close out the T.38 negotiation
too early.  For good measure we'll now accept any 2xx response as
acceptance of the reINVITE T.38 offer.

ASTERISK-27944

Change-Id: I0ca88aae708d091db7335af73f41035a212adff4

7 years agores_pjsip_pubsub: Hold module reference for publications.
Joshua Colp [Sun, 1 Jul 2018 18:54:05 +0000 (15:54 -0300)] 
res_pjsip_pubsub: Hold module reference for publications.

Incoming publications need to ensure that the module remains
loaded for the lifetime of them. This is now done by holding
a reference to the module while the publication exists. This
mirrors that of inbound subscriptions.

ASTERISK-27783

Change-Id: Ia98c95a15e11af25728d5fb3e56e12cda0cfc7c0

7 years agoMerge "app_confbridge: Bridge and announcers not removed if conference ends quickly...
Jenkins2 [Mon, 2 Jul 2018 12:03:29 +0000 (07:03 -0500)] 
Merge "app_confbridge: Bridge and announcers not removed if conference ends quickly" into 15

7 years agoMerge "main/cdr.c: Alleviate CDR deadlock" into 15
Jenkins2 [Mon, 2 Jul 2018 11:48:40 +0000 (06:48 -0500)] 
Merge "main/cdr.c: Alleviate CDR deadlock" into 15

7 years agoMerge "AMI SendText action: Fix to use correct thread to send the text." into 15
Jenkins2 [Sat, 30 Jun 2018 17:03:21 +0000 (12:03 -0500)] 
Merge "AMI SendText action: Fix to use correct thread to send the text." into 15

7 years agoMerge "pbx_dundi: reordered unloading of module pbx_dundi" into 15
Jenkins2 [Fri, 29 Jun 2018 20:21:56 +0000 (15:21 -0500)] 
Merge "pbx_dundi: reordered unloading of module pbx_dundi" into 15

7 years agoapp_confbridge: Bridge and announcers not removed if conference ends quickly
Robert Mordec [Mon, 21 May 2018 12:24:51 +0000 (14:24 +0200)] 
app_confbridge: Bridge and announcers not removed if conference ends quickly

If a conference is ended very quickly after it was created (i.e., the
first user immediately hangs up) then the conference bridge and announcer
channels are not removed.

When a conference is created, the push_announcer() function is added to
the playback queue task processor and the conference object reference is
bumped.  If a conference is ended while the push_announcer() function is
still going then the ao2_cleanup(conference) at the end of
push_announcer() will call the destructor function -
destroy_conference_bridge().

The destroy_conference_bridge() function will then add the
hangup_playback() task to the playback queue and will wait for it to end.
Since it is already a current task of the playback queue it will wait
forever.

This patch makes the conference thread call push_announcer() directly.
This way the conference object reference bump is not needed.  Since the
playback queue task processor is only used by the conference thread
itself, there is no danger of trying to play announcements before the
announcer is pushed to the bridge.

ASTERISK-27870 #close

Change-Id: I947a50fb121422d90fd1816d643a54d75185a477

7 years agoAMI SendText action: Fix to use correct thread to send the text.
Richard Mudgett [Thu, 28 Jun 2018 17:07:01 +0000 (12:07 -0500)] 
AMI SendText action: Fix to use correct thread to send the text.

The AMI action was directly sending the text to the channel driver.
However, this makes two threads attempt to handle media and runs afowl of
CHECK_BLOCKING.

* Queue a read action to make the channel's media handling thread actually
send the text message.  This changes the AMI actions success/fail response
to just mean the text was queued to be sent not that the text actually got
sent.  The channel driver may not even support sending text messages.

ASTERISK-27943

Change-Id: I9dce343d8fa634ba5a416a1326d8a6340f98c379

7 years agoapp_confbridge: Move participant info code to confbridge_manager.
George Joseph [Mon, 25 Jun 2018 20:42:14 +0000 (14:42 -0600)] 
app_confbridge:  Move participant info code to confbridge_manager.

With the participant info code in app_confbridge, we were still
in the process of adding the channel to the bridge when trying to send
an in-dialog MESSAGE.  This caused 2 threads to grab the channel
blocking flag at the same time.  To mitigate this, the participant
info code was moved to confbridge_manager so it runs after all
channel/bridge actions have finished.

Change-Id: I228806ac153074f45e0b35d5236166e92e132abd

7 years agoMerge "res_pjsip_messaging: Allow application/* for in-dialog MESSAGEs" into 15
Joshua Colp [Thu, 28 Jun 2018 11:46:53 +0000 (06:46 -0500)] 
Merge "res_pjsip_messaging:  Allow application/* for in-dialog MESSAGEs" into 15

7 years agoMerge "res_pjsip_session: Add ability to accept multiple sdp answers" into 15
Jenkins2 [Thu, 28 Jun 2018 11:16:53 +0000 (06:16 -0500)] 
Merge "res_pjsip_session:  Add ability to accept multiple sdp answers" into 15

7 years agores_pjsip_messaging: Allow application/* for in-dialog MESSAGEs
George Joseph [Mon, 25 Jun 2018 12:37:37 +0000 (06:37 -0600)] 
res_pjsip_messaging:  Allow application/* for in-dialog MESSAGEs

In addition to text/* content types, incoming_in_dialog_request now
accepts application/* content types.

Also fixed a length issue when copying the body text.  It was one
character short.

ASTERISK-27942

Change-Id: I4e54d8cc6158dc47eb8fdd6ba0108c6fd53f2818

7 years agomain/cdr.c: Alleviate CDR deadlock
Matthew Fredrickson [Thu, 21 Jun 2018 05:28:01 +0000 (00:28 -0500)] 
main/cdr.c: Alleviate CDR deadlock

There is a rare case (do to the infrequent timing involved) where
CDR submission threads in batch mode can deadlock with a currently
running CDR batch process.  This patch should remove the need for
holding the lock in the scheduler and should clean a few code
paths up that inconsistently submitted new work to the CDR batch
processor.

ASTERISK-27909

Change-Id: I6333e865db7c593c102c2fd948cecdb96481974d
Reported-by: Denis Lebedev
7 years agoMerge "uuid: Enable UUID in Solaris 11." into 15
Jenkins2 [Tue, 26 Jun 2018 15:44:32 +0000 (10:44 -0500)] 
Merge "uuid: Enable UUID in Solaris 11." into 15

7 years agores_pjsip_session: Add ability to accept multiple sdp answers
George Joseph [Tue, 19 Jun 2018 02:22:17 +0000 (20:22 -0600)] 
res_pjsip_session:  Add ability to accept multiple sdp answers

pjproject by default currently will follow media forked during an INVITE
on outbound calls if the To tag is different on a subsequent response as
that on an earlier response.  We handle this correctly.  There have
been reported cases where the To tag is the same but we still need to
follow the media.  The pjproject patch in this commit adds the
capability to sip_inv and also adds the capability to control it at
runtime.  The original "different tag" behavior was always controllable
at runtime but we never did anything with it and left it to default to
TRUE.

So, along with the pjproject patch, this commit adds options to both the
system and endpoint objects to control the two behaviors, and a small
logic change to session_inv_on_media_update in res_pjsip_session to
control the behavior at the endpoint level.

The default behavior for "different tags" remains the same at TRUE and
the default for "same tag" is FALSE.

Change-Id: I64d071942b79adb2f0a4e13137389b19404fe3d6
ASTERISK-27936
Reported-by: Ross Beer
7 years agopbx_dundi: reordered unloading of module pbx_dundi
Kirsty Tyerman [Tue, 26 Jun 2018 03:08:07 +0000 (13:08 +1000)] 
pbx_dundi: reordered unloading of module pbx_dundi

Destroy scheduler after peers are pruned to stop dundi crashing when
unloading module.

ASTERISK-26987
Reported-by: Kirsty Tyerman
Change-Id: Ic12e562cd90d8d813a9e97f302045091f59e3c05

7 years agoMerge "VECTOR: Passing parameters with side effects to macros is dangerous." into 15
George Joseph [Mon, 25 Jun 2018 16:34:32 +0000 (11:34 -0500)] 
Merge "VECTOR: Passing parameters with side effects to macros is dangerous." into 15

7 years agouuid: Enable UUID in Solaris 11.
Alexander Traud [Thu, 21 Jun 2018 16:45:11 +0000 (18:45 +0200)] 
uuid: Enable UUID in Solaris 11.

ASTERISK-27933
Reported by: bautsche

Change-Id: I9b8362824efbfb2a16981e46e85f7c8322908c49

7 years agoMerge "smsq: Remove an left-over special case for Solaris." into 15
George Joseph [Fri, 22 Jun 2018 17:49:00 +0000 (12:49 -0500)] 
Merge "smsq: Remove an left-over special case for Solaris." into 15

7 years agoMerge "res_http_post: Enable GMime in Solaris 11." into 15
Jenkins2 [Fri, 22 Jun 2018 17:07:13 +0000 (12:07 -0500)] 
Merge "res_http_post: Enable GMime in Solaris 11." into 15

7 years agoMerge "BuildSystem: Enable ./configure in Solaris 11." into 15
Jenkins2 [Fri, 22 Jun 2018 14:07:53 +0000 (09:07 -0500)] 
Merge "BuildSystem: Enable ./configure in Solaris 11." into 15

7 years agoMerge "BuildSystem: Enable autotools in Solaris 11." into 15
Jenkins2 [Fri, 22 Jun 2018 13:47:03 +0000 (08:47 -0500)] 
Merge "BuildSystem: Enable autotools in Solaris 11." into 15

7 years agoMerge "bridge_softmix.c: Fix memory leak." into 15
Jenkins2 [Fri, 22 Jun 2018 13:06:51 +0000 (08:06 -0500)] 
Merge "bridge_softmix.c: Fix memory leak." into 15

7 years agoMerge "chan_oss: Compile in Solaris 11." into 15
Joshua Colp [Fri, 22 Jun 2018 12:50:14 +0000 (07:50 -0500)] 
Merge "chan_oss: Compile in Solaris 11." into 15

7 years agoMerge "utils: Avoid an unused variable in Solaris 11." into 15
Jenkins2 [Fri, 22 Jun 2018 12:30:20 +0000 (07:30 -0500)] 
Merge "utils: Avoid an unused variable in Solaris 11." into 15

7 years agoMerge "func_env: Compile in Solaris 11." into 15
Joshua Colp [Fri, 22 Jun 2018 12:18:36 +0000 (07:18 -0500)] 
Merge "func_env: Compile in Solaris 11." into 15

7 years agoMerge "codecs/ilbc: Compile in Solaris 11." into 15
Joshua Colp [Fri, 22 Jun 2018 11:48:12 +0000 (06:48 -0500)] 
Merge "codecs/ilbc: Compile in Solaris 11." into 15

7 years agoVECTOR: Passing parameters with side effects to macros is dangerous.
Richard Mudgett [Thu, 21 Jun 2018 21:39:45 +0000 (16:39 -0500)] 
VECTOR: Passing parameters with side effects to macros is dangerous.

* Fix several instances where we were bumping a ref in the parameter and
then unrefing the object if it failed.  The way the AST_VECTOR_APPEND()
and AST_VECTOR_REPLACE() macros are implemented means if it fails the new
value was never evaluated.

Change-Id: I2847872a455b11ea7e5b7ce697c0a455a1d0ac9a

7 years agobridge_softmix.c: Fix memory leak.
Richard Mudgett [Wed, 20 Jun 2018 21:57:39 +0000 (16:57 -0500)] 
bridge_softmix.c: Fix memory leak.

Made release the media_types vector in
softmix_bridge_stream_topology_changed().

Change-Id: Ide3f47e379b614879220dfeeb13843f9f2b177b5

7 years agosmsq: Remove an left-over special case for Solaris.
Alexander Traud [Thu, 21 Jun 2018 16:22:26 +0000 (18:22 +0200)] 
smsq: Remove an left-over special case for Solaris.

Actually, this case was never needed because the check below does the same.

Change-Id: Ia2fca4ba6c58c644a8b7cb2d9db8539728c14ffb

7 years agores_http_post: Enable GMime in Solaris 11.
Alexander Traud [Thu, 21 Jun 2018 16:17:36 +0000 (18:17 +0200)] 
res_http_post: Enable GMime in Solaris 11.

Change-Id: Ie434541f18f894c751d2e44bcb3efb3cac626019

7 years agoMerge "channel.c: Make CHECK_BLOCKING() save thread LWP id for messages." into 15
George Joseph [Thu, 21 Jun 2018 15:23:50 +0000 (10:23 -0500)] 
Merge "channel.c: Make CHECK_BLOCKING() save thread LWP id for messages." into 15

7 years agoMerge changes from topic 'ASTERISK-27625' into 15
George Joseph [Thu, 21 Jun 2018 15:23:37 +0000 (10:23 -0500)] 
Merge changes from topic 'ASTERISK-27625' into 15

* changes:
  channel.c: Fix usage of CHECK_BLOCKING()
  autoservice: Don't start channel autoservice if the thread is a user interface.

7 years agoMerge "ARI POST DTMF: Make not compete with channel's media thread." into 15
Jenkins2 [Thu, 21 Jun 2018 14:35:41 +0000 (09:35 -0500)] 
Merge "ARI POST DTMF: Make not compete with channel's media thread." into 15

7 years agoMerge "AMI PlayDTMF Action: Make not compete with channel's media thread." into 15
Jenkins2 [Thu, 21 Jun 2018 14:09:48 +0000 (09:09 -0500)] 
Merge "AMI PlayDTMF Action: Make not compete with channel's media thread." into 15

7 years agocodecs/ilbc: Compile in Solaris 11.
Alexander Traud [Thu, 21 Jun 2018 10:08:56 +0000 (12:08 +0200)] 
codecs/ilbc: Compile in Solaris 11.

The symbol FS is the sampling frequency. That symbol is not used in Asterisk at
all and was a copy-and-paste of the iLBC reference code from the IETF RFC.
However, in Solaris, that symbol is defined by another header already. To
compile in Solaris, that symbol has to go.

Change-Id: I91ddbe5be7c00069c3a25abd5f58d7b2f04c51b1

7 years agochan_oss: Compile in Solaris 11.
Alexander Traud [Thu, 21 Jun 2018 10:07:21 +0000 (12:07 +0200)] 
chan_oss: Compile in Solaris 11.

M_READ existed already and was conflicting in name.

Change-Id: I02108e07ae7d2dc314fe1e6c706c17731095a3e4

7 years agofunc_env: Compile in Solaris 11.
Alexander Traud [Thu, 21 Jun 2018 10:04:46 +0000 (12:04 +0200)] 
func_env: Compile in Solaris 11.

Change-Id: Idc9b36720f3d29c90a35a6a1ae79a7f9e1aaf50e

7 years agoutils: Avoid an unused variable in Solaris 11.
Alexander Traud [Thu, 21 Jun 2018 10:01:53 +0000 (12:01 +0200)] 
utils: Avoid an unused variable in Solaris 11.

With ./configure --enable-dev-mode[=noisy], the build fails because every
warning gets an error. Therefore, Asterisk has to be free of warnings and this
variable must go.

Change-Id: I63dd2bc4833b9bdb04602f83422d16caf289d46a

7 years agoBuildSystem: Enable ./configure in Solaris 11.
Alexander Traud [Thu, 21 Jun 2018 09:59:35 +0000 (11:59 +0200)] 
BuildSystem: Enable ./configure in Solaris 11.

ASTERISK-27931

Change-Id: If298ce7f03be227a3687b9c20d382c9c55a72404

7 years agoMerge "Fix some doxygen and curly placement." into 15
Kevin Harwell [Wed, 20 Jun 2018 22:15:27 +0000 (17:15 -0500)] 
Merge "Fix some doxygen and curly placement." into 15

7 years agoMerge "Dialplan functions: Fix some channel autoservice misuse." into 15
Jenkins2 [Wed, 20 Jun 2018 21:41:07 +0000 (16:41 -0500)] 
Merge "Dialplan functions: Fix some channel autoservice misuse." into 15

7 years agoMerge "menuselect/menuselect_curses: Resolves sprintf usage error" into 15
Jenkins2 [Wed, 20 Jun 2018 20:29:04 +0000 (15:29 -0500)] 
Merge "menuselect/menuselect_curses: Resolves sprintf usage error" into 15

7 years agoBuildSystem: Enable autotools in Solaris 11.
Alexander Traud [Wed, 20 Jun 2018 18:24:53 +0000 (20:24 +0200)] 
BuildSystem: Enable autotools in Solaris 11.

Because this was the last operating system which required a special case, a
version appended to the autotools, the whole version stuff is removed by this
change. This simplifies the script ./bootstrap.sh. Hopefully, this gives even
broader platform compatibility.

ASTERISK-27929
ASTERISK-27926

Change-Id: Id4cf433a1a7fa861d0210e1a2e16ca592b49fd5a

7 years agoMerge "tcptls.h: Remove redundant SSL_CTX typedef." into 15
Jenkins2 [Wed, 20 Jun 2018 11:16:31 +0000 (06:16 -0500)] 
Merge "tcptls.h: Remove redundant SSL_CTX typedef." into 15

7 years agochannel.c: Make CHECK_BLOCKING() save thread LWP id for messages.
Richard Mudgett [Wed, 13 Jun 2018 16:33:44 +0000 (11:33 -0500)] 
channel.c: Make CHECK_BLOCKING() save thread LWP id for messages.

* Removed an unnecessary call to ast_channel_blocker_set() in
__ast_read().

ASTERISK-27625

Change-Id: I342168b999984666fb869cd519fe779583a73834

7 years agochannel.c: Fix usage of CHECK_BLOCKING()
Richard Mudgett [Tue, 12 Jun 2018 19:09:54 +0000 (14:09 -0500)] 
channel.c: Fix usage of CHECK_BLOCKING()

The CHECK_BLOCKING() macro is used to indicate if a channel's handling
thread is about to do a blocking operation (poll, read, or write) of
media.  A few operations such as ast_queue_frame(), soft hangup, and
masquerades use the indication to wake up the blocked thread to reevaluate
what is going on.

ASTERISK-27625

Change-Id: I4dfc33e01e60627d962efa29d0a4244cf151a84d

7 years agoautoservice: Don't start channel autoservice if the thread is a user interface.
Richard Mudgett [Mon, 18 Jun 2018 23:04:54 +0000 (18:04 -0500)] 
autoservice: Don't start channel autoservice if the thread is a user interface.

Executing dialplan functions from either AMI or ARI by getting a variable
could place the channel into autoservice.  However, these user interface
threads do not handle the channel's media so we wind up with two threads
attempting to handle the media.

There can be one and only one thread handling a channel's media at a time.
Otherwise, we don't know which thread is going to handle the media frames.

ASTERISK-27625

Change-Id: If2dc94ce15ddabf923ed1e2a65ea0ef56e013e49

7 years agoARI POST DTMF: Make not compete with channel's media thread.
Richard Mudgett [Wed, 13 Jun 2018 21:41:43 +0000 (16:41 -0500)] 
ARI POST DTMF: Make not compete with channel's media thread.

There can be one and only one thread handling a channel's media at a time.
Otherwise, we don't know which thread is going to handle the media frames.

ASTERISK-27625

Change-Id: I4d6a2fe7386ea447ee199003bf8ad681cb30454e

7 years agoAMI PlayDTMF Action: Make not compete with channel's media thread.
Richard Mudgett [Wed, 13 Jun 2018 18:05:03 +0000 (13:05 -0500)] 
AMI PlayDTMF Action: Make not compete with channel's media thread.

There can be one and only one thread handling a channel's media at a time.
Otherwise, we don't know which thread is going to handle the media frames.

ASTERISK-27625

Change-Id: Ia341f1a6f4d54f2022261abec9021fe5b2eb4905

7 years agoDialplan functions: Fix some channel autoservice misuse.
Richard Mudgett [Mon, 18 Jun 2018 21:07:47 +0000 (16:07 -0500)] 
Dialplan functions: Fix some channel autoservice misuse.

* Fix off nominal paths leaving the channel in autoservice.
* Remove unnecessary start/stop channel autoservice.
* Fix channel locking around a channel datastore search.

Change-Id: I7ff2e42388064fe3149034ecae57604040b8b540

7 years agoFix some doxygen and curly placement.
Richard Mudgett [Tue, 19 Jun 2018 15:43:17 +0000 (10:43 -0500)] 
Fix some doxygen and curly placement.

Change-Id: I9a784a7c804120a8fa826c2a4cb9957e4b0b2fc8

7 years agomenuselect/menuselect_curses: Resolves sprintf usage error
Matthew Fredrickson [Fri, 15 Jun 2018 20:21:27 +0000 (15:21 -0500)] 
menuselect/menuselect_curses: Resolves sprintf usage error

Acccording to the man page for sprintf, using the same buffer for
output as one used as an input yields undefined behavior.
This patch should work around this problem.

ASTERISK-27903
Reported-by: Alexander Traud
Change-Id: I2213dcb454aff26457e2e4cc9c6821276463ae3a

7 years agotcptls.h: Remove redundant SSL_CTX typedef.
Richard Mudgett [Mon, 18 Jun 2018 18:17:49 +0000 (13:17 -0500)] 
tcptls.h: Remove redundant SSL_CTX typedef.

It is invalid to typedef something more than once.  Though not all gcc
compilers on different OS's complain about it.

Change-Id: I5a7d4565990c985822d61ce75bde0b45f9870540

7 years agochannel: Fix some more unprotected channel flag setting.
Richard Mudgett [Tue, 12 Jun 2018 20:13:14 +0000 (15:13 -0500)] 
channel: Fix some more unprotected channel flag setting.

Change-Id: I34c3b1201b1de539945bcfdcb264fff30332d48c

7 years agoMerge "app_confbridge: Enable sending events to participants" into 15
Joshua Colp [Mon, 18 Jun 2018 14:39:11 +0000 (09:39 -0500)] 
Merge "app_confbridge:  Enable sending events to participants" into 15

7 years agoapp_mp3: remove 10 seconds of silence after mp3 playback
Sam Wierema [Tue, 12 Jun 2018 14:30:37 +0000 (16:30 +0200)] 
app_mp3: remove 10 seconds of silence after mp3 playback

This patch changes the way asterisk polls output from mpg123, instead
of waiting for 10 seconds(when playing an http url) it now uses a
timeout of one second and iterates 10 times using this same timeout.

The main difference is that for every timeout asterisk receives it now
checks if mpg123 is still running before poll again.

ASTERISK-27752

Change-Id: Ib7df8462e3e380cb328011890ad9270d9e9b4620

7 years agoMerge "tests/test_utils: Repair ./configure --with-ssl=PATH." into 15
Jenkins2 [Thu, 14 Jun 2018 16:34:00 +0000 (11:34 -0500)] 
Merge "tests/test_utils: Repair ./configure --with-ssl=PATH." into 15

7 years agoMerge "res_rtp_asterisk: Instead of ./configure use OPENSSL_NO_SRTP." into 15
Jenkins2 [Thu, 14 Jun 2018 16:23:52 +0000 (11:23 -0500)] 
Merge "res_rtp_asterisk: Instead of ./configure use OPENSSL_NO_SRTP." into 15

7 years agoMerge "chan_iax2: better handling for timeout and EINTR" into 15
Joshua Colp [Thu, 14 Jun 2018 15:18:20 +0000 (10:18 -0500)] 
Merge "chan_iax2: better handling for timeout and EINTR" into 15

7 years agotests/test_utils: Repair ./configure --with-ssl=PATH.
Alexander Traud [Wed, 13 Jun 2018 09:40:00 +0000 (11:40 +0200)] 
tests/test_utils: Repair ./configure --with-ssl=PATH.

ASTERISK-27914

Change-Id: Ibcab8f556ee77776f203cff8b06d776a673b7bc4

7 years agoapp_confbridge: Enable sending events to participants
George Joseph [Thu, 31 May 2018 21:22:13 +0000 (15:22 -0600)] 
app_confbridge:  Enable sending events to participants

ConfBridge can now send events to participants via in-dialog MESSAGEs.
All current Confbridge events are supported, such as ConfbridgeJoin,
ConfbridgeLeave, etc.  In addition to those events, a new event
ConfbridgeWelcome has been added that will send a list of all
current participants to a new participant.

For all but the ConfbridgeWelcome event, the JSON message contains
information about the bridge, such as its id and name, and information
about the channel that triggered the event such as channel name,
callerid info, mute status, and the MSID labels for their audio and
video tracks. You can use the labels to correlate callerid and mute
status to specific video elements in a webrtc client.

To control this behavior, the following options have been added to
confbridge.conf:

bridge_profile/enable_events:  This must be enabled on any bridge where
events are desired.

user_profile/send_events:  This must be set for a user profile to send
events.  Different user profiles connected to the same bridge can have
different settings.  This allows admins to get events but not normal
users for instance.

user_profile/echo_events:  In some cases, you might not want the user
triggering the event to get the event sent back to them.  To prevent it,
set this to false.

A change was also made to res_pjsip_sdp_rtp to save the generated msid
to the stream so it can be re-used.  This allows participant A's video
stream to appear as the same label to all other participants.

Change-Id: I26420aa9f101f0b2387dc9e2fd10733197f1318e

7 years agores_rtp_asterisk: Instead of ./configure use OPENSSL_NO_SRTP.
Alexander Traud [Wed, 13 Jun 2018 10:06:10 +0000 (12:06 +0200)] 
res_rtp_asterisk: Instead of ./configure use OPENSSL_NO_SRTP.

Previously, Asterisk used its script ./configure, to test whether OpenSSL was
built with no-srtp (or was simply too old). However, the header file
<openssl/opensslconf.h> is the preferred way to detect the local configuration
of OpenSSL.

As a positive side-effect the script ./configure does not interleave the
detection of the Open Settlement Protocol Toolkit (OSPTK) with the detection of
individual features of OpenSSL anymore.

Change-Id: I3c77c7b00b2ffa2e935632097fa057b9fdf480c0

7 years agochan_iax2: better handling for timeout and EINTR
ktyerman [Tue, 5 Jun 2018 01:31:39 +0000 (11:31 +1000)] 
chan_iax2: better handling for timeout and EINTR

The iax2 module is not handling timeout and EINTR case properly. Mainly when
there is an interupt to the kernel thread. In case of ast_io_wait recieves a
signal, or timeout it can be an error or return 0 which eventually escapes the
thread loop, so that it cant recieve any data. This then causes the modules
receive queue to build up on the kernel and stop any communications via iax in
asterisk.

The proposed patch is for the iax module, so that timeout and EINTR does not
exit the thread.

ASTERISK-27705
Reported-by: Kirsty Tyerman
Change-Id: Ib4c32562f69335869adc1783608e940c3535fbfb

7 years agoMerge "rtp: Don't negotiate dynamic codecs using payload." into 15
Jenkins2 [Tue, 12 Jun 2018 15:41:05 +0000 (10:41 -0500)] 
Merge "rtp: Don't negotiate dynamic codecs using payload." into 15

7 years agoMerge "chan_pjsip: Register for "BEFORE_MEDIA" responses" into 15
Joshua Colp [Tue, 12 Jun 2018 15:21:38 +0000 (10:21 -0500)] 
Merge "chan_pjsip:  Register for "BEFORE_MEDIA" responses" into 15

7 years agoMerge "res_rtp_asterisk: Allow OpenSSL configured with no-deprecated." into 15
Jenkins2 [Tue, 12 Jun 2018 15:02:30 +0000 (10:02 -0500)] 
Merge "res_rtp_asterisk: Allow OpenSSL configured with no-deprecated." into 15

7 years agoMerge "crypto.h: Repair ./configure --with-ssl=PATH." into 15
Jenkins2 [Tue, 12 Jun 2018 14:41:48 +0000 (09:41 -0500)] 
Merge "crypto.h: Repair ./configure --with-ssl=PATH." into 15

7 years agoMerge "res_crypto: Allow OpenSSL configured with no-deprecated." into 15
Joshua Colp [Tue, 12 Jun 2018 13:29:09 +0000 (08:29 -0500)] 
Merge "res_crypto: Allow OpenSSL configured with no-deprecated." into 15

7 years agoMerge "res_srtp: Repair ./configure --with-ssl=PATH." into 15
Joshua Colp [Tue, 12 Jun 2018 13:27:44 +0000 (08:27 -0500)] 
Merge "res_srtp: Repair ./configure --with-ssl=PATH." into 15

7 years agoMerge "func_odbc: NODATA if SQLNumResultCols returned 0 columns on readsql" into 15
George Joseph [Tue, 12 Jun 2018 13:07:00 +0000 (08:07 -0500)] 
Merge "func_odbc: NODATA if SQLNumResultCols returned 0 columns on readsql" into 15

7 years agoMerge "AST-2018-008: Fix enumeration of endpoints from ACL rejected addresses." into 15
Kevin Harwell [Mon, 11 Jun 2018 19:34:46 +0000 (14:34 -0500)] 
Merge "AST-2018-008: Fix enumeration of endpoints from ACL rejected addresses." into 15

7 years agoMerge "AST-2018-007: iostreams potential DoS when client connection closed prematurel...
Kevin Harwell [Mon, 11 Jun 2018 17:36:12 +0000 (12:36 -0500)] 
Merge "AST-2018-007: iostreams potential DoS when client connection closed prematurely" into 15

7 years agoAST-2018-008: Fix enumeration of endpoints from ACL rejected addresses.
Richard Mudgett [Mon, 30 Apr 2018 22:38:58 +0000 (17:38 -0500)] 
AST-2018-008: Fix enumeration of endpoints from ACL rejected addresses.

When endpoint specific ACL rules block a SIP request they respond with a
403 forbidden.  However, if an endpoint is not identified then a 401
unauthorized response is sent.  This vulnerability just discloses which
requests hit a defined endpoint.  The ACL rules cannot be bypassed to gain
access to the disclosed endpoints.

* Made endpoint specific ACL rules now respond with a 401 unauthorized
which is the same as if an endpoint were not identified.  The fix is
accomplished by replacing the found endpoint with the artificial endpoint
which always fails authentication.

ASTERISK-27818

Change-Id: Icb275a54ff8e2df6c671a6d9bda37b5d732b3b32

7 years agores_rtp_asterisk: Allow OpenSSL configured with no-deprecated.
Alexander Traud [Fri, 8 Jun 2018 20:02:38 +0000 (22:02 +0200)] 
res_rtp_asterisk: Allow OpenSSL configured with no-deprecated.

Furthermore, allow OpenSSL configured with no-dh. Additionally, this change
allows auto-negotiation of the elliptic curve/group for servers, not only with
OpenSSL 1.0.2 but also with OpenSSL 1.1.0 and newer. This enables X25519
(since OpenSSL 1.1.0) and X448 (since OpenSSL 1.1.1) as a side-effect.

ASTERISK-27910

Change-Id: I5b0dd47c5194ee17f830f869d629d7ef212cf537

7 years agocrypto.h: Repair ./configure --with-ssl=PATH.
Alexander Traud [Fri, 8 Jun 2018 11:01:53 +0000 (13:01 +0200)] 
crypto.h: Repair ./configure --with-ssl=PATH.

ASTERISK-27908

Change-Id: Iac49d9f82faeb8a4611c6805906bd6d650b1b1d8

7 years agores_crypto: Allow OpenSSL configured with no-deprecated.
Alexander Traud [Fri, 8 Jun 2018 09:03:35 +0000 (11:03 +0200)] 
res_crypto: Allow OpenSSL configured with no-deprecated.

The header <openssl/rsa.h> had to be included explicitly.

ASTERISK-27906

Change-Id: I41743801eed998c039d73db7a0762d104a4f75b2

7 years agores_srtp: Repair ./configure --with-ssl=PATH.
Alexander Traud [Fri, 8 Jun 2018 07:41:01 +0000 (09:41 +0200)] 
res_srtp: Repair ./configure --with-ssl=PATH.

ASTERISK-27905

Change-Id: Ibb7dc148a0048f4f9c3b12937ba4240dff0d15e2

7 years agofunc_odbc: NODATA if SQLNumResultCols returned 0 columns on readsql
Alexei Gradinari [Thu, 31 May 2018 15:25:40 +0000 (11:25 -0400)] 
func_odbc: NODATA if SQLNumResultCols returned 0 columns on readsql

The functions acf_odbc_read/cli_odbc_read ignore a number of columns
returned by the SQLNumResultCols.
If the number of columns is zero it means no data.
In this case, a SQLFetch function has to be not called,
because it will cause an error.

ASTERISK-27888 #close

Change-Id: Ie0f7bdac6c405aa5bbd38932c7b831f90729ee19

7 years agochan_pjsip: Register for "BEFORE_MEDIA" responses
George Joseph [Thu, 7 Jun 2018 13:46:03 +0000 (07:46 -0600)] 
chan_pjsip:  Register for "BEFORE_MEDIA" responses

chan_pjsip wasn't registering for "BEFORE_MEDIA" responses which meant
it was not updating HANGUPCAUSE for 4XX responses.  If the remote end
sent a "180 Ringing", then a "486 Busy", the hangup cause was left at
"180 Normal Clearing".

* Removed chan_pjsip_incoming_response from the original session
  supplement (which was handling only "AFTER MEDIA") and added it to a
  new session supplement which accepts both "BEFORE_MEDIA" and
  "AFTER_MEDIA".

* Also cleaned up some cleanup code in load module.

ASTERISK-27902

Change-Id: If9b860541887aca8ac2c9f2ed51ceb0550fb007a

7 years agoooh323c: GCC 8.1 warned about output truncated before terminating nul.
Alexander Traud [Thu, 7 Jun 2018 12:19:39 +0000 (14:19 +0200)] 
ooh323c: GCC 8.1 warned about output truncated before terminating nul.

ASTERISK-27901

Change-Id: I5a8e894f4924ef52e3094f6870656a559d67f3d7

7 years agoMerge "pjsip_options: handle modification of qualify options in realtime" into 15
George Joseph [Wed, 6 Jun 2018 15:13:18 +0000 (10:13 -0500)] 
Merge "pjsip_options: handle modification of qualify options in realtime" into 15

7 years agoMerge "pjsip_options: show/reload AOR qualify options using CLI" into 15
George Joseph [Wed, 6 Jun 2018 15:10:27 +0000 (10:10 -0500)] 
Merge "pjsip_options: show/reload AOR qualify options using CLI" into 15

7 years agoMerge "app_confbridge: Add talking indicator for ConfBridgeList AMI response" into 15
George Joseph [Wed, 6 Jun 2018 14:46:56 +0000 (09:46 -0500)] 
Merge "app_confbridge: Add talking indicator for ConfBridgeList AMI response" into 15

7 years agoMerge "bridge_channel.c: Fix Deadlock when using Local channels and fax gateway"...
Joshua Colp [Wed, 6 Jun 2018 10:46:39 +0000 (05:46 -0500)] 
Merge "bridge_channel.c: Fix Deadlock when using Local channels and fax gateway" into 15

7 years agoMerge "tcptls: Allow OpenSSL configured with no-dh." into 15
Joshua Colp [Wed, 6 Jun 2018 09:36:24 +0000 (04:36 -0500)] 
Merge "tcptls: Allow OpenSSL configured with no-dh." into 15

7 years agoMerge "tcptls.h: Repair ./configure --with-ssl=PATH." into 15
George Joseph [Tue, 5 Jun 2018 19:21:48 +0000 (14:21 -0500)] 
Merge "tcptls.h: Repair ./configure --with-ssl=PATH." into 15

7 years agopjsip_options: handle modification of qualify options in realtime
Alexei Gradinari [Tue, 22 May 2018 21:21:10 +0000 (17:21 -0400)] 
pjsip_options: handle modification of qualify options in realtime

Currentrly pjsip_options code does not handle the situation when the
qualify options were changed in realtime database.
Only 'module reload res_pjsip' helps.

This patch add a check on contact add/update observers if the contact
qualify options are different than local aor qualify options.
If the qualify options were modified then synchronize
the pjsip_options AOR local state.

ASTERISK-27872

Change-Id: Id55210a18e62ed5d35a88e408d5fe84a3c513c62

7 years agopjsip_options: show/reload AOR qualify options using CLI
Alexei Gradinari [Wed, 23 May 2018 21:20:39 +0000 (17:20 -0400)] 
pjsip_options: show/reload AOR qualify options using CLI

Currentrly pjsip_options code does not handle the situation when the
AOR qualify options were changed.

Also there is no way to find out what qualify options are using.

This patch add CLI commands to show and synchronize Aor qualify options:
pjsip show qualify endpoint <id>
    Show the current qualify options for all Aors on the PJSIP endpoint.
pjsip show qualify aor <id>
    Show the PJSIP Aor current qualify options.
pjsip reload qualify endpoint <id>
    Synchronize the qualify options for all Aors on the PJSIP endpoint.
pjsip reload qualify aor <id>
    Synchronize the PJSIP Aor qualify options.

ASTERISK-27872

Change-Id: I1746d10ef2b7954f2293f2e606cdd7428068c38c

7 years agoMerge "tcptls: Allow OpenSSL 1.1.x configured with enable-ssl3-method no-deprecated...
George Joseph [Tue, 5 Jun 2018 18:02:04 +0000 (13:02 -0500)] 
Merge "tcptls: Allow OpenSSL 1.1.x configured with enable-ssl3-method no-deprecated." into 15

7 years agoMerge "app_meetme: Fix manager event documentation for several events." into 15
Joshua Colp [Tue, 5 Jun 2018 11:53:48 +0000 (06:53 -0500)] 
Merge "app_meetme: Fix manager event documentation for several events." into 15

7 years agobridge_channel.c: Fix Deadlock when using Local channels and fax gateway
Pirmin Walthert [Wed, 30 May 2018 06:12:30 +0000 (08:12 +0200)] 
bridge_channel.c: Fix Deadlock when using Local channels and fax gateway

ast_indicate is invoked with the bridge locked. As ast_indicate locks the
other end of the bridge as well this can lead to a deadlock in some situations.
(Especially when a different thread does the same in the reverse order).
This patch calls ast_indicate after unlocking the bridge which fixes the
deadlock. Calling ast_indicate with these parameters without locking the
bridge should be safe as this is done at different places without a
bridge lock.

ASTERISK-27094 #close
Reported-by: David Brillert
Change-Id: I5f86c1e2ce75b9929a36ab589b18c450e62ea35f

7 years agortp: Don't negotiate dynamic codecs using payload.
Joshua Colp [Tue, 5 Jun 2018 09:36:35 +0000 (09:36 +0000)] 
rtp: Don't negotiate dynamic codecs using payload.

In Asterisk there are some dynamic codecs that have
a fixed payload number. This number was being improperly
used to negotiate the codec, instead of using the name
and sample rate. This could result in the wrong payload
number being negotiated for a codec.

This change makes it so that only static payloads
will be negotiated using their payload number.

ASTERISK-27848

Change-Id: Ia865830170fd3f808cdb33104f3d4c4ffdc77570

7 years agoapp_sendtext: Allow content types other than text/plain
George Joseph [Mon, 4 Jun 2018 14:50:51 +0000 (08:50 -0600)] 
app_sendtext:  Allow content types other than text/plain

There was no real reason to limit the conteny type to text/plain other
than that's what it was limited to before.  Now any text/* content
type will be allowed for channel drivers that don't support enhanced
messaging and any type will be allowed for channel drivers that do
support enhanced messaging.

Change-Id: I94a90cfee98b4bc8e22aa5c0b6afb7b862f979d9

7 years agoapp_confbridge: Add talking indicator for ConfBridgeList AMI response
William McCall [Tue, 29 May 2018 00:17:52 +0000 (00:17 +0000)] 
app_confbridge: Add talking indicator for ConfBridgeList AMI response

When an AMI client connects, it cannot determine if a user was talking
prior to a transition in the user speaking state (which would generate
a ConfbridgeTalking event). This patch causes app_confbridge to track the
talking state and make this state available via ConfBridgeList.

ASTERISK-27877 #close

Change-Id: I19b5284f34966c3fda94f5b99a7e40e6b89767c6

7 years agoMerge "ast_coredumper: Fix output directory and variable precedence" into 15
Joshua Colp [Thu, 31 May 2018 10:16:18 +0000 (05:16 -0500)] 
Merge "ast_coredumper:  Fix output directory and variable precedence" into 15