]> git.ipfire.org Git - thirdparty/asterisk.git/log
thirdparty/asterisk.git
6 years agoUpdate for 15.7.3 15.7.3
Asterisk Development Team [Thu, 11 Jul 2019 19:22:48 +0000 (14:22 -0500)] 
Update for 15.7.3

6 years agoMerge "res_pjsip_messaging: Check for body in in-dialog message" into 15.7
Benjamin Keith Ford [Thu, 11 Jul 2019 19:13:18 +0000 (14:13 -0500)] 
Merge "res_pjsip_messaging:  Check for body in in-dialog message" into 15.7

6 years agores_pjsip_messaging: Check for body in in-dialog message
George Joseph [Wed, 12 Jun 2019 18:03:04 +0000 (12:03 -0600)] 
res_pjsip_messaging:  Check for body in in-dialog message

We now check that a body exists and it has a length > 0 before
attempting to process it.

ASTERISK-28447
Reported-by: Gil Richard
Change-Id: Ic469544b22ab848734636588d4c93426cc6f4b1f

6 years agochan_sip: Handle invalid SDP answer to T.38 re-invite
Francesco Castellano [Fri, 28 Jun 2019 16:15:31 +0000 (18:15 +0200)] 
chan_sip: Handle invalid SDP answer to T.38 re-invite

The chan_sip module performs a T.38 re-invite using a single media
stream of udptl, and expects the SDP answer to be the same.

If an SDP answer is received instead that contains an additional
media stream with no joint codec a crash will occur as the code
assumes that at least one joint codec will exist in this
scenario.

This change removes this assumption.

ASTERISK-28465

Change-Id: I8b02845b53344c6babe867a3f0a5231045c7ac87

6 years agoUpdate for 15.7.2 15.7.2
Asterisk Development Team [Thu, 28 Feb 2019 18:40:02 +0000 (13:40 -0500)] 
Update for 15.7.2

6 years agores_pjsip_sdp_rtp: Fix return code from apply_negotiated_sdp_stream
George Joseph [Wed, 30 Jan 2019 19:25:55 +0000 (12:25 -0700)] 
res_pjsip_sdp_rtp:  Fix return code from apply_negotiated_sdp_stream

apply_negotiated_sdp_stream was returning a "1" when no joint
capabilities were found on an outgoing call instead of a "-1".
This indicated to res_pjsip_session that the handler DID handle
the sdp when in fact it didn't.  Without the appropriate setup,
a subsequent media frame coming in would have an invalid stream_num
and cause a seg fault when the stream was attempted to be retrieved.

apply_negotiated_sdp_stream now returns the correct "-1" and any
media is now discarded before it reaches the core stream processing.

ASTERISK-28260
Reported by: Sotiris Ganouris

Change-Id: Ia095cb16b4862f2f6ad6d2d2a77453fa2542371f

6 years agoCI: Update jenkinsfiles with new Gerrit URLs
George Joseph [Wed, 27 Feb 2019 16:37:14 +0000 (09:37 -0700)] 
CI: Update jenkinsfiles with new Gerrit URLs

The recent upgrade of Gerrit to 2.16 elimiated referencing a
repository in a way the jenkinsfiles were relying on so
the URL references were changed to a more consistent and supported
format.

Change-Id: I2e8e3f213b9a96bb1b27665eca4a9a24bc49820e
(cherry picked from commit 5ce084579f897096163b4e0c2ed4e8e1a8558cca)

6 years agoRevert "stasis_cache: Stop caching stasis subscription change messages"
George Joseph [Wed, 26 Dec 2018 16:25:55 +0000 (11:25 -0500)] 
Revert "stasis_cache:  Stop caching stasis subscription change messages"

This reverts commit ad961fd7c3313f989d6fa16ba2fc9b138cee4cb5.

This commit caused issues with polling when combined with
the revert commit "Revert "app_voicemail: Remove need to subscribe to stasis"

ASTERISK-28222
Reported by: abelbeck

Change-Id: I582534ef730923b16e137021e24f6f87dad0d2b4

6 years agoUpdate for 15.7.0-rc1 15.7.0-rc1
Kevin Harwell [Mon, 3 Dec 2018 23:17:47 +0000 (17:17 -0600)] 
Update for 15.7.0-rc1

6 years agoAST-2018-010: Fix length of buffer needed for SRV and NAPTR results
George Joseph [Thu, 25 Oct 2018 15:25:58 +0000 (09:25 -0600)] 
AST-2018-010: Fix length of buffer needed for SRV and NAPTR results

When dn_expand was being called on SRV and NAPTR results, the
return value was being used to calculate the size of the buffer
needed to store the host names.  Since dn_expand returns the
length of the COMPRESSED name the buffer could be too short
to hold the EXPANDED name.  The expanded name is NULL terminated
so using strlen() is the correct way to determine the length
actually needed for the buffer.

ASTERISK-28127
Reported by: Jan Hoffmann

patches:
  patch.diff submitted by janhoffmann (license 6986)

Change-Id: I4d35d6c431c6c6836cb61d37b1378cc47f0b414d

6 years agoMerge "res_smdi.c: Fix module ref counting and inverted test." into 15
George Joseph [Fri, 5 Oct 2018 15:53:08 +0000 (10:53 -0500)] 
Merge "res_smdi.c: Fix module ref counting and inverted test." into 15

6 years agoMerge "astobj2: Comment on OBJ_NOLOCK in ao2_container_clone." into 15
George Joseph [Thu, 4 Oct 2018 12:25:23 +0000 (07:25 -0500)] 
Merge "astobj2: Comment on OBJ_NOLOCK in ao2_container_clone." into 15

6 years agoMerge "http.c: Reload TLS even if http.conf hasn't changed" into 15
George Joseph [Thu, 4 Oct 2018 12:24:16 +0000 (07:24 -0500)] 
Merge "http.c: Reload TLS even if http.conf hasn't changed" into 15

6 years agoMerge "CI: Use bindport instead of port in test http.conf" into 15
George Joseph [Wed, 3 Oct 2018 18:56:30 +0000 (13:56 -0500)] 
Merge "CI: Use bindport instead of port in test http.conf" into 15

6 years agoMerge "core/frame: Fix ast_frdup() and ast_frisolate() for empty text frames" into 15
George Joseph [Wed, 3 Oct 2018 18:43:05 +0000 (13:43 -0500)] 
Merge "core/frame: Fix ast_frdup() and ast_frisolate() for empty text frames" into 15

6 years agoastobj2: Comment on OBJ_NOLOCK in ao2_container_clone.
Corey Farrell [Tue, 2 Oct 2018 22:15:47 +0000 (18:15 -0400)] 
astobj2: Comment on OBJ_NOLOCK in ao2_container_clone.

The test for OBJ_NOLOCK looks wrong but it isn't.  Add comments to
prevent confusion.

Change-Id: I9662b82eb39e7627a1f1944fd18f967a2b987344

6 years agoMerge "loader: Fix result of module reload error." into 15
George Joseph [Wed, 3 Oct 2018 14:31:01 +0000 (09:31 -0500)] 
Merge "loader: Fix result of module reload error." into 15

6 years agoMerge "core: Disable astobj2 locking for some common objects." into 15
George Joseph [Wed, 3 Oct 2018 14:30:40 +0000 (09:30 -0500)] 
Merge "core: Disable astobj2 locking for some common objects." into 15

6 years agoMerge "astobj2: Record lock usage to refs log when DEBUG_THREADS is enabled." into 15
George Joseph [Wed, 3 Oct 2018 14:29:05 +0000 (09:29 -0500)] 
Merge "astobj2: Record lock usage to refs log when DEBUG_THREADS is enabled." into 15

6 years agoCI: Use bindport instead of port in test http.conf
Sean Bright [Wed, 3 Oct 2018 13:59:52 +0000 (09:59 -0400)] 
CI: Use bindport instead of port in test http.conf

Change-Id: Ife9a6879da63a56e5b8348a2024eeed4e7b1615b

6 years agohttp.c: Reload TLS even if http.conf hasn't changed
Sean Bright [Wed, 3 Oct 2018 12:56:34 +0000 (08:56 -0400)] 
http.c: Reload TLS even if http.conf hasn't changed

There is currently no way to indicate to Asterisk that TLS certificates
and/or keys have been updated other than by modifying http.conf or
restarting Asterisk.

There is already code in main/tcptls.c that determines if a reload is
actually necessary based on the hashes of the certicate and dependent
files, so this change merely gives us a way to request a reload without
explicitly modifying http.conf.

Change-Id: Ie795420dcc7eb3d91336820688a29adbcc321276

6 years agocore: Disable astobj2 locking for some common objects.
Corey Farrell [Tue, 2 Oct 2018 03:12:14 +0000 (23:12 -0400)] 
core: Disable astobj2 locking for some common objects.

* ACO options
* Indications
* Module loader ref_debug object
* Media index info and variants
* xmldoc items

These allocation locations were identified using reflocks.py on the
master branch.

Change-Id: Ie999b9941760be3d1946cdb6e30cb85fd97504d8

6 years agores_smdi.c: Fix module ref counting and inverted test.
Richard Mudgett [Tue, 2 Oct 2018 21:15:37 +0000 (16:15 -0500)] 
res_smdi.c: Fix module ref counting and inverted test.

I think this module is so screwed up that it doesn't work anymore.  Even
with these attempts to fix things it still won't gracefully shut down.
The module refs will not go to zero to allow unloading the module.

* Fix module ref counting dealing with the SMDI interface object.  There
were several off-nominal paths that unbalanced the module ref count.  Also
the destructor freed the ao2 object itself which is bad.  Made the
smdi_read thread not hold its own ref to the SMDI interface object so when
all refs go away the destructor will stop the listener thread.

* Fixed the smdi_load() return code of 1 concerning the number of
listeners.  The test was inverted.

Change-Id: Ic288db51b58e395d6a2fc3847f77176c16988784

6 years agoResolve warning about duplicate 'dialplan' CLI.
Corey Farrell [Thu, 13 Sep 2018 18:03:15 +0000 (14:03 -0400)] 
Resolve warning about duplicate 'dialplan' CLI.

Change-Id: I029db1b4a32ccfb38374d6fe944dc430866f4b30

6 years agoloader: Fix result of module reload error.
Corey Farrell [Tue, 2 Oct 2018 06:28:20 +0000 (02:28 -0400)] 
loader: Fix result of module reload error.

When a module reload fails we never set AST_MODULE_RELOAD_ERROR.  This
caused reload failures to incorrectly report 'No module found'.

Change-Id: I5f3953e0f7d135e53ec797f24c97ee3f73f232e7

6 years agocore/frame: Fix ast_frdup() and ast_frisolate() for empty text frames
neutrino88 [Tue, 25 Sep 2018 21:19:36 +0000 (17:19 -0400)] 
core/frame: Fix ast_frdup() and ast_frisolate() for empty text frames

If a channel creates an AST_TEXT_FRAME with datalen == 0, the ast_frdup()
and ast_frisolate() functions could create a clone frame with an invalid
data.ptr which would cause a crash.  The proposed fix is to make sure that
for such empty text frames, ast_frdup() and ast_frisolate() return cloned
text frames with a valid data.ptr.

ASTERISK-28076
Reported by: Emmanuel BUU
Tested by: Emmanuel BUU

Change-Id: Ib882dd028598f13c4c233edbfdd7e54ad44a68e9

6 years agoastobj2: Record lock usage to refs log when DEBUG_THREADS is enabled.
Corey Farrell [Mon, 1 Oct 2018 04:11:44 +0000 (00:11 -0400)] 
astobj2: Record lock usage to refs log when DEBUG_THREADS is enabled.

When DEBUG_THREADS is enabled we can know if the astobj2 mutex / rwlock
was ever used, so it can be recorded in the REF_DEBUG destructor entry.

Create contrib/scripts/reflocks.py to process locking used by
allocator.  This can be used to identify places where
AO2_ALLOC_OPT_LOCK_NOLOCK should be used to reduce memory usage.

Change-Id: I2e3cd23336a97df2692b545f548fd79b14b53bf4

6 years agoapp_queue.c: Fix json ref leak
Richard Mudgett [Fri, 28 Sep 2018 18:55:43 +0000 (13:55 -0500)] 
app_queue.c: Fix json ref leak

Declining the queue_member_status_type stasis message in stasis.conf
causes these messages to leak json objects.

* Add missing ast_json_unref() if the type is NULL in
queue_publish_member_blob().

ASTERISK-28084

Change-Id: I691ecf49bd1f7d9c29182e1eee8c4bb7103be9fc

6 years agoMerge "app_confbridge: Use bridge join hook to send join and leave events" into 15
Jenkins2 [Mon, 1 Oct 2018 15:16:04 +0000 (10:16 -0500)] 
Merge "app_confbridge:  Use bridge join hook to send join and leave events" into 15

6 years agoMerge "astobj2: Reduce memory overhead." into 15
Joshua Colp [Mon, 1 Oct 2018 14:07:25 +0000 (09:07 -0500)] 
Merge "astobj2: Reduce memory overhead." into 15

6 years agoMerge "lock: Improve performance of DEBUG_THREADS." into 15
Joshua Colp [Mon, 1 Oct 2018 13:32:26 +0000 (08:32 -0500)] 
Merge "lock: Improve performance of DEBUG_THREADS." into 15

6 years agoMerge "configure.ac: Check for unbound version >= 1.5" into 15
Joshua Colp [Mon, 1 Oct 2018 12:22:21 +0000 (07:22 -0500)] 
Merge "configure.ac:  Check for unbound version >= 1.5" into 15

6 years agoMerge "res_pjsip: improve realtime performance on CLI 'pjsip show contacts'" into 15
Joshua Colp [Mon, 1 Oct 2018 11:58:16 +0000 (06:58 -0500)] 
Merge "res_pjsip: improve realtime performance on CLI 'pjsip show contacts'" into 15

6 years agoMerge "jansson-bundled: Add patches to improve json_pack error reporting." into 15
Joshua Colp [Mon, 1 Oct 2018 11:24:55 +0000 (06:24 -0500)] 
Merge "jansson-bundled: Add patches to improve json_pack error reporting." into 15

6 years agoMerge "res_stasis: Fix stale data in ARI bridges" into 15
Joshua Colp [Mon, 1 Oct 2018 11:23:47 +0000 (06:23 -0500)] 
Merge "res_stasis: Fix stale data in ARI bridges" into 15

6 years agores_pjsip: improve realtime performance on CLI 'pjsip show contacts'
Alexei Gradinari [Tue, 25 Sep 2018 22:33:32 +0000 (18:33 -0400)] 
res_pjsip: improve realtime performance on CLI 'pjsip show contacts'

CLI command 'pjsip show contacts' inefficiently make a lot of DB requests.

For example if there are 10k aors then asterisk requests these 10k records
of aor and then does 10k requests of contact - one request per aor.

Even if use 'like <pattern>' the asterisk requests all aor's and contact's
records and then filters them by itself.

This patch gathers contact's container by
- retrieving all dynamic contacts by regex (filtered by reg_server)
- retrieving all aors with permanent contacts
- finally filters container by regex

ASTERISK-28077 #close

Change-Id: Id0ad65d14952a02fb213273a90f3f680a8149618

6 years agojansson-bundled: Add patches to improve json_pack error reporting.
Corey Farrell [Fri, 28 Sep 2018 19:45:36 +0000 (15:45 -0400)] 
jansson-bundled: Add patches to improve json_pack error reporting.

Change-Id: I045e420d5e73e60639079246e810da6ae21ae22b

6 years agolock: Improve performance of DEBUG_THREADS.
Corey Farrell [Fri, 28 Sep 2018 00:32:21 +0000 (20:32 -0400)] 
lock: Improve performance of DEBUG_THREADS.

Add a volatile flag to lock tracking structures so we only need to use
the global lock when first initializing tracking.

Additionally add support for DEBUG_THREADS_LOOSE_ABI.  This is used by
astobj2.c to eliminate storage for tracking fields when DEBUG_THREADS is
not defined.

Change-Id: Iabd650908901843e9fff47ef1c539f0e1b8cb13b

6 years agoMerge "config.c: Cleanup AST_INCLUDE_GLOB" into 15
George Joseph [Fri, 28 Sep 2018 18:16:33 +0000 (13:16 -0500)] 
Merge "config.c: Cleanup AST_INCLUDE_GLOB" into 15

6 years agoMerge "res_odbc: fix missing SQL error diagnostic" into 15
Kevin Harwell [Fri, 28 Sep 2018 15:38:53 +0000 (10:38 -0500)] 
Merge "res_odbc: fix missing SQL error diagnostic" into 15

6 years agoMerge "astobj2: Fix shutdown order." into 15
George Joseph [Fri, 28 Sep 2018 13:34:54 +0000 (08:34 -0500)] 
Merge "astobj2: Fix shutdown order." into 15

6 years agoMerge "app_queue: Fix Attended transfer hangup with removing pending member." into 15
George Joseph [Fri, 28 Sep 2018 12:48:17 +0000 (07:48 -0500)] 
Merge "app_queue: Fix Attended transfer hangup with removing pending member." into 15

6 years agoapp_confbridge: Use bridge join hook to send join and leave events
George Joseph [Thu, 27 Sep 2018 18:19:28 +0000 (12:19 -0600)] 
app_confbridge:  Use bridge join hook to send join and leave events

The first attempt at publishing confbridge events to participants
involved publishing them at the same time stasis events were
created.  This caused issues with bridge and channel locks.  The
second attempt involved publishing them when the stasis events
were received by the code that published the confbridge AMI events.
This caused timing issues because, depending on resources available,
the event could be received before channels actually joined the
bridge and would therefore fail to send messages to the participant.

This attempt reverts to the original mechanism with one exception.
The join and leave events are published via bridge join and leave
hooks.  This guarantees the states of the channels and bridge and
provides deterministic timing for event publishing.

Change-Id: I2660074f8a30a5224cb953d5e047ee84484a9036

6 years agoMerge "res_rtp_asterisk.c: Add "seqno" strictrtp option" into 15
George Joseph [Fri, 28 Sep 2018 12:29:02 +0000 (07:29 -0500)] 
Merge "res_rtp_asterisk.c: Add "seqno" strictrtp option" into 15

6 years agoastobj2: Reduce memory overhead.
Corey Farrell [Thu, 27 Sep 2018 09:51:43 +0000 (05:51 -0400)] 
astobj2: Reduce memory overhead.

Reduce options to 2-bit field, magic to 30 bit field.  Move ref_counter
next to options the fields will pack.

This reduces memory overhead for every ao2 object by 8 bytes on x86_64.

Change-Id: Idc1baabb35ec3b3d8de463c4fa3011eaf7fcafb5

6 years agoconfig.c: Cleanup AST_INCLUDE_GLOB
Sean Bright [Thu, 27 Sep 2018 20:01:58 +0000 (16:01 -0400)] 
config.c: Cleanup AST_INCLUDE_GLOB

* In main/config.c, AST_INCLUDE_GLOB is fixed to '1' making the #ifdefs
  pointless.

* In utils/extconf.c, AST_INCLUDE_GLOB is never defined so there is a
  lot of dead code.

Change-Id: I1bad1a46d7466ddf90d52cc724e997195495226c

6 years agoMerge "res_rtp_asterisk: Raise event when RTP port is allocated" into 15
George Joseph [Thu, 27 Sep 2018 14:21:10 +0000 (09:21 -0500)] 
Merge "res_rtp_asterisk: Raise event when RTP port is allocated" into 15

6 years agoMerge "CI: Add --test-timeout option to runTestsuite.sh" into 15
Joshua Colp [Thu, 27 Sep 2018 11:22:57 +0000 (06:22 -0500)] 
Merge "CI:  Add --test-timeout option to runTestsuite.sh" into 15

6 years agoastobj2: Fix shutdown order.
Corey Farrell [Thu, 27 Sep 2018 10:33:22 +0000 (06:33 -0400)] 
astobj2: Fix shutdown order.

When REF_DEBUG and AO2_DEBUG are both enabled we closed the refs log
before we shutdown astobj2_container.  This caused the AO2_DEBUG
container registration container to be reported as a leak.

Change-Id: If9111c4c21c68064b22c546d5d7a41fac430430e

6 years agoapp_queue: Fix Attended transfer hangup with removing pending member.
Cao Minh Hiep [Thu, 6 Sep 2018 02:14:12 +0000 (11:14 +0900)] 
app_queue: Fix Attended transfer hangup with removing pending member.

This issue related to setting of holdtime, announcements, member delays.
It works well if we set the member delays to "0" and no announcements
and no holdtime.This issue will happen if we set member delays to "1",
"2"... or announcements or holdtime and hangs up the call during
processing it.

And here is the reason:
(At the step of answering a phone.)
It takes care any holdtime, announcements, member delays,
or other options after a call has been answered if it exists.

Normally, After the call has been aswered,
and we wait for the processing one of the cases of the member delays
or hold time or announcements finished, "if (ast_check_hangup(peer))"
will be not executed, then queue will be updated at update_queue().
Here, pending member will be removed.

However, after the call has been aswered,
if we hangs up the call during one of the cases of the member delays
or hold time or announcements, "if (ast_check_hangup(peer))"
will be executed.
outgoing = NULL and at hangupcalls, pending members will not be removed.

* This fixed patch will remove the pending member from container
before hanging up the call with outgoing is NULL.

ASTERISK-27920

Reported by: Cao Minh Hiep
Tested by: Cao Minh Hiep

Change-Id: Ib780fbf48ace9d2d8eaa1270b9d530a4fc14c855

6 years agores_stasis: Fix stale data in ARI bridges
Moritz Fain [Tue, 26 Jun 2018 14:17:37 +0000 (16:17 +0200)] 
res_stasis: Fix stale data in ARI bridges

Fixed an issue that resulted in "Allocation failed" each time an ARI
request was made to start playing MOH on a bridge.

In bridge_moh_create() we were attaching the after bridge callbacks to
chan which is the ;1 channel of the unreal channel pair.  We should have
attached them to the ;2 channel which is pushed into the bridge by
ast_unreal_channel_push_to_bridge().  The callbacks are called when the
specific channel leaves the bridging system.  Since the ;1 channel is
never put into a bridge the callbacks never get called.  The callbacks
then never remove the moh_wrapper from the app_bridges_moh container.  As
a result we cannot find the channel associated with the wrapper to start
MOH because it has hungup.  This is the reason causing the reported issue.

* Rather than using after bridge callbacks to cleanup, we now have
moh_channel_thread() doing the cleanup when the channel hangs up.

* Fixed moh_channel_thread() accumulating control frames on the stasis
bridge MOH channel until MOH is stopped.  Control frames are no longer
accumulated while MOH is playing.

* Fixed channel ref counting issue.  stasis_app_bridge_moh_channel() may
or may not return a channel ref.  As a result ast_ari_bridges_start_moh()
wouldn't know it may have a channel ref to release.
stasis_app_bridge_moh_channel() will now return a ref with the channel it
returns.

* Eliminated RAII_VAR in bridge_moh_create().

ASTERISK-26094 #close

Change-Id: Ibff479e167b3320c68aaabfada7e1d0ef7bd548c

6 years agores_rtp_asterisk.c: Add "seqno" strictrtp option
Ben Ford [Mon, 10 Sep 2018 16:28:09 +0000 (11:28 -0500)] 
res_rtp_asterisk.c: Add "seqno" strictrtp option

When networks experience disruptions, there can be large gaps of time
between receiving packets. When strictrtp is enabled, this created
issues where a flood of packets could come in and be seen as an attack.
Another option - seqno - has been added to the strictrtp option that
ignores the time interval and goes strictly by sequence number for
validity.

Change-Id: I8a42b8d193673899c8fc22fe7f98ea87df89be71

6 years agoMerge "jansson: Backport fixes to bundled, use json_vsprintf if available." into 15
George Joseph [Wed, 26 Sep 2018 16:09:40 +0000 (11:09 -0500)] 
Merge "jansson: Backport fixes to bundled, use json_vsprintf if available." into 15

6 years agoMerge "chan_sip: SipNotify on Chan_Sip vi AMI behave different to CLI" into 15
George Joseph [Wed, 26 Sep 2018 14:34:42 +0000 (09:34 -0500)] 
Merge "chan_sip: SipNotify on Chan_Sip vi AMI behave different to CLI" into 15

6 years agores_odbc: fix missing SQL error diagnostic
Alexei Gradinari [Thu, 20 Sep 2018 18:59:54 +0000 (14:59 -0400)] 
res_odbc: fix missing SQL error diagnostic

On SQL error there is not diagnostic information about this error.
There is only
WARNING res_odbc.c: SQL Execute error -1!

The function ast_odbc_print_errors calls a SQLGetDiagField to get the number
of available diagnostic records, but the SQLGetDiagField returns 0.
However SQLGetDiagRec could return one diagnostic records in this case.

Looking at many example of getting diagnostics error information
I found out that the best way it's to use only SQLGetDiagRec
while it returns SQL_SUCCESS.

Also this patch adds calls of ast_odbc_print_errors on SQL_ERROR
to res_config_odbc.

ASTERISK-28065 #close

Change-Id: Iba5ae5470ac49ecd911dd084effbe9efac68ccc1

6 years agoCI: Add --test-timeout option to runTestsuite.sh
George Joseph [Wed, 26 Sep 2018 13:12:28 +0000 (07:12 -0600)] 
CI:  Add --test-timeout option to runTestsuite.sh

The default is 600 seconds.
Also added timeouts to the *TestGroups.json files.

Change-Id: I8ab6a69e704b6a10f06a0e52ede02312a2b72fe0

6 years agoMerge "rtp_engine: rtcp_report_to_json can overflow the ssrc integer value" into 15
George Joseph [Wed, 26 Sep 2018 13:08:34 +0000 (08:08 -0500)] 
Merge "rtp_engine: rtcp_report_to_json can overflow the ssrc integer value" into 15

6 years agochan_sip: SipNotify on Chan_Sip vi AMI behave different to CLI
pk16208 [Tue, 18 Sep 2018 13:01:02 +0000 (15:01 +0200)] 
chan_sip: SipNotify on Chan_Sip vi AMI behave different to CLI

With tls and udp enabled asterisk generates a warning about sending
message via udp instead of tls.
sip notify command via cli works as expected and without warning.

asterisk has to set the connection information accordingly to connection
and not on presumption

ASTERISK-28057 #close

Change-Id: Ib43315aba1f2c14ba077b52d8c5b00be0006656e

6 years agoconfigure.ac: Check for unbound version >= 1.5
George Joseph [Mon, 24 Sep 2018 22:56:07 +0000 (16:56 -0600)] 
configure.ac:  Check for unbound version >= 1.5

In order to do this and provide good feedback, a new macro was
created (AST_EXT_LIB_EXTRA_CHECK) which does the normal check and
path setups for the library then compiles, links and runs a supplied
code fragment to do the final determination.  In this case, the
final code fragment compares UNBOUND_VERSION_MAJOR
and UNBOUND_VERSION_MINOR to determine if they're greater than or
equal to 1.5.

Since we require version 1.5, some code in res_resolver_unbound
was also simplified.

ASTERISK-28045
Reported by: Samuel Galarneau

Change-Id: Iee94ad543cd6f8b118df8c4c7afd9c4e2ca1fa72

6 years agojansson: Backport fixes to bundled, use json_vsprintf if available.
Corey Farrell [Tue, 17 Jul 2018 03:55:02 +0000 (23:55 -0400)] 
jansson: Backport fixes to bundled, use json_vsprintf if available.

Use json_vsprintf from versions which contain fix for va_copy leak.

Apply fixes from jansson master:
* va_copy leak fix.
* Avoid potential invalid memory read in json_pack.
* Rename variable that shadowed another.

Change-Id: I7522e462d2a52f53010ffa1e7d705c666ec35539

6 years agoMerge "app_voicemail: Fix stack overrun in append_mailbox" into 15
George Joseph [Mon, 24 Sep 2018 18:49:16 +0000 (13:49 -0500)] 
Merge "app_voicemail:  Fix stack overrun in append_mailbox" into 15

6 years agores_rtp_asterisk: Raise event when RTP port is allocated
Joshua Colp [Mon, 24 Sep 2018 17:43:17 +0000 (17:43 +0000)] 
res_rtp_asterisk: Raise event when RTP port is allocated

This change raises a testsuite event to provide what port
Asterisk has actually allocated for RTP. This ensures that
testsuite tests can remove any assumption of ports and instead
use the actual port in use.

ASTERISK-28070

Change-Id: I91bd45782e84284e01c89acf4b2da352e14ae044

6 years agoMerge "chan_sip.c: chan_sip unstable with TLS after asterisk start or reloads" into 15
George Joseph [Mon, 24 Sep 2018 15:45:20 +0000 (10:45 -0500)] 
Merge "chan_sip.c: chan_sip unstable with TLS after asterisk start or reloads" into 15

6 years agoMerge "res_remb_modifier: Add module for controlling REMB from CLI." into 15
George Joseph [Mon, 24 Sep 2018 15:11:33 +0000 (10:11 -0500)] 
Merge "res_remb_modifier: Add module for controlling REMB from CLI." into 15

6 years agoMerge "app_voicemail: Cleanup mailbox topic and cache" into 15
George Joseph [Mon, 24 Sep 2018 14:31:39 +0000 (09:31 -0500)] 
Merge "app_voicemail:  Cleanup mailbox topic and cache" into 15

6 years agoMerge "stasis: Add function to delete topic from pool" into 15
George Joseph [Mon, 24 Sep 2018 14:28:23 +0000 (09:28 -0500)] 
Merge "stasis:  Add function to delete topic from pool" into 15

6 years agoMerge "res_rtp_asterisk: Fix crash on ast_rtp_new failure." into 15
George Joseph [Mon, 24 Sep 2018 14:26:31 +0000 (09:26 -0500)] 
Merge "res_rtp_asterisk: Fix crash on ast_rtp_new failure." into 15

6 years agoMerge "channel.c: Address stack overflow in does_id_conflict()" into 15
George Joseph [Mon, 24 Sep 2018 14:23:25 +0000 (09:23 -0500)] 
Merge "channel.c:  Address stack overflow in does_id_conflict()" into 15

6 years agortp_engine: rtcp_report_to_json can overflow the ssrc integer value
Kevin Harwell [Mon, 17 Sep 2018 20:35:05 +0000 (15:35 -0500)] 
rtp_engine: rtcp_report_to_json can overflow the ssrc integer value

When writing an RTCP report to json the code attempts to pack the "ssrc" and
"source_ssrc" unsigned integer values as a signed int value type. This of course
means if the ssrc's unsigned value is greater than that which can fit into a
signed integer value it gets converted to a negative number. Subsequently, the
negative value goes out in the json report.

This patch now packs the value as a json_int_t, which is the widest integer type
available on a given system. This should make it so the value no longer
overflows.

Note, this was caught by two failing tests hep/rtcp-receiver/ and
hep/rtcp-sender.

Change-Id: I2af275286ee5e795b79f0c3d450d9e4b28e958b0

6 years agoapp_voicemail: Fix stack overrun in append_mailbox
George Joseph [Fri, 21 Sep 2018 19:32:52 +0000 (13:32 -0600)] 
app_voicemail:  Fix stack overrun in append_mailbox

The append_mailbox function wasn't calculating the correct length
to pass to ast_alloca and it wasn't handling the case where context
might be empty.

Found by the Address Sanitizer.

Change-Id: I7eb51c7bd18a7a8dbdba261462a95cc69e84f161

6 years agochannel.c: Address stack overflow in does_id_conflict()
George Joseph [Fri, 21 Sep 2018 20:23:34 +0000 (14:23 -0600)] 
channel.c:  Address stack overflow in does_id_conflict()

does_id_conflict() was passing a pointer to an int to a callback
that expected a pointer to a size_t.

Found by the Address Sanitizer.

Change-Id: I0ff542067eef63a14a60301654d65d34fe2ad503

6 years agores_rtp_asterisk: Fix crash on ast_rtp_new failure.
Corey Farrell [Fri, 21 Sep 2018 15:19:52 +0000 (11:19 -0400)] 
res_rtp_asterisk: Fix crash on ast_rtp_new failure.

ast_rtp_new free'd rtp upon failure, but rtp_engine.c would also call
the destroy callback.  Remove call to ast_free from ast_rtp_new, leave
it to rtp_engine.c to initiate the full cleanup.  Add error detection
for the ssrc_mapping vector initialization.  In rtp_allocate_transport
set rtp->s = -1 in the failure path where we close that FD to ensure we
don't try closing it twice.

ASTERISK-27854 #close

Change-Id: Ie02aecbb46228ca804e24b19cec2bb6f7b94e451

6 years agores_rtp_asterisk: Reset all settings on module reload
Sean Bright [Thu, 20 Sep 2018 20:26:55 +0000 (16:26 -0400)] 
res_rtp_asterisk: Reset all settings on module reload

'rtpchecksums' and 'rtcpinterval' are not being reset to their defaults
if they are not present in the updated configuration file.

Change-Id: I1162e40199314d46cf3225d5e1271c4c81176670

6 years agoapp_voicemail: Cleanup mailbox topic and cache
George Joseph [Thu, 20 Sep 2018 15:15:48 +0000 (09:15 -0600)] 
app_voicemail:  Cleanup mailbox topic and cache

app_voicemail wasn't properly cleaning up the stasis cache or the
mwi topic pool when the module was unloaded or when a user was
deleted as a result of a reload.  This resulted in leaks in both
areas.

* app_voicemail now calls ast_delete_mwi_state_full when it frees
  a user structure and ast_delete_mwi_state_full in turn now calls
  the new stasis_topic_pool_delete_topic function to clear the topic
  from the pool.

Change-Id: Ide23144a4a810e7e0faad5a8e988d15947965df8

6 years agoMerge "stasis: No need to keep a stasis type ref in a stasis msg or cache object...
George Joseph [Thu, 20 Sep 2018 18:09:31 +0000 (13:09 -0500)] 
Merge "stasis: No need to keep a stasis type ref in a stasis msg or cache object." into 15

6 years agoAST-2018-009: Fix crash processing websocket HTTP Upgrade requests
Sean Bright [Thu, 16 Aug 2018 15:45:53 +0000 (11:45 -0400)] 
AST-2018-009: Fix crash processing websocket HTTP Upgrade requests

The HTTP request processing in res_http_websocket allocates additional
space on the stack for various headers received during an Upgrade request.
An attacker could send a specially crafted request that causes this code
to overflow the stack, resulting in a crash.

* No longer allocate memory from the stack in a loop to parse the header
values.  NOTE: There is a slight API change when using the passed in
strings as is.  We now require the passed in strings to no longer have
leading or trailing whitespace.  This isn't a problem as the only callers
have already done this before passing the strings to the affected
function.

ASTERISK-28013 #close

Change-Id: Ia564825a8a95e085fd17e658cb777fe1afa8091a

6 years agostasis: Add function to delete topic from pool
George Joseph [Thu, 20 Sep 2018 14:41:15 +0000 (08:41 -0600)] 
stasis:  Add function to delete topic from pool

There's been a long standing leak when using topic pools.  The
topics in the pool get cleaned up when the last pool reference is
released but you can't remove a topic specifically.  If you reloaded
app_voicemail for instance, and mailboxes went away, their topics
were left in the pool.

* Added stasis_topic_pool_delete_topic() so modules can clean up
  topics from pools.
* Registered the topic pool containers so it can be examined from
  the CLI when AO2_DEBUG is enabled.  They'll be named
  "<topic_pool_name>-pool".

Change-Id: Ib7957951ee5c9b9b4482af7b9b4349112d62bc25

6 years agoMerge "stasis_cache: Stop caching stasis subscription change messages" into 15
Joshua Colp [Thu, 20 Sep 2018 13:59:11 +0000 (08:59 -0500)] 
Merge "stasis_cache:  Stop caching stasis subscription change messages" into 15

6 years agoMerge "pjproject: Update initial 2.8 patches to apply cleanly." into 15
Joshua Colp [Thu, 20 Sep 2018 10:26:32 +0000 (05:26 -0500)] 
Merge "pjproject: Update initial 2.8 patches to apply cleanly." into 15

6 years agoMerge "app_voicemail: Remove need to subscribe to stasis" into 15
Joshua Colp [Thu, 20 Sep 2018 09:53:29 +0000 (04:53 -0500)] 
Merge "app_voicemail: Remove need to subscribe to stasis" into 15

6 years agores_remb_modifier: Add module for controlling REMB from CLI.
Joshua Colp [Thu, 20 Sep 2018 09:48:38 +0000 (09:48 +0000)] 
res_remb_modifier: Add module for controlling REMB from CLI.

This adds a module which registers a CLI command that can set the
REMB bitrate value for REMB as it enters or exits Asterisk. This
allows you to ignore what Asterisk or a client produces and is
useful for demonstrations.

This does not generate REMB frames, however, but just modifies
them as they flow to or from a channel.

Change-Id: Ib089427c46a4a36d645cecfe02406adb38c17bec

6 years agostasis: No need to keep a stasis type ref in a stasis msg or cache object.
Richard Mudgett [Fri, 14 Sep 2018 20:51:41 +0000 (15:51 -0500)] 
stasis: No need to keep a stasis type ref in a stasis msg or cache object.

Stasis message types are global ao2 objects and we make stasis messages
and cache entries hold references to them.  Since there are currently
situations where cache objects are never deleted, the reference count on
the types can exceed 100000 and generate a FRACK assertion message.  The
stasis message cache could conceivably also have that many messages
legitimately on large systems.

The only down side to not holding the message type ref in the stasis
message is it only makes a crash either at shutdown or when manually
unloading a busy module slightly more likely.  However, this is more
exposing a pre-existing stasis shutdown ordering issue than a problem with
not holding a message type ref in stasis messages.

* Made stasis messages and cache entries no longer hold a ref to the
message type.

Change-Id: Ibaa28efa8d8ad3836f0c65957192424c7f561707

6 years agopjproject: Update initial 2.8 patches to apply cleanly.
Richard Mudgett [Tue, 18 Sep 2018 18:59:21 +0000 (13:59 -0500)] 
pjproject: Update initial 2.8 patches to apply cleanly.

ASTERISK-28059

Change-Id: I027472f2753391646dde594a709a75f14422db93

6 years agoMerge "alembic: fix suppress_q850_reason_headers column name" into 15
Joshua Colp [Wed, 19 Sep 2018 14:36:57 +0000 (09:36 -0500)] 
Merge "alembic: fix suppress_q850_reason_headers column name" into 15

6 years agoMerge "res_pjsip_session: Don't add declined stream if one does not exist." into 15
Joshua Colp [Wed, 19 Sep 2018 13:42:29 +0000 (08:42 -0500)] 
Merge "res_pjsip_session: Don't add declined stream if one does not exist." into 15

6 years agoMerge "pjproject: Upgrade to 2.8." into 15
George Joseph [Wed, 19 Sep 2018 13:06:13 +0000 (08:06 -0500)] 
Merge "pjproject: Upgrade to 2.8." into 15

6 years agostasis_message.c: Don't create immutable stasis objects with locks.
Richard Mudgett [Fri, 14 Sep 2018 20:48:24 +0000 (15:48 -0500)] 
stasis_message.c: Don't create immutable stasis objects with locks.

* Create the stasis message object without a lock as it is immutable.
* Create the stasis message type object without a lock as it is immutable.
* Creating the stasis message type could crash if the passed in type name
is NULL and REF_DEBUG is enabled.  Added missing NULL check when passing
the ao2 object tag string.

Change-Id: I28763c58bb9f0b427c11971d0103bf94055e7b32

6 years agopjproject: Upgrade to 2.8.
Joshua Colp [Mon, 17 Sep 2018 16:38:19 +0000 (16:38 +0000)] 
pjproject: Upgrade to 2.8.

This change brings in PJSIP 2.8, removes all the patches
that were merged upstream, and makes a minor change to
support a breaking change that was done.

ASTERISK-28059

Change-Id: I5097772b11b0f95c3c1f52df6400158666f0a189

6 years agoalembic: fix suppress_q850_reason_headers column name
Florian Floimair [Tue, 18 Sep 2018 14:39:05 +0000 (16:39 +0200)] 
alembic: fix suppress_q850_reason_headers column name

In the original commit introducing the feature the column in the alembic
script was called 'suppress_q850_reason_header'.
In the code however the option is called 'suppress_q850_reason_headers'
(trailing 's'). This leads to errors when ARI push configuration is used.

Change-Id: Ie84808adbca6fcc9136556e4f5d741adbef5d14f

6 years agoapp_voicemail: Remove need to subscribe to stasis
George Joseph [Thu, 13 Sep 2018 12:55:20 +0000 (06:55 -0600)] 
app_voicemail: Remove need to subscribe to stasis

app_voicemail was using the stasis cache to build and maintain a
list of mailboxes that had subscribers.  It then used this list
to determine if a mailbox should be polled for new messages if
polling was enabled.  For this to work, stasis had to cache every
subscription and unsubscription to the mailbox which caused a lot of
overhead, both cpu and memory related.

Since polling is only required when changes are being made to
mailboxes outside of app_voicemail and since the number of mailboxes
that don't have any subscribers is likely to be very low, all
mailboxes are now polled instead of just the ones with subscribers.

This paves the way for disabling the caching of stasis subscription
change messages.

Also fixed cleanup in some of the unit tests that not only left
test users in the users list but also caused segfaults if the tests
were run more than once.

ASTERISK-27121

Change-Id: I5cceb737246949f9782955c64425b8bd25a9e9ee

6 years agores_pjsip_session: Don't add declined stream if one does not exist.
Joshua Colp [Tue, 18 Sep 2018 11:08:24 +0000 (11:08 +0000)] 
res_pjsip_session: Don't add declined stream if one does not exist.

Given a scenario where a session refresh was done with a removed
stream we would always add a removed stream to the outgoing SDP
even if one did not already exist.

This change makes it so that a removed stream is only placed into
the SDP if one already exists.

ASTERISK-28047

Change-Id: Ibb97d21cdeb87a8acae0c720861b0ff255708442

6 years agoautoconf: Check for srtp_get_version_string() before using it
Sean Bright [Mon, 17 Sep 2018 15:38:28 +0000 (11:38 -0400)] 
autoconf: Check for srtp_get_version_string() before using it

Change-Id: Id2a916ff9448706090e72ff2c7fb3f5ba24a05df

6 years agoMerge "res_srtp.c: Show linked version of libsrtp on module init" into 15
George Joseph [Mon, 17 Sep 2018 14:24:17 +0000 (09:24 -0500)] 
Merge "res_srtp.c: Show linked version of libsrtp on module init" into 15

6 years agoMerge "res_pjsip: Log IPv6 addresses correctly" into 15
George Joseph [Mon, 17 Sep 2018 13:34:22 +0000 (08:34 -0500)] 
Merge "res_pjsip: Log IPv6 addresses correctly" into 15

6 years agoCI: Fix typo in testsuite git checkout
George Joseph [Mon, 17 Sep 2018 12:10:18 +0000 (06:10 -0600)] 
CI: Fix typo in testsuite git checkout

Change-Id: I30024515e5b00a5044fd39fbff27d818f016b719

6 years agores_srtp.c: Show linked version of libsrtp on module init
Sean Bright [Sun, 16 Sep 2018 11:08:29 +0000 (07:08 -0400)] 
res_srtp.c: Show linked version of libsrtp on module init

Change-Id: Ib0a645d6985de5757cc4399ed2524b2d02c4f342

6 years agores_pjsip: Log IPv6 addresses correctly
Sean Bright [Fri, 7 Sep 2018 14:40:05 +0000 (10:40 -0400)] 
res_pjsip: Log IPv6 addresses correctly

Both pjsip_tx_data.tp_info.dst_name and pjsip_rx_data.pkt_info.src_name
store IPv6 addresses without enclosing brackets. This causes some log
output to be confusing because it is difficult to separate the IPv6
address from a port specification.

* Use pj_sockaddr_print() along with pjsip_tx_data.tp_info.dst_addr and
  pjsip_rx_data.pkt_info.src_addr where possible for consistent IPv6
  output.

* When a pj_sockaddr is not available, explicitly wrap IPv6 addresses
  in brackets.

* When assigning pjsip_rx_data.pkt_info.src_name ourselves, make sure
  to also set pjsip_rx_data.pkt_info.src_addr.

Change-Id: I5cfe997ced7883862a12b9c7d8551d76ae02fcf8

6 years agoCI: Use proper credentials for Security testsuite checkout
George Joseph [Fri, 14 Sep 2018 17:31:28 +0000 (11:31 -0600)] 
CI: Use proper credentials for Security testsuite checkout

Can't do anonymous http checkout from Security-testsuite.
Need to use same credentials as the gerrit review checkout.

Change-Id: I87af68c995cb8926f5e87f9af245600d76984f05

6 years agoMerge "res_musiconhold.c: Restart MOH if previous hold just reached end-of-file"...
George Joseph [Fri, 14 Sep 2018 16:13:23 +0000 (11:13 -0500)] 
Merge "res_musiconhold.c: Restart MOH if previous hold just reached end-of-file" into 15

6 years agostasis_cache: Stop caching stasis subscription change messages
George Joseph [Thu, 13 Sep 2018 16:06:00 +0000 (10:06 -0600)] 
stasis_cache:  Stop caching stasis subscription change messages

Since app_voicemail no longer uses the cache to maintain its state
there is no longer a need to cache these messages.

ASTERISK-27121

Change-Id: I321c708505f5ad8d00e1b0afc4c27dc2ac12ecb4