skbuff: introduce skb_pull_data
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
Wed, 1 Dec 2021 18:54:52 +0000 (10:54 -0800)
committerMarcel Holtmann <marcel@holtmann.org>
Tue, 7 Dec 2021 16:05:38 +0000 (17:05 +0100)
Like skb_pull but returns the original data pointer before pulling the
data after performing a check against sbk->len.

This allows to change code that does "struct foo *p = (void *)skb->data;"
which is hard to audit and error prone, to:

        p = skb_pull_data(skb, sizeof(*p));
        if (!p)
                return;

Which is both safer and cleaner.

Acked-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
include/linux/skbuff.h
net/core/skbuff.c

index eba256af64a577b458998845f2dc01a5ec80745a..877dda38684a4069efe99ca40fca0f35290341c4 100644 (file)
@@ -2373,6 +2373,8 @@ static inline void *skb_pull_inline(struct sk_buff *skb, unsigned int len)
        return unlikely(len > skb->len) ? NULL : __skb_pull(skb, len);
 }
 
+void *skb_pull_data(struct sk_buff *skb, size_t len);
+
 void *__pskb_pull_tail(struct sk_buff *skb, int delta);
 
 static inline void *__pskb_pull(struct sk_buff *skb, unsigned int len)
index a33247fdb8f57064b50d8a7fed7863aef8099812..dd3ef966efdb478b4ed0eead4c39a74c9b8696a7 100644 (file)
@@ -2023,6 +2023,30 @@ void *skb_pull(struct sk_buff *skb, unsigned int len)
 }
 EXPORT_SYMBOL(skb_pull);
 
+/**
+ *     skb_pull_data - remove data from the start of a buffer returning its
+ *     original position.
+ *     @skb: buffer to use
+ *     @len: amount of data to remove
+ *
+ *     This function removes data from the start of a buffer, returning
+ *     the memory to the headroom. A pointer to the original data in the buffer
+ *     is returned after checking if there is enough data to pull. Once the
+ *     data has been pulled future pushes will overwrite the old data.
+ */
+void *skb_pull_data(struct sk_buff *skb, size_t len)
+{
+       void *data = skb->data;
+
+       if (skb->len < len)
+               return NULL;
+
+       skb_pull(skb, len);
+
+       return data;
+}
+EXPORT_SYMBOL(skb_pull_data);
+
 /**
  *     skb_trim - remove end from a buffer
  *     @skb: buffer to alter