]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
batman-adv: privatize forw_packet skb assignment
authorLinus Lüssing <linus.luessing@c0d3.blue>
Fri, 17 Feb 2017 10:17:06 +0000 (11:17 +0100)
committerSimon Wunderlich <sw@simonwunderlich.de>
Sun, 26 Mar 2017 10:46:44 +0000 (12:46 +0200)
An skb is assigned to a forw_packet only once, shortly after the
forw_packet allocation.

With this patch the assignment is moved into the this allocation
function.

Signed-off-by: Linus Lüssing <linus.luessing@c0d3.blue>
Signed-off-by: Sven Eckelmann <sven@narfation.org>
Signed-off-by: Simon Wunderlich <sw@simonwunderlich.de>
net/batman-adv/bat_iv_ogm.c
net/batman-adv/send.c
net/batman-adv/send.h

index 7c3d994e90d87b868f2b1614cc5d26e2413e70ee..f665ff3ede538e5e97fee7ca9326ac014f70a9db 100644 (file)
@@ -679,15 +679,11 @@ static void batadv_iv_ogm_aggregate_new(const unsigned char *packet_buff,
 {
        struct batadv_priv *bat_priv = netdev_priv(if_incoming->soft_iface);
        struct batadv_forw_packet *forw_packet_aggr;
+       struct sk_buff *skb;
        unsigned char *skb_buff;
        unsigned int skb_size;
        atomic_t *queue_left = own_packet ? NULL : &bat_priv->batman_queue_left;
 
-       forw_packet_aggr = batadv_forw_packet_alloc(if_incoming, if_outgoing,
-                                                   queue_left, bat_priv);
-       if (!forw_packet_aggr)
-               return;
-
        if (atomic_read(&bat_priv->aggregated_ogms) &&
            packet_len < BATADV_MAX_AGGREGATION_BYTES)
                skb_size = BATADV_MAX_AGGREGATION_BYTES;
@@ -696,9 +692,14 @@ static void batadv_iv_ogm_aggregate_new(const unsigned char *packet_buff,
 
        skb_size += ETH_HLEN;
 
-       forw_packet_aggr->skb = netdev_alloc_skb_ip_align(NULL, skb_size);
-       if (!forw_packet_aggr->skb) {
-               batadv_forw_packet_free(forw_packet_aggr, true);
+       skb = netdev_alloc_skb_ip_align(NULL, skb_size);
+       if (!skb)
+               return;
+
+       forw_packet_aggr = batadv_forw_packet_alloc(if_incoming, if_outgoing,
+                                                   queue_left, bat_priv, skb);
+       if (!forw_packet_aggr) {
+               kfree_skb(skb);
                return;
        }
 
index 1489ec27daff5548b072e88648f5cca192f74afa..7bf470204e1042d1c4db432e4b98415906c06909 100644 (file)
@@ -482,6 +482,7 @@ void batadv_forw_packet_free(struct batadv_forw_packet *forw_packet,
  * @if_outgoing: The (optional) if_outgoing to be grabbed
  * @queue_left: The (optional) queue counter to decrease
  * @bat_priv: The bat_priv for the mesh of this forw_packet
+ * @skb: The raw packet this forwarding packet shall contain
  *
  * Allocates a forwarding packet and tries to get a reference to the
  * (optional) if_incoming, if_outgoing and queue_left. If queue_left
@@ -493,7 +494,8 @@ struct batadv_forw_packet *
 batadv_forw_packet_alloc(struct batadv_hard_iface *if_incoming,
                         struct batadv_hard_iface *if_outgoing,
                         atomic_t *queue_left,
-                        struct batadv_priv *bat_priv)
+                        struct batadv_priv *bat_priv,
+                        struct sk_buff *skb)
 {
        struct batadv_forw_packet *forw_packet;
        const char *qname;
@@ -525,7 +527,7 @@ batadv_forw_packet_alloc(struct batadv_hard_iface *if_incoming,
 
        INIT_HLIST_NODE(&forw_packet->list);
        INIT_HLIST_NODE(&forw_packet->cleanup_list);
-       forw_packet->skb = NULL;
+       forw_packet->skb = skb;
        forw_packet->queue_left = queue_left;
        forw_packet->if_incoming = if_incoming;
        forw_packet->if_outgoing = if_outgoing;
@@ -756,22 +758,23 @@ int batadv_add_bcast_packet_to_list(struct batadv_priv *bat_priv,
        if (!primary_if)
                goto err;
 
+       newskb = skb_copy(skb, GFP_ATOMIC);
+       if (!newskb) {
+               batadv_hardif_put(primary_if);
+               goto err;
+       }
+
        forw_packet = batadv_forw_packet_alloc(primary_if, NULL,
                                               &bat_priv->bcast_queue_left,
-                                              bat_priv);
+                                              bat_priv, newskb);
        batadv_hardif_put(primary_if);
        if (!forw_packet)
-               goto err;
-
-       newskb = skb_copy(skb, GFP_ATOMIC);
-       if (!newskb)
                goto err_packet_free;
 
        /* as we have a copy now, it is safe to decrease the TTL */
        bcast_packet = (struct batadv_bcast_packet *)newskb->data;
        bcast_packet->ttl--;
 
-       forw_packet->skb = newskb;
        forw_packet->own = own_packet;
 
        INIT_DELAYED_WORK(&forw_packet->delayed_work,
@@ -781,7 +784,7 @@ int batadv_add_bcast_packet_to_list(struct batadv_priv *bat_priv,
        return NETDEV_TX_OK;
 
 err_packet_free:
-       batadv_forw_packet_free(forw_packet, true);
+       kfree_skb(newskb);
 err:
        return NETDEV_TX_BUSY;
 }
index f21166d1032360a1febe3cebdfc9ee0e9958bb9c..8e75890406d2ed01fbafd04b5ee93c566ac23af5 100644 (file)
@@ -34,7 +34,8 @@ struct batadv_forw_packet *
 batadv_forw_packet_alloc(struct batadv_hard_iface *if_incoming,
                         struct batadv_hard_iface *if_outgoing,
                         atomic_t *queue_left,
-                        struct batadv_priv *bat_priv);
+                        struct batadv_priv *bat_priv,
+                        struct sk_buff *skb);
 bool batadv_forw_packet_steal(struct batadv_forw_packet *packet, spinlock_t *l);
 void batadv_forw_packet_ogmv1_queue(struct batadv_priv *bat_priv,
                                    struct batadv_forw_packet *forw_packet,