* Following a packet from NIC to user space (and the reverse)
@ 2002-12-31 3:37 Joshua Stewart
0 siblings, 0 replies; only message in thread
From: Joshua Stewart @ 2002-12-31 3:37 UTC (permalink / raw)
To: netdev
I was given this email address by Alan Cox. So, if this is a mistake
please let me know.
------------------------------------------------
I'm trying to get a really good grasp on what happens to packets from
when they arrive until they are pushed to user-space applications. For
now I'm just assuming I am receiving a TCP packet.
I've read almost all the online docs I can find, but most don't get down
and dirty enough for what I'm trying to figure out. For example,
http://www.gnumonks.org/ftp/pub/doc/packet-journey-2.4.html. I also
have troubles with running into docs referring to the 2.0 or 2.2 kernels
and interrupt bottom halves, which it seems are not in the 2.4 network
code (softirqs instead).
I'd like to create a list of the functions (in order) that are called
from the time of sk_buff creation/allocation until the buffer is free'd
(kfree_skb). I'd really like to track an sk_buff throughout it's
'lifespan' in the linux kernel. So far I think I understand the
following, which isn't much...
Linux network drivers all register themselves with the kernel through a
register_netdev() call. Lots of structures are allocated and
initialized. It seems that most sk_buffs come into existence during an
interrupt routine in a NIC card driver (i.e.
/usr/src/linux/drivers/net/pci-skeleton.c, netdrv_rx_interrupt()), which
does the following...
netif_rx(skb) is called, which performs the following...
__skb_queue_tail(&queue->input_pkt_queue,skb); dev.c, line 1255
which puts the sk_buff into the incoming packet queue of one of the
processors, which is really a member of the softnet_data[] array.
>From this point on, I have no idea what happens to the packet. I know
it has something to do with 2.4's new softirqs, but I don't really have
a good grasp on that yet.
Please help me fill in where my knowledge is lacking. Also, PLEASE
correct any mistakes you see in my understanding so far.
Thanks,
Joshua Stewart
joshua.stewart@comcast.net
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2002-12-31 3:37 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-12-31 3:37 Following a packet from NIC to user space (and the reverse) Joshua Stewart
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).