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