aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authoroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2008-07-01 14:34:34 +0000
committeroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2008-07-01 14:34:34 +0000
commitbe5d68a512971ad97ba87ece01797951974b7fd5 (patch)
treec283012a8bdb85f4c58c0d0c02023565da37692e /channels
parenta0b18fcd52dee1cb882e237f9c1e9c1e310fe8b2 (diff)
Merged revisions 126900 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ................ r126900 | oej | 2008-07-01 16:32:15 +0200 (Tis, 01 Jul 2008) | 16 lines Merged revisions 126899 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r126899 | oej | 2008-07-01 16:27:33 +0200 (Tis, 01 Jul 2008) | 8 lines Handle escaped URI's in call pickups. Patch by oej and IgorG. Reported by: IgorG Patches: bug12299-11062-v2.patch uploaded by IgorG (license 20) Tested by: IgorG, oej (closes issue #12299) ........ ................ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.0@126901 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_sip.c18
1 files changed, 11 insertions, 7 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 6b7b93156..b4846e3e5 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -10641,6 +10641,7 @@ static int get_destination(struct sip_pvt *p, struct sip_request *oreq)
char tmpf[256] = "", *from = NULL;
struct sip_request *req;
char *colon;
+ char *decoded_uri;
req = oreq;
if (!req)
@@ -10738,25 +10739,25 @@ static int get_destination(struct sip_pvt *p, struct sip_request *oreq)
char hint[AST_MAX_EXTENSION];
return (ast_get_hint(hint, sizeof(hint), NULL, 0, NULL, p->context, p->exten) ? 0 : -1);
} else {
+ decoded_uri = ast_strdupa(uri);
+ ast_uri_decode(decoded_uri);
/* Check the dialplan for the username part of the request URI,
the domain will be stored in the SIPDOMAIN variable
Since extensions.conf can have unescaped characters, try matching a decoded
uri in addition to the non-decoded uri
Return 0 if we have a matching extension */
- char *decoded_uri = ast_strdupa(uri);
- ast_uri_decode(decoded_uri);
if (ast_exists_extension(NULL, p->context, uri, 1, S_OR(p->cid_num, from)) || ast_exists_extension(NULL, p->context, decoded_uri, 1, S_OR(p->cid_num, from)) ||
- !strcmp(uri, ast_pickup_ext())) {
+ !strcmp(decoded_uri, ast_pickup_ext())) {
if (!oreq)
- ast_string_field_set(p, exten, uri);
+ ast_string_field_set(p, exten, decoded_uri);
return 0;
}
}
/* Return 1 for pickup extension or overlap dialling support (if we support it) */
if((ast_test_flag(&global_flags[1], SIP_PAGE2_ALLOWOVERLAP) &&
- ast_canmatch_extension(NULL, p->context, uri, 1, S_OR(p->cid_num, from))) ||
- !strncmp(uri, ast_pickup_ext(), strlen(uri))) {
+ ast_canmatch_extension(NULL, p->context, decoded_uri, 1, S_OR(p->cid_num, from))) ||
+ !strncmp(decoded_uri, ast_pickup_ext(), strlen(decoded_uri))) {
return 1;
}
@@ -16517,10 +16518,13 @@ static int handle_request_invite(struct sip_pvt *p, struct sip_request *req, int
if (gotdest == 1 && ast_test_flag(&p->flags[1], SIP_PAGE2_ALLOWOVERLAP))
transmit_response_reliable(p, "484 Address Incomplete", req);
else {
+ char *decoded_exten = ast_strdupa(p->exten);
+
transmit_response_reliable(p, "404 Not Found", req);
+ ast_uri_decode(decoded_exten);
ast_log(LOG_NOTICE, "Call from '%s' to extension"
" '%s' rejected because extension not found.\n",
- S_OR(p->username, p->peername), p->exten);
+ S_OR(p->username, p->peername), decoded_exten);
}
p->invitestate = INV_COMPLETED;
update_call_counter(p, DEC_CALL_LIMIT);