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