]> git.ipfire.org Git - thirdparty/asterisk.git/log
thirdparty/asterisk.git
6 years agoCI: Add --test-timeout option to runTestsuite.sh 13.23
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 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 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 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 agoUpdate for 13.23.0-rc1 13.23.0-rc1
Kevin Harwell [Tue, 28 Aug 2018 19:07:13 +0000 (14:07 -0500)] 
Update for 13.23.0-rc1

6 years agoMerge "alembic: increase uri column size" into 13
George Joseph [Tue, 28 Aug 2018 14:16:39 +0000 (09:16 -0500)] 
Merge "alembic: increase uri column size" into 13

6 years agoMerge "res/res_rtp_asterisk: remove debug traces generated by an empty frame" into 13
George Joseph [Tue, 28 Aug 2018 14:15:21 +0000 (09:15 -0500)] 
Merge "res/res_rtp_asterisk: remove debug traces generated by an empty frame" into 13

6 years agoMerge "chan_sip: improved ip:port finding of peers for non-UDP transports." into 13
Jenkins2 [Mon, 27 Aug 2018 12:43:03 +0000 (07:43 -0500)] 
Merge "chan_sip: improved ip:port finding of peers for non-UDP transports." into 13

6 years agoMerge "sample_configs: noload res_hep.so by default" into 13
George Joseph [Mon, 27 Aug 2018 11:30:13 +0000 (06:30 -0500)] 
Merge "sample_configs: noload res_hep.so by default" into 13

6 years agoMerge "AMI: be less verbose when adding HTTP headers to AMI/HTTP messages." into 13
Joshua Colp [Fri, 24 Aug 2018 15:12:29 +0000 (10:12 -0500)] 
Merge "AMI: be less verbose when adding HTTP headers to AMI/HTTP messages." into 13

6 years agochan_sip: improved ip:port finding of peers for non-UDP transports.
Jaco Kroon [Mon, 13 Aug 2018 13:12:21 +0000 (15:12 +0200)] 
chan_sip: improved ip:port finding of peers for non-UDP transports.

Also remove function peer_ipcmp_cb since it's not used (according to
rmudgett).

Prior to b2c4e8660a9c89d07041271371151779b7ec75f6 (ASTERISK_27457)
insecure=port was the defacto standard.  That commit also prevented
insecure=port from being applied for sip/tcp or sip/tls.

Into consideration there are three sets of behaviour:

1.  "previous" - before the above commit.
2.  "current" - post above commit, pre this one.
3.  "new" - post this commit.

The problem that the above commit tried to address was guests over TCP.
It succeeded in doing that but broke transport!=udp with host!=dynamic.

This commit attempts to restore sane behaviour with respect to
transport!=udp for host!=dynamic whilst still retaining the guest users
over tcp.

It should be noted that when looking for a peer, two passes are made, the
first pass doesn't have SIP_INSECURE_PORT set for the searched-for peer,
thus looking for full matches (IP + Port), the second pass sets
SIP_INSECURE_PORT, thus expecting matches on IP only where the matched
peer allows for that (in the author's opinion:  UDP with insecure=port,
or any TCP based, non-dynamic host).

In previous behaviour there was special handling for transport=tcp|tls
whereby a peer would match during the first pass if the utilized
transport was TCP|TLS (and the peer allowed that specific transport).

This behaviour was wrong, or dubious at best.  Consider two dynamic tcp
peers, both registering from the same IP (NAT), in this case either peer
could match for connections from an IP.  It's also this behaviour that
prevented SIP guests over tcp.

The above referenced commit removed this behaviour, but kept applying
the SIP_INSECURE_PORT only to WS|WSS|UDP.  Since WS and WSS is also TCP
based, the logic here should fall into the TCP category.

This patch updates things such that the previously non-explicit (TCP
behaviour) transport test gets performed explicitly (ie, matched peer
must allow for the used transport), as well as the indeterministic
source-port nature of the TCP protocol is taken into account.  The new
match algorithm now looks like:

1.  As per previous behaviour, IP address is matched first.

2.  Explicit filter with respect to transport protocol, previous
    behaviour was semi-implied in the test for TCP pure IP match - this now
    made explicit.

3.  During first pass (without SIP_INSECURE_PORT), always match on port.

4.  If doing UDP, match if matched against peer also has
    SIP_INSECURE_PORT, else don't match.

5.  Match if not a dynamic host (for non-UDP protocols)

6.  Don't match if this is WS|WSS, or we can't trust the Contact address
    (presumably due to NAT)

7.  Match (we have a valid Contact thus if the IP matches we have no
    choice, this will likely only apply to non-NAT).

To logic-test this we need a few different scenarios.  Towards this end,
I work with a set number of peers defined in sip.conf:

[peer1]
host=1.1.1.1
transport=tcp

[peer2]
host=1.1.1.1
transport=udp

[peer3]
host=1.1.1.1
port=5061
insecure=port
transport=udp

[peer4]
host=1.1.1.2
transport=udp,tcp

[peer5]
host=dynamic
transport=udp,tcp

Test cases for UDP:

1 - incoming UDP request from 1.1.1.1:
  - previous:
    - pass 1:
      * peer1 or peer2 if from port 5060 (indeterminate, depends on peer
        ordering)
      * peer3 if from port 5061
      * peer5 if registered from 1.1.1.1 and source port matches
    - pass 2:
      * peer3
  - current: as per previous.
  - new:
    - pass 1:
      * peer2 if from port 5060
      * peer3 if from port 5061
      * peer5 if registered from 1.1.1.1 and source port matches
    - pass 2:
      * peer3

2 - incoming UDP request from 1.1.1.2:
  - previous:
    - pass 1:
      * peer5 if registered from 1.1.1.2 and port matches
      * peer4 if source port is 5060
    - pass 2:
      * no match (guest)
  - current: as previous.
  - new as previous (with the variation that if peer5 didn't have udp as
          allowed transport it would not match peer5 whereas previous
          and current code could).

3 - incoming UDP request from anywhere else:
  - previous:
    - pass 1:
      * peer5 if registered from that address and source port matches.
    - pass 2:
      * peer5 if insecure=port is additionally set.
      * no match (guest)
  - current - as per previous
  - new - as per previous

Test cases for TCP based transports:

4 - incoming TCP request from 1.1.1.1
  - previous:
    - pass 1 (indeterministic, depends on ordering of peers in memory):
      * peer1; or
      * peer5 if peer5 registered from 1.1.1.1 (irrespective of source port); or
      * peer2 if the source port happens to be 5060; or
      * peer3 if the source port happens to be 5061.
    - pass 2: cannot happen since pass 1 will always find a peer.
  - current:
    - pass 1:
      * peer1 or peer2 if from source port 5060
      * peer3 if from source port 5060
      * peer5 if registered as 1.1.1.1 and source port matches
    - pass 2:
      * no match (guest)
  - new:
    - pass 1:
      * peer 1 if from port 5060
      * peer 5 if registered and source port matches
    - pass 2:
      * peer 1

5 - incoming TCP request from 1.1.1.2
  - previous (indeterminate, depends on ordering):
    - pass 1:
      * peer4; or
      * peer5 if peer5 registered from 1.1.1.2
    - pass 2: cannot happen since pass 1 will always find a peer.
  - current:
    - pass 1:
      * peer4 if source port is 5060
      * peer5 if peer5 registered as 1.1.1.2 and source port matches
    - pass 2:
      * no match (guest).
  - new:
    - pass 1:
      * peer4 if source port is 5060
      * peer5 if peer5 registered as 1.1.1.2 and source port matches
    - pass 2:
      * peer4

6 - incoming TCP request from anywhere else:
  - previous:
    - pass 1:
      * peer5 if registered from that address
    - pass 2: cannot happen since pass 1 will always find a peer.
  - current:
    - pass 1:
      * peer5 if registered from that address and port matches.
    - pass 2:
      * no match (guest)
  - new: as per current.

It should be noted the test cases don't make explicit mention of TLS, WS
or WSS.  WS and WSS previously followed UDP semantics, they will now
enforce source port matching.  TLS follow TCP semantics.

The previous commit specifically tried to address test-case 6, but broke
test-cases 4 and 5 in the process.

ASTERISK-27881 #close

Change-Id: I61a9804e4feba9c7224c481f7a10bf7eb7c7f2a2

6 years agoAMI: be less verbose when adding HTTP headers to AMI/HTTP messages.
Jaco Kroon [Mon, 20 Aug 2018 12:23:38 +0000 (14:23 +0200)] 
AMI: be less verbose when adding HTTP headers to AMI/HTTP messages.

All HTTP/AMI message headers are being sent to the verbose channel.
There are multiple places this is happening.  Consolidate the loop into
a function.  Drop the debug/verbose message.

Convert to using ast_asprintf to perform the length calculation, memory
allocation and snprintf all in one step.

Change-Id: Ic45e673fde05bd544be95ad5cdbc69518207c1a1

6 years agosample_configs: noload res_hep.so by default
Matthew Fredrickson [Wed, 22 Aug 2018 15:50:55 +0000 (10:50 -0500)] 
sample_configs: noload res_hep.so by default

Change disables loading of res_hep.so in default installation.  Loading
res_hep has a performance impact whether it's used or not.  This disables
loading of it in sample config files.

Change-Id: I5ec150cf941634fabc72973e5bf1a965cb0ef9d0
(cherry picked from commit c8bacd45f17d2ae6f6d05c8cff538dd651f683a6)

6 years agoMerge "chan_sip: remove unnecessary ast_channel_unlock(peer) as RAII looks after...
Jenkins2 [Thu, 23 Aug 2018 13:06:25 +0000 (08:06 -0500)] 
Merge "chan_sip:  remove unnecessary ast_channel_unlock(peer) as RAII looks after it" into 13

6 years agoalembic: increase uri column size
Florian Floimair [Thu, 23 Aug 2018 11:57:31 +0000 (13:57 +0200)] 
alembic: increase uri column size

When mobile SIP clients register with Asterisk that use some sort of
push notifications, the URI can get quite lengthy due to the
additional push-service annotations (things like tokens, pn-type, etc.)
contained in it.

ASTERISK-28022 #close

Change-Id: I08e17b37af5a446c36cc7d1f903861f81fd41cca

6 years agoMerge "app_queue: Silence GCC 8 compiler warning" into 13
Joshua Colp [Wed, 22 Aug 2018 16:17:20 +0000 (11:17 -0500)] 
Merge "app_queue: Silence GCC 8 compiler warning" into 13

6 years agoapp_queue: Silence GCC 8 compiler warning
Sean Bright [Tue, 21 Aug 2018 18:50:33 +0000 (14:50 -0400)] 
app_queue: Silence GCC 8 compiler warning

I'm only seeing an error in 14+, so I assume it is due to different
compiler options:

app_queue.c: In function ‘handle_queue_add_member’:
app_queue.c:10234:19: error: ‘%d’ directive writing between 1 and 11
    bytes into a region of size 3 [-Werror=format-overflow=]
     sprintf(num, "%d", state);
                   ^~
app_queue.c:10234:18: note: directive argument in the range
    [-2147483648, 99]
     sprintf(num, "%d", state);
                  ^~~~

Compiler: gcc version 8.0.1 20180414 (experimental)
    [trunk revision 259383] (Ubuntu 8-20180414-1ubuntu2)

Change-Id: I18577590da46829c1ea7d8b82e41d69f105baa10

6 years agoMerge "pbx_dundi.c: Handle thread shutdown better." into 13
Joshua Colp [Tue, 21 Aug 2018 23:53:06 +0000 (18:53 -0500)] 
Merge "pbx_dundi.c: Handle thread shutdown better." into 13

6 years agochan_sip: remove unnecessary ast_channel_unlock(peer) as RAII looks after it
alecdavis [Tue, 21 Aug 2018 23:45:33 +0000 (11:45 +1200)] 
chan_sip:  remove unnecessary ast_channel_unlock(peer) as RAII looks after it

Otherwise console output

        (get_refer_info): mutex 'peer' freed more times than we've locked!
        (get_refer_info): Error releasing mutex: Operation not permitted

    or
        (get_refer_info): attempted unlock mutex 'peer' without owning it!
        (__ast_read): 'peer' was locked here.
        ...dump_backtrace

        (get_refer_info): Error releasing mutex: Operation not permitted
        (__ast_read): mutex 'chan' freed more times than we've locked!

ASTERISK-28011 #close

Change-Id: I6e45f2764ba4f3273a943300f91ac9b461ac2893

6 years agores/res_rtp_asterisk: remove debug traces generated by an empty frame
neutrino88 [Tue, 21 Aug 2018 12:59:08 +0000 (08:59 -0400)] 
res/res_rtp_asterisk: remove debug traces generated by an empty frame

The realtime text timer pops regularly and sends text frames even if
the buffer is empty. This causes a lot of unecessary debug logging.

* Made red_write() test if we need to send a frame before calling
ast_rtp_write()

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

Change-Id: Icf81310c3b8080b615a42060afc02ab41f9523dd

6 years agoMerge "AMI: Remove docs for nonexistent AMI ContactStatus event headers" into 13
Joshua Colp [Tue, 21 Aug 2018 13:07:28 +0000 (08:07 -0500)] 
Merge "AMI: Remove docs for nonexistent AMI ContactStatus event headers" into 13

6 years agoMerge "pbx_dundi.c: Misc memory management fixes when destroying peers" into 13
Joshua Colp [Tue, 21 Aug 2018 11:27:34 +0000 (06:27 -0500)] 
Merge "pbx_dundi.c: Misc memory management fixes when destroying peers" into 13

6 years agoMerge "pbx_dundi: Fix debug frame decode string." into 13
Joshua Colp [Tue, 21 Aug 2018 10:52:26 +0000 (05:52 -0500)] 
Merge "pbx_dundi: Fix debug frame decode string." into 13

6 years agoAMI: Remove docs for nonexistent AMI ContactStatus event headers
Richard Mudgett [Mon, 20 Aug 2018 16:23:21 +0000 (11:23 -0500)] 
AMI: Remove docs for nonexistent AMI ContactStatus event headers

Change-Id: I5736965c64c44338f7330e85a24bb46818607f19

6 years agoMerge "res_sorcery_realtime.c: Fix unqualified fetch warning." into 13
George Joseph [Mon, 20 Aug 2018 15:56:48 +0000 (10:56 -0500)] 
Merge "res_sorcery_realtime.c: Fix unqualified fetch warning." into 13

6 years agores_sorcery_realtime.c: Fix unqualified fetch warning.
Richard Mudgett [Thu, 9 Aug 2018 23:46:19 +0000 (18:46 -0500)] 
res_sorcery_realtime.c: Fix unqualified fetch warning.

The allow_unqualified_fetch option for the sorcery realtime backend
blocked actually fetching all rows when the option is set to warn.

* Made issue a warning and actually do the request when
allow_unqualified_fetch=warn is set.

Change-Id: I74456c80a03a62dce66fc3dc3cb0cf2351ac4312

6 years agopbx_dundi.c: Misc memory management fixes when destroying peers
Richard Mudgett [Thu, 16 Aug 2018 02:31:45 +0000 (21:31 -0500)] 
pbx_dundi.c: Misc memory management fixes when destroying peers

* In destroy_peer(), fixed memory leaks of lookup history strings and
qualify transactions when destroying peers.

* In destroy_peer(), fixed leaving the registerexpire scheduled callback
active when a peer is destroyed on a reload.  The reload marks and sweeps
peers so any peers not explicitly configured get destroyed.  Peers created
dynamically from the '*' peer will not exist until they re-register after
the reload.  These destroyed peers caused memory corruption when the
registerexpire timer expired.

* Made build_peer() not schedule any callbacks on the '*' peer
(empty_eid).  It is a special peer that is cloned to dynamically created
peers so it doesn't actually get involved in any message transactions.

* Made do_register_expire() remove the dundi/dpeers AstDB entry when a
peer registration expires.

* Fix deep_copy_peer() to not copy some things that cannot be copied to
the cloned peer structure.  Timers, message transactions, and lookup
history are specific to a peer instance.

* Made set_config() lock around processing the mappings configuration.

* Reordered unload_module() to handle load_module() declining the load due
to error.

Change-Id: Ib846b2b60d027f3a2c2b3b563d9a83a357dce1d6

6 years agopbx_dundi.c: Handle thread shutdown better.
Richard Mudgett [Thu, 16 Aug 2018 04:49:19 +0000 (23:49 -0500)] 
pbx_dundi.c: Handle thread shutdown better.

Change-Id: Id52f99bd6a948fe6dd82acc0a28b2447a224fe87

6 years agopbx_dundi: Fix debug frame decode string.
Richard Mudgett [Wed, 15 Aug 2018 23:14:52 +0000 (18:14 -0500)] 
pbx_dundi: Fix debug frame decode string.

* Fixed a typo in the name of the REGREQ frame decode string array.
* Fixed off by one range check indexing into the frame decode string
array.
* Removed some unneeded casts associated with the decode string array.

Change-Id: I77435e81cd284bab6209d545919bf236ad7933c2

6 years agopbx_dundi: Update sample config documentation.
Richard Mudgett [Thu, 16 Aug 2018 21:21:07 +0000 (16:21 -0500)] 
pbx_dundi: Update sample config documentation.

Change-Id: I33d0ad0611c2124ca3440f0f811fa0f45e4e2849

6 years agoMerge "CI: Disable res_odbc if REF_DEBUG is requested." into 13
Joshua Colp [Fri, 17 Aug 2018 11:16:14 +0000 (06:16 -0500)] 
Merge "CI: Disable res_odbc if REF_DEBUG is requested." into 13

6 years agoMerge "res_pjsip: Resolve transport management leak at shutdown." into 13
Joshua Colp [Fri, 17 Aug 2018 10:38:47 +0000 (05:38 -0500)] 
Merge "res_pjsip: Resolve transport management leak at shutdown." into 13

6 years agoCI: Final version of setting correct gerrit creds
George Joseph [Thu, 16 Aug 2018 18:28:03 +0000 (12:28 -0600)] 
CI:  Final version of setting correct gerrit creds

Change-Id: I7729ecceedceb12f52bf18dae259846aa1d993b3

6 years agoCI: Yet Another stab at creds
George Joseph [Thu, 16 Aug 2018 18:23:05 +0000 (12:23 -0600)] 
CI: Yet Another stab at creds

Change-Id: I768850780d39151c5dd8e2bb1a4b24776727958e

6 years agoCI: Another stab at creds
George Joseph [Thu, 16 Aug 2018 18:11:11 +0000 (12:11 -0600)] 
CI: Another stab at creds

Change-Id: I5b1dc3b354789e676c27a4e1fc42f5c3343cc994

6 years agoCI: Add https credentials to gerrit checkouts
George Joseph [Thu, 16 Aug 2018 17:08:21 +0000 (11:08 -0600)] 
CI:  Add https credentials to gerrit checkouts

If the review to be tested is in a project with restricted access,
we need to use the jenkins user's gerrit https credentials when we
do the checkout or the checkout will fail.

Change-Id: I9dc9994763c5ebfeb9f1cff60fb53f6902b7fd5f

6 years agoMerge "res/res_pjsip_sdp_rtp: put rtcp-mux in answer only if offered" into 13
George Joseph [Thu, 16 Aug 2018 14:46:00 +0000 (09:46 -0500)] 
Merge "res/res_pjsip_sdp_rtp:  put rtcp-mux in answer only if offered" into 13

6 years agores_pjsip: Resolve transport management leak at shutdown.
Corey Farrell [Wed, 15 Aug 2018 18:51:36 +0000 (14:51 -0400)] 
res_pjsip: Resolve transport management leak at shutdown.

Cleanup idle check scheduled events at shutdown.

Change-Id: I61bfbb56bac69fe840c3242927d31ff3593be461

6 years agoCI: Disable res_odbc if REF_DEBUG is requested.
Corey Farrell [Wed, 15 Aug 2018 16:44:03 +0000 (12:44 -0400)] 
CI: Disable res_odbc if REF_DEBUG is requested.

This is for 13/15 only, res_odbc never unloads so it is impossible to do
REF_DEBUG testing with that module.

Change-Id: I2c1e32b80564e8fb08b6b5900ede6b5d304ebd10

6 years agores_pjsip: Fix leak in pjsip_options.
Corey Farrell [Wed, 15 Aug 2018 16:12:49 +0000 (12:12 -0400)] 
res_pjsip: Fix leak in pjsip_options.

sip_options_get_endpoint_state_compositor_state leaked a reference to
the first available endpoint state compositor that was found.

Change-Id: Idb6be19f7219b6eed1dfb19c1e740dd40cb3fdc7

6 years agoMerge "res_pjsip_caller_id: Add "party" parameter to RPID header." into 13
George Joseph [Wed, 15 Aug 2018 13:29:04 +0000 (08:29 -0500)] 
Merge "res_pjsip_caller_id: Add "party" parameter to RPID header." into 13

6 years agocontrib/scripts: Make astgenkey executable
Richard Mudgett [Tue, 14 Aug 2018 16:55:42 +0000 (11:55 -0500)] 
contrib/scripts: Make astgenkey executable

Change-Id: I11641d65592536dea9cbca5aa94a24c25d24dd5f

6 years agores_pjsip_caller_id: Add "party" parameter to RPID header.
Joshua Colp [Tue, 14 Aug 2018 12:29:18 +0000 (09:29 -0300)] 
res_pjsip_caller_id: Add "party" parameter to RPID header.

This change adds the "party" parameter to the Remote-Party-ID header
which indicates which party the header information is applicable
to. In Asterisk this is determined on whether we are the calling
or called party. This is added to improve interoperability with some
implementations.

ASTERISK-28006

Change-Id: I1eec3e377ffff8633b5c1dd59a05e9533122cfca

6 years agoMerge "CI: Add support for coverage processing." into 13
George Joseph [Tue, 14 Aug 2018 12:35:55 +0000 (07:35 -0500)] 
Merge "CI: Add support for coverage processing." into 13

6 years agoapp_queue: set QUEUESTATUS to LEAVEEMPTY instead of CONTINUE
Ivan Poddubny [Sun, 12 Aug 2018 16:04:42 +0000 (18:04 +0200)] 
app_queue: set QUEUESTATUS to LEAVEEMPTY instead of CONTINUE

When a call leaves a queue on leaveempty condition, QUEUESTATUS
must be set to LEAVEEMPTY, no matter whether Queue was executed with or
without the "c" (continue) option.

The regression was introduced in the fix for ASTERISK_25665.
The following fix (ASTERISK_27065) was incomplete, as QUEUESTATUS was
overwritten in case when "c" is set, regardless of what was the cause
for leaving the queue.

ASTERISK-27973 #close
Reported-by: Valentin Safonov
Change-Id: Iec013fe6a26a4e825ca572a1dda4f3cee5f6f80c

6 years agoSample configs: Fix pjsip.conf syntax error.
Corey Farrell [Thu, 9 Aug 2018 20:25:41 +0000 (16:25 -0400)] 
Sample configs: Fix pjsip.conf syntax error.

It is valid for a config file to be empty or contain only comments, but
not valid for a config value to be set when no uncommented context
exists.  This caused an error to be loged numerous times during start
when loading the default pjsip.conf.

Change-Id: Icf3b0d69b4ecb6e935eecd43c99ed8b32a5a1cf6

6 years agores/res_pjsip_sdp_rtp: put rtcp-mux in answer only if offered
Torrey Searle [Thu, 9 Aug 2018 07:34:17 +0000 (09:34 +0200)] 
res/res_pjsip_sdp_rtp:  put rtcp-mux in answer only if offered

If in the initial sdp the caller doesn't include the line
a=rtcp-mux

Then asterisk shoud not include rtcp-mux in the response regardless
of rtcp-mux being enabled on the endpoint

ASTERISK-28007 #close

Change-Id: I58e9b9f40a139afc0da5de41906cc608fb62adc7

6 years agoMerge "res_pjsip_registrar: Improve performance on inbound handling." into 13
Joshua Colp [Wed, 8 Aug 2018 17:10:56 +0000 (12:10 -0500)] 
Merge "res_pjsip_registrar: Improve performance on inbound handling." into 13

6 years agoCI: Add support for coverage processing.
Corey Farrell [Fri, 20 Jul 2018 03:28:14 +0000 (23:28 -0400)] 
CI: Add support for coverage processing.

Enable coverage with `./tests/CI/buildAsterisk.sh --coverage`.  This
will cause Asterisk to be compiled with coverage support.  It also
initializes 'before' coverage data for all sources.  Accept
--tested-only to disable modules which are not run by any test.
Enabling coverage also sets tested-only true by default.  To build
everything with coverage enabled use `--coverage --tested-only=0`.

./tests/CI/processCoverage.sh is used to process the coverage and
generate HTML reports.

Fix utils/check_expr2 which failed to compiled with coverage enabled.

Add status output 5 times per stage of astobj2_test_perf to ensure
remote CLI does not timeout when compiled with coverage.  Remote CLI
disconnects if no output is received for 60 seconds.  When coverage is
enabled it takes about 70 seconds for my laptop to run the stages of
this test, so with the change a message is printed every 14 seconds.

Change-Id: I890f7d5665087426ad7d3e363187691b9afc2222

6 years agoMerge "stasis: Reduce calculation of stasis message type hash." into 13
Joshua Colp [Wed, 8 Aug 2018 11:04:14 +0000 (06:04 -0500)] 
Merge "stasis: Reduce calculation of stasis message type hash." into 13

6 years agoMerge "res_pjsip: Make pjlib.h consistently included." into 13
Joshua Colp [Wed, 8 Aug 2018 10:56:48 +0000 (05:56 -0500)] 
Merge "res_pjsip: Make pjlib.h consistently included." into 13

6 years agoMerge "res_pjsip.h: Fix doxygen comments." into 13
Joshua Colp [Wed, 8 Aug 2018 10:37:20 +0000 (05:37 -0500)] 
Merge "res_pjsip.h: Fix doxygen comments." into 13

6 years agoMerge "pjproject_bundled: Fix for Solaris builds. Do not undef s_addr." into 13
Joshua Colp [Wed, 8 Aug 2018 10:02:10 +0000 (05:02 -0500)] 
Merge "pjproject_bundled: Fix for Solaris builds. Do not undef s_addr." into 13

6 years agores_pjsip.h: Fix doxygen comments.
Richard Mudgett [Mon, 6 Aug 2018 17:19:12 +0000 (12:19 -0500)] 
res_pjsip.h: Fix doxygen comments.

Change-Id: I9cf97bdc756012d1f552ab007f4aa85e0ddb4e62

7 years agostasis: Reduce calculation of stasis message type hash.
Joshua Colp [Mon, 6 Aug 2018 11:36:22 +0000 (08:36 -0300)] 
stasis: Reduce calculation of stasis message type hash.

When the stasis cache is used a hash is calculated for
retrieving or inserting messages. This change calculates
a hash when the message type is initialized that is then
used each time needed. This ensures that the hash is
calculated only once for the message type.

Change-Id: I4fe6bfdafb55bf5c322dd313fbd8c32cce73ef37

7 years agoMerge "dialplan_functions: wrong srtp use status report of a dialplan function" into 13
Joshua Colp [Mon, 6 Aug 2018 13:34:12 +0000 (08:34 -0500)] 
Merge "dialplan_functions: wrong srtp use status report of a dialplan function" into 13

7 years agoMerge "pjproject_bundled: Find shared libraries in root --with-ssl=PATH." into 13
Joshua Colp [Mon, 6 Aug 2018 10:28:59 +0000 (05:28 -0500)] 
Merge "pjproject_bundled: Find shared libraries in root --with-ssl=PATH." into 13

7 years agopjproject_bundled: Fix for Solaris builds. Do not undef s_addr.
Alexander Traud [Mon, 30 Jul 2018 12:49:08 +0000 (14:49 +0200)] 
pjproject_bundled: Fix for Solaris builds. Do not undef s_addr.

The authors of PJProject undef s_addr because of some issue in Microsoft
Windows. However in Oracle Solaris, s_addr is not a structure member, but
defined to map to the real structure member.

Updates the patch from ASTERISK_20366

ASTERISK-27997

Change-Id: I8223026d4d54e2a46521085fcc94bfa6ebe35b11

7 years agores_pjsip: Make pjlib.h consistently included.
Richard Mudgett [Fri, 3 Aug 2018 20:59:06 +0000 (15:59 -0500)] 
res_pjsip: Make pjlib.h consistently included.

* Don't include pjlib.h twice in res_pjsip.h
* Consistently use #include <> form for pjproject includes.
(pjsip.h and pjlib.h)

Change-Id: I3f7b42044840de64edf7e9d7695cb60c45990dc7

7 years agoMerge "BuildSystem: Enable ncurses for menuselect in Solaris 11." into 13
Kevin Harwell [Fri, 3 Aug 2018 18:28:34 +0000 (13:28 -0500)] 
Merge "BuildSystem: Enable ncurses for menuselect in Solaris 11." into 13

7 years agoMerge "pjsip_wizard.conf.sample: Update remote_hosts description." into 13
Kevin Harwell [Fri, 3 Aug 2018 18:27:36 +0000 (13:27 -0500)] 
Merge "pjsip_wizard.conf.sample: Update remote_hosts description." into 13

7 years agoMerge "res_pjsip_endpoint_identifier_ip.c: Added regex support to match_header" into 13
Kevin Harwell [Fri, 3 Aug 2018 18:26:00 +0000 (13:26 -0500)] 
Merge "res_pjsip_endpoint_identifier_ip.c: Added regex support to match_header" into 13

7 years agopjproject_bundled: Find shared libraries in root --with-ssl=PATH.
Alexander Traud [Mon, 30 Jul 2018 11:05:34 +0000 (13:05 +0200)] 
pjproject_bundled: Find shared libraries in root --with-ssl=PATH.

The script configure from Teluu expects shared libraries (.so) in a subfolder
called 'lib', when --with-xyz=PATH is specified. However for OpenSSL, the
default location is the root of the source folder = PATH. Furthermore, Asterisk
supports both, 'lib' and root. For consistency and because Asterisk is using
(only) OpenSSL in PJProject, it is enhanced to support both locations, just
like Asterisk.

ASTERISK-27995

Change-Id: I8eb916a88b6b8c22e29bb40bee8faaca6c73406f

7 years agores_pjsip_registrar: Improve performance on inbound handling.
Joshua Colp [Wed, 1 Aug 2018 14:45:04 +0000 (14:45 +0000)] 
res_pjsip_registrar: Improve performance on inbound handling.

This change removes a sorcery lookup for retrieving all
contacts at the end of the registration process by keeping
track of the contacts that are added/updated/deleted.

This ensures at the end of the process the container of
contacts we have is the current state.

Pool usage has also been reduced by allocating one for
usage throughout the handling of a REGISTER and resetting
it to a clean state. This ensures that in most cases
we allocate once and just reuse it.

ASTERISK-28001

Change-Id: I1a78b2d46f9a2045dbbff1a3fd6dba84b612b3cb

7 years agodialplan_functions: wrong srtp use status report of a dialplan function
Salah Ahmed [Thu, 2 Aug 2018 19:37:16 +0000 (14:37 -0500)] 
dialplan_functions: wrong srtp use status report of a dialplan function

If asterisk offer an endpoint with SRTP and that endpoint respond
with non srtp, in that case channel(rtp,secure,audio) reply wrong
status.

Why delete flag AST_SRTP_CRYPTO_OFFER_OK while check identical remote_key:
Currently this flag has being set redundantly. In either case identical
or different remote_key this flag has being set. So if we
don't set it while we receive identical remote_key or non SRTP SDP
response then we can take decision of srtp use by using that flag.

ASTERISK-27999

Change-Id: I29dc2843cf4e5ae2604301cb4ff258f1822dc2d7

7 years agoMerge "thirdparty/pjproject: fix deadlock in response retransmissions" into 13
Joshua Colp [Thu, 2 Aug 2018 11:53:53 +0000 (06:53 -0500)] 
Merge "thirdparty/pjproject: fix deadlock in response retransmissions" into 13

7 years agoMerge "BuildSystem: Enable Jansson in Solaris 11." into 13
Jenkins2 [Thu, 2 Aug 2018 10:12:51 +0000 (05:12 -0500)] 
Merge "BuildSystem: Enable Jansson in Solaris 11." into 13

7 years agothirdparty/pjproject: fix deadlock in response retransmissions
Torrey Searle [Tue, 17 Jul 2018 12:13:43 +0000 (14:13 +0200)] 
thirdparty/pjproject: fix deadlock in response retransmissions

The tdata containing the response can be shared by both the dialog
object and the tsx object.  In order to prevent the race condition
between the tsx retransmission and the dialog sending a response,
clone the tdata before modifying it for the dialog send response.

ASTERISK-27966 #close

Change-Id: Ic381004a3a212fe1d8eca0e707fe09dba4a6ab4e

7 years agoMerge "res_rtp_asterisk: In Developer Mode, do not require OpenSSL." into 13
Joshua Colp [Wed, 1 Aug 2018 09:23:23 +0000 (04:23 -0500)] 
Merge "res_rtp_asterisk: In Developer Mode, do not require OpenSSL." into 13

7 years agoMerge "res_pjsip_pubsub: Use ast_true for "prune_on_boot"." into 13
Joshua Colp [Tue, 31 Jul 2018 21:10:57 +0000 (16:10 -0500)] 
Merge "res_pjsip_pubsub: Use ast_true for "prune_on_boot"." into 13

7 years agopjsip_wizard.conf.sample: Update remote_hosts description.
Richard Mudgett [Tue, 31 Jul 2018 16:24:08 +0000 (11:24 -0500)] 
pjsip_wizard.conf.sample: Update remote_hosts description.

Remove the note that SRV records are not supported as that is no longer
true.

ASTERISK-27993

Change-Id: Id0dd6ef40e52702be9727a2b6122216cb00bb4ca

7 years agoCI: Add optional uninstall step before installing asterisk
George Joseph [Fri, 27 Jul 2018 18:23:02 +0000 (12:23 -0600)] 
CI: Add optional uninstall step before installing asterisk

Change-Id: I7dedf1e925eafc3a0adf01dd9dfbe44eb642aab7

7 years agoBuildSystem: Enable ncurses for menuselect in Solaris 11.
Alexander Traud [Sat, 28 Jul 2018 16:49:17 +0000 (18:49 +0200)] 
BuildSystem: Enable ncurses for menuselect in Solaris 11.

The check for the library ncurses should use not use the header <curses.h> but
<ncurses.h>, because on some platforms <curses.h> is not a drop-in replacement
for <ncurses.h>: For example in Solaris, the symbol initscr is a typedef in
<curses.h> to a symbol which does not exist in the library ncurses (initscr32).
Simply use <ncurses.h> when you link to ncurses.

Furthermore in Solaris, the header <ncurses.h> is in a subdirectory
/usr/include/ncurses and not available via pkg-config.

ASTERISK-15331
ASTERISK-14935
ASTERISK-12382
ASTERISK-9107

Change-Id: Ife367776b0ccf17d3fefed868245376bfb93745d

7 years agoBuildSystem: Enable Jansson in Solaris 11.
Alexander Traud [Sat, 28 Jul 2018 13:08:40 +0000 (15:08 +0200)] 
BuildSystem: Enable Jansson in Solaris 11.

In Solaris, the header <jansson.h> is in /usr/include/jansson. To find
Jansson even in such a subdirectory, the tool pkg-config is queried via
AST_PKG_CONFIG_CHECK. For those platforms, which do not list Jansson via
pkg-config, the previous check remains and is executed thereafter.

Because the check for the NetBSD Editline library uses the tool pkg-config
conditionally PKG_PROG_PKG_CONFIG must be used. Because that check happens
earlier than Jansson, it must be placed in front of that.

The script configure does some pre-checks for the script configure of the
Asterisk internal NetBSD Editline library. The check for the library ncurses
should use not use the header <curses.h> but <ncurses.h>, because on some
platforms <curses.h> is not a drop-in replacement for <ncurses.h>: For example
in Solaris, the symbol initscr is a typedef in <curses.h> to a symbol which
does not exist in the library ncurses (initscr32). Simply use <ncurses.h> when
you link to ncurses.

ASTERISK-27991

Change-Id: I69ea0f379f87a50049654b2487c76ee1c04fa53a

7 years agores_pjsip_pubsub: Use ast_true for "prune_on_boot".
Joshua Colp [Sat, 28 Jul 2018 13:00:40 +0000 (13:00 +0000)] 
res_pjsip_pubsub: Use ast_true for "prune_on_boot".

Change-Id: Iedec4e7390b3e821987681da24d0298632b9873d

7 years agores_pjsip_endpoint_identifier_ip.c: Added regex support to match_header
Richard Mudgett [Tue, 24 Jul 2018 18:44:41 +0000 (13:44 -0500)] 
res_pjsip_endpoint_identifier_ip.c: Added regex support to match_header

This patch adds regular expression support to make the identify section's
match_header option more useful when attempting to match complex headers
like the 'To' or 'From' headers.  The 'From' header has variable
components such as the tag parameter that you cannot predict.  To specify
a regular expression put slashes around the regular expression in place of
the header value.

[identify-alice]
type=identify
endpoint=alice
match_header=From: /<sip:alice@127\\.0\\.0\\.1>/

* Added regex support to match_header so you could match a 'To' header
among other complex headers.

Fixed reported crashes when trying to match special headers like 'Contact'.
The identify section's match_header method used code that assumed you were
matching a generic header.  Any other type of header could cause a crash
if the header structure variant did not match the generic header enough.

* Made use code that will work for any header type instead of code
specific to generic headers.

Other fixes while in the area:

* Made check all headers of the requested name.
* Added some more sanity checks to the configured identify matching
options when applying the configuration.

ASTERISK-27548

Change-Id: I27dfd4ff5e2259b906640e3c330681b76b4ed1f1

7 years agores_pjsip_pubsub: Treat "prune_on_boot" as a yes / no.
Joshua Colp [Fri, 27 Jul 2018 15:46:12 +0000 (15:46 +0000)] 
res_pjsip_pubsub: Treat "prune_on_boot" as a yes / no.

The alembic for the PJSIP subscription persistence table has the
"prune_on_boot" field as a boolean. While in Asterisk we are
tolerant of many different definitions of true and false in the
database we only accept "yes" and "no". This change makes the
field treated as a yes/no instead of an integer, thus storing
"yes" and "no" instead of "1" and "0".

Change-Id: Ic8b9211b36babefe78f70def6828a135a6ae7ab6

7 years agores_rtp_asterisk: In Developer Mode, do not require OpenSSL.
Alexander Traud [Fri, 27 Jul 2018 13:54:11 +0000 (15:54 +0200)] 
res_rtp_asterisk: In Developer Mode, do not require OpenSSL.

OpenSSL is an optional external library and should stay optional even when
Developer Mode is configured.

ASTERISK-27990

Change-Id: Ia68a4cd5474b26d45e0f43b04032ad598022853b

7 years agoMerge "devicestate: Don't create topic when change isn't cached." into 13
Jenkins2 [Fri, 27 Jul 2018 11:09:18 +0000 (06:09 -0500)] 
Merge "devicestate: Don't create topic when change isn't cached." into 13

7 years agoMerge "Build System: Create 'make install-configs' target." into 13
Joshua Colp [Fri, 27 Jul 2018 10:51:51 +0000 (05:51 -0500)] 
Merge "Build System: Create 'make install-configs' target." into 13

7 years agoMerge "res_rtp_asterisk: Avoid merging command and regular T.140 text packets" into 13
Joshua Colp [Fri, 27 Jul 2018 10:35:08 +0000 (05:35 -0500)] 
Merge "res_rtp_asterisk: Avoid merging command and regular T.140 text packets" into 13

7 years agoCI: Fix placement of job summary statments
George Joseph [Thu, 26 Jul 2018 23:54:36 +0000 (17:54 -0600)] 
CI: Fix placement of job summary statments

Change-Id: Iace19e718f4e8fb48eb7dc9f98af53b115cc45f3

7 years agoCI: Add docker info to job summary
George Joseph [Thu, 26 Jul 2018 16:34:20 +0000 (10:34 -0600)] 
CI:  Add docker info to job summary

Change-Id: I45d52005a9b692ad303c11792f226ace1e449901

7 years agoBuild System: Create 'make install-configs' target.
Corey Farrell [Mon, 23 Jul 2018 18:49:33 +0000 (14:49 -0400)] 
Build System: Create 'make install-configs' target.

This target requires specifying CONFIG_SRC=path_to_configs.  This can be
used to install custom configs for the Asterisk build while still
performing directory replacements on asterisk.conf.

Modify internal INSTALL_CONFIGS so first argument requires full path to
the config sources relative to Asterisk source root.

Change-Id: Idcd841df3c8d5bfe23d566bb9e2e448e9df4f8ab

7 years agojson.c: improve ast_json_to_ast_variables performance
Kevin Harwell [Wed, 25 Jul 2018 20:33:22 +0000 (15:33 -0500)] 
json.c: improve ast_json_to_ast_variables performance

When converting from a json object to an ast variables list the conversion
algorithm was doing a complete traversal of the entire variables list for
every item appended from the json structure.

This patch makes it so the list is no longer traversed for each new ast
variable being appended.

Change-Id: I8bf496a1fc449485150d6db36bfc0354934a3977

7 years agodevicestate: Don't create topic when change isn't cached.
Joshua Colp [Wed, 25 Jul 2018 10:32:31 +0000 (10:32 +0000)] 
devicestate: Don't create topic when change isn't cached.

When publishing a device state the change can be marked as being
cachable or not. If it is not cached the change is just published
to all interested and not stored away for later query. This was not
fully taken into account when publishing in stasis. The act of
publishing would create a topic for the device even if it may be
ephemeral.

This change makes it so messages which are not cached won't create
a topic for the device. If a topic does already exist it will be
published to but otherwise the change will only be published to
the device state all topic.

ASTERISK-27591

Change-Id: I18da0e8cbb18e79602e731020c46ba4101e59f0a

7 years agoMerge "Build System: Silence build of bundled jansson." into 13
George Joseph [Wed, 25 Jul 2018 18:59:50 +0000 (13:59 -0500)] 
Merge "Build System: Silence build of bundled jansson." into 13

7 years agoMerge "res_pjsip: Change log message from error to warning for valid use cases" into 13
Joshua Colp [Wed, 25 Jul 2018 18:59:04 +0000 (13:59 -0500)] 
Merge "res_pjsip: Change log message from error to warning for valid use cases" into 13

7 years agoMerge "CI: Explicitly pass BRANCH_NAME to buildAsterisk and installAsterisk" into 13
Jenkins2 [Wed, 25 Jul 2018 17:48:51 +0000 (12:48 -0500)] 
Merge "CI: Explicitly pass BRANCH_NAME to buildAsterisk and installAsterisk" into 13

7 years agoMerge "CI: Add options to initialize and cleanup database to runTestsuite.sh" into 13
Jenkins2 [Wed, 25 Jul 2018 17:48:20 +0000 (12:48 -0500)] 
Merge "CI: Add options to initialize and cleanup database to runTestsuite.sh" into 13

7 years agoCI: Explicitly pass BRANCH_NAME to buildAsterisk and installAsterisk
George Joseph [Wed, 25 Jul 2018 15:20:20 +0000 (09:20 -0600)] 
CI: Explicitly pass BRANCH_NAME to buildAsterisk and installAsterisk

Change-Id: I652f4a0ea5107c778e27a78bccb67b18b0c4e087

7 years agoCI: Add options to initialize and cleanup database to runTestsuite.sh
George Joseph [Tue, 24 Jul 2018 18:29:19 +0000 (12:29 -0600)] 
CI: Add options to initialize and cleanup database to runTestsuite.sh

Change-Id: I352333233bab5377723bf37d490ba84fc55bc853

7 years agoCI: Do not `mkdir 2`.
Corey Farrell [Wed, 25 Jul 2018 14:07:51 +0000 (10:07 -0400)] 
CI: Do not `mkdir 2`.

Change-Id: Ib7377d26a6c98b38bad463f47c84f1875ac84eb7

7 years agoBuild System: Silence build of bundled jansson.
Corey Farrell [Wed, 25 Jul 2018 12:34:54 +0000 (08:34 -0400)] 
Build System: Silence build of bundled jansson.

Change-Id: I7392c79c0173057f5378010bf1fe65e300e8fc56

7 years agoCI: RefDebug: Fix reference to testsuite URL
George Joseph [Wed, 25 Jul 2018 12:13:43 +0000 (06:13 -0600)] 
CI: RefDebug: Fix reference to testsuite URL

Change-Id: I0ee41d95a87f0d97b01f2757012b846bcfe6443d

7 years agoBuild System: Fix bundled jansson install.
Corey Farrell [Tue, 24 Jul 2018 19:28:04 +0000 (15:28 -0400)] 
Build System: Fix bundled jansson install.

Update the bundled jansson Makefile to do nothing during Asterisk
install, use a target that is not phony to initiate the jansson make and
install.

Change-Id: I7643cc3d39af9feba8fc0da676b646efc5f8b3bb

7 years agoMerge "Enable bundling of jansson." into 13
Jenkins2 [Tue, 24 Jul 2018 15:06:51 +0000 (10:06 -0500)] 
Merge "Enable bundling of jansson." into 13

7 years agoMerge "res_pjsip: Update default keepalive interval to 90 seconds." into 13
George Joseph [Tue, 24 Jul 2018 13:30:46 +0000 (08:30 -0500)] 
Merge "res_pjsip: Update default keepalive interval to 90 seconds." into 13

7 years agores_pjsip: Change log message from error to warning for valid use cases
Florian Floimair [Tue, 24 Jul 2018 09:57:25 +0000 (11:57 +0200)] 
res_pjsip: Change log message from error to warning for valid use cases

If a SIP MESSAGE is triggered for an endpoint that is currently not registered
- and therefore has no valid contact associated - an error message was logged.
Since this is a valid request in a valid use cases this is now changed to a
warning, as discussed with Matt Fredrickson on the asterisk-dev mailing list.

Change-Id: I55eb62d2712818a58c7532119dec288bd98cf0c0

7 years agoMerge "CI: Add --privileged flag to docker options" into 13
Jenkins2 [Tue, 24 Jul 2018 11:03:05 +0000 (06:03 -0500)] 
Merge "CI:  Add --privileged flag to docker options" into 13