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