]> git.ipfire.org Git - thirdparty/asterisk.git/log
thirdparty/asterisk.git
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 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 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

7 years agoMerge "res_srtp: lower log level of auth failures" into 14
Jenkins2 [Thu, 21 Sep 2017 16:57:46 +0000 (11:57 -0500)] 
Merge "res_srtp: lower log level of auth failures" into 14

7 years agores_config_pgsql: Fix removed support to previous for versions PostgreSQL 9.1
Rodrigo Ramírez Norambuena [Tue, 19 Sep 2017 10:22:50 +0000 (07:22 -0300)] 
res_config_pgsql: Fix removed support to previous for versions PostgreSQL 9.1

In PostgreSQL 9.1 the backslash are string literals and not the escape
of characters.

In previous issue ASTERISK_26057 was fixed the use of escape LIKE but the
support for old version of Postgresql than 9.1 was dropped. The sentence
before make was "ESCAPE '\'" but in version before than 9.1  need it to be
as follow "ESCAPE '\\'".

ASTERISK-27283

Change-Id: I96d9ee1ed7693ab17503cb36a9cd72847165f949

7 years agoMerge "chan_sip: Expose read-only access to the full SIP INVITE Request-URI" into 14
Joshua Colp [Thu, 21 Sep 2017 16:10:51 +0000 (11:10 -0500)] 
Merge "chan_sip: Expose read-only access to the full SIP INVITE Request-URI" into 14

7 years agoMerge "bridge : Fix one-way direct-media when early bridging with native_rtp" into 14
Jenkins2 [Thu, 21 Sep 2017 15:42:11 +0000 (10:42 -0500)] 
Merge "bridge : Fix one-way direct-media when early bridging with native_rtp" into 14

7 years agobridge : Fix one-way direct-media when early bridging with native_rtp
Jean Aunis [Thu, 7 Sep 2017 09:41:09 +0000 (11:41 +0200)] 
bridge : Fix one-way direct-media when early bridging with native_rtp

When two channels were early bridged in a native_rtp bridge, the RTP description
on one side was not updated when the other side answered.
This patch forbids non-answered channels to enter a native_rtp bridge, and
triggers a bridge reconfiguration when an ANSWER frame is received.

ASTERISK-27257

Change-Id: If1aaee1b4ed9658a1aa91ab715ee0a6413b878df

7 years agores_pjsip_pubsub: Check for Content-Type header in rx_notify_request
George Joseph [Tue, 19 Sep 2017 15:38:30 +0000 (09:38 -0600)] 
res_pjsip_pubsub:  Check for Content-Type header in rx_notify_request

pubsub_on_rx_notify_request wasn't checking for a null
Content-Type header before checking that it was
application/simple-message-summary.

ASTERISK-27279
Reported by: Ross Beer

Change-Id: Iec2a6c4d2e74af37ff779ecc9fd35644c5c4ea52

7 years agochan_sip: Expose read-only access to the full SIP INVITE Request-URI
David J. Pryke [Tue, 19 Sep 2017 14:34:01 +0000 (10:34 -0400)] 
chan_sip: Expose read-only access to the full SIP INVITE Request-URI

Provide a way to get the contents of the the Request URI from the initial SIP
INVITE in dial plan function call. (In this case "${CHANNEL(ruri)}")

ASTERISK-27278
Reported by: David J. Pryke
Tested by: David J. Pryke

Change-Id: I1dd4d6988eed1b6c98a9701e0e833a15ef0dac3e

7 years agoMerge "AST-2017-008: Improve RTP and RTCP packet processing." into 14
Joshua Colp [Tue, 19 Sep 2017 15:56:44 +0000 (10:56 -0500)] 
Merge "AST-2017-008: Improve RTP and RTCP packet processing." into 14

7 years agoMerge "res_calendar: On reload, update all configuration" into 14
Joshua Colp [Tue, 19 Sep 2017 11:46:46 +0000 (06:46 -0500)] 
Merge "res_calendar: On reload, update all configuration" into 14

7 years agoMerge "cdr_mysql.c: Apply cdrzone to start and answer" into 14
Joshua Colp [Tue, 19 Sep 2017 11:35:03 +0000 (06:35 -0500)] 
Merge "cdr_mysql.c: Apply cdrzone to start and answer" into 14

7 years agotcptls: Fixed a white space error.
Alexander Traud [Mon, 18 Sep 2017 15:27:24 +0000 (17:27 +0200)] 
tcptls: Fixed a white space error.

ASTERISK-26606

Change-Id: I81a7268ef7ba012d4d80d44c70b6276d48e397fa

7 years agores_srtp: lower log level of auth failures
Alexander Traud [Mon, 18 Sep 2017 15:00:31 +0000 (17:00 +0200)] 
res_srtp: lower log level of auth failures

Previously, sRTP authentication failures were reported on log level WARNING.
When such failures happen, each RT(C)P packet is affected, spamming the log.
Now, those failures are reported at log level VERBOSE 2. Furthermore, the
amount is further reduced (previously all two seconds, now all three seconds).
Additionally, the new log entry informs whether media (RTP) or statistics (RTCP)
are affected.

ASTERISK-16898 #close

Change-Id: I6c98d46b711f56e08655abeb01c951ab8e8d7fa0

7 years agoAST-2017-008: Improve RTP and RTCP packet processing.
Richard Mudgett [Fri, 25 Aug 2017 22:01:57 +0000 (17:01 -0500)] 
AST-2017-008: Improve RTP and RTCP packet processing.

Validate RTCP packets before processing them.

* Validate that the received packet is of a minimum length and apply the
RFC3550 RTCP packet validation checks.

* Fixed potentially reading garbage beyond the received RTCP record data.

* Fixed rtp->themssrc only being set once when the remote could change
the SSRC.  We would effectively stop handling the RTCP statistic records.

* Fixed rtp->themssrc to not treat a zero value as special by adding
rtp->themssrc_valid to indicate if rtp->themssrc is available.

ASTERISK-27274

Make strict RTP learning more flexible.

Direct media can cause strict RTP to attempt to learn a remote address
again before it has had a chance to learn the remote address the first
time.  Because of the rapid relearn requests, strict RTP could latch onto
the first remote address and fail to latch onto the direct media remote
address.  As a result, you have one way audio until the call is placed on
and off hold.

The new algorithm learns remote addresses for a set time (1.5 seconds)
before locking the remote address.  In addition, we must see a configured
number of remote packets from the same address in a row before switching.

* Fixed strict RTP learning from always accepting the first new address
packet as the new stream.

* Fixed strict RTP to initialize the expected sequence number with the
last received sequence number instead of the last transmitted sequence
number.

* Fixed the predicted next sequence number calculation in
rtp_learning_rtp_seq_update() to handle overflow.

ASTERISK-27252

Change-Id: Ia2d3aa6e0f22906c25971e74f10027d96525f31c

7 years agoMerge "res_pjsip: Filter out non SIP(S) requests" into 14
Jenkins2 [Fri, 15 Sep 2017 20:28:09 +0000 (15:28 -0500)] 
Merge "res_pjsip:  Filter out non SIP(S) requests" into 14

7 years agores_calendar: On reload, update all configuration
Sean Bright [Wed, 13 Sep 2017 19:14:25 +0000 (15:14 -0400)] 
res_calendar: On reload, update all configuration

This changes the behavior of res_calendar to drop all existing calendars
and re-create them whenever a reload is done. The Calendar API provides
no way for configuration information to be pushed down to calendar
'techs' so updated settings would not take affect until a module
unload/load was done or Asterisk was restarted.

Asterisk 15+ already has a configuration option 'fetch_again_at_reload'
that performs a similar function.

Also fix a tiny memory leak in res_calendar_caldav while we're at it.

ASTERISK-25524 #close
Reported by: Jesper

Change-Id: Ib0f8057642e9d471960f1a79fd42e5a3ce587d3b

7 years agoMerge "res_calendar: Various fixes" into 14
Jenkins2 [Fri, 15 Sep 2017 13:14:09 +0000 (08:14 -0500)] 
Merge "res_calendar: Various fixes" into 14

7 years agores_pjsip: Filter out non SIP(S) requests
George Joseph [Wed, 13 Sep 2017 21:23:54 +0000 (15:23 -0600)] 
res_pjsip:  Filter out non SIP(S) requests

Incoming requests with non sip(s) URIs in the Request, To, From
or Contact URIs are now rejected with
PJSIP_SC_UNSUPPORTED_URI_SCHEME (416).  This is performed in
pjsip_message_filter (formerly pjsip_message_ip_updater) and is
done at pjproject's "TRANSPORT" layer before a request can even
reach the distributor.

URIs read by res_pjsip_outbound_publish from pjsip.conf are now
also checked for both length and sip(s) scheme.  Those URIs read
by outbound registration and aor were already being checked for
scheme but their error messages needed to be updated to include
scheme failure as well as length failure.

Change-Id: Ibb2f9f1d2dc7549da562af4cbd9156c44ffdd460

7 years agoMerge "chan_rtp: Use μ-law by default instead of signed linear" into 14
Jenkins2 [Thu, 14 Sep 2017 17:37:05 +0000 (12:37 -0500)] 
Merge "chan_rtp: Use μ-law by default instead of signed linear" into 14

7 years agores_calendar: Various fixes
Sean Bright [Wed, 13 Sep 2017 19:08:39 +0000 (15:08 -0400)] 
res_calendar: Various fixes

* The way that we were looking at XML elements for CalDAV was extremely
  fragile, so use SAX2 for increased robustness.

* Don't complain about a 'channel' not be specified if autoreminder is
  not set. Assume that if 'channel' is not set, we don't want to be
  notified.

* Fix some truncated CLI output in 'calendar show calendar' and make the
  'Autoreminder' description a bit more clear

ASTERISK-24588 #close
Reported by: Stefan Gofferje

ASTERISK-25523 #close
Reported by: Jesper

Change-Id: I200d11afca6a47e7d97888f286977e2e69874b2c

7 years agocdr_mysql.c: Apply cdrzone to start and answer
alex [Wed, 13 Sep 2017 08:46:27 +0000 (11:46 +0300)] 
cdr_mysql.c: Apply cdrzone to start and answer

Change-Id: I7de0a5adc89824a5f2b696fc22c80fc22dff36b0

7 years agochan_rtp: Use μ-law by default instead of signed linear
Sean Bright [Wed, 13 Sep 2017 14:38:11 +0000 (10:38 -0400)] 
chan_rtp: Use μ-law by default instead of signed linear

Multicast/Unicast RTP do not use SDP so we need to use a format that
cleanly maps to one of the static RTP payload types. Without this
change, an Originate to a Multicast or Unicast channel without a format
specified would produce no audio on the receiving device.

ASTERISK-21399 #close
Reported by: Tzafrir Cohen

Change-Id: I97e332b566e85da04b0004b9b0daae746cfca0e3

7 years agores_pjsip: Add handling for incoming unsolicited MWI NOTIFY
George Joseph [Mon, 11 Sep 2017 10:46:35 +0000 (04:46 -0600)] 
res_pjsip:  Add handling for incoming unsolicited MWI NOTIFY

A new endpoint parameter "incoming_mwi_mailbox" allows Asterisk to
receive unsolicited MWI NOTIFY requests and make them available to
other modules via the stasis message bus.

res_pjsip_pubsub has a new handler "pubsub_on_rx_mwi_notify_request"
that parses a simple-message-summary body and, if
endpoint->incoming_mwi_account is set, calls ast_publish_mwi_state
with the voice-message counts from the message.

Change-Id: I08bae3d16e77af48fcccc2c936acce8fc0ef0f3c

7 years agoMerge "alembic: Fix typo in add_auto_info_to_endpoint_dtmf_mode" into 14
Joshua Colp [Tue, 12 Sep 2017 19:17:17 +0000 (14:17 -0500)] 
Merge "alembic:  Fix typo in add_auto_info_to_endpoint_dtmf_mode" into 14

7 years agores_rtp_asterisk.c: Add doxygen to RTCP payload types.
Richard Mudgett [Sat, 9 Sep 2017 02:41:35 +0000 (21:41 -0500)] 
res_rtp_asterisk.c: Add doxygen to RTCP payload types.

Change-Id: I3f20ce428777cc4ce9c13b2f808d29ff8c873998

7 years agoMerge "alembic: Add support for MS-SQL" into 14
Jenkins2 [Mon, 11 Sep 2017 11:54:51 +0000 (06:54 -0500)] 
Merge "alembic: Add support for MS-SQL" into 14

7 years agoalembic: Fix typo in add_auto_info_to_endpoint_dtmf_mode
George Joseph [Mon, 11 Sep 2017 10:52:51 +0000 (04:52 -0600)] 
alembic:  Fix typo in add_auto_info_to_endpoint_dtmf_mode

The downgrade function was missing "_v2" at the end of the
alter column type.

Change-Id: Iaa9bcef48d6f3590ce07a61342d8e66f00263d8e

7 years agores/res_pjsip: Fix localnet checks in pjsip, part 2.
Walter Doekes [Sun, 10 Sep 2017 11:17:27 +0000 (13:17 +0200)] 
res/res_pjsip: Fix localnet checks in pjsip, part 2.

In 45744fc53, I mistakenly broke SDP media address rewriting by
misinterpreting which address was checked in the localnet comparison.

Instead of checking the remote peer address to decide whether we need
media address rewriting, we check our local media address: if it's
local, then we rewrite. This feels awkward, but works and even made
directmedia work properly if you set local_net. (For the record: for
local peers, the SDP media rewrite code is not called, so the
comparison does no harm there.)

ASTERISK-27248 #close

Change-Id: I566be1c33f4d0a689567d451ed46bab9c3861d4f

7 years agoalembic: Add support for MS-SQL
Florian Floimair [Tue, 5 Sep 2017 16:13:19 +0000 (18:13 +0200)] 
alembic: Add support for MS-SQL

MS-SQL has no native Enum-type support and therefore
needs to work with constraints.
Since these constraints need unique names the suggested approach
referenced in the following alembic documentation has been applied:
http://bit.ly/2x9r8pb

ASTERISK-27255 #close

Change-Id: I8b579750dae0c549f1103ee50172644afb9b2f95

7 years agoMerge "app_waitforsilence: Cleanup & don't treat missing frames as 'noise'" into 14
Jenkins2 [Fri, 8 Sep 2017 15:24:11 +0000 (10:24 -0500)] 
Merge "app_waitforsilence: Cleanup & don't treat missing frames as 'noise'" into 14

7 years agoMerge "chan_sip: when getting sip pvt return failure if not found" into 14
Jenkins2 [Fri, 8 Sep 2017 14:46:38 +0000 (09:46 -0500)] 
Merge "chan_sip: when getting sip pvt return failure if not found" into 14

7 years agoMerge "res_srtp: Add support for libsrtp2.1." into 14
Jenkins2 [Thu, 7 Sep 2017 18:53:18 +0000 (13:53 -0500)] 
Merge "res_srtp: Add support for libsrtp2.1." into 14

7 years agoMerge "chan_sip: Do not change IP address in SDP origin line (o=) in SIP reINVITE...
Jenkins2 [Thu, 7 Sep 2017 18:17:42 +0000 (13:17 -0500)] 
Merge "chan_sip: Do not change IP address in SDP origin line (o=) in SIP reINVITE" into 14

7 years agoMerge "func_cdr: honour 'u' flag on dummy channel" into 14
Joshua Colp [Thu, 7 Sep 2017 16:03:35 +0000 (11:03 -0500)] 
Merge "func_cdr: honour 'u' flag on dummy channel" into 14

7 years agoMerge "stasis/control.c: Fix set_interval_hook() ref leak." into 14
Jenkins2 [Thu, 7 Sep 2017 15:39:58 +0000 (10:39 -0500)] 
Merge "stasis/control.c: Fix set_interval_hook() ref leak." into 14

7 years agochan_sip: when getting sip pvt return failure if not found
Scott Griepentrog [Wed, 6 Sep 2017 21:05:32 +0000 (17:05 -0400)] 
chan_sip: when getting sip pvt return failure if not found

In handle_request_invite, when processing a pickup, a call
is made to get_sip_pvt_from_replaces to locate the pvt for
the subscription. The pvt is assumed to be valid when zero
is returned indicating no error, and is dereferenced which
can cause a crash if it was not found.

This change checks the not found case and returns -1 which
allows the calling code to fail appropriately.

ASTERISK-27217 #close
Reported-by: Bryan Walters
Change-Id: I6bee92b8b8b85fcac3fd66f8c00ab18bc1765612

7 years agoapp_waitforsilence: Cleanup & don't treat missing frames as 'noise'
Sean Bright [Wed, 6 Sep 2017 15:50:53 +0000 (11:50 -0400)] 
app_waitforsilence: Cleanup & don't treat missing frames as 'noise'

* WaitForSilence completes successfully if it receives no media in the
  specified timeout, but when acting as WaitForNoise that logic needs
  to be reversed.

* Use standard argument parsing macros and add some error checking for
  invalid values.

* The documentation indicated that the first argument to both
  WaitForSilence and WaitForNoise was required when it was not. Update
  the documentation to reflect that.

* Wrap up some behavior in structs to avoid boolean checks all over the
  place.

ASTERISK-24066 #close
Reported by: M vd S

Change-Id: I01d40adc5b63342bb5018a1bea2081a0aa191ef9

7 years agostasis/control.c: Fix set_interval_hook() ref leak.
Richard Mudgett [Wed, 6 Sep 2017 18:38:17 +0000 (13:38 -0500)] 
stasis/control.c: Fix set_interval_hook() ref leak.

Change-Id: Ia0edb7dc0dbbb879c079ff7000f1b722d86ce7dc

7 years agostasis/control: Fix possible deadlock with swap channel
George Joseph [Fri, 1 Sep 2017 10:17:02 +0000 (04:17 -0600)] 
stasis/control:  Fix possible deadlock with swap channel

If an error occurs during a bridge impart it's possible that
the "bridge_after" callback might try to run before
control_swap_channel_in_bridge has been signalled to continue.
Since control_swap_channel_in_bridge is holding the control lock
and the callback needs it, a deadlock will occur.

* control_swap_channel_in_bridge now only holds the control
  lock while it's actually modifying the control structure and
  releases it while the bridge impart is running.
* bridge_after_cb is now tolerant of impart failures.

Change-Id: Ifd239aa93955b3eb475521f61e284fcb0da2c3b3

7 years agoMerge "alembic: Fix enum creation for dtls_fingerprint" into 14
Jenkins2 [Wed, 6 Sep 2017 16:26:27 +0000 (11:26 -0500)] 
Merge "alembic: Fix enum creation for dtls_fingerprint" into 14

7 years agoMerge "alembic: fix erroneous commit for add_prune_on_boot" into 14
Jenkins2 [Wed, 6 Sep 2017 15:39:32 +0000 (10:39 -0500)] 
Merge "alembic: fix erroneous commit for add_prune_on_boot" into 14

7 years agoMerge "res/res_pjsip: Standardize/fix localnet checks across pjsip." into 14
Jenkins2 [Wed, 6 Sep 2017 15:08:23 +0000 (10:08 -0500)] 
Merge "res/res_pjsip: Standardize/fix localnet checks across pjsip." into 14

7 years agochan_sip: Do not change IP address in SDP origin line (o=) in SIP reINVITE
Vitezslav Novy [Wed, 6 Sep 2017 10:23:25 +0000 (12:23 +0200)] 
chan_sip: Do not change IP address in SDP origin line (o=) in SIP reINVITE

If directmedia=yes is configured, when call is answered, Asterisk sends reINVITE
to both parties to set up media path directly between the endpoints.
In this reINVITE msg SDP origin line (o=) contains IP address of endpoint
instead of IP of asterisk. This behavior violates RFC3264, sec 8:
"When issuing an offer that modifies the session,
the "o=" line of the new SDP MUST be identical to that in the
previous SDP, except that the version in the origin field MUST
increment by one from the previous SDP."
This patch assures IP address of Asterisk is always sent in
SDP origin line.

ASTERISK-17540
Reported by:  saghul

Change-Id: I533a047490c43dcff32eeca8378b2ba02345b64e

7 years agoMerge "res_rtp_asterisk.c: Check RTP packet version earlier." into 14
Jenkins2 [Wed, 6 Sep 2017 14:41:28 +0000 (09:41 -0500)] 
Merge "res_rtp_asterisk.c: Check RTP packet version earlier." into 14

7 years agoMerge "formats: Restore previous fread() behavior" into 14
Joshua Colp [Wed, 6 Sep 2017 14:10:54 +0000 (09:10 -0500)] 
Merge "formats: Restore previous fread() behavior" into 14

7 years agoalembic: Fix enum creation for dtls_fingerprint
George Joseph [Wed, 6 Sep 2017 12:54:00 +0000 (06:54 -0600)] 
alembic: Fix enum creation for dtls_fingerprint

Change-Id: Ic061c5066a146616a68376881c7e4cf6d6e7e7db

7 years agoMerge "res_pjsip_t38: Make t38_reinvite_response_cb tolerant of NULL channel" into 14
Jenkins2 [Wed, 6 Sep 2017 12:15:32 +0000 (07:15 -0500)] 
Merge "res_pjsip_t38:  Make t38_reinvite_response_cb tolerant of NULL channel" into 14

7 years agoalembic: fix erroneous commit for add_prune_on_boot
Florian Floimair [Tue, 5 Sep 2017 16:08:02 +0000 (18:08 +0200)] 
alembic: fix erroneous commit for add_prune_on_boot

Added include for postgresql ENUM type and
redefined values in the same way as in the
other migration scripts.

ASTERISK-27254 #close

Change-Id: Id667304cdf3891b1c2f7d35fab3e2a84026159fa

7 years agores_srtp: Add support for libsrtp2.1.
Alexander Traud [Wed, 6 Sep 2017 08:02:19 +0000 (10:02 +0200)] 
res_srtp: Add support for libsrtp2.1.

Asterisk is able to use libSRTP 2.0.x. However since libSRTP 2.1.x, the macro
SRTP_AES_ICM got renamed to SRTP_AES_ICM_128. Beside to still compile with
previous versions of libSRTP, this change allows libSRTP 2.1.x as well.

ASTERISK-27253 #close

Change-Id: I2e6eb3c3bc844fee8a624060a2eb6f182dc70315

7 years agochan_pjsip: Suppress frame warnings.
Ben Ford [Tue, 5 Sep 2017 14:35:12 +0000 (09:35 -0500)] 
chan_pjsip: Suppress frame warnings.

When rtp_keepalive is on for a PJSIP endpoint dialing to another
Asterisk instance also using PJSIP, Asterisk will continue to print
warning messages about not being able to send frames of a certain
type. This suppresses that warning message.

Change-Id: I0332a05519d7bda9cacfa26d433909ff1909be67

7 years agores_rtp_asterisk.c: Check RTP packet version earlier.
Richard Mudgett [Fri, 25 Aug 2017 22:05:06 +0000 (17:05 -0500)] 
res_rtp_asterisk.c: Check RTP packet version earlier.

Change-Id: Ic6493a7d79683f3e5845dff1cee49445fd5a0adf

7 years agoformats: Restore previous fread() behavior
Sean Bright [Tue, 5 Sep 2017 15:05:48 +0000 (11:05 -0400)] 
formats: Restore previous fread() behavior

Some formats are able to handle short reads while others are not, so
restore the previous behavior for the format modules so that we don't
have spurious errors when playing back files.

ASTERISK-27232 #close
Reported by: Jens T.

Change-Id: Iab7f52b25a394f277566c8a2a4b15a692280a300

7 years agores/res_pjsip: Standardize/fix localnet checks across pjsip.
Walter Doekes [Tue, 5 Sep 2017 14:16:01 +0000 (16:16 +0200)] 
res/res_pjsip: Standardize/fix localnet checks across pjsip.

In 2dee95cc (ASTERISK-27024) and 776ffd77 (ASTERISK-26879) there was
confusion about whether the transport_state->localnet ACL has ALLOW or
DENY semantics.

For the record: the localnet has DENY semantics, meaning that "not in
the list" means ALLOW, and the local nets are in the list.

Therefore, checks like this look wrong, but are right:

    /* See if where we are sending this request is local or not, and if
       not that we can get a Contact URI to modify */
    if (ast_apply_ha(transport_state->localnet, &addr) != AST_SENSE_ALLOW) {
        ast_debug(5, "Request is being sent to local address, "
                     "skipping NAT manipulation\n");

(In the list == localnet == DENY == skip NAT manipulation.)

And conversely, other checks that looked right, were wrong.

This change adds two macro's to reduce the confusion and uses those
instead:

    ast_sip_transport_is_nonlocal(transport_state, addr)
    ast_sip_transport_is_local(transport_state, addr)

ASTERISK-27248 #close

Change-Id: Ie7767519eb5a822c4848e531a53c0fd054fae934

7 years agoMerge "app_directory: Handle a NULL mailbox without crashing" into 14
Jenkins2 [Tue, 5 Sep 2017 13:27:19 +0000 (08:27 -0500)] 
Merge "app_directory: Handle a NULL mailbox without crashing" into 14

7 years agofunc_cdr: honour 'u' flag on dummy channel
Jacek Konieczny [Tue, 5 Sep 2017 12:31:50 +0000 (14:31 +0200)] 
func_cdr: honour 'u' flag on dummy channel

Fixes ${CDR(...,u)} when used in cdr_custom.conf

ASTERISK-27165 #close

Change-Id: Ia4e0b6ba93e03d27886354c279737790e2cd6a83

7 years agoMerge "chan_ooh323: Fix confusing indentation warning" into 14
Jenkins2 [Tue, 5 Sep 2017 12:01:40 +0000 (07:01 -0500)] 
Merge "chan_ooh323: Fix confusing indentation warning" into 14

7 years agores_pjsip_t38: Make t38_reinvite_response_cb tolerant of NULL channel
George Joseph [Tue, 5 Sep 2017 10:23:04 +0000 (04:23 -0600)] 
res_pjsip_t38:  Make t38_reinvite_response_cb tolerant of NULL channel

t38_reinvite_response_cb can get called by res_pjsip_session's
session_inv_on_tsx_state_changed in situations where session->channel
is NULL.  If it is, the ast_log warning segfaults because it tries
to get the channel name from a NULL channel.

* Check session->channel and print "unknown channel" when it's NULL.

ASTERISK-27236
Reported by: Ross Beer

Change-Id: I4326e288d36327f6c79ab52226d54905cdc87dc7

7 years agortp_engine: Prevent possible double free with DTLS config
Sean Bright [Fri, 1 Sep 2017 21:17:38 +0000 (17:17 -0400)] 
rtp_engine: Prevent possible double free with DTLS config

ASTERISK-27225 #close
Reported by: Richard Kenner

Change-Id: I097b81734ef730f8603c0b972909d212a3a5cf89

7 years agochan_ooh323: Fix confusing indentation warning
Sean Bright [Fri, 1 Sep 2017 18:15:40 +0000 (14:15 -0400)] 
chan_ooh323: Fix confusing indentation warning

ASTERISK-27177 #close
Reported by: Tzafrir Cohen

Change-Id: I40311c404edb2302a7543ad5ca7a06b2a38f2d97

7 years agoapp_directory: Handle a NULL mailbox without crashing
Sean Bright [Fri, 1 Sep 2017 14:51:06 +0000 (10:51 -0400)] 
app_directory: Handle a NULL mailbox without crashing

ASTERISK-27241 #close
Reported by: David Moore

Change-Id: Ibbbca85517b04c315406ebfe3b6f7e0763daedc6

7 years agoMerge "chan_pjsip: Add tag info in CHANNEL function" into 14
Joshua Colp [Thu, 31 Aug 2017 22:37:46 +0000 (17:37 -0500)] 
Merge "chan_pjsip: Add tag info in CHANNEL function" into 14

7 years agoMerge "pjsip_message_ip_updater: Fix issue handling "tel" URIs" into 14
Joshua Colp [Thu, 31 Aug 2017 11:12:07 +0000 (06:12 -0500)] 
Merge "pjsip_message_ip_updater:  Fix issue handling "tel" URIs" into 14

7 years agoMerge "res_rtp_asterisk: Only learn a new source in learn state." into 14
Joshua Colp [Thu, 31 Aug 2017 11:11:42 +0000 (06:11 -0500)] 
Merge "res_rtp_asterisk: Only learn a new source in learn state." into 14

7 years agoMerge "AST-2017-006: Fix app_minivm application MinivmNotify command injection" into 14
Jenkins2 [Thu, 31 Aug 2017 11:07:57 +0000 (06:07 -0500)] 
Merge "AST-2017-006: Fix app_minivm application MinivmNotify command injection" into 14

7 years agoMerge "confbridge: Handle user hangup during name recording" into 14
Joshua Colp [Wed, 30 Aug 2017 18:54:05 +0000 (13:54 -0500)] 
Merge "confbridge: Handle user hangup during name recording" into 14

7 years agopjsip_message_ip_updater: Fix issue handling "tel" URIs
George Joseph [Mon, 24 Jul 2017 15:48:14 +0000 (09:48 -0600)] 
pjsip_message_ip_updater:  Fix issue handling "tel" URIs

sanitize_tdata was assuming all URIs were SIP URIs so when a non
SIP uri was in the From, To or Contact headers, the unconditional
cast of a non-pjsip_sip_uri structure to pjsip_sip_uri caused
a segfault when trying to access uri->other_param.

* Added PJSIP_URI_SCHEME_IS_SIP(uri) || PJSIP_URI_SCHEME_IS_SIPS(uri)
  checks before attempting to cast or use the returned uri.

ASTERISK-27152
Reported-by: Ross Beer
Change-Id: Id380df790e6622c8058a96035f8b8f4aa0b8551f

7 years agoAST-2017-006: Fix app_minivm application MinivmNotify command injection
Corey Farrell [Sun, 2 Jul 2017 00:24:27 +0000 (20:24 -0400)] 
AST-2017-006: Fix app_minivm application MinivmNotify command injection

An admin can configure app_minivm with an externnotify program to be run
when a voicemail is received.  The app_minivm application MinivmNotify
uses ast_safe_system() for this purpose which is vulnerable to command
injection since the Caller-ID name and number values given to externnotify
can come from an external untrusted source.

* Add ast_safe_execvp() function.  This gives modules the ability to run
external commands with greater safety compared to ast_safe_system().
Specifically when some parameters are filled by untrusted sources the new
function does not allow malicious input to break argument encoding.  This
may be of particular concern where CALLERID(name) or CALLERID(num) may be
used as a parameter to a script run by ast_safe_system() which could
potentially allow arbitrary command execution.

* Changed app_minivm.c:run_externnotify() to use the new ast_safe_execvp()
instead of ast_safe_system() to avoid command injection.

* Document code injection potential from untrusted data sources for other
shell commands that are under user control.

ASTERISK-27103

Change-Id: I7552472247a84cde24e1358aaf64af160107aef1

7 years agores_rtp_asterisk: Only learn a new source in learn state.
Joshua Colp [Mon, 22 May 2017 15:36:38 +0000 (15:36 +0000)] 
res_rtp_asterisk: Only learn a new source in learn state.

This change moves the logic which learns a new source address
for RTP so it only occurs in the learning state. The learning
state is entered on initial allocation of RTP or if we are
told that the remote address for the media has changed. While
in the learning state if we continue to receive media from
the original source we restart the learning process. It is
only once we receive a sufficient number of RTP packets from
the new source that we will switch to it. Once this is done
the closed state is entered where all packets that do not
originate from the expected source are dropped.

The learning process has also been improved to take into
account the time between received packets so a flood of them
while in the learning state does not cause media to be switched.

Finally RTCP now drops packets which are not for the learned
SSRC if strict RTP is enabled.

ASTERISK-27013

Change-Id: I56a96e993700906355e79bc880ad9d4ad3ab129c

7 years agochan_pjsip: Add tag info in CHANNEL function
Andre Nazario [Sat, 26 Aug 2017 02:06:10 +0000 (23:06 -0300)] 
chan_pjsip: Add tag info in CHANNEL function

Create local_tag and remote_tag in CHANNEL info to get tag from From and
To headers of a SIP dialog.

ASTERISK-27220

Change-Id: I59b16c4b928896fcbde02ad88f0e98922b15d524

7 years agobridge_native_rtp.c: Fixup native_rtp_framehook()
Richard Mudgett [Tue, 29 Aug 2017 19:22:15 +0000 (14:22 -0500)] 
bridge_native_rtp.c: Fixup native_rtp_framehook()

* Fix framehook to test frame type for control frame.
* Made framehook exit early if frame type is not a control frame.
* Eliminated RAII_VAR in framehook.
* Use switch instead of else-if ladder for control frame handling.

Change-Id: Ia555fc3600bd85470e3c0141147dbe3ad07c1d18

7 years agoconfbridge: Handle user hangup during name recording
Sean Bright [Tue, 29 Aug 2017 14:26:17 +0000 (10:26 -0400)] 
confbridge: Handle user hangup during name recording

This prevents orphaned CBAnn channels from getting stuck in the bridge.

ASTERISK-26994 #close
Reported by: James Terhune

Change-Id: I5e43e832a9507ec3f2c59752cd900b41dab80457

7 years agoMerge "app_record: Resolve some absolute vs. relative filename bugs" into 14
Joshua Colp [Tue, 29 Aug 2017 10:47:58 +0000 (05:47 -0500)] 
Merge "app_record: Resolve some absolute vs. relative filename bugs" into 14

7 years agoMerge "voicemail: Fix various abuses of mkstemp" into 14
Jenkins2 [Tue, 29 Aug 2017 10:16:00 +0000 (05:16 -0500)] 
Merge "voicemail: Fix various abuses of mkstemp" into 14

7 years agoMerge "res/res_pjsip_session: allow SDP answer to be regenerated" into 14
Joshua Colp [Mon, 28 Aug 2017 12:12:20 +0000 (07:12 -0500)] 
Merge "res/res_pjsip_session: allow SDP answer to be regenerated" into 14

7 years agoMerge "alembic: Add dtls_fingerprint column in ps_endpoints table" into 14
Jenkins2 [Mon, 28 Aug 2017 11:42:54 +0000 (06:42 -0500)] 
Merge "alembic: Add dtls_fingerprint column in ps_endpoints table" into 14

7 years agovoicemail: Fix various abuses of mkstemp
Sean Bright [Fri, 25 Aug 2017 18:44:35 +0000 (14:44 -0400)] 
voicemail: Fix various abuses of mkstemp

mkstemp() returns a unique filename, but appending an extension to that
filename does not guarantee uniqueness. Instead, use mkdtemp() and we
can put whatever extension we want on the files that we create inside
the directory.

In the case of app_minivm, we also now properly clean up any temporary
files that we create.

ASTERISK-20858 #close
Reported by: Walter Doekes

Change-Id: I30ad04f0e115f0b11693ff678ba5184d8b938e43

7 years agoapp_record: Resolve some absolute vs. relative filename bugs
Sean Bright [Fri, 25 Aug 2017 17:20:16 +0000 (13:20 -0400)] 
app_record: Resolve some absolute vs. relative filename bugs

If the Record() application is called with a relative filename that
includes directories, we were not properly creating the intermediate
directories and Record() would fail.

Secondarily, updated the documentation for RECORDED_FILE to mention
that it does not include a filename extension.

Finally, rewrote the '%d' functionality to be a bit more straight
forward and less noisy.

ASTERISK-16777 #close
Reported by: klaus3000

Change-Id: Ibc2640cba3a8c7f17d97b02f76b7608b1e7ffde2

7 years agoMerge "app_queue: Evaluate realtime queues when running dialplan functions" into 14
Joshua Colp [Fri, 25 Aug 2017 16:40:15 +0000 (11:40 -0500)] 
Merge "app_queue: Evaluate realtime queues when running dialplan functions" into 14

7 years agoMerge "app_voicemail: Honor escape digits in "greeting only" mode" into 14
Joshua Colp [Fri, 25 Aug 2017 13:27:15 +0000 (08:27 -0500)] 
Merge "app_voicemail: Honor escape digits in "greeting only" mode" into 14

7 years agores/res_pjsip_session: allow SDP answer to be regenerated
Torrey Searle [Mon, 21 Aug 2017 09:28:52 +0000 (11:28 +0200)] 
res/res_pjsip_session: allow SDP answer to be regenerated

If an SDP answer hasn't been sent yet, it's legal to change it.
This is required for PJSIP_DTMF_MODE to work correctly, and can
also have use in the future for updating codecs too.

ASTERISK-27209 #close

Change-Id: Idbbfb7cb3f72fbd96c94d10d93540f69bd51e7a1

7 years agoalembic: Add dtls_fingerprint column in ps_endpoints table
Florian Floimair [Wed, 23 Aug 2017 15:01:09 +0000 (17:01 +0200)] 
alembic: Add dtls_fingerprint column in ps_endpoints table

The ps_endpoints table was missing the dtls_fingerprint column
introduced with commit adba2a8d7fd.

ASTERISK-27168 #close

Change-Id: I9cb5006f7f50718b5239919562773adabb334cfd

7 years agoapp_queue: Evaluate realtime queues when running dialplan functions
Sean Bright [Thu, 24 Aug 2017 14:42:24 +0000 (10:42 -0400)] 
app_queue: Evaluate realtime queues when running dialplan functions

ASTERISK-19103 #close
Reported by: Jim Van Meggelen

Change-Id: I4bd32a9d1fcebb8ac56bff0e084d4f53e31b692b

7 years agoapp_voicemail: Honor escape digits in "greeting only" mode
Sean Bright [Wed, 23 Aug 2017 14:19:35 +0000 (10:19 -0400)] 
app_voicemail: Honor escape digits in "greeting only" mode

ASTERISK-21241 #close
Reported by: Eelco Brolman
Patches:
Patch uploaded by Eelco Brolman (License 6442)

Change-Id: Icbe39b5c82a49b46cf1d168dc17766f3d84f54fe

7 years agores_smdi: Clean up memory leak
Sean Bright [Thu, 24 Aug 2017 13:35:45 +0000 (09:35 -0400)] 
res_smdi: Clean up memory leak

Change-Id: I1e33290929e1aa7c5b9cb513f8254f2884974de8

7 years agoMerge "bridge_softmix.c: Remove always true test." into 14
Jenkins2 [Wed, 23 Aug 2017 16:38:18 +0000 (11:38 -0500)] 
Merge "bridge_softmix.c: Remove always true test." into 14

7 years agobridge_softmix.c: Remove always true test.
Richard Mudgett [Fri, 11 Aug 2017 16:40:46 +0000 (11:40 -0500)] 
bridge_softmix.c: Remove always true test.

Change-Id: I26238df2ff0d0f6dfe95c3aa35da588f1ee71727

7 years agoapp_queue: Fix initial hold time queue statistic
Sungtae Kim [Thu, 17 Aug 2017 21:46:49 +0000 (23:46 +0200)] 
app_queue: Fix initial hold time queue statistic

Fixed to use correct initial value and fixed to use the
correct queue info to check the first value.

ASTERISK-27204

Change-Id: Ia9e36c828e566e1cc25c66f73307566e4acb8e73

7 years agoMerge "res_xmpp: fix inverted return code check in OAuth" into 14
Jenkins2 [Tue, 22 Aug 2017 12:50:38 +0000 (07:50 -0500)] 
Merge "res_xmpp: fix inverted return code check in OAuth" into 14

7 years agoMerge "res_calendar_icalendar: Properly handle recurring events" into 14
Joshua Colp [Tue, 22 Aug 2017 10:11:19 +0000 (05:11 -0500)] 
Merge "res_calendar_icalendar: Properly handle recurring events" into 14

7 years agores_xmpp: fix inverted return code check in OAuth
Michael Kuron [Sun, 20 Aug 2017 13:15:37 +0000 (15:15 +0200)] 
res_xmpp: fix inverted return code check in OAuth

fetch_access_token calls func_curl via ast_func_read. The latter returns 0 upon
success and -1 if the function is not available.
This commit inverts the return code check so that an error is printed if the
module is not loaded and not if it is loaded.

ASTERISK-27207 #close

Change-Id: I9ef903f80702d1218e8701f65a4e5e918e6548fb

7 years agores_calendar_icalendar: Properly handle recurring events
Sean Bright [Thu, 17 Aug 2017 17:00:09 +0000 (13:00 -0400)] 
res_calendar_icalendar: Properly handle recurring events

When looking for recurring events, use the correct end time based on the
configured 'timeframe.'

ASTERISK-27174 #close
Reported by: Mark Thompson

Change-Id: Id90c3cfc79d561a5521d79be176683e225f2edef

7 years agoFix downloader not working with curl
George Joseph [Wed, 16 Aug 2017 20:43:10 +0000 (14:43 -0600)] 
Fix downloader not working with curl

The codec/dpma downloader wasn't handling curl correctly.  The logic
that transforms makeopts into a bash-sourceable file wasn't
handling the make 'or' command in DOWNLOAD_TIMEOUT so bash was
looking for an 'or' command.

That logic has been eliminated.  Instead of trying to transform
and source makeopts, the downloader now calls a make scriptlet
to print the value of a specific variable.  This way, make handles
the ors (or any other make construct that happens to creep into
that file).

ASTERISK-27202
Reported by: Sean McCord

Change-Id: Iadfb6693528e4d4da7b8bb201fa66da2c71c7f99

7 years agoMerge "configure: Check cache for valid pjproject tarball before downloading." into 14
Jenkins2 [Wed, 16 Aug 2017 12:11:22 +0000 (07:11 -0500)] 
Merge "configure: Check cache for valid pjproject tarball before downloading." into 14