aboutsummaryrefslogtreecommitdiff
path: root/include/odp/api/spec/classification.h
blob: 1c76ea1921aacb86e404fb3884af930c1e606632 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
/* Copyright (c) 2014-2018, Linaro Limited
 * Copyright (c) 2021-2022, Nokia
 * All rights reserved.
 *
 * SPDX-License-Identifier:     BSD-3-Clause
 */

/**
 * @file
 *
 * ODP classification descriptor
 */

#ifndef ODP_API_SPEC_CLASSIFY_H_
#define ODP_API_SPEC_CLASSIFY_H_
#include <odp/visibility_begin.h>

#ifdef __cplusplus
extern "C" {
#endif

#include <odp/api/packet_io_types.h>
#include <odp/api/pool_types.h>
#include <odp/api/std_types.h>
#include <odp/api/threshold.h>

/** @defgroup odp_classification ODP CLASSIFICATION
 *  Packet input classification.
 *  @{
 */

/**
 * @typedef odp_cos_t
 * ODP Class of service handle
 */

/**
 * @def ODP_COS_INVALID
 * This value is returned from odp_cls_cos_create() on failure.
 */

/**
 * @def ODP_COS_NAME_LEN
 * Maximum ClassOfService name length in chars including null char
 */

/**
 * @def ODP_PMR_INVALID
 * Invalid odp_pmr_t value.
 * This value is returned from odp_cls_pmr_create()
 * function on failure.
 */

/**
 * Supported PMR term values
 *
 * Supported Packet Matching Rule term values in a bit field structure.
 */
typedef union odp_cls_pmr_terms_t {
	/** Packet Matching Rule term fields */
	struct {
		/** Total length of received packet */
		uint64_t	len:1;
		/** Initial (outer) Ethertype only */
		uint64_t	ethtype_0:1;
		/** Ethertype of most inner VLAN tag */
		uint64_t	ethtype_x:1;
		/** First VLAN ID (outer) */
		uint64_t	vlan_id_0:1;
		/** Last VLAN ID (inner) */
		uint64_t	vlan_id_x:1;
		/** destination MAC address */
		uint64_t	dmac:1;
		/** IP Protocol or IPv6 Next Header */
		uint64_t	ip_proto:1;
		/** Destination UDP port, implies IPPROTO=17 */
		uint64_t	udp_dport:1;
		/** Destination TCP port implies IPPROTO=6 */
		uint64_t	tcp_dport:1;
		/** Source UDP Port */
		uint64_t	udp_sport:1;
		/** Source TCP port */
		uint64_t	tcp_sport:1;
		/** Source IP address */
		uint64_t	sip_addr:1;
		/** Destination IP address */
		uint64_t	dip_addr:1;
		/** Source IP address */
		uint64_t	sip6_addr:1;
		/** Destination IP address */
		uint64_t	dip6_addr:1;
		/** IPsec session identifier */
		uint64_t	ipsec_spi:1;
		/** NVGRE/VXLAN network identifier */
		uint64_t	ld_vni:1;
		/** Custom frame match rule. PMR offset is counted from
		 *  the start of the packet. */
		uint64_t        custom_frame:1;
		/** Custom layer 3 match rule. PMR offset is counted from
		 *  the start of layer 3 in the packet. */
		uint64_t        custom_l3:1;
		/** IGMP Group address, implies IPPROTO=2 */
		uint64_t	igmp_grp_addr:1;
		/** ICMP identifier, implies IPPROTO=1 and ICMP_TYPE=0 or ICMP_TYPE=8 */
		uint64_t	icmp_id:1;
		/** ICMP type, implies IPPROTO=1 */
		uint64_t	icmp_type:1;
		/** ICMP code, implies IPPROTO=1 */
		uint64_t	icmp_code:1;
		/** Source SCTP port, implies IPPROTO=132 */
		uint64_t	sctp_sport:1;
		/** Destination SCTP port, implies IPPROTO=132 */
		uint64_t	sctp_dport:1;
		/** GTPv1 tunnel endpoint identifier */
		uint64_t	gtpv1_teid:1;
	} bit;
	/** All bits of the bit field structure */
	uint64_t all_bits;
} odp_cls_pmr_terms_t;

/** Random Early Detection (RED)
 * Random Early Detection is enabled to initiate a drop probability for the
 * incoming packet when the packets in the queue/pool cross the specified
 * threshold values. RED is enabled when 'red_enable' boolean is true and
 * the resource usage is equal to or greater than the minimum threshold value.
 * Resource usage could be defined either as the percentage of pool being full
 * or the number of packets/bytes occupied in the queue depending on the
 * platform capabilities.
 *
 * When RED is enabled for a particular flow then further incoming packets are
 * assigned a drop probability based on the size of the pool/queue.
 *
 * Drop probability is configured as follows
 * * Drop probability is 100%, when resource usage >= threshold.max
 * * Drop probability is 0%, when resource usage <= threshold.min
 * * Drop probability is between 0...100 % when resource usage is between
 *	threshold.min and threshold.max
 *
 * RED is logically configured in the CoS and could be implemented in either
 * pool or queue linked to the CoS depending on platform capabilities.
 * Application should make sure not to link multiple CoS with different RED or
 * BP configuration to the same queue or pool.
 */
typedef struct odp_red_param_t {
	/** A boolean to enable RED
	 * When true, RED is enabled and configured with RED parameters.
	 * Otherwise, RED parameters are ignored. Default value is false.
	 */
	odp_bool_t enable;

	/** Threshold parameters for RED
	 * RED is enabled when the resource usage is equal to or greater than
	 * the minimum threshold value and is disabled otherwise
	 */
	odp_threshold_t threshold;
} odp_red_param_t;

/** Back pressure (BP)
 * When back pressure is enabled for a particular flow, the HW can send
 * back pressure information to the remote peer indicating a network congestion.
 */
typedef struct odp_bp_param_t {
	/** A boolean to enable Back pressure
	 * When true, back pressure is enabled and configured with the BP
	 * parameters. Otherwise BP parameters are ignored. Default value
	 * is false.
	 */
	odp_bool_t enable;

	/** Threshold value for back pressure.
	 * BP is enabled when the resource usage is equal to or greater than the
	 * max backpressure threshold. Min threshold parameters are ignored for
	 * BP configuration.
	 * @see odp_red_param_t for 'resource usage' documentation.
	 */
	odp_threshold_t threshold;
} odp_bp_param_t;

/**
 * Classifier CoS specific statistics counters
 *
 * Counters are incremented per packet classified to the CoS. In a CoS chain,
 * counters are incremented in every CoS for which counters are enabled.
 */
typedef struct odp_cls_cos_stats_t {
	/** Number of octets in classified packets. In case of Ethernet, packet
	 * size includes MAC header. */
	uint64_t octets;

	/** Number of classified packets, including packets dropped due to drop
	 * action. */
	uint64_t packets;

	/** Number of discarded packets due to other reasons than packet
	 * errors or drop action. */
	uint64_t discards;

	/** Number of packets with errors. */
	uint64_t errors;

} odp_cls_cos_stats_t;

/**
 * Classifier queue specific statistics counters
 *
 * Counters are incremented per packet destined to the queue per originating
 * CoS. Note that a single queue can be a destination for multiple CoS's.
 */
typedef struct odp_cls_queue_stats_t {
	/** Number of octets in successfully delivered packets. In case of
	 *  Ethernet, packet size includes MAC header. */
	uint64_t octets;

	/** Number of successfully delivered packets. */
	uint64_t packets;

	/** Number of discarded packets due to other reasons (e.g. RED) than
	 *  errors. */
	uint64_t discards;

	/** Number of packets with errors. Depending on packet input
	 *  configuration, packets with errors may be dropped or not. */
	uint64_t errors;

} odp_cls_queue_stats_t;

/**
 * Classifier statistics capabilities
 */
typedef struct odp_cls_stats_capability_t {
	/** CoS level capabilities */
	struct {
		/** Supported counters */
		union {
			/** Statistics counters in a bit field structure */
			struct {
				/** @see odp_cls_cos_stats_t::octets */
				uint64_t octets          : 1;

				/** @see odp_cls_cos_stats_t::packets */
				uint64_t packets         : 1;

				/** @see odp_cls_cos_stats_t::discards */
				uint64_t discards        : 1;

				/** @see odp_cls_cos_stats_t::errors */
				uint64_t errors          : 1;

			} counter;

			/** All bits of the bit field structure
			 *
			 *  This field can be used to set/clear all flags, or
			 *  for bitwise operations over the entire structure. */
			uint64_t all_counters;
		};
	} cos;

	/** Queue level capabilities */
	struct {
		/** Supported counters */
		union {
			/** Statistics counters in a bit field structure */
			struct {
				/** @see odp_cls_queue_stats_t::octets */
				uint64_t octets          : 1;

				/** @see odp_cls_queue_stats_t::packets */
				uint64_t packets         : 1;

				/** @see odp_cls_queue_stats_t::discards */
				uint64_t discards        : 1;

				/** @see odp_cls_queue_stats_t::errors */
				uint64_t errors          : 1;

			} counter;

			/** All bits of the bit field structure
			 *
			 *  This field can be used to set/clear all flags, or
			 *  for bitwise operations over the entire structure. */
			uint64_t all_counters;
		};
	} queue;

} odp_cls_stats_capability_t;

/**
 * Classification capabilities
 * This capability structure defines system level classification capability
 */
typedef struct odp_cls_capability_t {
	/** PMR terms supported by the classifier
	 * A bit mask of one bit for each of odp_pmr_term_t
	 */
	odp_cls_pmr_terms_t supported_terms;

	/** Maximum number of PMR terms */
	uint32_t max_pmr_terms;

	/** Number of PMR terms available for use now */
	uint32_t available_pmr_terms;

	/** Maximum number of CoS supported */
	uint32_t max_cos;

	/** Maximum number of CoSes that can have statistics enabled at the same
	 * time. If this value is zero, then CoS level statistics are not
	 * supported. */
	uint32_t max_cos_stats;

	/** Maximun number of queues supported per CoS
	 * if the value is 1, then hashing is not supported*/
	uint32_t max_hash_queues;

	/** Protocol header combination supported for Hashing */
	odp_pktin_hash_proto_t hash_protocols;

	/** A Boolean to denote support of PMR range */
	odp_bool_t pmr_range_supported;

	/** Support for Random Early Detection */
	odp_support_t random_early_detection;

	/** Supported threshold type for RED */
	odp_threshold_types_t threshold_red;

	/** Support for Back Pressure to the remote peer */
	odp_support_t back_pressure;

	/** Supported threshold type for BP */
	odp_threshold_types_t threshold_bp;

	/** Maximum value of odp_pmr_create_opt_t::mark */
	uint64_t max_mark;

	/** Statistics counters capabilities */
	odp_cls_stats_capability_t stats;

} odp_cls_capability_t;

/**
 * class of service packet drop policies
 */
typedef enum {
	ODP_COS_DROP_POOL,      /**< Follow buffer pool drop policy */
	ODP_COS_DROP_NEVER,     /**< Never drop, ignoring buffer pool policy */
} odp_cls_drop_t;

/**
 * Packet header field enumeration
 * for fields that may be used to calculate
 * the flow signature, if present in a packet.
 */
typedef enum {
	ODP_COS_FHDR_IN_PKTIO,	/**< Ingress port number */
	ODP_COS_FHDR_L2_SAP,	/**< Ethernet Source MAC address */
	ODP_COS_FHDR_L2_DAP,	/**< Ethernet Destination MAC address */
	ODP_COS_FHDR_L2_VID,	/**< Ethernet VLAN ID */
	ODP_COS_FHDR_L3_FLOW,	/**< IPv6 flow_id */
	ODP_COS_FHDR_L3_SAP,	/**< IP source address */
	ODP_COS_FHDR_L3_DAP,	/**< IP destination address */
	ODP_COS_FHDR_L4_PROTO,	/**< IP protocol (e.g. TCP/UDP/ICMP) */
	ODP_COS_FHDR_L4_SAP,	/**< Transport source port */
	ODP_COS_FHDR_L4_DAP,	/**< Transport destination port */
	ODP_COS_FHDR_IPSEC_SPI,	/**< IPsec session identifier */
	ODP_COS_FHDR_LD_VNI,	/**< NVGRE/VXLAN network identifier */
	ODP_COS_FHDR_USER	/**< Application-specific header field(s) */
} odp_cos_hdr_flow_fields_t;

/**
 * Enumeration of actions for CoS.
 */
typedef enum {
	/**
	 * Enqueue packet
	 *
	 * Packets that arrive in the CoS are enqueued to a destination queue.
	 */
	ODP_COS_ACTION_ENQUEUE,

	/**
	 * Drop packet
	 *
	 * Packets that arrive in the CoS are dropped. Packets are freed into
	 * their originating pool.
	 */
	ODP_COS_ACTION_DROP,
} odp_cos_action_t;

/**
 * Class of service parameters
 * Used to communicate class of service creation options
 */
typedef struct odp_cls_cos_param {
	/** Action to take. When action is ODP_COS_ACTION_DROP, all the other
	 * parameters are ignored.
	 *
	 * The final match in the CoS chain defines the action for a packet.
	 * I.e. packet is dropped only when the CoS of the last matching rule
	 * has drop action. Actions in the previous CoSes in the chain are
	 * ignored.
	 *
	 * Default is ODP_COS_ACTION_ENQUEUE.
	 */
	odp_cos_action_t action;

	/** Enable statistics. If true, counters are incremented when packets
	 * are classified to the CoS. Default is false. @see
	 * odp_cls_cos_stats().
	 */
	odp_bool_t stats_enable;

	/** Number of queues to be linked to this CoS.
	 * If the number is greater than 1 then hashing is enabled.
	 * If number is equal to 1 then hashing is disabled.
	 * When hashing is enabled the queues are created by the implementation
	 * and application need not configure any queue to the class of service.
	 * When hashing is disabled application has to configure the queue to
	 * the class of service.
	 * Depending on the implementation this number might be rounded-off to
	 * nearest supported value (e.g power of 2)
	 *
	 * Default value is 1.
	 */
	uint32_t num_queue;

	/** Variant mapping for queue hash configuration */
	union {
		/** Mapping used when num_queue = 1, hashing is disabled in
		 * this case and application has to configure this queue and
		 * packets are delivered to this queue */
		odp_queue_t queue;

		/** Mapping used when num_queue > 1, hashing is enabled in
		 * this case and queues are created by the implementation */
		struct {
			/** Queue parameters */
			odp_queue_param_t queue_param;

			/** Protocol header fields which are included in
			 * packet input hash calculation */
			odp_pktin_hash_proto_t hash_proto;
		};
	};
	/** Pool associated with CoS */
	odp_pool_t pool;

	/** Drop policy associated with CoS */
	odp_cls_drop_t drop_policy;

	/** Random Early Detection configuration */
	odp_red_param_t red;

	/** Back Pressure configuration */
	odp_bp_param_t bp;

	/** Packet input vector configuration */
	odp_pktin_vector_config_t vector;
} odp_cls_cos_param_t;

/**
 * Initialize class of service parameters
 *
 * Initialize an odp_cls_cos_param_t to its default value for all fields
 *
 * @param param        Address of the odp_cls_cos_param_t to be initialized
 */
void odp_cls_cos_param_init(odp_cls_cos_param_t *param);

/**
 * Query classification capabilities
 *
 * Outputs classification capabilities on success.
 *
 * @param[out] capability  Pointer to classification capability structure.
 *
 * @retval  0 on success
 * @retval <0 on failure
 */
int odp_cls_capability(odp_cls_capability_t *capability);

/**
 * Create a class-of-service
 *
 * Depending on the action parameter, packets to the CoS are either enqueued to
 * a destination queue, or dropped.
 *
 * The use of class-of-service name is optional. Unique names are not required.
 * Use odp_cls_cos_param_init() to initialize parameters into their default
 * values.
 *
 * @param name         Name of the class-of-service or NULL. Maximum string
 *                     length is ODP_COS_NAME_LEN.
 * @param param        Class-of-service parameters
 *
 * @retval Class-of-service handle
 * @retval ODP_COS_INVALID on failure.
 */
odp_cos_t odp_cls_cos_create(const char *name,
			     const odp_cls_cos_param_t *param);

/**
 * Queue hash result
 * Returns the queue within a CoS in which a particular packet will be enqueued
 * based on the packet parameters and hash protocol field configured with the
 * class of service.
 *
 * @param cos          CoS handle
 * @param packet       Packet handle
 *
 * @retval Returns the queue handle on which this packet will be enqueued.
 * @retval ODP_QUEUE_INVALID for error case
 *
 * @note The packet has to be updated with valid header pointers L2, L3 and L4.
 */
odp_queue_t odp_cls_hash_result(odp_cos_t cos, odp_packet_t packet);

/**
 * Discard a class-of-service along with all its associated resources
 *
 * @param cos          CoS handle
 *
 * @retval  0 on success
 * @retval <0 on failure
 */
int odp_cos_destroy(odp_cos_t cos);

/**
 * Assign a queue for a class-of-service
 *
 * @param cos          CoS handle
 * @param queue        Handle of the queue where all packets of this specific
 *                     class of service will be enqueued.
 *
 * @retval  0 on success
 * @retval <0 on failure
 */
int odp_cos_queue_set(odp_cos_t cos, odp_queue_t queue);

/**
* Get the queue associated with the specific class-of-service
*
* @param cos           CoS handle
*
* @retval Queue handle associated with the given class-of-service
* @retval ODP_QUEUE_INVALID on failure
*/
odp_queue_t odp_cos_queue(odp_cos_t cos);

/**
 * Get the number of queues linked with the specific class-of-service
 *
 * @param cos          CoS handle
 *
 * @return Number of queues linked with the class-of-service.
 */
uint32_t odp_cls_cos_num_queue(odp_cos_t cos);

/**
 * Get the list of queue associated with the specific class-of-service
 *
 * @param      cos     CoS handle
 * @param[out] queue   Array of queue handles associated with
 *                     the class-of-service.
 * @param      num     Maximum number of queue handles to output.
 *
 * @return Number of queues linked with CoS
 * @retval 0 on failure
 */
uint32_t odp_cls_cos_queues(odp_cos_t cos, odp_queue_t queue[], uint32_t num);

/**
 * Assign packet drop policy for specific class-of-service
 *
 * @param cos          CoS handle
 * @param drop_policy  Desired packet drop policy for this class.
 *
 * @retval  0 on success
 * @retval <0 on failure
 *
 * @note Optional.
 */
int odp_cos_drop_set(odp_cos_t cos, odp_cls_drop_t drop_policy);

/**
* Get the drop policy configured for a specific class-of-service instance.
*
* @param cos           CoS handle
*
* @retval Drop policy configured with the given class-of-service
*/
odp_cls_drop_t odp_cos_drop(odp_cos_t cos);

/**
 * Request to override per-port class of service
 * based on Layer-2 priority field if present.
 *
 * @param pktio_in     Ingress port identifier.
 * @param num_qos      Number of QoS levels, typically 8.
 * @param qos_table    Values of the Layer-2 QoS header field.
 * @param cos_table    Class-of-service assigned to each of the allowed
 *                     Layer-2 QOS levels.
 *
 * @retval  0 on success
 * @retval <0 on failure
 */
int odp_cos_with_l2_priority(odp_pktio_t pktio_in,
			     uint8_t num_qos,
			     uint8_t qos_table[],
			     odp_cos_t cos_table[]);

/**
 * Request to override per-port class of service
 * based on Layer-3 priority field if present.
 *
 * @param pktio_in       Ingress port identifier.
 * @param num_qos        Number of allowed Layer-3 QoS levels.
 * @param qos_table      Values of the Layer-3 QoS header field.
 * @param cos_table      Class-of-service assigned to each of the allowed
 *                       Layer-3 QOS levels.
 * @param l3_preference	 when true, Layer-3 QoS overrides L2 QoS when present.
 *
 * @retval  0 on success
 * @retval <0 on failure
 *
 * @note Optional.
 */
int odp_cos_with_l3_qos(odp_pktio_t pktio_in,
			uint32_t num_qos,
			uint8_t qos_table[],
			odp_cos_t cos_table[],
			odp_bool_t l3_preference);

/**
 * Get statistics for a CoS
 *
 * The statistics counters are incremented for packets classified to the
 * given CoS.
 *
 * Counters that are not supported are set to zero.
 *
 * It's implementation defined if odp_pktio_stats_reset() call affects these
 * counters.
 *
 * @param      cos     CoS handle
 * @param[out] stats   Statistics structure for output
 *
 * @retval  0 on success
 * @retval <0 on failure
 */
int odp_cls_cos_stats(odp_cos_t cos, odp_cls_cos_stats_t *stats);

/**
 * Get statistics for a queue assigned to a CoS
 *
 * The statistics counters are incremented only for packets originating from the
 * given CoS. Queue handles can be requested with odp_cos_queue() and
 * odp_cls_cos_queues().
 *
 * Counters not supported by the queue are set to zero.
 *
 * It's implementation defined if odp_pktio_stats_reset() call affects these
 * counters.
 *
 * @param      cos     CoS handle
 * @param      queue   Queue handle
 * @param[out] stats   Statistics structure for output
 *
 * @retval  0 on success
 * @retval <0 on failure
 */
int odp_cls_queue_stats(odp_cos_t cos, odp_queue_t queue,
			odp_cls_queue_stats_t *stats);

/**
 * @typedef odp_pmr_t
 * PMR - Packet Matching Rule
 * Up to 32 bit of ternary matching of one of the available header fields
 */

/**
 * Packet Matching Rule terms
 *
 * This enumeration selects the protocol field that is matched against PMR
 * value/mask or value range. Protocol field values and masks are passed in big
 * endian (network endian) format. However, ODP_PMR_LEN value and range are
 * passed in CPU native endian (uint32_t words), as the term does not represent
 * a protocol field.
 *
 * PMR value/mask data size is term specific. This size must be set into val_sz
 * field of odp_pmr_param_t. There is no alignment requirement for PMR
 * value/mask data.
 */
typedef enum {
	/** Total length of received packet. Exceptionally, value and mask are
	  * uint32_t (val_sz = 4) in CPU endian. */
	ODP_PMR_LEN,

	/** Initial (outer) Ethertype only (val_sz = 2) */
	ODP_PMR_ETHTYPE_0,

	/** Ethertype of most inner VLAN tag (val_sz = 2) */
	ODP_PMR_ETHTYPE_X,

	/** First (outer) VLAN ID (val_sz = 2) */
	ODP_PMR_VLAN_ID_0,

	/** Last (most inner) VLAN ID (val_sz = 2) */
	ODP_PMR_VLAN_ID_X,

	/** Destination MAC address (val_sz = 6) */
	ODP_PMR_DMAC,

	/** IPv4 Protocol or IPv6 Next Header (val_sz = 1) */
	ODP_PMR_IPPROTO,

	/** Destination UDP port (val_sz = 2) */
	ODP_PMR_UDP_DPORT,

	/** Destination TCP port (val_sz = 2) */
	ODP_PMR_TCP_DPORT,

	/** Source UDP port (val_sz = 2) */
	ODP_PMR_UDP_SPORT,

	/** Source TCP port (val_sz = 2) */
	ODP_PMR_TCP_SPORT,

	/** Source IPv4 address (val_sz = 4) */
	ODP_PMR_SIP_ADDR,

	/** Destination IPv4 address (val_sz = 4) */
	ODP_PMR_DIP_ADDR,

	/** Source IPv6 address (val_sz = 16) */
	ODP_PMR_SIP6_ADDR,

	/** Destination IPv6 address (val_sz = 16) */
	ODP_PMR_DIP6_ADDR,

	/** IPsec session identifier (val_sz = 4)*/
	ODP_PMR_IPSEC_SPI,

	/** NVGRE/VXLAN network identifier (val_sz = 4) */
	ODP_PMR_LD_VNI,

	/**
	 * Custom frame match rule
	 *
	 * PMR offset is counted from the start of the packet. The match is
	 * defined by the offset, the expected value, and its size. Custom frame
	 * rules must be applied before any other PMR.
	 */
	ODP_PMR_CUSTOM_FRAME,

	/**
	 * Custom layer 3 match rule
	 *
	 * PMR offset is counted from the start of layer 3 in the packet.
	 * The match is defined by the offset, the expected value, and its size.
	 * Custom L3 rules may be combined with other PMRs.
	 */
	ODP_PMR_CUSTOM_L3,

	/** IGMP Group address (val_sz = 4), implies IPPROTO=2 */
	ODP_PMR_IGMP_GRP_ADDR,

	/** ICMP identifier (val_sz = 2), implies IPPROTO=1 and ICMP_TYPE=0 or ICMP_TYPE=8 */
	ODP_PMR_ICMP_ID,

	/** ICMP type (val_sz = 1), implies IPPROTO=1 */
	ODP_PMR_ICMP_TYPE,

	/** ICMP code (val_sz = 1), implies IPPROTO=1 */
	ODP_PMR_ICMP_CODE,

	/** Source SCTP port (val_sz = 2), implies IPPROTO=132 */
	ODP_PMR_SCTP_SPORT,

	/** Destination SCTP port (val_sz = 2), implies IPPROTO=132 */
	ODP_PMR_SCTP_DPORT,

	/** GTPv1 tunnel endpoint identifier (val_sz = 4)
	 *
	 * Matches if and only if IP protocol is UDP, UDP destination port
	 * is 2152 and the UDP payload interpreted as GTP header has GTP
	 * version 1 and TEID as specified.
	 */
	ODP_PMR_GTPV1_TEID,

	/** Inner header may repeat above values with this offset */
	ODP_PMR_INNER_HDR_OFF = 32

} odp_cls_pmr_term_t;

/**
 * Packet Matching Rule parameter structure
 *
 * Match value/mask size and endianness are defined in PMR term documentation
 * (@see odp_cls_pmr_term_t). Most values and masks are passed in big
 * endian format without data alignment requirement. ODP_PMR_LEN is
 * an exception to this (uint32_t in CPU endian).
 */
typedef struct odp_pmr_param_t {
	/** Packet Matching Rule term */
	odp_cls_pmr_term_t  term;

	/** True if the value is range and false if match. Default is false. */
	odp_bool_t range_term;

	/** Variant mappings for types of matches */
	union {
		/** Parameters for single-valued matches */
		struct {
			/** Points to the value to be matched. Value size and
			 *  endianness are defined by the term used. Values of
			 *  protocol fields are defined in big endian format.
			 */
			const void *value;

			/** Mask of the bits to be matched. The same size and
			 *  endianness is used than with the value. */
			const void *mask;
		} match;

		/** Parameter for range value matches */
		struct {
			/** Start value of the range */
			const void *val_start;

			/** End value of the range */
			const void *val_end;
		} range;
	};

	/** Size of the value to be matched */
	uint32_t val_sz;

	/** Offset to the value
	 *
	 * Byte offset to the value to be matched in a packet. PMR term defines
	 * starting point for the offset. Used only with custom PMR terms,
	 * ignored with other terms.
	 */
	uint32_t offset;

} odp_pmr_param_t;

/**
 * Packet Matching Rule creation options
 */
typedef struct odp_pmr_create_opt_t {
	/** PMR terms
	 *
	 *  Array of odp_pmr_param_t entries, one entry per term desired.
	 *  Use odp_cls_pmr_param_init() to initialize parameters into their default values.
	 */
	odp_pmr_param_t *terms;

	/** Number of terms in the match rule. */
	int num_terms;

	/** Classification mark value
	 *
	 * Value to be set in the CLS mark of a packet when the packet matches this
	 * Packet Matching Rule. The default value is zero. The maximum value is indicated in
	 * odp_cls_capability_t::max_mark capability.
	 */
	uint64_t mark;

} odp_pmr_create_opt_t;

/**
 * Initialize packet matching rule parameters
 *
 * Initialize an odp_pmr_param_t to its default values for all fields
 *
 * @param param        Address of the odp_pmr_param_t to be initialized
 */
void odp_cls_pmr_param_init(odp_pmr_param_t *param);

/**
 * Initialize packet matching rule creation option
 *
 * Initialize an odp_pmr_create_opt_t to its default values for all fields
 *
 * @param opt       Address of the odp_pmr_create_opt_t to be initialized
 */
void odp_cls_pmr_create_opt_init(odp_pmr_create_opt_t *opt);

/**
 * Create a packet matching rule
 *
 * Create a packet match rule between source and destination class of service.
 * This packet matching rule is applied on all packets arriving at the source
 * class of service and packets satisfying this PMR are sent to the destination
 * class of service.
 *
 * A composite PMR rule is created when the number of terms in the match rule
 * is more than one. The composite rule is considered as matching only if
 * the packet satisfies all the terms in Packet Match Rule.
 * The underlying platform may not support all or any specific combination
 * of value match rules, and the application should take care
 * of inspecting the return value when installing such rules, and perform
 * appropriate fallback action.
 *
 * Use odp_cls_pmr_param_init() to initialize parameters into their default
 * values.
 *
 * @param terms        Array of odp_pmr_param_t entries, one entry per term
 *                     desired.
 * @param num_terms    Number of terms in the match rule.
 * @param src_cos      source CoS handle
 * @param dst_cos      destination CoS handle
 *
 * @return Handle to the Packet Match Rule.
 * @retval ODP_PMR_INVALID on failure
 *
 * @note Matching PMR rule created through this function sets the CLS mark metadata
 * of the packet to zero.
 *
 * @note Rules created through this function are equivalent to rules created through
 * odp_cls_pmr_create_opt() with the same PMR terms and with the additional option
 * fields set to their default values.
 */
odp_pmr_t odp_cls_pmr_create(const odp_pmr_param_t *terms, int num_terms,
			     odp_cos_t src_cos, odp_cos_t dst_cos);

/**
 * Create a packet matching rule with options
 *
 * Similar to odp_cls_pmr_create() function with additional PMR creation
 * options specified through odp_pmr_create_opt_t.
 *
 * Use odp_cls_pmr_create_opt_init() to initialize options into their default
 * values.
 *
 * @param opt	       points to PMR create options
 * @param src_cos      source CoS handle
 * @param dst_cos      destination CoS handle
 *
 * @return Handle to the Packet Match Rule.
 * @retval ODP_PMR_INVALID on failure
 *
 */
odp_pmr_t odp_cls_pmr_create_opt(const odp_pmr_create_opt_t *opt,
				 odp_cos_t src_cos, odp_cos_t dst_cos);
/**
 * Function to destroy a packet match rule
 *
 * Destroying a PMR removes the link between the source and destination
 * class of service and this PMR will no longer be applied for packets arriving
 * at the source class of service. All the resources associated with the PMR
 * will be released but the class of service will remain intact.
 *
 * Depending on the implementation details, destroying a composite rule
 * may not guarantee the availability of hardware resources to create the
 * same or essentially similar rule.
 *
 * @param pmr       Handle of the PMR to be destroyed
 *
 * @retval  0 on success
 * @retval <0 on failure
 */
int odp_cls_pmr_destroy(odp_pmr_t pmr);

/**
* Assigns a packet pool for a specific class of service
*
* All the packets belonging to the given class of service will
* be allocated from the assigned packet pool.
* The packet pool associated with class of service will supersede the
* packet pool associated with the pktio interface.
*
* @param cos        CoS handle
* @param pool_id    Packet pool handle
*
* @retval  0 on success
* @retval <0 on failure
*/
int odp_cls_cos_pool_set(odp_cos_t cos, odp_pool_t pool_id);

/**
* Get the pool associated with the given class of service
*
* @param cos        CoS handle
*
* @retval pool handle of the associated pool
* @retval ODP_POOL_INVALID if no associated pool found or in case of an error
*/
odp_pool_t odp_cls_cos_pool(odp_cos_t cos);

/**
 * Get printable value for an odp_cos_t
 *
 * @param cos       CoS handle to be printed
 *
 * @return uint64_t value that can be used to print/display this handle
 *
 * @note This routine is intended to be used for diagnostic purposes
 * to enable applications to generate a printable value that represents
 * an odp_cos_t handle.
 */
uint64_t odp_cos_to_u64(odp_cos_t cos);

/**
 * Get printable value for an odp_pmr_t
 *
 * @param pmr          odp_pmr_t handle to be printed
 *
 * @return uint64_t value that can be used to print/display this handle
 *
 * @note This routine is intended to be used for diagnostic purposes
 * to enable applications to generate a printable value that represents
 * an odp_pmr_t handle.
 */
uint64_t odp_pmr_to_u64(odp_pmr_t pmr);

/**
 * Print classifier info
 *
 * Print implementation defined information about classifier. The information is
 * intended to be used for debugging.
 */
void odp_cls_print_all(void);

/**
 * @}
 */

#ifdef __cplusplus
}
#endif

#include <odp/visibility_end.h>
#endif