mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
icmp6: rate limit our echo replies
The generation of ICMP6_ECHO_REPLY bypasses icmp6_error(), thus rate limit was not applied. Reviewed by: tuexen, zlei Differential Revision: https://reviews.freebsd.org/D44480 (cherry picked from commit 32aeee8ce7e72738fff236ccd5629d55035458f8)
This commit is contained in:
parent
9e09b33e8e
commit
f6561ff8ee
1 changed files with 2 additions and 0 deletions
|
|
@ -548,6 +548,8 @@ icmp6_input(struct mbuf **mp, int *offp, int proto)
|
|||
icmp6_ifstat_inc(ifp, ifs6_in_echo);
|
||||
if (code != 0)
|
||||
goto badcode;
|
||||
if (icmp6_ratelimit(&ip6->ip6_src, ICMP6_ECHO_REPLY, 0))
|
||||
break;
|
||||
if ((n = m_copym(m, 0, M_COPYALL, M_NOWAIT)) == NULL) {
|
||||
/* Give up remote */
|
||||
break;
|
||||
|
|
|
|||
Loading…
Reference in a new issue