dpdk: add rte_delay_us_callback
[vpp.git] / vnet / vnet / interface.h
1 /*
2  * Copyright (c) 2015 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 /*
16  * interface.h: VNET interfaces/sub-interfaces
17  *
18  * Copyright (c) 2008 Eliot Dresselhaus
19  *
20  * Permission is hereby granted, free of charge, to any person obtaining
21  * a copy of this software and associated documentation files (the
22  * "Software"), to deal in the Software without restriction, including
23  * without limitation the rights to use, copy, modify, merge, publish,
24  * distribute, sublicense, and/or sell copies of the Software, and to
25  * permit persons to whom the Software is furnished to do so, subject to
26  * the following conditions:
27  *
28  * The above copyright notice and this permission notice shall be
29  * included in all copies or substantial portions of the Software.
30  *
31  *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
32  *  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
33  *  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
34  *  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
35  *  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
36  *  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
37  *  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
38  */
39
40 #ifndef included_vnet_interface_h
41 #define included_vnet_interface_h
42
43 #include <vnet/unix/pcap.h>
44 #include <vnet/l3_types.h>
45
46 struct vnet_main_t;
47 struct vnet_hw_interface_t;
48 struct vnet_sw_interface_t;
49 struct ip46_address_t;
50
51 /* Interface up/down callback. */
52 typedef clib_error_t *(vnet_interface_function_t)
53   (struct vnet_main_t * vnm, u32 if_index, u32 flags);
54
55 /* Sub-interface add/del callback. */
56 typedef clib_error_t *(vnet_subif_add_del_function_t)
57   (struct vnet_main_t * vnm, u32 if_index,
58    struct vnet_sw_interface_t * template, int is_add);
59
60 /* Interface set mac address callback. */
61 typedef clib_error_t *(vnet_interface_set_mac_address_function_t)
62   (struct vnet_hw_interface_t * hi, char *address);
63
64 typedef enum vnet_interface_function_priority_t_
65 {
66   VNET_ITF_FUNC_PRIORITY_LOW,
67   VNET_ITF_FUNC_PRIORITY_HIGH,
68 } vnet_interface_function_priority_t;
69 #define VNET_ITF_FUNC_N_PRIO ((vnet_interface_function_priority_t)VNET_ITF_FUNC_PRIORITY_HIGH+1)
70
71 typedef struct _vnet_interface_function_list_elt
72 {
73   struct _vnet_interface_function_list_elt *next_interface_function;
74   clib_error_t *(*fp) (struct vnet_main_t * vnm, u32 if_index, u32 flags);
75 } _vnet_interface_function_list_elt_t;
76
77 #define _VNET_INTERFACE_FUNCTION_DECL(f,tag)                            \
78                                                                         \
79 static void __vnet_interface_function_init_##tag##_##f (void)           \
80     __attribute__((__constructor__)) ;                                  \
81                                                                         \
82 static void __vnet_interface_function_init_##tag##_##f (void)           \
83 {                                                                       \
84  vnet_main_t * vnm = vnet_get_main();                                   \
85  static _vnet_interface_function_list_elt_t init_function;              \
86  init_function.next_interface_function =                                \
87    vnm->tag##_functions[VNET_ITF_FUNC_PRIORITY_LOW];                    \
88  vnm->tag##_functions[VNET_ITF_FUNC_PRIORITY_LOW] = &init_function;     \
89  init_function.fp = (void *) &f;                                        \
90 }
91
92 #define _VNET_INTERFACE_FUNCTION_DECL_PRIO(f,tag,p)                    \
93                                                                         \
94 static void __vnet_interface_function_init_##tag##_##f (void)           \
95     __attribute__((__constructor__)) ;                                  \
96                                                                         \
97 static void __vnet_interface_function_init_##tag##_##f (void)           \
98 {                                                                       \
99  vnet_main_t * vnm = vnet_get_main();                                   \
100  static _vnet_interface_function_list_elt_t init_function;              \
101  init_function.next_interface_function = vnm->tag##_functions[p];       \
102  vnm->tag##_functions[p] = &init_function;                              \
103  init_function.fp = (void *) &f;                                        \
104 }
105
106 #define VNET_HW_INTERFACE_ADD_DEL_FUNCTION(f)                   \
107   _VNET_INTERFACE_FUNCTION_DECL(f,hw_interface_add_del)
108 #define VNET_HW_INTERFACE_LINK_UP_DOWN_FUNCTION(f)              \
109   _VNET_INTERFACE_FUNCTION_DECL(f,hw_interface_link_up_down)
110 #define VNET_HW_INTERFACE_LINK_UP_DOWN_FUNCTION_PRIO(f,p)        \
111   _VNET_INTERFACE_FUNCTION_DECL_PRIO(f,hw_interface_link_up_down,p)
112 #define VNET_SW_INTERFACE_ADD_DEL_FUNCTION(f)                   \
113   _VNET_INTERFACE_FUNCTION_DECL(f,sw_interface_add_del)
114 #define VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION(f)             \
115   _VNET_INTERFACE_FUNCTION_DECL(f,sw_interface_admin_up_down)
116 #define VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION_PRIO(f,p)      \
117   _VNET_INTERFACE_FUNCTION_DECL_PRIO(f,sw_interface_admin_up_down, p)
118
119 /* A class of hardware interface devices. */
120 typedef struct _vnet_device_class
121 {
122   /* Index into main vector. */
123   u32 index;
124
125   /* Device name (e.g. "FOOBAR 1234a"). */
126   char *name;
127
128   /* Function to call when hardware interface is added/deleted. */
129   vnet_interface_function_t *interface_add_del_function;
130
131   /* Function to bring device administratively up/down. */
132   vnet_interface_function_t *admin_up_down_function;
133
134   /* Function to call when sub-interface is added/deleted */
135   vnet_subif_add_del_function_t *subif_add_del_function;
136
137   /* Redistribute flag changes/existence of this interface class. */
138   u32 redistribute;
139
140   /* Transmit function. */
141   vlib_node_function_t *tx_function;
142
143   /* Error strings indexed by error code for this node. */
144   char **tx_function_error_strings;
145
146   /* Number of error codes used by this node. */
147   u32 tx_function_n_errors;
148
149   /* Renumber device name [only!] support, a control-plane kludge */
150   int (*name_renumber) (struct vnet_hw_interface_t * hi,
151                         u32 new_dev_instance);
152
153   /* Format device instance as name. */
154   format_function_t *format_device_name;
155
156   /* Parse function for device name. */
157   unformat_function_t *unformat_device_name;
158
159   /* Format device verbosely for this class. */
160   format_function_t *format_device;
161
162   /* Trace buffer format for TX function. */
163   format_function_t *format_tx_trace;
164
165   /* Function to clear hardware counters for device. */
166   void (*clear_counters) (u32 dev_class_instance);
167
168     uword (*is_valid_class_for_interface) (struct vnet_main_t * vnm,
169                                            u32 hw_if_index,
170                                            u32 hw_class_index);
171
172   /* Called when hardware class of an interface changes. */
173   void (*hw_class_change) (struct vnet_main_t * vnm,
174                            u32 hw_if_index, u32 new_hw_class_index);
175
176   /* Called to redirect traffic from a specific interface instance */
177   void (*rx_redirect_to_node) (struct vnet_main_t * vnm,
178                                u32 hw_if_index, u32 node_index);
179
180   /* Link-list of all device classes set up by constructors created below */
181   struct _vnet_device_class *next_class_registration;
182
183   /* Splice vnet_interface_output_node into TX path */
184   u8 flatten_output_chains;
185
186   /* Function to set mac address. */
187   vnet_interface_set_mac_address_function_t *mac_addr_change_function;
188 } vnet_device_class_t;
189
190 #define VNET_DEVICE_CLASS(x,...)                                        \
191   __VA_ARGS__ vnet_device_class_t x;                                    \
192 static void __vnet_add_device_class_registration_##x (void)             \
193     __attribute__((__constructor__)) ;                                  \
194 static void __vnet_add_device_class_registration_##x (void)             \
195 {                                                                       \
196     vnet_main_t * vnm = vnet_get_main();                                \
197     x.next_class_registration = vnm->device_class_registrations;        \
198     vnm->device_class_registrations = &x;                               \
199 }                                                                       \
200 __VA_ARGS__ vnet_device_class_t x
201
202 #define VLIB_DEVICE_TX_FUNCTION_CLONE_TEMPLATE(arch, fn, tgt)           \
203   uword                                                                 \
204   __attribute__ ((flatten))                                             \
205   __attribute__ ((target (tgt)))                                        \
206   CLIB_CPU_OPTIMIZED                                                    \
207   fn ## _ ## arch ( vlib_main_t * vm,                                   \
208                    vlib_node_runtime_t * node,                          \
209                    vlib_frame_t * frame)                                \
210   { return fn (vm, node, frame); }
211
212 #define VLIB_DEVICE_TX_FUNCTION_MULTIARCH_CLONE(fn)                     \
213   foreach_march_variant(VLIB_DEVICE_TX_FUNCTION_CLONE_TEMPLATE, fn)
214
215 #if CLIB_DEBUG > 0
216 #define VLIB_MULTIARCH_CLONE_AND_SELECT_FN(fn,...)
217 #define VLIB_DEVICE_TX_FUNCTION_MULTIARCH(dev, fn)
218 #else
219 #define VLIB_DEVICE_TX_FUNCTION_MULTIARCH(dev, fn)                      \
220   VLIB_DEVICE_TX_FUNCTION_MULTIARCH_CLONE(fn)                           \
221   CLIB_MULTIARCH_SELECT_FN(fn, static inline)                           \
222   static void __attribute__((__constructor__))                          \
223   __vlib_device_tx_function_multiarch_select_##dev (void)               \
224   { dev.tx_function = fn ## _multiarch_select(); }
225 #endif
226
227 /**
228  * Link Type: A description of the protocol of packets on the link.
229  * On an ethernet link this maps directly into the ethertype. On a GRE tunnel
230  * it maps to the GRE-proto, etc for other lnk types.
231  */
232 typedef enum vnet_link_t_
233 {
234 #if CLIB_DEBUG > 0
235   VNET_LINK_IP4 = 1,
236 #else
237   VNET_LINK_IP4 = 0,
238 #endif
239   VNET_LINK_IP6,
240   VNET_LINK_MPLS,
241   VNET_LINK_ETHERNET,
242   VNET_LINK_ARP,
243 } __attribute__ ((packed)) vnet_link_t;
244
245 #define VNET_LINKS {                   \
246     [VNET_LINK_ETHERNET] = "ethernet", \
247     [VNET_LINK_IP4] = "ipv4",          \
248     [VNET_LINK_IP6] = "ipv6",          \
249     [VNET_LINK_MPLS] = "mpls",         \
250     [VNET_LINK_ARP] = "arp",           \
251 }
252
253 /**
254  * @brief Number of link types. Not part of the enum so it does not have to be included in
255  * switch statements
256  */
257 #define VNET_LINK_NUM (VNET_LINK_ARP+1)
258
259 /**
260  * @brief Convert a link to to an Ethertype
261  */
262 extern vnet_l3_packet_type_t vnet_link_to_l3_proto (vnet_link_t link);
263
264 /**
265  * @brief Attributes assignable to a HW interface Class.
266  */
267 typedef enum vnet_hw_interface_class_flags_t_
268 {
269   /**
270    * @brief a point 2 point interface
271    */
272   VNET_HW_INTERFACE_CLASS_FLAG_P2P = (1 << 0),
273 } vnet_hw_interface_class_flags_t;
274
275 /* Layer-2 (e.g. Ethernet) interface class. */
276 typedef struct _vnet_hw_interface_class
277 {
278   /* Index into main vector. */
279   u32 index;
280
281   /* Class name (e.g. "Ethernet"). */
282   char *name;
283
284   /* Flags */
285   vnet_hw_interface_class_flags_t flags;
286
287   /* Function to call when hardware interface is added/deleted. */
288   vnet_interface_function_t *interface_add_del_function;
289
290   /* Function to bring interface administratively up/down. */
291   vnet_interface_function_t *admin_up_down_function;
292
293   /* Function to call when link state changes. */
294   vnet_interface_function_t *link_up_down_function;
295
296   /* Format function to display interface name. */
297   format_function_t *format_interface_name;
298
299   /* Format function to display interface address. */
300   format_function_t *format_address;
301
302   /* Format packet header for this interface class. */
303   format_function_t *format_header;
304
305   /* Format device verbosely for this class. */
306   format_function_t *format_device;
307
308   /* Parser for hardware (e.g. ethernet) address. */
309   unformat_function_t *unformat_hw_address;
310
311   /* Parser for packet header for e.g. rewrite string. */
312   unformat_function_t *unformat_header;
313
314   /* Builds a rewrite string for the interface to the destination
315    * for the payload/link type. */
316   u8 *(*build_rewrite) (struct vnet_main_t * vnm,
317                         u32 sw_if_index,
318                         vnet_link_t link_type, const void *dst_hw_address);
319
320   /* Update an adjacecny added by FIB (as opposed to via the
321    * neighbour resolution protocol). */
322   void (*update_adjacency) (struct vnet_main_t * vnm,
323                             u32 sw_if_index, u32 adj_index);
324
325     uword (*is_valid_class_for_interface) (struct vnet_main_t * vnm,
326                                            u32 hw_if_index,
327                                            u32 hw_class_index);
328
329   /* Called when hw interface class is changed and old hardware instance
330      may want to be deleted. */
331   void (*hw_class_change) (struct vnet_main_t * vnm, u32 hw_if_index,
332                            u32 old_class_index, u32 new_class_index);
333
334   /* List of hw interface classes, built by constructors */
335   struct _vnet_hw_interface_class *next_class_registration;
336
337 } vnet_hw_interface_class_t;
338
339 /**
340  * @brief Return a complete, zero-length (aka dummy) rewrite
341  */
342 extern u8 *default_build_rewrite (struct vnet_main_t *vnm,
343                                   u32 sw_if_index,
344                                   vnet_link_t link_type,
345                                   const void *dst_hw_address);
346
347 /**
348  * @brief Default adjacency update function
349  */
350 extern void default_update_adjacency (struct vnet_main_t *vnm,
351                                       u32 sw_if_index, u32 adj_index);
352
353 #define VNET_HW_INTERFACE_CLASS(x,...)                                  \
354   __VA_ARGS__ vnet_hw_interface_class_t x;                              \
355 static void __vnet_add_hw_interface_class_registration_##x (void)       \
356     __attribute__((__constructor__)) ;                                  \
357 static void __vnet_add_hw_interface_class_registration_##x (void)       \
358 {                                                                       \
359     vnet_main_t * vnm = vnet_get_main();                                \
360     x.next_class_registration = vnm->hw_interface_class_registrations;  \
361     vnm->hw_interface_class_registrations = &x;                         \
362 }                                                                       \
363 __VA_ARGS__ vnet_hw_interface_class_t x
364
365 /* Hardware-interface.  This corresponds to a physical wire
366    that packets flow over. */
367 typedef struct vnet_hw_interface_t
368 {
369   /* Interface name. */
370   u8 *name;
371
372   u32 flags;
373   /* Hardware link state is up. */
374 #define VNET_HW_INTERFACE_FLAG_LINK_UP          (1 << 0)
375   /* Hardware duplex state */
376 #define VNET_HW_INTERFACE_FLAG_DUPLEX_SHIFT     1
377 #define VNET_HW_INTERFACE_FLAG_HALF_DUPLEX      (1 << 1)
378 #define VNET_HW_INTERFACE_FLAG_FULL_DUPLEX      (1 << 2)
379 #define VNET_HW_INTERFACE_FLAG_DUPLEX_MASK      \
380   (VNET_HW_INTERFACE_FLAG_HALF_DUPLEX |         \
381    VNET_HW_INTERFACE_FLAG_FULL_DUPLEX)
382
383   /* Hardware link speed */
384 #define VNET_HW_INTERFACE_FLAG_SPEED_SHIFT      3
385 #define VNET_HW_INTERFACE_FLAG_SPEED_10M        (1 << 3)
386 #define VNET_HW_INTERFACE_FLAG_SPEED_100M       (1 << 4)
387 #define VNET_HW_INTERFACE_FLAG_SPEED_1G         (1 << 5)
388 #define VNET_HW_INTERFACE_FLAG_SPEED_10G        (1 << 6)
389 #define VNET_HW_INTERFACE_FLAG_SPEED_40G        (1 << 7)
390 #define VNET_HW_INTERFACE_FLAG_SPEED_100G       (1 << 8)
391 #define VNET_HW_INTERFACE_FLAG_SPEED_MASK       \
392   (VNET_HW_INTERFACE_FLAG_SPEED_10M |           \
393    VNET_HW_INTERFACE_FLAG_SPEED_100M |          \
394    VNET_HW_INTERFACE_FLAG_SPEED_1G |            \
395    VNET_HW_INTERFACE_FLAG_SPEED_10G |           \
396    VNET_HW_INTERFACE_FLAG_SPEED_40G |           \
397    VNET_HW_INTERFACE_FLAG_SPEED_100G)
398
399   /* l2output node flags */
400 #define VNET_HW_INTERFACE_FLAG_L2OUTPUT_SHIFT   9
401 #define VNET_HW_INTERFACE_FLAG_L2OUTPUT_MAPPED  (1 << 9)
402
403   /* Hardware address as vector.  Zero (e.g. zero-length vector) if no
404      address for this class (e.g. PPP). */
405   u8 *hw_address;
406
407   /* Interface is up as far as software is concerned. */
408   /* NAME.{output,tx} nodes for this interface. */
409   u32 output_node_index, tx_node_index;
410
411   /* (dev_class, dev_instance) uniquely identifies hw interface. */
412   u32 dev_class_index;
413   u32 dev_instance;
414
415   /* (hw_class, hw_instance) uniquely identifies hw interface. */
416   u32 hw_class_index;
417   u32 hw_instance;
418
419   /* Hardware index for this hardware interface. */
420   u32 hw_if_index;
421
422   /* Software index for this hardware interface. */
423   u32 sw_if_index;
424
425   /* Maximum transmit rate for this interface in bits/sec. */
426   f64 max_rate_bits_per_sec;
427
428   /* Smallest packet size supported by this interface. */
429   u32 min_supported_packet_bytes;
430
431   /* Largest packet size supported by this interface. */
432   u32 max_supported_packet_bytes;
433
434   /* Smallest packet size for this interface. */
435   u32 min_packet_bytes;
436
437   /* Largest packet size for this interface. */
438   u32 max_packet_bytes;
439
440   /* Number of extra bytes that go on the wire.
441      Packet length on wire
442      = max (length + per_packet_overhead_bytes, min_packet_bytes). */
443   u32 per_packet_overhead_bytes;
444
445   /* Receive and transmit layer 3 packet size limits (MRU/MTU). */
446   u32 max_l3_packet_bytes[VLIB_N_RX_TX];
447
448   /* Hash table mapping sub interface id to sw_if_index. */
449   uword *sub_interface_sw_if_index_by_id;
450
451   /* Count of number of L2 subinterfaces */
452   u32 l2_if_count;
453
454   /* Bonded interface info -
455      0       - not a bonded interface nor a slave
456      ~0      - slave to a bonded interface
457      others  - A bonded interface with a pointer to bitmap for all slaves */
458   uword *bond_info;
459 #define VNET_HW_INTERFACE_BOND_INFO_NONE ((uword *) 0)
460 #define VNET_HW_INTERFACE_BOND_INFO_SLAVE ((uword *) ~0)
461
462 } vnet_hw_interface_t;
463
464 extern vnet_device_class_t vnet_local_interface_device_class;
465
466 typedef enum
467 {
468   /* A hw interface. */
469   VNET_SW_INTERFACE_TYPE_HARDWARE,
470
471   /* A sub-interface. */
472   VNET_SW_INTERFACE_TYPE_SUB,
473 } vnet_sw_interface_type_t;
474
475 typedef struct
476 {
477   /*
478    * Subinterface ID. A number 0-N to uniquely identify
479    * this subinterface under the main (parent?) interface
480    */
481   u32 id;
482
483   /* Classification data. Used to associate packet header with subinterface. */
484   struct
485   {
486     u16 outer_vlan_id;
487     u16 inner_vlan_id;
488     union
489     {
490       u16 raw_flags;
491       struct
492       {
493         u16 no_tags:1;
494         u16 one_tag:1;
495         u16 two_tags:1;
496         u16 dot1ad:1;           /* 0 = dot1q, 1=dot1ad */
497         u16 exact_match:1;
498         u16 default_sub:1;
499         u16 outer_vlan_id_any:1;
500         u16 inner_vlan_id_any:1;
501       } flags;
502     };
503   } eth;
504 } vnet_sub_interface_t;
505
506 typedef enum
507 {
508   /* Always flood */
509   VNET_FLOOD_CLASS_NORMAL,
510   VNET_FLOOD_CLASS_TUNNEL_MASTER,
511   /* Does not flood when tunnel master is in the same L2 BD */
512   VNET_FLOOD_CLASS_TUNNEL_NORMAL
513 } vnet_flood_class_t;
514
515 /* Software-interface.  This corresponds to a Ethernet VLAN, ATM vc, a
516    tunnel, etc.  Configuration (e.g. IP address) gets attached to
517    software interface. */
518 typedef struct
519 {
520   vnet_sw_interface_type_t type:16;
521
522   u16 flags;
523   /* Interface is "up" meaning adminstratively up.
524      Up in the sense of link state being up is maintained by hardware interface. */
525 #define VNET_SW_INTERFACE_FLAG_ADMIN_UP (1 << 0)
526
527   /* Interface is disabled for forwarding: punt all traffic to slow-path. */
528 #define VNET_SW_INTERFACE_FLAG_PUNT (1 << 1)
529
530 #define VNET_SW_INTERFACE_FLAG_PROXY_ARP (1 << 2)
531
532 #define VNET_SW_INTERFACE_FLAG_UNNUMBERED (1 << 3)
533
534 #define VNET_SW_INTERFACE_FLAG_BOND_SLAVE (1 << 4)
535
536   /* Index for this interface. */
537   u32 sw_if_index;
538
539   /* Software interface index of super-interface;
540      equal to sw_if_index if this interface is not a
541      sub-interface. */
542   u32 sup_sw_if_index;
543
544   /* this swif is unnumbered, use addresses on unnumbered_sw_if_index... */
545   u32 unnumbered_sw_if_index;
546
547   u32 link_speed;
548
549   union
550   {
551     /* VNET_SW_INTERFACE_TYPE_HARDWARE. */
552     u32 hw_if_index;
553
554     /* VNET_SW_INTERFACE_TYPE_SUB. */
555     vnet_sub_interface_t sub;
556   };
557
558   vnet_flood_class_t flood_class;
559 } vnet_sw_interface_t;
560
561 typedef enum
562 {
563   /* Simple counters. */
564   VNET_INTERFACE_COUNTER_DROP = 0,
565   VNET_INTERFACE_COUNTER_PUNT = 1,
566   VNET_INTERFACE_COUNTER_IP4 = 2,
567   VNET_INTERFACE_COUNTER_IP6 = 3,
568   VNET_INTERFACE_COUNTER_RX_NO_BUF = 4,
569   VNET_INTERFACE_COUNTER_RX_MISS = 5,
570   VNET_INTERFACE_COUNTER_RX_ERROR = 6,
571   VNET_INTERFACE_COUNTER_TX_ERROR = 7,
572   VNET_INTERFACE_COUNTER_MPLS = 8,
573   VNET_N_SIMPLE_INTERFACE_COUNTER = 9,
574   /* Combined counters. */
575   VNET_INTERFACE_COUNTER_RX = 0,
576   VNET_INTERFACE_COUNTER_TX = 1,
577   VNET_N_COMBINED_INTERFACE_COUNTER = 2,
578 } vnet_interface_counter_type_t;
579
580 typedef struct
581 {
582   u32 output_node_index;
583   u32 tx_node_index;
584 } vnet_hw_interface_nodes_t;
585
586 typedef struct
587 {
588   /* Hardware interfaces. */
589   vnet_hw_interface_t *hw_interfaces;
590
591   /* Hash table mapping HW interface name to index. */
592   uword *hw_interface_by_name;
593
594   /* Vectors if hardware interface classes and device classes. */
595   vnet_hw_interface_class_t *hw_interface_classes;
596   vnet_device_class_t *device_classes;
597
598   /* Hash table mapping name to hw interface/device class. */
599   uword *hw_interface_class_by_name;
600   uword *device_class_by_name;
601
602   /* Software interfaces. */
603   vnet_sw_interface_t *sw_interfaces;
604
605   /* Hash table mapping sub intfc sw_if_index by sup sw_if_index and sub id */
606   uword *sw_if_index_by_sup_and_sub;
607
608   /* Software interface counters both simple and combined
609      packet and byte counters. */
610   volatile u32 *sw_if_counter_lock;
611   vlib_simple_counter_main_t *sw_if_counters;
612   vlib_combined_counter_main_t *combined_sw_if_counters;
613
614   vnet_hw_interface_nodes_t *deleted_hw_interface_nodes;
615
616   /* pcap drop tracing */
617   int drop_pcap_enable;
618   pcap_main_t pcap_main;
619   u8 *pcap_filename;
620   u32 pcap_sw_if_index;
621   u32 pcap_pkts_to_capture;
622   uword *pcap_drop_filter_hash;
623
624   /* feature_arc_index */
625   u8 output_feature_arc_index;
626 } vnet_interface_main_t;
627
628 static inline void
629 vnet_interface_counter_lock (vnet_interface_main_t * im)
630 {
631   if (im->sw_if_counter_lock)
632     while (__sync_lock_test_and_set (im->sw_if_counter_lock, 1))
633       /* zzzz */ ;
634 }
635
636 static inline void
637 vnet_interface_counter_unlock (vnet_interface_main_t * im)
638 {
639   if (im->sw_if_counter_lock)
640     *im->sw_if_counter_lock = 0;
641 }
642
643 void vnet_pcap_drop_trace_filter_add_del (u32 error_index, int is_add);
644
645 int vnet_interface_name_renumber (u32 sw_if_index, u32 new_show_dev_instance);
646
647 #endif /* included_vnet_interface_h */
648
649 /*
650  * fd.io coding-style-patch-verification: ON
651  *
652  * Local Variables:
653  * eval: (c-set-style "gnu")
654  * End:
655  */