blob: 21780e2beb40dfa50e74e4e71ec82091dd1df796 [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
Filip Tehlar62668772019-03-04 03:33:32 -080042list(APPEND VNET_MULTIARCH_SOURCES
43 interface_output.c
44 interface_stats.c
Filip Tehlarc3a0e8d2019-03-11 05:53:35 -070045 handoff.c
Filip Tehlar62668772019-03-04 03:33:32 -080046)
47
Damjan Marion4553c952018-08-26 11:04:40 +020048list(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
Benoît Ganne09267f72019-05-17 14:24:17 +020061 ip/ip_types_api.h
Damjan Marion4553c952018-08-26 11:04:40 +020062 l3_types.h
63 plugin/plugin.h
64 pipeline.h
Damjan Marion4553c952018-08-26 11:04:40 +020065 vnet.h
66 vnet_all_api_h.h
67 vnet_msg_enum.h
68 util/radix.h
69 util/refcount.h
IJsbrand Wijnands724c8052020-03-05 11:29:23 -080070 format_fns.h
71 ip/ip_format_fns.h
72 ethernet/ethernet_format_fns.h
Damjan Marion4553c952018-08-26 11:04:40 +020073)
74
Benoît Ganne09267f72019-05-17 14:24:17 +020075list(APPEND VNET_API_FILES
76 interface.api
Benoît Ganned39495d2019-07-25 14:14:03 +020077 interface_types.api
Benoît Ganne09267f72019-05-17 14:24:17 +020078 ip/ip_types.api
79)
Damjan Marion4553c952018-08-26 11:04:40 +020080
81##############################################################################
82# Policer infra
83##############################################################################
84list(APPEND VNET_SOURCES
85 policer/node_funcs.c
86 policer/policer.c
87 policer/xlate.c
88 policer/policer_api.c
89)
90
Filip Tehlar30d93482019-03-06 04:28:32 -080091list(APPEND VNET_MULTIARCH_SOURCES
92 policer/node_funcs.c
93)
94
Damjan Marion4553c952018-08-26 11:04:40 +020095list(APPEND VNET_HEADERS
96 policer/police.h
97 policer/policer.h
98 policer/xlate.h
99)
100
Jakub Grajciarcd01fb42020-03-02 13:16:53 +0100101list(APPEND VNET_API_FILES
102 policer/policer.api
103 policer/policer_types.api
104)
Damjan Marion4553c952018-08-26 11:04:40 +0200105
106##############################################################################
107# Cop - junk filter
108##############################################################################
109list(APPEND VNET_SOURCES
110 cop/cop.c
111 cop/node1.c
112 cop/ip4_whitelist.c
113 cop/ip6_whitelist.c
114 cop/cop_api.c
115)
116
Filip Tehlar1fc33b32019-03-05 01:22:04 -0800117list(APPEND VNET_MULTIARCH_SOURCES
118 cop/node1.c
119 cop/ip4_whitelist.c
120 cop/ip6_whitelist.c
121)
122
Damjan Marion4553c952018-08-26 11:04:40 +0200123list(APPEND VNET_HEADERS
124 cop/cop.h
125)
126
127list(APPEND VNET_API_FILES cop/cop.api)
128
129##############################################################################
130# Layer 2 protocols go here
131##############################################################################
132
133##############################################################################
134# Layer 2 protocol: Ethernet
135##############################################################################
136list(APPEND VNET_SOURCES
Neale Rannscbe25aa2019-09-30 10:53:31 +0000137 ethernet/arp_packet.c
Neale Rannsde5b08f2018-08-29 06:37:18 -0700138 ethernet/ethernet_types_api.c
Damjan Marion4553c952018-08-26 11:04:40 +0200139 ethernet/format.c
140 ethernet/init.c
141 ethernet/interface.c
Neale Rannsde5b08f2018-08-29 06:37:18 -0700142 ethernet/mac_address.c
Damjan Marion4553c952018-08-26 11:04:40 +0200143 ethernet/node.c
144 ethernet/pg.c
145 ethernet/sfp.c
146 ethernet/p2p_ethernet.c
147 ethernet/p2p_ethernet_input.c
148 ethernet/p2p_ethernet_api.c
149)
150
Filip Tehlarc3a0e8d2019-03-11 05:53:35 -0700151list(APPEND VNET_MULTIARCH_SOURCES
152 ethernet/node.c
153 ethernet/p2p_ethernet_input.c
154)
Damjan Marion4553c952018-08-26 11:04:40 +0200155
156list(APPEND VNET_HEADERS
157 ethernet/error.def
158 ethernet/ethernet.h
Jon Loeliger330bf932018-11-28 13:51:42 -0600159 ethernet/mac_address.h
Damjan Marion4553c952018-08-26 11:04:40 +0200160 ethernet/packet.h
161 ethernet/types.def
162 ethernet/sfp.h
163 ethernet/p2p_ethernet.h
Neale Rannscbe25aa2019-09-30 10:53:31 +0000164 ethernet/arp_packet.h
Damjan Marion4553c952018-08-26 11:04:40 +0200165)
166
Benoît Ganned39495d2019-07-25 14:14:03 +0200167list(APPEND VNET_API_FILES
168 ethernet/p2p_ethernet.api
169 ethernet/ethernet_types.api)
Damjan Marion4553c952018-08-26 11:04:40 +0200170
171##############################################################################
172# Layer 2 protocol: Ethernet bridging
173##############################################################################
174list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +0200175 l2/feat_bitmap.c
176 l2/l2_api.c
Neale Rannscbe25aa2019-09-30 10:53:31 +0000177 l2/l2_arp_term.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200178 l2/l2_bd.c
179 l2/l2_bvi.c
Neale Ranns192b13f2019-03-15 02:16:20 -0700180 l2/l2_bvi_node.c
Damjan Marion4553c952018-08-26 11:04:40 +0200181 l2/l2_input_classify.c
182 l2/l2_output_classify.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200183 l2/l2_efp_filter.c
184 l2/l2_fib.c
185 l2/l2_flood.c
186 l2/l2_fwd.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200187 l2/l2_input.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200188 l2/l2_input_vtr.c
189 l2/l2_learn.c
190 l2/l2_output.c
Damjan Marion4553c952018-08-26 11:04:40 +0200191 l2/l2_in_out_acl.c
Andrew Yourtchenkoa23cade2018-10-06 09:18:00 +0200192 l2/l2_in_out_feat_arc.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200193 l2/l2_patch.c
194 l2/l2_rw.c
Neale Rannsb4743802018-09-05 09:13:57 -0700195 l2/l2_uu_fwd.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200196 l2/l2_vtr.c
197 l2/l2_xcrw.c
Damjan Marion4553c952018-08-26 11:04:40 +0200198)
199
Neale Rannsc25eb452018-09-12 06:53:03 -0400200list(APPEND VNET_MULTIARCH_SOURCES
Neale Ranns192b13f2019-03-15 02:16:20 -0700201 l2/l2_bvi_node.c
Neale Rannsc25eb452018-09-12 06:53:03 -0400202 l2/l2_fwd.c
203 l2/l2_learn.c
204 l2/l2_output.c
Damjan Marionc3baf622018-11-06 13:33:27 +0100205 l2/l2_patch.c
Filip Tehlar44f0f712019-03-11 04:26:37 -0700206 l2/l2_in_out_feat_arc.c
207 l2/l2_input_classify.c
208 l2/l2_input.c
209 l2/l2_output_classify.c
210 l2/l2_flood.c
211 l2/l2_uu_fwd.c
212 l2/l2_efp_filter.c
213 l2/l2_rw.c
214 l2/l2_xcrw.c
215 l2/l2_in_out_acl.c
216 l2/l2_input_vtr.c
Neale Rannsc25eb452018-09-12 06:53:03 -0400217)
Neale Rannseb1525f2018-09-09 04:41:02 -0400218
Damjan Marion4553c952018-08-26 11:04:40 +0200219list(APPEND VNET_HEADERS
220 l2/feat_bitmap.h
221 l2/l2_input.h
222 l2/l2_output.h
223 l2/l2_vtr.h
224 l2/l2_input_vtr.h
225 l2/l2_efp_filter.h
226 l2/l2_fwd.h
227 l2/l2_bd.h
228 l2/l2_bvi.h
229 l2/l2_flood.h
230 l2/l2_fib.h
231 l2/l2_rw.h
232 l2/l2_xcrw.h
233 l2/l2_classify.h
234)
235
236list(APPEND VNET_API_FILES l2/l2.api)
237
238##############################################################################
239# Layer 2 protocol: SRP
240##############################################################################
241list(APPEND VNET_SOURCES
242 srp/format.c
243 srp/interface.c
244 srp/node.c
245 srp/pg.c
246)
247
248list(APPEND VNET_HEADERS
249 srp/packet.h
250 srp/srp.h
251)
252
253##############################################################################
254# Layer 2 protocol: PPP
255##############################################################################
256list(APPEND VNET_SOURCES
257 ppp/node.c
258 ppp/pg.c
259 ppp/ppp.c
260)
261
262list(APPEND VNET_HEADERS
263 ppp/error.def
264 ppp/ppp.h
265 ppp/packet.h
266)
267
268##############################################################################
269# Layer 2 protocol: HDLC
270##############################################################################
271list(APPEND VNET_SOURCES
272 hdlc/node.c
273 hdlc/pg.c
274 hdlc/hdlc.c
275)
276
277list(APPEND VNET_HEADERS
278 hdlc/error.def
279 hdlc/hdlc.h
280 hdlc/packet.h
281)
282
283##############################################################################
284# Layer 2 protocol: LLC
285##############################################################################
286list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +0200287 llc/llc.c
288 llc/node.c
289 llc/pg.c
Damjan Marion4553c952018-08-26 11:04:40 +0200290)
291
292list(APPEND VNET_HEADERS
293 llc/llc.h
294)
295
296##############################################################################
297# Layer 2 protocol: SNAP
298##############################################################################
299list(APPEND VNET_SOURCES
300 snap/snap.c
301 snap/node.c
302 snap/pg.c
303)
304
305list(APPEND VNET_HEADERS
306 snap/snap.h
307)
308
309##############################################################################
310# Layer 2 / vxlan
311##############################################################################
312list(APPEND VNET_SOURCES
313 vxlan/vxlan.c
314 vxlan/encap.c
315 vxlan/decap.c
316 vxlan/vxlan_api.c
317)
318
Filip Tehlare1714d32019-03-05 03:01:43 -0800319list(APPEND VNET_MULTIARCH_SOURCES
320 vxlan/encap.c
321)
322
Damjan Marion4553c952018-08-26 11:04:40 +0200323list(APPEND VNET_HEADERS
324 vxlan/vxlan.h
325 vxlan/vxlan_packet.h
326 vxlan/vxlan_error.def
327)
328
Eyal Baria5679e82018-08-26 15:20:07 +0300329list(APPEND VNET_MULTIARCH_SOURCES vxlan/decap.c)
330
Damjan Marion4553c952018-08-26 11:04:40 +0200331list(APPEND VNET_API_FILES vxlan/vxlan.api)
332
333##############################################################################
334# Layer 2 / Geneve
335##############################################################################
336list(APPEND VNET_SOURCES
337 geneve/geneve.c
338 geneve/encap.c
339 geneve/decap.c
340 geneve/geneve_api.c
341)
342
Filip Tehlar55333d72019-03-05 00:36:04 -0800343list(APPEND VNET_MULTIARCH_SOURCES
344 geneve/encap.c
345 geneve/decap.c
346)
347
Damjan Marion4553c952018-08-26 11:04:40 +0200348list(APPEND VNET_HEADERS
349 geneve/geneve.h
350 geneve/geneve_packet.h
351 geneve/geneve_error.def
352)
353
354list(APPEND VNET_API_FILES geneve/geneve.api)
355
356##############################################################################
357# Layer 2 / Bonding
358##############################################################################
359list(APPEND VNET_SOURCES
360 bonding/cli.c
361 bonding/node.c
362 bonding/device.c
363 bonding/bond_api.c
364)
365
366list(APPEND VNET_HEADERS
367 bonding/node.h
368)
369
Damjan Marioncefe1342018-09-21 18:11:33 +0200370list(APPEND VNET_MULTIARCH_SOURCES bonding/node.c bonding/device.c)
Damjan Marion4553c952018-08-26 11:04:40 +0200371list(APPEND VNET_API_FILES bonding/bond.api)
372
373##############################################################################
374# Layer 2 / LLDP
375##############################################################################
376list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +0200377 lldp/lldp_input.c
378 lldp/lldp_node.c
379 lldp/lldp_output.c
Damjan Marion4553c952018-08-26 11:04:40 +0200380 lldp/lldp_cli.c
381 lldp/lldp_api.c
382)
383
384list(APPEND VNET_HEADERS
385 lldp/lldp_protocol.h
386 lldp/lldp.h
387)
388
389list(APPEND VNET_API_FILES lldp/lldp.api)
390
391##############################################################################
392# Layer 2/3 "classify"
393##############################################################################
394list(APPEND VNET_SOURCES
395 classify/vnet_classify.c
Dave Barach9137e542019-09-13 17:47:50 -0400396 classify/trace_classify.h
Damjan Marion4553c952018-08-26 11:04:40 +0200397 classify/ip_classify.c
398 classify/in_out_acl.c
399 classify/policer_classify.c
400 classify/flow_classify.c
401 classify/flow_classify_node.c
402 classify/vnet_classify.h
403 classify/classify_api.c
404)
405
Filip Tehlare8cb5212019-03-06 04:50:34 -0800406list(APPEND VNET_MULTIARCH_SOURCES
407 classify/ip_classify.c
408 classify/flow_classify_node.c
409)
410
Damjan Marion4553c952018-08-26 11:04:40 +0200411list(APPEND VNET_HEADERS
412 classify/vnet_classify.h
Dave Barach9137e542019-09-13 17:47:50 -0400413 classify/trace_classify.h
Damjan Marion4553c952018-08-26 11:04:40 +0200414 classify/in_out_acl.h
415 classify/policer_classify.h
416 classify/flow_classify.h
417)
418
419list(APPEND VNET_API_FILES classify/classify.api)
420
421##############################################################################
422# Layer 3 protocols go here
423##############################################################################
424
425##############################################################################
426# Layer 3 protocol: IP v4/v6
427##############################################################################
428list(APPEND VNET_SOURCES
429 ip/format.c
430 ip/icmp4.c
431 ip/icmp6.c
432 ip/ip46_cli.c
433 ip/ip_types_api.c
Neale Rannscbe25aa2019-09-30 10:53:31 +0000434 ip/ip46_address.c
Damjan Marion4553c952018-08-26 11:04:40 +0200435 ip/ip4_format.c
436 ip/ip4_forward.c
437 ip/ip4_punt_drop.c
438 ip/ip4_input.c
439 ip/ip4_options.c
440 ip/ip4_mtrie.c
441 ip/ip4_pg.c
442 ip/ip4_source_and_port_range_check.c
443 ip/ip4_source_check.c
Klement Sekera896c8962019-06-24 11:52:49 +0000444 ip/reass/ip4_full_reass.c
Klement Sekerade34c352019-06-25 11:19:22 +0000445 ip/reass/ip4_sv_reass.c
Damjan Marion4553c952018-08-26 11:04:40 +0200446 ip/ip6_format.c
447 ip/ip6_forward.c
448 ip/ip6_ll_table.c
449 ip/ip6_ll_types.c
450 ip/ip6_punt_drop.c
451 ip/ip6_hop_by_hop.c
452 ip/ip6_input.c
Neale Rannscbe25aa2019-09-30 10:53:31 +0000453 ip/ip6_link.c
Damjan Marion4553c952018-08-26 11:04:40 +0200454 ip/ip6_pg.c
Klement Sekera896c8962019-06-24 11:52:49 +0000455 ip/reass/ip6_full_reass.c
Klement Sekerade34c352019-06-25 11:19:22 +0000456 ip/reass/ip6_sv_reass.c
Damjan Marion4553c952018-08-26 11:04:40 +0200457 ip/ip_api.c
458 ip/ip_checksum.c
459 ip/ip_frag.c
460 ip/ip.c
461 ip/ip_init.c
462 ip/ip_in_out_acl.c
Neale Ranns92207752019-06-03 13:21:40 +0000463 ip/ip_punt_drop.c
Neale Rannsea93e482019-11-12 17:16:47 +0000464 ip/ip_types.c
Damjan Marion4553c952018-08-26 11:04:40 +0200465 ip/lookup.c
Damjan Marion4553c952018-08-26 11:04:40 +0200466 ip/punt_api.c
467 ip/punt.c
Neale Ranns50f0ac02019-05-15 02:13:37 -0700468 ip/punt_node.c
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000469 ip/vtep.c
Damjan Marion4553c952018-08-26 11:04:40 +0200470)
471
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700472list(APPEND VNET_MULTIARCH_SOURCES
473 ip/ip4_source_check.c
474 ip/ip4_punt_drop.c
Klement Sekera896c8962019-06-24 11:52:49 +0000475 ip/reass/ip4_full_reass.c
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700476 ip/ip6_hop_by_hop.c
Klement Sekera896c8962019-06-24 11:52:49 +0000477 ip/reass/ip6_full_reass.c
Klement Sekerade34c352019-06-25 11:19:22 +0000478 ip/reass/ip4_sv_reass.c
479 ip/ip6_hop_by_hop.c
480 ip/reass/ip6_full_reass.c
481 ip/reass/ip6_sv_reass.c
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700482 ip/ip6_input.c
483 ip/ip6_punt_drop.c
Neale Ranns50f0ac02019-05-15 02:13:37 -0700484 ip/punt_node.c
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700485 ip/ip_in_out_acl.c
486)
487
Damjan Marion4553c952018-08-26 11:04:40 +0200488list(APPEND VNET_HEADERS
489 ip/format.h
490 ip/icmp46_packet.h
491 ip/icmp4.h
492 ip/icmp6.h
493 ip/igmp_packet.h
494 ip/ip4_error.h
495 ip/ip4.h
496 ip/ip4_mtrie.h
497 ip/ip4_packet.h
Neale Rannscbe25aa2019-09-30 10:53:31 +0000498 ip/ip46_address.h
Damjan Marion4553c952018-08-26 11:04:40 +0200499 ip/ip6_error.h
500 ip/ip6.h
501 ip/ip6_hop_by_hop.h
502 ip/ip6_hop_by_hop_packet.h
503 ip/ip6_packet.h
Damjan Marion4553c952018-08-26 11:04:40 +0200504 ip/ip.h
505 ip/ip_packet.h
506 ip/ip_source_and_port_range_check.h
Neale Rannsea93e482019-11-12 17:16:47 +0000507 ip/ip_types.h
Damjan Marion4553c952018-08-26 11:04:40 +0200508 ip/lookup.h
509 ip/ports.def
510 ip/protocols.def
511 ip/punt_error.def
512 ip/punt.h
513)
514
515list(APPEND VNET_API_FILES
516 ip/ip.api
Damjan Marion4553c952018-08-26 11:04:40 +0200517 ip/punt.api
518)
519
Damjan Marion38173502019-02-13 19:30:09 +0100520list(APPEND VNET_MULTIARCH_SOURCES
521 ip/ip4_forward.c
522 ip/ip6_forward.c
523 ip/ip4_input.c
524)
Damjan Marion4553c952018-08-26 11:04:40 +0200525
526##############################################################################
Neale Rannscbe25aa2019-09-30 10:53:31 +0000527# Layer 3 neighbours
Damjan Marion4553c952018-08-26 11:04:40 +0200528##############################################################################
529list(APPEND VNET_SOURCES
Neale Rannscbe25aa2019-09-30 10:53:31 +0000530 ip-neighbor/ip_neighbor.c
531 ip-neighbor/ip_neighbor_api.c
532 ip-neighbor/ip_neighbor_dp.c
533 ip-neighbor/ip_neighbor_types.c
534 ip-neighbor/ip_neighbor_watch.c
535 ip-neighbor/ip4_neighbor.c
536 ip-neighbor/ip6_neighbor.c
Damjan Marion4553c952018-08-26 11:04:40 +0200537)
538
539list(APPEND VNET_HEADERS
Neale Rannscbe25aa2019-09-30 10:53:31 +0000540 ip-neighbor/ip_neighbor.h
541 ip-neighbor/ip_neighbor_types.h
542)
543
544list(APPEND VNET_API_FILES
545 ip-neighbor/ip_neighbor.api
Damjan Marion4553c952018-08-26 11:04:40 +0200546)
547
548##############################################################################
549# Bidirectional Forwarding Detection
550##############################################################################
551
552list(APPEND VNET_HEADERS
553 bfd/bfd_protocol.h
554 bfd/bfd_main.h
555 bfd/bfd_api.h
556 bfd/bfd_udp.h
557)
558
559list(APPEND VNET_SOURCES
560 bfd/bfd_api.h
561 bfd/bfd_udp.c
562 bfd/bfd_main.c
563 bfd/bfd_protocol.c
564 bfd/bfd_cli.c
565 bfd/bfd_api.c
566)
567
568list(APPEND VNET_API_FILES bfd/bfd.api)
569
570##############################################################################
Damjan Marion91f17dc2019-03-18 18:59:25 +0100571# Crypto
572##############################################################################
573
574list(APPEND VNET_SOURCES
575 crypto/cli.c
576 crypto/crypto.c
577 crypto/format.c
578)
579
580list(APPEND VNET_HEADERS
581 crypto/crypto.h
582)
583
584##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200585# Layer 3 protocol: IPSec
586##############################################################################
587list(APPEND VNET_SOURCES
588 ipsec/ipsec.c
589 ipsec/ipsec_cli.c
590 ipsec/ipsec_format.c
Neale Rannsf62a8c02019-04-02 08:13:33 +0000591 ipsec/ipsec_handoff.c
Damjan Marion4553c952018-08-26 11:04:40 +0200592 ipsec/ipsec_input.c
Neale Rannsb71fa752019-04-04 12:43:36 +0000593 ipsec/ipsec_punt.c
Neale Ranns999c8ee2019-02-01 03:31:24 -0800594 ipsec/ipsec_sa.c
595 ipsec/ipsec_spd.c
596 ipsec/ipsec_spd_policy.c
Neale Rannsc87b66c2019-02-07 07:26:12 -0800597 ipsec/ipsec_tun.c
598 ipsec/ipsec_tun_in.c
Damjan Marion4553c952018-08-26 11:04:40 +0200599 ipsec/esp_format.c
600 ipsec/esp_encrypt.c
601 ipsec/esp_decrypt.c
602 ipsec/ah_decrypt.c
603 ipsec/ah_encrypt.c
Damjan Marion4553c952018-08-26 11:04:40 +0200604 ipsec/ipsec_api.c
Prashant Maheshwaridbf68c92019-11-14 12:42:59 +0530605 ipsec/ipsec_types_api.c
Damjan Marion4553c952018-08-26 11:04:40 +0200606)
607
Klement Sekerab8f35442018-10-29 13:38:19 +0100608list(APPEND VNET_MULTIARCH_SOURCES
609 ipsec/esp_encrypt.c
610 ipsec/esp_decrypt.c
611 ipsec/ah_decrypt.c
612 ipsec/ah_encrypt.c
Neale Rannsf62a8c02019-04-02 08:13:33 +0000613 ipsec/ipsec_handoff.c
Kingwel Xiec69ac312019-02-04 01:49:29 -0800614 ipsec/ipsec_output.c
615 ipsec/ipsec_input.c
Neale Rannsc87b66c2019-02-07 07:26:12 -0800616 ipsec/ipsec_tun_in.c
Klement Sekerab8f35442018-10-29 13:38:19 +0100617)
618
Prashant Maheshwaridbf68c92019-11-14 12:42:59 +0530619list(APPEND VNET_API_FILES ipsec/ipsec_types.api)
Damjan Marion4553c952018-08-26 11:04:40 +0200620list(APPEND VNET_API_FILES ipsec/ipsec.api)
621
622list(APPEND VNET_SOURCES
623 ipsec/ipsec_output.c
624)
625
626list(APPEND VNET_HEADERS
627 ipsec/ipsec.h
Neale Ranns918c1612019-02-21 23:34:59 -0800628 ipsec/ipsec_spd.h
629 ipsec/ipsec_spd_policy.h
630 ipsec/ipsec_sa.h
Neale Ranns12989b52019-09-26 16:20:19 +0000631 ipsec/ipsec_tun.h
Prashant Maheshwaridbf68c92019-11-14 12:42:59 +0530632 ipsec/ipsec_types_api.h
Neale Rannsba05e5d2019-06-07 05:17:07 -0700633 ipsec/ipsec_punt.h
Damjan Marion4553c952018-08-26 11:04:40 +0200634 ipsec/esp.h
635 ipsec/ah.h
Damjan Marion4553c952018-08-26 11:04:40 +0200636)
637
638##############################################################################
639# Layer 3 protocol: osi
640##############################################################################
641list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +0200642 osi/node.c
643 osi/osi.c
644 osi/pg.c
Damjan Marion4553c952018-08-26 11:04:40 +0200645)
646
647list(APPEND VNET_HEADERS
648 osi/osi.h
649)
650
651##############################################################################
652# Layer 4 protocol: tcp
653##############################################################################
654list(APPEND VNET_SOURCES
655 tcp/tcp_api.c
656 tcp/tcp_format.c
657 tcp/tcp_pg.c
658 tcp/tcp_syn_filter4.c
659 tcp/tcp_output.c
660 tcp/tcp_input.c
661 tcp/tcp_newreno.c
Florin Coras52814732019-06-12 15:38:19 -0700662 tcp/tcp_bt.c
Florin Coras999840c2020-03-18 20:31:34 +0000663 tcp/tcp_cli.c
664 tcp/tcp_cubic.c
Florin Corasa436a422019-08-20 07:09:31 -0700665 tcp/tcp_debug.c
Florin Coras999840c2020-03-18 20:31:34 +0000666 tcp/tcp_sack.c
Damjan Marion4553c952018-08-26 11:04:40 +0200667 tcp/tcp.c
668)
669
Filip Tehlare275bed2019-03-06 00:06:56 -0800670list(APPEND VNET_MULTIARCH_SOURCES
671 tcp/tcp_input.c
672 tcp/tcp_output.c
673 tcp/tcp_syn_filter4.c
674)
675
Damjan Marion4553c952018-08-26 11:04:40 +0200676list(APPEND VNET_HEADERS
677 tcp/tcp_packet.h
678 tcp/tcp_timer.h
Florin Coras999840c2020-03-18 20:31:34 +0000679 tcp/tcp_bt.h
680 tcp/tcp_cc.h
Damjan Marion4553c952018-08-26 11:04:40 +0200681 tcp/tcp_debug.h
Florin Coras999840c2020-03-18 20:31:34 +0000682 tcp/tcp_inlines.h
683 tcp/tcp_sack.h
684 tcp/tcp_types.h
Damjan Marion4553c952018-08-26 11:04:40 +0200685 tcp/tcp.h
686 tcp/tcp_error.def
687)
688
689list(APPEND VNET_API_FILES tcp/tcp.api)
690
691##############################################################################
692# Layer 4 protocol: udp
693##############################################################################
694list(APPEND VNET_SOURCES
695 udp/udp.c
696 udp/udp_input.c
697 udp/udp_format.c
698 udp/udp_local.c
699 udp/udp_pg.c
700 udp/udp_encap_node.c
701 udp/udp_encap.c
702 udp/udp_api.c
703)
704
Filip Tehlar2c49ffe2019-03-06 07:16:08 -0800705list(APPEND VNET_MULTIARCH_SOURCES
706 udp/udp_local.c
707 udp/udp_encap_node.c
708)
709
Damjan Marion4553c952018-08-26 11:04:40 +0200710list(APPEND VNET_HEADERS
711 udp/udp_error.def
712 udp/udp.h
713 udp/udp_packet.h
714)
715
716list(APPEND VNET_API_FILES udp/udp.api)
717
718##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200719# Tunnel protocol: gre
720##############################################################################
721list(APPEND VNET_SOURCES
722 gre/gre.c
723 gre/node.c
724 gre/interface.c
725 gre/pg.c
726 gre/gre_api.c
727)
728
Filip Tehlar0fce11f2019-03-04 09:21:59 -0800729list(APPEND VNET_MULTIARCH_SOURCES
730 gre/node.c
731 gre/gre.c
732)
733
Damjan Marion4553c952018-08-26 11:04:40 +0200734list(APPEND VNET_HEADERS
735 gre/gre.h
736 gre/packet.h
737 gre/error.def
738)
739
740list(APPEND VNET_API_FILES gre/gre.api)
741
742##############################################################################
743# Tunnel protocol: ipip
744##############################################################################
745list(APPEND VNET_SOURCES
746 ipip/ipip.c
747 ipip/node.c
748 ipip/sixrd.c
749 ipip/ipip_api.c
750 ipip/ipip_cli.c
751)
752
Filip Tehlar7a542f42019-03-05 04:50:23 -0800753list(APPEND VNET_MULTIARCH_SOURCES
754 ipip/node.c
755)
756
Damjan Marion4553c952018-08-26 11:04:40 +0200757list(APPEND VNET_HEADERS
758 ipip/ipip.h
759)
760
Neale Ranns95346962019-11-25 13:04:44 +0000761list(APPEND VNET_API_FILES
Neale Ranns95346962019-11-25 13:04:44 +0000762 ipip/ipip.api
763)
Damjan Marion4553c952018-08-26 11:04:40 +0200764
765##############################################################################
Neale Ranns59ff9182019-12-29 23:55:18 +0000766# Tunnel infra
767##############################################################################
768list(APPEND VNET_SOURCES
769 tunnel/tunnel.c
770 tunnel/tunnel_types_api.c
771)
772
773list(APPEND VNET_API_FILES
774 tunnel/tunnel_types.api
775)
776
777list(APPEND VNET_HEADERS
778 tunnel/tunnel.h
Neale Rannse5b94dd2019-12-31 05:13:14 +0000779 tunnel/tunnel_dp.h
Neale Ranns59ff9182019-12-29 23:55:18 +0000780)
781
782##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200783# Tunnel protocol: l2tpv3
784##############################################################################
785list(APPEND VNET_SOURCES
786 l2tp/l2tp.c
787 l2tp/encap.c
788 l2tp/decap.c
789 l2tp/pg.c
790 l2tp/l2tp_api.c
791)
792
Filip Tehlarc3a0e8d2019-03-11 05:53:35 -0700793list(APPEND VNET_MULTIARCH_SOURCES
794 l2tp/encap.c
795 l2tp/decap.c
796)
797
Damjan Marion4553c952018-08-26 11:04:40 +0200798list(APPEND VNET_HEADERS
799 l2tp/l2tp.h
800 l2tp/packet.h
801)
802
803list(APPEND VNET_API_FILES l2tp/l2tp.api)
804
805##############################################################################
806# Tunnel protocol: gre+mpls
807##############################################################################
808list(APPEND VNET_SOURCES
809 mpls/mpls.c
810 mpls/mpls_lookup.c
811 mpls/mpls_output.c
812 mpls/mpls_features.c
813 mpls/mpls_input.c
814 mpls/interface.c
815 mpls/mpls_tunnel.c
816 mpls/pg.c
817 mpls/mpls_api.c
818)
819
Filip Tehlar17fcd982019-03-05 04:32:11 -0800820list(APPEND VNET_MULTIARCH_SOURCES
821 mpls/mpls_output.c
822 mpls/mpls_input.c
823 mpls/mpls_lookup.c
824 mpls/mpls_features.c
825)
826
Damjan Marion4553c952018-08-26 11:04:40 +0200827list(APPEND VNET_HEADERS
828 mpls/mpls.h
829 mpls/mpls_types.h
830 mpls/mpls_tunnel.h
831 mpls/packet.h
832 mpls/error.def
833)
834
835list(APPEND VNET_API_FILES mpls/mpls.api)
836
837##############################################################################
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200838# Tunnel protocol: vxlan-gbp
839##############################################################################
840list(APPEND VNET_SOURCES
841 vxlan-gbp/decap.c
842 vxlan-gbp/encap.c
843 vxlan-gbp/vxlan_gbp_api.c
844 vxlan-gbp/vxlan_gbp.c
Neale Ranns93cc3ee2018-10-10 07:22:51 -0700845 vxlan-gbp/vxlan_gbp_packet.c
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200846)
847
Filip Tehlare1714d32019-03-05 03:01:43 -0800848list (APPEND VNET_MULTIARCH_SOURCES
849 vxlan-gbp/decap.c
850 vxlan-gbp/encap.c
851)
852
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200853list(APPEND VNET_HEADERS
854 vxlan-gbp/vxlan_gbp.h
855 vxlan-gbp/vxlan_gbp_packet.h
856 vxlan-gbp/vxlan_gbp_error.def
857)
858
859list(APPEND VNET_API_FILES vxlan-gbp/vxlan_gbp.api)
860
861##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200862# Tunnel protocol: vxlan-gpe
863##############################################################################
864
865list(APPEND VNET_SOURCES
866 vxlan-gpe/vxlan_gpe.c
867 vxlan-gpe/encap.c
868 vxlan-gpe/decap.c
869 vxlan-gpe/vxlan_gpe_api.c
870)
871
Filip Tehlare1714d32019-03-05 03:01:43 -0800872list (APPEND VNET_MULTIARCH_SOURCES
873 vxlan-gpe/decap.c
874)
875
Damjan Marion4553c952018-08-26 11:04:40 +0200876list(APPEND VNET_HEADERS
877 vxlan-gpe/vxlan_gpe.h
878 vxlan-gpe/vxlan_gpe_packet.h
879 vxlan-gpe/vxlan_gpe_error.def
880)
881
882list(APPEND VNET_API_FILES vxlan-gpe/vxlan_gpe.api)
883
884##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200885# LISP control plane: lisp-cp
886##############################################################################
887
888list(APPEND VNET_SOURCES
889 lisp-cp/lisp_types.c
890 lisp-cp/lisp_cp_dpo.c
891 lisp-cp/control.c
892 lisp-cp/gid_dictionary.c
893 lisp-cp/lisp_msg_serdes.c
894 lisp-cp/packets.c
895 lisp-cp/one_cli.c
896 lisp-cp/lisp_cli.c
897 lisp-cp/one_api.c
898 lisp-cp/lisp_api.c
899)
900
901list(APPEND VNET_HEADERS
902 lisp-cp/lisp_types.h
903 lisp-cp/packets.h
904 lisp-cp/gid_dictionary.h
905 lisp-cp/lisp_cp_messages.h
906 lisp-cp/lisp_msg_serdes.h
907 lisp-cp/control.h
908)
909
910list(APPEND VNET_API_FILES lisp-cp/lisp.api)
911list(APPEND VNET_API_FILES lisp-cp/one.api)
912
913##############################################################################
914# Tunnel protocol: lisp-gpe
915##############################################################################
916
917list(APPEND VNET_SOURCES
918 lisp-gpe/lisp_gpe.c
919 lisp-gpe/lisp_gpe_sub_interface.c
920 lisp-gpe/lisp_gpe_adjacency.c
921 lisp-gpe/lisp_gpe_tunnel.c
922 lisp-gpe/lisp_gpe_fwd_entry.c
923 lisp-gpe/lisp_gpe_tenant.c
924 lisp-gpe/interface.c
925 lisp-gpe/decap.c
926 lisp-gpe/lisp_gpe_api.c
927)
928
929list(APPEND VNET_HEADERS
930 lisp-gpe/lisp_gpe.h
931 lisp-gpe/lisp_gpe_fwd_entry.h
932 lisp-gpe/lisp_gpe_tenant.h
933 lisp-gpe/lisp_gpe_packet.h
934 lisp-gpe/lisp_gpe_error.def
935)
936
937list(APPEND VNET_API_FILES lisp-gpe/lisp_gpe.api)
938
939##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200940# ipv6 segment routing
941##############################################################################
942
943list(APPEND VNET_SOURCES
944 srv6/sr.c
945 srv6/sr_localsid.c
946 srv6/sr_policy_rewrite.c
947 srv6/sr_steering.c
948 srv6/sr_api.c
949)
950
951list(APPEND VNET_HEADERS
952 srv6/sr_packet.h
953 srv6/sr.h
954)
955
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100956list(APPEND VNET_API_FILES
957 srv6/sr.api
958 srv6/sr_types.api
959)
Damjan Marion4553c952018-08-26 11:04:40 +0200960
961##############################################################################
962# mpls segment routing
963##############################################################################
964
965list(APPEND VNET_SOURCES
966 srmpls/sr_mpls_policy.c
967 srmpls/sr_mpls_steering.c
968 srmpls/sr_mpls_api.c
969)
970
971list(APPEND VNET_HEADERS
972 srmpls/sr_mpls.h
973)
974
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100975list(APPEND VNET_API_FILES
976 srmpls/sr_mpls.api
977 srv6/sr_types.api
978)
Damjan Marion4553c952018-08-26 11:04:40 +0200979
980##############################################################################
981# IPFIX / netflow v10
982##############################################################################
983list(APPEND VNET_SOURCES
984 ipfix-export/flow_report.c
985 ipfix-export/flow_api.c
986)
987
988list(APPEND VNET_HEADERS
989 ipfix-export/flow_report.h
990 ipfix-export/ipfix_info_elements.h
991 ipfix-export/ipfix_packet.h
992)
993
994list(APPEND VNET_API_FILES ipfix-export/ipfix_export.api)
995
996##############################################################################
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200997# GSO
998##############################################################################
999list(APPEND VNET_SOURCES
1000 gso/cli.c
1001 gso/gso.c
1002 gso/gso_api.c
1003 gso/node.c
1004)
1005
1006list(APPEND VNET_HEADERS
1007 gso/gso.h
1008)
1009
1010list(APPEND VNET_API_FILES
1011 gso/gso.api
1012)
1013
1014##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +02001015# IPFIX classify code
1016##############################################################################
1017
1018list(APPEND VNET_SOURCES
1019 ipfix-export/flow_report_classify.c
1020)
1021
1022list(APPEND VNET_HEADERS
1023 ipfix-export/flow_report_classify.h
1024)
1025
1026##############################################################################
1027# lawful intercept
1028##############################################################################
1029
1030list(APPEND VNET_SOURCES
1031 lawful-intercept/lawful_intercept.c
1032 lawful-intercept/node.c
1033)
1034
Filip Tehlarc3a0e8d2019-03-11 05:53:35 -07001035list(APPEND VNET_MULTIARCH_SOURCES
1036 lawful-intercept/node.c
1037)
1038
Damjan Marion4553c952018-08-26 11:04:40 +02001039list(APPEND VNET_HEADERS
1040 lawful-intercept/lawful_intercept.h
1041)
1042
1043##############################################################################
1044# SPAN (port mirroring)
1045##############################################################################
1046
1047list(APPEND VNET_SOURCES
1048 span/span_api.c
1049 span/span.c
1050 span/node.c
1051)
1052
Filip Tehlara79271f2019-03-05 03:46:40 -08001053list(APPEND VNET_MULTIARCH_SOURCES
1054 span/node.c
1055)
1056
Damjan Marion4553c952018-08-26 11:04:40 +02001057list(APPEND VNET_HEADERS
1058 span/span.h
1059)
1060
1061list(APPEND VNET_API_FILES span/span.api)
1062
1063##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +02001064# Packet generator
1065##############################################################################
1066
1067list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +02001068 pg/cli.c
1069 pg/edit.c
1070 pg/init.c
1071 pg/input.c
1072 pg/output.c
Damjan Marion612dd6a2018-07-30 12:45:07 +02001073 pg/stream.c
Damjan Marion4553c952018-08-26 11:04:40 +02001074 pg/pg_api.c
1075)
1076
1077list(APPEND VNET_HEADERS
1078 pg/pg.h
1079 pg/edit.h
1080)
1081
1082list(APPEND VNET_API_FILES pg/pg.api)
1083
1084##############################################################################
1085# virtio
1086##############################################################################
1087
1088list(APPEND VNET_SOURCES
Damjan Marionf41244f2019-11-08 17:41:06 +01001089 devices/virtio/cli.c
Damjan Marion4553c952018-08-26 11:04:40 +02001090 devices/virtio/device.c
Damjan Marionf41244f2019-11-08 17:41:06 +01001091 devices/virtio/format.c
Damjan Marion4553c952018-08-26 11:04:40 +02001092 devices/virtio/node.c
Damjan Marionf41244f2019-11-08 17:41:06 +01001093 devices/virtio/pci.c
Damjan Marion4553c952018-08-26 11:04:40 +02001094 devices/virtio/vhost_user.c
1095 devices/virtio/vhost_user_input.c
1096 devices/virtio/vhost_user_output.c
1097 devices/virtio/vhost_user_api.c
1098 devices/virtio/virtio.c
Mohsin Kazmid6c15af2018-10-23 18:00:47 +02001099 devices/virtio/virtio_api.c
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +02001100 devices/virtio/virtio_types_api.c
Damjan Marion4553c952018-08-26 11:04:40 +02001101)
1102
1103list(APPEND VNET_HEADERS
Mohsin Kazmid6c15af2018-10-23 18:00:47 +02001104 devices/virtio/pci.h
Damjan Marion4553c952018-08-26 11:04:40 +02001105 devices/virtio/virtio.h
1106 devices/virtio/vhost_user.h
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +02001107 devices/virtio/virtio_types_api.h
Damjan Marion4553c952018-08-26 11:04:40 +02001108)
1109
1110list(APPEND VNET_MULTIARCH_SOURCES
1111 devices/virtio/vhost_user_input.c
1112 devices/virtio/vhost_user_output.c
Filip Tehlar608996d2019-03-04 03:03:13 -08001113 devices/virtio/node.c
1114 devices/af_packet/node.c
Filip Tehlaraee73642019-03-13 05:50:44 -07001115 devices/virtio/device.c
Damjan Marion4553c952018-08-26 11:04:40 +02001116)
1117
Mohsin Kazmid6c15af2018-10-23 18:00:47 +02001118list(APPEND VNET_API_FILES
1119 devices/virtio/vhost_user.api
1120 devices/virtio/virtio.api
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +02001121 devices/virtio/virtio_types.api
Mohsin Kazmid6c15af2018-10-23 18:00:47 +02001122)
Damjan Marion4553c952018-08-26 11:04:40 +02001123
1124##############################################################################
1125# tap interface (with virtio backend)
1126##############################################################################
1127
1128list(APPEND VNET_SOURCES
1129 devices/tap/cli.c
1130 devices/tap/tap.c
1131 devices/tap/tapv2_api.c
1132)
1133
1134list(APPEND VNET_HEADERS
1135 devices/tap/tap.h
1136)
1137
1138list(APPEND VNET_API_FILES devices/tap/tapv2.api)
1139
1140##############################################################################
1141# tap interface (with virtio backend)
1142##############################################################################
1143
1144list(APPEND VNET_SOURCES
1145 devices/pipe/pipe_api.c
1146 devices/pipe/pipe.c
1147)
1148
1149list(APPEND VNET_HEADERS
1150 devices/pipe/pipe.h
1151)
1152
1153list(APPEND VNET_API_FILES devices/pipe/pipe.api)
1154
1155##############################################################################
1156# session managmeent
1157##############################################################################
1158
1159list(APPEND VNET_SOURCES
1160 session/session.c
1161 session/session_table.c
1162 session/session_rules_table.c
1163 session/session_lookup.c
1164 session/session_node.c
1165 session/transport.c
Damjan Marion612dd6a2018-07-30 12:45:07 +02001166 session/application.c
Florin Coras623eb562019-02-03 19:28:34 -08001167 session/application_worker.c
Damjan Marion4553c952018-08-26 11:04:40 +02001168 session/session_cli.c
Damjan Marion612dd6a2018-07-30 12:45:07 +02001169 session/application_interface.c
Florin Corasba7d8f52019-02-22 13:11:38 -08001170 session/application_local.c
Damjan Marion612dd6a2018-07-30 12:45:07 +02001171 session/application_namespace.c
Damjan Marion4553c952018-08-26 11:04:40 +02001172 session/segment_manager.c
Damjan Marion4553c952018-08-26 11:04:40 +02001173 session/session_api.c
1174)
1175
1176list(APPEND VNET_HEADERS
1177 session/session.h
1178 session/session_table.h
1179 session/session_rules_table.h
Florin Coras288eaab2019-02-03 15:26:14 -08001180 session/session_types.h
Damjan Marion4553c952018-08-26 11:04:40 +02001181 session/session_lookup.h
1182 session/application.h
1183 session/transport.h
Florin Coras1ee78302019-02-05 15:51:15 -08001184 session/transport_types.h
Damjan Marion4553c952018-08-26 11:04:40 +02001185 session/application_interface.h
Florin Corasba7d8f52019-02-22 13:11:38 -08001186 session/application_local.h
Damjan Marion4553c952018-08-26 11:04:40 +02001187 session/application_namespace.h
1188 session/session_debug.h
1189 session/segment_manager.h
1190 session/mma_template.h
1191 session/mma_template.c
1192 session/mma_16.h
1193 session/mma_40.h
1194)
1195
1196list(APPEND VNET_API_FILES session/session.api)
1197
1198##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +02001199# TLS protocol
1200##############################################################################
1201
1202list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +02001203 tls/tls.c
Damjan Marion4553c952018-08-26 11:04:40 +02001204)
1205
1206list(APPEND VNET_HEADERS
1207 tls/tls.h
Florin Coras54a51fd2019-02-07 15:34:52 -08001208 tls/tls_test.h
Damjan Marion4553c952018-08-26 11:04:40 +02001209)
1210
1211##############################################################################
1212# Linux packet interface
1213##############################################################################
1214
1215list(APPEND VNET_SOURCES
1216 devices/af_packet/af_packet.c
1217 devices/af_packet/device.c
1218 devices/af_packet/node.c
1219 devices/af_packet/cli.c
1220 devices/af_packet/af_packet_api.c
1221)
1222
Filip Tehlaraee73642019-03-13 05:50:44 -07001223list(APPEND VNET_MULTIARCH_SOURCES
Filip Tehlaraee73642019-03-13 05:50:44 -07001224 devices/af_packet/device.c
1225)
1226
Damjan Marion4553c952018-08-26 11:04:40 +02001227list(APPEND VNET_HEADERS
1228 devices/af_packet/af_packet.h
1229)
1230
1231list(APPEND VNET_API_FILES devices/af_packet/af_packet.api)
1232
1233##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +02001234# Driver feature graph arc support
1235##############################################################################
1236
1237list(APPEND VNET_SOURCES
1238 feature/feature.c
1239 feature/feature_api.c
1240 feature/registration.c
1241)
1242
1243list(APPEND VNET_HEADERS
1244 feature/feature.h
1245)
1246
1247list(APPEND VNET_API_FILES feature/feature.api)
1248
1249##############################################################################
1250# Unix kernel related
1251##############################################################################
1252
1253# FIXME: unix/hgshm.c
1254
1255list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +02001256 unix/gdb_funcs.c
Damjan Marion612dd6a2018-07-30 12:45:07 +02001257 unix/tuntap.c
Damjan Marion612dd6a2018-07-30 12:45:07 +02001258)
1259
Damjan Marion4553c952018-08-26 11:04:40 +02001260list(APPEND VNET_HEADERS
Damjan Marion4553c952018-08-26 11:04:40 +02001261 unix/tuntap.h
Damjan Marion612dd6a2018-07-30 12:45:07 +02001262)
1263
Damjan Marion4553c952018-08-26 11:04:40 +02001264##############################################################################
1265# FIB
1266##############################################################################
1267
1268list(APPEND VNET_SOURCES
1269 fib/fib.c
Damjan Marion4553c952018-08-26 11:04:40 +02001270 fib/ip4_fib.c
1271 fib/ip6_fib.c
1272 fib/mpls_fib.c
1273 fib/fib_table.c
1274 fib/fib_walk.c
1275 fib/fib_types.c
1276 fib/fib_node.c
1277 fib/fib_node_list.c
1278 fib/fib_entry.c
1279 fib/fib_entry_src.c
Neale Ranns3bab8f92019-12-04 06:11:00 +00001280 fib/fib_entry_src_adj.c
1281 fib/fib_entry_src_api.c
1282 fib/fib_entry_src_drop.c
Damjan Marion4553c952018-08-26 11:04:40 +02001283 fib/fib_entry_src_interface.c
1284 fib/fib_entry_src_interpose.c
Damjan Marion4553c952018-08-26 11:04:40 +02001285 fib/fib_entry_src_lisp.c
Neale Ranns3bab8f92019-12-04 06:11:00 +00001286 fib/fib_entry_src_mpls.c
1287 fib/fib_entry_src_simple.c
1288 fib/fib_entry_src_rr.c
Damjan Marion4553c952018-08-26 11:04:40 +02001289 fib/fib_entry_cover.c
1290 fib/fib_entry_delegate.c
Neale Ranns1f50bf82019-07-16 15:28:52 +00001291 fib/fib_entry_track.c
Damjan Marion4553c952018-08-26 11:04:40 +02001292 fib/fib_path_list.c
1293 fib/fib_path.c
1294 fib/fib_path_ext.c
Neale Ranns3bab8f92019-12-04 06:11:00 +00001295 fib/fib_source.c
Damjan Marion4553c952018-08-26 11:04:40 +02001296 fib/fib_urpf_list.c
1297 fib/fib_attached_export.c
1298 fib/fib_api.c
1299 fib/fib_bfd.c
1300)
1301
1302list(APPEND VNET_HEADERS
Damjan Marion2bfdda72018-08-24 21:36:42 +02001303 fib/fib.h
Damjan Marion4553c952018-08-26 11:04:40 +02001304 fib/fib_api.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001305 fib/ip4_fib.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001306 fib/ip6_fib.h
1307 fib/fib_types.h
Damjan Marion4553c952018-08-26 11:04:40 +02001308 fib/fib_table.h
1309 fib/fib_node.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001310 fib/fib_node_list.h
Damjan Marion4553c952018-08-26 11:04:40 +02001311 fib/fib_entry.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001312 fib/fib_entry_delegate.h
Neale Ranns3bab8f92019-12-04 06:11:00 +00001313 fib/fib_source.h
Damjan Marion4553c952018-08-26 11:04:40 +02001314)
1315
Benoît Ganned39495d2019-07-25 14:14:03 +02001316list(APPEND VNET_API_FILES fib/fib_types.api)
1317
Damjan Marion4553c952018-08-26 11:04:40 +02001318##############################################################################
1319# ADJ
1320##############################################################################
1321
1322list(APPEND VNET_SOURCES
1323 adj/adj_nbr.c
1324 adj/adj_glean.c
1325 adj/adj_midchain.c
Neale Ranns4c3ba812019-03-26 07:02:58 +00001326 adj/adj_midchain_delegate.c
Damjan Marion4553c952018-08-26 11:04:40 +02001327 adj/adj_mcast.c
1328 adj/adj_l2.c
1329 adj/adj_nsh.c
1330 adj/adj.c
1331 adj/rewrite.c
1332 adj/adj_bfd.c
1333 adj/adj_delegate.c
1334)
1335
Filip Tehlar0b2c15d2019-03-04 02:52:54 -08001336list(APPEND VNET_MULTIARCH_SOURCES
1337 adj/adj_nsh.c
1338 adj/adj_l2.c
1339)
1340
Damjan Marion4553c952018-08-26 11:04:40 +02001341list(APPEND VNET_HEADERS
1342 adj/adj.h
1343 adj/adj_types.h
1344 adj/adj_glean.h
1345 adj/adj_nsh.h
1346 adj/adj_nbr.h
Alberto Compagnod8ca1e42019-08-12 11:43:19 +02001347 adj/adj_midchain.h
Damjan Marion4553c952018-08-26 11:04:40 +02001348 adj/rewrite.h
1349)
1350
1351##############################################################################
1352# Data-Plane Objects
1353##############################################################################
1354
1355list(APPEND VNET_SOURCES
1356 dpo/dpo.c
1357 dpo/drop_dpo.c
1358 dpo/ip_null_dpo.c
1359 dpo/ip6_ll_dpo.c
1360 dpo/punt_dpo.c
1361 dpo/receive_dpo.c
1362 dpo/load_balance.c
1363 dpo/load_balance_map.c
1364 dpo/lookup_dpo.c
1365 dpo/classify_dpo.c
1366 dpo/replicate_dpo.c
1367 dpo/interface_rx_dpo.c
1368 dpo/interface_tx_dpo.c
1369 dpo/mpls_disposition.c
1370 dpo/mpls_label_dpo.c
1371 dpo/l3_proxy_dpo.c
1372 dpo/dvr_dpo.c
Neale Ranns1dbcf302019-07-19 11:44:53 +00001373 dpo/pw_cw.c
Damjan Marion4553c952018-08-26 11:04:40 +02001374)
1375
Filip Tehlareb9a27f2019-03-07 01:42:11 -08001376list(APPEND VNET_MULTIARCH_SOURCES
1377 dpo/lookup_dpo.h
1378 dpo/mpls_disposition.c
1379 dpo/dvr_dpo.c
1380 dpo/mpls_label_dpo.c
1381 dpo/interface_rx_dpo.c
1382)
1383
Damjan Marion4553c952018-08-26 11:04:40 +02001384list(APPEND VNET_HEADERS
Damjan Marion2bfdda72018-08-24 21:36:42 +02001385 dpo/load_balance.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001386 dpo/drop_dpo.h
Damjan Marion4553c952018-08-26 11:04:40 +02001387 dpo/lookup_dpo.h
1388 dpo/punt_dpo.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001389 dpo/classify_dpo.h
1390 dpo/receive_dpo.h
1391 dpo/ip_null_dpo.h
1392 dpo/replicate_dpo.h
Damjan Marion4553c952018-08-26 11:04:40 +02001393 dpo/dpo.h
1394)
1395
1396##############################################################################
1397# Multicast FIB
1398##############################################################################
1399
1400list(APPEND VNET_SOURCES
Damjan Marion4553c952018-08-26 11:04:40 +02001401 mfib/mfib_forward.c
1402 mfib/ip4_mfib.c
1403 mfib/ip6_mfib.c
Neale Ranns097fa662018-05-01 05:17:55 -07001404 mfib/mfib_api.c
Damjan Marion4553c952018-08-26 11:04:40 +02001405 mfib/mfib_types.c
1406 mfib/mfib_signal.c
1407 mfib/mfib_itf.c
1408 mfib/mfib_entry.c
Neale Ranns9e829a82018-12-17 05:50:32 -08001409 mfib/mfib_entry.c
1410 mfib/mfib_entry_cover.c
1411 mfib/mfib_entry_delegate.c
1412 mfib/mfib_entry_src.c
1413 mfib/mfib_entry_src_rr.c
Damjan Marion4553c952018-08-26 11:04:40 +02001414 mfib/mfib_table.c
1415)
1416
Filip Tehlar79c27eb2019-03-07 00:30:03 -08001417list(APPEND VNET_MULTIARCH_SOURCES
1418 mfib/mfib_forward.c
1419)
1420
Damjan Marion4553c952018-08-26 11:04:40 +02001421list(APPEND VNET_HEADERS
1422 mfib/ip4_mfib.h
1423 mfib/mfib_types.h
1424 mfib/mfib_table.h
1425)
1426
Benoît Ganned39495d2019-07-25 14:14:03 +02001427list(APPEND VNET_API_FILES mfib/mfib_types.api)
1428
Damjan Marion4553c952018-08-26 11:04:40 +02001429##############################################################################
1430# Utilities
1431##############################################################################
1432
1433list(APPEND VNET_SOURCES
1434 util/radix.c
1435 util/refcount.c
Neale Rannsc8352bc2018-08-29 10:23:58 -07001436 util/throttle.c
Damjan Marion4553c952018-08-26 11:04:40 +02001437 util/trajectory.c
1438)
1439
Damjan Marionac5554c2018-08-30 22:56:59 +02001440list(APPEND VNET_HEADERS
1441 util/throttle.h
1442)
1443
Damjan Marion4553c952018-08-26 11:04:40 +02001444##############################################################################
1445# QoS
1446##############################################################################
1447
1448list(APPEND VNET_SOURCES
1449 qos/qos_types.c
1450 qos/qos_api.c
1451 qos/qos_egress_map.c
1452 qos/qos_record.c
Filip Tehlar0bddf7e2019-03-04 08:14:07 -08001453 qos/qos_record_node.c
Neale Ranns83832e72019-07-31 02:48:02 -07001454 qos/qos_store.c
1455 qos/qos_store_node.c
Damjan Marion4553c952018-08-26 11:04:40 +02001456 qos/qos_mark.c
Filip Tehlar0bddf7e2019-03-04 08:14:07 -08001457 qos/qos_mark_node.c
1458)
1459
1460list(APPEND VNET_MULTIARCH_SOURCES
1461 qos/qos_record_node.c
1462 qos/qos_mark_node.c
Damjan Marion4553c952018-08-26 11:04:40 +02001463)
1464
1465list(APPEND VNET_API_FILES qos/qos.api)
1466
1467##############################################################################
1468# BIER
1469##############################################################################
1470
1471list(APPEND VNET_SOURCES
1472 bier/bier_bit_string.c
1473 bier/bier_entry.c
1474 bier/bier_fmask.c
1475 bier/bier_fmask_db.c
1476 bier/bier_input.c
1477 bier/bier_lookup.c
1478 bier/bier_output.c
1479 bier/bier_table.c
1480 bier/bier_types.c
Damjan Marion4553c952018-08-26 11:04:40 +02001481 bier/bier_api.c
1482 bier/bier_drop.c
1483 bier/bier_update.c
1484 bier/bier_imp_node.c
1485 bier/bier_imp.c
1486 bier/bier_disp_entry.c
1487 bier/bier_disp_lookup_node.c
1488 bier/bier_disp_dispatch_node.c
1489 bier/bier_disp_table.c
1490 bier/bier_bift_table.c
1491)
1492
Filip Tehlara01e0322019-03-05 03:34:52 -08001493list(APPEND VNET_MULTIARCH_SOURCES
1494 bier/bier_disp_dispatch_node.c
1495 bier/bier_disp_lookup_node.c
1496 bier/bier_imp_node.c
1497)
1498
Damjan Marion4553c952018-08-26 11:04:40 +02001499list(APPEND VNET_HEADERS
Damjan Marion2bfdda72018-08-24 21:36:42 +02001500 bier/bier_types.h
1501 bier/bier_entry.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001502 bier/bier_update.h
Damjan Marion4553c952018-08-26 11:04:40 +02001503 bier/bier_table.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001504)
1505
Damjan Marion4553c952018-08-26 11:04:40 +02001506list(APPEND VNET_API_FILES bier/bier.api)
Damjan Marion612dd6a2018-07-30 12:45:07 +02001507
Florin Coras41c9e042018-09-11 00:10:41 -07001508##############################################################################
Matus Fabianb4515b42018-11-19 04:25:32 -08001509# SYSLOG
1510##############################################################################
1511
1512list (APPEND VNET_SOURCES
1513 syslog/syslog_api.c
1514 syslog/syslog_udp.c
1515 syslog/syslog.c
1516)
1517
1518list(APPEND VNET_HEADERS
1519 syslog/syslog_udp.h
1520 syslog/syslog.h
1521)
1522
1523list(APPEND VNET_API_FILES syslog/syslog.api)
1524
1525##############################################################################
Neale Ranns03ce4622020-02-03 10:55:09 +00001526# Tunnel Endpoint Information Base
Neale Ranns5f8f6172019-04-18 10:23:56 +00001527##############################################################################
1528
1529list (APPEND VNET_SOURCES
Neale Ranns03ce4622020-02-03 10:55:09 +00001530 teib/teib_api.c
1531 teib/teib_cli.c
1532 teib/teib.c
Neale Ranns5f8f6172019-04-18 10:23:56 +00001533)
1534
1535list(APPEND VNET_HEADERS
Neale Ranns03ce4622020-02-03 10:55:09 +00001536 teib/teib.h
Neale Ranns5f8f6172019-04-18 10:23:56 +00001537)
1538
Neale Ranns03ce4622020-02-03 10:55:09 +00001539list(APPEND VNET_API_FILES teib/teib.api)
Neale Ranns5f8f6172019-04-18 10:23:56 +00001540
1541##############################################################################
Neale Rannscbe25aa2019-09-30 10:53:31 +00001542# ARP/ND
1543##############################################################################
1544
1545list (APPEND VNET_SOURCES
1546 arp/arp_api.c
1547 arp/arp.c
1548 arp/arp_proxy.c
1549)
1550
1551list(APPEND VNET_HEADERS
1552 arp/arp.h
1553)
1554
1555list(APPEND VNET_API_FILES arp/arp.api)
1556
1557list (APPEND VNET_SOURCES
1558 ip6-nd/ip6_mld.c
1559 ip6-nd/ip6_nd.c
1560 ip6-nd/ip6_nd_api.c
1561 ip6-nd/ip6_nd_proxy.c
1562 ip6-nd/ip6_ra.c
1563 ip6-nd/rd_cp.c
1564 ip6-nd/rd_cp_api.c
1565)
1566
1567list(APPEND VNET_HEADERS
1568 ip6-nd/ip6_nd.h
1569)
1570
1571list(APPEND VNET_API_FILES
1572 ip6-nd/ip6_nd.api
1573 ip6-nd/rd_cp.api
1574)
1575
1576##############################################################################
Florin Coras41c9e042018-09-11 00:10:41 -07001577# VNET Library
1578##############################################################################
1579
Damjan Marion4553c952018-08-26 11:04:40 +02001580add_vpp_library(vnet
1581 SOURCES ${VNET_SOURCES}
1582 MULTIARCH_SOURCES ${VNET_MULTIARCH_SOURCES}
1583 INSTALL_HEADERS ${VNET_HEADERS}
1584 API_FILES ${VNET_API_FILES}
1585 LINK_LIBRARIES vppinfra svm vlib ${OPENSSL_LIBRARIES}
Chris Lukec171d012020-01-15 20:30:04 -05001586 DEPENDS vpp_version_h api_headers
Damjan Marion612dd6a2018-07-30 12:45:07 +02001587)
Florin Coras41c9e042018-09-11 00:10:41 -07001588
1589##############################################################################
Yulong Peidb43bb62020-01-09 01:12:43 +08001590# vpp api test client library
1591##############################################################################
1592
1593add_vpp_library (vatclient
1594 SOURCES ip/ip_types_api.c
1595 DEPENDS api_headers
1596)
1597
1598##############################################################################