bonding: refactor bonding hash functions to vnet/hash
[vpp.git] / src / vnet / CMakeLists.txt
1 # Copyright (c) 2018-2020 Cisco and/or its affiliates.
2 # Licensed under the Apache License, Version 2.0 (the "License");
3 # you may not use this file except in compliance with the License.
4 # You may obtain a copy of the License at:
5 #
6 #     http://www.apache.org/licenses/LICENSE-2.0
7 #
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS,
10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 # See the License for the specific language governing permissions and
12 # limitations under the License.
13
14 unset(VNET_SOURCES)
15 unset(VNET_HEADERS)
16 unset(VNET_API_FILES)
17 unset(VNET_MULTIARCH_SOURCES)
18
19 option(VPP_IP_FIB_MTRIE_16 "IP FIB's MTRIE Stride is 16-8-8 (if not set it's 8-8-8-8)" ON)
20
21 ##############################################################################
22 # Generic stuff
23 ##############################################################################
24 list(APPEND VNET_SOURCES
25   buffer.c
26   config.c
27   devices/devices.c
28   devices/netlink.c
29   error.c
30   flow/flow.c
31   flow/flow_cli.c
32   flow/flow_api.c
33   handoff.c
34   interface.c
35   interface_api.c
36   interface_cli.c
37   interface_format.c
38   interface_output.c
39   interface/caps.c
40   interface/rx_queue.c
41   interface/tx_queue.c
42   interface/runtime.c
43   interface/monitor.c
44   interface_stats.c
45   misc.c
46 )
47
48 list(APPEND VNET_MULTIARCH_SOURCES
49   interface_output.c
50   interface_stats.c
51   handoff.c
52 )
53
54 list(APPEND VNET_HEADERS
55   api_errno.h
56   error.h
57   buffer.h
58   config.h
59   devices/devices.h
60   devices/netlink.h
61   flow/flow.h
62   global_funcs.h
63   interface/rx_queue_funcs.h
64   interface/tx_queue_funcs.h
65   interface.h
66   interface_funcs.h
67   interface_output.h
68   ip/ip4_to_ip6.h
69   ip/ip6_to_ip4.h
70   ip/ip_types_api.h
71   l3_types.h
72   plugin/plugin.h
73   pipeline.h
74   vnet.h
75   util/radix.h
76   util/refcount.h
77   format_fns.h
78   ip/ip_format_fns.h
79   ip/ip_sas.h
80   ethernet/ethernet_format_fns.h
81   ethernet/ethernet_types_api.h
82 )
83
84 list(APPEND VNET_API_FILES
85   interface.api
86   interface_types.api
87   ip/ip_types.api
88   flow/flow_types.api
89   flow/flow.api
90 )
91
92 ##############################################################################
93 # Policer infra
94 ##############################################################################
95 list(APPEND VNET_SOURCES
96   policer/node_funcs.c
97   policer/policer.c
98   policer/xlate.c
99   policer/policer_api.c
100 )
101
102 list(APPEND VNET_MULTIARCH_SOURCES
103   policer/node_funcs.c
104 )
105
106 list(APPEND VNET_HEADERS
107   policer/police.h
108   policer/policer.h
109   policer/xlate.h
110 )
111
112 list(APPEND VNET_API_FILES
113   policer/policer.api
114   policer/policer_types.api
115 )
116
117 ##############################################################################
118 # Layer 2 protocols go here
119 ##############################################################################
120
121 ##############################################################################
122 # Layer 2 protocol: Ethernet
123 ##############################################################################
124 list(APPEND VNET_SOURCES
125   ethernet/arp_packet.c
126   ethernet/ethernet_types_api.c
127   ethernet/format.c
128   ethernet/init.c
129   ethernet/interface.c
130   ethernet/mac_address.c
131   ethernet/node.c
132   ethernet/pg.c
133   ethernet/sfp.c
134   ethernet/p2p_ethernet.c
135   ethernet/p2p_ethernet_input.c
136   ethernet/p2p_ethernet_api.c
137 )
138
139 list(APPEND VNET_MULTIARCH_SOURCES
140   ethernet/node.c
141   ethernet/p2p_ethernet_input.c
142 )
143
144 list(APPEND VNET_HEADERS
145   ethernet/error.def
146   ethernet/ethernet.h
147   ethernet/mac_address.h
148   ethernet/packet.h
149   ethernet/types.def
150   ethernet/sfp.h
151   ethernet/p2p_ethernet.h
152   ethernet/arp_packet.h
153 )
154
155 list(APPEND VNET_API_FILES
156   ethernet/p2p_ethernet.api
157   ethernet/ethernet_types.api)
158
159 ##############################################################################
160 # Layer 2 protocol: Ethernet bridging
161 ##############################################################################
162 list(APPEND VNET_SOURCES
163   l2/feat_bitmap.c
164   l2/l2_api.c
165   l2/l2_arp_term.c
166   l2/l2_bd.c
167   l2/l2_bvi.c
168   l2/l2_bvi_node.c
169   l2/l2_input_classify.c
170   l2/l2_output_classify.c
171   l2/l2_efp_filter.c
172   l2/l2_fib.c
173   l2/l2_flood.c
174   l2/l2_fwd.c
175   l2/l2_input.c
176   l2/l2_input_node.c
177   l2/l2_input_vtr.c
178   l2/l2_learn.c
179   l2/l2_output.c
180   l2/l2_in_out_acl.c
181   l2/l2_in_out_feat_arc.c
182   l2/l2_patch.c
183   l2/l2_rw.c
184   l2/l2_uu_fwd.c
185   l2/l2_vtr.c
186   l2/l2_xcrw.c
187 )
188
189 list(APPEND VNET_MULTIARCH_SOURCES
190   l2/l2_bvi_node.c
191   l2/l2_fwd.c
192   l2/l2_learn.c
193   l2/l2_output.c
194   l2/l2_patch.c
195   l2/l2_in_out_feat_arc.c
196   l2/l2_input_classify.c
197   l2/l2_input_node.c
198   l2/l2_output_classify.c
199   l2/l2_flood.c
200   l2/l2_uu_fwd.c
201   l2/l2_efp_filter.c
202   l2/l2_rw.c
203   l2/l2_xcrw.c
204   l2/l2_in_out_acl.c
205   l2/l2_input_vtr.c
206 )
207
208 list(APPEND VNET_HEADERS
209   l2/feat_bitmap.h
210   l2/l2_input.h
211   l2/l2_output.h
212   l2/l2_vtr.h
213   l2/l2_input_vtr.h
214   l2/l2_efp_filter.h
215   l2/l2_fwd.h
216   l2/l2_bd.h
217   l2/l2_bvi.h
218   l2/l2_flood.h
219   l2/l2_fib.h
220   l2/l2_rw.h
221   l2/l2_xcrw.h
222   l2/l2_classify.h
223 )
224
225 list(APPEND VNET_API_FILES l2/l2.api)
226
227 ##############################################################################
228 # Layer 2 protocol: SRP
229 ##############################################################################
230 list(APPEND VNET_SOURCES
231   srp/format.c
232   srp/interface.c
233   srp/node.c
234   srp/pg.c
235 )
236
237 list(APPEND VNET_HEADERS
238   srp/packet.h
239   srp/srp.h
240 )
241
242 ##############################################################################
243 # Layer 2 protocol: PPP
244 ##############################################################################
245 list(APPEND VNET_SOURCES
246   ppp/node.c
247   ppp/pg.c
248   ppp/ppp.c
249 )
250
251 list(APPEND VNET_HEADERS
252   ppp/error.def
253   ppp/ppp.h
254   ppp/packet.h
255 )
256
257 ##############################################################################
258 # Layer 2 protocol: HDLC
259 ##############################################################################
260 list(APPEND VNET_SOURCES
261   hdlc/node.c
262   hdlc/pg.c
263   hdlc/hdlc.c
264 )
265
266 list(APPEND VNET_HEADERS
267   hdlc/error.def
268   hdlc/hdlc.h
269   hdlc/packet.h
270 )
271
272 ##############################################################################
273 # Layer 2 protocol: LLC
274 ##############################################################################
275 list(APPEND VNET_SOURCES
276   llc/llc.c
277   llc/node.c
278   llc/pg.c
279 )
280
281 list(APPEND VNET_HEADERS
282   llc/llc.h
283 )
284
285 ##############################################################################
286 # Layer 2 protocol: SNAP
287 ##############################################################################
288 list(APPEND VNET_SOURCES
289   snap/snap.c
290   snap/node.c
291   snap/pg.c
292 )
293
294 list(APPEND VNET_HEADERS
295   snap/snap.h
296 )
297
298 ##############################################################################
299 # Layer 2 / vxlan
300 ##############################################################################
301 list(APPEND VNET_SOURCES
302   vxlan/vxlan.c
303   vxlan/encap.c
304   vxlan/decap.c
305   vxlan/vxlan_api.c
306 )
307
308 list(APPEND VNET_MULTIARCH_SOURCES
309   vxlan/encap.c
310 )
311
312 list(APPEND VNET_HEADERS
313   vxlan/vxlan.h
314   vxlan/vxlan_packet.h
315   vxlan/vxlan_error.def
316 )
317
318 list(APPEND VNET_MULTIARCH_SOURCES vxlan/decap.c)
319
320 list(APPEND VNET_API_FILES vxlan/vxlan.api)
321
322 ##############################################################################
323 # Layer 2 / Bonding
324 ##############################################################################
325 list(APPEND VNET_SOURCES
326   bonding/cli.c
327   bonding/node.c
328   bonding/device.c
329   bonding/bond_api.c
330 )
331
332 list(APPEND VNET_HEADERS
333   bonding/node.h
334 )
335
336 list(APPEND VNET_MULTIARCH_SOURCES bonding/node.c bonding/device.c)
337 list(APPEND VNET_API_FILES bonding/bond.api)
338
339 ##############################################################################
340 # Layer 2/3 "classify"
341 ##############################################################################
342 list(APPEND VNET_SOURCES
343   classify/vnet_classify.c
344   classify/trace_classify.h
345   classify/ip_classify.c
346   classify/in_out_acl.c
347   classify/policer_classify.c
348   classify/flow_classify.c
349   classify/flow_classify_node.c
350   classify/vnet_classify.h
351   classify/classify_api.c
352 )
353
354 list(APPEND VNET_MULTIARCH_SOURCES
355   classify/ip_classify.c
356   classify/flow_classify_node.c
357 )
358
359 list(APPEND VNET_HEADERS
360   classify/vnet_classify.h
361   classify/trace_classify.h
362   classify/in_out_acl.h
363   classify/policer_classify.h
364   classify/flow_classify.h
365 )
366
367 list(APPEND VNET_API_FILES classify/classify.api)
368
369 ##############################################################################
370 # Layer 3 protocols go here
371 ##############################################################################
372
373 ##############################################################################
374 # Layer 3 protocol: IP v4/v6
375 ##############################################################################
376 list(APPEND VNET_SOURCES
377   ip/format.c
378   ip/icmp4.c
379   ip/icmp6.c
380   ip/ip46_cli.c
381   ip/ip_types_api.c
382   ip/ip46_address.c
383   ip/ip4_format.c
384   ip/ip4_forward.c
385   ip/ip4_punt_drop.c
386   ip/ip4_input.c
387   ip/ip4_options.c
388   ip/ip4_mtrie.c
389   ip/ip4_pg.c
390   ip/ip4_source_and_port_range_check.c
391   ip/reass/ip4_full_reass.c
392   ip/reass/ip4_sv_reass.c
393   ip/ip6_format.c
394   ip/ip6_forward.c
395   ip/ip6_ll_table.c
396   ip/ip6_ll_types.c
397   ip/ip6_punt_drop.c
398   ip/ip6_hop_by_hop.c
399   ip/ip6_input.c
400   ip/ip6_link.c
401   ip/ip6_pg.c
402   ip/reass/ip6_full_reass.c
403   ip/reass/ip6_sv_reass.c
404   ip/ip_api.c
405   ip/ip_checksum.c
406   ip/ip_container_proxy.c
407   ip/ip_frag.c
408   ip/ip.c
409   ip/ip_interface.c
410   ip/ip_init.c
411   ip/ip_in_out_acl.c
412   ip/ip_path_mtu.c
413   ip/ip_path_mtu_node.c
414   ip/ip_punt_drop.c
415   ip/ip_types.c
416   ip/lookup.c
417   ip/punt_api.c
418   ip/punt.c
419   ip/punt_node.c
420   ip/vtep.c
421   ip/ip_sas.c
422 )
423
424 list(APPEND VNET_MULTIARCH_SOURCES
425   ip/ip4_punt_drop.c
426   ip/reass/ip4_full_reass.c
427   ip/ip6_hop_by_hop.c
428   ip/reass/ip6_full_reass.c
429   ip/reass/ip4_sv_reass.c
430   ip/ip6_hop_by_hop.c
431   ip/reass/ip6_full_reass.c
432   ip/reass/ip6_sv_reass.c
433   ip/ip6_input.c
434   ip/ip6_punt_drop.c
435   ip/punt_node.c
436   ip/ip_in_out_acl.c
437   ip/ip_path_mtu_node.c
438 )
439
440 list(APPEND VNET_HEADERS
441   ip/format.h
442   ip/icmp46_packet.h
443   ip/icmp4.h
444   ip/icmp6.h
445   ip/igmp_packet.h
446   ip/ip4_error.h
447   ip/ip4.h
448   ip/ip4_mtrie.h
449   ip/ip4_inlines.h
450   ip/ip4_packet.h
451   ip/ip46_address.h
452   ip/ip6_error.h
453   ip/ip6.h
454   ip/ip6_hop_by_hop.h
455   ip/ip6_hop_by_hop_packet.h
456   ip/ip6_inlines.h
457   ip/ip6_packet.h
458   ip/ip.h
459   ip/ip_container_proxy.h
460   ip/ip_flow_hash.h
461   ip/ip_table.h
462   ip/ip_interface.h
463   ip/ip_packet.h
464   ip/ip_psh_cksum.h
465   ip/ip_source_and_port_range_check.h
466   ip/ip_types.h
467   ip/lookup.h
468   ip/ports.def
469   ip/protocols.def
470   ip/punt_error.def
471   ip/punt.h
472 )
473
474 list(APPEND VNET_API_FILES
475   ip/ip.api
476   ip/punt.api
477 )
478
479 list(APPEND VNET_MULTIARCH_SOURCES
480   ip/ip4_forward.c
481   ip/ip6_forward.c
482   ip/ip4_input.c
483 )
484
485 ##############################################################################
486 # Layer 3 neighbours
487 ##############################################################################
488 list(APPEND VNET_SOURCES
489   ip-neighbor/ip_neighbor.c
490   ip-neighbor/ip_neighbor_api.c
491   ip-neighbor/ip_neighbor_dp.c
492   ip-neighbor/ip_neighbor_types.c
493   ip-neighbor/ip_neighbor_watch.c
494   ip-neighbor/ip4_neighbor.c
495   ip-neighbor/ip6_neighbor.c
496 )
497
498 list(APPEND VNET_HEADERS
499   ip-neighbor/ip_neighbor.h
500   ip-neighbor/ip_neighbor_types.h
501 )
502
503 list(APPEND VNET_API_FILES
504   ip-neighbor/ip_neighbor.api
505 )
506
507 ##############################################################################
508 # Bidirectional Forwarding Detection
509 ##############################################################################
510
511 list(APPEND VNET_HEADERS
512   bfd/bfd_protocol.h
513   bfd/bfd_main.h
514   bfd/bfd_api.h
515   bfd/bfd_udp.h
516 )
517
518 list(APPEND VNET_SOURCES
519   bfd/bfd_api.h
520   bfd/bfd_udp.c
521   bfd/bfd_main.c
522   bfd/bfd_protocol.c
523   bfd/bfd_cli.c
524   bfd/bfd_api.c
525 )
526
527 list(APPEND VNET_API_FILES bfd/bfd.api)
528
529 ##############################################################################
530 # Crypto
531 ##############################################################################
532
533 list(APPEND VNET_SOURCES
534   crypto/cli.c
535   crypto/crypto.c
536   crypto/format.c
537   crypto/node.c
538   crypto/crypto_api.c
539 )
540
541 list(APPEND VNET_HEADERS
542   crypto/crypto.h
543 )
544
545 list(APPEND VNET_MULTIARCH_SOURCES crypto/node.c)
546
547 list(APPEND VNET_API_FILES crypto/crypto.api)
548
549 ##############################################################################
550 # Layer 3 protocol: IPSec
551 ##############################################################################
552 list(APPEND VNET_SOURCES
553   ipsec/ipsec.c
554   ipsec/ipsec_cli.c
555   ipsec/ipsec_format.c
556   ipsec/ipsec_handoff.c
557   ipsec/ipsec_input.c
558   ipsec/ipsec_itf.c
559   ipsec/ipsec_punt.c
560   ipsec/ipsec_sa.c
561   ipsec/ipsec_spd.c
562   ipsec/ipsec_spd_policy.c
563   ipsec/ipsec_tun.c
564   ipsec/ipsec_tun_in.c
565   ipsec/esp_format.c
566   ipsec/esp_encrypt.c
567   ipsec/esp_decrypt.c
568   ipsec/ah_decrypt.c
569   ipsec/ah_encrypt.c
570   ipsec/ipsec_api.c
571   ipsec/ipsec_types_api.c
572 )
573
574 list(APPEND VNET_MULTIARCH_SOURCES
575   ipsec/esp_encrypt.c
576   ipsec/esp_decrypt.c
577   ipsec/ah_decrypt.c
578   ipsec/ah_encrypt.c
579   ipsec/ipsec_handoff.c
580   ipsec/ipsec_output.c
581   ipsec/ipsec_input.c
582   ipsec/ipsec_tun_in.c
583 )
584
585 list(APPEND VNET_API_FILES ipsec/ipsec_types.api)
586 list(APPEND VNET_API_FILES ipsec/ipsec.api)
587
588 list(APPEND VNET_SOURCES
589   ipsec/ipsec_output.c
590 )
591
592 list(APPEND VNET_HEADERS
593   ipsec/ipsec.h
594   ipsec/ipsec_spd.h
595   ipsec/ipsec_spd_policy.h
596   ipsec/ipsec_sa.h
597   ipsec/ipsec_tun.h
598   ipsec/ipsec_types_api.h
599   ipsec/ipsec_punt.h
600   ipsec/esp.h
601   ipsec/ah.h
602 )
603
604 ##############################################################################
605 # Layer 3 protocol: osi
606 ##############################################################################
607 list(APPEND VNET_SOURCES
608   osi/node.c
609   osi/osi.c
610   osi/pg.c
611 )
612
613 list(APPEND VNET_HEADERS
614   osi/osi.h
615 )
616
617 ##############################################################################
618 # Layer 4 protocol: tcp
619 ##############################################################################
620 list(APPEND VNET_SOURCES
621   tcp/tcp_api.c
622   tcp/tcp_format.c
623   tcp/tcp_pg.c
624   tcp/tcp_syn_filter4.c
625   tcp/tcp_output.c
626   tcp/tcp_input.c
627   tcp/tcp_newreno.c
628   tcp/tcp_bt.c
629   tcp/tcp_cli.c
630   tcp/tcp_cubic.c
631   tcp/tcp_debug.c
632   tcp/tcp_sack.c
633   tcp/tcp_timer.c
634   tcp/tcp.c
635 )
636
637 list(APPEND VNET_MULTIARCH_SOURCES
638   tcp/tcp_input.c
639   tcp/tcp_output.c
640   tcp/tcp_syn_filter4.c
641 )
642
643 list(APPEND VNET_HEADERS
644   tcp/tcp_packet.h
645   tcp/tcp_timer.h
646   tcp/tcp_bt.h
647   tcp/tcp_cc.h
648   tcp/tcp_debug.h
649   tcp/tcp_inlines.h
650   tcp/tcp_sack.h
651   tcp/tcp_types.h
652   tcp/tcp.h
653   tcp/tcp_error.def
654 )
655
656 list(APPEND VNET_API_FILES tcp/tcp.api)
657
658 ##############################################################################
659 # Layer 4 protocol: udp
660 ##############################################################################
661 list(APPEND VNET_SOURCES
662   udp/udp.c
663   udp/udp_cli.c
664   udp/udp_input.c
665   udp/udp_format.c
666   udp/udp_local.c
667   udp/udp_pg.c
668   udp/udp_encap_node.c
669   udp/udp_encap.c
670   udp/udp_decap.c
671   udp/udp_api.c
672 )
673
674 list(APPEND VNET_MULTIARCH_SOURCES
675   udp/udp_local.c
676   udp/udp_encap_node.c
677 )
678
679 list(APPEND VNET_HEADERS
680   udp/udp_error.def
681   udp/udp.h
682   udp/udp_packet.h
683   udp/udp_inlines.h
684   udp/udp_local.h
685 )
686
687 list(APPEND VNET_API_FILES udp/udp.api)
688
689 ##############################################################################
690 # Tunnel protocol: gre
691 ##############################################################################
692 list(APPEND VNET_SOURCES
693   gre/gre.c
694   gre/node.c
695   gre/interface.c
696   gre/pg.c
697   gre/gre_api.c
698 )
699
700 list(APPEND VNET_MULTIARCH_SOURCES
701   gre/node.c
702   gre/gre.c
703 )
704
705 list(APPEND VNET_HEADERS
706   gre/gre.h
707   gre/packet.h
708   gre/error.def
709 )
710
711 list(APPEND VNET_API_FILES gre/gre.api)
712
713 ##############################################################################
714 # Tunnel protocol: ipip
715 ##############################################################################
716 list(APPEND VNET_SOURCES
717   ipip/ipip.c
718   ipip/node.c
719   ipip/sixrd.c
720   ipip/ipip_api.c
721   ipip/ipip_cli.c
722 )
723
724 list(APPEND VNET_MULTIARCH_SOURCES
725   ipip/node.c
726 )
727
728 list(APPEND VNET_HEADERS
729   ipip/ipip.h
730 )
731
732 list(APPEND VNET_API_FILES
733   ipip/ipip.api
734 )
735
736 ##############################################################################
737 # Tunnel infra
738 ##############################################################################
739 list(APPEND VNET_SOURCES
740   tunnel/tunnel.c
741   tunnel/tunnel_types_api.c
742 )
743
744 list(APPEND VNET_API_FILES
745   tunnel/tunnel_types.api
746 )
747
748 list(APPEND VNET_HEADERS
749   tunnel/tunnel.h
750   tunnel/tunnel_dp.h
751 )
752
753 ##############################################################################
754 # Tunnel protocol: gre+mpls
755 ##############################################################################
756 list(APPEND VNET_SOURCES
757   mpls/mpls.c
758   mpls/mpls_lookup.c
759   mpls/mpls_output.c
760   mpls/mpls_features.c
761   mpls/mpls_input.c
762   mpls/interface.c
763   mpls/mpls_tunnel.c
764   mpls/pg.c
765   mpls/mpls_api.c
766 )
767
768 list(APPEND VNET_MULTIARCH_SOURCES
769   mpls/mpls_output.c
770   mpls/mpls_input.c
771   mpls/mpls_lookup.c
772   mpls/mpls_features.c
773 )
774
775 list(APPEND VNET_HEADERS
776   mpls/mpls.h
777   mpls/mpls_types.h
778   mpls/mpls_tunnel.h
779   mpls/packet.h
780   mpls/error.def
781 )
782
783 list(APPEND VNET_API_FILES mpls/mpls.api)
784
785 ##############################################################################
786 # Tunnel protocol: vxlan-gpe
787 ##############################################################################
788
789 list(APPEND VNET_SOURCES
790   vxlan-gpe/vxlan_gpe.c
791   vxlan-gpe/encap.c
792   vxlan-gpe/decap.c
793   vxlan-gpe/vxlan_gpe_api.c
794 )
795
796 list (APPEND VNET_MULTIARCH_SOURCES
797   vxlan-gpe/decap.c
798 )
799
800 list(APPEND VNET_HEADERS
801   vxlan-gpe/vxlan_gpe.h
802   vxlan-gpe/vxlan_gpe_packet.h
803   vxlan-gpe/vxlan_gpe_error.def
804 )
805
806 list(APPEND VNET_API_FILES vxlan-gpe/vxlan_gpe.api)
807
808 ##############################################################################
809 # ipv6 segment routing
810 ##############################################################################
811
812 list(APPEND VNET_SOURCES
813   srv6/sr.c
814   srv6/sr_localsid.c
815   srv6/sr_policy_rewrite.c
816   srv6/sr_steering.c
817   srv6/sr_api.c
818 )
819
820 list(APPEND VNET_HEADERS
821   srv6/sr_packet.h
822   srv6/sr.h
823 )
824
825 list(APPEND VNET_API_FILES
826   srv6/sr.api
827   srv6/sr_types.api
828 )
829
830 ##############################################################################
831 # mpls segment routing
832 ##############################################################################
833
834 list(APPEND VNET_SOURCES
835   srmpls/sr_mpls_policy.c
836   srmpls/sr_mpls_steering.c
837   srmpls/sr_mpls_api.c
838 )
839
840 list(APPEND VNET_HEADERS
841   srmpls/sr_mpls.h
842 )
843
844 list(APPEND VNET_API_FILES
845   srmpls/sr_mpls.api
846 )
847
848 ##############################################################################
849 # IPFIX / netflow v10
850 ##############################################################################
851 list(APPEND VNET_SOURCES
852   ipfix-export/flow_report.c
853   ipfix-export/flow_api.c
854 )
855
856 list(APPEND VNET_HEADERS
857   ipfix-export/flow_report.h
858   ipfix-export/ipfix_info_elements.h
859   ipfix-export/ipfix_packet.h
860 )
861
862 list(APPEND VNET_API_FILES ipfix-export/ipfix_export.api)
863
864 ##############################################################################
865 # HASH
866 ##############################################################################
867 list(APPEND VNET_SOURCES
868   hash/hash.c
869   hash/cli.c
870   hash/crc32_5tuple.c
871   hash/handoff_eth.c
872   hash/hash_eth.c
873 )
874
875 list(APPEND VNET_HEADERS
876   hash/hash.h
877 )
878
879 ##############################################################################
880 # GSO
881 ##############################################################################
882 list(APPEND VNET_SOURCES
883   gso/cli.c
884   gso/gso.c
885   gso/gso_api.c
886   gso/node.c
887 )
888
889 list(APPEND VNET_HEADERS
890   gso/gro.h
891   gso/gro_func.h
892   gso/hdr_offset_parser.h
893   gso/gso.h
894 )
895
896 list(APPEND VNET_API_FILES
897   gso/gso.api
898 )
899
900 ##############################################################################
901 # IPFIX classify code
902 ##############################################################################
903
904 list(APPEND VNET_SOURCES
905   ipfix-export/flow_report_classify.c
906 )
907
908 list(APPEND VNET_HEADERS
909   ipfix-export/flow_report_classify.h
910 )
911
912 ##############################################################################
913 # lawful intercept
914 ##############################################################################
915
916 list(APPEND VNET_SOURCES
917   lawful-intercept/lawful_intercept.c
918   lawful-intercept/node.c
919 )
920
921 list(APPEND VNET_MULTIARCH_SOURCES
922   lawful-intercept/node.c
923 )
924
925 list(APPEND VNET_HEADERS
926   lawful-intercept/lawful_intercept.h
927 )
928
929 ##############################################################################
930 # SPAN (port mirroring)
931 ##############################################################################
932
933 list(APPEND VNET_SOURCES
934   span/span_api.c
935   span/span.c
936   span/node.c
937 )
938
939 list(APPEND VNET_MULTIARCH_SOURCES
940   span/node.c
941 )
942
943 list(APPEND VNET_HEADERS
944   span/span.h
945 )
946
947 list(APPEND VNET_API_FILES span/span.api)
948
949 ##############################################################################
950 # Packet generator
951 ##############################################################################
952
953 list(APPEND VNET_SOURCES
954   pg/cli.c
955   pg/edit.c
956   pg/init.c
957   pg/input.c
958   pg/output.c
959   pg/stream.c
960   pg/pg_api.c
961 )
962
963 list(APPEND VNET_HEADERS
964   pg/pg.h
965   pg/edit.h
966 )
967
968 list(APPEND VNET_API_FILES pg/pg.api)
969
970 ##############################################################################
971 # virtio
972 ##############################################################################
973
974 list(APPEND VNET_SOURCES
975   devices/virtio/cli.c
976   devices/virtio/device.c
977   devices/virtio/format.c
978   devices/virtio/node.c
979   devices/virtio/pci.c
980   devices/virtio/vhost_user.c
981   devices/virtio/vhost_user_input.c
982   devices/virtio/vhost_user_output.c
983   devices/virtio/vhost_user_api.c
984   devices/virtio/virtio.c
985   devices/virtio/virtio_api.c
986   devices/virtio/virtio_pci_legacy.c
987   devices/virtio/virtio_pci_modern.c
988   devices/virtio/virtio_pre_input.c
989   devices/virtio/virtio_types_api.c
990 )
991
992 list(APPEND VNET_HEADERS
993   devices/virtio/pci.h
994   devices/virtio/virtio.h
995   devices/virtio/virtio_buffering.h
996   devices/virtio/virtio_std.h
997   devices/virtio/virtio_pci_legacy.h
998   devices/virtio/virtio_pci_modern.h
999   devices/virtio/vhost_std.h
1000   devices/virtio/vhost_user.h
1001   devices/virtio/virtio_types_api.h
1002 )
1003
1004 list(APPEND VNET_MULTIARCH_SOURCES
1005   devices/virtio/vhost_user_input.c
1006   devices/virtio/vhost_user_output.c
1007   devices/virtio/node.c
1008   devices/af_packet/node.c
1009   devices/virtio/device.c
1010 )
1011
1012 list(APPEND VNET_API_FILES
1013   devices/virtio/vhost_user.api
1014   devices/virtio/virtio.api
1015   devices/virtio/virtio_types.api
1016 )
1017
1018 ##############################################################################
1019 # tap interface (with virtio backend)
1020 ##############################################################################
1021
1022 list(APPEND VNET_SOURCES
1023   devices/tap/cli.c
1024   devices/tap/tap.c
1025   devices/tap/tapv2_api.c
1026 )
1027
1028 list(APPEND VNET_HEADERS
1029   devices/tap/tap.h
1030 )
1031
1032 list(APPEND VNET_API_FILES
1033   devices/tap/tapv2.api
1034 )
1035
1036 ##############################################################################
1037 # tap interface (with virtio backend)
1038 ##############################################################################
1039
1040 list(APPEND VNET_SOURCES
1041   devices/pipe/pipe_api.c
1042   devices/pipe/pipe.c
1043 )
1044
1045 list(APPEND VNET_HEADERS
1046   devices/pipe/pipe.h
1047 )
1048
1049 list(APPEND VNET_API_FILES devices/pipe/pipe.api)
1050
1051 ##############################################################################
1052 # session managmeent
1053 ##############################################################################
1054
1055 list(APPEND VNET_SOURCES
1056   session/session.c
1057   session/session_debug.c
1058   session/session_table.c
1059   session/session_rules_table.c
1060   session/session_lookup.c
1061   session/session_node.c
1062   session/transport.c
1063   session/application.c
1064   session/application_worker.c
1065   session/session_cli.c
1066   session/application_interface.c
1067   session/application_local.c
1068   session/application_namespace.c
1069   session/segment_manager.c
1070   session/session_api.c
1071 )
1072
1073 list(APPEND VNET_HEADERS
1074   session/session.h
1075   session/session_table.h
1076   session/session_rules_table.h
1077   session/session_types.h
1078   session/session_lookup.h
1079   session/application.h
1080   session/transport.h
1081   session/transport_types.h
1082   session/application_interface.h
1083   session/application_local.h
1084   session/application_namespace.h
1085   session/session_debug.h
1086   session/segment_manager.h
1087   session/mma_template.h
1088   session/mma_template.c
1089   session/mma_16.h
1090   session/mma_40.h
1091 )
1092
1093 list(APPEND VNET_API_FILES session/session.api)
1094
1095 ##############################################################################
1096 # TLS protocol
1097 ##############################################################################
1098
1099 list(APPEND VNET_SOURCES
1100   tls/tls.c
1101 )
1102
1103 list(APPEND VNET_HEADERS
1104   tls/tls.h
1105   tls/tls_test.h
1106 )
1107
1108 ##############################################################################
1109 # Linux packet interface
1110 ##############################################################################
1111
1112 list(APPEND VNET_SOURCES
1113   devices/af_packet/af_packet.c
1114   devices/af_packet/device.c
1115   devices/af_packet/node.c
1116   devices/af_packet/cli.c
1117   devices/af_packet/af_packet_api.c
1118 )
1119
1120 list(APPEND VNET_MULTIARCH_SOURCES
1121   devices/af_packet/device.c
1122 )
1123
1124 list(APPEND VNET_HEADERS
1125   devices/af_packet/af_packet.h
1126 )
1127
1128 list(APPEND VNET_API_FILES devices/af_packet/af_packet.api)
1129
1130 ##############################################################################
1131 # Driver feature graph arc support
1132 ##############################################################################
1133
1134 list(APPEND VNET_SOURCES
1135   feature/feature.c
1136   feature/feature_api.c
1137   feature/registration.c
1138 )
1139
1140 list(APPEND VNET_HEADERS
1141   feature/feature.h
1142 )
1143
1144 list(APPEND VNET_API_FILES feature/feature.api)
1145
1146 ##############################################################################
1147 # Unix kernel related
1148 ##############################################################################
1149
1150 # FIXME: unix/hgshm.c
1151
1152 list(APPEND VNET_SOURCES
1153   unix/gdb_funcs.c
1154   unix/tuntap.c
1155 )
1156
1157 list(APPEND VNET_HEADERS
1158   unix/tuntap.h
1159 )
1160
1161 ##############################################################################
1162 # FIB
1163 ##############################################################################
1164
1165 list(APPEND VNET_SOURCES
1166   fib/fib.c
1167   fib/ip4_fib_hash.c
1168   fib/ip4_fib.c
1169   fib/ip4_fib_16.c
1170   fib/ip4_fib_8.c
1171   fib/ip6_fib.c
1172   fib/mpls_fib.c
1173   fib/fib_table.c
1174   fib/fib_walk.c
1175   fib/fib_types.c
1176   fib/fib_node.c
1177   fib/fib_node_list.c
1178   fib/fib_entry.c
1179   fib/fib_entry_src.c
1180   fib/fib_entry_src_adj.c
1181   fib/fib_entry_src_api.c
1182   fib/fib_entry_src_drop.c
1183   fib/fib_entry_src_interface.c
1184   fib/fib_entry_src_interpose.c
1185   fib/fib_entry_src_lisp.c
1186   fib/fib_entry_src_mpls.c
1187   fib/fib_entry_src_simple.c
1188   fib/fib_entry_src_rr.c
1189   fib/fib_entry_cover.c
1190   fib/fib_entry_delegate.c
1191   fib/fib_entry_track.c
1192   fib/fib_path_list.c
1193   fib/fib_path.c
1194   fib/fib_path_ext.c
1195   fib/fib_sas.c
1196   fib/fib_source.c
1197   fib/fib_urpf_list.c
1198   fib/fib_attached_export.c
1199   fib/fib_api.c
1200   fib/fib_bfd.c
1201 )
1202
1203 list(APPEND VNET_HEADERS
1204   fib/fib.h
1205   fib/fib_api.h
1206   fib/ip4_fib.h
1207   fib/ip4_fib_8.h
1208   fib/ip4_fib_16.h
1209   fib/ip4_fib_hash.h
1210   fib/ip6_fib.h
1211   fib/fib_types.h
1212   fib/fib_table.h
1213   fib/fib_node.h
1214   fib/fib_node_list.h
1215   fib/fib_entry.h
1216   fib/fib_entry_delegate.h
1217   fib/fib_sas.h
1218   fib/fib_source.h
1219 )
1220
1221 list(APPEND VNET_API_FILES
1222   fib/fib_types.api
1223   fib/fib.api
1224 )
1225
1226 ##############################################################################
1227 # ADJ
1228 ##############################################################################
1229
1230 list(APPEND VNET_SOURCES
1231   adj/adj_nbr.c
1232   adj/adj_glean.c
1233   adj/adj_midchain.c
1234   adj/adj_midchain_node.c
1235   adj/adj_midchain_delegate.c
1236   adj/adj_mcast.c
1237   adj/adj_l2.c
1238   adj/adj_nsh.c
1239   adj/adj.c
1240   adj/rewrite.c
1241   adj/adj_bfd.c
1242   adj/adj_delegate.c
1243 )
1244
1245 list(APPEND VNET_MULTIARCH_SOURCES
1246   adj/adj_nsh.c
1247   adj/adj_l2.c
1248   adj/adj_midchain_node.c
1249 )
1250
1251 list(APPEND VNET_HEADERS
1252   adj/adj.h
1253   adj/adj_types.h
1254   adj/adj_glean.h
1255   adj/adj_nsh.h
1256   adj/adj_nbr.h
1257   adj/adj_midchain.h
1258   adj/rewrite.h
1259 )
1260
1261 ##############################################################################
1262 # Data-Plane Objects
1263 ##############################################################################
1264
1265 list(APPEND VNET_SOURCES
1266   dpo/dpo.c
1267   dpo/drop_dpo.c
1268   dpo/ip_null_dpo.c
1269   dpo/ip6_ll_dpo.c
1270   dpo/punt_dpo.c
1271   dpo/receive_dpo.c
1272   dpo/load_balance.c
1273   dpo/load_balance_map.c
1274   dpo/lookup_dpo.c
1275   dpo/classify_dpo.c
1276   dpo/replicate_dpo.c
1277   dpo/interface_rx_dpo.c
1278   dpo/interface_tx_dpo.c
1279   dpo/mpls_disposition.c
1280   dpo/mpls_label_dpo.c
1281   dpo/l3_proxy_dpo.c
1282   dpo/dvr_dpo.c
1283   dpo/pw_cw.c
1284 )
1285
1286 list(APPEND VNET_MULTIARCH_SOURCES
1287   dpo/lookup_dpo.h
1288   dpo/mpls_disposition.c
1289   dpo/dvr_dpo.c
1290   dpo/mpls_label_dpo.c
1291   dpo/interface_rx_dpo.c
1292 )
1293
1294 list(APPEND VNET_HEADERS
1295   dpo/load_balance.h
1296   dpo/load_balance_map.h
1297   dpo/drop_dpo.h
1298   dpo/lookup_dpo.h
1299   dpo/punt_dpo.h
1300   dpo/classify_dpo.h
1301   dpo/receive_dpo.h
1302   dpo/ip_null_dpo.h
1303   dpo/replicate_dpo.h
1304   dpo/dpo.h
1305 )
1306
1307 ##############################################################################
1308 # Multicast FIB
1309 ##############################################################################
1310
1311 list(APPEND VNET_SOURCES
1312   mfib/mfib_forward.c
1313   mfib/ip4_mfib.c
1314   mfib/ip6_mfib.c
1315   mfib/mfib_api.c
1316   mfib/mfib_types.c
1317   mfib/mfib_signal.c
1318   mfib/mfib_itf.c
1319   mfib/mfib_entry.c
1320   mfib/mfib_entry.c
1321   mfib/mfib_entry_cover.c
1322   mfib/mfib_entry_delegate.c
1323   mfib/mfib_entry_src.c
1324   mfib/mfib_entry_src_rr.c
1325   mfib/mfib_table.c
1326 )
1327
1328 list(APPEND VNET_MULTIARCH_SOURCES
1329   mfib/mfib_forward.c
1330 )
1331
1332 list(APPEND VNET_HEADERS
1333   mfib/ip4_mfib.h
1334   mfib/mfib_types.h
1335   mfib/mfib_table.h
1336 )
1337
1338 list(APPEND VNET_API_FILES mfib/mfib_types.api)
1339
1340 ##############################################################################
1341 # Utilities
1342 ##############################################################################
1343
1344 list(APPEND VNET_SOURCES
1345   util/radix.c
1346   util/refcount.c
1347   util/throttle.c
1348 )
1349
1350 list(APPEND VNET_HEADERS
1351   util/throttle.h
1352 )
1353
1354 ##############################################################################
1355 # QoS
1356 ##############################################################################
1357
1358 list(APPEND VNET_SOURCES
1359   qos/qos_types.c
1360   qos/qos_api.c
1361   qos/qos_egress_map.c
1362   qos/qos_record.c
1363   qos/qos_record_node.c
1364   qos/qos_store.c
1365   qos/qos_store_node.c
1366   qos/qos_mark.c
1367   qos/qos_mark_node.c
1368 )
1369
1370 list(APPEND VNET_MULTIARCH_SOURCES
1371   qos/qos_record_node.c
1372   qos/qos_mark_node.c
1373 )
1374
1375 list(APPEND VNET_API_FILES qos/qos.api)
1376
1377 ##############################################################################
1378 # BIER
1379 ##############################################################################
1380
1381 list(APPEND VNET_SOURCES
1382   bier/bier_bit_string.c
1383   bier/bier_entry.c
1384   bier/bier_fmask.c
1385   bier/bier_fmask_db.c
1386   bier/bier_input.c
1387   bier/bier_lookup.c
1388   bier/bier_output.c
1389   bier/bier_table.c
1390   bier/bier_types.c
1391   bier/bier_api.c
1392   bier/bier_drop.c
1393   bier/bier_update.c
1394   bier/bier_imp_node.c
1395   bier/bier_imp.c
1396   bier/bier_disp_entry.c
1397   bier/bier_disp_lookup_node.c
1398   bier/bier_disp_dispatch_node.c
1399   bier/bier_disp_table.c
1400   bier/bier_bift_table.c
1401 )
1402
1403 list(APPEND VNET_MULTIARCH_SOURCES
1404   bier/bier_disp_dispatch_node.c
1405   bier/bier_disp_lookup_node.c
1406   bier/bier_imp_node.c
1407 )
1408
1409 list(APPEND VNET_HEADERS
1410   bier/bier_types.h
1411   bier/bier_entry.h
1412   bier/bier_update.h
1413   bier/bier_table.h
1414 )
1415
1416 list(APPEND VNET_API_FILES bier/bier.api)
1417
1418 ##############################################################################
1419 # SYSLOG
1420 ##############################################################################
1421
1422 list (APPEND VNET_SOURCES
1423   syslog/syslog_api.c
1424   syslog/syslog_udp.c
1425   syslog/syslog.c
1426 )
1427
1428 list(APPEND VNET_HEADERS
1429   syslog/syslog_udp.h
1430   syslog/syslog.h
1431 )
1432
1433 list(APPEND VNET_API_FILES syslog/syslog.api)
1434
1435 ##############################################################################
1436 # Tunnel Endpoint Information Base
1437 ##############################################################################
1438
1439 list (APPEND VNET_SOURCES
1440   teib/teib_api.c
1441   teib/teib_cli.c
1442   teib/teib.c
1443 )
1444
1445 list(APPEND VNET_HEADERS
1446   teib/teib.h
1447 )
1448
1449 list(APPEND VNET_API_FILES teib/teib.api)
1450
1451 ##############################################################################
1452 # ARP/ND
1453 ##############################################################################
1454
1455 list (APPEND VNET_SOURCES
1456   arp/arp_api.c
1457   arp/arp.c
1458   arp/arp_proxy.c
1459 )
1460
1461 list(APPEND VNET_HEADERS
1462   arp/arp.h
1463 )
1464
1465 list(APPEND VNET_API_FILES arp/arp.api)
1466
1467 list (APPEND VNET_SOURCES
1468   ip6-nd/ip6_mld.c
1469   ip6-nd/ip6_nd.c
1470   ip6-nd/ip6_nd_api.c
1471   ip6-nd/ip6_nd_proxy.c
1472   ip6-nd/ip6_nd_mirror_proxy.c
1473   ip6-nd/ip6_ra.c
1474   ip6-nd/rd_cp.c
1475   ip6-nd/rd_cp_api.c
1476 )
1477
1478 list(APPEND VNET_HEADERS
1479   ip6-nd/ip6_nd.h
1480 )
1481
1482 list(APPEND VNET_API_FILES
1483   ip6-nd/ip6_nd.api
1484   ip6-nd/rd_cp.api
1485 )
1486
1487 ##############################################################################
1488 # VNET Library
1489 ##############################################################################
1490
1491 add_vpp_library(vnet
1492   SOURCES ${VNET_SOURCES}
1493   MULTIARCH_SOURCES ${VNET_MULTIARCH_SOURCES}
1494   INSTALL_HEADERS ${VNET_HEADERS}
1495   API_FILES ${VNET_API_FILES}
1496   LINK_LIBRARIES vppinfra svm vlib
1497   DEPENDS vpp_version_h api_headers
1498 )
1499
1500 ##############################################################################
1501 # vpp api test client library
1502 ##############################################################################
1503
1504 add_vpp_library (vatclient
1505   SOURCES ip/ip_types_api.c
1506   DEPENDS api_headers
1507 )
1508
1509 add_vat_test_library(vnet
1510   interface_test.c
1511   ip/ip_test.c
1512   arp/arp_test.c
1513   ip6-nd/ip6_nd_test.c
1514   srmpls/sr_mpls_test.c
1515   session/session_test.c
1516   l2/l2_test.c
1517   ipsec/ipsec_test.c
1518 )
1519
1520 ##############################################################################
1521 # VAT2 plugins
1522 ##############################################################################
1523 add_vpp_test_library(vnet
1524   ${VNET_API_FILES}
1525 )
1526
1527 ##############################################################################