|
@@ -6064,7 +6064,7 @@ EXPORT_SYMBOL(inet_reqsk_alloc);
|
|
/*
|
|
/*
|
|
* Return true if a syncookie should be sent
|
|
* Return true if a syncookie should be sent
|
|
*/
|
|
*/
|
|
-static bool tcp_syn_flood_action(struct sock *sk,
|
|
|
|
|
|
+static bool tcp_syn_flood_action(const struct sock *sk,
|
|
const struct sk_buff *skb,
|
|
const struct sk_buff *skb,
|
|
const char *proto)
|
|
const char *proto)
|
|
{
|
|
{
|
|
@@ -6082,11 +6082,12 @@ static bool tcp_syn_flood_action(struct sock *sk,
|
|
NET_INC_STATS_BH(sock_net(sk), LINUX_MIB_TCPREQQFULLDROP);
|
|
NET_INC_STATS_BH(sock_net(sk), LINUX_MIB_TCPREQQFULLDROP);
|
|
|
|
|
|
lopt = inet_csk(sk)->icsk_accept_queue.listen_opt;
|
|
lopt = inet_csk(sk)->icsk_accept_queue.listen_opt;
|
|
- if (!lopt->synflood_warned && sysctl_tcp_syncookies != 2) {
|
|
|
|
- lopt->synflood_warned = 1;
|
|
|
|
|
|
+ if (!lopt->synflood_warned &&
|
|
|
|
+ sysctl_tcp_syncookies != 2 &&
|
|
|
|
+ xchg(&lopt->synflood_warned, 1) == 0)
|
|
pr_info("%s: Possible SYN flooding on port %d. %s. Check SNMP counters.\n",
|
|
pr_info("%s: Possible SYN flooding on port %d. %s. Check SNMP counters.\n",
|
|
proto, ntohs(tcp_hdr(skb)->dest), msg);
|
|
proto, ntohs(tcp_hdr(skb)->dest), msg);
|
|
- }
|
|
|
|
|
|
+
|
|
return want_cookie;
|
|
return want_cookie;
|
|
}
|
|
}
|
|
|
|
|