xref: /dpdk/examples/ip_pipeline/pipeline.h (revision 186b14d6850654eb84a8ae9ea29b736f0ba5e093)
1d75c371eSJasvinder Singh /* SPDX-License-Identifier: BSD-3-Clause
2d75c371eSJasvinder Singh  * Copyright(c) 2010-2018 Intel Corporation
3d75c371eSJasvinder Singh  */
4d75c371eSJasvinder Singh 
5d75c371eSJasvinder Singh #ifndef _INCLUDE_PIPELINE_H_
6d75c371eSJasvinder Singh #define _INCLUDE_PIPELINE_H_
7d75c371eSJasvinder Singh 
8d75c371eSJasvinder Singh #include <stdint.h>
9d75c371eSJasvinder Singh #include <sys/queue.h>
10d75c371eSJasvinder Singh 
11d75c371eSJasvinder Singh #include <rte_pipeline.h>
12d75c371eSJasvinder Singh #include <rte_table_action.h>
13d75c371eSJasvinder Singh 
14d75c371eSJasvinder Singh #include "common.h"
15d75c371eSJasvinder Singh #include "action.h"
16d75c371eSJasvinder Singh 
17d75c371eSJasvinder Singh struct pipeline_params {
18d75c371eSJasvinder Singh 	uint32_t timer_period_ms;
19d75c371eSJasvinder Singh 	uint32_t offset_port_id;
20d75c371eSJasvinder Singh 	uint32_t cpu_id;
21d75c371eSJasvinder Singh };
22d75c371eSJasvinder Singh 
23d75c371eSJasvinder Singh enum port_in_type {
24d75c371eSJasvinder Singh 	PORT_IN_RXQ,
25d75c371eSJasvinder Singh 	PORT_IN_SWQ,
26d75c371eSJasvinder Singh 	PORT_IN_TMGR,
27d75c371eSJasvinder Singh 	PORT_IN_TAP,
28d75c371eSJasvinder Singh 	PORT_IN_KNI,
29d75c371eSJasvinder Singh 	PORT_IN_SOURCE,
30e1884698SFan Zhang 	PORT_IN_CRYPTODEV,
31d75c371eSJasvinder Singh };
32d75c371eSJasvinder Singh 
33d75c371eSJasvinder Singh struct port_in_params {
34d75c371eSJasvinder Singh 	/* Read */
35d75c371eSJasvinder Singh 	enum port_in_type type;
36d75c371eSJasvinder Singh 	const char *dev_name;
37d75c371eSJasvinder Singh 	union {
38d75c371eSJasvinder Singh 		struct {
39d75c371eSJasvinder Singh 			uint16_t queue_id;
40d75c371eSJasvinder Singh 		} rxq;
41d75c371eSJasvinder Singh 
42d75c371eSJasvinder Singh 		struct {
43d75c371eSJasvinder Singh 			const char *mempool_name;
44d75c371eSJasvinder Singh 			uint32_t mtu;
45d75c371eSJasvinder Singh 		} tap;
46d75c371eSJasvinder Singh 
47d75c371eSJasvinder Singh 		struct {
48d75c371eSJasvinder Singh 			const char *mempool_name;
49d75c371eSJasvinder Singh 			const char *file_name;
50d75c371eSJasvinder Singh 			uint32_t n_bytes_per_pkt;
51d75c371eSJasvinder Singh 		} source;
52e1884698SFan Zhang 
53e1884698SFan Zhang 		struct {
54e1884698SFan Zhang 			uint16_t queue_id;
55e1884698SFan Zhang 			void *f_callback;
56e1884698SFan Zhang 			void *arg_callback;
57e1884698SFan Zhang 		} cryptodev;
58d75c371eSJasvinder Singh 	};
59d75c371eSJasvinder Singh 	uint32_t burst_size;
60d75c371eSJasvinder Singh 
61d75c371eSJasvinder Singh 	/* Action */
62d75c371eSJasvinder Singh 	const char *action_profile_name;
63d75c371eSJasvinder Singh };
64d75c371eSJasvinder Singh 
65d75c371eSJasvinder Singh enum port_out_type {
66d75c371eSJasvinder Singh 	PORT_OUT_TXQ,
67d75c371eSJasvinder Singh 	PORT_OUT_SWQ,
68d75c371eSJasvinder Singh 	PORT_OUT_TMGR,
69d75c371eSJasvinder Singh 	PORT_OUT_TAP,
70d75c371eSJasvinder Singh 	PORT_OUT_KNI,
71d75c371eSJasvinder Singh 	PORT_OUT_SINK,
72e1884698SFan Zhang 	PORT_OUT_CRYPTODEV,
73d75c371eSJasvinder Singh };
74d75c371eSJasvinder Singh 
75d75c371eSJasvinder Singh struct port_out_params {
76d75c371eSJasvinder Singh 	enum port_out_type type;
77d75c371eSJasvinder Singh 	const char *dev_name;
78d75c371eSJasvinder Singh 	union {
79d75c371eSJasvinder Singh 		struct {
80d75c371eSJasvinder Singh 			uint16_t queue_id;
81d75c371eSJasvinder Singh 		} txq;
82d75c371eSJasvinder Singh 
83d75c371eSJasvinder Singh 		struct {
84d75c371eSJasvinder Singh 			const char *file_name;
85d75c371eSJasvinder Singh 			uint32_t max_n_pkts;
86d75c371eSJasvinder Singh 		} sink;
87e1884698SFan Zhang 
88e1884698SFan Zhang 		struct {
89e1884698SFan Zhang 			uint16_t queue_id;
90e1884698SFan Zhang 			uint32_t op_offset;
91e1884698SFan Zhang 		} cryptodev;
92d75c371eSJasvinder Singh 	};
93d75c371eSJasvinder Singh 	uint32_t burst_size;
94d75c371eSJasvinder Singh 	int retry;
95d75c371eSJasvinder Singh 	uint32_t n_retries;
96d75c371eSJasvinder Singh };
97d75c371eSJasvinder Singh 
98d75c371eSJasvinder Singh enum table_type {
99d75c371eSJasvinder Singh 	TABLE_ACL,
100d75c371eSJasvinder Singh 	TABLE_ARRAY,
101d75c371eSJasvinder Singh 	TABLE_HASH,
102d75c371eSJasvinder Singh 	TABLE_LPM,
103d75c371eSJasvinder Singh 	TABLE_STUB,
104d75c371eSJasvinder Singh };
105d75c371eSJasvinder Singh 
106d75c371eSJasvinder Singh struct table_acl_params {
107d75c371eSJasvinder Singh 	uint32_t n_rules;
108d75c371eSJasvinder Singh 	uint32_t ip_header_offset;
109d75c371eSJasvinder Singh 	int ip_version;
110d75c371eSJasvinder Singh };
111d75c371eSJasvinder Singh 
112d75c371eSJasvinder Singh struct table_array_params {
113d75c371eSJasvinder Singh 	uint32_t n_keys;
114d75c371eSJasvinder Singh 	uint32_t key_offset;
115d75c371eSJasvinder Singh };
116d75c371eSJasvinder Singh 
117d75c371eSJasvinder Singh struct table_hash_params {
118d75c371eSJasvinder Singh 	uint32_t n_keys;
119d75c371eSJasvinder Singh 	uint32_t key_offset;
120d75c371eSJasvinder Singh 	uint32_t key_size;
121d75c371eSJasvinder Singh 	uint8_t *key_mask;
122d75c371eSJasvinder Singh 	uint32_t n_buckets;
123d75c371eSJasvinder Singh 	int extendable_bucket;
124d75c371eSJasvinder Singh };
125d75c371eSJasvinder Singh 
126d75c371eSJasvinder Singh struct table_lpm_params {
127d75c371eSJasvinder Singh 	uint32_t n_rules;
128d75c371eSJasvinder Singh 	uint32_t key_offset;
129d75c371eSJasvinder Singh 	uint32_t key_size;
130d75c371eSJasvinder Singh };
131d75c371eSJasvinder Singh 
132d75c371eSJasvinder Singh struct table_params {
133d75c371eSJasvinder Singh 	/* Match */
134d75c371eSJasvinder Singh 	enum table_type match_type;
135d75c371eSJasvinder Singh 	union {
136d75c371eSJasvinder Singh 		struct table_acl_params acl;
137d75c371eSJasvinder Singh 		struct table_array_params array;
138d75c371eSJasvinder Singh 		struct table_hash_params hash;
139d75c371eSJasvinder Singh 		struct table_lpm_params lpm;
140d75c371eSJasvinder Singh 	} match;
141d75c371eSJasvinder Singh 
142d75c371eSJasvinder Singh 	/* Action */
143d75c371eSJasvinder Singh 	const char *action_profile_name;
144d75c371eSJasvinder Singh };
145d75c371eSJasvinder Singh 
14635c10b58SCristian Dumitrescu struct table_rule;
14735c10b58SCristian Dumitrescu 
14835c10b58SCristian Dumitrescu TAILQ_HEAD(table_rule_list, table_rule);
14935c10b58SCristian Dumitrescu 
150d75c371eSJasvinder Singh struct port_in {
151d75c371eSJasvinder Singh 	struct port_in_params params;
152d75c371eSJasvinder Singh 	struct port_in_action_profile *ap;
153d75c371eSJasvinder Singh 	struct rte_port_in_action *a;
154d75c371eSJasvinder Singh };
155d75c371eSJasvinder Singh 
156d75c371eSJasvinder Singh struct table {
157d75c371eSJasvinder Singh 	struct table_params params;
158d75c371eSJasvinder Singh 	struct table_action_profile *ap;
159d75c371eSJasvinder Singh 	struct rte_table_action *a;
16035c10b58SCristian Dumitrescu 	struct table_rule_list rules;
16135c10b58SCristian Dumitrescu 	struct table_rule *rule_default;
162d75c371eSJasvinder Singh };
163d75c371eSJasvinder Singh 
164d75c371eSJasvinder Singh struct pipeline {
165d75c371eSJasvinder Singh 	TAILQ_ENTRY(pipeline) node;
166d75c371eSJasvinder Singh 	char name[NAME_SIZE];
167d75c371eSJasvinder Singh 
168d75c371eSJasvinder Singh 	struct rte_pipeline *p;
169d75c371eSJasvinder Singh 	struct port_in port_in[RTE_PIPELINE_PORT_IN_MAX];
170d75c371eSJasvinder Singh 	struct table table[RTE_PIPELINE_TABLE_MAX];
171d75c371eSJasvinder Singh 	uint32_t n_ports_in;
172d75c371eSJasvinder Singh 	uint32_t n_ports_out;
173d75c371eSJasvinder Singh 	uint32_t n_tables;
174d75c371eSJasvinder Singh 
175d75c371eSJasvinder Singh 	struct rte_ring *msgq_req;
176d75c371eSJasvinder Singh 	struct rte_ring *msgq_rsp;
177d75c371eSJasvinder Singh 	uint32_t timer_period_ms;
178d75c371eSJasvinder Singh 
179d75c371eSJasvinder Singh 	int enabled;
180d75c371eSJasvinder Singh 	uint32_t thread_id;
181d75c371eSJasvinder Singh 	uint32_t cpu_id;
182d75c371eSJasvinder Singh };
183d75c371eSJasvinder Singh 
184d75c371eSJasvinder Singh TAILQ_HEAD(pipeline_list, pipeline);
185d75c371eSJasvinder Singh 
186d75c371eSJasvinder Singh int
187d75c371eSJasvinder Singh pipeline_init(void);
188d75c371eSJasvinder Singh 
189d75c371eSJasvinder Singh struct pipeline *
190d75c371eSJasvinder Singh pipeline_find(const char *name);
191d75c371eSJasvinder Singh 
192d75c371eSJasvinder Singh struct pipeline *
193d75c371eSJasvinder Singh pipeline_create(const char *name, struct pipeline_params *params);
194d75c371eSJasvinder Singh 
195d75c371eSJasvinder Singh int
196d75c371eSJasvinder Singh pipeline_port_in_create(const char *pipeline_name,
197d75c371eSJasvinder Singh 	struct port_in_params *params,
198d75c371eSJasvinder Singh 	int enabled);
199d75c371eSJasvinder Singh 
200d75c371eSJasvinder Singh int
201d75c371eSJasvinder Singh pipeline_port_in_connect_to_table(const char *pipeline_name,
202d75c371eSJasvinder Singh 	uint32_t port_id,
203d75c371eSJasvinder Singh 	uint32_t table_id);
204d75c371eSJasvinder Singh 
205d75c371eSJasvinder Singh int
206d75c371eSJasvinder Singh pipeline_port_out_create(const char *pipeline_name,
207d75c371eSJasvinder Singh 	struct port_out_params *params);
208d75c371eSJasvinder Singh 
209d75c371eSJasvinder Singh int
210d75c371eSJasvinder Singh pipeline_table_create(const char *pipeline_name,
211d75c371eSJasvinder Singh 	struct table_params *params);
212d75c371eSJasvinder Singh 
213d75c371eSJasvinder Singh struct table_rule_match_acl {
214d75c371eSJasvinder Singh 	int ip_version;
215d75c371eSJasvinder Singh 
216d75c371eSJasvinder Singh 	RTE_STD_C11
217d75c371eSJasvinder Singh 	union {
218d75c371eSJasvinder Singh 		struct {
219d75c371eSJasvinder Singh 			uint32_t sa;
220d75c371eSJasvinder Singh 			uint32_t da;
221d75c371eSJasvinder Singh 		} ipv4;
222d75c371eSJasvinder Singh 
223d75c371eSJasvinder Singh 		struct {
224d75c371eSJasvinder Singh 			uint8_t sa[16];
225d75c371eSJasvinder Singh 			uint8_t da[16];
226d75c371eSJasvinder Singh 		} ipv6;
227d75c371eSJasvinder Singh 	};
228d75c371eSJasvinder Singh 
229d75c371eSJasvinder Singh 	uint32_t sa_depth;
230d75c371eSJasvinder Singh 	uint32_t da_depth;
231d75c371eSJasvinder Singh 	uint16_t sp0;
232d75c371eSJasvinder Singh 	uint16_t sp1;
233d75c371eSJasvinder Singh 	uint16_t dp0;
234d75c371eSJasvinder Singh 	uint16_t dp1;
235d75c371eSJasvinder Singh 	uint8_t proto;
236d75c371eSJasvinder Singh 	uint8_t proto_mask;
237d75c371eSJasvinder Singh 	uint32_t priority;
238d75c371eSJasvinder Singh };
239d75c371eSJasvinder Singh 
240d75c371eSJasvinder Singh struct table_rule_match_array {
241d75c371eSJasvinder Singh 	uint32_t pos;
242d75c371eSJasvinder Singh };
243d75c371eSJasvinder Singh 
244d75c371eSJasvinder Singh #ifndef TABLE_RULE_MATCH_SIZE_MAX
245d75c371eSJasvinder Singh #define TABLE_RULE_MATCH_SIZE_MAX                          256
246d75c371eSJasvinder Singh #endif
247d75c371eSJasvinder Singh 
248d75c371eSJasvinder Singh #ifndef TABLE_RULE_ACTION_SIZE_MAX
249d75c371eSJasvinder Singh #define TABLE_RULE_ACTION_SIZE_MAX                         2048
250d75c371eSJasvinder Singh #endif
251d75c371eSJasvinder Singh 
252d75c371eSJasvinder Singh struct table_rule_match_hash {
253d75c371eSJasvinder Singh 	uint8_t key[TABLE_RULE_MATCH_SIZE_MAX];
254d75c371eSJasvinder Singh };
255d75c371eSJasvinder Singh 
256d75c371eSJasvinder Singh struct table_rule_match_lpm {
257d75c371eSJasvinder Singh 	int ip_version;
258d75c371eSJasvinder Singh 
259d75c371eSJasvinder Singh 	RTE_STD_C11
260d75c371eSJasvinder Singh 	union {
261d75c371eSJasvinder Singh 		uint32_t ipv4;
262d75c371eSJasvinder Singh 		uint8_t ipv6[16];
263d75c371eSJasvinder Singh 	};
264d75c371eSJasvinder Singh 
265d75c371eSJasvinder Singh 	uint8_t depth;
266d75c371eSJasvinder Singh };
267d75c371eSJasvinder Singh 
268d75c371eSJasvinder Singh struct table_rule_match {
269d75c371eSJasvinder Singh 	enum table_type match_type;
270d75c371eSJasvinder Singh 
271d75c371eSJasvinder Singh 	union {
272d75c371eSJasvinder Singh 		struct table_rule_match_acl acl;
273d75c371eSJasvinder Singh 		struct table_rule_match_array array;
274d75c371eSJasvinder Singh 		struct table_rule_match_hash hash;
275d75c371eSJasvinder Singh 		struct table_rule_match_lpm lpm;
276d75c371eSJasvinder Singh 	} match;
277d75c371eSJasvinder Singh };
278d75c371eSJasvinder Singh 
279*186b14d6SFan Zhang #ifndef SYM_CRYPTO_MAX_KEY_SIZE
280*186b14d6SFan Zhang #define SYM_CRYPTO_MAX_KEY_SIZE                (256)
281*186b14d6SFan Zhang #endif
282*186b14d6SFan Zhang 
283d75c371eSJasvinder Singh struct table_rule_action {
284d75c371eSJasvinder Singh 	uint64_t action_mask;
285d75c371eSJasvinder Singh 	struct rte_table_action_fwd_params fwd;
286802755dcSJasvinder Singh 	struct rte_table_action_lb_params lb;
287d75c371eSJasvinder Singh 	struct rte_table_action_mtr_params mtr;
288d75c371eSJasvinder Singh 	struct rte_table_action_tm_params tm;
289d75c371eSJasvinder Singh 	struct rte_table_action_encap_params encap;
290d75c371eSJasvinder Singh 	struct rte_table_action_nat_params nat;
291d75c371eSJasvinder Singh 	struct rte_table_action_ttl_params ttl;
292d75c371eSJasvinder Singh 	struct rte_table_action_stats_params stats;
293d75c371eSJasvinder Singh 	struct rte_table_action_time_params time;
294d46fe944SFan Zhang 	struct rte_table_action_sym_crypto_params sym_crypto;
295*186b14d6SFan Zhang 	uint8_t sym_crypto_key[SYM_CRYPTO_MAX_KEY_SIZE];
2961bdf2632SCristian Dumitrescu 	struct rte_table_action_tag_params tag;
297d5ed626fSCristian Dumitrescu 	struct rte_table_action_decap_params decap;
298*186b14d6SFan Zhang 
299d75c371eSJasvinder Singh };
300d75c371eSJasvinder Singh 
30135c10b58SCristian Dumitrescu struct table_rule {
30235c10b58SCristian Dumitrescu 	TAILQ_ENTRY(table_rule) node;
30335c10b58SCristian Dumitrescu 	struct table_rule_match match;
30435c10b58SCristian Dumitrescu 	struct table_rule_action action;
30535c10b58SCristian Dumitrescu 	void *data;
30635c10b58SCristian Dumitrescu };
30735c10b58SCristian Dumitrescu 
3086b1b3c3cSJasvinder Singh int
30950e73d05SJasvinder Singh pipeline_port_in_stats_read(const char *pipeline_name,
31050e73d05SJasvinder Singh 	uint32_t port_id,
31150e73d05SJasvinder Singh 	struct rte_pipeline_port_in_stats *stats,
31250e73d05SJasvinder Singh 	int clear);
31350e73d05SJasvinder Singh 
31450e73d05SJasvinder Singh int
3156b1b3c3cSJasvinder Singh pipeline_port_in_enable(const char *pipeline_name,
3166b1b3c3cSJasvinder Singh 	uint32_t port_id);
3176b1b3c3cSJasvinder Singh 
3186b1b3c3cSJasvinder Singh int
3196b1b3c3cSJasvinder Singh pipeline_port_in_disable(const char *pipeline_name,
3206b1b3c3cSJasvinder Singh 	uint32_t port_id);
3216b1b3c3cSJasvinder Singh 
32250e73d05SJasvinder Singh int
32350e73d05SJasvinder Singh pipeline_port_out_stats_read(const char *pipeline_name,
32450e73d05SJasvinder Singh 	uint32_t port_id,
32550e73d05SJasvinder Singh 	struct rte_pipeline_port_out_stats *stats,
32650e73d05SJasvinder Singh 	int clear);
32750e73d05SJasvinder Singh 
32850e73d05SJasvinder Singh int
32950e73d05SJasvinder Singh pipeline_table_stats_read(const char *pipeline_name,
33050e73d05SJasvinder Singh 	uint32_t table_id,
33150e73d05SJasvinder Singh 	struct rte_pipeline_table_stats *stats,
33250e73d05SJasvinder Singh 	int clear);
33350e73d05SJasvinder Singh 
334a3a95b7dSJasvinder Singh int
335a3a95b7dSJasvinder Singh pipeline_table_rule_add(const char *pipeline_name,
336a3a95b7dSJasvinder Singh 	uint32_t table_id,
337a3a95b7dSJasvinder Singh 	struct table_rule_match *match,
3384c65163eSCristian Dumitrescu 	struct table_rule_action *action);
339a3a95b7dSJasvinder Singh 
340a3a95b7dSJasvinder Singh int
3413186282fSJasvinder Singh pipeline_table_rule_add_bulk(const char *pipeline_name,
3423186282fSJasvinder Singh 	uint32_t table_id,
34327b333b2SCristian Dumitrescu 	struct table_rule_list *list,
34427b333b2SCristian Dumitrescu 	uint32_t *n_rules_added,
34527b333b2SCristian Dumitrescu 	uint32_t *n_rules_not_added);
3463186282fSJasvinder Singh 
3473186282fSJasvinder Singh int
348a3a95b7dSJasvinder Singh pipeline_table_rule_add_default(const char *pipeline_name,
349a3a95b7dSJasvinder Singh 	uint32_t table_id,
350c348ec05SCristian Dumitrescu 	struct table_rule_action *action);
351a3a95b7dSJasvinder Singh 
352f634e4c5SJasvinder Singh int
353f634e4c5SJasvinder Singh pipeline_table_rule_delete(const char *pipeline_name,
354f634e4c5SJasvinder Singh 	uint32_t table_id,
355f634e4c5SJasvinder Singh 	struct table_rule_match *match);
356f634e4c5SJasvinder Singh 
357f634e4c5SJasvinder Singh int
358f634e4c5SJasvinder Singh pipeline_table_rule_delete_default(const char *pipeline_name,
359f634e4c5SJasvinder Singh 	uint32_t table_id);
360f634e4c5SJasvinder Singh 
361c64b9121SJasvinder Singh int
362c64b9121SJasvinder Singh pipeline_table_rule_stats_read(const char *pipeline_name,
363c64b9121SJasvinder Singh 	uint32_t table_id,
36487b36dcdSCristian Dumitrescu 	struct table_rule_match *match,
365c64b9121SJasvinder Singh 	struct rte_table_action_stats_counters *stats,
366c64b9121SJasvinder Singh 	int clear);
367c64b9121SJasvinder Singh 
3687e11393eSJasvinder Singh int
3697e11393eSJasvinder Singh pipeline_table_mtr_profile_add(const char *pipeline_name,
3707e11393eSJasvinder Singh 	uint32_t table_id,
3717e11393eSJasvinder Singh 	uint32_t meter_profile_id,
3727e11393eSJasvinder Singh 	struct rte_table_action_meter_profile *profile);
3737e11393eSJasvinder Singh 
3747e11393eSJasvinder Singh int
3757e11393eSJasvinder Singh pipeline_table_mtr_profile_delete(const char *pipeline_name,
3767e11393eSJasvinder Singh 	uint32_t table_id,
3777e11393eSJasvinder Singh 	uint32_t meter_profile_id);
3787e11393eSJasvinder Singh 
379e92058d6SJasvinder Singh int
380e92058d6SJasvinder Singh pipeline_table_rule_mtr_read(const char *pipeline_name,
381e92058d6SJasvinder Singh 	uint32_t table_id,
3828c6dc647SCristian Dumitrescu 	struct table_rule_match *match,
383e92058d6SJasvinder Singh 	struct rte_table_action_mtr_counters *stats,
384e92058d6SJasvinder Singh 	int clear);
385e92058d6SJasvinder Singh 
3862b82ef48SJasvinder Singh int
3872b82ef48SJasvinder Singh pipeline_table_dscp_table_update(const char *pipeline_name,
3882b82ef48SJasvinder Singh 	uint32_t table_id,
3892b82ef48SJasvinder Singh 	uint64_t dscp_mask,
3902b82ef48SJasvinder Singh 	struct rte_table_action_dscp_table *dscp_table);
3912b82ef48SJasvinder Singh 
392d0d306c7SJasvinder Singh int
393d0d306c7SJasvinder Singh pipeline_table_rule_ttl_read(const char *pipeline_name,
394d0d306c7SJasvinder Singh 	uint32_t table_id,
3958bfe22acSCristian Dumitrescu 	struct table_rule_match *match,
396d0d306c7SJasvinder Singh 	struct rte_table_action_ttl_counters *stats,
397d0d306c7SJasvinder Singh 	int clear);
398a3169ee5SCristian Dumitrescu 
399a3169ee5SCristian Dumitrescu int
400a3169ee5SCristian Dumitrescu pipeline_table_rule_time_read(const char *pipeline_name,
401a3169ee5SCristian Dumitrescu 	uint32_t table_id,
402a3169ee5SCristian Dumitrescu 	struct table_rule_match *match,
403a3169ee5SCristian Dumitrescu 	uint64_t *timestamp);
404a3169ee5SCristian Dumitrescu 
40535c10b58SCristian Dumitrescu struct table_rule *
40635c10b58SCristian Dumitrescu table_rule_find(struct table *table,
40735c10b58SCristian Dumitrescu 	struct table_rule_match *match);
40835c10b58SCristian Dumitrescu 
40935c10b58SCristian Dumitrescu void
41035c10b58SCristian Dumitrescu table_rule_add(struct table *table,
41135c10b58SCristian Dumitrescu 	struct table_rule *rule);
41235c10b58SCristian Dumitrescu 
41335c10b58SCristian Dumitrescu void
41435c10b58SCristian Dumitrescu table_rule_add_bulk(struct table *table,
41535c10b58SCristian Dumitrescu 	struct table_rule_list *list,
41635c10b58SCristian Dumitrescu 	uint32_t n_rules);
41735c10b58SCristian Dumitrescu 
41835c10b58SCristian Dumitrescu void
41935c10b58SCristian Dumitrescu table_rule_delete(struct table *table,
42035c10b58SCristian Dumitrescu 	struct table_rule_match *match);
42135c10b58SCristian Dumitrescu 
42235c10b58SCristian Dumitrescu void
42335c10b58SCristian Dumitrescu table_rule_default_add(struct table *table,
42435c10b58SCristian Dumitrescu 	struct table_rule *rule);
42535c10b58SCristian Dumitrescu 
42635c10b58SCristian Dumitrescu void
42735c10b58SCristian Dumitrescu table_rule_default_delete(struct table *table);
428d0d306c7SJasvinder Singh 
429d75c371eSJasvinder Singh #endif /* _INCLUDE_PIPELINE_H_ */
430