1
vote
0answers
21 views

Will the implementation of RFC3465 Appropriate Byte Count in Linux 2.6.32 be affected by GRO

The implementation of tcp_abc in linux kernel 2.6.32 is like: 323 /* RFC3465: ABC 324 * We MAY increase by 2 if discovered delayed ack 325 */ 326 if (sysctl_tcp_abc > 1 ...
-1
votes
0answers
38 views

tap interface with IP address [closed]

Can you please help if my below understanding is incorrect. I have created a VM on a host machine. VM has eth0 ==> 192.168.100.195 and a tap interface vnet0 got created in host machine. In the host ...
1
vote
1answer
45 views

Does Android have any networking limitations comparing to Linux?

I have just read the following in "The Growth of Android in Embedded Systems" (PDF) by Benjamin Zores of Linux Foundation: Last but not least, Android has deliberately hobbled one of Linux’s key ...
-3
votes
1answer
79 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
vote
0answers
43 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
3answers
80 views

Linux Networking Kernel

I am reading Kernel Networking In linux. I found this http://www.ibm.com/developerworks/linux/library/l-linux-networking-stack/ article helpful. After reading this I have a doubt that If I create any ...
0
votes
0answers
112 views

netstat shows high Recv-Q figure for port 443

Apache web server on ubuntu server is always on high load. Strange thing I could find is high Recv-Q value for port 443 when I ran netstat -tanp. The site runs on ssl for sure. Can someone help by ...
0
votes
0answers
24 views

iwspy didn't work? [closed]

i need to use iwspy for measure RSSI between two peers in same network. unfortunately, iwpsy didn't work !!! when i search for problem i found this link that talk about : "" We removed iwspy support ...
2
votes
2answers
89 views

How to get information about wireless net_devices

I am working in Linux kernel module which is using NF_INET_PRE_ROUTING hook. In that hook I need to know the status of all my net_devices, specially wireless devices. I am able get some information ...
0
votes
0answers
128 views

disable TCP/IP protocol stack in linux [closed]

I am testing my own protocol stack for IP packets & this is done with the help of kernel-modules. So i registers my stack as the handler for IP packets in the linux kernel. But due to TCP/IP stack ...
0
votes
1answer
554 views

tun/tap interface understanding

I am currently exploring different networking interfaces and came across tun/tap. I got confused about one part which was creating sockets. Can we create regular sockets with well know ports on the ...
0
votes
2answers
336 views

Path of UDP packet in linux kernel

I want to find the path of a UDP packet in the Linux kernel. For this, I want to read up on some documentation ( I have this so far, which is for TCP) and then have some printk statements in the ...
2
votes
1answer
160 views

callback function in socket as sk_data_ready()

I was trying to calculate the CPU cycles consumed by various layers & functions defined in linux kernel for TCP/IP network stack for processing a packet. so i used TSC for CPU consumtion by ...
0
votes
2answers
176 views

Best way to inject packets into linux kernel to emulate ethernet packet arrival

I am writing a linux kernel module for some tunnelling activity. The module will get packets from the networking stack and perform some operations on it. What is the best possible way to inject ...
1
vote
2answers
205 views

getting RHEL6 kernel code

I want to change some kernel source files for network stack testing so is there any way to get kernel source code for RHEL6 Enterprise edition and how to apply the changes to get results?
0
votes
2answers
507 views

addition of a new network protocol in the linux kernel

I know that in the linux kernel we can add our own network protocol similar as TCP,UDP etc. Are there any hooks to register a new protocol, similar to IP,ARP, at network layer which could transfer ...
-1
votes
1answer
181 views

ipv6 loopback interface ( ::1/128 ) [closed]

What could be the reason for loopback interface ( ::1/128 ) not getting added on the routing table? I am using command to check : "route -n inet6 -A" Sometimes, there is no entry for the loopback ...
0
votes
0answers
84 views

machine instruction counting for single UDP packet processing

is there any way to count the no of machine cycles or machine instructions used for a particular application or program? I am trying to figure out that how many machine instructions are used for a ...
2
votes
1answer
163 views

What's the correct way to process all the payload of a sk_buff packet in Linux

I'm currently trying to debug an ATM encapsulation layer that runs on-top of Ethernet. Basically the ATM cells are stored in order after the ethernet header. However I suspect the drivers naive ...
0
votes
0answers
76 views

Testing TCP-RTM: Using TCP for realtime communication [closed]

TCP is not suitable for realtime application since it favores reliability over timelyness.Sam Liang and David chariton worked on it and tried to make it suitable for realtime communication. The paper ...
3
votes
1answer
409 views

How to make all outgoing RST drop

I am trying to drop all the outgoing RST and incoming RST on all ports. I am using Debian linux. I tried all possible combinations of commands listed on the internet but nothing seems to work. For ...
1
vote
1answer
138 views

Disabling Traffic Control in Linux

I have read that Traffic Control feature in Linux will try to shape the egress traffic to remove bursts and has its own queue mechanism. I am trying to generate traffic at higher rates as a result ...
1
vote
0answers
73 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
0answers
69 views

nmap 5.2 onwards supposed to detect android devices [closed]

according to this link: here, nmap is now supposed to detect android smartphones. i am using nmap 6.01 but it only identifies android devices as running a linux kernel. is there any way to distinguish ...
1
vote
1answer
96 views

Distinguish forwarding traffic and locally originated traffic in Linux network driver

Is there any information in the struct skbuff to distinguish between the forwarding traffic (bridge forwarding and ip forwarding) and locally originated traffic? We want to treat these two kinds of ...
0
votes
1answer
1k views

how is tcp(kernel) bypass implemented?

Assuming I would like to avoid the overhead of the linux kernel in handling incoming packets and instead would like to grab the packet directly from user space. I have googled around a bit and it ...
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
vote
1answer
68 views

How exactly is the amount of space allocated to a to-be-transmitted packet skb determined and allocated?

From what I understand, when a socket buffer (skb) is allocated by the kernel stack (on Tx path), the 'head' and 'tail' pointers point to the start & end of reserved memory space. My qs is: what ...
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 ...
4
votes
4answers
933 views

From the kernel to the user space (DMA)

Lately, I have been reading a lot of websites,and books about 10gb/s NICs, their DMA and the way data are handled by the linux kernel (10/100 mb/s NICs) and a few questions came to my mind. What ...
3
votes
1answer
571 views

How to capture network frames in a kernel module

I want to capture frames when they're received by a certain NIC; extract some information from them(currently I need to capture the source MAC and source IP addresses); save these information in some ...
0
votes
0answers
167 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 ...
0
votes
1answer
129 views

How to switch user-space process back to the root network namespace?

The problem is that /var/run/netns/ directory contains all the network namespaces, except the root namespace. So I am not sure, how to get the fd, that should be passed to the following kernel call: ...
1
vote
1answer
1k views

how to convert double between host and network byte order?

Could somebody tell me how to convert double precision into network byte ordering. I tried uint32_t htonl(uint32_t hostlong); uint16_t htons(uint16_t hostshort); uint32_t ntohl(uint32_t netlong); ...
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 ...
1
vote
1answer
186 views

latency in dispatching UDP packets through loopback interface?

I'm going to write a program that listens to an UDP port, and then dispatches the data to multiple server instances. The code of the server software has been structure to listen to a port itself, not ...
2
votes
1answer
1k views

Adding link local address

If the IPv6 link-local address is manually deleted on an interface, is there a way to obtain the link-local address back without bringing the interface down? The requirement stems from the need to ...
0
votes
1answer
123 views

undefined reference to “ `function` in the network device interface to the userspace.”

I want to use the network device interface exported by the network driver module. This is my program devget.c #include<stdio.h> #include<linux/netdevice.h> void main(void) { ...
1
vote
0answers
287 views

TCP/IP stack in linux kernel

I am implementing a custom TCP protocol as LKM. I need to send, other than normal packets, one custom packet every RTT to convey some information to the receiver. But I am unable to understand how to ...
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 ...
1
vote
1answer
192 views

Using the skbuff header file.

I am developing an application that makes a guess on whether your applications are under attack or not by monitoring the ports of your system. For this I decided to catch live sk_buff variables ...
2
votes
1answer
648 views

Track a packet as it goes through the kernel (linux)

I have two machines which are set up to use Ip-Security and machine A (lets call them A and B) has a socket which is bound to a particular UDP port on the local machine and it polls it frequently to ...
2
votes
2answers
436 views

Why Linux Server is responding with TCP packets more than MSS requested by Client

Well I am seeing a strange thing which is not what I expect as per the TCP theory. The client while doing a handshake sets a MSS ( Maximum Segment Size ) of 1360 and a window size of 64K but the Linux ...
0
votes
1answer
44 views

How to check the registers value of the network card on ARM Linux?

On our device, we observed that the IPv6 NS packet with multicast address of Layer2 were droped. The tcpdump cannot capture these packet so I guess the packets were dropped by the network card ...
6
votes
2answers
2k views

How can I monitor the NIC status(up/down) in a C program without polling the kernel?

Now I need to get the status of the NIC(up or down) in the real time. That means I have to catch the kernel interrupt when the NIC up or down in a blocked loop. The first stupid method from mine is ...
1
vote
2answers
3k views

Buffer size for capturing packets in kernel space?

Going through the man page of tcpdump here It seems kernel can drop the packets if the buffer is full. I was wondering if 1) that size is configurable and/or 2) where can I see the size for my ...
0
votes
0answers
75 views

Hooking frame passed from the driver to mac80211

I need to some how get the frame that get passes from the driver to mac80211 for processing. I am wondering if any one could guide me how do I write the hooking function or something that would allow ...
1
vote
1answer
248 views

Using NFS filesystem on embedded board

I am using NFS to mount filesystem on my embedded board. Filesystem is mounted via eth0 port on my board. But after filesystem is mounted, if i unplug network cable from eth0 and plug into eth1, NFS ...
1
vote
0answers
62 views

Can a single page can be used for multiple skbs which are not fragments

I have a networking hardware which does Rx coalescing , in which frames partaining to a nic device are combined and send as a big chunk ( Greater than mtu) to the driver. In the driver i have to ...
2
votes
1answer
239 views

How can i create more network namespace?

how to use unshare(), clone() to create lots of network namespace in linux?

1 2