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