]> git.ipfire.org Git - thirdparty/asterisk.git/log
thirdparty/asterisk.git
7 years agoBuildSystem: Enable Jansson in Solaris 11.
Alexander Traud [Sat, 28 Jul 2018 13:08:40 +0000 (15:08 +0200)] 
BuildSystem: Enable Jansson in Solaris 11.

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

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

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

ASTERISK-27991

Change-Id: I69ea0f379f87a50049654b2487c76ee1c04fa53a

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

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

Change-Id: Ic8b9211b36babefe78f70def6828a135a6ae7ab6

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

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

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

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

Change-Id: Iace19e718f4e8fb48eb7dc9f98af53b115cc45f3

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

Change-Id: I45d52005a9b692ad303c11792f226ace1e449901

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

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

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

Change-Id: Idcd841df3c8d5bfe23d566bb9e2e448e9df4f8ab

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

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

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

Change-Id: I8bf496a1fc449485150d6db36bfc0354934a3977

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

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

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

ASTERISK-27591

Change-Id: I18da0e8cbb18e79602e731020c46ba4101e59f0a

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

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

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

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

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

Change-Id: I652f4a0ea5107c778e27a78bccb67b18b0c4e087

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

Change-Id: I352333233bab5377723bf37d490ba84fc55bc853

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

Change-Id: Ib7377d26a6c98b38bad463f47c84f1875ac84eb7

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

Change-Id: I7392c79c0173057f5378010bf1fe65e300e8fc56

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

Change-Id: I0ee41d95a87f0d97b01f2757012b846bcfe6443d

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

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

Change-Id: I7643cc3d39af9feba8fc0da676b646efc5f8b3bb

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

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

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

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

Change-Id: I55eb62d2712818a58c7532119dec288bd98cf0c0

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

7 years agoMerge "CI: Set correct user:group when publishing docs" into 13
Jenkins2 [Tue, 24 Jul 2018 11:03:03 +0000 (06:03 -0500)] 
Merge "CI: Set correct user:group when publishing docs" into 13

7 years agoMerge "build_tools/make_version: Get MAINLINE_BRANCH from .gitreview." into 13
George Joseph [Tue, 24 Jul 2018 10:40:56 +0000 (05:40 -0500)] 
Merge "build_tools/make_version: Get MAINLINE_BRANCH from .gitreview." into 13

7 years agoCI: Add --privileged flag to docker options
George Joseph [Tue, 24 Jul 2018 10:39:30 +0000 (04:39 -0600)] 
CI:  Add --privileged flag to docker options

Change-Id: If92d55f15306e55dd7091ac3c47b13ebbbb03488

7 years agoCI: Set correct user:group when publishing docs
George Joseph [Tue, 24 Jul 2018 10:22:36 +0000 (04:22 -0600)] 
CI: Set correct user:group when publishing docs

Change-Id: Ibabeb9ac730d9755cf54318d0da74771c939b86b

7 years agoMerge "CI: Split --test-command argument." into 13
Jenkins2 [Mon, 23 Jul 2018 18:45:18 +0000 (13:45 -0500)] 
Merge "CI: Split --test-command argument." into 13

7 years agoMerge "sched: Make ABI compatible between dev mode and non-dev mode." into 13
George Joseph [Mon, 23 Jul 2018 18:32:10 +0000 (13:32 -0500)] 
Merge "sched: Make ABI compatible between dev mode and non-dev mode." into 13

7 years agoCI: Split --test-command argument.
Corey Farrell [Mon, 23 Jul 2018 15:23:22 +0000 (11:23 -0400)] 
CI: Split --test-command argument.

The --test-command argument has now been split, unit tests now use
`--unittest-command` and the testsuite uses --testsuite-command.

This will make it easier to create a script which run everything by
forwarding the same arguments to all CI scripts.

Change-Id: Ia54aa4848eaffbdf13175fcda40fc0b23080ad71

7 years agoMerge "res_pjsip: Update endpoint transport option documentation." into 13
George Joseph [Mon, 23 Jul 2018 14:13:02 +0000 (09:13 -0500)] 
Merge "res_pjsip: Update endpoint transport option documentation." into 13

7 years agoMerge "CI: Fix mkdir CACHE_DIR." into 13
Jenkins2 [Mon, 23 Jul 2018 13:39:10 +0000 (08:39 -0500)] 
Merge "CI: Fix mkdir CACHE_DIR." into 13

7 years agoMerge "CI: Fix logger.conf for unit tests." into 13
Jenkins2 [Mon, 23 Jul 2018 13:37:32 +0000 (08:37 -0500)] 
Merge "CI: Fix logger.conf for unit tests." into 13

7 years agoMerge "CI: Add wiki doc publish to periodics" into 13
Jenkins2 [Mon, 23 Jul 2018 11:46:54 +0000 (06:46 -0500)] 
Merge "CI:  Add wiki doc publish to periodics" into 13

7 years agoCI: Fix mkdir CACHE_DIR.
Corey Farrell [Sat, 21 Jul 2018 16:58:16 +0000 (12:58 -0400)] 
CI: Fix mkdir CACHE_DIR.

Change-Id: Ic9f9a61e230047836c836206731f8ff7eb3538c9

7 years agobuild_tools/make_version: Get MAINLINE_BRANCH from .gitreview.
Corey Farrell [Sat, 21 Jul 2018 16:22:27 +0000 (12:22 -0400)] 
build_tools/make_version: Get MAINLINE_BRANCH from .gitreview.

Use .gitreview defaultbranch setting to determine the mainline branch.
This allows the script to be used against other directories which might
not be on the same defaultbranch.  This can be used by CI scripts to
report the testsuite version being used:
./build_tools/make_version ${TESTSUITE_DIR}

Change-Id: Ifdad4a9d8a26138c41bc6b630ecc3e34ea1c2758

7 years agosched: Make ABI compatible between dev mode and non-dev mode.
Joshua Colp [Sun, 22 Jul 2018 15:41:03 +0000 (15:41 +0000)] 
sched: Make ABI compatible between dev mode and non-dev mode.

In the past there was an assertion in the ast_sched_del function
and in order to ensure it was useful the calling function name,
line number, and filename had to be passed in. This cause the ABI
to be different between dev mode and non-dev mode.

This assertion is no longer present so the special logic can be
removed to make it the same between them both.

Change-Id: Icbc69c801e357d7004efc5cf2ab936d9b83b6ab8

7 years agoEnable bundling of jansson.
Corey Farrell [Mon, 16 Jul 2018 20:08:20 +0000 (16:08 -0400)] 
Enable bundling of jansson.

Change-Id: Ib3111b151d37cbda40768cf2a8a9c6cf6c5c7cbd

7 years agores_rtp_asterisk: Avoid merging command and regular T.140 text packets
neutrino88 [Wed, 18 Jul 2018 14:32:34 +0000 (10:32 -0400)] 
res_rtp_asterisk: Avoid merging command and regular T.140 text packets

When realtime text packets are to be sent, the text is accumulated in a
buffer and sent regularly by a timer.  It can happen that commands such as
a backspace, CR, or LF get merged with regular text.  This breaks some
UAs.

The proposed change:
* We test if the current packet contains a command.  If so we send the
buffer immediately.
* We test if the buffer contained a command.  If so we send the buffer
immediately.
* We accumulate the text (or the command) in the buffer.

ASTERISK-27970

Change-Id: Ifbe993311410fa855cb8aa4a12084db75f413462

7 years agoCI: Fix logger.conf for unit tests.
Corey Farrell [Fri, 20 Jul 2018 14:25:25 +0000 (10:25 -0400)] 
CI: Fix logger.conf for unit tests.

Change-Id: Idea59d60eab20105de50b34f0f0d506e6ef55d5c

7 years agoCI: Add wiki doc publish to periodics
George Joseph [Thu, 19 Jul 2018 15:34:51 +0000 (09:34 -0600)] 
CI:  Add wiki doc publish to periodics

Change-Id: I29ba26134e5083bc6788ede235f1a5d4383c148a

7 years agores_pjsip: Update default keepalive interval to 90 seconds.
Joshua Colp [Fri, 20 Jul 2018 11:54:35 +0000 (11:54 +0000)] 
res_pjsip: Update default keepalive interval to 90 seconds.

A change recently went in which disabled the built-in PJSIP
keepalive. This defaulted to 90 seconds and kept TCP/TLS
connections alive. Disabling this functionality has resulted
in a behavior change of not doing keepalives by default resulting
in TCP/TLS connections dropping for some people.

This change makes our default keepalive interval 90 seconds
to match the previous behavior and preserve it.

ASTERISK-27978

Change-Id: Ibd9a45f3cbe5d9bb6d2161268696645ff781b1d6

7 years agoxmldoc.c: Fix dump of xml document
George Joseph [Fri, 20 Jul 2018 11:20:25 +0000 (05:20 -0600)] 
xmldoc.c:  Fix dump of xml document

The "xmldoc dump" cli command was simply concatenating xml documents
into the output file.  The resulting file had multiple "xml"
processing instructions and multiple root elements which is illegal.
Normally this isn't an issue because Asterisk has only 1 main xml
documentation file but codec_opus has its own file so if it's
downloaded and you do "xmldoc dump", the result is invalid.

* Added 2 new functions to xml.c:
    ast_xml_copy_node_list creates a copy of a list of children.
    ast_xml_add_child_list adds a list to an existing list.

* Modified handle_dump_docs to create a new output document and
  add to it the children from each input file.  It then dumps the
  new document to the output file.

Change-Id: I3f182d38c75776aee76413dadd2d489d54a85c07

7 years agores_pjsip: Update endpoint transport option documentation.
Richard Mudgett [Thu, 19 Jul 2018 21:17:50 +0000 (16:17 -0500)] 
res_pjsip: Update endpoint transport option documentation.

Change-Id: I5394fdff6a296efc8e1695a156e616acd932ae52

7 years agoMerge "res_pjsip_sdp_rtp: include ice in ANSWER only if offered" into 13
George Joseph [Wed, 18 Jul 2018 20:20:01 +0000 (15:20 -0500)] 
Merge "res_pjsip_sdp_rtp: include ice in ANSWER only if offered" into 13

7 years agoMerge "pjproject_bundled: Repair ./configure --with-ssl=PATH." into 13
George Joseph [Wed, 18 Jul 2018 20:19:14 +0000 (15:19 -0500)] 
Merge "pjproject_bundled: Repair ./configure --with-ssl=PATH." into 13

7 years agoMerge "res_sorcery_config: Allow configuration section to be used based on name....
George Joseph [Wed, 18 Jul 2018 19:47:01 +0000 (14:47 -0500)] 
Merge "res_sorcery_config: Allow configuration section to be used based on name." into 13

7 years agores_pjsip_sdp_rtp: include ice in ANSWER only if offered
Torrey Searle [Mon, 9 Jul 2018 09:42:11 +0000 (11:42 +0200)] 
res_pjsip_sdp_rtp: include ice in ANSWER only if offered

Keep track if ICE candidates were in the SDP offer & only put them
in the corresponding SDP answer if the offer condaind ICE candidates

ASTERISK-27957 #close

Change-Id: Idf2597ee48e9a287e07aa4030bfa705430a13a92

7 years agopjproject_bundled: Repair ./configure --with-ssl=PATH.
Alexander Traud [Tue, 29 May 2018 14:31:53 +0000 (16:31 +0200)] 
pjproject_bundled: Repair ./configure --with-ssl=PATH.

Previously, Asterisk did not tell its bundled PJProject about this configure
parameter. Therefore, PJProject used the platform provided OpenSSL always.

ASTERISK-27880

Change-Id: Iea545aec854dd0e2c061c69bb118a76ce56c5dc6

7 years agostasis: Improve message type "Use of before/init after destruction"
Chris-Savinovich [Wed, 18 Jul 2018 16:34:04 +0000 (12:34 -0400)] 
stasis: Improve message type "Use of before/init after destruction"

Fixes issue where error msg
"Use of before/init after destruction"
was being printed on disabled messages
in dev mode.  With this
fix if message is disabled
a warning will print.

ASTERISK-25548
Change-Id: Ie0d866d1cbc60c16dbef08bc65e99505c3c1adfa

7 years agores_sorcery_config: Allow configuration section to be used based on name.
Joshua Colp [Wed, 18 Jul 2018 16:12:59 +0000 (16:12 +0000)] 
res_sorcery_config: Allow configuration section to be used based on name.

A problem I've seen countless times is a global or system section
for PJSIP not getting applied. This is inevitably the result of
the "type=" line missing. This change alleviates that problem.

The ability to specify an explicit section name has been
added to res_sorcery_config. If the configured section
name matches this and there are no unknown things configured
the section is taken as being for the given type.

Both the PJSIP "global" and "system" types now support this
so you can just name your section "global" or "system" and it
will be matched and used, even without a "type=" line.

ASTERISK-27972

Change-Id: Ie22723663c1ddd24f869af8c9b4c1b59e2476893

7 years agoMerge "SRTP: Lower SDES key lifetime minimum to 2^20" into 13
George Joseph [Wed, 18 Jul 2018 15:21:18 +0000 (10:21 -0500)] 
Merge "SRTP: Lower SDES key lifetime minimum to 2^20" into 13

7 years agoMerge "res_pjsip: Remove spurious error logging when printing silent headers" into 13
Joshua Colp [Wed, 18 Jul 2018 10:49:07 +0000 (05:49 -0500)] 
Merge "res_pjsip:  Remove spurious error logging when printing silent headers" into 13

7 years agoMerge "res_config_ldap.c: Fix mem leak in CLI "realtime show ldap status"" into 13
Joshua Colp [Tue, 17 Jul 2018 21:29:35 +0000 (16:29 -0500)] 
Merge "res_config_ldap.c: Fix mem leak in CLI "realtime show ldap status"" into 13

7 years agoSRTP: Lower SDES key lifetime minimum to 2^20
Nick French [Tue, 17 Jul 2018 18:56:40 +0000 (13:56 -0500)] 
SRTP: Lower SDES key lifetime minimum to 2^20

SRTP SDES key lifetime support was added in ASTERISK_17899.

In that addition, the minimum key lifetime to be accepted was
set at the 10 hours @ 20ms/packet = 1800000 packets.

The firmware in the obi1xx ATA uses a hardcoded lifetime of
2^20 packets.

Lower the limit to 2^20 to support a wider field of clients.

ASTERISK-27967 #close

Change-Id: I81a0703c595a0c9101dfdf02300149a3cc39bf94

7 years agoMerge "Build: Fix modules getting their optimization setting overridden." into 13
Joshua Colp [Tue, 17 Jul 2018 17:14:46 +0000 (12:14 -0500)] 
Merge "Build: Fix modules getting their optimization setting overridden." into 13

7 years agoCI: Fix merge strategy
George Joseph [Tue, 17 Jul 2018 16:09:01 +0000 (10:09 -0600)] 
CI: Fix merge strategy

Change-Id: I5e3fb6adfa6cbf694c0deecf02e3879297b0c12e

7 years agoCI: Fix regex in daily and ref_debug jobs
George Joseph [Tue, 17 Jul 2018 15:41:40 +0000 (09:41 -0600)] 
CI: Fix regex in daily and ref_debug jobs

Change-Id: Icf2e67818b2155a158d2390b138613e1f653ea92

7 years agores_pjsip: Remove spurious error logging when printing silent headers
Nick French [Tue, 17 Jul 2018 14:09:04 +0000 (09:09 -0500)] 
res_pjsip:  Remove spurious error logging when printing silent headers

Asterisk patched the pjproject source to avoid crashing when pjproject
sip_msg headers are encountered with NULL vptr's, but the patch also
output error messages for some valid headers which simply did not need
to be added to the message itself, such as hidden route headers.

pjproject has since applied a similar patch to their baseline to avoid
crashes, but their version also avoids the spurious error logging.

Lets use their patch instead.

ASTERISK-27961 #close

Change-Id: I2ddbd82c8da10e0dcc9807a48089d1f3c2d6e389

7 years agores_config_ldap.c: Fix mem leak in CLI "realtime show ldap status"
Richard Mudgett [Tue, 17 Jul 2018 15:18:28 +0000 (10:18 -0500)] 
res_config_ldap.c: Fix mem leak in CLI "realtime show ldap status"

Change-Id: Ib2a3622b297b0363c62d23958f7a20039bcb9b4c

7 years agoCI: Add pre-build merge back in as RECURSIVE
George Joseph [Tue, 17 Jul 2018 15:15:58 +0000 (09:15 -0600)] 
CI: Add pre-build merge back in as RECURSIVE

Change-Id: I0ff1730ef4a4f0ac9f18ccc9bc0dfe7a782f57a8

7 years agoMerge "Fix declaration of PBX_CURL for ./configure --without-libcurl" into 13
George Joseph [Tue, 17 Jul 2018 14:50:00 +0000 (09:50 -0500)] 
Merge "Fix declaration of PBX_CURL for ./configure --without-libcurl" into 13

7 years agoCI: Remove pre-build merge from gates and checks
George Joseph [Tue, 17 Jul 2018 14:01:46 +0000 (08:01 -0600)] 
CI: Remove pre-build merge from gates and checks

Change-Id: Ibc151f63dcec4db847915c2f3cbe5b467dd59574

7 years agoCI: Fix logic inversion in runTestsuite
George Joseph [Tue, 17 Jul 2018 12:13:35 +0000 (06:13 -0600)] 
CI: Fix logic inversion in runTestsuite

Change-Id: I56399aa384468f45494c2c3650420563a0b6efe1

7 years agoCI: Add teardownRealtime
George Joseph [Tue, 17 Jul 2018 09:03:02 +0000 (03:03 -0600)] 
CI: Add teardownRealtime

Change-Id: I2fe55c38607eaec2fbf69ef23a5019e0c443a64b

7 years agoCI: Prevent Jenkins from triggering jobs back to itself
George Joseph [Mon, 16 Jul 2018 18:30:26 +0000 (12:30 -0600)] 
CI:  Prevent Jenkins from triggering jobs back to itself

Change-Id: I9cae8bb3d1a2cea335d3ccd88d471832549666fd

7 years agoBuild: Fix modules getting their optimization setting overridden.
Richard Mudgett [Fri, 13 Jul 2018 23:26:46 +0000 (18:26 -0500)] 
Build: Fix modules getting their optimization setting overridden.

Asterisk modules that use PJPROJECT services have their compiler
optimization and possibly their symbolic debug options overridden by the
PJPROJECT configure script selected settings.

* We need to filter-out any -O and -g options in PJ_CFLAGS before echoing
out the result so the PJPROJECT_INCLUDE variable does not override the
Asterisk module settings when using bundled PJPROJECT.

NOTE: This patch only has an effect when using bundled PJPROJECT.

ASTERISK-27563

Change-Id: If124169735ecf572ad1535cd43bff94cb44d5b30

7 years agoCI: runUnittests: loop a few times on waitfullybooted
George Joseph [Mon, 16 Jul 2018 16:08:57 +0000 (10:08 -0600)] 
CI: runUnittests: loop a few times on waitfullybooted

Change-Id: Icebc0d013896f3b2a7214945cac60647435c1651

7 years agoCI: Add realtime checks to dailies
George Joseph [Mon, 16 Jul 2018 15:49:54 +0000 (09:49 -0600)] 
CI:  Add realtime checks to dailies

Change-Id: I6dc8ab1679b3505c6dde1d47e1b9276df47814f8

7 years agoCI: Add weekly REF_DEBUG testsuite run
George Joseph [Mon, 16 Jul 2018 14:13:40 +0000 (08:13 -0600)] 
CI:  Add weekly REF_DEBUG testsuite run

Change-Id: I5b581d0a0d1d1bb9b38961d40b112fb448355037

7 years agoMerge "CI: Fix bad reporting of status by the verification pub" into 13
George Joseph [Mon, 16 Jul 2018 15:46:09 +0000 (10:46 -0500)] 
Merge "CI: Fix bad reporting of status by the verification pub" into 13

7 years agoCI: Fix bad reporting of status by the verification pub
George Joseph [Mon, 16 Jul 2018 13:44:25 +0000 (07:44 -0600)] 
CI: Fix bad reporting of status by the verification pub

Change-Id: I6f31a130b3ba0187149aaaa2ce94195a79e0f6a6

7 years agoCI: Make build tag an acceptable docker name
George Joseph [Mon, 16 Jul 2018 12:16:51 +0000 (06:16 -0600)] 
CI: Make build tag an acceptable docker name

Change-Id: I3a4b8a4a9c488ddabf9daf651dc1334222056f38

7 years agoFix declaration of PBX_CURL for ./configure --without-libcurl
Corey Farrell [Sat, 14 Jul 2018 03:44:53 +0000 (23:44 -0400)] 
Fix declaration of PBX_CURL for ./configure --without-libcurl

When `--without-libcurl` is used PBX_CURL is never set.  Set default
value 0 so the proper value is passed to menuselect.

Change-Id: I03e2842a00899cbca2dbde52bb1f6636d54bae1e

7 years agoCI: Add daily periodics to CI
George Joseph [Fri, 13 Jul 2018 11:56:38 +0000 (05:56 -0600)] 
CI: Add daily periodics to CI

Change-Id: I26933e73928e091ae72e838c02f4f2ec7c3983d6

7 years agoMerge "Bundled PJPROJECT: Disable internal connection oriented keep-alive." into 13
Jenkins2 [Thu, 12 Jul 2018 23:25:56 +0000 (18:25 -0500)] 
Merge "Bundled PJPROJECT: Disable internal connection oriented keep-alive." into 13

7 years agoCI: Add Asterisk Gates
George Joseph [Thu, 12 Jul 2018 21:34:14 +0000 (15:34 -0600)] 
CI: Add Asterisk Gates

Change-Id: I7e2467f9120812551238d8005deb97f965279205

7 years agoCI: Remove duplicate checkout
George Joseph [Wed, 11 Jul 2018 20:55:55 +0000 (14:55 -0600)] 
CI: Remove duplicate checkout

Change-Id: If5f925b4c4ed7000b153f3ed8386ce2140c886f8

7 years agoCI: Update cleanup steps and permissions
George Joseph [Wed, 11 Jul 2018 20:09:19 +0000 (14:09 -0600)] 
CI: Update cleanup steps and permissions

Change-Id: I7ca92935979d94845af8e1caf4468cbd6209b7de

7 years agoCI: Fix log artifact paths
George Joseph [Wed, 11 Jul 2018 19:54:04 +0000 (13:54 -0600)] 
CI: Fix log artifact paths

Change-Id: I55136de8f4d9c3b56bd4d054306a187bb04a4b7d

7 years agoCI: Remove CleanBeforeCheckout option for testsuite
George Joseph [Wed, 11 Jul 2018 19:45:01 +0000 (13:45 -0600)] 
CI: Remove CleanBeforeCheckout option for testsuite

Change-Id: I510231c9087f7be5272b8ef3f3223eadaaffb754

7 years agoCI: Move gates into source repo
George Joseph [Wed, 11 Jul 2018 19:00:38 +0000 (13:00 -0600)] 
CI: Move gates into source repo

Change-Id: If028ede5f3b127fa274c63ce166bc04ad7c1e5db

7 years agoBundled PJPROJECT: Disable internal connection oriented keep-alive.
Alexander Traud [Wed, 11 Jul 2018 16:57:53 +0000 (11:57 -0500)] 
Bundled PJPROJECT: Disable internal connection oriented keep-alive.

Turn off the periodic sending of CRLNCRLN.  Default is on (90 seconds),
which conflicts with the global section's keep_alive_interval option in
pjsip.conf.

patches:
  pjsip_keep_not_alive.patch submitted by Alexander Traud (License 6520)

ASTERISK-27347

Change-Id: I6a197f56e1830d3b7e5ec70f17025840a290b057

7 years agoCI: Initial commit for moving CI into source repo
George Joseph [Wed, 11 Jul 2018 11:14:49 +0000 (05:14 -0600)] 
CI:  Initial commit for moving CI into source repo

Create tests/CI directory and add files used by Jenkins to
build and test Asterisk.

With this commit, Jenkins will run the Asterisk Unit Tests using
the Jenkinsfile at tests/CI/unittests.jenkinsfile.  Bash scripts
to do the actual building and testing are also in the same directory.
Output is placed in tests/CI/output so that directory has been
added to .gitignore.

Change-Id: I9448065465e6de2b878634510ace8fd1ef378608

7 years agoMerge "res_pjsip_t38.c: Be smarter about how we respond when T.38 is disabled." into 13
Joshua Colp [Tue, 10 Jul 2018 11:54:51 +0000 (06:54 -0500)] 
Merge "res_pjsip_t38.c: Be smarter about how we respond when T.38 is disabled." into 13

7 years agoMerge "res_pjsip_pubsub: segfault in function publish_expire" into 13
Jenkins2 [Tue, 10 Jul 2018 11:28:46 +0000 (06:28 -0500)] 
Merge "res_pjsip_pubsub: segfault in function publish_expire" into 13

7 years agoMerge "chan_ooh323: IPTOS_MINCOST is not defined on Solaris." into 13
Jenkins2 [Tue, 10 Jul 2018 11:21:42 +0000 (06:21 -0500)] 
Merge "chan_ooh323: IPTOS_MINCOST is not defined on Solaris." into 13

7 years agoMerge "res_pjsip/pjsip_transport_management.c: Fix deadlock with transport keep alive...
Jenkins2 [Mon, 9 Jul 2018 11:54:51 +0000 (06:54 -0500)] 
Merge "res_pjsip/pjsip_transport_management.c: Fix deadlock with transport keep alive." into 13

7 years agoMerge "test.c: Make output jUnit compatible" into 13
Jenkins2 [Mon, 9 Jul 2018 11:04:59 +0000 (06:04 -0500)] 
Merge "test.c:  Make output jUnit compatible" into 13

7 years agoMerge "res_pjsip_t38: Decline T.38 stream on failure case." into 13
Joshua Colp [Mon, 9 Jul 2018 10:17:51 +0000 (05:17 -0500)] 
Merge "res_pjsip_t38: Decline T.38 stream on failure case." into 13

7 years agoMerge "res_pjsip: Add 'suppress_q850_reason_headers' option to endpoint" into 13
Jenkins2 [Mon, 9 Jul 2018 10:00:53 +0000 (05:00 -0500)] 
Merge "res_pjsip:  Add 'suppress_q850_reason_headers' option to endpoint" into 13

7 years agochan_ooh323: IPTOS_MINCOST is not defined on Solaris.
Alexander Traud [Sat, 23 Jun 2018 06:40:11 +0000 (08:40 +0200)] 
chan_ooh323: IPTOS_MINCOST is not defined on Solaris.

Furthermore, <sys/sockio.h> is required for SIOCGIF*.

ASTERISK-27938

Change-Id: Idc9153ece769944765b66122efb11728d8d8ebde

7 years agores_pjsip_pubsub: segfault in function publish_expire
Alexei Gradinari [Thu, 5 Jul 2018 21:02:00 +0000 (17:02 -0400)] 
res_pjsip_pubsub: segfault in function publish_expire

The function pubsub_on_rx_publish_request incorrectly uses
of AST_SCHED_REPLACE_UNREF.

The AST_SCHED_REPLACE_UNREF should unref old '_data'.

Because of this, there may be a double unref
of variable 'publication' when ast_sched_del is unsuccessful
that leads to use after free of the 'publication' in publish_expire.

ASTERISK-27956 #close

Change-Id: Ie0f0cfc7e036953d890b188656010b325a5cdc82

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 agores_pjsip: Add 'suppress_q850_reason_headers' option to endpoint
George Joseph [Fri, 6 Jul 2018 12:57:37 +0000 (06:57 -0600)] 
res_pjsip:  Add 'suppress_q850_reason_headers' option to endpoint

A new option 'suppress_q850_reason_headers' has been added to the
endpoint object. Some devices can't accept multiple Reason headers and
get confused when both 'SIP' and 'Q.850' Reason headers are received.
This option allows the 'Q.850' Reason header to be suppressed.
The default value is 'no'.

ASTERISK-27949
Reported-by: Ross Beer
Change-Id: I54cf37a827d77de2079256bb3de7e90fa5e1deb1

7 years agores_pjsip_t38: Decline T.38 stream on failure case.
Joshua Colp [Thu, 5 Jul 2018 20:43:35 +0000 (20:43 +0000)] 
res_pjsip_t38: Decline T.38 stream on failure case.

When negotiating an incoming T.38 stream the code incorrectly
returned failure instead of a decline for the stream when a
problem occurred or the configuration didn't allow it. This
resulted in SDP offers being rejected with a 488 response
in all cases, even when another valid stream was present.

This change makes it so the stream is now declined. If no
streams are accepted a 488 response is sent while if at least
one stream is accepted all the declined streams are, well,
declined.

ASTERISK-27763

Change-Id: I88bcf793788c412a9839d111a5c736bf6867807c

7 years agores_pjsip_t38.c: Be smarter about how we respond when T.38 is disabled.
Richard Mudgett [Mon, 2 Jul 2018 23:43:10 +0000 (18:43 -0500)] 
res_pjsip_t38.c: Be smarter about how we respond when T.38 is disabled.

We were blindly responding with AST_T38_REFUSED when ANY T.38 control
frame came accross the bridge.  This causes T.38 Gateway to get confused
and the T.38 session to get in a strange state.

* Made the T.38 framehook only respond to request frames and ignore
response frames.

ASTERISK-27657
ASTERISK-27080

Change-Id: I5fb5967c7d1efb30a7ff375f82887ca82a55b05b

7 years agoMerge "res_pjsip_t38.c: Fix crash by ignoring 1xx messages." into 13
Jenkins2 [Thu, 5 Jul 2018 15:48:37 +0000 (10:48 -0500)] 
Merge "res_pjsip_t38.c: Fix crash by ignoring 1xx messages." into 13

7 years agores_pjsip/pjsip_transport_management.c: Fix deadlock with transport keep alive.
Richard Mudgett [Tue, 3 Jul 2018 17:10:36 +0000 (12:10 -0500)] 
res_pjsip/pjsip_transport_management.c: Fix deadlock with transport keep alive.

Using the keep_alive_interval option can result in a deadlock between the
pjproject transport manager group lock and the monitored transports ao2
container lock.  The pjproject transport manager group lock has to be
superior in the locking order to the monitored transports ao2 container
lock because of pjproject callbacks called when already holding the group
lock.  The lock inversion happens when Asterisk attempts to send a keep
alive packet over the reliable transports.

* Made keepalive_transport_thread() iterate over the monitored transports
container rather than use the ao2_callback() method.  This avoids holding
the container lock when sending the keep alive packet.

ASTERISK-26686

Change-Id: I5d5392a52e698bbe41a93f7d8e92bf0e61fe3951