mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-11-24 12:20:59 +01:00
BUG/MINOR: stream: don't mistake match rules for store-request rules
In process_sticking_rules() we only want to apply the first store-request
rule for a given table, but when doing so we need to make sure we only
count actual store-request rules when we list the sticking rules.
Failure to do so leads to not being able to write store-request and match
sticking rules in any order as a match rule after a store-request rule
will be ignored.
The following configuration reproduces the issue:
global
stats socket /tmp/foobar
defaults
mode http
frontend in
bind *:8080
default_backend bar
backend bar
server s1 127.0.0.1:21212
server s2 127.0.0.1:21211
stick store-request req.hdr(foo)
stick match req.hdr(foo)
stick-table type string size 10
listen foo
bind *:21212
bind *:21211
http-request deny deny_status 200 if { dst_port 21212 }
http-request deny
This patch fixes issue #448 and should be backported as far as 1.6.
This commit is contained in:
parent
d308c5e0ce
commit
bee00ad080
14
src/stream.c
14
src/stream.c
@ -1786,13 +1786,15 @@ static int process_sticking_rules(struct stream *s, struct channel *req, int an_
|
||||
* An example could be a store of the IP address from an HTTP
|
||||
* header first, then from the source if not found.
|
||||
*/
|
||||
for (i = 0; i < s->store_count; i++) {
|
||||
if (rule->table.t == s->store[i].table)
|
||||
break;
|
||||
}
|
||||
if (rule->flags & STK_IS_STORE) {
|
||||
for (i = 0; i < s->store_count; i++) {
|
||||
if (rule->table.t == s->store[i].table)
|
||||
break;
|
||||
}
|
||||
|
||||
if (i != s->store_count)
|
||||
continue;
|
||||
if (i != s->store_count)
|
||||
continue;
|
||||
}
|
||||
|
||||
if (rule->cond) {
|
||||
ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user