aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKristof Provost <kp@FreeBSD.org>2023-10-05 14:57:50 +0000
committerKristof Provost <kp@FreeBSD.org>2023-10-05 15:53:13 +0000
commitb00dbe851c66f26a16219d31c76b7fb411ace94c (patch)
tree56ddfebe7368aed68aa5a3558f87b3550c853c46
parent25fcf889bd7d46fa0d1524073e38b3883a97f9c9 (diff)
downloadsrc-b00dbe851c66f26a16219d31c76b7fb411ace94c.tar.gz
src-b00dbe851c66f26a16219d31c76b7fb411ace94c.zip
pf: fix SCTP SDT probe
We want the return value of pf_test_rule(), i.e. the result of the evaluation of the new state, not the result of the evaluation of the original packet/state. MFC after: 1 week Sponsored by: Orange Business Services
-rw-r--r--sys/netpfil/pf/pf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netpfil/pf/pf.c b/sys/netpfil/pf/pf.c
index fae0bd2854f9..3dddfdd0b1a4 100644
--- a/sys/netpfil/pf/pf.c
+++ b/sys/netpfil/pf/pf.c
@@ -5943,7 +5943,7 @@ pf_sctp_multihome_delayed(struct pf_pdesc *pd, int off, struct pfi_kkif *kif,
ret = pf_test_rule(&r, &sm, kif,
j->m, off, &j->pd, &ra, &rs, NULL);
PF_RULES_RUNLOCK();
- SDT_PROBE4(pf, sctp, multihome, test, kif, r, j->m, action);
+ SDT_PROBE4(pf, sctp, multihome, test, kif, r, j->m, ret);
if (sm) {
/* Inherit v_tag values. */
sm->src.scrub->pfss_v_tag = s->src.scrub->pfss_flags;