git: 3cf0fe176e72 - stable/13 - pf: some ICMP types that also have icmp_id, pointed out by markus@
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 31 Jul 2024 07:41:09 UTC
The branch stable/13 has been updated by kp:
URL: https://cgit.FreeBSD.org/src/commit/?id=3cf0fe176e72a2c6cea6d4b8efd2a10a59c9a89a
commit 3cf0fe176e72a2c6cea6d4b8efd2a10a59c9a89a
Author: Kristof Provost <kp@FreeBSD.org>
AuthorDate: 2024-07-10 11:32:03 +0000
Commit: Kristof Provost <kp@FreeBSD.org>
CommitDate: 2024-07-31 07:39:34 +0000
pf: some ICMP types that also have icmp_id, pointed out by markus@
ok henning markus
MFC after: 1 day
Obtained From: OpenBSD, mcbride <mcbride@openbsd.org> 8c0632cd274b
Sponsored by: Rubicon Communications, LLC ("Netgate")
(cherry picked from commit e296b0de9e467b8c5eb853f6cf4c6ea28d4119a2)
---
sys/netpfil/pf/pf.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/sys/netpfil/pf/pf.c b/sys/netpfil/pf/pf.c
index 9f94da48a15f..66f27f7f45af 100644
--- a/sys/netpfil/pf/pf.c
+++ b/sys/netpfil/pf/pf.c
@@ -1730,21 +1730,21 @@ pf_icmp_mapping(struct pf_pdesc *pd, u_int8_t type,
*icmp_dir = PF_IN;
case ICMP_TSTAMPREPLY:
*icmptype = ICMP_TSTAMP;
- *icmpid = 0; /* Time is not a secret. */
+ *icmpid = pd->hdr.icmp.icmp_id;
break;
case ICMP_IREQ:
*icmp_dir = PF_IN;
case ICMP_IREQREPLY:
*icmptype = ICMP_IREQ;
- *icmpid = 0; /* Nothing sane to match on! */
+ *icmpid = pd->hdr.icmp.icmp_id;
break;
case ICMP_MASKREQ:
*icmp_dir = PF_IN;
case ICMP_MASKREPLY:
*icmptype = ICMP_MASKREQ;
- *icmpid = 0; /* Nothing sane to match on! */
+ *icmpid = pd->hdr.icmp.icmp_id;
break;
case ICMP_IPV6_WHEREAREYOU: