diff options
author | Axel Duch <axel.duch@nginx.com> | 2020-07-10 10:28:53 +0100 |
---|---|---|
committer | Axel Duch <axel.duch@nginx.com> | 2020-07-10 10:28:53 +0100 |
commit | b6792b00aebbe08f0fa3a4cb7826075114f717fa (patch) | |
tree | 18999d6b265587f82ea958308f3d877bad368354 /src/nxt_http_route.c | |
parent | 18fbfc3d5027df68b7696afb16323c66f2582100 (diff) | |
download | unit-b6792b00aebbe08f0fa3a4cb7826075114f717fa.tar.gz unit-b6792b00aebbe08f0fa3a4cb7826075114f717fa.tar.bz2 |
Router: route patterns multi wildcards fix.
Matching 'start' and 'end' position now adjusted to avoid false matching.
This is related to #434 issue on Github.
Thanks to 洪志道 (Hong Zhi Dao).
Diffstat (limited to 'src/nxt_http_route.c')
-rw-r--r-- | src/nxt_http_route.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/nxt_http_route.c b/src/nxt_http_route.c index 66ab0fcd..6bdf2937 100644 --- a/src/nxt_http_route.c +++ b/src/nxt_http_route.c @@ -2344,6 +2344,7 @@ nxt_http_route_pattern(nxt_http_request_t *r, nxt_http_route_pattern_t *pattern, pattern_slices = pattern->pattern_slices; pattern_slice = pattern_slices->elts; + end = start + length; for (i = 0; i < pattern_slices->nelts; i++, pattern_slice++) { test = pattern_slice->start; @@ -2359,25 +2360,25 @@ nxt_http_route_pattern(nxt_http_request_t *r, nxt_http_route_pattern_t *pattern, if (nxt_http_route_memcmp(start, test, test_length, pattern->case_sensitive)) { + start += test_length; break; } return 0; case NXT_HTTP_ROUTE_PATTERN_END: - p = start + length - test_length; + p = end - test_length; if (nxt_http_route_memcmp(p, test, test_length, pattern->case_sensitive)) { + end = p; break; } return 0; case NXT_HTTP_ROUTE_PATTERN_SUBSTRING: - end = start + length; - if (pattern->case_sensitive) { p = nxt_memstrn(start, end, (char *) test, test_length); @@ -2388,6 +2389,8 @@ nxt_http_route_pattern(nxt_http_request_t *r, nxt_http_route_pattern_t *pattern, if (p == NULL) { return 0; } + + start = p + test_length; } } |