diff options
author | Ryan Thomas McBride <mcbride@cvs.openbsd.org> | 2011-07-22 14:57:32 +0000 |
---|---|---|
committer | Ryan Thomas McBride <mcbride@cvs.openbsd.org> | 2011-07-22 14:57:32 +0000 |
commit | 915449cddfb6fddbd3bfba7834b7e176beab7b31 (patch) | |
tree | 093e46b5260c396fadeabcd6cdb002314b9f4e89 /sys/net/pf.c | |
parent | 6d79eae93f6b766a6227a5f5d287b10daae404be (diff) |
Sync 'block return' behaviour for ICMP packets with our IP stack:
Rather than silently dropping ALL icmp packets, return icmp/icmp6 error
for 'informational' message types (but continue dropping ICMP errors
unconditionally).
ok markus sthen henning
Diffstat (limited to 'sys/net/pf.c')
-rw-r--r-- | sys/net/pf.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/sys/net/pf.c b/sys/net/pf.c index 28d2ee226d6..ec02b6c12f7 100644 --- a/sys/net/pf.c +++ b/sys/net/pf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pf.c,v 1.765 2011/07/22 13:05:29 henning Exp $ */ +/* $OpenBSD: pf.c,v 1.766 2011/07/22 14:57:31 mcbride Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -3031,11 +3031,14 @@ pf_test_rule(struct pf_rule **rm, struct pf_state **sm, int direction, r->return_ttl, 1, 0, pd->rdomain, pd->eh, kif->pfik_ifp); } - } else if (pd->proto != IPPROTO_ICMP && af == AF_INET && + } else if ((pd->proto != IPPROTO_ICMP || + ICMP_INFOTYPE(icmptype)) && af == AF_INET && r->return_icmp) pf_send_icmp(m, r->return_icmp >> 8, r->return_icmp & 255, af, r, pd->rdomain); - else if (pd->proto != IPPROTO_ICMPV6 && af == AF_INET6 && + else if ((pd->proto != IPPROTO_ICMPV6 || + (icmptype >= ICMP6_ECHO_REQUEST && + icmptype != ND_REDIRECT)) && af == AF_INET6 && r->return_icmp6) pf_send_icmp(m, r->return_icmp6 >> 8, r->return_icmp6 & 255, af, r, pd->rdomain); |