DPDK usage discussions
 help / color / mirror / Atom feed
From: 曾懷恩 <the@csie.io>
To: 張敬昊 <frank@csie.io>
Cc: users@dpdk.org
Subject: Re: [dpdk-users] Flow director struct rte_flow_item_raw guild
Date: Thu, 9 May 2019 11:51:14 +0800	[thread overview]
Message-ID: <859A28C4-16C1-4397-9326-A3BEDB1AD73E@csie.io> (raw)
In-Reply-To: <CA+vFTf-OYYs4XdShx1uy0NHCQHv9r-E=xERQsUte4piV1zOvRQ@mail.gmail.com>

Hi, 敬昊,

Sorry for my question is not clear.

My question is, should I declare a variable to store the bytes I want to filter and just assign it to the pattern element?

Therefore, will the result of init flow filter be like 

	struct rte_flow_item_raw raw_spec, raw_mask; 
	uint8_t spec[12] = {0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01}; 
	 uint8_t mask[12] = {0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff};

	*(uint32_t *)&raw_spec = 0x40000000;
	raw_spec.offset = 12;
	raw_spec.limit = 12;
	raw_spec.length = 24;
	raw_spec.pattern = spec;
	raw_mask.pattern = mask;
	pattern[0].type = RTE_FLOW_ITEM_TYPE_RAW;
	pattern[0].spec = &raw_spec;
	pattern[0].mask = &raw_mask;

if i want to filter out icmp packet?

thanks a lot.

Best Regards,


> 張敬昊 <frank@csie.io> 於 2019年5月9日 上午10:10 寫道:
> 
> Hi 懷恩,
> 
> On the second line of the detailed description of the struct reference <https://doc.dpdk.org/api/structrte__flow__item__raw.html#a0ea66fcaa4ad84410cef13b693809bd2>, it says
> "Matches a byte string of a given length at a given offset."
> 
> I think pattern is the byte string to look for.
> 
> Regards,
> Frank
> 
> On Thu, May 9, 2019 at 10:01 AM 曾懷恩 <the@csie.io <mailto:the@csie.io>> wrote:
> 
> Hi, 
> 
> I have a few questions about structure rte_flow_item_raw.
> 
> In DPDK API doc, it shows there are some below elements in this structure
> 
> uint32_t        relative:1
> uint32_t        search:1
> uint32_t        reserved:30
> int32_t         offset
> uint16_t        limit
> uint16_t        length
> const uint8_t *         pattern
> 
>  Now I can understand the relative and search elements are used to determine search type.
> 
> The offset element is used to set the start search point in packet.
> 
> The limit element is used to set the end search point in packet.
> 
> However, I can’t understand what the pattern element is used to?
> 
> What kind of pointer should I assign to the pattern element?
> 
> Besides, in other rte_flow_item_* structures, there are clearly elements to let user to set contents and masks.
> 
> How do I do in the structure rte_flow_item_raw?
> 
> Thanks a lot,
> 
> Best Regards,
> 
> 
> 
> -- 
> 張敬昊 Frank Chang
> Email: frank@csie.io <mailto:frank@csie.io>
> https://frankchang.me <https://frankchang.me/>
> 
> High Speed Network Lab <http://speed.cis.nctu.edu.tw/>
> National Chiao Tung University


  reply	other threads:[~2019-05-09  3:51 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-05-09  2:01 曾懷恩
2019-05-09  2:10 ` 張敬昊
2019-05-09  3:51   ` 曾懷恩 [this message]
2019-05-09 12:38     ` Adrien Mazarguil
2019-05-10  6:38       ` 曾懷恩
2019-05-10 13:44         ` Adrien Mazarguil
2019-05-10 18:20           ` Huai-En Tseng
2019-05-13  8:49             ` Adrien Mazarguil
2019-05-16  5:34               ` 曾懷恩
2019-05-16  6:00                 ` Tom Barbette
2019-05-22  3:18                   ` 曾懷恩

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=859A28C4-16C1-4397-9326-A3BEDB1AD73E@csie.io \
    --to=the@csie.io \
    --cc=frank@csie.io \
    --cc=users@dpdk.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).