]> git.ipfire.org Git - thirdparty/asterisk.git/commit
Bundled pjproject: Fix finding SIP transactions. 66/4566/2
authorRichard Mudgett <rmudgett@digium.com>
Tue, 6 Dec 2016 22:45:38 +0000 (16:45 -0600)
committerGeorge Joseph <gjoseph@digium.com>
Wed, 7 Dec 2016 12:16:23 +0000 (06:16 -0600)
commit36dbad82c91b1199cc86a391345c447d4cfd158e
tree6b88e18802f4d0c8e57b6ac1427ffb5b3fee3262
parentd78ebce67ebab6e01376a8730cabf781a11a11b2
Bundled pjproject:  Fix finding SIP transactions.

Occasionally SIP message transactions are not found when they should be.
In the particular case an incoming INVITE transaction is CANCELed but the
INVITE transaction cannot be found so a 481 response is returned for the
CANCEL.  The problematic calls have a '_' character in the Via branch
parameter.

The problem is in the pjproject PJ_HASH_USE_OWN_TOLOWER feature's code.
The problem with the "own tolower" code is that it does not calculate the
same hash value as when the pj_tolower() function is used.  The "own
tolower" code will erroneously modify the ASCII characters '@', '[', '\\',
']', '^', and '_'.  Calls to pj_hash_calc_tolower() can use the
PJ_HASH_USE_OWN_TOLOWER substitute algorithm when enabled.  Calls to
pj_hash_get_lower(), pj_hash_set_lower(), and pj_hash_set_np_lower() call
find_entry() which never uses the PJ_HASH_USE_OWN_TOLOWER algorithm.  As a
result you may not be able to find a hash tabled entry because the
calculated hash values would differ.

* Simply disable PJ_HASH_USE_OWN_TOLOWER.

ASTERISK-26490 #close

Change-Id: If89bfdb5f301b8b685881a9a2a6e0c3c5af32253
third-party/pjproject/patches/config_site.h