]> git.ipfire.org Git - thirdparty/asterisk.git/log
thirdparty/asterisk.git
5 years agopjproject: Configurable setting for cnonce to include hyphens or not
Dan Cropp [Wed, 21 Aug 2019 15:58:00 +0000 (10:58 -0500)] 
pjproject: Configurable setting for cnonce to include hyphens or not

NEC SIP Station interface with authenticated registration only supports cnonce
up to 32 characters.  In Linux, PJSIP would generate 36 character cnonce
which included hyphens.  Teluu developed this patch adding a compile time
setting to default to not include the hyphens.  They felt it best to still
generate the UUID and strip the hyphens.
They have indicated it will be part of PJSIP 2.10.

ASTERISK-28509
Reported-by: Dan Cropp
Change-Id: Ibdfcf845d4f8c0a14df09fd983b11f2d72c5f470

5 years agoMerge "res_ari.c: Prefer exact handler match over wildcard" into 16
Friendly Automation [Wed, 21 Aug 2019 12:56:12 +0000 (07:56 -0500)] 
Merge "res_ari.c:  Prefer exact handler match over wildcard" into 16

5 years agores_ari.c: Prefer exact handler match over wildcard
George Joseph [Tue, 20 Aug 2019 18:04:56 +0000 (12:04 -0600)] 
res_ari.c:  Prefer exact handler match over wildcard

Given the following request path and 2 handler paths...
Request: /channels/externalMedia
Handler: /channels/{channelId}      "wildcard"
Handler: /channels/externalmedia    "non-wildcard"

...if /channels/externalMedia was registered as a handler after
/channels/{channelId} as shown above, the request would automatically
match the wildcard handler and attempt to parse "externalMedia" into
the channelId variable which isn't what was intended.  It'd work
if the non-wildard entry was defined in rest-api/api-docs/channels.json
before the wildcard entry but that makes the json files
order-dependent which isn't a good thing.

To combat this issue, the search loop saves any wildcard match but
continues looking for exact matches at the same level.  If it finds
one, it's used.  If it hasn't found an exact match at the end of
the current level, the wildcard is used.  Regardless, after
searching the current level, the wildcard is cleared so it won't
accidentally match for a different object or a higher level.

BTW, it's currently not possible for more than 1 wildcard entry
to be defined for a level.  For instance, there couldn't be:
Handler: /channels/{channelId}
Handler: /channels/{channelName}
We wouldn't know which one to match.

Change-Id: I574aa3cbe4249c92c30f74b9b40e750e9002f925

5 years agoaudiohook.c: Substitute silence for unavailable audio frames
Sean Bright [Fri, 9 Aug 2019 20:53:03 +0000 (16:53 -0400)] 
audiohook.c: Substitute silence for unavailable audio frames

There are 4 scenarios to consider when capturing audio from a channel
with an audiohook:

 1. There is no rx and no tx audio, so return nothing.
 2. There is rx but no tx audio, so return rx.
 3. There is tx but no rx audio, so return tx.
 4. There is rx and tx audio, so mix them and return.

The file passed as the primary argument to MixMonitor will be written to
in scenarios 2, 3, and 4. However, if you pass the r() and t() options
to MixMonitor, a frame will only be written to the r() file if there was
rx audio and a frame will only be written to the t() file if there was
tx audio.

If you subsequently take the r() and t() files and try to mix them, the
sides of the conversation will 'drift' and be non-representative of the
user experience.

This patch adds a new 'S' option to MixMonitor that injects a frame of
silence on either the r() side or the t() side of the channel so that
when later mixed, there is no such drift.

Change-Id: Ibf5ed73a811087727bd561a89a59f4447b4ee20e

5 years agoapp_voicemail/IMAP: check mailstream not NULL in leave_voicemail
Alexei Gradinari [Wed, 14 Aug 2019 19:52:01 +0000 (15:52 -0400)] 
app_voicemail/IMAP: check mailstream not NULL in leave_voicemail

The function leave_voicemail checks if expungeonhangup is set,
but does not check if IMAP stream is closed,
so it could call imap function with NULL stream.
This leads to segfault.

ASTERISK-28505 #close

Change-Id: Ib66c57c1f1ba97774e447b36349198e2626a8d7c

5 years agomenuselect: Fix curses build on Gentoo Linux
Sean Bright [Fri, 9 Aug 2019 10:51:28 +0000 (06:51 -0400)] 
menuselect: Fix curses build on Gentoo Linux

Because keypad() is exported by libtinfo, it needs to be explicitly
added to the linker options.

ASTERISK-28487 #close

Change-Id: I6c2ad5b95f422c263d078b5c0e84c111807dffc6

5 years agoMerge "srtp: Fix possible race condition, and add NULL checks" into 16
George Joseph [Fri, 9 Aug 2019 12:51:26 +0000 (07:51 -0500)] 
Merge "srtp: Fix possible race condition, and add NULL checks" into 16

5 years agoMerge "cdr / cel: Use event time at event creation instead of processing." into 16
George Joseph [Thu, 8 Aug 2019 18:26:46 +0000 (13:26 -0500)] 
Merge "cdr / cel: Use event time at event creation instead of processing." into 16

5 years agoCI: Escape backslashes in printenv/sort/tr
George Joseph [Thu, 8 Aug 2019 17:10:11 +0000 (11:10 -0600)] 
CI: Escape backslashes in printenv/sort/tr

Change-Id: I52be64c8f6af2bbe15148a856d1f10cb113e1e94
(cherry picked from commit c6558e09af3ac15b31377de735cc96d8df0275a7)

5 years agosrtp: Fix possible race condition, and add NULL checks
Kevin Harwell [Wed, 7 Aug 2019 22:54:34 +0000 (17:54 -0500)] 
srtp: Fix possible race condition, and add NULL checks

Somehow it's possible for the srtp session object to be NULL even though the
Asterisk srtp object itself is valid. When this happened it would cause a
crash down in the srtp code when attempting to protect or unprotect data.

After looking at the code there is at least one spot that makes this situation
possible. If Asterisk fails to unprotect the data, and after several retries
it still can't then the srtp->session gets freed, and set to NULL while still
leaving the Asterisk srtp object around. However, according to the original
issue reporter this does not appear to be their situation since they found
no errors logged stating the above happened (which Asterisk does for that
situation).

An issue was found however, where a possible race condition could occur between
the pjsip incoming negotiation, and the receiving of RTP packets. Both places
could attempt to create/setup srtp for the same rtp instance at the same time.
This potentially could be the cause of the problem as well.

Given the above this patch adds locking around srtp setup for a given rtp, or
rtcp instance. NULL checks for the session have also been added within the
protect and unprotect functions as a precaution. These checks should at least
stop Asterisk from crashing if it gets in this situation again.

This patch also fixes one other issue noticed during investigation. When doing
a replace the old object was freed before creating the replacement. If the new
replacement object failed to create then the rtp/rtcp instance would now point
to freed srtp data which could potentially cause a crash as well when the next
attempt to reference it was made. This is now fixed so the old srtp object is
kept upon replacement failure.

Lastly, more logging has been added to help diagnose future issues.

ASTERISK-28472

Change-Id: I240e11cbb1e9ea8083d59d50db069891228fe5cc

5 years agoCI: Add "throttle" label and "skip_gate" capability
George Joseph [Thu, 8 Aug 2019 12:12:18 +0000 (06:12 -0600)] 
CI:  Add "throttle" label and "skip_gate" capability

To make throttling by label fully active, the "throttle" option
has to be specified with a specific label.

You can now specify "skip_gate" in the Gerrit comments when you
do a +2 code review to tell Jenkins not to actually run the
gate.  You'd do this if you plan to manually merge the change.

Also updated the "printenv" debug output to better sort multi-line
comments.

Change-Id: I4c0b1085acec4805f2ca207eebac50aad81f27e2

5 years agoMerge "CI: Make node labels job-specific" into 16
Friendly Automation [Wed, 7 Aug 2019 16:19:20 +0000 (11:19 -0500)] 
Merge "CI:  Make node labels job-specific" into 16

5 years agocdr / cel: Use event time at event creation instead of processing.
Joshua Colp [Mon, 5 Aug 2019 12:23:53 +0000 (09:23 -0300)] 
cdr / cel: Use event time at event creation instead of processing.

When updating times on CDR or CEL records using the time at which
it is done can result in times being incorrect if the system is
heavily loaded and stasis message processing is delayed.

This change instead makes it so CDR and CEL use the time at which
the stasis messages that drive the systems are created. This allows
them to be backed up while still producing correct records.

ASTERISK-28498

Change-Id: I6829227e67aefa318efe5e183a94d4a1b4e8500a

6 years agoMerge "various modules: json integer overflow" into 16
George Joseph [Tue, 6 Aug 2019 16:07:22 +0000 (11:07 -0500)] 
Merge "various modules: json integer overflow" into 16

6 years agoCI: Make node labels job-specific
George Joseph [Tue, 6 Aug 2019 15:40:54 +0000 (09:40 -0600)] 
CI:  Make node labels job-specific

Originally, the eligible nodes for a job were labelled only by
"swdev-docker".  So basically any node could run any job.  We had
found that allowing a node to run more than 1 gate at a time was
problematic so we limited the nodes to processing 1 job at a time.
With the creation of the Asterisk 17 branches however, we now have
so many active branches that getting checks and gates through in
a timely manner is problematic when a node can run only 1 job
at a time.

Now the nodes are also labelled by the job type they can run.
For instance: "asterisk-check", "asterisk-gate", etc.  With the
"Throttle Concurrent Builds" plugin, we can now allow a node to
run more than 1 job BUT throttle by job type.  For instance:
  Allow 2 jobs but only 1 asterisk-gate at a time.
Now a node can run 2 checks or 1 check and 1 gate or 1 gate but
not 2 gates at a time.

Change-Id: I2032bf6afbcec5c341d9b852214c0c812d3d6db5

6 years agoMerge "res_musiconhold: Use a vector instead of custom array allocation" into 16
Friendly Automation [Tue, 6 Aug 2019 15:17:06 +0000 (10:17 -0500)] 
Merge "res_musiconhold: Use a vector instead of custom array allocation" into 16

6 years agoMerge "main/udptl.c: correctly handle udptl sequence wrap around" into 16
George Joseph [Tue, 6 Aug 2019 14:48:25 +0000 (09:48 -0500)] 
Merge "main/udptl.c: correctly handle udptl sequence wrap around" into 16

6 years agovarious modules: json integer overflow
Kevin Harwell [Thu, 1 Aug 2019 21:22:01 +0000 (16:22 -0500)] 
various modules: json integer overflow

There were still a few places in the code that could overflow when "packing"
a json object with a value outside the base type integer's range. For instance:

unsigned int value = INT_MAX + 1
ast_json_pack("{s: i}", value);

would result in a negative number being "packed". In those situations this patch
alters those values to a ast_json_int_t, which widens the value up to a long or
long long.

ASTERISK-28480

Change-Id: Ied530780d83e6f1772adba0e28d8938ef30c49a1

6 years agores_musiconhold: Use a vector instead of custom array allocation
Sean Bright [Mon, 29 Jul 2019 15:15:22 +0000 (11:15 -0400)] 
res_musiconhold: Use a vector instead of custom array allocation

Change-Id: Ic476a56608b1820ca93dcf68d10cd76fc0b94141

6 years agores_pjsip: Fix multiple of the same contact in "pjsip show contacts".
Joshua Colp [Thu, 1 Aug 2019 10:07:45 +0000 (10:07 +0000)] 
res_pjsip: Fix multiple of the same contact in "pjsip show contacts".

The code for gathering contacts could result in the same contact
being retrieved and added to the list multiple times. The container
which stores the contacts to display will now only allow a contact
to be added to it once instead of multiple times.

ASTERISK-28228

Change-Id: I805185cfcec03340f57d2b9e6cc43c49401812df

6 years agoMerge "res_musiconhold: Use ast_pipe_nonblock() wrapper" into 16
Friendly Automation [Wed, 31 Jul 2019 12:58:45 +0000 (07:58 -0500)] 
Merge "res_musiconhold: Use ast_pipe_nonblock() wrapper" into 16

6 years agoMerge "manager: Send fewer packets" into 16
Friendly Automation [Wed, 31 Jul 2019 12:34:38 +0000 (07:34 -0500)] 
Merge "manager: Send fewer packets" into 16

6 years agomain/udptl.c: correctly handle udptl sequence wrap around
Torrey Searle [Wed, 17 Jul 2019 12:35:50 +0000 (14:35 +0200)] 
main/udptl.c: correctly handle udptl sequence wrap around

incorrect handling of UDPTL squence number wrap arounds causes
loss of packets every time the wrap around occurs

ASTERISK-28483 #close

Change-Id: I33caeb2bf13c574a1ebb81714b58907091d64234

6 years agomanager: Send fewer packets
Sean Bright [Wed, 24 Jul 2019 20:12:49 +0000 (16:12 -0400)] 
manager: Send fewer packets

The functions that build manager message headers do so in a way that
results in a single messages being split across multiple packets. While
this doesn't matter to the remote end, it makes network captures noisier
and harder to follow, and also means additional system calls.

With this patch, we build up more of the message content into the TLS
buffer before flushing to the network. This change is completely
internal to the manager code and does not affect any of the existing
API's consumers.

Change-Id: I50128b0769060ca5272dbbb5e60242d131eaddf9

6 years agores_musiconhold: Use ast_pipe_nonblock() wrapper
Sean Bright [Mon, 29 Jul 2019 15:04:00 +0000 (11:04 -0400)] 
res_musiconhold: Use ast_pipe_nonblock() wrapper

Change-Id: Ib0a4b41e5ececbe633079e2d8c2b66c031d2d1f2

6 years agoloader.c: Fix possible SEGV when a module fails to register
George Joseph [Mon, 29 Jul 2019 13:31:56 +0000 (07:31 -0600)] 
loader.c:  Fix possible SEGV when a module fails to register

When a module fails to register itself (usually a coding error
in the module), dlerror() can return NULL.  We weren't checking
for that in load_dlopen() before trying to strdup the error message
so a SEGV was thrown.  dlerror() is now surrounded with an S_OR
so we don't SEGV.

Change-Id: Ie0fb9316f08a321434f3f85aecf3c7d2ede8b956

6 years agoMerge "CI: Don't enable non-core modules in Certified branches" into 16
George Joseph [Fri, 26 Jul 2019 14:47:47 +0000 (09:47 -0500)] 
Merge "CI:  Don't enable non-core modules in Certified branches" into 16

6 years agoCI: Don't enable non-core modules in Certified branches
George Joseph [Wed, 24 Jul 2019 20:15:27 +0000 (14:15 -0600)] 
CI:  Don't enable non-core modules in Certified branches

We don't support non-core modules for Certified releases but we
were enabling them for CI builds which was causing lots of test
failures.  Now we don't.

Change-Id: I0b3254c08a2479f3d39151690350cce5ce5ad766

6 years agores_config_sqlite3: Only join threads that we started
Sean Bright [Tue, 23 Jul 2019 17:58:31 +0000 (13:58 -0400)] 
res_config_sqlite3: Only join threads that we started

ASTERISK-28477 #close
Reported by: Dennis

ASTERISK-28478 #close
Reported by: Dennis

Change-Id: I77347ad46a86dc5b35ed68270cee56acefb4f475

6 years agoMerge "openr2(6/6): Set hangup cause" into 16
George Joseph [Wed, 24 Jul 2019 00:41:56 +0000 (19:41 -0500)] 
Merge "openr2(6/6): Set hangup cause" into 16

6 years agoMerge "openr2(5/6): added cli command -- mfcr2 destroy link <index>" into 16
George Joseph [Tue, 23 Jul 2019 23:43:13 +0000 (18:43 -0500)] 
Merge "openr2(5/6): added cli command -- mfcr2 destroy link <index>" into 16

6 years agoMerge "openr2(4/6): added new cli command -- mfcr2 show links" into 16
Friendly Automation [Tue, 23 Jul 2019 21:45:10 +0000 (16:45 -0500)] 
Merge "openr2(4/6): added new cli command -- mfcr2 show links" into 16

6 years agoMerge "openr2(3/6): Convert r2links to standard Asterisk AST_LIST*" into 16
Friendly Automation [Tue, 23 Jul 2019 20:34:43 +0000 (15:34 -0500)] 
Merge "openr2(3/6): Convert r2links to standard Asterisk AST_LIST*" into 16

6 years agoMerge "openr2(2/6): Stop polling channels when DAHDI returns -ENODEV (e.g: plug-out...
George Joseph [Tue, 23 Jul 2019 19:25:50 +0000 (14:25 -0500)] 
Merge "openr2(2/6): Stop polling channels when DAHDI returns -ENODEV (e.g: plug-out)" into 16

6 years agoMerge "openr2(1/6): bugfix in configuration saving" into 16
Friendly Automation [Tue, 23 Jul 2019 17:00:19 +0000 (12:00 -0500)] 
Merge "openr2(1/6): bugfix in configuration saving" into 16

6 years agoMerge "chan_pjsip: Transmit REFER waits for the REFER result setting TRANSFERSTATUS...
George Joseph [Tue, 23 Jul 2019 14:18:30 +0000 (09:18 -0500)] 
Merge "chan_pjsip:  Transmit REFER waits for the REFER result setting TRANSFERSTATUS" into 16

6 years agoopenr2(6/6): Set hangup cause
Leonid Fainshtein [Sun, 12 May 2019 18:29:40 +0000 (21:29 +0300)] 
openr2(6/6): Set hangup cause

Change-Id: I94dc38920e6e77cc73062648f62fdd613d0d1452
Signed-off-by: Oron Peled <oron.peled@xorcom.com>
6 years agoopenr2(5/6): added cli command -- mfcr2 destroy link <index>
Tzafrir Cohen [Mon, 22 Apr 2019 19:14:32 +0000 (22:14 +0300)] 
openr2(5/6): added cli command -- mfcr2 destroy link <index>

Change-Id: I452d6a853bcd8c6e194455b19e5e017713e9c0fe
Signed-off-by: Oron Peled <oron.peled@xorcom.com>
6 years agoopenr2(4/6): added new cli command -- mfcr2 show links
Tzafrir Cohen [Mon, 22 Apr 2019 15:27:23 +0000 (18:27 +0300)] 
openr2(4/6): added new cli command -- mfcr2 show links

* This command show the MFC/R2 links

Change-Id: I213822e1b7ef9c05bd89a2ba62df8e0856ce9f84
Signed-off-by: Oron Peled <oron.peled@xorcom.com>
6 years agoopenr2(3/6): Convert r2links to standard Asterisk AST_LIST*
Tzafrir Cohen [Mon, 22 Apr 2019 12:27:52 +0000 (15:27 +0300)] 
openr2(3/6): Convert r2links to standard Asterisk AST_LIST*

Change-Id: Ibcb2401515a58782a1488c0b9efbed201c3f3a17
Signed-off-by: Oron Peled <oron.peled@xorcom.com>
6 years agoopenr2(2/6): Stop polling channels when DAHDI returns -ENODEV (e.g: plug-out)
Tzafrir Cohen [Mon, 22 Apr 2019 12:33:16 +0000 (15:33 +0300)] 
openr2(2/6): Stop polling channels when DAHDI returns -ENODEV (e.g: plug-out)

Otherwise, OpenR2 threads go crazy and consume almost all CPU resources

Change-Id: I10a41f617613fe7399c5bdced5c64a2751173f28
Signed-off-by: Oron Peled <oron.peled@xorcom.com>
6 years agoopenr2(1/6): bugfix in configuration saving
Tzafrir Cohen [Mon, 22 Apr 2019 15:02:23 +0000 (18:02 +0300)] 
openr2(1/6): bugfix in configuration saving

Details:
  - The memcpy() call copied part of "dahdi_conf" and not "dahdi_conf.mfcr2"
  - As a result, the memcmp() in dahdi_r2_get_link() always fails
  - This cause dahdi_r2_get_link() to create new link for every channel
    (instead of a new link for every ~30 channels)
  - With the fix, far less links are generated -- so we use far less threads

Change-Id: I7259dd6272f5e46e8a6c7f5bf3e8c2ec01b8c132
Signed-off-by: Oron Peled <oron.peled@xorcom.com>
6 years agoCI: Add cleanWs to cleanup steps in jenkinsfiles
George Joseph [Fri, 19 Jul 2019 16:20:38 +0000 (10:20 -0600)] 
CI: Add cleanWs to cleanup steps in jenkinsfiles

We're at the point where there are enough Jenkins jobs for
Asterisk branches than even cleaned checkouts of Asterisk
will add up to more disk space than is available on the
in-memory workspace mount.  Since we archive all relevent
artifacts anyway, there's no need to keep the workspace
around after the job finishes, whether it succeeds or fails.

Change-Id: I1cd3b73ebb045a987df0f62526d152a510210c39

6 years agoMerge "CI: Add install-headers to the install make targets" into 16
George Joseph [Fri, 19 Jul 2019 16:05:08 +0000 (11:05 -0500)] 
Merge "CI:  Add install-headers to the install make targets" into 16

6 years agochan_pjsip: Transmit REFER waits for the REFER result setting TRANSFERSTATUS
Dan Cropp [Tue, 2 Apr 2019 19:42:44 +0000 (14:42 -0500)] 
chan_pjsip:  Transmit REFER waits for the REFER result setting TRANSFERSTATUS

Previously, when a Transfer (REFER) was performed, chan_pjsip would set
the TRANSFERSTATUS to SUCCESS when the REFER was queued up.  This did not
reflect a successful/unsuccessful transfer the way chan_sip did.
Added a callback module to process the refer subscription information.

Now depends on res_pjsip_pubsub so call transfer progress can be monitored
and reported

ASTERISK-26968 #close
Reported-by: Dan Cropp
Change-Id: If6c27c757c66f71e8b75e3fe49da53ebe62395dc

6 years agoREADME.md: Update year
Rodrigo Ramírez Norambuena [Fri, 5 Jul 2019 00:46:36 +0000 (20:46 -0400)] 
README.md: Update year

Change-Id: I746fb94d112c7d797e206bca0fd1e13fcd26bae3

6 years agoMerge "sched: Don't allow ast_sched_del to deadlock ast_sched_runq from same thread...
Friendly Automation [Fri, 19 Jul 2019 13:41:32 +0000 (08:41 -0500)] 
Merge "sched: Don't allow ast_sched_del to deadlock ast_sched_runq from same thread" into 16

6 years agoCI: Add install-headers to the install make targets
George Joseph [Fri, 19 Jul 2019 13:38:39 +0000 (07:38 -0600)] 
CI:  Add install-headers to the install make targets

The testsuite actually needs the headers installed to run
it's self_test.

Change-Id: Ice41d331131b876ad4a9c056085fe6aac34b32b2

6 years agoMerge "Build: Add separate header install/uninstall targets" into 16
Joshua Colp [Fri, 19 Jul 2019 12:42:39 +0000 (07:42 -0500)] 
Merge "Build: Add separate header install/uninstall targets" into 16

6 years agoMerge "manager: Log AMI actions" into 16
Friendly Automation [Fri, 19 Jul 2019 12:30:11 +0000 (07:30 -0500)] 
Merge "manager: Log AMI actions" into 16

6 years agoUpdate CHANGES and UPGRADE.txt for 16.5.0
Asterisk Development Team [Thu, 18 Jul 2019 11:07:20 +0000 (06:07 -0500)] 
Update CHANGES and UPGRADE.txt for 16.5.0

6 years agosched: Don't allow ast_sched_del to deadlock ast_sched_runq from same thread
Walter Doekes [Wed, 17 Jul 2019 13:06:12 +0000 (15:06 +0200)] 
sched: Don't allow ast_sched_del to deadlock ast_sched_runq from same thread

When fixing ASTERISK~24212, a change was done so a scheduled callback could not
be removed while it was running. The caller of ast_sched_del would have to wait.

However, when the caller of ast_sched_del is the callback itself (however wrong
this might be), this new check would cause a deadlock: it would wait forever
for itself.

This changeset introduces an additional check: if ast_sched_del is called
by the callback itself, it is immediately rejected (along with an ERROR log and
a backtrace). Additionally, the AST_SCHED_DEL_UNREF macro is adjusted so the
after-ast_sched_del-refcall function is only run if ast_sched_del returned
success.

This should fix the following spurious race condition found in chan_sip:
- thread 1: schedule sip_poke_peer_now (using AST_SCHED_REPLACE)
- thread 2: run sip_poke_peer_now
- thread 2: blank out sched-ID (too soon!)
- thread 1: set sched-ID (too late!)
- thread 2: try to delete the currently running sched-ID

After this fix, an ERROR would be logged, but no deadlocks (in do_monitor) nor
excess calls to sip_unref_peer(peer) (causing double frees of rtp_instances and
other madness) should occur.

(Thanks Richard Mudgett for reviewing/improving this "scary" change.)

Note that this change does not fix the observed race condition: unlocked
access to peer->pokeexpire (and potentially other scheduled items in chan_sip),
causing AST_SCHED_DEL_UNREF to look at a changing id. But it will make the
deadlock go away. And in the observed case, it will not have adverse affects
(like memory leaks) because the scheduled item is removed through a different
path.

ASTERISK-28282

Change-Id: Ic26777fa0732725e6ca7010df17af77a012aa856

6 years agoBuild: Add separate header install/uninstall targets
George Joseph [Tue, 16 Jul 2019 13:15:14 +0000 (07:15 -0600)] 
Build: Add separate header install/uninstall targets

Two new Makefile targets have been added... "install-headers" and
"uninstall-headers" to separately control header installation.
The existing behavior has not changed so "make install" and
"make uninstall" will continue to also install/uninstall the headers.
The new targets were added for forward compatibility with Asterisk 17
in which the headers are no longer installed/uninstalled with the
"install" and "uninstall" targets.

Also corrects an issue where /usr/include/asterisk.h was never
being removed at all.

Change-Id: Ia7399f3a0203a4825fc4a9f43b9034dae9a2b643

6 years agomanager: Log AMI actions
Kevin Harwell [Tue, 9 Jul 2019 19:42:51 +0000 (14:42 -0500)] 
manager: Log AMI actions

When manager debugging is turned on, this patch makes it so incoming AMI actions
are now also logged.

Change-Id: I8047524510e7ac97d99482b2448f8e368f29cd47

6 years agores_rtp_asterisk: Move where DTLS MTU variable is defined.
Joshua Colp [Sun, 14 Jul 2019 18:26:41 +0000 (15:26 -0300)] 
res_rtp_asterisk: Move where DTLS MTU variable is defined.

The DTLS MTU variable is not dependent on pjproject and should
not exist in its block.

Change-Id: I7e97d64dc192f2ac81bfe2b72b8229d321c7d026

6 years agoMerge "chan_sip: Handle invalid SDP answer to T.38 re-invite" into 16
Friendly Automation [Thu, 11 Jul 2019 20:15:49 +0000 (15:15 -0500)] 
Merge "chan_sip: Handle invalid SDP answer to T.38 re-invite" into 16

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

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

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

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

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

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

This change removes this assumption.

ASTERISK-28465

Change-Id: I8b02845b53344c6babe867a3f0a5231045c7ac87

6 years agoMerge "chan_dahdi.c: crash in chan_dahdi" into 16
Joshua Colp [Tue, 2 Jul 2019 13:26:40 +0000 (08:26 -0500)] 
Merge "chan_dahdi.c: crash in chan_dahdi" into 16

6 years agochan_dahdi.c: crash in chan_dahdi
Chris-Savinovich [Mon, 1 Jul 2019 21:57:25 +0000 (16:57 -0500)] 
chan_dahdi.c: crash in chan_dahdi

Fixes a crash in chan_dahdi occurring on 32-bit systems. A previous
patch introduced a variable of type unassigned long long which is 64-bits.
Casting it as 'ast_json_int_t' along with JSON type 'I' makes it work
with 32-bit systems.

ASTERISK-28457

Change-Id: I9cef6b5f2d826fc5c93f2f6a1c997c4e3e6c93fe

6 years agores_pjsip_sdp_rtp: Remove unused variable
Kevin Harwell [Mon, 1 Jul 2019 15:49:56 +0000 (10:49 -0500)] 
res_pjsip_sdp_rtp: Remove unused variable

The variable 'endpoint_caps' in function 'set_caps' is not used, so remove.

ASTERISK-28458

Change-Id: Ia8766d05a0738aecb29dd018302c2dafca5cab34

6 years agoMerge "tcptls.c: Add peer hostname and port to some error messages" into 16
George Joseph [Mon, 1 Jul 2019 15:19:50 +0000 (10:19 -0500)] 
Merge "tcptls.c:  Add peer hostname and port to some error messages" into 16

6 years agoMerge "pjproject_bundled: Add peer information to most SSL/TLS errors" into 16
George Joseph [Mon, 1 Jul 2019 15:18:52 +0000 (10:18 -0500)] 
Merge "pjproject_bundled:  Add peer information to most SSL/TLS errors" into 16

6 years agoMerge "pjproject: Update to 2.9 release" into 16
Kevin Harwell [Thu, 27 Jun 2019 21:52:50 +0000 (16:52 -0500)] 
Merge "pjproject: Update to 2.9 release" into 16

6 years agotcptls.c: Add peer hostname and port to some error messages
George Joseph [Thu, 27 Jun 2019 20:04:27 +0000 (14:04 -0600)] 
tcptls.c:  Add peer hostname and port to some error messages

Where possble, hostname and port has been added to error
messages, mostly on the server side.

ASTERISK-26006
Reported by: Oleksandr Natalenko

Change-Id: Iff4f897277bc36ce8c5b493b71d0a4a7b74e62f0

6 years agopjproject_bundled: Add peer information to most SSL/TLS errors
George Joseph [Thu, 27 Jun 2019 17:46:44 +0000 (11:46 -0600)] 
pjproject_bundled:  Add peer information to most SSL/TLS errors

Most SSL/TLS error messages coming from pjproject now have either
the peer address:port or peer hostname, depending on what was
available at the time and code location where the error was
generated.

ASTERISK-28444
Reported by: Bernhard Schmidt

Change-Id: I41770e8a1ea5e96f6e16b236692c4269ce1ba91e

6 years agoMerge "app_amd: issue with silence suppression fixed" into 16
Kevin Harwell [Thu, 27 Jun 2019 16:33:51 +0000 (11:33 -0500)] 
Merge "app_amd: issue with silence suppression fixed" into 16

6 years agoMerge "sig_pri: Address gcc9 issues" into 16
George Joseph [Tue, 25 Jun 2019 14:08:09 +0000 (09:08 -0500)] 
Merge "sig_pri:  Address gcc9 issues" into 16

6 years agoMerge "CI: New way to determnine libdir" into 16
George Joseph [Tue, 25 Jun 2019 14:06:45 +0000 (09:06 -0500)] 
Merge "CI:  New way to determnine libdir" into 16

6 years agoMerge "res_fax: gateway sends T.38 request to both endpoints if V.21 detected" into 16
Friendly Automation [Mon, 24 Jun 2019 19:11:14 +0000 (14:11 -0500)] 
Merge "res_fax: gateway sends T.38 request to both endpoints if V.21 detected" into 16

6 years agosig_pri: Address gcc9 issues
George Joseph [Mon, 24 Jun 2019 13:30:19 +0000 (07:30 -0600)] 
sig_pri:  Address gcc9 issues

A few more format truncation issues addressed.

Change-Id: I047f373169caaca0eec4889d3c0e5e10f130017a

6 years agoMerge "app_confbridge: Attended transfer event fixup" into 16
Friendly Automation [Fri, 21 Jun 2019 16:24:11 +0000 (11:24 -0500)] 
Merge "app_confbridge:  Attended transfer event fixup" into 16

6 years agoMerge "translate.c do not log WARNING on empty audio frame" into 16
Friendly Automation [Fri, 21 Jun 2019 15:37:49 +0000 (10:37 -0500)] 
Merge "translate.c do not log WARNING on empty audio frame" into 16

6 years agoapp_amd: issue with silence suppression fixed
Nasir Iqbal [Tue, 21 May 2019 06:38:24 +0000 (11:38 +0500)] 
app_amd: issue with silence suppression fixed

Now AMD algorithm will not ignore AST_FRAME_NULL, As I think using manual
wait time instead of `framelength` is enough to fix timeout / TOOLONG issue.

ASTERISK-28419 #close

Change-Id: I16ea2d6295bc99b975e8c092e5f9fbd9214debdb

6 years agoCI: New way to determnine libdir
George Joseph [Wed, 19 Jun 2019 16:58:39 +0000 (10:58 -0600)] 
CI:  New way to determnine libdir

We were using the presence of /usr/lib64 to determine where
shared libraries should be installed.  This only existed on
Redhat based systems and was safe.  If it existed, use it,
otherwise use /usr/lib.

Unfortunately, Ubuntu 19 decided to create a /usr/lib64 BUT
NOT INCLUDE IT IN THE DEFAULT ld.so.conf.  So if anything is
installed there, it won't work.

The new method, just looks for $ID in /etc/os-release and if it's
centos or fedora, uses /usr/lib64 and if ubuntu, uses /usr/lib.

NOTE:  This applies only to the CI scripts.  Normal asterisk
build and install is not affected.

Change-Id: Iad66374b550fd89349bedbbf2b93f8edd195a7c3

6 years agochan_dahdi: Address gcc9 issues
George Joseph [Mon, 17 Jun 2019 17:11:49 +0000 (11:11 -0600)] 
chan_dahdi:  Address gcc9 issues

Fixed format-truncation issues in chan_dahdi.c and
sig_analog.c.  Since they're related to fields provided
by dahdi-tools we can't change the buffer sizes so we're just
checking the return from snprintf and printing an errior if we
overflow.

Change-Id: Idc1f3c1565b88a7d145332a0196074b5832864e5

6 years agotranslate.c do not log WARNING on empty audio frame
Alexei Gradinari [Fri, 14 Jun 2019 20:45:39 +0000 (16:45 -0400)] 
translate.c do not log WARNING on empty audio frame

There is WARNING "no samples for ..." on each Playtones.
The function ast_playtones_start calls ast_activate_generator,
which calls ast_prod.
The function ast_prod calls ast_write with empty audio frame.
In this case it's spam log.

Change-Id: Id4ac309489d9ff281bad02abdef341cecdede660

6 years agoapp_confbridge: Attended transfer event fixup
George Joseph [Mon, 10 Jun 2019 21:58:59 +0000 (15:58 -0600)] 
app_confbridge:  Attended transfer event fixup

When a channel already in a conference bridge is attended transfered
to another extension, or when an existing call is attended
transferred into a conference bridge, we now generate ConfbridgeJoin
and ConfbridgeLeave events for the entering and departing channels.

Change-Id: Id7709cfbceb26fbcb828b2d0d2a6b2fbeaf028e1

6 years agopjproject: Update to 2.9 release
Sean Bright [Thu, 13 Jun 2019 15:11:48 +0000 (11:11 -0400)] 
pjproject: Update to 2.9 release

Relies on https://github.com/asterisk/third-party/pull/4

Change-Id: Iec9cad42cb4ae109a86a3d4dae61e8bce4424ce3

6 years agores_rtp_asterisk: Add support for DTLS packet fragmentation.
Joshua Colp [Tue, 11 Jun 2019 12:26:42 +0000 (09:26 -0300)] 
res_rtp_asterisk: Add support for DTLS packet fragmentation.

This change adds support for larger TLS certificates by allowing
OpenSSL to fragment the DTLS packets according to the configured
MTU. By default this is set to 1200.

This is accomplished by implementing our own BIO method that
supports MTU querying. The configured MTU is returned to OpenSSL
which fragments the packet accordingly. When a packet is to be
sent it is done directly out the RTP instance.

ASTERISK-28018

Change-Id: If2d5032019a28ffd48f43e9e93ed71dbdbf39c06

6 years agoMerge "app_attended_transfer: new application AttendedTransfer" into 16
George Joseph [Wed, 12 Jun 2019 15:43:46 +0000 (10:43 -0500)] 
Merge "app_attended_transfer: new application AttendedTransfer" into 16

6 years agoMerge "app_blind_transfer: new application BlindTransfer" into 16
George Joseph [Wed, 12 Jun 2019 15:43:17 +0000 (10:43 -0500)] 
Merge "app_blind_transfer: new application BlindTransfer" into 16

6 years agoMerge "chan_pjsip.c: Check for channel and session to not be NULL in hangup" into 16
George Joseph [Wed, 12 Jun 2019 13:50:14 +0000 (08:50 -0500)] 
Merge "chan_pjsip.c: Check for channel and session to not be NULL in hangup" into 16

6 years agoMerge "cdr_pgsql: fix error in connection string" into 16
Joshua Colp [Tue, 11 Jun 2019 13:03:23 +0000 (08:03 -0500)] 
Merge "cdr_pgsql: fix error in connection string" into 16

6 years agoMerge "pbx_dundi: added IPv4/IPv6 dual bind support to DUNDi" into 16
George Joseph [Mon, 10 Jun 2019 12:37:23 +0000 (07:37 -0500)] 
Merge "pbx_dundi: added IPv4/IPv6 dual bind support to DUNDi" into 16

6 years agochan_pjsip.c: Check for channel and session to not be NULL in hangup
agupta [Thu, 6 Jun 2019 12:48:18 +0000 (18:18 +0530)] 
chan_pjsip.c: Check for channel and session to not be NULL in hangup

We have seen some rare case of segmentation fault in hangup function
and we could notice that channel pointer was NULL.  Debug log shows
that there is a 200 OK answer and SIP timeout at the same time.  It
looks that while the SIP session was being destroyed due to timeout
call hangup due to answer event lead to race condition and channel
is being destroyed from two different places.  The check ensures we
check it not to be NULL before freeing it.

ASTERISK-25371

Change-Id: I19f6566830640625e08f7b87bfe15758ad33a778

6 years agopbx_dundi: added IPv4/IPv6 dual bind support to DUNDi
Kirsty Tyerman [Tue, 8 Jan 2019 06:14:07 +0000 (16:14 +1000)] 
pbx_dundi: added IPv4/IPv6 dual bind support to DUNDi

ASTERISK-28234
Reported-by: Kirsty Tyerman
Change-Id: I5d6e6b52dbe51415046bb3953fd16f5b421bc2e1

6 years agocdr_pgsql: fix error in connection string
Chris-Savinovich [Tue, 4 Jun 2019 17:41:33 +0000 (12:41 -0500)] 
cdr_pgsql: fix error in connection string

Fixes an error occurring in function pgsql_reconnect() caused when value of
hostname is blank. Which in turn will cause the connection string to look
like this: "host= port=xx", which creates a sintax error. This fix now checks
if the corresponding values for host, port, dbname, and user are blank. Note
that since this is a reconnect function the database library will replace any
missing value pairs with default ones.

ASTERISK-28435

Change-Id: I0a921f99bbd265768be08cd492f04b30855b8423

6 years agoapp_attended_transfer: new application AttendedTransfer
Alexei Gradinari [Tue, 21 May 2019 19:12:55 +0000 (15:12 -0400)] 
app_attended_transfer: new application AttendedTransfer

AttendedTransfer queues up attended transfer to the given extension.

This application can be useful with Custom Dynamic Features.
For example to make attended transfer to a predefined number.

features.conf
;;;
[applicationmap]
my_atxfer => *7,self,GoSub,"my_atxfer,s,1",default
;;;

extensions.conf
;;;
[globals]
DYNAMIC_FEATURES=my_atxfer
TRANSFER_CONTEXT=my_transfer

[my_atxfer]
exten => s,1,AttendedTransfer(1234567890)
   same => n,Return()

[my_transfer]
include => default
;;;

This application also can be used to completly redefine Attended transfer
feature using dialplan. For example:

features.conf
;;;
[featuremap]
atxfer => *7

[applicationmap]
custom_atxfer => *2,self,GoSub,"custom_atxfer,s,1",default
;;;

extensions.conf
;;;
[globals]
DYNAMIC_FEATURES=custom_atxfer
TRANSFER_CONTEXT=my_transfer

[custom_atxfer]
exten => s,1,
   same => n,Playback(pbx-transfer)
   same => n,Read(dest,dial,10,i,3,3)
   same => n,AttendedTransfer(${dest})
   same => n,Return()

[my_transfer]
include => default
;;;

Change-Id: Ie5cfa455d0813cffd5c85a6fb117f07d8f0b903b

6 years agores_fax: gateway sends T.38 request to both endpoints if V.21 detected
Alexei Gradinari [Wed, 29 May 2019 22:54:16 +0000 (18:54 -0400)] 
res_fax: gateway sends T.38 request to both endpoints if V.21 detected

According T.38 Gateway 'Use case 3'
https://wiki.asterisk.org/wiki/display/AST/T.38+Gateway
T.38 Gateway should send T.38 negotiation request to called endpoint
if FAX preamble (using V.21 detector) generated by called endpoint.
But it does not, because fax_gateway_detect_v21 constructs T.38
negotiation request, but forwards it only to other channel,
not to the channel on which FAX preamble is detected.

Some SIP endpoints could be improperly configured to rely on the other side
to initiate T.38 re-INVITEs.

With this patch the T.38 Gateway tries to negotiate with both sides
by sending T.38 negotiation request to both endpoints supported T.38.

Change-Id: I73bb24799bfe1a48adae9c034a2edbae54cc2a39

6 years agoMerge "res_fax: fix segfault on inactive "reserved" fax session" into 16
Joshua Colp [Tue, 4 Jun 2019 10:29:39 +0000 (05:29 -0500)] 
Merge "res_fax: fix segfault on inactive "reserved" fax session" into 16

6 years agoMerge "app_readexten: new option 'p' to stop reading on '#' key" into 16
Friendly Automation [Mon, 3 Jun 2019 14:41:19 +0000 (09:41 -0500)] 
Merge "app_readexten: new option 'p' to stop reading on '#' key" into 16

6 years agoMerge "res_fax: add channel name to CLI 'fax show session'" into 16
Friendly Automation [Mon, 3 Jun 2019 14:33:32 +0000 (09:33 -0500)] 
Merge "res_fax: add channel name to CLI 'fax show session'" into 16

6 years agoMerge "pjsip: replace 180 by 183 if SDP negotiation has completed" into 16
Friendly Automation [Mon, 3 Jun 2019 13:56:48 +0000 (08:56 -0500)] 
Merge "pjsip: replace 180 by 183 if SDP negotiation has completed" into 16

6 years agoUpdate CHANGES and UPGRADE.txt for 16.4.0
Asterisk Development Team [Thu, 30 May 2019 17:08:23 +0000 (12:08 -0500)] 
Update CHANGES and UPGRADE.txt for 16.4.0

6 years agoMerge "build: Fix file format in CHANGES-staging." into 16
Friendly Automation [Thu, 30 May 2019 10:22:33 +0000 (05:22 -0500)] 
Merge "build: Fix file format in CHANGES-staging." into 16

6 years agores_fax: add channel name to CLI 'fax show session'
Alexei Gradinari [Tue, 28 May 2019 22:15:40 +0000 (18:15 -0400)] 
res_fax: add channel name to CLI 'fax show session'

This patch adds a channel name to output of CLI 'fax show session'
and also expands the channel name field up to 30 characters on
CLI 'fax show sessions'

Change-Id: Id059c43ff41811f5e76712b83fb63b8f246da953

6 years agores_fax: fix segfault on inactive "reserved" fax session
Alexei Gradinari [Tue, 28 May 2019 20:35:17 +0000 (16:35 -0400)] 
res_fax: fix segfault on inactive "reserved" fax session

The change #10017 "Handle fax gateway being started more than once"
introdiced a bug which leads to segfault in res_fax_spandsp.

The res_fax_spandsp module does not support reserving sessions, so
fax_session_reserve returns a fax session with state AST_FAX_STATE_INACTIVE.

The fax_gateway_start does not create a real fax session if the fax session
is already present and the state is not AST_FAX_STATE_RESERVED.
But the "reserved" session created for res_fax_spandsp has state
AST_FAX_STATE_INACTIVE, so fax_gateway_start not starting.

Then when fax_gateway_framehook is called and gateway T.38 state is
NEGOTIATED the call of gateway->s->tech->write(gateway->s, f) leads to
segfault, because session tech_pvt is not set, i.e. the tech session
was not initialized/started.

This patch adds check also on AST_FAX_STATE_INACTIVE to the "reserved"
session created for res_fax_spandsp will start.

This patch also adds extra check and log ERROR if tech_pvt is not set
before call tech->write.

ASTERISK-27981 #close

Change-Id: Ife3e65e5f18c902db2ff0538fccf7d28f88fa803

6 years agobuild: Fix file format in CHANGES-staging.
Ben Ford [Fri, 24 May 2019 14:01:14 +0000 (09:01 -0500)] 
build: Fix file format in CHANGES-staging.

One of the change files doesn't conform to the format that the release
scripts need in order to parse it.

Change-Id: Ie0b634cf27e4cbc671b9fe92993b6f2ecf60254c

6 years agochan_dahdi: add missing include.
Guido Falsi [Thu, 23 May 2019 14:44:07 +0000 (16:44 +0200)] 
chan_dahdi: add missing include.

After some definitions have been moved to asterisk/mwi.h the files
channels/chan_dahdi.h channels/sig_pri.c are missing this new
include.

ASTERISK-28427 #close

Change-Id: Ia8cc595eeda653324643f40dcd9799d4c3f0ac91