MEDIUM: checks: rewind to the first inverse expect rule of a chain on new data

When receiving additional data while chaining multiple tcp-check expects,
previous inverse expects might have a different result with the new data. They
need to be evaluated again against the new data.

Add a pointer to the first inverse expect rule of the current expect chain
(possibly of length one) to each expect rule. When receiving new data, the
currently evaluated tcp-check rule is set back to this pointed rule.

Fonctionnaly speaking, it is a bug and it exists since the introduction of the
feature. But there is no way for now to hit it because when an expect rule does
not match, we wait for more data, independently on the inverse flag. The only
way to move to the following rule is to be sure no more data will be received.

This patch depends on the commit "MINOR: mini-clist: Add functions to iterate
backward on a list".

[Cf: I slightly updated the patch. First, it only concerns inverse expect
rule. Normal expect rules are not concerned. Then, I removed the BUG tag
because, for now, it is not possible to move to the following rule when the
current one does not match while more data can be received.]
diff --git a/src/checks.c b/src/checks.c
index 4470c8f..ea534f5 100644
--- a/src/checks.c
+++ b/src/checks.c
@@ -3121,6 +3121,9 @@
 				}
 			}
 
+			/* Having received new data, reset the expect chain to its head. */
+			check->current_step = check->current_step->expect_head;
+
 			/* mark the step as started */
 			check->last_started_step = check->current_step;
 
@@ -3158,7 +3161,6 @@
 		tcpcheck_expect:
 			if (!done && (check->current_step->string != NULL) && (b_data(&check->bi) < check->current_step->string_len) )
 				continue; /* try to read more */
-
 			if (check->current_step->string != NULL)
 				ret = my_memmem(contentptr, b_data(&check->bi), check->current_step->string, check->current_step->string_len) != NULL;
 			else if (check->current_step->expect_regex != NULL)
@@ -3462,7 +3464,7 @@
 
 static int add_tcpcheck_expect_str(struct list *list, const char *str)
 {
-	struct tcpcheck_rule *tcpcheck;
+	struct tcpcheck_rule *tcpcheck, *prev_check;
 
 	if ((tcpcheck = pool_alloc(pool_head_tcpcheck_rule)) == NULL)
 		return 0;
@@ -3476,6 +3478,19 @@
 		return 0;
 	}
 
+	/* All tcp-check expect points back to the first inverse expect rule
+	 * in a chain of one or more expect rule, potentially itself.
+	 */
+	tcpcheck->expect_head = tcpcheck;
+	list_for_each_entry_rev(prev_check, list, list) {
+		if (prev_check->action == TCPCHK_ACT_EXPECT) {
+			if (prev_check->inverse)
+				tcpcheck->expect_head = prev_check;
+			continue;
+		}
+		if (prev_check->action != TCPCHK_ACT_COMMENT)
+			break;
+	}
 	LIST_ADDQ(list, &tcpcheck->list);
 	return 1;
 }