inet: frags: get rif of inet_frag_evicting()
authorEric Dumazet <edumazet@google.com>
Wed, 10 Oct 2018 19:29:58 +0000 (12:29 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 18 Oct 2018 07:13:24 +0000 (09:13 +0200)
This refactors ip_expire() since one indentation level is removed.

Note: in the future, we should try hard to avoid the skb_clone()
since this is a serious performance cost.
Under DDOS, the ICMP message wont be sent because of rate limits.

Fact that ip6_expire_frag_queue() does not use skb_clone() is
disturbing too. Presumably IPv6 should have the same
issue than the one we fixed in commit ec4fbd64751d
("inet: frag: release spinlock before calling icmp_send()")

Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
(cherry picked from commit 399d1404be660d355192ff4df5ccc3f4159ec1e4)
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
include/net/inet_frag.h
net/ipv4/ip_fragment.c
net/ipv6/reassembly.c

index a49cdf25cef0b70d202c8dba6130d7aa32fc5c05..7e984045b2b71fba6512b6af4ed2970cbc79a951 100644 (file)
@@ -118,11 +118,6 @@ static inline void inet_frag_put(struct inet_frag_queue *q)
                inet_frag_destroy(q);
 }
 
-static inline bool inet_frag_evicting(struct inet_frag_queue *q)
-{
-       return false;
-}
-
 /* Memory Tracking Functions. */
 
 static inline int frag_mem_limit(struct netns_frags *nf)
index 8c4072b19296681e3adb274a09c60e45ecbd85de..308592a8ba977972921e6fc1cc33abd3a0cdfff6 100644 (file)
@@ -141,8 +141,11 @@ static bool frag_expire_skip_icmp(u32 user)
  */
 static void ip_expire(unsigned long arg)
 {
-       struct ipq *qp;
+       struct sk_buff *clone, *head;
+       const struct iphdr *iph;
        struct net *net;
+       struct ipq *qp;
+       int err;
 
        qp = container_of((struct inet_frag_queue *) arg, struct ipq, q);
        net = container_of(qp->q.net, struct net, ipv4.frags);
@@ -156,45 +159,41 @@ static void ip_expire(unsigned long arg)
        ipq_kill(qp);
        __IP_INC_STATS(net, IPSTATS_MIB_REASMFAILS);
 
-       if (!inet_frag_evicting(&qp->q)) {
-               struct sk_buff *clone, *head = qp->q.fragments;
-               const struct iphdr *iph;
-               int err;
+       head = qp->q.fragments;
 
-               __IP_INC_STATS(net, IPSTATS_MIB_REASMTIMEOUT);
+       __IP_INC_STATS(net, IPSTATS_MIB_REASMTIMEOUT);
 
-               if (!(qp->q.flags & INET_FRAG_FIRST_IN) || !qp->q.fragments)
-                       goto out;
+       if (!(qp->q.flags & INET_FRAG_FIRST_IN) || !head)
+               goto out;
 
-               head->dev = dev_get_by_index_rcu(net, qp->iif);
-               if (!head->dev)
-                       goto out;
+       head->dev = dev_get_by_index_rcu(net, qp->iif);
+       if (!head->dev)
+               goto out;
 
 
-               /* skb has no dst, perform route lookup again */
-               iph = ip_hdr(head);
-               err = ip_route_input_noref(head, iph->daddr, iph->saddr,
+       /* skb has no dst, perform route lookup again */
+       iph = ip_hdr(head);
+       err = ip_route_input_noref(head, iph->daddr, iph->saddr,
                                           iph->tos, head->dev);
-               if (err)
-                       goto out;
+       if (err)
+               goto out;
 
-               /* Only an end host needs to send an ICMP
-                * "Fragment Reassembly Timeout" message, per RFC792.
-                */
-               if (frag_expire_skip_icmp(qp->q.key.v4.user) &&
-                   (skb_rtable(head)->rt_type != RTN_LOCAL))
-                       goto out;
-
-               clone = skb_clone(head, GFP_ATOMIC);
-
-               /* Send an ICMP "Fragment Reassembly Timeout" message. */
-               if (clone) {
-                       spin_unlock(&qp->q.lock);
-                       icmp_send(clone, ICMP_TIME_EXCEEDED,
-                                 ICMP_EXC_FRAGTIME, 0);
-                       consume_skb(clone);
-                       goto out_rcu_unlock;
-               }
+       /* Only an end host needs to send an ICMP
+        * "Fragment Reassembly Timeout" message, per RFC792.
+        */
+       if (frag_expire_skip_icmp(qp->q.key.v4.user) &&
+           (skb_rtable(head)->rt_type != RTN_LOCAL))
+               goto out;
+
+       clone = skb_clone(head, GFP_ATOMIC);
+
+       /* Send an ICMP "Fragment Reassembly Timeout" message. */
+       if (clone) {
+               spin_unlock(&qp->q.lock);
+               icmp_send(clone, ICMP_TIME_EXCEEDED,
+                         ICMP_EXC_FRAGTIME, 0);
+               consume_skb(clone);
+               goto out_rcu_unlock;
        }
 out:
        spin_unlock(&qp->q.lock);
index 8fe3836d1410db8806a54d37c2df350335b533ca..629a45a4c79fe6c216e967ea1afc909ebaf43e92 100644 (file)
@@ -106,10 +106,6 @@ void ip6_expire_frag_queue(struct net *net, struct frag_queue *fq)
                goto out_rcu_unlock;
 
        __IP6_INC_STATS(net, __in6_dev_get(dev), IPSTATS_MIB_REASMFAILS);
-
-       if (inet_frag_evicting(&fq->q))
-               goto out_rcu_unlock;
-
        __IP6_INC_STATS(net, __in6_dev_get(dev), IPSTATS_MIB_REASMTIMEOUT);
 
        /* Don't send error if the first segment did not arrive. */