]> git.ipfire.org Git - thirdparty/asterisk.git/log
thirdparty/asterisk.git
8 years agores_pjsip: Fail global load if debug or default_from_user are empty 01/3501/2
George Joseph [Thu, 11 Aug 2016 17:18:15 +0000 (11:18 -0600)] 
res_pjsip:  Fail global load if debug or default_from_user are empty

If debug was specified in the global configuration but left blank,
the logger would treat it as a wildcard and log all hosts.  If
default_from_user was empty, a crash would result.

The global apply handler now checks for empty strings.

ASTERISK-26239 #close
ASTERISK-26238 #close

Change-Id: Ie75727f5cd5808845d92cc81f5713842fb203336

8 years agoMerge "res_resolver_unbound: Allow compilation with libunbound version < 1.5" into 14
zuul [Thu, 11 Aug 2016 17:30:19 +0000 (12:30 -0500)] 
Merge "res_resolver_unbound:  Allow compilation with libunbound version < 1.5" into 14

8 years agoMerge "channels/chan_pjsip: Add PJSIP_SEND_SESSION_REFRESH" into 14
zuul [Thu, 11 Aug 2016 16:43:20 +0000 (11:43 -0500)] 
Merge "channels/chan_pjsip: Add PJSIP_SEND_SESSION_REFRESH" into 14

8 years agoMerge "res_srtp: Move SDP SRTP code from the core to res_srtp." into 14
Joshua Colp [Thu, 11 Aug 2016 11:20:38 +0000 (06:20 -0500)] 
Merge "res_srtp: Move SDP SRTP code from the core to res_srtp." into 14

9 years agoMerge "alembic/sqlalchemy: auto increment only allowed on a single column" into 14
zuul [Thu, 11 Aug 2016 01:26:06 +0000 (20:26 -0500)] 
Merge "alembic/sqlalchemy: auto increment only allowed on a single column" into 14

9 years agores_srtp: Move SDP SRTP code from the core to res_srtp. 41/3441/2
Richard Mudgett [Mon, 8 Aug 2016 19:50:53 +0000 (14:50 -0500)] 
res_srtp: Move SDP SRTP code from the core to res_srtp.

A patch made to the master branch (Now the 14 branch) inadvertently made
libsrtp a required dependency in order to compile Asterisk.  Rather than
create dummy defines to substitute for the defines supplied by libsrtp
when libsrtp is not available, most of the code in sdp_srtp.c is moved
into res_srtp.c.  This gets more code out of Asterisk's core that isn't
used when SRTP is not available.  This also makes another inadvertent
required dependency on libsrtp by Asterisk's core unlikely.

ASTERISK-26253 #close
Reported by: Ben Merrills

Change-Id: I0a46cde81501c0405399c2588633ae32706d1ee7

9 years agopjsip: Fix deadlock with suspend taskprocessor on masquerade 58/3458/1
Alexei Gradinari [Sat, 6 Aug 2016 15:57:08 +0000 (11:57 -0400)] 
pjsip: Fix deadlock with suspend taskprocessor on masquerade

If both channels which should be masqueraded
are in the same serializer:
1st channel will be locked waiting condition 'complete'
2nd channel will be locked waiting condition 'suspended'

On heavy load system a chance that both channels will be in
the same serializer 'pjsip/distibutor' is very high.

To reproduce compile res_pjsip/pjsip_distributor.c with
DISTRIBUTOR_POOL_SIZE=1

Steps to reproduce:
1. Party A calls Party B (bridged call 'AB')
2. Party B places Party A on hold
3. Party B calls Voicemail app (non-bridged call 'BV')
4. Party B attended transfers Party A to voicemail using REFER.
5. When asterisk masquerades calls 'AB' and 'BV',
   a deadlock is happened.

This patch adds a suspension indicator to the taskprocessor.
When a session suspends/unsuspends the serializer
it sets the indicator to the appropriate state.
The session checks the suspension indicator before
suspend the serializer.

ASTERISK-26145 #close

Change-Id: Iaaebee60013a58c942ba47b1b4930a63e686663b

9 years agoalembic/sqlalchemy: auto increment only allowed on a single column 38/3438/3
Kevin Harwell [Tue, 9 Aug 2016 17:07:20 +0000 (12:07 -0500)] 
alembic/sqlalchemy: auto increment only allowed on a single column

The extensions table defined two columns (id and priority) as primary key
autoincrement columns. However only one is allowed when defining the primary
key.

This patch removes the autoincrement attribute from the priority column since
it does not need to be as such and really should not have been on there in the
first place.

This patch also removes 'context', 'exten', and 'priority' from the primary key
index and creates a new combined unique contraint index on them.

ASTERISK-26183 #close

Change-Id: Ib9c712c612a4d7ec1edb0dcb77f1bae0905a470b

9 years agores_resolver_unbound: Allow compilation with libunbound version < 1.5 53/3453/1
George Joseph [Wed, 10 Aug 2016 16:47:32 +0000 (10:47 -0600)] 
res_resolver_unbound:  Allow compilation with libunbound version < 1.5

libunbound at version 1.4.20 (which CentOS still uses) declared all
of their string function parameters as as 'char *'.  1.4.21 changed
them all to 'const char *'.  Thankfully 1.4.21 also introduced the
UNBOUND_VERSION_MAJOR define so configure now checks for that and
sets HAVE_UNBOUND_CONST_PARAMS.  res_resolver_unbound then checks
that and casts away the 'const' if it's not set.

Tested compile and testsuite on CentOS6 (1.4.20), Ubuntu14 (1.4.22) and
Fedora24 (1.5.4).  There are a few failing tests to be addressed though.

ASTERISK-26283 #close

Change-Id: Ib708b19b706c5d0ba7b7d5473e6df339d9ae4148

9 years agochannels/chan_pjsip: Add PJSIP_SEND_SESSION_REFRESH 51/3451/2
Matt Jordan [Sun, 7 Aug 2016 14:58:59 +0000 (09:58 -0500)] 
channels/chan_pjsip: Add PJSIP_SEND_SESSION_REFRESH

This patch adds a new PJSIP specific dialplan function,
PJSIP_SEND_SESSION_REFRESH. When invoked on a PJSIP channel, the media
session will be refreshed via either an UPDATE or re-INVITE request.
When used in conjunction with the PJSIP_MEDIA_OFFER dialplan function,
the formats in use on a PJSIP channel can be re-negotiated and changed
dynamically after call setup.

ASTERISK-26277 #close

Change-Id: Ib98fe09ba889aafe26d58d32f0fd1323f8fd9b1b

9 years agoMerge "res_rtp_asterisk: Cache local RTCP address." into 14
zuul [Wed, 10 Aug 2016 15:37:40 +0000 (10:37 -0500)] 
Merge "res_rtp_asterisk: Cache local RTCP address." into 14

9 years agoMerge "Produce friendly error when AST_MODULE_SELF_SYM is not defined." into 14
zuul [Wed, 10 Aug 2016 00:09:36 +0000 (19:09 -0500)] 
Merge "Produce friendly error when AST_MODULE_SELF_SYM is not defined." into 14

9 years agoMerge "res_pjsip_mwi: fix unsolicited mwi blocks PJSIP stack" into 14
zuul [Tue, 9 Aug 2016 21:36:02 +0000 (16:36 -0500)] 
Merge "res_pjsip_mwi: fix unsolicited mwi blocks PJSIP stack" into 14

9 years agores_rtp_asterisk: Cache local RTCP address. 46/3446/1
Mark Michelson [Tue, 9 Aug 2016 21:19:34 +0000 (16:19 -0500)] 
res_rtp_asterisk: Cache local RTCP address.

When an RTCP packet is sent or received, res_rtp_asterisk generates a
Stasis event that contains the RTCP report as well as the local and
remote addresses that the report pertains to.

The addresses are determined using ast_find_ourip(). For the local
address, this will typically result in a lookup of the hostname of the
server, and then a DNS lookup of that hostname. If you do not have the
host in /etc/hosts, then this results in a full DNS lookup, which can
potentially block for some time.

This is especially problematic when performing RTCP reads, since those
are done on the same thread responsible for reading and writing media.

This patch addresses the issue by performing a lookup of the local
address when RTCP is allocated. We then use this cached local address
for the Stasis events when necessary.

ASTERISK-26280 #close
Reported by Mark Michelson

Change-Id: I3dd61882c2e57036f09f0c390cf38f7c87e9b556

9 years agoMerge "res_pjsip_outbound_publish: Use a serializer shutdown group for unload." into 14
zuul [Tue, 9 Aug 2016 21:19:01 +0000 (16:19 -0500)] 
Merge "res_pjsip_outbound_publish: Use a serializer shutdown group for unload." into 14

9 years agoProduce friendly error when AST_MODULE_SELF_SYM is not defined. 35/3435/2
Corey Farrell [Tue, 9 Aug 2016 00:14:20 +0000 (20:14 -0400)] 
Produce friendly error when AST_MODULE_SELF_SYM is not defined.

Modules must define AST_MODULE_SELF_SYM to be used as the name of a
generated function.  This produces a friendly error when it's not
defined.

ASTERISK-26278 #close

Change-Id: Ib9d35a08104529c516d636771365e02c6e77a45b

9 years agores_pjsip_mwi: fix unsolicited mwi blocks PJSIP stack 29/3429/2
Alexei Gradinari [Mon, 8 Aug 2016 17:53:32 +0000 (13:53 -0400)] 
res_pjsip_mwi: fix unsolicited mwi blocks PJSIP stack

The PJSIP taskprocessors could be overflowed on startup
if there are many (thousands) realtime endpoints
configured with unsolicited mwi.
The PJSIP stack could be totally unresponsive for a few minutes
after boot completed.

This patch creates a separate PJSIP serializers pool for mwi
and makes unsolicited mwi use serializers from this pool.
This patch also adds 2 new global options to tune taskprocessor
alert levels: 'mwi_tps_queue_high' and 'mwi_tps_queue_low'.

This patch also adds new global option 'mwi_disable_initial_unsolicited'
to disable sending unsolicited mwi to all endpoints on startup.
If disabled then unsolicited mwi will start processing
on next endpoint's contact update.

ASTERISK-26230 #close

Change-Id: I4c8ecb82c249eb887930980a800c9f87f28f861a

9 years agoapp_voicemail: Add taskprocessor alert level options. 21/3421/2
Alexei Gradinari [Fri, 5 Aug 2016 20:26:22 +0000 (16:26 -0400)] 
app_voicemail: Add taskprocessor alert level options.

On heavy loaded system with IMAP or DB storage,
'app_voicemail' taskprocessor queue could reach 500 scheduled tasks.
It could happen when the IMAP or DB server dies or is unreachable.
It could happen on startup when there are many (thousands)
realtime endpoints configured with unsolicited mwi.
If the taskprocessor queue reaches the high water level
then the alert is triggered and pjsip stops processing new requests
until the queue reaches the low water level to clear the alert.

This patch adds 2 new 'general' configuration options
to tune taskprocessor alert levels:
'tps_queue_high' - Taskprocessor high water alert trigger level.
'tps_queue_low' - Taskprocessor low water clear alert level

ASTERISK-26229 #close

Change-Id: I766294fbffedf64053c0d9ac0bedd3109f043ee8

9 years agores_pjsip_outbound_publish: Use a serializer shutdown group for unload. 19/3419/1
Joshua Colp [Thu, 4 Aug 2016 15:16:33 +0000 (15:16 +0000)] 
res_pjsip_outbound_publish: Use a serializer shutdown group for unload.

This change replaces the custom unload process for the outbound
publish module with the common serializer shutdown group.

ASTERISK-25217 #close

Change-Id: I280a0384d860c486202d87d2d674394cca77ffb6

9 years agoresource_channels: Sync with ARI stubs 16/3416/1
Kevin Harwell [Thu, 4 Aug 2016 15:27:48 +0000 (10:27 -0500)] 
resource_channels: Sync with ARI stubs

This file was out of sync with the current ARI definitions.

Change-Id: Ie7cb7d6d3c2eeb9cc9d683ca87b43b117e713d0a

9 years agoAdd missing checks during startup. 12/3412/1
Corey Farrell [Wed, 3 Aug 2016 20:41:04 +0000 (16:41 -0400)] 
Add missing checks during startup.

This ensures startup is canceled due to allocation failures from the
following initializations.
* channel.c: ast_channels_init
* config_options.c: aco_init

ASTERISK-26265 #close

Change-Id: I911ed08fa2a3be35de55903e0225957bcdbe9611

9 years agoastconfigparser: Really handle case where line is simply a comment. 07/3407/1
Joshua Colp [Wed, 3 Aug 2016 14:47:04 +0000 (14:47 +0000)] 
astconfigparser: Really handle case where line is simply a comment.

The regular expression would match causing the code that handled
the line if it was merely a comment to never get executed.

Change-Id: I3e4022481037ebcba9905587fe8c764b4ce21819

9 years agoMerge "res_pjsip: SIP/SDP origin (o=) contained square brackets on IP6 transports...
zuul [Tue, 2 Aug 2016 20:13:19 +0000 (15:13 -0500)] 
Merge "res_pjsip: SIP/SDP origin (o=) contained square brackets on IP6 transports." into 14

9 years agomake_ari_stubs: Updated WIKI_PREFIX for 14 03/3403/1
Kevin Harwell [Tue, 2 Aug 2016 19:26:21 +0000 (14:26 -0500)] 
make_ari_stubs: Updated WIKI_PREFIX for 14

Change-Id: Id5678d20d8892fdcde7849c810d492527e77c15d

9 years agoMerge "menuselect: Add an opaque "member_data" string to the acceptable xml" into 14
zuul [Tue, 2 Aug 2016 18:43:41 +0000 (13:43 -0500)] 
Merge "menuselect:  Add an opaque "member_data" string to the acceptable xml" into 14

9 years agorest-api: Code out of sync with the model 00/3400/1
Kevin Harwell [Tue, 2 Aug 2016 17:55:36 +0000 (12:55 -0500)] 
rest-api: Code out of sync with the model

Change-Id: Idccaa26fd4a423d47d013ee592b8fa6a0349c006

9 years agoMerge "sorcery: Use more compatible regex for local expressions." into 14
zuul [Tue, 2 Aug 2016 16:28:19 +0000 (11:28 -0500)] 
Merge "sorcery: Use more compatible regex for local expressions." into 14

9 years agoMerge "pjproject: fixed a few bugs" into 14
zuul [Tue, 2 Aug 2016 15:50:47 +0000 (10:50 -0500)] 
Merge "pjproject: fixed a few bugs" into 14

9 years agosorcery: Use more compatible regex for local expressions. 93/3393/1
Joshua Colp [Mon, 1 Aug 2016 16:08:15 +0000 (16:08 +0000)] 
sorcery: Use more compatible regex for local expressions.

This changes the use of an empty regex for both res_sorcery_config
and res_sorcery_memory to "." instead. This is a more compatible
regular expression which also works on FreeBSD.

ASTERISK-26206 #close

Change-Id: Ia9166dd176f1597555ba22b6931180d0626c1388

9 years agores_pjsip: SIP/SDP origin (o=) contained square brackets on IP6 transports. 91/3391/1
Alexander Traud [Tue, 2 Aug 2016 08:08:34 +0000 (10:08 +0200)] 
res_pjsip: SIP/SDP origin (o=) contained square brackets on IP6 transports.

ASTERISK-26256 #close

Change-Id: I3fd68df561f81fdb8c6c497d465b50c12422f058

9 years agomenuselect: Add an opaque "member_data" string to the acceptable xml 86/3386/1
George Joseph [Mon, 1 Aug 2016 21:13:17 +0000 (15:13 -0600)] 
menuselect:  Add an opaque "member_data" string to the acceptable xml

Change-Id: Id5ac43b95c8d7395f3be37f983632169db3d1afe

9 years agoMerge "astconfigparser: Handle case where line is simply a comment." into 14
zuul [Mon, 1 Aug 2016 20:05:09 +0000 (15:05 -0500)] 
Merge "astconfigparser: Handle case where line is simply a comment." into 14

9 years agoMerge "Remove SILK payload mappings from Asterisk core." into 14
Joshua Colp [Mon, 1 Aug 2016 19:52:27 +0000 (14:52 -0500)] 
Merge "Remove SILK payload mappings from Asterisk core." into 14

9 years agoMerge "pbx.c: Fix handling of '-' in extension name and callerid" into 14
zuul [Mon, 1 Aug 2016 14:06:50 +0000 (09:06 -0500)] 
Merge "pbx.c: Fix handling of '-' in extension name and callerid" into 14

9 years agoRemove SILK payload mappings from Asterisk core. 76/3376/1
Mark Michelson [Fri, 29 Jul 2016 18:13:55 +0000 (13:13 -0500)] 
Remove SILK payload mappings from Asterisk core.

SILK is a bit of a hog when it comes to using up our limited number of
dynamic payload types in the RTP engine. By freeing up four slots, it
allows for other codecs to potentially take the place.

Now, codec_silk.so will dynamically use the payload slots in the RTP
engine when it loads.

A better fix would be make RTP dynamic payload types actually
dynamic. However, at this stage of Asterisk 14 development, this is a
risky move that would be imprudent.

Change-Id: I5774e09408f9a203db189529eabdc0d3f4c1e612

9 years agoMerge "pjproject_bundled: Update for pjproject 2.5.5" into 14
zuul [Fri, 29 Jul 2016 16:19:08 +0000 (11:19 -0500)] 
Merge "pjproject_bundled:  Update for pjproject 2.5.5" into 14

9 years agoastconfigparser: Handle case where line is simply a comment. 75/3375/1
Joshua Colp [Fri, 29 Jul 2016 09:48:32 +0000 (06:48 -0300)] 
astconfigparser: Handle case where line is simply a comment.

Change-Id: I2dea5815363f4d787d709228a04f33baee383ef5

9 years agoMerge "pbx.c: Allow dangerous functions when adding a hint to dialplan." into 14
zuul [Fri, 29 Jul 2016 11:55:32 +0000 (06:55 -0500)] 
Merge "pbx.c: Allow dangerous functions when adding a hint to dialplan." into 14

9 years agoMerge "astconfigparser.py: Update with realtime fixes." into 14
Joshua Colp [Fri, 29 Jul 2016 00:17:55 +0000 (19:17 -0500)] 
Merge "astconfigparser.py: Update with realtime fixes." into 14

9 years agoMerge "dsp.c: Add fax and DTMF detection unit tests." into 14
Joshua Colp [Fri, 29 Jul 2016 00:17:42 +0000 (19:17 -0500)] 
Merge "dsp.c: Add fax and DTMF detection unit tests." into 14

9 years agoMerge "dsp.c: Added descriptive comments to Goertzel calculations." into 14
Joshua Colp [Fri, 29 Jul 2016 00:17:34 +0000 (19:17 -0500)] 
Merge "dsp.c: Added descriptive comments to Goertzel calculations." into 14

9 years agoMerge "dsp.c: Fix incorrect format reference typo." into 14
Joshua Colp [Fri, 29 Jul 2016 00:17:30 +0000 (19:17 -0500)] 
Merge "dsp.c: Fix incorrect format reference typo." into 14

9 years agoMerge "dsp.c: Correct DTMF twist dsp.conf documentation." into 14
zuul [Fri, 29 Jul 2016 00:15:31 +0000 (19:15 -0500)] 
Merge "dsp.c: Correct DTMF twist dsp.conf documentation." into 14

9 years agopbx.c: Fix handling of '-' in extension name and callerid 66/3366/2
Corey Farrell [Thu, 28 Jul 2016 19:10:04 +0000 (15:10 -0400)] 
pbx.c: Fix handling of '-' in extension name and callerid

This adds a two strings to ast_exten.  name to go with exten and
cidmatch_display to go with cidmatch.  The new fields contain input used
to add the extension in the first place.  The existing fields now
contain stripped input that excludes insignificant spaces and dashes.
These stripped fields should always be used for comparisons.  The
unstripped fields should normally be used for display, but displaying
stripped values will not cause runtime errors.

Note the actual string is only stored twice if it contains dashes.  If
no dashes are found then both 'char *' fields point to the same memory.
So this change has a minimum effect on memory usage.

The existing functions ast_get_extension_name and
ast_get_extension_cidmatch return unstripped values as they did before
this change.  Other similar bugs likely still exist where unstripped
extensions are saved outside pbx.c then passed back in.

ASTERISK-26233 #close

Change-Id: I6cd61ce57acc1570ca6cc14960c4c3b0a9eb837f

9 years agopbx.c: Allow dangerous functions when adding a hint to dialplan. 70/3370/1
Richard Mudgett [Wed, 27 Jul 2016 22:17:53 +0000 (17:17 -0500)] 
pbx.c: Allow dangerous functions when adding a hint to dialplan.

We can allow dangerous functions when adding a hint since altering
dialplan is itself a privileged activity.  Otherwise, we could never
execute dangerous functions.

ASTERISK-25996 #close
Reported by: Andrew Nagy

Change-Id: I4929ff100ad1200a0198262d069a34f2296e77ba

9 years agoMerge "rtp_engine: Failed assertion and wrong name given for codec" into 14
zuul [Thu, 28 Jul 2016 18:18:46 +0000 (13:18 -0500)] 
Merge "rtp_engine: Failed assertion and wrong name given for codec" into 14

9 years agoMerge "Portably sscanf tv_usec" into 14
zuul [Thu, 28 Jul 2016 17:47:17 +0000 (12:47 -0500)] 
Merge "Portably sscanf tv_usec" into 14

9 years agopjproject: fixed a few bugs 63/3363/1
Alexei Gradinari [Thu, 21 Jul 2016 15:36:44 +0000 (11:36 -0400)] 
pjproject: fixed a few bugs

This patch fixes the issue in pjsip_tx_data_dec_ref()
when tx_data_destroy can be called more than once,
and checks if invalid value (e.g. NULL) is passed to.

This patch updates array limit checks and docs
in pjsip_evsub_register_pkg() and pjsip_endpt_add_capability().

Change-Id: I4c7a132b9664afaecbd6bf5ea4c951e43e273e40

9 years agopjproject_bundled: Update for pjproject 2.5.5 27/3327/2
George Joseph [Sun, 17 Jul 2016 23:28:36 +0000 (17:28 -0600)] 
pjproject_bundled:  Update for pjproject 2.5.5

Add more --disable-* switches to Makefile.rules including
--disable-opus which was causing bundled pjproject to fail with
"undefined reference" errors in libasteriskpj.

Changed PJ_ENABLE_EXTRA_CHECK to 1.

Removed 2 obsolete patches and added a new one.
The new one was merged by Teluu on 6/27/2016.

ASTERISK-26148 #close

Change-Id: Ib8af6c6a9d31f7238ce65b336134c2efdc855063

9 years agoPortably sscanf tv_usec 57/3357/2
David M. Lee [Wed, 27 Jul 2016 15:33:23 +0000 (10:33 -0500)] 
Portably sscanf tv_usec

In a timeval, tv_usec is defined as a suseconds_t, which could be
different underlying types on different platforms. Instead of trying to
scanf directly into the timeval, scanf into a long int, then copy that
into the timeval.

Change-Id: I29f22d049d3f7746b6c0cc23fbf4293bdaa5eb95

9 years agortp_engine: Failed assertion and wrong name given for codec 61/3361/1
Kevin Harwell [Wed, 27 Jul 2016 17:36:22 +0000 (12:36 -0500)] 
rtp_engine: Failed assertion and wrong name given for codec

Fixed an assert check that would trigger when the passed in value was negative.
The negative value was being cast to an unsigned value. This resulted in the
check failing.

Also fixed another problem when loading formats in the engine. When setting the
mime type the format's name was being passed in instead of the codec's name.

Change-Id: I1a201cd419ba4d8e9a40d337e36b6fbe1737192c

9 years agodsp.c: Add fax and DTMF detection unit tests. 45/3345/2
Richard Mudgett [Fri, 22 Jul 2016 03:44:55 +0000 (22:44 -0500)] 
dsp.c: Add fax and DTMF detection unit tests.

* Add fax amplitude and frequency sweep tests.
* Add DTMF amplitude and twist unit tests.

Change-Id: I8d77c9a1eec89e440d715f998c928687e870c3f7

9 years agodsp.c: Added descriptive comments to Goertzel calculations. 44/3344/2
Richard Mudgett [Thu, 21 Jul 2016 16:56:53 +0000 (11:56 -0500)] 
dsp.c: Added descriptive comments to Goertzel calculations.

* Added doxygen to describe some struct members and what is going on in
the code.

Change-Id: I2ec706a33b52aee42b16dcc356c2bd916a45190d

9 years agodsp.c: Fix incorrect format reference typo. 43/3343/2
Richard Mudgett [Wed, 13 Jul 2016 18:48:25 +0000 (13:48 -0500)] 
dsp.c: Fix incorrect format reference typo.

Change-Id: Ia131da3ec29acf385cb43a586a29ecc975eb3896

9 years agodsp.c: Correct DTMF twist dsp.conf documentation. 42/3342/2
Richard Mudgett [Tue, 26 Jul 2016 02:18:21 +0000 (21:18 -0500)] 
dsp.c: Correct DTMF twist dsp.conf documentation.

Change-Id: Idf97e3a72f1edc5fca58f2fa7b20785922be0cae

9 years agoReplace strdupa with more portable ast_strdupa 54/3354/1
David M. Lee [Wed, 27 Jul 2016 14:56:29 +0000 (09:56 -0500)] 
Replace strdupa with more portable ast_strdupa

The strdupa function is a GNU extension, and not widely portable. We
have an ast_strdupa function used within Asterisk which is preferred.
I pulled the definition up from menuselect.c into the menuselect.h
header file so it can be shared across menuselect.

Change-Id: I9593c97f78386b47dc1e83201e80cb2f62b36c2e

9 years agoastconfigparser.py: Update with realtime fixes. 07/3307/2
Joshua Colp [Fri, 22 Jul 2016 09:43:20 +0000 (06:43 -0300)] 
astconfigparser.py: Update with realtime fixes.

When configuring SIP URIs in the pjsip.conf file it is
necessary to escape the semicolon so the parser does not
treat it as a comment. This change allows this to work in
the astconfigparser implementation.

A secondary bug where some data was lost if a configuration
option included a "=" in its value was also fixed.

A bug where sections would be considered equal despite
being different has also been fixed.

Change-Id: If229f656ef22050b50e7b34e90c4bffe796431f8

9 years agodsp.c: Fix erroneous fax tone detection. 41/3341/1
Richard Mudgett [Fri, 22 Jul 2016 03:28:25 +0000 (22:28 -0500)] 
dsp.c: Fix erroneous fax tone detection.

The Goertzel calculations get less accurate the lower the signal level
being worked with becomes because there is less resolution remaining.
If it is too low we can erroneously detect a tone where none really
exists.  The searched for fax frequencies not only need to be so much
stronger than the background noise they must also be a minimum strength.

* Add needed minimum threshold test to tone_detect().

* Set TONE_THRESHOLD to allow low volume frequency spread detection.

ASTERISK-26237 #close
Reported by: Richard Mudgett

Change-Id: I84dbba7f7628fa13720add6a88eae3b129e066fc

9 years agoMerge "codecs: Add iLBC 20." into 14
zuul [Tue, 26 Jul 2016 15:38:10 +0000 (10:38 -0500)] 
Merge "codecs: Add iLBC 20." into 14

9 years agoMerge "menuselect: Various menuselect enhancements" into 14
zuul [Tue, 26 Jul 2016 11:39:31 +0000 (06:39 -0500)] 
Merge "menuselect:  Various menuselect enhancements" into 14

9 years agoMerge "asterisk.c: Add auto generation and persistence of UUID" into 14
zuul [Tue, 26 Jul 2016 02:03:34 +0000 (21:03 -0500)] 
Merge "asterisk.c:  Add auto generation and persistence of UUID" into 14

9 years agomenuselect: Various menuselect enhancements 31/3331/2
George Joseph [Sun, 24 Jul 2016 23:27:26 +0000 (17:27 -0600)] 
menuselect:  Various menuselect enhancements

* Add 'external' as a support level.
* Add ability for module directories to add entries to the menu
  by adding members to the <module_prefix>/<module_prefix>.xml file.
* Expand the description field to 3 lines in the ncurses implementation.
* Allow the description field to wrap in the newt implementation.
* Add description field to the gtk implementation.

Change-Id: I7f9600a1984a42ce0696db574c1051bc9ad7c808

9 years agoari: Update version. 29/3329/1
Joshua Colp [Sun, 24 Jul 2016 21:51:25 +0000 (18:51 -0300)] 
ari: Update version.

New functionality has been added so the version has been
bumped to one over the 13 version.

Change-Id: I5d30077f62640c0ac83599b4e9a9b657bf184f69

9 years agoasterisk.c: Add auto generation and persistence of UUID 23/3323/1
George Joseph [Sat, 23 Jul 2016 13:51:48 +0000 (07:51 -0600)] 
asterisk.c:  Add auto generation and persistence of UUID

Upcoming features will require the generation and persistence
of a UUID.

Change-Id: I3ec0062427e133217db6ef496a4216f427c3b92d

9 years agoFix sqlalchemy error regarding identifier length. 16/3316/1
Mark Michelson [Fri, 22 Jul 2016 19:44:50 +0000 (14:44 -0500)] 
Fix sqlalchemy error regarding identifier length.

sqlalchemy was complaining:

sqlalchemy.exc.IdentifierError: Identifier
'ps_contacts_qualifyfreq_exptime' exceeds maximum length of 30
characters

This fixes the problem by changing the index name to be
"ps_contacts_qualifyfreq_exp" instead.

ASTERISK-26227 #close
Reported by Mark Michelson

Change-Id: I0ed784f87504be2a59ee8d3242ef6f625d5ed1a9

9 years agoMerge "build_tools: Update make_version for 14" into 14
Joshua Colp [Fri, 22 Jul 2016 17:52:59 +0000 (12:52 -0500)] 
Merge "build_tools: Update make_version for 14" into 14

9 years agoMerge "res_srtp: Enable AES-256 and AES-GCM." into 14
Joshua Colp [Fri, 22 Jul 2016 16:50:59 +0000 (11:50 -0500)] 
Merge "res_srtp: Enable AES-256 and AES-GCM." into 14

9 years agoMerge "res_pjsip: Whitespace and comment cleanup." into 14
zuul [Fri, 22 Jul 2016 12:45:21 +0000 (07:45 -0500)] 
Merge "res_pjsip: Whitespace and comment cleanup." into 14

9 years agobuild_tools: Update make_version for 14 09/3309/1
George Joseph [Fri, 22 Jul 2016 12:01:15 +0000 (06:01 -0600)] 
build_tools: Update make_version for 14

Also remove svn stuff

Change-Id: I95d762f7cbbe5eb01117bde8779515d51a0bb06a

9 years agoMerge "chan_dahdi.c: Fix deadlock potential in fax redirection." into 14
zuul [Fri, 22 Jul 2016 10:26:41 +0000 (05:26 -0500)] 
Merge "chan_dahdi.c: Fix deadlock potential in fax redirection." into 14

9 years agoMerge "chan_sip.c: Fix deadlock potential in fax redirection." into 14
zuul [Fri, 22 Jul 2016 10:26:39 +0000 (05:26 -0500)] 
Merge "chan_sip.c: Fix deadlock potential in fax redirection." into 14

9 years agoMerge "chan_pjsip.c: Fix deadlock potential in fax redirection." into 14
zuul [Fri, 22 Jul 2016 10:14:48 +0000 (05:14 -0500)] 
Merge "chan_pjsip.c: Fix deadlock potential in fax redirection." into 14

9 years agoMerge "res_fax.c: Fix deadlock potential in FAXOPT(faxdetect) framehook." into 14
zuul [Fri, 22 Jul 2016 10:14:44 +0000 (05:14 -0500)] 
Merge "res_fax.c: Fix deadlock potential in FAXOPT(faxdetect) framehook." into 14

9 years agoMerge "chan_sip: Prevent deadlock when issuing "sip show channels"" into 14
Joshua Colp [Fri, 22 Jul 2016 09:47:40 +0000 (04:47 -0500)] 
Merge "chan_sip: Prevent deadlock when issuing "sip show channels"" into 14

9 years agoMerge "res_fax: Fix FAXOPT(faxdetect) timeout option." into 14
Joshua Colp [Fri, 22 Jul 2016 09:46:43 +0000 (04:46 -0500)] 
Merge "res_fax: Fix FAXOPT(faxdetect) timeout option." into 14

9 years agoMerge "chan_dahdi: Add faxdetect_timeout option." into 14
Joshua Colp [Fri, 22 Jul 2016 09:46:36 +0000 (04:46 -0500)] 
Merge "chan_dahdi: Add faxdetect_timeout option." into 14

9 years agoMerge "res_pjsip: Add fax_detect_timeout endpoint option." into 14
Joshua Colp [Fri, 22 Jul 2016 09:46:29 +0000 (04:46 -0500)] 
Merge "res_pjsip: Add fax_detect_timeout endpoint option." into 14

9 years agocodecs: Add iLBC 20. 04/3304/1
Alexander Traud [Tue, 19 Jul 2016 18:39:38 +0000 (20:39 +0200)] 
codecs: Add iLBC 20.

Asterisk already supported iLBC 30. This change adds iLBC 20. Now, Asterisk
defaults to iLBC 20 but falls back to iLBC 30, when the remote party requests
this.

ASTERISK-26218 #close
ASTERISK-26221 #close
Reported by: Aaron Meriwether

Change-Id: I07f523a3aa1338bb5217a1bf69c1eeb92adedffa

9 years agores_pjsip: Whitespace and comment cleanup. 02/3302/1
Richard Mudgett [Fri, 15 Jul 2016 21:16:18 +0000 (16:16 -0500)] 
res_pjsip: Whitespace and comment cleanup.

Change-Id: I11139a4a95df34e223ba622aa6227e33ab8f6c38

9 years agochan_dahdi.c: Fix deadlock potential in fax redirection. 99/3299/1
Richard Mudgett [Tue, 19 Jul 2016 18:18:47 +0000 (13:18 -0500)] 
chan_dahdi.c: Fix deadlock potential in fax redirection.

The dahdi_handle_dtmf() and my_handle_dtmf() have the potential to
deadlock if an incoming fax happens during the Playback or similar
application.

* Fixed the potential deadlock by not calling ast_async_goto() with the
channel lock held.

ASTERISK-26216 #close
Reported by: Richard Mudgett

Change-Id: I9144b84ade5f96690996624ec8a2d40c56af40aa

9 years agochan_sip.c: Fix deadlock potential in fax redirection. 98/3298/1
Richard Mudgett [Wed, 13 Jul 2016 23:49:08 +0000 (18:49 -0500)] 
chan_sip.c: Fix deadlock potential in fax redirection.

The sip_read() has the potential to deadlock if an incoming fax happens
during the Playback or similar application.

* Fixed the potential deadlock by not calling ast_async_goto() with the
channel lock held.

* Made always eat the fax detection frame whether there is a fax extension
or not.

ASTERISK-26216
Reported by: Richard Mudgett

Change-Id: I6d3f5cccd4b77c3aa6ffc1a54c0f6bde61c9278e

9 years agochan_pjsip.c: Fix deadlock potential in fax redirection. 97/3297/1
Richard Mudgett [Wed, 13 Jul 2016 23:48:01 +0000 (18:48 -0500)] 
chan_pjsip.c: Fix deadlock potential in fax redirection.

The chan_pjsip_cng_tone_detected() has the potential to deadlock if an
incoming fax happens during the Playback or similar application.

* Fixed the potential deadlock by not calling ast_async_goto() with the
channel lock held.

* Made always eat the fax detection frame whether there is a fax extension
or not.

ASTERISK-26216
Reported by: Richard Mudgett

Change-Id: I32aecbb4818af646dc5a619f0dc040e9b1f222e5

9 years agores_fax.c: Fix deadlock potential in FAXOPT(faxdetect) framehook. 96/3296/1
Richard Mudgett [Tue, 12 Jul 2016 22:33:29 +0000 (17:33 -0500)] 
res_fax.c: Fix deadlock potential in FAXOPT(faxdetect) framehook.

The fax_detect_framehook() has the potential to deadlock if an incoming
fax happens during the Playback or similar application.

* Fixed the potential deadlock by not calling ast_async_goto() with the
channel lock held.

* Made always eat the fax detection frame whether there is a fax extension
or not.

* Made only detach the framehook if we detected a fax and not on other
possible frames.

ASTERISK-26216
Reported by: Richard Mudgett

Change-Id: I99da35c26d1cd802626ffb4c1b4eb5b015581b6d

9 years agores_fax: Fix FAXOPT(faxdetect) timeout option. 95/3295/1
Richard Mudgett [Tue, 12 Jul 2016 22:24:54 +0000 (17:24 -0500)] 
res_fax: Fix FAXOPT(faxdetect) timeout option.

The fax detection timeout option did not work because basically the wrong
variable was checked in fax_detect_framehook().  As a result, the timer
would timeout immediately and disable fax detection.

* Fixed ignoring negative timeout values.  We'd complain and then go right
on using the negative value.

* Fixed destroy_faxdetect() in the off-nominal case of an incomplete
object creation.

* Added more range checking to FAXOPT(gateway) timeout parameter.

ASTERISK-26214 #close
Reported by: Richard Mudgett

Change-Id: Idc5e698dfe33572de9840bc68cd9fc043cbad976

9 years agochan_dahdi: Add faxdetect_timeout option. 94/3294/1
Richard Mudgett [Mon, 18 Jul 2016 21:16:56 +0000 (16:16 -0500)] 
chan_dahdi: Add faxdetect_timeout option.

The new option allows the channel driver's faxdetect option to timeout on
a call after the specified number of seconds into a call.  The new feature
is disabled if the timeout is set to zero.  The option is disabled by
default.

* Don't clear dsp_features after passing them to the dsp code in
my_pri_ss7_open_media().  We should still remember them especially for the
new faxdetect_timeout option.

ASTERISK-26214
Reported by: Richard Mudgett

Change-Id: Ieffd3fe788788d56282844774365546dce8ac810

9 years agores_pjsip: Add fax_detect_timeout endpoint option. 93/3293/1
Richard Mudgett [Sat, 16 Jul 2016 01:44:52 +0000 (20:44 -0500)] 
res_pjsip: Add fax_detect_timeout endpoint option.

The new endpoint option allows the PJSIP channel driver's fax_detect
endpoint option to timeout on a call after the specified number of
seconds into a call.  The new feature is disabled if the timeout is set
to zero.  The option is disabled by default.

ASTERISK-26214
Reported by: Richard Mudgett

Change-Id: Id5a87375fb2c4f9dc1d4b44c78ec8735ba65453d

9 years agores_pjsip_pubsub: fixed a bug when pjsip_tx_data_dec_ref is called twice. 92/3292/1
Alexei Gradinari [Thu, 21 Jul 2016 15:28:36 +0000 (11:28 -0400)] 
res_pjsip_pubsub: fixed a bug when pjsip_tx_data_dec_ref is called twice.

This patch removed call of pjsip_tx_data_dec_ref in send_notify
if send_request failed.
The pjsip_dlg_send_request deletes the message on error by itself.

It seems this patch fixes next issues:
ASTERISK-26199
ASTERISK-26166
ASTERISK-26174

Change-Id: I8b05917c93d993f95d604c042ace5f1a5500f59a

9 years agochan_sip: Prevent deadlock when issuing "sip show channels" 81/3281/3
George Joseph [Thu, 21 Jul 2016 14:05:03 +0000 (08:05 -0600)] 
chan_sip: Prevent deadlock when issuing "sip show channels"

sip_show_channels locks the dialogs container first then locks each
sip_pvt so it can spit out the details.  The rest of sip dialog
processing locks the sip_pvt first then locks the dialogs container
if it needs to.  Both lock in the order they need but deadlocks can
result.  To fix, sip_show_channels and sip_show_channelstats have
been converted to use an iterator rather than ao2_callback.  This way
the container is locked only while getting the next entry and is
unlocked when the callback is called.

ASTERISK-23013 #close

Change-Id: Id9980419909e811f89484950ed46ef117b9eb990

9 years agoMerge "pbx: Create pbx_sw.c for management of 'struct ast_sw'." into 14
zuul [Thu, 21 Jul 2016 21:04:03 +0000 (16:04 -0500)] 
Merge "pbx: Create pbx_sw.c for management of 'struct ast_sw'." into 14

9 years agores_srtp: Enable AES-256 and AES-GCM. 89/3289/1
Alexander Traud [Wed, 13 Jul 2016 10:24:46 +0000 (12:24 +0200)] 
res_srtp: Enable AES-256 and AES-GCM.

ASTERISK-26190 #close

Change-Id: I11326d80edd656524a51a19450e586c583aa0a0b

9 years agoAdd conditional support for noreturn functions. 84/3284/1
Corey Farrell [Tue, 19 Jul 2016 03:46:19 +0000 (23:46 -0400)] 
Add conditional support for noreturn functions.

This adds support for tagging functions with the noreturn attribute.
If DO_CRASH is enabled then ast_do_crash never returns.  If AST_DEVMODE
and DO_CRASH are enabled then failed assertions never return.  This can
resolve a large number of false positives with static analyzers.

ASTERISK-26220 #close

Change-Id: Icfb61e5fe54574eced4c3e88b317244f467ec753

9 years agopbx: Create pbx_sw.c for management of 'struct ast_sw'. 83/3283/2
Corey Farrell [Sat, 16 Jul 2016 00:28:16 +0000 (20:28 -0400)] 
pbx: Create pbx_sw.c for management of 'struct ast_sw'.

This changes context switches from a linked list to a vector, makes
'struct ast_sw' opaque to pbx.c.

Although ast_walk_context_switches is maintained the procedure is no
longer efficient except for the first call (inc==NULL).  This
functionality is replaced by two new functions implemented by vector
macros.
* ast_context_switches_count (AST_VECTOR_SIZE)
* ast_context_switches_get (AST_VECTOR_GET)

As with ast_walk_context_switches callers of these functions are
expected to have locked contexts.  Only a few places in Asterisk walked
the switches, they have been converted to use the new functions.

Change-Id: I08deb016df22eee8288eb03de62593e45a1f0998

9 years agoMerge "Makefile: Retain XML Declaration and DTD in docs."
zuul [Wed, 20 Jul 2016 16:36:08 +0000 (11:36 -0500)] 
Merge "Makefile: Retain XML Declaration and DTD in docs."

9 years agoMerge "Unit tests: Use AST_TEST_DEFINE in conditional code only."
zuul [Wed, 20 Jul 2016 16:31:52 +0000 (11:31 -0500)] 
Merge "Unit tests: Use AST_TEST_DEFINE in conditional code only."

9 years agoMerge "pbx: Create pbx_ignorepat.c for management of 'struct ast_ignorepat'."
zuul [Wed, 20 Jul 2016 15:57:41 +0000 (10:57 -0500)] 
Merge "pbx: Create pbx_ignorepat.c for management of 'struct ast_ignorepat'."

9 years agoMerge "res_rtp_asterisk: Count a roll-over of the sequence number even on lost packets."
zuul [Wed, 20 Jul 2016 15:29:19 +0000 (10:29 -0500)] 
Merge "res_rtp_asterisk: Count a roll-over of the sequence number even on lost packets."

9 years agoMerge "res_pjsip_mwi: remove unneeded check on endpoint's contacts."
zuul [Wed, 20 Jul 2016 14:57:58 +0000 (09:57 -0500)] 
Merge "res_pjsip_mwi: remove unneeded check on endpoint's contacts."

9 years agoMerge "Makefile: Suppress echoing of target 'config' again."
zuul [Tue, 19 Jul 2016 22:35:59 +0000 (17:35 -0500)] 
Merge "Makefile: Suppress echoing of target 'config' again."

9 years agoMakefile: Retain XML Declaration and DTD in docs. 28/3228/1
Alexander Traud [Tue, 19 Jul 2016 09:48:25 +0000 (11:48 +0200)] 
Makefile: Retain XML Declaration and DTD in docs.

Since Asterisk 12, the documentation got an XML Stylesheet. Because of a typo,
the XML Declaration and DTD were overwritten by this.

ASTERISK-26212 #close

Change-Id: If5ee4625068042e98ab3fcb22a25e2f15d0c68bd

9 years agoUnit tests: Use AST_TEST_DEFINE in conditional code only. 27/3227/1
Corey Farrell [Mon, 18 Jul 2016 23:40:22 +0000 (19:40 -0400)] 
Unit tests: Use AST_TEST_DEFINE in conditional code only.

If AST_TEST_DEFINE is not conditional to TEST_FRAMEWORK it produces dead
code.  This places all existing unit tests into a conditional block if
they weren't already.

ASTERISK-26211 #close

Change-Id: I8ef83ee11cbc991b07b7a37ecb41433e8c734686