From: Pablo Neira Ayuso <pablo@netfilter.org>
To: netfilter-devel@vger.kernel.org
Subject: [PATCH libnetfilter_queue 2/2] pktbuff: add pktb_head_alloc(), pktb_setup() and pktb_head_size()
Date: Sat, 9 May 2020 11:11:41 +0200 [thread overview]
Message-ID: <20200509091141.10619-2-pablo@netfilter.org> (raw)
In-Reply-To: <20200509091141.10619-1-pablo@netfilter.org>
Add two new helper functions, as alternative to pktb_alloc().
* pktb_setup() allows you to skip memcpy()'ing the payload from the
netlink message.
* pktb_head_size() returns the size of the pkt_buff opaque object.
* pktb_head_alloc() allows you to allocate the pkt_buff in the heap.
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
---
include/libnetfilter_queue/pktbuff.h | 7 +++++++
| 20 ++++++++++++++++++++
2 files changed, 27 insertions(+)
diff --git a/include/libnetfilter_queue/pktbuff.h b/include/libnetfilter_queue/pktbuff.h
index 42bc153ec337..a27582b02840 100644
--- a/include/libnetfilter_queue/pktbuff.h
+++ b/include/libnetfilter_queue/pktbuff.h
@@ -6,6 +6,13 @@ struct pkt_buff;
struct pkt_buff *pktb_alloc(int family, void *data, size_t len, size_t extra);
void pktb_free(struct pkt_buff *pktb);
+#define NFQ_BUFFER_SIZE (0xffff + (MNL_SOCKET_BUFFER_SIZE / 2)
+struct pkt_buff *pktb_setup(struct pkt_buff *pktb, int family, uint8_t *data,
+ size_t len, size_t extra);
+size_t pktb_head_size(void);
+
+#define pktb_head_alloc() (struct pkt_buff *)(malloc(pktb_head_size()))
+
uint8_t *pktb_data(struct pkt_buff *pktb);
uint32_t pktb_len(struct pkt_buff *pktb);
--git a/src/extra/pktbuff.c b/src/extra/pktbuff.c
index 118ad898f63b..6acefbe72a9b 100644
--- a/src/extra/pktbuff.c
+++ b/src/extra/pktbuff.c
@@ -103,6 +103,26 @@ struct pkt_buff *pktb_alloc(int family, void *data, size_t len, size_t extra)
return pktb;
}
+EXPORT_SYMBOL
+struct pkt_buff *pktb_setup(struct pkt_buff *pktb, int family, uint8_t *buf,
+ size_t len, size_t extra)
+{
+ pktb->data_len = len + extra;
+ pktb->data = buf;
+ pktb->len = len;
+
+ if (__pktb_setup(family, pktb) < 0)
+ return NULL;
+
+ return pktb;
+}
+
+EXPORT_SYMBOL
+size_t pktb_head_size(void)
+{
+ return sizeof(struct pkt_buff);
+}
+
/**
* pktb_data - get pointer to network packet
* \param pktb Pointer to userspace packet buffer
--
2.20.1
next prev parent reply other threads:[~2020-05-09 9:11 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-05-09 9:11 [PATCH libnetfilter_queue 1/2] pktbuff: add __pktb_setup() Pablo Neira Ayuso
2020-05-09 9:11 ` Pablo Neira Ayuso [this message]
2020-05-09 16:09 ` [PATCH libnetfilter_queue 2/2] pktbuff: add pktb_head_alloc(), pktb_setup() and pktb_head_size() Duncan Roe
2020-05-09 17:26 ` Pablo Neira Ayuso
2020-05-20 5:54 ` Duncan Roe
2020-05-13 6:48 ` Duncan Roe
2020-05-13 6:41 ` [PATCH libnetfilter_queue 1/2] pktbuff: add __pktb_setup() Duncan Roe
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200509091141.10619-2-pablo@netfilter.org \
--to=pablo@netfilter.org \
--cc=netfilter-devel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.