Tagged Questions
1
vote
1answer
41 views
packet sending in low speed in linux
recently working on a project which is to forward packets in a high rate (more than 500Mbitps). I have tried 2 methods, but they don't work.
The host is a vm, ubuntu-11.10 32bit, the nic is r8169, ...
1
vote
1answer
25 views
Why are there ioctl calls in socket.c?
Trying to understand why there are ioctl calls in socket.c ? I can see a modified kernel that I am using, it has some ioctl calls which load in the required modules when the calls are made.
I was ...
1
vote
1answer
22 views
Is ip_hdr() on a sk_buff guaranteed to work?
When dealing with a sk_buff in kernel modules code, I see many code samples use either
(struct iphdr *)skb_network_header(skb) //skb is an instance of (struct sk_buff*)
or the function ip_hdr() ...
1
vote
1answer
44 views
c++ applcation for linux to convert ipv4 packet to ipv6 [closed]
I'm looking to develope a c/c++ application for linux that converts ipv4 packet received to ipv6 and viceversa ( losing some ipv6 only features )
step 1: how to receive all necessary info from an ...
0
votes
0answers
83 views
recv with flags MSG_DONTWAIT | MSG_PEEK on TCP socket
I have a TCP stream connection used to exchange messages. This is inside Linux kernel. The consumer thread keeps processing incoming messages. After consuming one message, I want to check if there are ...
1
vote
1answer
62 views
SCTP protocol support in android
How can I use SCTP protocol in Android?
I'm already aware that that Android systems don't support SCTP by default, however it's may be possible to enable it by inserting SCTP kernel module, or ...
1
vote
0answers
82 views
Ethernet driver for ethercat modules
I have EK1101, EL6002, EL2034 modules which is based on network devices. These modules are connected PC Ethernet port via ethernet cable. I have tested these modules with some application program, ...
-3
votes
1answer
86 views
Linux Network Device Driver [duplicate]
I am writing Linux driver for I/O data transfer. The data transfer should be through network communication. So, I need transfer data from kernel to Ethernet port. The Ethernet port connected to ...
-1
votes
2answers
67 views
Network device driver [closed]
I want to write Linux device driver for network based device. This network device is just Input output control only and also this device connects through Ethernet port via ethernet cable. How can i ...
1
vote
0answers
44 views
Is it possible to transmit a packet while the network interface is blocked using netif_stop_queue?
I'm trying to implement a time-slotted queueing algorithm for wifi mesh networks, using a loadable kernel module. During certain slots, packets from higher layers are allowed to pass through the wlan ...
0
votes
1answer
63 views
Please tell about the query of network packet traversal in linux
I was reading Understanding linux networking Internal book and the pdf Network packet capture in Linux kernelspace on the link networkkernel.pdf
In the Understanding linux networking Internal under ...
1
vote
0answers
30 views
Query Related to Packet traversal in kernel
After reading the book "Understanding Linux Network internals".
I came to know about some concepts of how we get the packet from the network:-
> When working in interrupt driven model, the nic ...
0
votes
2answers
302 views
how to modify packet header(IP header, TCP Header) before the host send them into the network
I want to modify packet header(IP header, TCP Header) before the host send them into the network.
For example, if I'm using firefox for browsing, then I want to intercept all the packets from firefox ...
0
votes
1answer
97 views
Receiving and filtering Ethernet frames via sk_buff
I'm trying to write kernel module that would catch Ethernet frames and make decision: 'accept' or 'drop' package (simple filtering). I used sk_buff and nf_hookfn with settings described here ...
1
vote
0answers
143 views
Data appearing as Ethernet Trailer in self made SKB
Im trying to make a custom skb in a linux kernel module and then send it over the network.
I succeed in making a SKB but when I send it over the network it does not reach the destination.
If I run ...
0
votes
1answer
160 views
directions about customized Layer 2 implementation in linux
I have some machines running on the same network. One node is the control node which distributes traffic coming to it to the other nodes. The thing is that I want to have a custom protocol header ...
1
vote
0answers
117 views
path of packets through network stack
I'm trying to study and understand operations of the Linux tcp/ip stack, specifically how 'ping' sends packets down and receives them.
Ping creates raw socket in AF_INET family, therefore I placed ...
2
votes
0answers
91 views
adding new address families (AF_xxx)
I came across the kernel driver code implementing some sort of IGMP snooping backend and as part of its functionalilty it creates a new socket address family, AF_IGMPSNOOP, but actually implements ...
0
votes
1answer
94 views
How to use asm/system.h from user space?
For my Linux networking application, I am referring to lincap.c to understand how to use the PACKET_MMAP method of receiving Ethernet packets via a ring buffer.
lincap.c uses the memory barrier macro ...
2
votes
2answers
221 views
Develop simple net_device in the linux kernel
I am trying to implement a netdevice (net_device) in linux kernel. This is simple net_device which pass the command/data from user space to kernel space and vice versa this is the goal of this ...
2
votes
1answer
117 views
network interfaces and IFF_XX flags
I would like to understand if there are any conventions set up in kernel programming when creating network interfaces in the kernel and initializing interface flags, such as IFF_UP, or IFF_MULTICAST ...
0
votes
0answers
105 views
source MAC address from raw packet in driver
Can some one help me in getting the source MAC address of packet in driver? I could find out the destination address as i have "dev", from there i found out destination address from ...
2
votes
1answer
176 views
Increasing the reference count of a SKB
Is there any simple way I can increase the reference count of SKB buffer in linux kernel so that the hardware wont free it.
I know that using skb_clone the reference count is automatically increased ...
1
vote
0answers
74 views
retrieving IPV6 route flags programmatically?
Is there a way to obtain flags of the IPV6 routing table through any API in Linux?
Netlink socket doesn't show any place for flags.
After checking route command's source code in net-tools it seems ...
0
votes
1answer
481 views
How to include kernel headers in a program
I am writing a libnetfilter_queue program. I am new to linux kernel programming. I need to include linux/skbuff.h,
net/checksum.h and many related kernel headers which are not present in ...
0
votes
1answer
167 views
The network packet is rejected if i make a change in it using libnetfilter_queue
I am capturing some packets using iptables queue, and analysing them in a libnetfilter_queue module, now i wish to make some changes in the packet, but even if i change a single character, the packet ...
1
vote
0answers
135 views
Is it possible to alter the INPUT packet before it reaches application in libnetfilter_queue
I want to make some changes in the packets containing specific string. I QUEUE the packets, using iptables match string.
I tried this but the packet keeps on looping and does not reach the ...
2
votes
1answer
124 views
Finalizing Xmit of Compressed IP Header
I'm implementing an IP header compression protocol as a loadable kernel module that takes an IPv4 header and compresses it to smaller header (let's call it "iphc" header).
To do this, for outgoing ...
0
votes
1answer
265 views
Receiving an Ethernet packet in sk_buff
I'm writing a kernel module that receives Ethernet packets for Linux 2.6.31 and I'd like to extract contents of Ethernet packets from a pointer to struct sk_buff that is passed to func function of ...
0
votes
3answers
245 views
How to edit proc file?
I want to edit the value of a proc file /proc/sys/net/ipv6/route/gc_interval in the middle of a running kernel. I want to edit the value of this proc file value relative to another value.
According ...
0
votes
1answer
35 views
how to disable DST_METRIC_READ_ONLY kernel 3.0.26
In net/include/dst.h the flag DST_METRICS_READ_ONLY is set on the _metric member of struct dst. But I don't want that that structure be read only. How to disable that flag.
thanks in advance
5
votes
3answers
2k views
How to calculate TCP checksum
I am writing a Kernel Module that uses Netfilter hooks to modify some of the TCP header information and obviously, before sending, I want to re-calculate the checksum.
I also edit the header at the ...
-1
votes
2answers
412 views
Sending Data over network inside kernel
I'm writing a driver in Linux kernel that sends data over the network . Now suppose that my data to be sent (buffer) is in kernel space . how do i send the data without creating a socket (First of ...
1
vote
1answer
211 views
Writing a new Device driver
I'm planning to write a new device driver on linux kernel . The device i intend to write will be a device that'll pipe the data coming into it to another computer that'll be also having the same ...
2
votes
1answer
94 views
How to know the MAC address of the remote communication end?
First, I need to know this in kernel space, so please take this into consideration.
No, I cannot use the IP address of the other device and ARP it(too long to explain why here) but I simply cannot ...
0
votes
1answer
304 views
socket send fail with error code 99,cannot assign requested address
I am trying to send Router advertisement packet to multicast address ff02::1 using raw socket.The raw socket is binded successfully with rndis0 network interface
When i send RA message header using ...
3
votes
3answers
975 views
Crafting an ICMP packet inside a Linux kernel Module
I'm tring to experiment with the ICMP protocol and have created a kernel-module for linux that analyses ICMP packet ( Processes the packet only if if the ICMP code field is a magic number ) . Now to ...
0
votes
0answers
168 views
Netns : NET_TX NET_RX softirq processing
Am wondering: in the context of network namespace (netns):
if several network packets are flowing in different, say n number of netns's, will they be processed by n separate softirq instances or just ...
3
votes
2answers
171 views
Hijacking communication between application and network in Linux
I have an embedded system that can be treated as an Access Point. There's a program that runs in that system and performs some network communication with devices connected to that Access Point. It is ...
3
votes
0answers
187 views
sendmsg fails with error code 3 (ESRCH )
OS: Linux 2.6.24 (x86)
My application runs on a server where several clients connects to it on UDP port 4500.
Intermittently, application fails to send UDP traffic to clients on UDP port 4500
...
0
votes
2answers
177 views
Disable ARP while data transfer
I am sending data over PC1 to PC2, both are Linux 2.6 kernel machines. This transfer will take a couple of hours. The ARP cache stale timeout is set to 50 seconds in PC1. So during data transfer, ...
0
votes
0answers
83 views
How to get sockfd from kernel space?
Is there a way to get the sockfd from a struct sock or any other way that would allow me to uniquely identify the socket / connection I'm working with in kernel space?
I need this piece of ...
1
vote
3answers
849 views
Zero-copy with and without Scatter/Gather operations
I just read an article that explains the zero-copy mechanism.
It talks about the difference between zero-copy with and without Scatter/Gather supports.
NIC without SG support, the data copies are as ...
2
votes
1answer
291 views
Direct Memory Access (DMA) Scheduling in a Multithreaded Application
I would like to use DMA to accelarate network I/O (intensive disk reads and output via Internet). I wonder if I have a multithreaded application where each thread issues DMA transfers how does the ...
0
votes
1answer
92 views
Controlling Name Resolution server (DNS) address per request
Looking for ideas on how to generate a Name Resolution request and specify to which server to dispatch the request.
I'm working on Linux.
Up until now, I found two options:
Use an external library ...
0
votes
2answers
1k views
how to capture tcp/ip packets
I'm creating a module that would capture the TCP/IP packets from TCP/IP stack and send this to Kernel which from ther sends to the userspace. My code right now has been completed for second half. It ...
3
votes
1answer
387 views
Printable IPv6 address and port from struct inet_sock
Do you know any way to print in readable format an ipv6 address and its port from the inet_sock struct?
My question has two parts. One is which are the structure members that have this information and ...
0
votes
2answers
205 views
Get struct file from of a given struct socket in kernel space
I need to get the struct file that is associated with a specific struct socket. I saw in the kernel source, in the socket.c file, that there the function struct socket *sockfd_lookup(int fd, int ...
0
votes
2answers
320 views
detect packet fragmentation in kernel module netfilter hooking
I am not able to detect if packet fragmented or not and packet offset.
I dump header data
printk("frt_offset=%d ", ((ip_header->frag_off)));//print all, not 13 bytes of it
printk("fr_cf=%d ", ...
0
votes
1answer
386 views
Which net/ipv4 file contains the TCP window size parameter for the Linux Kernel?
I am trying to tweak the TCP window size, so that I can improve the throughput between two network links. In order to do that, I want to understand completely how the UNIX kernel implements the TCP ...