]> git.ipfire.org Git - thirdparty/asterisk.git/log
thirdparty/asterisk.git
9 years agoFix #include poll.h and sys/cdefs.h 63/2963/1
Timo Teräs [Thu, 2 Jun 2016 19:53:39 +0000 (22:53 +0300)] 
Fix #include poll.h and sys/cdefs.h

POSIX defines poll.h, sys/poll.h should not be used at is c-library
internal header which may or may not exist. Notable in musl it
generates warning of being incorrect. And add explict include of
sys/cdefs.h where needed.

Change-Id: I142930df53fe7585a06b854b6faddc5301e024be

9 years agoMerge "res_odbc: Implement a connection pool." into 13
zuul [Tue, 7 Jun 2016 17:09:19 +0000 (12:09 -0500)] 
Merge "res_odbc: Implement a connection pool." into 13

9 years agores_odbc: Implement a connection pool. 43/2943/3
Joshua Colp [Thu, 2 Jun 2016 17:04:45 +0000 (14:04 -0300)] 
res_odbc: Implement a connection pool.

Testing has shown that our usage of UnixODBC is problematic
due to bugs within UnixODBC itself as well as the heavy weight
cost of connecting and disconnecting database connections, even
when pooling is enabled.

For users of UnixODBC 2.3.1 and earlier crashes would occur due
to insufficient protection of the disconnect operation. This was
fixed in UnixODBC 2.3.2 and above.

For users of UnixODBC 2.3.3 and higher a slow-down would occur
under heavy database use due to repeated connection establishment.
A regression is present where on each connection the database
configuration is cached again, with the cache growing out of
control.

The connection pool implementation present in this change helps
to mitigate these issues by reducing how much we connect and
disconnect database connections. We also solve the issue of
crashes under UnixODBC 2.3.1 by defaulting the maximum number of
connections to 1, returning us to the previous working behavior.
For users who may have a fixed version the maximum concurrent
connection limit can be increased helping with performance.

The connection pool works by keeping a list of active connections.
If the connection limit has not been reached a new connection is
established. If the connection limit has been reached then the
request waits until a connection becomes available before
continuing.

ASTERISK-26074 #close
ASTERISK-26054 #close

Change-Id: I6774bf4bac49a0b30242c76a09c403d2e856ecff

9 years agores_srtp: Instead of libSRTP use OpenSSL as random source. 61/2961/1
Alexander Traud [Tue, 7 Jun 2016 10:45:34 +0000 (12:45 +0200)] 
res_srtp: Instead of libSRTP use OpenSSL as random source.

Since libSRTP 1.5, its Random Number Generator (RNG) is not maintained anymore.
Therefore, the symbol RAND_bytes is used instead of crypto_get_random.

ASTERISK-24436 #close

Change-Id: Iea0bae4d4e3c9aa0926ea442b6484b5159789d96

9 years agoMerge "core/dial: New channel variable FORWARDERNAME" into 13
zuul [Mon, 6 Jun 2016 12:27:30 +0000 (07:27 -0500)] 
Merge "core/dial: New channel variable FORWARDERNAME" into 13

9 years agoalembic: Fix migration. 30/2930/1
Joshua Colp [Thu, 2 Jun 2016 09:59:06 +0000 (06:59 -0300)] 
alembic: Fix migration.

The 81b01a191a46_pjsip_add_contact_reg_server.py script was attempting
to use UniqueConstraint and failing. It was not imported and after
importing it also continued to fail.

I've changed the script to use the explicit name of the constraint
instead.

Change-Id: I2438b0be90b7ce583b47dd27983c0c1a02cea5b9

9 years agoMerge "pjsip_distributor.c: Use correct rdata info access method (Part 2)." into 13
Joshua Colp [Thu, 2 Jun 2016 00:40:06 +0000 (19:40 -0500)] 
Merge "pjsip_distributor.c: Use correct rdata info access method (Part 2)." into 13

9 years agoMerge "logging,cdr,cel: Fix stringfield memory leak." into 13
zuul [Wed, 1 Jun 2016 21:11:33 +0000 (16:11 -0500)] 
Merge "logging,cdr,cel: Fix stringfield memory leak." into 13

9 years agoMerge "pjproject_bundled: Move to pjproject 2.5" into 13
zuul [Wed, 1 Jun 2016 20:12:19 +0000 (15:12 -0500)] 
Merge "pjproject_bundled:  Move to pjproject 2.5" into 13

9 years agologging,cdr,cel: Fix stringfield memory leak. 27/2927/1
Richard Mudgett [Wed, 1 Jun 2016 18:57:53 +0000 (13:57 -0500)] 
logging,cdr,cel: Fix stringfield memory leak.

The stringfields refactor to allow adding stringfields to the end of a
structure (f6f4cf459f43f072604927209b39646f84aaa2e2) exposed some
incomplete cleanup code by some stringfield users.

The most noticeable leaker is the logging system where there is a leak for
every log message generated.

ASTERISK-26078 #close
Reported by:  Etienne Lessard
Patches:
      jira_asterisk_26078_v13.patch (license #5621) patch uploaded
      by Richard Mudgett

Change-Id: If6a08b31336b492c3de6f9dfd07c447f8d5a8782

9 years agocore/dial: New channel variable FORWARDERNAME 05/2905/3
Alexei Gradinari [Wed, 25 May 2016 15:34:42 +0000 (11:34 -0400)] 
core/dial: New channel variable FORWARDERNAME

Added a new channel variable FORWARDERNAME which indicates which
channel was responsible for a forwarding requests received on dial attempt.

Fixed a bug in the app_queue: FORWARD_CONTEXT is not used.

ASTERISK-26059 #close

Change-Id: I34e93e8c1b5e17776a77b319703c48c8ca48e7b2

9 years agopjsip_distributor.c: Use correct rdata info access method (Part 2). 24/2924/1
Richard Mudgett [Tue, 31 May 2016 18:02:15 +0000 (13:02 -0500)] 
pjsip_distributor.c: Use correct rdata info access method (Part 2).

The pjproject doxygen for rdata->msg_info.info says to call
pjsip_rx_data_get_info() instead of accessing the struct member directly.
You need to call the function mostly because the function will generate
the struct member value if it is not already setup.

Change-Id: I4d519385a577f3e9d9193a88125e493cf17fa799

9 years agoMerge "res_pjsip_mwi_body_generator: Re-order the body items" into 13
zuul [Tue, 31 May 2016 17:39:45 +0000 (12:39 -0500)] 
Merge "res_pjsip_mwi_body_generator:  Re-order the body items" into 13

9 years agoMerge "res_pjsip: add "via_addr", "via_port", "call_id" to contact" into 13
Joshua Colp [Tue, 31 May 2016 12:41:43 +0000 (07:41 -0500)] 
Merge "res_pjsip: add "via_addr", "via_port", "call_id" to contact" into 13

9 years agoMerge "res_pjsip: Add clarifying documentation to PJSIP_HEADER help text" into 13
zuul [Tue, 31 May 2016 12:17:16 +0000 (07:17 -0500)] 
Merge "res_pjsip: Add clarifying documentation to PJSIP_HEADER help text" into 13

9 years agoMerge "res_pjsip: chatty verbose messages" into 13
zuul [Tue, 31 May 2016 11:18:51 +0000 (06:18 -0500)] 
Merge "res_pjsip: chatty verbose messages" into 13

9 years agores_pjsip_mwi_body_generator: Re-order the body items 21/2921/1
George Joseph [Tue, 31 May 2016 00:27:35 +0000 (18:27 -0600)] 
res_pjsip_mwi_body_generator:  Re-order the body items

Re-ordered the body items so Message-Account is second.

Messages-Waiting: no
Message-Account: sip:1571@<IP Removed>:5060
Voice-Message: 0/0 (0/0)

ASTERISK-26065 #close
Reported-by: Ross Beer
Change-Id: If5d35a64656eac98c2dd5e490cc0b2807bed80c3

9 years agopjproject_bundled: Move to pjproject 2.5 19/2919/1
George Joseph [Mon, 30 May 2016 15:58:35 +0000 (09:58 -0600)] 
pjproject_bundled:  Move to pjproject 2.5

Although all the patches we had against 2.4.5 were applied by Teluu,
a new bug was introduced preventing re-use of tcp and tls transports
This patch removes all the previous patches against 2.4.5, updates
the version to 2.5, and adds a new patch to correct the transport
re-use problem.

Change-Id: I0dc6c438c3910f7887418a5832ca186aea23d068

9 years agores_pjsip: Add clarifying documentation to PJSIP_HEADER help text 16/2916/2
Rusty Newton [Fri, 27 May 2016 17:25:55 +0000 (12:25 -0500)] 
res_pjsip: Add clarifying documentation to PJSIP_HEADER help text

Added notes about when you can read or write headers. Specifically
about being able to read on the inbound channel and write on an
outbound channel.

ASTERISK-26063 #close
Reported by: Private Name
Tested by: Rusty Newton

Change-Id: Ibeb64af17d1f6451028b3c29855a3f151a01d8c5

9 years agoMerge "app_voicemail: fix bugs, imap mm_status log change to debug" into 13
Joshua Colp [Thu, 26 May 2016 22:30:57 +0000 (17:30 -0500)] 
Merge "app_voicemail: fix bugs, imap mm_status log change to debug" into 13

9 years agopjsip_distributor.c: Use correct rdata info access method. 08/2908/1
Richard Mudgett [Wed, 25 May 2016 23:30:07 +0000 (18:30 -0500)] 
pjsip_distributor.c: Use correct rdata info access method.

The pjproject doxygen for rdata->msg_info.info says to call
pjsip_rx_data_get_info() instead of accessing the struct member directly.
You need to call the function mostly because the function will generate
the struct member value if it is not already setup.

Change-Id: Iafe8b01242b7deb0ebfdc36685e21374a43936d2

9 years agoapp_voicemail: fix bugs, imap mm_status log change to debug 83/2883/5
Alexei Gradinari [Fri, 20 May 2016 18:56:30 +0000 (14:56 -0400)] 
app_voicemail: fix bugs, imap mm_status log change to debug

Fixed some bugs:
- create dirpath when save downloading message from IMAP storage.
- create IMAP folder if not exists when saving to IMAP storage
- check if file successfully opened before write to it
- some IMAP checks
- remove non-standard flag 'Unseen'
etc

Change to debug IMAP mm_status log instead of verbose.

Remove unused X-Asterisk-VM-Caller-channel message header
for security reason. The clients should not know name of peer/endpoint.

ASTERISK-26045 #close

Change-Id: I7f83d88b69b36934e2539c114b9fb612deed971b

9 years agores_pjsip: add "via_addr", "via_port", "call_id" to contact 01/2801/6
Alexei Gradinari [Thu, 19 May 2016 19:56:26 +0000 (15:56 -0400)] 
res_pjsip: add "via_addr", "via_port", "call_id" to contact

As res_pjsip_nat rewrites contact's address, only the last Via header
can contain the source address of registered endpoint.
Also Call-Id header may contain the source address of registered
endpoint.

Added "via_addr", "via_port", "call_id" to contact.
Added new fields ViaAddress, CallID to AMI event ContactStatus.

ASTERISK-26011

Change-Id: I36bcc0bf422b3e0623680152d80486aeafe4c576

9 years agores_pjsip: chatty verbose messages 02/2902/2
Alexei Gradinari [Tue, 24 May 2016 21:56:49 +0000 (17:56 -0400)] 
res_pjsip: chatty verbose messages

There are a lot of verbose messages about Endpoint and Contact status
changes if there are many dynamic endpoints.
The patch sets verbose level 2 for Endpoint status changes
and verbose level 3 for Contact status changes.

ASTERISK-26055 #close

Change-Id: Ie64e261ddbbc41bfff0f0190241152cc123fe6d7

9 years agothreadpool: Fix potential data race. 00/2900/2
Corey Farrell [Fri, 12 Feb 2016 15:59:44 +0000 (10:59 -0500)] 
threadpool: Fix potential data race.

worker_start checked for ZOMBIE status without holding a lock.  All
other read/write of worker status are performed with a lock, so this
check should do the same.

ASTERISK-25777 #close

Change-Id: I5e33685a5c26fdb300851989a3b82be8c4e03781

9 years agoMerge "func_odbc: single database connection should be optional" into 13
zuul [Tue, 24 May 2016 14:00:20 +0000 (09:00 -0500)] 
Merge "func_odbc: single database connection should be optional" into 13

9 years agoMerge "Makefile: remove OSARCH check for init install" into 13
zuul [Mon, 23 May 2016 21:16:14 +0000 (16:16 -0500)] 
Merge "Makefile: remove OSARCH check for init install" into 13

9 years agoMerge "func_curl: Don't trim response text on non-ASCII characters" into 13
zuul [Mon, 23 May 2016 14:27:29 +0000 (09:27 -0500)] 
Merge "func_curl: Don't trim response text on non-ASCII characters" into 13

9 years agoMerge "parking.h: Update ast_parking_park_call() doxygen to reality." into 13
zuul [Mon, 23 May 2016 11:39:12 +0000 (06:39 -0500)] 
Merge "parking.h: Update ast_parking_park_call() doxygen to reality." into 13

9 years agoMakefile: remove OSARCH check for init install 94/2894/1
Tzafrir Cohen [Wed, 18 May 2016 15:58:20 +0000 (18:58 +0300)] 
Makefile: remove OSARCH check for init install

There are more specific checks for the platform.

Specifically this allows installing OS/X init scripts.

ASTERISK-26038 #close

Change-Id: If08933621145b10362a0cfe73c079301d9c13f50
Signed-off-by: Tzafrir Cohen <tzafrir.cohen@xorcom.com>
9 years agofunc_curl: Don't trim response text on non-ASCII characters 92/2892/1
Ivan Poddubny [Sat, 21 May 2016 10:42:45 +0000 (13:42 +0300)] 
func_curl: Don't trim response text on non-ASCII characters

The characters 0x80-0xFF were trimmed as well as 0x00-0x20 because of
a signed comparison.

ASTERISK-25669 #close
Reported by: Jesper
patches:
  strings.curl.trim.patch submitted by Jesper (License 5518)

Change-Id: Ia51e169f24e3252a7ebbaab3728630138ec6f60a

9 years agoparking.h: Update ast_parking_park_call() doxygen to reality. 87/2887/2
Richard Mudgett [Fri, 20 May 2016 21:59:52 +0000 (16:59 -0500)] 
parking.h: Update ast_parking_park_call() doxygen to reality.

ASTERISK-26029

Change-Id: I2db14d102a48d3224010e6d1c69e856373cc1260

9 years agofunc_odbc: single database connection should be optional 00/2800/6
Alexei Gradinari [Tue, 10 May 2016 19:30:29 +0000 (15:30 -0400)] 
func_odbc: single database connection should be optional

func_odbc was changed in Asterisk 13.9.0
to make func_odbc use a single database connection per DSN
because of reported bug ASTERISK-25938
with MySQL/MariaDB LAST_INSERT_ID().

This is drawback in performance when func_odbc is used
very often in dialplan.

Single database connection should be optional.

ASTERISK-26010

Change-Id: I57d990616c957dabf7597dea5d5c3148f459dfb6

9 years agores_pjsip: Match dialogs on responses better. 81/2881/1
Mark Michelson [Fri, 20 May 2016 14:39:10 +0000 (09:39 -0500)] 
res_pjsip: Match dialogs on responses better.

When receiving an incoming response to a dialog-starting INVITE, we were
not matching the response to the INVITE dialog. Since we had not
recorded the to-tag to the dialog structure, the PJSIP-provided method
to find the dialog did not match.

Most of the time, this was not a problem, because there is a fall-back
that makes the response get routed to the same serializer that the
request was sent on. However, in cases where an asynchronous DNS lookup
occurs in the PJSIP core, the thread that sends the INVITE is not
actually a threadpool serializer thread. This means we are unable to
record a serializer to handle the incoming response.

Now, imagine what happens when an INVITE is sent on a non-serialized
thread, and an error response (such as a 486) arrives. The 486 ends up
getting put on some random threadpool thread. Eventually, a hangup task
gets queued on the INVITE dialog serializer. Since the 486 is being
handled on a different thread, the hangup task can execute at the same
time that the 486 is being handled. The hangup task assumes that it is
the sole owner of the INVITE session and channel, so it ends up
potentially freeing the channel and NULLing the session's channel
pointer. The thread handling the 486 can crash as a result.

This change has the incoming response match the INVITE transaction, and
then get the dialog from that transaction. It's the same method we had
been using for matching incoming CANCEL requests. By doing this, we get
the INVITE dialog and can ensure that the 486 response ends up being
handled by the same thread as the hangup, ensuring that the hangup runs
after the 486 has been completely handled.

ASTERISK-25941 #close
Reported by Javier Riveros

Change-Id: I0d4cc5d07e2a8d03e9db704d34bdef2ba60794a0

9 years agores_sorcery_astdb: Filter fields to only the registered ones. 79/2879/1
Joshua Colp [Thu, 19 May 2016 16:41:45 +0000 (13:41 -0300)] 
res_sorcery_astdb: Filter fields to only the registered ones.

This change introduces the same filtering that is done in res_sorcery_realtime
to the res_sorcery_astdb module. This allows persisted sorcery objects
that may contain unknown fields to still be read in from the AstDB
and used. This is particularly useful when switching between different
versions of Asterisk that may have introduced additional fields.

ASTERISK-26014 #close

Change-Id: Ib655130485a3ccfd635b7ed5546010ca14690fb2

9 years agoMerge "res_pjsip_empty_info: Respond to empty SIP INFO packets" into 13
Joshua Colp [Thu, 19 May 2016 20:12:02 +0000 (15:12 -0500)] 
Merge "res_pjsip_empty_info: Respond to empty SIP INFO packets" into 13

9 years agoMerge "res_pjsip_outbound_publishing: After unloading the library won't load again...
Joshua Colp [Thu, 19 May 2016 18:33:08 +0000 (13:33 -0500)] 
Merge "res_pjsip_outbound_publishing: After unloading the library won't load again" into 13

9 years agoMerge "res_pjsip: Endpoint IP Access Controls" into 13
Joshua Colp [Thu, 19 May 2016 16:54:03 +0000 (11:54 -0500)] 
Merge "res_pjsip: Endpoint IP Access Controls" into 13

9 years agores_pjsip_empty_info: Respond to empty SIP INFO packets 96/2796/4
snuffy [Tue, 10 May 2016 02:40:08 +0000 (12:40 +1000)] 
res_pjsip_empty_info: Respond to empty SIP INFO packets

Some SBCs require responses to empty SIP INFO packets
after establishing call via INVITE, if not responded to
they may drop your call after unspecified timeout of X minutes.

They are identified by having no Content-Type, check for this
and respond with 200 - OK message.

ASTERISK-24986 #close
Reported-by: Ilya Trikoz, Federico Santulli
Change-Id: Ib27e4f07151e5aef28fa587e4ead36c5b87c43e0

9 years agoMerge "res_pjsip_outbound_publish: Ref leak in off nominal callback paths" into 13
Joshua Colp [Thu, 19 May 2016 10:56:31 +0000 (05:56 -0500)] 
Merge "res_pjsip_outbound_publish: Ref leak in off nominal callback paths" into 13

9 years agoMerge "udptl: Don't eat sequence numbers until OK is received" into 13
Joshua Colp [Thu, 19 May 2016 10:33:35 +0000 (05:33 -0500)] 
Merge "udptl:  Don't eat sequence numbers until OK is received" into 13

9 years agoMerge "res/res_hep_pjsip: Fix reported local IP address when bound to 'any'" into 13
Joshua Colp [Thu, 19 May 2016 10:18:32 +0000 (05:18 -0500)] 
Merge "res/res_hep_pjsip: Fix reported local IP address when bound to 'any'" into 13

9 years agoMerge "res_pjsip_outbound_publish: state potential dropped on reloads/realtime fetche...
Joshua Colp [Thu, 19 May 2016 10:13:38 +0000 (05:13 -0500)] 
Merge "res_pjsip_outbound_publish: state potential dropped on reloads/realtime fetches" into 13

9 years agoMerge "res_pjsip_outbound_publish: Potential crash due to off nominal path" into 13
Joshua Colp [Thu, 19 May 2016 10:12:46 +0000 (05:12 -0500)] 
Merge "res_pjsip_outbound_publish: Potential crash due to off nominal path" into 13

9 years agoMerge "res_pjsip_outbound_publish: Won't unload if condition wait times out" into 13
Joshua Colp [Thu, 19 May 2016 00:17:43 +0000 (19:17 -0500)] 
Merge "res_pjsip_outbound_publish: Won't unload if condition wait times out" into 13

9 years agoMerge "chan_sip: Prevent extra Session-Expires headers from being added" into 13
Joshua Colp [Wed, 18 May 2016 20:37:59 +0000 (15:37 -0500)] 
Merge "chan_sip:  Prevent extra Session-Expires headers from being added" into 13

9 years agoudptl: Don't eat sequence numbers until OK is received 67/2867/3
George Joseph [Wed, 18 May 2016 12:54:14 +0000 (06:54 -0600)] 
udptl:  Don't eat sequence numbers until OK is received

Scenario:
Local fax -> Asterisk w/ firewall -> Provider -> Remote fax

* Local fax starts rtp call to remote fax
* Remote fax starts t38 call back to local fax.
* Local fax sends t38 no-signal to Asterisk before sending an OK.
* udptl processes the frame and increments the expected sequence number.
* chan_sip drops the frame because the call isn't up so nothing goes out
  the external interface to open the port for incoming packets.
* Local fax sends OK and Asterisk sends OK to the remote fax.
* Remote fax sends t38 packets which are dropped by the firewall.
* Local fax re-sends t38 no-signal with the same sequence number.
* udptl drops the frame because it thinks it's a dup.
* Still no outgoing packets to open the firewall.
* t38 negotiation fails.

The patch drops frames t38 received before udptl sequence processing
when the call hasn't been answered yet.  The second no-signal frame
is then seen as new and is relayed out the external interface which
opens the port and allows negotiation to continue.

ASTERISK-26034 #close

Change-Id: I11744b39748bd2ecbbe8ea84cdb4f3c5943c5af9

9 years agochan_sip: Prevent extra Session-Expires headers from being added 52/2852/2
George Joseph [Tue, 17 May 2016 16:14:51 +0000 (10:14 -0600)] 
chan_sip:  Prevent extra Session-Expires headers from being added

When chan_sip does a re-INVITE to refresh a session and authentication
is required, the INVITE with the Authorization header containes a
second Session-Expires header without the ";refersher=" parameter.
This is causing some proxies to return a 400.  Also, when Asterisk is
the uas and the refresher, it is including the Session-Expires and
Min-SE headers in OPTIONS messages which is not allowed per RFC4028.

This patch (based on the reporter's) Checks to see if a Session-Expires
header is already in the message before adding another one.  It also
checks that the method is INVITE or UPDATE.

ASTERISK-26030 #close

Change-Id: I58a7b07bab5a3177748d8a7034fb8ad8e11ce1d9

9 years agores_pjsip_outbound_registration: Clean up state when registration is deleted 49/2849/2
George Joseph [Mon, 16 May 2016 20:29:38 +0000 (14:29 -0600)] 
res_pjsip_outbound_registration:  Clean up state when registration is deleted

Nothing was cleaning up the registration state object when ast_sorcery_delete
was called on a registration.  So, the registration was deleted from sorcery
but the state object went right on refreshing the registration (or failing
to refresh the registration) with the peer.

* Added a 'deleted' observer on registration that removes the state object.

ASTERISK-25964 #close
Reported-by Matt Jordan

Change-Id: I2db792145cdb1f72ebbf57dd9099596dbbf12c23

9 years agoMerge "configs/samples/pjsip.conf.sample: Fix typo" into 13
zuul [Mon, 16 May 2016 18:53:02 +0000 (13:53 -0500)] 
Merge "configs/samples/pjsip.conf.sample: Fix typo" into 13

9 years agores_pjsip: Set TCP_NODELAY on TCP transports 39/2839/1
George Joseph [Mon, 16 May 2016 00:05:34 +0000 (18:05 -0600)] 
res_pjsip:  Set TCP_NODELAY on TCP transports

Although it's perfectly legal to place multiple SIP messages in the same packet,
it can cause problems because the Linux default is to enable Path MTU Discovery
which sets the Don't Fragment bit on the packets. If adding a second message to
the packet causes the MTU to be exceeded, and the destination isn't equipped to
send a FRAGMENTATION NEEDED response to a large packet, the packet will just be
dropped.

We can't specifically tell the stack to send only 1 message per packet, but we
can turn on TCP_NODELAY when we create the transport. This will at least tell
the stack to send packets as soon as possible.

ASTERISK-26005 #close
Reported-by: Ross Beer
Change-Id: I820f23227183f2416ca5e393bec510e8fe1c8fbd

9 years agoconfigs/samples/pjsip.conf.sample: Fix typo 36/2836/1
Matt Jordan [Sun, 15 May 2016 02:48:56 +0000 (21:48 -0500)] 
configs/samples/pjsip.conf.sample: Fix typo

A ':' is not a valid token for starting a comment.

Change-Id: I123592d93a83d1bdde3e352822881eb9da85e5ad

9 years agores/res_hep_pjsip: Fix reported local IP address when bound to 'any' 15/2815/5
Matt Jordan [Thu, 12 May 2016 12:08:08 +0000 (07:08 -0500)] 
res/res_hep_pjsip: Fix reported local IP address when bound to 'any'

When bound to an 'any' address, e.g., 0.0.0.0, PJSIP reports as its
local address the 'any' address, as opposed to the IP address we
actually received the packet on. This can cause some confusion in Homer,
as it will dutifully report what we send it.

This patch uses the PJSIP inspection routines to determine which IP
address we probably received the packet on based on the remote party's
IP address. In the event that this fails, it falls back to the IP
address natively reported by the transport.

Change-Id: I076f835d2aef489e1ee1d01595b211eb2ce62da3

9 years agoMerge "logger: Add PID to syslog messages." into 13
zuul [Sun, 15 May 2016 00:50:44 +0000 (19:50 -0500)] 
Merge "logger: Add PID to syslog messages." into 13

9 years agores_ari: Correct Location headers returned by some ARI resources 34/2834/2
Sean Bright [Sat, 14 May 2016 17:29:09 +0000 (13:29 -0400)] 
res_ari: Correct Location headers returned by some ARI resources

The Location headers returned by:

 * /bridges/{bridgeId}/play
 * /bridges/{bridgeId}/record
 * /channels/{channelId}/play
 * /channels/{channelId}/record

Did not have the '/ari' prefix, and in the case of the 'play' resources, were
using 'playback' instead of 'playbacks.'

Change-Id: I957c58a3a1471bf477dae7c67faa1b74fcd9241c

9 years agoMerge "res_hep: Provide an option to pick the UUID type" into 13
zuul [Sat, 14 May 2016 14:47:33 +0000 (09:47 -0500)] 
Merge "res_hep: Provide an option to pick the UUID type" into 13

9 years agoMerge "config_transport: Tell pjproject to allow all SSL/TLS protocols" into 13
zuul [Fri, 13 May 2016 22:57:52 +0000 (17:57 -0500)] 
Merge "config_transport:  Tell pjproject to allow all SSL/TLS protocols" into 13

9 years agores_pjsip: Endpoint IP Access Controls 51/2551/15
Alexei Gradinari [Fri, 13 May 2016 16:38:20 +0000 (12:38 -0400)] 
res_pjsip: Endpoint IP Access Controls

With the old SIP module we can use IP access controls per peer.
PJSIP module missing this feature.

This patch added next configuration Endpoint options:
    "acl" - list of IP ACL section names in acl.conf
    "deny" - List of IP addresses to deny access from
    "permit" - List of IP addresses to permit access from
    "contact_acl" - List of Contact ACL section names in acl.conf
    "contact_deny" - List of Contact header addresses to deny
    "contact_permit" - List of Contact header addresses to permit

This patch also better logging failed request:
    add custom message instead of "No matching endpoint found"
    add SIP method to logging

ASTERISK-25900

Change-Id: I456dea3909d929d413864fb347d28578415ebf02

9 years agores_hep: Provide an option to pick the UUID type 14/2814/3
Matt Jordan [Thu, 12 May 2016 01:17:15 +0000 (20:17 -0500)] 
res_hep: Provide an option to pick the UUID type

At one point in time, it seemed like a good idea to use the Asterisk
channel name as the HEP correlation UUID. In particular, it felt like
this would be a useful identifier to tie PJSIP messages and RTCP
messages together, along with whatever other data we may eventually send
to Homer. This also had the benefit of keeping the correlation UUID
channel technology agnostic.

In practice, it isn't as useful as hoped, for two reasons:
1) The first INVITE request received doesn't have a channel. As a
   result, there is always an 'odd message out', leading it to be
   potentially uncorrelated in Homer.
2) Other systems sending capture packets (Kamailio) use the SIP Call-ID.
   This causes RTCP information to be uncorrelated to the SIP message
   traffic seen by those capture nodes.

In order to support both (in case someone is trying to use res_hep_rtcp
with a non-PJSIP channel), this patch adds a new option, uuid_type, with
two valid values - 'call-id' and 'channel'. The uuid_type option is used
by a module to determine the preferred UUID type. When available, that
source of a correlation UUID is used; when not, the more readily available
source is used.

For res_hep_pjsip:
 - uuid_type = call-id: the module uses the SIP Call-ID header value
 - uuid_type = channel: the module uses the channel name if available,
                        falling back to SIP Call-ID if not
For res_hep_rtcp:
 - uuid_type = call-id: the module uses the SIP Call-ID header if the
                        channel type is PJSIP and we have a channel,
                        falling back to the Stasis event provided
                        channel name if not
 - uuid_type = channel: the module uses the channel name

ASTERISK-25352 #close

Change-Id: Ide67e59a52d9c806e3cc0a797ea1a4b88a00122c

9 years agoMerge "pjsip_distributor: Add missing newline to NOTICE" into 13
zuul [Fri, 13 May 2016 11:21:34 +0000 (06:21 -0500)] 
Merge "pjsip_distributor:  Add missing newline to NOTICE" into 13

9 years agoMerge "basic-cfg: asterisk.conf: don't set languages" into 13
Joshua Colp [Fri, 13 May 2016 09:54:06 +0000 (04:54 -0500)] 
Merge "basic-cfg: asterisk.conf: don't set languages" into 13

9 years agoMerge "basic-cfg: asterisk.conf: defaults of options" into 13
zuul [Fri, 13 May 2016 04:18:43 +0000 (23:18 -0500)] 
Merge "basic-cfg: asterisk.conf: defaults of options" into 13

9 years agoMerge "basic-cfg: asterisk.conf: remove [directories]" into 13
zuul [Fri, 13 May 2016 04:18:41 +0000 (23:18 -0500)] 
Merge "basic-cfg: asterisk.conf: remove [directories]" into 13

9 years agoMerge "basic-cfg: asterisk.conf: debug level 5 spams" into 13
zuul [Fri, 13 May 2016 03:20:41 +0000 (22:20 -0500)] 
Merge "basic-cfg: asterisk.conf: debug level 5 spams" into 13

9 years agoMerge "followme: delete the right recorded name file" into 13
zuul [Fri, 13 May 2016 03:03:40 +0000 (22:03 -0500)] 
Merge "followme: delete the right recorded name file" into 13

9 years agoMerge "Use doubles instead of floats for conversions when comparing strings." into 13
Joshua Colp [Fri, 13 May 2016 00:20:07 +0000 (19:20 -0500)] 
Merge "Use doubles instead of floats for conversions when comparing strings." into 13

9 years agobasic-cfg: asterisk.conf: remove [directories] 28/2828/1
Tzafrir Cohen [Tue, 10 May 2016 07:56:40 +0000 (10:56 +0300)] 
basic-cfg: asterisk.conf: remove [directories]

A minimal configuration does not need to explicitly spell out the
directories. The built-in defaults will do just fine. In many cases
they are wrong.

Change-Id: Id1a671e5c5e9923765a4156b57f9f7e263fdd26c
Signed-off-by: Tzafrir Cohen <tzafrir.cohen@xorcom.com>
9 years agobasic-cfg: asterisk.conf: defaults of options 27/2827/1
Tzafrir Cohen [Tue, 10 May 2016 08:06:10 +0000 (11:06 +0300)] 
basic-cfg: asterisk.conf: defaults of options

Note the default of remmed-out options. To clarify that those values are
not the defaults.

Change-Id: I849c29b7a710f0abc37355fcb5bfee335ae30738
Signed-off-by: Tzafrir Cohen <tzafrir.cohen@xorcom.com>
9 years agobasic-cfg: asterisk.conf: debug level 5 spams 26/2826/1
Tzafrir Cohen [Tue, 10 May 2016 08:08:33 +0000 (11:08 +0300)] 
basic-cfg: asterisk.conf: debug level 5 spams

Don't suggest users to use debug level 5, which spews (usually
non-useful) debug information. Reduce the suggestion to (an
arbitrarily-selected) level 2.

Change-Id: Ib53195f78945970956ff59ef13fa89b90e0fcd60
Signed-off-by: Tzafrir Cohen <tzafrir.cohen@xorcom.com>
9 years agobasic-cfg: asterisk.conf: don't set languages 25/2825/1
Tzafrir Cohen [Tue, 10 May 2016 08:10:55 +0000 (11:10 +0300)] 
basic-cfg: asterisk.conf: don't set languages

* No need to set language in a miniml configuration. 'en' will do just
  fine.
* It would be useful to have an example of setting it to a different
  language.
* Setting the documentation language explicitly is likewise not
  required. Setting it to a different value is not common. At least
  until there is a set of translated documentation.

Change-Id: I94d91ea34e129925f25af81ef8dc0906fb568cb7
Signed-off-by: Tzafrir Cohen <tzafrir.cohen@xorcom.com>
9 years agofollowme: delete the right recorded name file 24/2824/1
Tzafrir Cohen [Tue, 10 May 2016 13:17:29 +0000 (16:17 +0300)] 
followme: delete the right recorded name file

FollowMe with the option a records the name of the caller and plays it
to the callee. However it has failed to clean up that recorded file
as it tried to delete the file name without the '.sln' extension.

ASTERISK-26008 #close

Change-Id: I79d7b1be7d5cde57bf076d9389e2a8a4422776ec
Signed-off-by: Tzafrir Cohen <tzafrir.cohen@xorcom.com>
9 years agoMerge "res_pjsip_outbound_registration: generate correct Contact URI for TLS" into 13
zuul [Thu, 12 May 2016 20:05:42 +0000 (15:05 -0500)] 
Merge "res_pjsip_outbound_registration: generate correct Contact URI for TLS" into 13

9 years agoUse doubles instead of floats for conversions when comparing strings. 19/2819/1
Mark Michelson [Thu, 12 May 2016 19:36:25 +0000 (14:36 -0500)] 
Use doubles instead of floats for conversions when comparing strings.

In 13.9.0, there was an issue where PJSIP contacts added to an AOR would
be deleted at seemingly random times.

One reason this was happening was because of an operation to retrieve
the contacts whose expiration time was less than or equal to the current
time. When retrieving existing contacts, the contact's expiration time
and the current time were converted from a string to a float, and those
two floats were compared.

On some systems, including mine, this conversion was horribly off. For
instance, I could regularly see the string "1463079214" get converted
into 1463079168.000000. When switching from using a float to using a
double, the conversion was as expected.

Why was the conversion to float off? My best guess is that the
conversion to float was attempting to store the entire value in the 23
bit significand of the IEEE-754 floating point number. In particular, if
you take only the 23 most significant bits of 1463079214, you get the
messed up 1463079168 that we were seeing in the conversion. It likely
was possible to get a more precise value by composing the number using
an exponent, but the conversion did not work that way. With a double,
you have a 52 bit significand, allowing the entire value to fit there,
and thereby allowing an accurate conversion.

ASTERISK-26007 #close
Reported by Greg Siemon

Change-Id: I83ca7944aae8b7cd994b254c78ec02411d321070

9 years agopjsip_distributor: Add missing newline to NOTICE 16/2816/1
George Joseph [Thu, 12 May 2016 14:13:55 +0000 (08:13 -0600)] 
pjsip_distributor:  Add missing newline to NOTICE

There was a newline missing from the end of the "no matching endpoint" notice.

Change-Id: Idc11fe5bc0354072291663dbffe648c471e39181

9 years agores_pjsip_outbound_registration: generate correct Contact URI for TLS 02/2802/2
Sebastian Damm [Tue, 10 May 2016 15:19:48 +0000 (17:19 +0200)] 
res_pjsip_outbound_registration: generate correct Contact URI for TLS

There are two types of SIP URIs indicating a secure transport:
* sips:user@example.org
* sip:user@example.org;transport=tls

When using a sips URI, Asterisk checks incoming INVITEs and answers from
the other side for sips URIs, and rejects the packet if there are only
sip URIs. So Asterisk should only generate a sips Contact URI if the
other side supports it.

This patch makes Asterisk generate either a sip or sips Contact URI
depending on the format of the server URI.

If you want a sip URI, use:
server_uri=sip:example.org\;transport=tls

If you want a sips URI, use:
server_uri=sips:example.org

ASTERISK-25990 #close
Reported-by: Sebastian Damm
Change-Id: I5ae57d6531ce940b5fc64d5cd2673e60db0f9ba2

9 years agologger: Add PID to syslog messages. 74/2774/2
Alexei Gradinari [Thu, 5 May 2016 21:41:21 +0000 (17:41 -0400)] 
logger: Add PID to syslog messages.

During refactoring of this support the addition of
the PID to messages was removed. This change adds it
back in.

ASTERISK-25538 #close

Change-Id: Ie2d43b0652e59b7ac319a7dba94501540d70ba36

9 years agoconfigure: Fix errors with AST_UNDEFINED_SANITIZER/AST_LEAK_SANITIZER 09/2809/1
Matt Jordan [Wed, 11 May 2016 19:07:17 +0000 (14:07 -0500)] 
configure: Fix errors with AST_UNDEFINED_SANITIZER/AST_LEAK_SANITIZER

When running on a system that does not support or use AST_UNDEFINED_SANITIZER
or AST_LEAK_SANITIZER, the configure script would incorrectly set those
constants to a blank value, e.g., 'AST_UNDEFINED_SANITIZER='. This would
cause menuselect to error out, complaining that a blank value is not a
valid option. This patch corrects the issue by setting the value to 0 if
the options that those constants enable/disable is not found.

Change-Id: Ib39814aaf940f308d500c1e026edb3d70de47fba

9 years agoMerge "res_pjsip: improve realtime performance" into 13
zuul [Wed, 11 May 2016 17:22:10 +0000 (12:22 -0500)] 
Merge "res_pjsip: improve realtime performance" into 13

9 years agores_pjsip_outbound_publish: state potential dropped on reloads/realtime fetches 07/2807/1
Kevin Harwell [Tue, 3 May 2016 20:43:16 +0000 (15:43 -0500)] 
res_pjsip_outbound_publish: state potential dropped on reloads/realtime fetches

When reloading, or fetching realtime data, if the "apply" failed for any
numerous reasons the current state object would not be maintained. This
potentially resulted in publishes being stopped for some states/clients when
they should not have been.

This patch makes it so the current state object is kept upon any type of reload/
fetch failures.

Change-Id: Iab6020c116d628ed2ae81183e987e2eaa3c90b30

9 years agores_pjsip_outbound_publish: Potential crash due to off nominal path 06/2806/1
Kevin Harwell [Tue, 3 May 2016 20:31:19 +0000 (15:31 -0500)] 
res_pjsip_outbound_publish: Potential crash due to off nominal path

It was possible for the explicit publish destroy function to be called without
the pjsip client ever being initialized. This fix checks to make sure there is
a client to destroy before attempting.

Change-Id: I8eea1bfa3bd472149bfc255310be2a6248688f5c

9 years agores_pjsip_outbound_publishing: After unloading the library won't load again 05/2805/1
Kevin Harwell [Tue, 3 May 2016 20:35:24 +0000 (15:35 -0500)] 
res_pjsip_outbound_publishing: After unloading the library won't load again

The same thing was happening in res_pjsip_publish_asterisk. When the library
was unloaded it did not unregister the object type from sorcery. Subsequent
loads resulted in a failed load due to the sorcery type already existing.

Change-Id: Ifdc25e94e4cd40bc5a19eb4d0a00b86c2e9fedc9

9 years agores_pjsip_outbound_publish: Ref leak in off nominal callback paths 04/2804/1
Kevin Harwell [Tue, 3 May 2016 19:59:06 +0000 (14:59 -0500)] 
res_pjsip_outbound_publish: Ref leak in off nominal callback paths

There were a few spots where the client object's reference was being leaked in
sip_outbound_publish_callback. This patch cleans up those leaks.

Change-Id: I485d0bc9335090f373026f77c548042e258461df

9 years agores_pjsip_outbound_publish: Won't unload if condition wait times out 03/2803/1
Kevin Harwell [Tue, 3 May 2016 20:39:32 +0000 (15:39 -0500)] 
res_pjsip_outbound_publish: Won't unload if condition wait times out

When res_pjsip_outbound_publish unloads it has to wait for all current
publishing objects to get done. However if the wait condition times out
then it does not fail the unload. This sometimes results in an infinite
loop check while unloading. This patch now fails the unload operation if
the condition times out.

Change-Id: Id57b8cbed9d61222690fcba1e4f18e259df4c7ec

9 years agoMerge "res_fax/t38_gateway: Peer V.21 session is created on wrong channel" into 13
zuul [Wed, 11 May 2016 15:19:50 +0000 (10:19 -0500)] 
Merge "res_fax/t38_gateway: Peer V.21 session is created on wrong channel" into 13

9 years agoMerge "app_confbridge: Add a regcontext option for confbridge bridge profiles." into 13
Joshua Colp [Tue, 10 May 2016 09:48:44 +0000 (04:48 -0500)] 
Merge "app_confbridge: Add a regcontext option for confbridge bridge profiles." into 13

9 years agoMerge "res_pjsip_authenticator_digest: Don't use source port in nonce verification...
zuul [Tue, 10 May 2016 03:34:39 +0000 (22:34 -0500)] 
Merge "res_pjsip_authenticator_digest: Don't use source port in nonce verification" into 13

9 years agoMerge "pjproject_bundled: Check for python-dev and TEST_FRAMEWORK" into 13
Joshua Colp [Tue, 10 May 2016 01:11:30 +0000 (20:11 -0500)] 
Merge "pjproject_bundled:  Check for python-dev and TEST_FRAMEWORK" into 13

9 years agores_pjsip_authenticator_digest: Don't use source port in nonce verification 70/2770/2
Kevin Harwell [Thu, 5 May 2016 16:37:37 +0000 (11:37 -0500)] 
res_pjsip_authenticator_digest: Don't use source port in nonce verification

From the issue reporter:
"res_pjsip_outbound_authenticator_digest builds a nonce that is a hash of
the timestamp, the source address, the source port, a server UUID that is
calculated at startup, and the authentication realm.

Rather than caching nonces that we create, we instead attempt to re-calculate
the nonce when receiving an incoming request with authentication. We then
compare the re-calculated nonce to the incoming nonce, and if they don't match,
then authentication has failed early.

The problem is that it is possible, especially when using TCP, to receive two
requests from the same endpoint but have differing source ports for those
requests. Asterisk itself commonly will use different source ports for
outbound TCP requests."

This patch removes the source port dependency when building the nonce.

ASTERISK-25978 #close

Change-Id: I871b5f4adce102df1c4988066283095ec509dffe

9 years agoconfig_transport: Tell pjproject to allow all SSL/TLS protocols 82/2782/2
George Joseph [Sat, 7 May 2016 19:39:25 +0000 (13:39 -0600)] 
config_transport:  Tell pjproject to allow all SSL/TLS protocols

The default tls settings for pjproject only allow TLS 1, TLS 1.1 and TLS 1.2.
SSL is not allowed.   So, even if you specify "sslv3" for a transport method,
it's silently ignored and one of the TLS protocols is used.  This was a new
behavior of pjsip_tls_setting_default() in 2.4 (when tls.proto was added) that
we never caught.

Now we need to set tls.proto = 0 after we call pjsip_tls_setting_default().
This tells pjproject to set the socket protocol to match the method.

ASTERISK-26004 #close

Change-Id: Icfb55c1ebe921298dedb4b1a1d3bdc3ca41dd078

9 years agoMerge "res_pjsip: module load priority" into 13
zuul [Mon, 9 May 2016 16:03:14 +0000 (11:03 -0500)] 
Merge "res_pjsip: module load priority" into 13

9 years agoMerge "file: Ensure nativeformats remains valid for lifetime of use." into 13
zuul [Mon, 9 May 2016 13:27:51 +0000 (08:27 -0500)] 
Merge "file: Ensure nativeformats remains valid for lifetime of use." into 13

9 years agoapp_confbridge: Add a regcontext option for confbridge bridge profiles. 69/2769/6
Jaco Kroon [Wed, 4 May 2016 07:40:55 +0000 (09:40 +0200)] 
app_confbridge: Add a regcontext option for confbridge bridge profiles.

This patch allows for having app_confbridge register the name of the
conference as an extension into a specific context, similar to
regcontext for chan_sip.  This variant is not quite as involved as the
one in chan_sip and doesn't allow for multiple contexts or custom
extensions, you can only specify the context and the conference name
will always be used as the extension to register.

ASTERISK-25989 #close

Change-Id: Icacf94d9f2b5dfd31ef36f6cb702392619a7902f

9 years agoMerge "stasis_endpoints: Add new Status and Headers to ContactStatus" into 13
zuul [Mon, 9 May 2016 11:46:16 +0000 (06:46 -0500)] 
Merge "stasis_endpoints: Add new Status and Headers to ContactStatus" into 13

9 years agopjproject_bundled: Check for python-dev and TEST_FRAMEWORK 86/2786/1
George Joseph [Mon, 9 May 2016 01:19:50 +0000 (19:19 -0600)] 
pjproject_bundled:  Check for python-dev and TEST_FRAMEWORK

The pjsua and pjsystest apps are now built only if TEST_FRAMEWORK is set.
The python bindings are now built only if TEST_FRAMEWORK is set and a
python development package is installed.

libresample was also disabled.

ASTERISK-25993 #close
Reported-by: Joshua Colp
Change-Id: If4e91c503a02f113d5b71bc8b972081fa3ff6f03

9 years agores_pjsip: module load priority 60/2760/3
Alexei Gradinari [Wed, 4 May 2016 20:16:24 +0000 (16:16 -0400)] 
res_pjsip: module load priority

The res_pjsip_authenticator_digest, res_pjsip_endpoint_identifier_*
and res_pjsip_registrar modules should load ASAP
to avoid "No matching endpoint found" for legitimate endpoint.

ASTERISK-25994

Change-Id: Iac95d95ad031e0be104189d29e923a2ad7c24a1b

9 years agoconfig_options.c: Expand #ifdef to contain whole if statement. 75/2775/1
Chris Trobridge [Wed, 4 May 2016 08:17:26 +0000 (09:17 +0100)] 
config_options.c: Expand #ifdef to contain whole if statement.

ASTERISK-25956 #close

Change-Id: If6961ec54be276d5ab4f012ee7e7b420cb45de38

9 years agostasis_endpoints: Add new Status and Headers to ContactStatus 73/2773/1
Alexei Gradinari [Thu, 5 May 2016 20:16:16 +0000 (16:16 -0400)] 
stasis_endpoints: Add new Status and Headers to ContactStatus

ASTERISK-25903 added a new headers to AMI Event ContactStatusDetail.
ASTERISK-25904 added a new Status to AMI Event ContactStatusDetail.
These additions should be also in stasis_endpoints
to include in command "manager show event ContactStatus"

Change-Id: I7610ad02a998e1f26c20caa27aa50279d0164f6a

9 years agoMerge "pjsip: Added "reg_server" to contacts (fixed alembic)" into 13
zuul [Thu, 5 May 2016 18:15:16 +0000 (13:15 -0500)] 
Merge "pjsip: Added "reg_server" to contacts (fixed alembic)" into 13

9 years agofile: Ensure nativeformats remains valid for lifetime of use. 62/2762/2
Joshua Colp [Thu, 5 May 2016 10:07:50 +0000 (07:07 -0300)] 
file: Ensure nativeformats remains valid for lifetime of use.

It is possible for the nativeformats of a channel to change
throughout its lifetime. As a result a user of it needs to either
ensure the channel is locked when accessing the formats or keep
a reference to the nativeformats themselves.

This change fixes the file playback support so it keeps a
reference to the nativeformats when accessing things.

ASTERISK-25998 #close

Change-Id: Ie45b65475e1481ddf05b874ee48f63e39fff8915

9 years agores_pjsip: improve realtime performance 22/2622/13
Alexei Gradinari [Fri, 15 Apr 2016 14:32:12 +0000 (10:32 -0400)] 
res_pjsip: improve realtime performance

This patch modified pjsip_options to retrieve only
permament contacts for aor if the qualify_frequency is > 0
and persisted contacts if the qualify_frequency is > 0.

This patch also fixed a bug in res_sorcery_astdb.
res_sorcery_astdb doesn't save object data retrived from astdb.

ASTERISK-25826

Change-Id: I1831fa46c4578eae5a3e574ee3362fddf08a1f05