Tagged Questions
The netfilter tag has no wiki summary.
7
votes
6answers
5k views
How can I programatically manage iptables rules on the fly?
I need to query existing rules, as well as being able to easily add and delete rules. I haven't found any APIs for doing this, is there something that I'm missing?
The closest I've come to a solution ...
3
votes
3answers
106 views
spinlock_irqsave with deadlock
I wrote kernel module which do nf_register_hook and use character device mechanism to get grabbed packets to userspace with device read hooking. I use global buffer and buffersize vars that's why i ...
2
votes
2answers
176 views
Netfilter hooks on multi-core system
We have wrote LKM that is using netfilter hooks to intercept IP packets. The problem is that on 1Gb/s payload we see that hooks load only one CPU core via soft irq. Other 15 cores is idle. So i make ...
2
votes
1answer
363 views
Netfilter and Scapy
I'm playing around with netfilter hooks in a kernel module. And I want to be able to capture packets created by scapy.
Both the hooks, and also the packet generation via scapy are running on the same ...
2
votes
4answers
2k views
IP Address from sk_buff
I am writing a kernel module which registers a netfilter hook. I am trying to get the ip address of the caller by using the sk_buff->saddr member. Is there a way I can get the IP in human readable ...
1
vote
1answer
48 views
Some question about kernel object
I'm writing a kernel object (.ko file, which is usually device driver) of Linux.
I have to use some mechanism to protect the critical section in this project, but I'm quite confused about the kernel ...
1
vote
1answer
294 views
Packet modification with netfilter queue?
I'm currently trying to use codes with libnetfilter_queue in userspace to modify packets that were queued in the NFQUEUE target in iptables. However I have little idea as to how to go about doing it.
...
1
vote
0answers
109 views
How to filter specific IP address in android using netfilter?
I want to develop an android app which filters out specific IP address so that next time it wont connect to that IP. But recently I found that in the web that there is certain API called Whispercore ...
1
vote
0answers
139 views
Iptables: how to easily group rules in chain?
I have some netfilter rules like this:
iptables -I INPUT -j NFQUEUE -p udp --dport 4444
iptables -t mangle -I INPUT -j MARK --set-mark 100 -p udp --dport 4444
iptables -I OUTPUT -j NFQUEUE -p udp ...
1
vote
1answer
806 views
iptables error in android: iptables-save and iptables-restore not working
I have compiled Linux for android emulator with full netfilter functionality enabled. And got a iptables binary after building android from source.
When i push this binary to the emulator
i can ...
1
vote
1answer
113 views
Are there any c demos with netfilter?
I want to forward packets by netfilter, so I want to get some c demos to get start, thanks
1
vote
1answer
133 views
is there a limit for the number of sk_buffs in the kernel
I need to steal some SKBs in my NetFilter hook, and retain them for some time.
Is there a limit in the kernel about how many SKBs can I use at a time?
What are the consequences of having some 100,000 ...
1
vote
2answers
243 views
Netfiler hook not getting called
I am writing a kernel module which registers a hook with netfilter. The handler is not being called if I ssh/telnet into the machine where the module is loaded.
struct nf_hook_ops my_hook_ops;
...
0
votes
3answers
32 views
howto make locally terminated tcp connections go through prerouting and postrouting?
I am developing an application that filters and mangles packets using netfilter queue's. It's rather complicated and needs to perform well so I would like to automate some rigorous testing. To do this ...
0
votes
2answers
28 views
libnetfilter_queue programming , how can i know which program send the packet?
I'm trying to make an application level firewall for Linux , but for now i could only tell stuff like ip address , port number.
Is it possible to know which program send the packet ? If i don't need ...
0
votes
2answers
37 views
iptables gives input/output error
I am trying to have iptables-1.4.3.2 work with Linux-2.6.35.9 on our MIPS based platform. The command issued is
iptables -t mangle -A POSTROUTING -p udp -j <TC name> --map tos
iptables exits ...
0
votes
0answers
30 views
Is it possible to update rules in NETFILTER from kernel module
Is it possible to update rules in NETFILTER from a kernel module instead of using iptables to update the same from userspace ?
0
votes
0answers
79 views
Android 2.2 Galaxy S SGH-T959 kernel update with netfilter
I can't seem to find a kernel update for this phone that would include netfilter.
Does anyone know a different way to install netfilter on this phone?
0
votes
0answers
129 views
Netfilter NFQUEUE logging of packets which are injected into another NFQUEUE
I am intercepting packets with the help of netfilter and libnetfilter_queue.
I have two NFQUEUE rules (e.g.):
(1) iptables -A FORWARD ... -j NFQUEUE --queue-num 10
(2) iptables -A FORWARD ... -j ...
0
votes
2answers
90 views
Linux app sends UDP without socket
fellow coders.
I'm monitoring my outgoing traffic using libnetfilter_queue module and an iptables rule
ipatbles -I OUTPUT 1 -p all -j NFQUEUE --queue-num 11220
A certain app, called Jitsi (which ...
0
votes
0answers
303 views
Android: “iptables -m owner” support needed (already rebuilt Nexus S kernel)
I've done everything I know that's required to enable support for iptables owner matching for my Nexus S but still no luck. Here's what I've done:
1) Downloaded the Nexus S kernel from ...
0
votes
0answers
109 views
Android.mk rules to build .ko
I tried to make a kernel module with netfilter, and use insmod to insert it into my android kernel.
But I can't find the rule to make it under Android context. Please help me and thank you.
0
votes
0answers
127 views
ip6tables “-m iprange” ipv6 range detection
I am using ip6tables to allow/disallow connection from clients with specific IP address.
My client's IPv6 address is "fe80::e91b:befe:97dc:9df5".
The "-m iprange --src-range" detects the client is in ...
0
votes
0answers
41 views
how iptables communicates to kernel netfilter while adding rules in usespace
I want to understand when we add iptables rule from the userspace, the rule info will given to netfilter and the netfilter adds these rules in hooks as per my understanding.
How the iptables send ...
0
votes
0answers
196 views
libnetfilter_queue verdict into different queue with NF_QUEUE
I am writing a program using libnetfilter_queue. Everything works fine so far. I am creating something like a netfilter_queue chain:
getInitialData->intercept_Queue1_and_inject -> ...
0
votes
1answer
144 views
How to alter an Ethernet Packet (a packet that comes from the NIC)? Can I Use Netfilter Hooks?
I want to catch a packet before that packet come up tcp/ip layers and give it to user space with C++ and a UI.
How can I do this? Is Qt & Netfilter something that can do this?
0
votes
0answers
56 views
Getting data from nfq_get_payload
When I use 'nfq_get_payload(nfqData, &data);' and then print 'data', all I get are E's, is there something else that I should be doing to get the payload?
ret = nfq_get_payload(nfqData, ...
0
votes
0answers
132 views
How to increase the processing performance of netfilter queue in userspace?
I wonder how to speed up my packet filter program based on libnetfilter_queue , a library allow handling packet in userspace netfilter queue.
I think the key point is that the switching between ...
0
votes
2answers
156 views
Linux libnetfilter_queue delayed packet problem
I have to filter and modify network traffic using Linux kernel libnetfilter_queue (precisely the python binding) and dpkt, and i'm trying to implement delayed packet forward.
Normal filtering works ...
0
votes
0answers
108 views
How can I trigger the event_callback so that I can test if the libnetfilter_conntrack is working?
I have found a test_filter. c file from the official website of libnetfilter_conntrack. But I After I build, link and run it, i don't know if it works.
So how can I trigger the event_callback from ...
0
votes
0answers
140 views
Can I modify OpenDPI to let it receive packet from the interface provided by libnetfilter_queue?
Recently, I want to implement layer 7 identify and traffic control.I have known L7-filter based on conntrack-tools do it well. I just wonder , can I combine libnetfilter_queue with opendpi to do such ...
0
votes
1answer
76 views
Can I implement a traffic identifiter (layer 7) based on netfilter hook functions (layer 3)?
I want to write a simple traffic identifiter based on netfilter hook functions because I think netfilter hook is easier to implement. I want this using regular expression to identify some layer-7 ...
0
votes
1answer
388 views
Source nat in netfilter prerouting hooks
We are developing our own kernel module that does advanced source nat in netfilter prerouting hook. After upgrading from Linux kernel 2.6.32 (Ubuntu 10.04) to 2.6.35 (Ubuntu 10.04 lucid-back-ports) it ...
0
votes
1answer
291 views
Extending packet header from within a Netfilter hook
I want to prepend IP header on an existing IP packet while inside NF_HOOK_LOCAL_OUT. The issue I face is that the skb expansion functions (such as copy/clone/expand/reallocate header) allocate a new ...
0
votes
0answers
780 views
compiling Linux kernel for Samsung Galaxy 5 : compiled zImage doesn't work
I am trying to compile Linux kernel for my Samsung Galaxy 5 with full Netfilter support:
The phone specifications are:
Model number : GT-I5503
Firmware version : 2.1-update1
Baseband version : ...
0
votes
1answer
268 views
Raw ICMP packet to myself
On a linux system, I have built my own tunneling protocol, where I relay packets over a non-standarized but verfied medium. What I do is capture the packets using iptables and NFQUEUE, relay them over ...
0
votes
1answer
343 views
Unable to compile LIBNETFILTER_QUEUE
I just downloaded libnfnetlink and libnetfilter_queue tarballs.
After succesfully compiling, libnfnetlink is installed (make installed) and I can see it under /usr/lib (set to my LD_LIBRARY_PATH)
...
0
votes
2answers
193 views
netfilter event on packet locally processed ( netfilter C kernel module code)
If an incoming packet comes in AND is locally processed, is there a way to get
notified of that event?
I'm currently using the NF_IP_LOCAL_IN hook. But it looks like this gives all packets destined ...
0
votes
0answers
441 views
Netfilter queue problem
I defined two rules in the iptables to queue selected packets for processing.You can see rules below. My java application uses JNI to access the packets queued by netfilter.
My application can receive ...
0
votes
1answer
342 views
How to capture packets with netfilter?
I am using libpcap to capture GRE packets and forward now, I think the efficiency is not very good.
so I decide to do forwarding with netfilter, but I am new for this. Could someone gives me one
...
0
votes
2answers
706 views
Rewriting network packets on the fly using libnetfilter_queue
I am attempting to write a userspace application that can hook into an OS's network stack, sniff packets flying past and edit ones that its interested in.
After much Googling, it appears to me that ...
0
votes
1answer
301 views
Android SDK avd emulator kernel does not include netfilter/iptables
Where can I find the kernel including netfilter/iptables?
Can I assume most market phones has netfilter included within their kernels?
0
votes
1answer
219 views
How do you return stolen packets back to Netfilter
Let's say I have intercepted a packet from Netfilter and subsequently returned NF_STOLEN. At some point I want to re-inject that packet back to, in this case, the TCP stream it came from. I want to ...
0
votes
0answers
276 views
Linux Netfilter modules, dynamic memory allocation and synchronization
I'm working on a netfilter module that modifies TCP ack behavior and I am having some trouble with crashes. I think my problem is that I don't fully understand the netfilter architecture (and maybe ...
0
votes
3answers
784 views
linux netfilter pass the packet content to user space socket app
I want to write a linux 2.6 netfilter module, which can check the incoming IP packet information ,such as dest-ip ,source-ip. and then pass these information to user space app. that app (socket app,I ...
0
votes
1answer
129 views
compiling multiple files in netfilter
How can I compile multiple files (files calling functions in other files) in kernel module?
-1
votes
0answers
22 views
detect the end of tcp frames sequence in kernel module (nf_hook)
I installed my hook to nefilter. I am developing packet analyzer. It grabs ethernet frames of mtu size max with mac, ip, tcp and other protocol headers.
How can I detect the start of logical packet ...