]> git.ipfire.org Git - thirdparty/asterisk.git/log
thirdparty/asterisk.git
6 years agoAST-2018-009: Fix crash processing websocket HTTP Upgrade requests 14
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

7 years agotest.c: Make output jUnit compatible
George Joseph [Fri, 6 Jul 2018 14:04:56 +0000 (08:04 -0600)] 
test.c:  Make output jUnit compatible

Separate "name" into "classname" and "name".
Use '.' for classname separator instead of '/'.
Prefix reserved words with '_'.
Wrap output with a top-level "testsuites" element.

Change-Id: Iec1a985eba1c478e5c1d65d5dfd95cb708442099

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 agoMerge "AST-2018-003: Crash with an invalid SDP fmtp attribute" into 14
Kevin Harwell [Wed, 21 Feb 2018 18:12:14 +0000 (12:12 -0600)] 
Merge "AST-2018-003: Crash with an invalid SDP fmtp attribute" into 14

7 years agoMerge "AST-2018-002: Crash with an invalid SDP media format description" into 14
Kevin Harwell [Wed, 21 Feb 2018 18:08:28 +0000 (12:08 -0600)] 
Merge "AST-2018-002: Crash with an invalid SDP media format description" into 14

7 years agoMerge "AST-2018-005: res_pjsip_transport_management: Move to core" into 14
George Joseph [Wed, 21 Feb 2018 16:40:50 +0000 (10:40 -0600)] 
Merge "AST-2018-005: res_pjsip_transport_management:  Move to core" into 14

7 years agoMerge "AST-2018-005: Fix tdata leaks when calling pjsip_endpt_send_response(2)" into 14
George Joseph [Wed, 21 Feb 2018 16:40:40 +0000 (10:40 -0600)] 
Merge "AST-2018-005: Fix tdata leaks when calling pjsip_endpt_send_response(2)" into 14

7 years agoMerge "AST-2018-005: Add a check for NULL tdata in ast_sip_failover_request" into 14
George Joseph [Wed, 21 Feb 2018 16:40:31 +0000 (10:40 -0600)] 
Merge "AST-2018-005: Add a check for NULL tdata in ast_sip_failover_request" into 14

7 years agoAST-2018-003: Crash with an invalid SDP fmtp attribute
Kevin Harwell [Wed, 31 Jan 2018 19:37:54 +0000 (13:37 -0600)] 
AST-2018-003: Crash with an invalid SDP fmtp attribute

pjproject's fmtp retrieval function failed to catch invalid fmtp attributes.
Because of this Asterisk would crash if given an SDP with an invalid fmtp
attribute.

When retrieving the format this patch now makes sure the fmtp attribute is
available. If not available it now returns an error status.

ASTERISK-27583 #close

Change-Id: I5cebe000ce2d846cae3af33b6d72c416e51caf2f

7 years agoAST-2018-002: Crash with an invalid SDP media format description
Kevin Harwell [Wed, 31 Jan 2018 19:33:16 +0000 (13:33 -0600)] 
AST-2018-002: Crash with an invalid SDP media format description

pjproject's media format parsing algorithm failed to catch invalid values.
Because of this Asterisk would crash if given an SDP with a invalid media
format description.

When parsing the media format description this patch now properly parses the
value and returns an error status if it can't successfully parse/convert the
value.

ASTERISK-27582 #close

Change-Id: I883b3a4ef85b6972397f7b56bf46c5779c55fdd6

7 years agoAST-2018-005: res_pjsip_transport_management: Move to core
George Joseph [Tue, 6 Feb 2018 18:07:18 +0000 (11:07 -0700)] 
AST-2018-005: res_pjsip_transport_management:  Move to core

Since res_pjsip_transport_management provides several attack
mitigation features, its functionality moved to res_pjsip and
this module has been removed.  This way the features will always
be available if res_pjsip is loaded.

ASTERISK-27618
Reported By: Sandro Gauci

Change-Id: I21a2d33d9dda001452ea040d350d7a075f9acf0d

7 years agoAST-2018-005: Fix tdata leaks when calling pjsip_endpt_send_response(2)
George Joseph [Tue, 6 Feb 2018 17:28:49 +0000 (10:28 -0700)] 
AST-2018-005: Fix tdata leaks when calling pjsip_endpt_send_response(2)

pjsip_distributor:
   authenticate() creates a tdata and uses it to send a challenge or
   failure response.  When pjsip_endpt_send_response2() succeeds, it
   automatically decrements the tdata ref count but when it fails, it
   doesn't.  Since we weren't checking for a return status, we weren't
   decrementing the count ourselves on error and were therefore leaking
   tdatas.

res_pjsip_session:
   session_reinvite_on_rx_request wasn't decrementing the ref count
   if an error happened while sending a 491 response.
   pre_session_setup wasn't decrementing the ref count if
   while sending an error after a pjsip_inv_verify_request failure.

res_pjsip:
   ast_sip_send_response wasn't decrementing the ref count on error.

ASTERISK-27618
Reported By: Sandro Gauci

Change-Id: Iab33a6c7b6fba96148ed465b690ba8534ac961bf

7 years agoAST-2018-005: Add a check for NULL tdata in ast_sip_failover_request
George Joseph [Tue, 6 Feb 2018 17:21:32 +0000 (10:21 -0700)] 
AST-2018-005: Add a check for NULL tdata in ast_sip_failover_request

It was discovered that there are some corner cases where a pjsip tsx
might have no last_tx so calling ast_sip_failover_request with
a NULL last_tx as its tdata would cause a crash.

ASTERISK-27618
Reported By:  Sandro Gauci

Change-Id: Ic2b63f6d4ae617c4c19dcdec2a7a6156b54fd15b

7 years agoAST-2018-004: Restrict the number of Accept headers in a SUBSCRIBE.
Joshua Colp [Wed, 7 Feb 2018 14:09:14 +0000 (14:09 +0000)] 
AST-2018-004: Restrict the number of Accept headers in a SUBSCRIBE.

When receiving a SUBSCRIBE request the Accept headers from it are
stored locally. This operation has a fixed limit of 32 Accept headers
but this limit was not enforced. As a result it was possible for
memory outside of the allocated space to get written to resulting
in a crash.

This change enforces the limit so only 32 Accept headers are
processed.

ASTERISK-27640
Reported By: Sandro Gauci

Change-Id: I99a814b10b554b13a6021ccf41111e5bc95e7301

7 years agoAST-2017-014: res_pjsip - Missing contact header can cause crash
Kevin Harwell [Wed, 20 Dec 2017 22:17:40 +0000 (16:17 -0600)] 
AST-2017-014: res_pjsip - Missing contact header can cause crash

Those SIP messages that create dialogs require a contact header to be present.
If the contact header was missing from the message it could cause Asterisk to
crash.

This patch checks to make sure SIP messages that create a dialog contain the
contact header. If the message does not and it is required Asterisk now returns
a "400 Missing Contact header" response. Also added NULL checks when retrieving
the contact header that were missing as a "just in case".

ASTERISK-27480 #close

Change-Id: I1810db87683fc637a9e3e1384a746037fec20afe

7 years agoAST-2017-012: Place single RTCP report block at beginning of report.
Joshua Colp [Thu, 30 Nov 2017 16:12:55 +0000 (16:12 +0000)] 
AST-2017-012: Place single RTCP report block at beginning of report.

When the RTCP code was transitioned over to Stasis a code change
was made to keep track of how many reports are present. This count
controlled where report blocks were placed in the RTCP report.

If a compound RTCP packet was received this logic would incorrectly
place a report block in the wrong location resulting in a write
to an invalid location.

This change removes this counting logic and always places the report
block at the first position. If in the future multiple reports are
supported the logic can be extended but for now keeping a count
serves no purpose.

ASTERISK-27382
ASTERISK-27429

Change-Id: Iad6c8a9985c4b608ef493e19c421211615485116

7 years agoAST-2017-013: chan_skinny: Call pthread_detach when sess threads end
George Joseph [Thu, 30 Nov 2017 20:38:50 +0000 (13:38 -0700)] 
AST-2017-013: chan_skinny: Call pthread_detach when sess threads end

chan_skinny creates a new thread for each new session.  In trying
to be a good cleanup citizen, the threads are joinable and the
unload_module function does a pthread_cancel() and a pthread_join()
on any sessions that are active at that time.  This has an
unintended side effect though. Since you can call pthread_join on a
thread that's already terminated, pthreads keeps the thread's
storage around until you explicitly call pthread_join (or
pthread_detach()).   Since only the module_unload function was
calling pthread_join, and even then only on the ones active at the
tme, the storage for every thread/session ever created sticks
around until asterisk exits.

* A thread can detach itself so the session_destroy() function
  now calls pthread_detach() just before it frees the session
  memory allocation.  The module_unload function still takes care
  of the ones that are still active should the module be unloaded.

ASTERISK-27452
Reported by: Juan Sacco

Change-Id: I9af7268eba14bf76960566f891320f97b974e6dd

7 years agoMerge "res_pjsip_registrar.c: Fix AOR and pjproject group deadlock." into 14
Kevin Harwell [Thu, 9 Nov 2017 17:49:04 +0000 (11:49 -0600)] 
Merge "res_pjsip_registrar.c: Fix AOR and pjproject group deadlock." into 14

7 years agoMerge "AST-2017-009: pjproject: Add validation of numeric header values" into 14
George Joseph [Wed, 8 Nov 2017 15:52:57 +0000 (09:52 -0600)] 
Merge "AST-2017-009: pjproject: Add validation of numeric header values" into 14

7 years agoMerge "AST-2017-011 - res_pjsip_session: session leak when a call is rejected" into 14
George Joseph [Wed, 8 Nov 2017 15:44:24 +0000 (09:44 -0600)] 
Merge "AST-2017-011 - res_pjsip_session: session leak when a call is rejected" into 14

7 years agoAST-2017-009: pjproject: Add validation of numeric header values
George Joseph [Thu, 19 Oct 2017 18:53:32 +0000 (12:53 -0600)] 
AST-2017-009: pjproject: Add validation of numeric header values

Parsing the numeric header fields like cseq, ttl, port, etc. all
had the potential to overflow, either causing unintended values to
be captured or, if the values were subsequently converted back to
strings, a buffer overrun.  To address this, new "strto" functions
have been created that do range checking and those functions are
used wherever possible in the parser.

 * Created pjlib/include/limits.h and pjlib/include/compat/limits.h
   to either include the system limits.h or define common numeric
   limits if there is no system limits.h.

 * Created strto*_validate functions in sip_parser that take bounds
   and on failure call the on_str_parse_error function which prints
   an error message and calls PJ_THROW.

 * Updated sip_parser to validate the numeric fields.

 * Fixed an issue in sip_transport that prevented error messages
   from being properly displayed.

 * Added "volatile" to some variables referenced in PJ_CATCH blocks
   as the optimizer was sometimes optimizing them away.

 * Fixed length calculation in sip_transaction/create_tsx_key_2543
   to account for signed ints being 11 characters, not 9.

ASTERISK-27319
Reported by: Youngsung Kim at LINE Corporation

Change-Id: I48de2e4ccf196990906304e8d7061f4ffdd772ff

7 years agoAST-2017-011 - res_pjsip_session: session leak when a call is rejected
Kevin Harwell [Thu, 19 Oct 2017 18:35:16 +0000 (13:35 -0500)] 
AST-2017-011 - res_pjsip_session: session leak when a call is rejected

A previous commit made it so when an invite session transitioned into a
disconnected state destruction of the Asterisk pjsip session object was
postponed until either a transport error occurred or the event timer
expired. However, if a call was rejected (for instance a 488) before the
session was fully established the event timer may not have been initiated,
or it was canceled without triggering either of the session finalizing states
mentioned above.

Really the only time destruction of the session should be delayed is when a
BYE is being transacted. This is because it's possible in some cases for the
session to be disconnected, but the BYE is still transacting.

This patch makes it so the session object always gets released (no more
memory leak) when the pjsip session is in a disconnected state. Except when
the method is a BYE. Then it waits until a transport error occurs or an event
timeout.

ASTERISK-27345 #close

Reported by: Corey Farrell

Change-Id: I1e724737b758c20ac76d19d3611e3d2876ae10ed

7 years agoAST-2017-010: Fix cdr_object_update_party_b_userfield_cb() buf overrun
Richard Mudgett [Tue, 3 Oct 2017 21:19:52 +0000 (16:19 -0500)] 
AST-2017-010: Fix cdr_object_update_party_b_userfield_cb() buf overrun

cdr_object_update_party_b_userfield_cb() could overrun the fixed buffer if
the supplied string is too long.  The long string could be supplied by
external means using the CDR(userfield) function.

This may seem reminiscent to AST-2017-001 (ASTERISK_26897) and it is.  The
earlier patch fixed the buffer overrun for Party A's userfield while this
patch fixes the same thing for Party B's userfield.

ASTERISK-27337

Change-Id: I0fa767f65ecec7e676ca465306ff9e0edbf3b652

7 years agores_pjsip_registrar.c: Fix AOR and pjproject group deadlock.
Richard Mudgett [Mon, 6 Nov 2017 22:37:49 +0000 (16:37 -0600)] 
res_pjsip_registrar.c: Fix AOR and pjproject group deadlock.

One of the patches for ASTERISK_27147 introduced a deadlock regression.
When the connection oriented transport shut down, the code attempted to
remove the associated contact.  However, that same transport had just
requested a registration that we hadn't responded to yet.  Depending
upon timing we could deadlock.

* Made send the REGISTER response after we completed processing the
request contacts and released the AOR lock to avoid the deadlock.

ASTERISK-27391

Change-Id: I89a90f87cb7a02facbafb44c75d8845f93417364

7 years agores_pjsip: Add to list of valid characters for from_user.
Ben Ford [Wed, 1 Nov 2017 16:12:45 +0000 (11:12 -0500)] 
res_pjsip: Add to list of valid characters for from_user.

Fixes a regression where some characters were unable to be used in
the from_user field of an endpoint. Additionally, the backtick was
removed from the list of valid characters, since it is not valid,
and it was replaced with a single quote, which is a valid character.

ASTERISK-27387

Change-Id: Id80c10a644508365c87b3182e99ea49da11b0281

7 years agoMerge "http.c: Fix http header send content." into 14
Joshua Colp [Wed, 25 Oct 2017 17:42:35 +0000 (12:42 -0500)] 
Merge "http.c: Fix http header send content." into 14

7 years agores_xmpp: Ensure the connection filter is available.
Joshua Colp [Sun, 22 Oct 2017 22:32:20 +0000 (19:32 -0300)] 
res_xmpp: Ensure the connection filter is available.

Users of the API that res_xmpp provides expect that a
filter be available on the client at all times. When
OAuth authentication support was added this requirement
was not maintained.

This change merely moves the OAuth authentication to
after the filter is created, ensuring users of res_xmpp
can add things to the filter as needed.

ASTERISK-27346

Change-Id: I4ac474afe220e833288ff574e32e2b9a23394886
(cherry picked from commit 07e17fd04ffcf204400898660a4c118666596d5d)

7 years agohttp.c: Fix http header send content.
Ben Ford [Mon, 23 Oct 2017 18:42:27 +0000 (13:42 -0500)] 
http.c: Fix http header send content.

Currently ast_http_send barricades a portion of the content that
needs to be sent in order to establish a connection for things
like the ARI client. The conditional and contents have been changed
to ensure that everything that needs to be sent, will be sent.

ASTERISK-27372

Change-Id: I8816d2d8f80f4fefc6dcae4b5fdfc97f1e46496d

7 years agoAMI: Increase version number
Kevin Harwell [Fri, 13 Oct 2017 17:15:40 +0000 (12:15 -0500)] 
AMI: Increase version number

Bump the AMI patch number since the following new addition was made:

* Added a new CancelAtxfer action that cancels an attended transfer.

Change-Id: I9bac528791bd62ef0e99243903b6bc7a6c7ab182

7 years agoMerge "features, manager : Add CancelAtxfer AMI action" into 14
Joshua Colp [Fri, 13 Oct 2017 12:51:05 +0000 (07:51 -0500)] 
Merge "features, manager : Add CancelAtxfer AMI action" into 14

7 years agoMerge "res_pjsip_session: Prevent user=phone being added to anonimized URIs." into 14
Joshua Colp [Thu, 12 Oct 2017 17:39:06 +0000 (12:39 -0500)] 
Merge "res_pjsip_session: Prevent user=phone being added to anonimized URIs." into 14

7 years agofeatures, manager : Add CancelAtxfer AMI action
Thomas Sevestre [Fri, 25 Aug 2017 13:19:00 +0000 (13:19 +0000)] 
features, manager : Add CancelAtxfer AMI action

Add action to cancel feature attended transfer with AMI interface

ASTERISK-27215 #close

Change-Id: Iab8a81362b5a1757e2608f70b014ef863200cb42

7 years agoMerge "sorcery: Use ao2_weakproxy to hold list of instances." into 14
Jenkins2 [Thu, 12 Oct 2017 16:15:33 +0000 (11:15 -0500)] 
Merge "sorcery: Use ao2_weakproxy to hold list of instances." into 14

7 years agores_pjsip_session: Prevent user=phone being added to anonimized URIs.
Daniel Tryba [Fri, 6 Oct 2017 09:55:38 +0000 (11:55 +0200)] 
res_pjsip_session: Prevent user=phone being added to anonimized URIs.

Move ast_sip_add_usereqphone to be called after anonymization of URIs,
to prevent the user_eq_phone adding "user=phone" to URIs containing a
username that is not a phonenumber (RFC3261 19.1.1). An extra call to
ast_sip_add_usereqphone on the saved version before anonymization is
added to add user=phone" to the PAI.

ASTERISK-27047 #close

Change-Id: Ie5644bc66341b86dc08b1f7442210de2e6acdec6

7 years agoMerge "named_locks: Use ao2_weakproxy_find." into 14
Jenkins2 [Thu, 12 Oct 2017 15:37:25 +0000 (10:37 -0500)] 
Merge "named_locks: Use ao2_weakproxy_find." into 14

7 years agoMerge "astobj2: Add ao2_weakproxy_find function." into 14
Joshua Colp [Thu, 12 Oct 2017 15:32:26 +0000 (10:32 -0500)] 
Merge "astobj2: Add ao2_weakproxy_find function." into 14

7 years agoMerge "astobj2: Run weakproxy callbacks outside of lock." into 14
Jenkins2 [Thu, 12 Oct 2017 14:16:29 +0000 (09:16 -0500)] 
Merge "astobj2: Run weakproxy callbacks outside of lock." into 14

7 years agoMerge "cdr.c: Defer misc checks." into 14
Jenkins2 [Thu, 12 Oct 2017 12:37:57 +0000 (07:37 -0500)] 
Merge "cdr.c: Defer misc checks." into 14

7 years agocdr_mysql: avoid releasing a config string
Tzafrir Cohen [Tue, 10 Oct 2017 14:49:15 +0000 (17:49 +0300)] 
cdr_mysql: avoid releasing a config string

Fixes a memory corruption issue after a reload of cdr_mysql.

Issue was accidentally included in 747beb1ed159f89a3b58742e4257740b3d6d6bba .

ASTERISK-27270 #close

Change-Id: I90b6a9d18710c0f9009466370bd5f4bac5d5d12e

7 years agoMerge "chan_vpb: Fix a gcc 7 out-of-bounds complaint" into 14
Jenkins2 [Wed, 11 Oct 2017 21:32:47 +0000 (16:32 -0500)] 
Merge "chan_vpb:  Fix a gcc 7 out-of-bounds complaint" into 14

7 years agoMerge "app_originate: Set ORIGINATE_STATUS correctly on failure" into 14
Jenkins2 [Wed, 11 Oct 2017 20:14:18 +0000 (15:14 -0500)] 
Merge "app_originate: Set ORIGINATE_STATUS correctly on failure" into 14

7 years agocdr.c: Defer misc checks.
Richard Mudgett [Thu, 5 Oct 2017 23:12:04 +0000 (18:12 -0500)] 
cdr.c: Defer misc checks.

Try to defer some checks until needed in case there is an early exit.

Change-Id: Ibc6b34c38a4f60ad4f9b67984b7d070a07257064

7 years agoMerge "cdr.c: Eliminated simple RAII_VAR usages." into 14
Jenkins2 [Wed, 11 Oct 2017 16:04:16 +0000 (11:04 -0500)] 
Merge "cdr.c: Eliminated simple RAII_VAR usages." into 14

7 years agochan_vpb: Fix a gcc 7 out-of-bounds complaint
George Joseph [Wed, 11 Oct 2017 12:03:41 +0000 (06:03 -0600)] 
chan_vpb:  Fix a gcc 7 out-of-bounds complaint

chan_vpb was trying to use sizeof(*p->play_dtmf), where
p->play_dtmf is defined as char[16], to get the length of the array
but since p->play_dtmf is an actual array, sizeof(*p->play_dtmf)
returns the size of the first array element, which is 1.  gcc7
validly complains because the context in which it's used could
cause an out-of-bounds condition.

Change-Id: If9c4bfdb6b02fa72d39e0c09bf88900663c000ba

7 years agosorcery: Use ao2_weakproxy to hold list of instances.
Corey Farrell [Tue, 10 Oct 2017 02:00:45 +0000 (22:00 -0400)] 
sorcery: Use ao2_weakproxy to hold list of instances.

Store weak proxy objects in instances container.

Change-Id: I5a150a4e13cee319d46b5a4654f95a4623a978f8

7 years agoMerge "res_pjsip_registrar.c: Update remove_existing AOR contact handling." into 14
Jenkins2 [Wed, 11 Oct 2017 11:44:15 +0000 (06:44 -0500)] 
Merge "res_pjsip_registrar.c: Update remove_existing AOR contact handling." into 14

7 years agonamed_locks: Use ao2_weakproxy_find.
Corey Farrell [Tue, 10 Oct 2017 02:55:44 +0000 (22:55 -0400)] 
named_locks: Use ao2_weakproxy_find.

Change-Id: I0ce8a1b7101b6caac6a19f83a89f00eaba1e9d9c

7 years agoastobj2: Add ao2_weakproxy_find function.
Corey Farrell [Mon, 9 Oct 2017 22:51:05 +0000 (18:51 -0400)] 
astobj2: Add ao2_weakproxy_find function.

This function finds a weak proxy in an ao2_container and returns the
real object associated with it.

Change-Id: I9da822049747275f5961b5c0a7f14e87157d65d8

7 years agoastobj2: Run weakproxy callbacks outside of lock.
Corey Farrell [Tue, 10 Oct 2017 20:09:14 +0000 (16:09 -0400)] 
astobj2: Run weakproxy callbacks outside of lock.

Copy the list of weakproxy callbacks to temporary memory so they can be
run without holding the weakproxy lock.

Change-Id: Ib167622a8a0f873fd73938f7611b2a5914308047

7 years agoapp_originate: Set ORIGINATE_STATUS correctly on failure
Sean Bright [Tue, 10 Oct 2017 17:01:05 +0000 (13:01 -0400)] 
app_originate: Set ORIGINATE_STATUS correctly on failure

We were ignoring the return value from ast_pbx_outgoing_exten() and
ast_pbx_outgoing_app() which could fail before setting the reason code.
This resulted in failures being reported as success.

ASTERISK-25266 #close
Reported by: Allen Ford

Change-Id: Idf16237b7e41b527d2c69c865829128686beeb3b

7 years agocontrib/thirdparty/sip_to_pjsip: add additional flag mappings
Torrey Searle [Tue, 3 Oct 2017 20:16:49 +0000 (22:16 +0200)] 
contrib/thirdparty/sip_to_pjsip: add additional flag mappings

add mappings for udptl redundancy, rtptimeout, and debug flags

Change-Id: Ie73cf5c83c05dee01eb9624ede76c1a30225d73a

7 years agocdr.c: Eliminated simple RAII_VAR usages.
Richard Mudgett [Mon, 2 Oct 2017 21:46:19 +0000 (16:46 -0500)] 
cdr.c: Eliminated simple RAII_VAR usages.

Change-Id: I150505db307249a962987e7b941bdd369bb91f35

7 years agoMerge "res_pjproject: Fix cleanup of buildopts vector." into 14
Joshua Colp [Tue, 10 Oct 2017 14:46:49 +0000 (09:46 -0500)] 
Merge "res_pjproject: Fix cleanup of buildopts vector." into 14

7 years agoMerge "tcptls: Do not re-bind to wildcard on client creation." into 14
Jenkins2 [Tue, 10 Oct 2017 13:07:20 +0000 (08:07 -0500)] 
Merge "tcptls: Do not re-bind to wildcard on client creation." into 14

7 years agores_pjproject: Fix cleanup of buildopts vector.
Corey Farrell [Tue, 10 Oct 2017 03:51:03 +0000 (23:51 -0400)] 
res_pjproject: Fix cleanup of buildopts vector.

ASTERISK-27306

Change-Id: I3bed0edf3f55b1d4adcbabb25ec14f11dc766c72

7 years agoMerge "cdr.h: Fix doxygen comments." into 14
Joshua Colp [Tue, 10 Oct 2017 00:52:06 +0000 (19:52 -0500)] 
Merge "cdr.h: Fix doxygen comments." into 14

7 years agoMerge "cdr.c: Replace redundant check with an ast_assert()" into 14
Jenkins2 [Tue, 10 Oct 2017 00:51:35 +0000 (19:51 -0500)] 
Merge "cdr.c: Replace redundant check with an ast_assert()" into 14

7 years agoMerge "cdr.c: Use current ao2 flag names" into 14
Joshua Colp [Mon, 9 Oct 2017 23:35:27 +0000 (18:35 -0500)] 
Merge "cdr.c: Use current ao2 flag names" into 14

7 years agoMerge "res_pjsip: Fix issues that prevented shutdown of modules." into 14
Jenkins2 [Mon, 9 Oct 2017 22:51:12 +0000 (17:51 -0500)] 
Merge "res_pjsip: Fix issues that prevented shutdown of modules." into 14

7 years agoMerge "cdr.c: Replace inlined code with ao2_t_replace()" into 14
Jenkins2 [Mon, 9 Oct 2017 22:21:04 +0000 (17:21 -0500)] 
Merge "cdr.c: Replace inlined code with ao2_t_replace()" into 14

7 years agoMerge "res_config_sqlite: Don't enable SQLite CDRs when running 'make samples'" into 14
Joshua Colp [Mon, 9 Oct 2017 21:02:18 +0000 (16:02 -0500)] 
Merge "res_config_sqlite: Don't enable SQLite CDRs when running 'make samples'" into 14

7 years agoMerge "res_pjsip: Fix leak of persistent endpoint references." into 14
Jenkins2 [Mon, 9 Oct 2017 20:37:31 +0000 (15:37 -0500)] 
Merge "res_pjsip: Fix leak of persistent endpoint references." into 14

7 years agocdr.c: Replace redundant check with an ast_assert()
Richard Mudgett [Tue, 3 Oct 2017 21:09:58 +0000 (16:09 -0500)] 
cdr.c: Replace redundant check with an ast_assert()

The only caller of cdr_object_fn_table.process_party_b() explicitly does
the check before calling.

Change-Id: Ib0c53cdf5048227842846e0df9d2c19117c45618

7 years agocdr.c: Replace inlined code with ao2_t_replace()
Richard Mudgett [Mon, 2 Oct 2017 22:41:12 +0000 (17:41 -0500)] 
cdr.c: Replace inlined code with ao2_t_replace()

Change-Id: I9f424f5282ca7d833592f958d95f1b2bafb549b0

7 years agocdr.c: Use current ao2 flag names
Richard Mudgett [Fri, 29 Sep 2017 17:07:14 +0000 (12:07 -0500)] 
cdr.c: Use current ao2 flag names

Change-Id: Ib59d7d2f2a4a822754628f2c48a308d6791a6e6e

7 years agocdr.h: Fix doxygen comments.
Richard Mudgett [Fri, 29 Sep 2017 17:31:18 +0000 (12:31 -0500)] 
cdr.h: Fix doxygen comments.

* Also some misc formatting in cdr.c.

Change-Id: Ied89a28802a662c37c43326a1aafdce596e0df4a

7 years agores_pjsip_registrar.c: Update remove_existing AOR contact handling.
Richard Mudgett [Wed, 20 Sep 2017 23:36:15 +0000 (18:36 -0500)] 
res_pjsip_registrar.c: Update remove_existing AOR contact handling.

When "rewrite_contact" is enabled, the "max_contacts" count option can
block re-registrations because the source port from the endpoint can be
random.  When the re-registration is blocked, the endpoint may give up
re-registering and require manual intervention.

* The "remove_existing" option now allows a registration to succeed by
displacing any existing contacts that now exceed the "max_contacts" count.
Any removed contacts are the next to expire.  The behaviour change is
beneficial when "rewrite_contact" is enabled and "max_contacts" is greater
than one.  The removed contact is likely the old contact created by
"rewrite_contact" that the device is refreshing.

ASTERISK-27192

Change-Id: I64c107a10b70db1697d17136051ae6bf22b5314b

7 years agores_pjsip: Fix issues that prevented shutdown of modules.
Corey Farrell [Wed, 4 Oct 2017 15:46:44 +0000 (11:46 -0400)] 
res_pjsip: Fix issues that prevented shutdown of modules.

res_pjsip and res_pjsip_session had circular references, preventing both
modules from shutting down.
* Move session supplement registration to res_pjsip.
* Use create internal functions for use by pjsip_message_filter.c.

ASTERISK-27306

Change-Id: Ifbd5c19ec848010111afeab2436f9699da06ba6b

7 years agores_config_sqlite: Don't enable SQLite CDRs when running 'make samples'
Sean Bright [Mon, 9 Oct 2017 13:15:54 +0000 (09:15 -0400)] 
res_config_sqlite: Don't enable SQLite CDRs when running 'make samples'

Change-Id: I65a5190b2732b2246d67472db70dd37db64ddad4

7 years agores/res_ari.c Fix: Memory leaks in ARI when using Content-Type: application/json
hajekd [Sun, 8 Oct 2017 19:05:56 +0000 (21:05 +0200)] 
res/res_ari.c Fix: Memory leaks in ARI when using Content-Type: application/json

ASTERISK-27305
Reported by: David Hajek
Tested by: David Hajek

Change-Id: Ife3e289062e6cf7d0e7d342dbf79ed96feff441e

7 years agotcptls: Do not re-bind to wildcard on client creation.
Alexander Traud [Sun, 8 Oct 2017 14:11:10 +0000 (16:11 +0200)] 
tcptls: Do not re-bind to wildcard on client creation.

Since ASTERISK-26922, this issue affected only those chan_sip which were
* enabled for dual-stack (bindaddr=::), and
* enabled for TCP (tcpenable=yes) and/or TLS (tlsenable=yes), and
* tried to register and/or invite a IPv4-only service,
* via TCP and/or TLS.
Now, ast_tcptls_client_create does not re-bind to [::] anymore.

ASTERISK-27324 #close

Change-Id: I4b242837bdeb1ec7130dc82505c6180a946fd9b5

7 years agores_pjsip: Fix leak of persistent endpoint references.
Corey Farrell [Thu, 5 Oct 2017 21:26:14 +0000 (17:26 -0400)] 
res_pjsip: Fix leak of persistent endpoint references.

Do not manually call sip_endpoint_apply_handler from load_all_endpoints.
This is not necessary and causes memory leaks.

Additionally reinitialize persistent->aors when we reuse a persistent
object with a new endpoint.

ASTERISK-27306

Change-Id: I59bbfc8da8a14d5f4af8c5bb1e71f8592ae823eb

7 years agoMerge "vector: multiple evaluation of elem in AST_VECTOR_ADD_SORTED." into 14
Jenkins2 [Fri, 6 Oct 2017 20:20:29 +0000 (15:20 -0500)] 
Merge "vector: multiple evaluation of elem in AST_VECTOR_ADD_SORTED." into 14

7 years agoMerge "res_pjsip: Fix leak of fake_auth references." into 14
Jenkins2 [Fri, 6 Oct 2017 18:56:02 +0000 (13:56 -0500)] 
Merge "res_pjsip: Fix leak of fake_auth references." into 14

7 years agovector: multiple evaluation of elem in AST_VECTOR_ADD_SORTED.
Corey Farrell [Thu, 5 Oct 2017 22:59:06 +0000 (18:59 -0400)] 
vector: multiple evaluation of elem in AST_VECTOR_ADD_SORTED.

Use temporary variable to prevent multiple evaluations of elem argument.
This resolves a memory leak in res_pjproject startup.

ASTERISK-27317 #close

Change-Id: Ib960d7f5576f9e1a3c478ecb48995582a574e06d

7 years agoMerge "main/strings: Fix uninitialized value." into 14
Jenkins2 [Fri, 6 Oct 2017 18:24:40 +0000 (13:24 -0500)] 
Merge "main/strings: Fix uninitialized value." into 14

7 years agores_pjsip: Fix leak of fake_auth references.
Corey Farrell [Thu, 5 Oct 2017 20:54:12 +0000 (16:54 -0400)] 
res_pjsip: Fix leak of fake_auth references.

pjsip_distributor leaks references to fake_auth when the default realm
has not changed.

ASTERISK-27306

Change-Id: I3fcf103b3680ad2d1d4610dcd6738eeaebf4d202

7 years agomain/strings: Fix uninitialized value.
Corey Farrell [Fri, 6 Oct 2017 01:23:31 +0000 (21:23 -0400)] 
main/strings: Fix uninitialized value.

ast_strings_match uses sscanf and checks for non-zero return to verify a
token was parsed. This is incorrect as sscanf returns EOF (-1) for errors.

ASTERISK-27318 #close

Change-Id: Ifcece92605f58116eff24c5a0a3b0ee08b3c87b1

7 years agores_pjsip_caller_id chan_sip: Comply to RFC 3323 values for privacy
Daniel Tryba [Mon, 2 Oct 2017 12:48:41 +0000 (14:48 +0200)] 
res_pjsip_caller_id chan_sip: Comply to RFC 3323 values for privacy

Currently privacy requests are only granted if the Privacy header
value is exactly "id" (defined in RFC 3325). It ignores any other
possible value (or a combination there of). This patch reverses the
logic from testing for "id" to grant privacy, to testing for "none" and
granting privacy for any other value. "none" must not be used in
combination with any other value (RFC 3323 section 4.2).

ASTERISK-27284 #close

Change-Id: If438a21f31a962da32d7a33ff33bdeb1e776fe56

7 years agoMerge "app_queue.c: Fix announcements when announce-to-first-user not enabled." into 14
Joshua Colp [Wed, 4 Oct 2017 19:52:26 +0000 (14:52 -0500)] 
Merge "app_queue.c: Fix announcements when announce-to-first-user not enabled." into 14

7 years agores_calendar_icalendar: Filter out occurrences superceded by another VEVENT
krells [Thu, 28 Sep 2017 07:56:14 +0000 (09:56 +0200)] 
res_calendar_icalendar: Filter out occurrences superceded by another VEVENT

When we are loading the calendars, we call libical's
icalcomponent_foreach_recurrence method for each VEVENT component that
we have in our calendar.

That method has no knowledge concerning the existence of the other
VEVENT components and will feed our callback with all ocurrences
matching the requested time span.

The occurrences generated by icalcomponent_foreach_recurrence while
expanding a recurring VEVENT's RRULE and RDATE properties can be
superceded by an other VEVENT sharing the same UID.

I use an external iterator (in libical terminology) to avoid messing
with the internal ones from the calling function, and search for
VEVENTS which could supersede the current occurrence.

The event which can invalidate this occurence needs to have:

- the same UID as our recurrent component (comp)
- a RECURRENCE-ID property, which represents the start time of this
  occurrence

If one component is found, just clean and return.

ASTERISK-27296 #close
Reported by: Benoît Dereck-Tricot

Change-Id: I8587ae3eaa765af7cb21eda3b6bf84e8a1c87af8

7 years agoMerge "heap.c: No need to calloc heap pointer array." into 14
Jenkins2 [Wed, 4 Oct 2017 01:37:39 +0000 (20:37 -0500)] 
Merge "heap.c: No need to calloc heap pointer array." into 14

7 years agoMerge "logger: Bring back ability to turn debug on by source file" into 14
Jenkins2 [Tue, 3 Oct 2017 15:01:49 +0000 (10:01 -0500)] 
Merge "logger:  Bring back ability to  turn debug on by source file" into 14

7 years agoapp_queue.c: Fix announcements when announce-to-first-user not enabled.
Richard Mudgett [Thu, 28 Sep 2017 22:37:15 +0000 (17:37 -0500)] 
app_queue.c: Fix announcements when announce-to-first-user not enabled.

The previous patch for ASTERISK-27216 made it so you wouldn't get any
position or periodic announcements unless you had announce-to-first-user
enabled.  The announce-to-first-user feature was added by ASTERISK_21782
as a result of the patch which introduced the redundant announcements that
ASTERISK-27216 removes.

* By noting that the makeannouncement variable is used to suppresses the
first user announcement, we set its initial value to the
announce-to-first-user enable setting.

ASTERISK-27216

Change-Id: Ieaeb7dbea8ae7073086b775fbafe0625b000b10a

7 years agoheap.c: No need to calloc heap pointer array.
Richard Mudgett [Thu, 21 Sep 2017 19:43:09 +0000 (14:43 -0500)] 
heap.c: No need to calloc heap pointer array.

Change-Id: I5ae2f316229f336eb90d99c7af7ed07a33097e68

7 years agoMerge "pjsip_message_filter: Fix regression causing bad contact address" into 14
Jenkins2 [Thu, 28 Sep 2017 18:25:51 +0000 (13:25 -0500)] 
Merge "pjsip_message_filter: Fix regression causing bad contact address" into 14

7 years agologger: Bring back ability to turn debug on by source file
George Joseph [Wed, 27 Sep 2017 18:45:21 +0000 (12:45 -0600)] 
logger:  Bring back ability to  turn debug on by source file

Somewhere along the way we lost the ability to debug individual
source files.  For modules, this wasn't a big deal but all the
source files in ./main are in the one "core" module so debugging
individual core capabilities was almost impossible.

* Added a test to DEBUG_ATLEAST that also checks __FILE__ instead
of just module name.  Any source file will work even if it's in
a module subdirectory.

Change-Id: Icc0af41837f3b1679dec7af21fa32cd1f7469f6e

7 years agoMerge "pjproject: Patch to correct STUN FINGERPRINT usage" into 14
Joshua Colp [Thu, 28 Sep 2017 13:07:27 +0000 (08:07 -0500)] 
Merge "pjproject: Patch to correct STUN FINGERPRINT usage" into 14

7 years agoMerge "res_rtp_asterisk.c: Fix bridge_p2p_rtp_write() reentrancy potential." into 14
Jenkins2 [Thu, 28 Sep 2017 11:47:26 +0000 (06:47 -0500)] 
Merge "res_rtp_asterisk.c: Fix bridge_p2p_rtp_write() reentrancy potential." into 14

7 years agores_pjsip_outbound_publish.c: Fix misplaced parenthesis.
Richard Mudgett [Wed, 27 Sep 2017 16:16:16 +0000 (11:16 -0500)] 
res_pjsip_outbound_publish.c: Fix misplaced parenthesis.

The pjsip_publishc_init() call was referenced with a misplaced
parentheses.  As a result, outbound publication messages went out with an
expiration of 1 second.

ASTERISK-27298

Change-Id: I93622eabc8ee83e7a22e98c107f921284c605a08

7 years agopjsip_message_filter: Fix regression causing bad contact address
George Joseph [Tue, 26 Sep 2017 16:01:48 +0000 (10:01 -0600)] 
pjsip_message_filter: Fix regression causing bad contact address

The "res_pjsip:  Filter out non SIP(S) requests" commit moved the
filtering of messages to pjproject's PJSIP_MOD_PRIORITY_TRANSPORT_LAYER
in order to filter out incoming bad uri schemes as early as possible.
Since the change affected outgoing messages as well and the TRANSPORT
layer is the last to be run on outgoing messages, we were overwriting
the setting of external_signaling_address (which is set earlier by
res_pjsip_nat) with an internal address.

* pjsip_message_filter now registers itself as a pjproject module
twice.  Once in the TSX layer for the outgoing messages (as it was
originally), then a second time in the TRANSPORT layer for the
incoming messages to catch the invalid uri schemes.

ASTERISK-27295
Reported by: Sean Bright

Change-Id: I2c90190c43370f8a9d1c4693a19fd65840689c8c

7 years agores_rtp_asterisk.c: Fix bridge_p2p_rtp_write() reentrancy potential.
Richard Mudgett [Thu, 14 Sep 2017 02:31:52 +0000 (21:31 -0500)] 
res_rtp_asterisk.c: Fix bridge_p2p_rtp_write() reentrancy potential.

The bridge_p2p_rtp_write() has potential reentrancy problems.

* Accessing the bridged RTP members must be done with the instance1 lock
held.  The DTMF and asymmetric codec checks must be split to be done with
the correct RTP instance struct locked.  i.e., They must be done when
working on the appropriate side of the point to point bridge.

* Forcing the RTP mark bit was referencing the wrong side of the point to
point bridge.  The set mark bit is used everywhere else to set the mark
bit when sending not receiving.

The patches for ASTERISK_26745 and ASTERISK_27158 did not take into
account that not everything carried by RTP uses a codec.  The telephony
DTMF events are not exchanged with a codec.  As a result when
RFC2833/RFC4733 sent digits you would crash if "core set debug 1" is
enabled, the DTMF digits would always get passed to the core even though
the local native RTP bridge is active, and the DTMF digits would go out
using the wrong SSRC id.

* Add protection for non-format payload types like DTMF when updating the
lastrxformat and lasttxformat.  Also protect against non-format payload
types when checking for asymmetric codecs.

ASTERISK-27292

Change-Id: I6344ab7de21e26f84503c4d1fca1a41579364186

7 years agoMerge "channel.c: Fix invalid reference in conditionaled out code." into 14
Jenkins2 [Tue, 26 Sep 2017 11:47:22 +0000 (06:47 -0500)] 
Merge "channel.c: Fix invalid reference in conditionaled out code." into 14

7 years agoMerge "app_queue: Only do announcement logic between ringing cycles" into 14
Jenkins2 [Tue, 26 Sep 2017 11:23:30 +0000 (06:23 -0500)] 
Merge "app_queue: Only do announcement logic between ringing cycles" into 14

7 years agopjproject: Patch to correct STUN FINGERPRINT usage
Sean Bright [Mon, 25 Sep 2017 18:09:33 +0000 (14:09 -0400)] 
pjproject: Patch to correct STUN FINGERPRINT usage

Change-Id: I0e453253dff1388b0186b36c754457c1d0d12db6

7 years agochannel.c: Fix invalid reference in conditionaled out code.
Richard Mudgett [Mon, 25 Sep 2017 15:59:17 +0000 (10:59 -0500)] 
channel.c: Fix invalid reference in conditionaled out code.

ASTERISK-27289

Change-Id: I7a415948116493050614d9f4fa91ffbe0c21ec4c

7 years agobuild: A few gcc 7 error fixes
George Joseph [Mon, 25 Sep 2017 12:25:06 +0000 (06:25 -0600)] 
build:  A few gcc 7 error fixes

Change-Id: I7b5300fbf1af7d88d47129db13ad6dbdc9b553ec

7 years agoapp_queue: Only do announcement logic between ringing cycles
StefanEng86 [Fri, 15 Sep 2017 07:59:59 +0000 (09:59 +0200)] 
app_queue: Only do announcement logic between ringing cycles

This patch reverts the change by patch 2263 from old reviewboard.
Note that reverting that 2263-patch still preserves the behaviour that
the commit log of the 2263-patch claimed to add. The reason for this is:

The function wait_for_answer is only called from try_calling which
in turn is only called from the main for loop in queue_exec, and
earlier in that loop we already check the things that's removed by
this patch. There's no need to check those things twice each loop
iteration, and I think the proper place to check it is before each
ringing cycle. By checking it in wait_for_answer, you allow the issue
explained in the jira - that the head caller hears announcements while
the agents' sip phones are actively ringing.

Reported-by: Stefan Engström
Tested-by: Stefan Engström
ASTERISK-27216 #close

Change-Id: Ic4290dc75256f9743900c6762ee1bb915f672db0

7 years agores_pjsip: Use ast_sip_is_content_type() where appropriate
Sean Bright [Fri, 22 Sep 2017 15:02:11 +0000 (11:02 -0400)] 
res_pjsip: Use ast_sip_is_content_type() where appropriate

Change-Id: If3ab0d73d79ac4623308bd48508af2bfd554937d

7 years agoMerge "res_config_pgsql: Fix removed support to previous for versions PostgreSQL...
Joshua Colp [Fri, 22 Sep 2017 10:49:15 +0000 (05:49 -0500)] 
Merge "res_config_pgsql: Fix removed support to previous for versions PostgreSQL 9.1" into 14