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