netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* PF_PACKET or nfnetlink logging of skb->priority
@ 2009-02-18 20:51 Jeremy Jackson
  2009-02-18 23:57 ` Patrick McHardy
  0 siblings, 1 reply; 2+ messages in thread
From: Jeremy Jackson @ 2009-02-18 20:51 UTC (permalink / raw)
  To: netdev

It seems that there is nothing that can capture the skb->priority
outside the kernel. 

There is an iptables *target* "CLASSIFY", which can *set* skb->priority,
but there is no iptables *match* based on it.

tcpdump/pcap/PF_PACKET are oblivious to skb->priority.

netfilter netlink queue can export the skb->mark like the right
mechanism, but it doesn't touch skb->priority anywhere.   Perhaps there
needs to be a another one in include/linux/netfilter/nfnetlink_queue.h:

enum nfqnl_attr_type {
        NFQA_UNSPEC,
        NFQA_PACKET_HDR,
        NFQA_VERDICT_HDR,               /* nfqnl_msg_verdict_hrd */
        NFQA_MARK,   
... etc
	NFQA_SKBPRIORITY

The specific use I'm thinking of now, is troubleshooting priority
queueing with "tc" by being able to log or tcpdump traffic for a
specific qdisc/class.

It might also be nice to be able to tcpdump and/or log packets going
into or out of a specific qdisc/class, but I'd settle for dumping
packets based on skb->priority.

-- 
Jeremy Jackson
Coplanar Networks
(519)489-4903
http://www.coplanar.net
jerj@coplanar.net


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

* Re: PF_PACKET or nfnetlink logging of skb->priority
  2009-02-18 20:51 PF_PACKET or nfnetlink logging of skb->priority Jeremy Jackson
@ 2009-02-18 23:57 ` Patrick McHardy
  0 siblings, 0 replies; 2+ messages in thread
From: Patrick McHardy @ 2009-02-18 23:57 UTC (permalink / raw)
  To: Jeremy Jackson; +Cc: netdev, Netfilter Developer Mailing List

Jeremy Jackson wrote:
> It seems that there is nothing that can capture the skb->priority
> outside the kernel. 
>
> There is an iptables *target* "CLASSIFY", which can *set* skb->priority,
> but there is no iptables *match* based on it.
>
> tcpdump/pcap/PF_PACKET are oblivious to skb->priority.
>
> netfilter netlink queue can export the skb->mark like the right
> mechanism, but it doesn't touch skb->priority anywhere.   Perhaps there
> needs to be a another one in include/linux/netfilter/nfnetlink_queue.h:
>
> enum nfqnl_attr_type {
>         NFQA_UNSPEC,
>         NFQA_PACKET_HDR,
>         NFQA_VERDICT_HDR,               /* nfqnl_msg_verdict_hrd */
>         NFQA_MARK,   
> ... etc
> 	NFQA_SKBPRIORITY
>
> The specific use I'm thinking of now, is troubleshooting priority
> queueing with "tc" by being able to log or tcpdump traffic for a
> specific qdisc/class.
>
> It might also be nice to be able to tcpdump and/or log packets going
> into or out of a specific qdisc/class, but I'd settle for dumping
> packets based on skb->priority.
>   

I think this makes a lot of sense for nfnetlink_queue/log, I'll
gladly take patches :) It should also support changing the priority
using nfnetlink_queue, that would simplify userspace classification
since you don't need to map to mark values, just to have the
classifier map it back to classes.

For libpcap the main problem will probably be that its meta data
that needs to be stored in the pseudo header and you'll need to
keep the format compatible and the tools need to be changed to
interpret it. Using netfilter definitely looks like the easier
route :)



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

end of thread, other threads:[~2009-02-18 23:57 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-18 20:51 PF_PACKET or nfnetlink logging of skb->priority Jeremy Jackson
2009-02-18 23:57 ` Patrick McHardy

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).