All of lore.kernel.org
 help / color / mirror / Atom feed
* Question: any hidden in __sk_buff
@ 2023-01-18  1:26 dongdwdw
  2023-01-18  6:24 ` dongdwdw
  2023-01-18  7:03 ` Martin KaFai Lau
  0 siblings, 2 replies; 3+ messages in thread
From: dongdwdw @ 2023-01-18  1:26 UTC (permalink / raw)
  To: bpf

Hi,


Hi Experts,

I am reading ebpf sample code recently. When I read socketx2_kern.c 
socketx2_user.c, I got a question here.

         __u64 proto = load_half(skb, 12);


I can not understand here: It means load 2 bytes from 12th bytes of skb 
address ( it is a pointer of struct__skb_buff ).

struct __sk_buff {

             __u32 len;
             __u32 pkt_type;
             __u32 mark;
             __u32 queue_mapping;
             __u32 protocol;
             __u32 vlan_present;
             __u32 vlan_tci;
             __u32 vlan_proto;

             ******

}

But I found the structure as above. So the reading start point should be 
at queue_mapping. But it actually reads protocol info here. *And I did 
found the result is protocol info*. Why?

The v*alue of pkt_type, mark, and queue_mapping are all 0.* But when to 
read starting from queue_mapping's offset, the info is about protocol. 
It is a little tricky to me. I can not understand this. From my 
pointview, the protocol info should start at 16 bytes.

Is there any background that is hidden from me? I search a lot and 
cannot find any detailed info about this. Please help explain this. 
Thanks so much.


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-01-18  7:42 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-18  1:26 Question: any hidden in __sk_buff dongdwdw
2023-01-18  6:24 ` dongdwdw
2023-01-18  7:03 ` Martin KaFai Lau

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.