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