Queue(3) | libnetfilter_queue | Queue(3) |
Queue - Queue handling [DEPRECATED]
int nfq_fd (struct nfq_handle *h)
struct nfq_q_handle * nfq_create_queue (struct nfq_handle *h, uint16_t
num, nfq_callback *cb, void *data)
int nfq_destroy_queue (struct nfq_q_handle *qh)
int nfq_handle_packet (struct nfq_handle *h, char *buf, int len)
int nfq_set_mode (struct nfq_q_handle *qh, uint8_t mode, uint32_t
range)
int nfq_set_queue_flags (struct nfq_q_handle *qh, uint32_t mask,
uint32_t flags)
int nfq_set_queue_maxlen (struct nfq_q_handle *qh, uint32_t queuelen)
int nfq_set_verdict (struct nfq_q_handle *qh, uint32_t id, uint32_t
verdict, uint32_t data_len, const unsigned char *buf)
int nfq_set_verdict2 (struct nfq_q_handle *qh, uint32_t id, uint32_t
verdict, uint32_t mark, uint32_t data_len, const unsigned char *buf)
int nfq_set_verdict_batch (struct nfq_q_handle *qh, uint32_t id,
uint32_t verdict)
int nfq_set_verdict_batch2 (struct nfq_q_handle *qh, uint32_t id,
uint32_t verdict, uint32_t mark)
int nfq_set_verdict_mark (struct nfq_q_handle *qh, uint32_t id,
uint32_t verdict, uint32_t mark, uint32_t data_len, const unsigned char
*buf)
Once libnetfilter_queue library has been initialised (See LibrarySetup), it is possible to bind the program to a specific queue. This can be done by using nfq_create_queue().
The queue can then be tuned via nfq_set_mode() or nfq_set_queue_maxlen().
Here's a little code snippet that create queue numbered 0:
printf("binding this socket to queue '0'0);
qh = nfq_create_queue(h, 0, &cb, NULL);
if (!qh) {
fprintf(stderr, "error during nfq_create_queue()0);
exit(1);
}
printf("setting copy_packet mode0);
if (nfq_set_mode(qh, NFQNL_COPY_PACKET, 0xffff) < 0) {
fprintf(stderr, "can't set packet_copy mode0);
exit(1);
}
Next step is the handling of incoming packets which can be done via a loop:
fd = nfq_fd(h);
while ((rv = recv(fd, buf, sizeof(buf), 0)) >= 0) {
printf("pkt received0);
nfq_handle_packet(h, buf, rv);
}
When the decision on a packet has been choosed, the verdict has to be given
by calling nfq_set_verdict() or nfq_set_verdict2(). The
verdict determines the destiny of the packet as follows:
The verdict NF_STOLEN must not be used, as it has special meaning in the kernel. When using NF_REPEAT, one way to prevent re-queueing of the same packet is to also set an nfmark using nfq_set_verdict2, and set up the nefilter rules to only queue a packet when the mark is not (yet) set.
Data and information about the packet can be fetch by using message parsing functions (See Parsing).
nfq_create_queue - create a new queue handle and return it.
Parameters
Returns
Creates a new queue handle, and returns it. The new queue is identified by num, and the callback specified by cb will be called for each enqueued packet. The data argument will be passed unchanged to the callback. If a queue entry with id num already exists, this function will return failure and the existing entry is unchanged.
The nfq_callback type is defined in libnetfilter_queue.h as:
typedef int nfq_callback(struct nfq_q_handle *qh,
struct nfgenmsg *nfmsg,
struct nfq_data *nfad, void *data);
Parameters:
The callback should return < 0 to stop processing.
Definition at line 538 of file libnetfilter_queue.c.
nfq_destroy_queue - destroy a queue handle
Parameters
Removes the binding for the specified queue handle. This call also unbind from the nfqueue handler, so you don't have to call nfq_unbind_pf.
Definition at line 585 of file libnetfilter_queue.c.
nfq_fd - get the file descriptor associated with the nfqueue handler
Parameters
Returns
This function returns a file descriptor that can be used for communication over the netlink connection associated with the given queue connection handle.
Definition at line 308 of file libnetfilter_queue.c.
nfq_handle_packet - handle a packet received from the nfqueue subsystem
Parameters
Triggers an associated callback for the given packet received from the queue. Packets can be read from the queue using nfq_fd() and recv(). See example code for nfq_fd().
Returns
Definition at line 609 of file libnetfilter_queue.c.
nfq_set_mode - set the amount of packet data that nfqueue copies to userspace
Parameters
Sets the amount of data to be copied to userspace for each packet queued to the given queue.
Returns
Definition at line 630 of file libnetfilter_queue.c.
nfq_set_queue_flags - set flags (options) for the kernel queue
Parameters
Existing flags, that you may want to combine, are:
Normalization is expensive, so this flag should always be set. Because attributes in netlink messages are limited to 65531 bytes, you also need to check the NFQA_CAP_LEN attribute, it contains the original size of the captured packet on the kernel side. If it is set and differs from the payload length, the packet was truncated. This also happens when limiting capture size with the NFQNL_COPY_PACKET setting, or when e.g. a local user sends a very large packet.
If your application validates checksums (e.g., tcp checksum), then you must also check if the NFQA_SKB_INFO attribute is present. If it is, you need to test the NFQA_SKB_CSUMNOTREADY bit:
if (attr[NFQA_SKB_INFO]) {
uint32_t info = ntohl(mnl_attr_get_u32(attr[NFQA_SKB_INFO]));
if (info & NFQA_SKB_CSUMNOTREADY)
validate_checksums = false;
}
if this bit is set, the layer 3/4 checksums of the packet appear incorrect,
but are not (because they will be corrected later by the kernel). Please see
example/nf-queue.c in the libnetfilter_queue source for more details.
Here's a little code snippet to show how to use this API:
uint32_t flags = NFQA_CFG_F_FAIL_OPEN;
uint32_t mask = NFQA_CFG_F_FAIL_OPEN;
printf("Enabling fail-open on this q0);
err = nfq_set_queue_flags(qh, mask, flags);
printf("Disabling fail-open on this q0);
flags &= ~NFQA_CFG_F_FAIL_OPEN;
err = nfq_set_queue_flags(qh, mask, flags);
Warning
Returns
Definition at line 719 of file libnetfilter_queue.c.
nfq_set_queue_maxlen - Set kernel queue maximum length parameter
Parameters
Sets the size of the queue in kernel. This fixes the maximum number of packets the kernel will store before internally before dropping upcoming packets.
Returns
Definition at line 752 of file libnetfilter_queue.c.
nfq_set_verdict - issue a verdict on a packet
Parameters
Can be obtained by:
int id;
struct nfqnl_msg_packet_hdr *ph = nfq_get_msg_packet_hdr(tb);
if (ph)
id = ntohl(ph->packet_id);
Notifies netfilter of the userspace verdict for the given packet. Every queued packet must have a verdict specified by userspace, either by calling this function, the nfq_set_verdict2() function, or the _batch versions of these functions.
Returns
Definition at line 856 of file libnetfilter_queue.c.
nfq_set_verdict2 - like nfq_set_verdict, but you can set the mark.
Parameters
Definition at line 874 of file libnetfilter_queue.c.
nfq_set_verdict_batch - issue verdicts on several packets at once
Parameters
Unlike nfq_set_verdict, the verdict is applied to all queued packets whose packet id is smaller or equal to id.
batch support was added in Linux 3.1. These functions will fail silently on older kernels.
Definition at line 895 of file libnetfilter_queue.c.
nfq_set_verdict_batch2 - like nfq_set_verdict_batch, but you can set a mark.
Parameters
Definition at line 910 of file libnetfilter_queue.c.
nfq_set_verdict_mark - like nfq_set_verdict, but you can set the mark.
Parameters
Returns
This function is deprecated since it is broken, its use is highly discouraged. Please, use nfq_set_verdict2 instead.
Definition at line 932 of file libnetfilter_queue.c.
Generated automatically by Doxygen for libnetfilter_queue from the source code.
Thu Jan 28 2021 | Version 1.0.5 |