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